From a8fe0733b01199fc2e89d4cd6611003ca0e689d5 Mon Sep 17 00:00:00 2001 From: khushishelat Date: Thu, 23 Jul 2026 11:02:59 -0700 Subject: [PATCH 1/4] Add Datacenter Monitor recipe (parallel-datacenter-map) Live map of ~2,700 US datacenters, each discovered, enriched (25 fields), and AI-impact classified by the Task API, with 31 event-stream monitors and 200 daily snapshot monitors watching the web. Per-field reasoning + citations via output.basis. Facility discovery uses shard-by-state + previous_interaction_id pagination. Moved from khushishelat/datacenter-map-demo. Co-Authored-By: Claude Opus 4.8 --- README.md | 1 + .../.env.local.example | 14 + .../parallel-datacenter-map/.gitignore | 62 + .../parallel-datacenter-map/LICENSE | 21 + .../parallel-datacenter-map/README.md | 157 + .../parallel-datacenter-map/eslint.config.mjs | 18 + .../parallel-datacenter-map/next.config.ts | 7 + .../parallel-datacenter-map/package-lock.json | 7774 +++++++++++++++++ .../parallel-datacenter-map/package.json | 36 + .../postcss.config.mjs | 7 + .../public/data/ai-classifications.json | 1 + .../public/data/datacenters.json | 1 + .../public/data/enrichments-compact.json | 1 + .../parallel-datacenter-map/public/file.svg | 1 + .../parallel-datacenter-map/public/globe.svg | 1 + .../parallel-datacenter-map/public/next.svg | 1 + .../parallel-datacenter-map/public/vercel.svg | 1 + .../parallel-datacenter-map/public/window.svg | 1 + .../scripts/add-new-facilities.ts | 111 + .../scripts/backfill-basis.ts | 126 + .../scripts/build_datacenters_iterative.py | 237 + .../scripts/check-events.ts | 52 + .../scripts/classify-ai.ts | 207 + .../scripts/collect-enrichments-v2.ts | 150 + .../scripts/collect-enrichments.ts | 159 + .../scripts/convert-csv.ts | 34 + .../scripts/create-snapshots.ts | 144 + .../scripts/finish-issue.ts | 103 + .../scripts/generate-issue.ts | 179 + .../scripts/monitor-configs.ts | 509 ++ .../scripts/regenerate-brief.ts | 146 + .../scripts/run-backfill.ts | 226 + .../scripts/run-enrichment-v2.ts | 306 + .../scripts/run-enrichment.ts | 274 + .../scripts/run-pipeline.ts | 485 + .../scripts/seed-issue.ts | 153 + .../scripts/set-webhooks.ts | 62 + .../scripts/setup-monitors.ts | 113 + .../scripts/snapshots-to-daily.ts | 55 + .../scripts/update-snapshots.ts | 73 + .../scripts/upload-enrichments.ts | 50 + .../scripts/upload-per-facility.ts | 48 + .../src/app/api/basis/route.ts | 91 + .../src/app/api/cron/newsletter/route.ts | 183 + .../src/app/api/monitors/route.ts | 144 + .../src/app/api/newsletter/generate/route.ts | 192 + .../src/app/api/newsletter/issues/route.ts | 63 + .../src/app/api/newsletter/preview/route.ts | 144 + .../src/app/api/snapshots/route.ts | 123 + .../src/app/api/webhook/route.ts | 121 + .../src/app/globals.css | 100 + .../parallel-datacenter-map/src/app/icon.svg | 8 + .../src/app/layout.tsx | 34 + .../parallel-datacenter-map/src/app/page.tsx | 105 + .../src/components/BasisPanel.tsx | 310 + .../src/components/CopyCodeBlock.tsx | 48 + .../src/components/DatasetTable.tsx | 589 ++ .../src/components/FilterPills.tsx | 52 + .../src/components/Header.tsx | 61 + .../src/components/MapLegend.tsx | 83 + .../src/components/MapPanel.tsx | 468 + .../src/components/MonitorCard.tsx | 235 + .../src/components/MonitorPanel.tsx | 257 + .../src/components/NewsletterIssue.tsx | 268 + .../src/components/Toolbar.tsx | 100 + .../src/data/datacenters.ts | 114 + .../src/data/monitors.json | 356 + .../src/data/snapshot-monitors.json | 1002 +++ .../src/hooks/useDatacenters.ts | 63 + .../src/hooks/useLiveTimer.ts | 38 + .../src/hooks/useMonitors.ts | 119 + .../src/lib/constants.ts | 178 + .../src/lib/newsletter-writer.ts | 259 + .../parallel-datacenter-map/src/lib/types.ts | 169 + .../parallel-datacenter-map/src/lib/utils.ts | 79 + .../parallel-datacenter-map/tsconfig.json | 34 + .../parallel-datacenter-map/vercel.json | 8 + 77 files changed, 18305 insertions(+) create mode 100644 typescript-recipes/parallel-datacenter-map/.env.local.example create mode 100644 typescript-recipes/parallel-datacenter-map/.gitignore create mode 100644 typescript-recipes/parallel-datacenter-map/LICENSE create mode 100644 typescript-recipes/parallel-datacenter-map/README.md create mode 100644 typescript-recipes/parallel-datacenter-map/eslint.config.mjs create mode 100644 typescript-recipes/parallel-datacenter-map/next.config.ts create mode 100644 typescript-recipes/parallel-datacenter-map/package-lock.json create mode 100644 typescript-recipes/parallel-datacenter-map/package.json create mode 100644 typescript-recipes/parallel-datacenter-map/postcss.config.mjs create mode 100644 typescript-recipes/parallel-datacenter-map/public/data/ai-classifications.json create mode 100644 typescript-recipes/parallel-datacenter-map/public/data/datacenters.json create mode 100644 typescript-recipes/parallel-datacenter-map/public/data/enrichments-compact.json create mode 100644 typescript-recipes/parallel-datacenter-map/public/file.svg create mode 100644 typescript-recipes/parallel-datacenter-map/public/globe.svg create mode 100644 typescript-recipes/parallel-datacenter-map/public/next.svg create mode 100644 typescript-recipes/parallel-datacenter-map/public/vercel.svg create mode 100644 typescript-recipes/parallel-datacenter-map/public/window.svg create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/add-new-facilities.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/backfill-basis.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/build_datacenters_iterative.py create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/check-events.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/classify-ai.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/collect-enrichments-v2.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/collect-enrichments.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/convert-csv.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/create-snapshots.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/finish-issue.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/generate-issue.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/monitor-configs.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/regenerate-brief.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/run-backfill.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/run-enrichment-v2.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/run-enrichment.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/run-pipeline.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/seed-issue.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/set-webhooks.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/setup-monitors.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/snapshots-to-daily.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/update-snapshots.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/upload-enrichments.ts create mode 100644 typescript-recipes/parallel-datacenter-map/scripts/upload-per-facility.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/app/api/basis/route.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/app/api/cron/newsletter/route.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/app/api/monitors/route.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/app/api/newsletter/generate/route.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/app/api/newsletter/issues/route.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/app/api/newsletter/preview/route.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/app/api/snapshots/route.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/app/api/webhook/route.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/app/globals.css create mode 100644 typescript-recipes/parallel-datacenter-map/src/app/icon.svg create mode 100644 typescript-recipes/parallel-datacenter-map/src/app/layout.tsx create mode 100644 typescript-recipes/parallel-datacenter-map/src/app/page.tsx create mode 100644 typescript-recipes/parallel-datacenter-map/src/components/BasisPanel.tsx create mode 100644 typescript-recipes/parallel-datacenter-map/src/components/CopyCodeBlock.tsx create mode 100644 typescript-recipes/parallel-datacenter-map/src/components/DatasetTable.tsx create mode 100644 typescript-recipes/parallel-datacenter-map/src/components/FilterPills.tsx create mode 100644 typescript-recipes/parallel-datacenter-map/src/components/Header.tsx create mode 100644 typescript-recipes/parallel-datacenter-map/src/components/MapLegend.tsx create mode 100644 typescript-recipes/parallel-datacenter-map/src/components/MapPanel.tsx create mode 100644 typescript-recipes/parallel-datacenter-map/src/components/MonitorCard.tsx create mode 100644 typescript-recipes/parallel-datacenter-map/src/components/MonitorPanel.tsx create mode 100644 typescript-recipes/parallel-datacenter-map/src/components/NewsletterIssue.tsx create mode 100644 typescript-recipes/parallel-datacenter-map/src/components/Toolbar.tsx create mode 100644 typescript-recipes/parallel-datacenter-map/src/data/datacenters.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/data/monitors.json create mode 100644 typescript-recipes/parallel-datacenter-map/src/data/snapshot-monitors.json create mode 100644 typescript-recipes/parallel-datacenter-map/src/hooks/useDatacenters.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/hooks/useLiveTimer.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/hooks/useMonitors.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/lib/constants.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/lib/newsletter-writer.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/lib/types.ts create mode 100644 typescript-recipes/parallel-datacenter-map/src/lib/utils.ts create mode 100644 typescript-recipes/parallel-datacenter-map/tsconfig.json create mode 100644 typescript-recipes/parallel-datacenter-map/vercel.json diff --git a/README.md b/README.md index c45b222..5a5c766 100644 --- a/README.md +++ b/README.md @@ -117,6 +117,7 @@ Recurring research, cron jobs, and webhook delivery. | [**Daily Insights**](typescript-recipes/parallel-daily-insights) | Cron-triggered daily research feed — runs Tasks on a schedule, persists to KV, publishes a public data feed. Includes a `SPEC.md` showing the task spec used. | `Task` `Webhooks` `Cron` | Cloudflare Workers · KV | – | | [**Vendor Intelligence**](typescript-recipes/parallel-vendor-intelligence) | Researches vendor risk, watches the structured report for changes, and runs follow-up research only when a change crosses the review threshold. | `Task` `Deep Research` `Monitors` | TypeScript · Local scripts | – | | [**Investor Signals + Sales Enrichment**](python-recipes/parallel-investor-signals) | Track VC funds *you* choose for new AI-native rounds — one daily Monitor per fund, each detection chain-verified by a follow-up Task, scored, CRM-checked, and posted to Slack — plus a cited company-enrichment app. Bring your own watchlist and CRM; includes an `AGENTS.md` one-command setup. | `Task` `Monitors` `Webhooks` `Cron` | Python · FastAPI · React · Vercel | – | +| [**Datacenter Monitor**](typescript-recipes/parallel-datacenter-map) | Live map of ~2,700 US datacenters, each discovered, enriched across 25 fields, and AI-impact classified by the Task API, with 31 event-stream monitors plus 200 daily snapshot monitors watching the web. Per-field reasoning and citations via `output.basis`. Facility discovery uses shard-by-state plus `previous_interaction_id` pagination. | `Task` `Task Group` `Monitors` `Webhooks` `SSE` | Next.js · Vercel · Leaflet | [Live](https://datacenter-demo.app) | ### Deep Research & Notebooks diff --git a/typescript-recipes/parallel-datacenter-map/.env.local.example b/typescript-recipes/parallel-datacenter-map/.env.local.example new file mode 100644 index 0000000..b382be4 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/.env.local.example @@ -0,0 +1,14 @@ +# Parallel API key — required for monitors, facility discovery, and enrichment +# Get one at https://platform.parallel.ai +PARALLEL_API_KEY=your_parallel_api_key_here + +# Vercel Blob — stores per-facility enrichment basis (reasoning + citations) +# Set after creating a Blob store in Vercel Dashboard → Storage → Blob +ENRICHMENTS_BLOB_URL=https://your-store.private.blob.vercel-storage.com/enrichments.json +BLOB_READ_WRITE_TOKEN=vercel_blob_rw_xxx + +# Anthropic API key — used by the weekly-brief writer (Claude) +ANTHROPIC_API_KEY=your_anthropic_api_key_here + +# Optional: webhook URL for snapshot monitors (set to your deployed URL) +# WEBHOOK_URL=https://your-app.vercel.app/api/webhook diff --git a/typescript-recipes/parallel-datacenter-map/.gitignore b/typescript-recipes/parallel-datacenter-map/.gitignore new file mode 100644 index 0000000..d1caedb --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/.gitignore @@ -0,0 +1,62 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# env files (can opt-in for committing if needed) +.env* +!.env.local.example + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts + +# Large data files / run manifests (regenerated via scripts) +public/data/enrichments.json +src/data/backfill-results.json +src/data/enrichment-runs.json +src/data/enrichment-v2-runs.json +src/data/ai-classification-runs.json +.env*.local + +# Editor / OS +*.code-workspace + +# Generated pipeline artifacts +scripts/*.html +scripts/newsletter-*.md +scripts/newsletter-meta.json +/datacenters.json +/scripts/datacenters.json +/datacenters.runs.jsonl +/scripts/datacenters.runs.jsonl diff --git a/typescript-recipes/parallel-datacenter-map/LICENSE b/typescript-recipes/parallel-datacenter-map/LICENSE new file mode 100644 index 0000000..9ba296c --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Parallel Web Systems + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/typescript-recipes/parallel-datacenter-map/README.md b/typescript-recipes/parallel-datacenter-map/README.md new file mode 100644 index 0000000..6e788ab --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/README.md @@ -0,0 +1,157 @@ +# Datacenter Monitor + +A live map of U.S. datacenter infrastructure, built end-to-end on [Parallel](https://parallel.ai)'s **Task API** and **Monitor API**. Every facility on the map was *discovered*, *enriched*, and *classified* by Parallel — and 31 monitors watch the web for new developments, with each claim traceable to its sources. + +**Live demo:** https://datacenter-demo.app + +Everything here — the facility list, the 25 fields per facility, the AI-impact classifications, the weekly brief — is generated data. Nothing is hand-curated. This README documents exactly how it was produced so you can reproduce or extend it. + +--- + +## How the data was built + +The whole dataset is a pipeline of Parallel Task API runs. Each stage is a script in [`scripts/`](./scripts). + +### 1. Discover the facilities — `build_datacenters_iterative.py` + +There is no clean public registry of U.S. datacenters, so we enumerate them with the Task API. A single "find all US datacenters" query plateaus around ~50 results — the model returns the hyperscaler campuses it has the most signal about and can't reach the long tail of ~1,800 colocation, enterprise, telecom, and edge operators. Two techniques fix that: + +1. **Shard by geography.** Scope every query to *one state*. Enumerating a single state (reading facility directories) is the natural move, instead of dumping a global top-of-mind list. Ashburn alone goes 13 → ~90 this way. +2. **Paginate via interactions (loop-until-dry).** After the first pass for a state, keep asking for *net-new* facilities while passing `previous_interaction_id`. The model carries its own memory of what it already returned in that thread, so we never paste a list of known facilities into the prompt. Loop until a page stops adding results. + +Everything is resumable: results checkpoint after each shard, and every `run_id` / `interaction_id` is logged so work that completed server-side is always recoverable. + +```bash +export PARALLEL_API_KEY=... +python scripts/build_datacenters_iterative.py # all 50 states + DC, until dry +python scripts/build_datacenters_iterative.py --states "Texas,Ohio" --workers 8 +``` + +This produced **2,811 unique facilities** (deduped to 2,694 shown on the map) across all 50 states + DC — each with a name, operator, owner, coordinates, and a source URL. + +### 2. Enrich each facility — `run-enrichment*.ts` + +Every facility is then deep-researched with the `ultra2x` processor against a **25-field JSON schema** (verified name/operator/owner, power capacity, sqft, cooling type, tier, fiber, utility provider, tax incentives, hazard zone, construction updates, recent news, tenants, and more). Runs are submitted in parallel via **Task Groups**, and Parallel's `output.basis` gives per-field **reasoning + citations** for every value — that's what powers the basis panel behind each cell. + +```bash +npx tsx scripts/run-enrichment-v2.ts # submit enrichment task group +npx tsx scripts/collect-enrichments-v2.ts # collect results +npx tsx scripts/upload-per-facility.ts # store per-facility basis in Vercel Blob +``` + +### 3. Classify AI impact — `classify-ai.ts` + +A second Task API pass classifies each facility's AI profile and community/resource impact against a structured schema: `ai_class` (ai-training / ai-inference / ai-mixed / cloud-hyperscale / not-ai), plus water impact, grid impact, and community-pushback levels — each with its own evidence and citations. ~710 facilities classified; ~520 flagged as AI/cloud infrastructure. + +### 4. Monitor the web — `setup-monitors.ts` + `create-snapshots.ts` + +- **31 event-stream monitors** watch for datacenter developments — power-grid changes, zoning decisions, ownership transfers, community opposition, new-site discovery — returning classified, cited events. +- **200 daily snapshot monitors** re-verify facility fields once a day and surface field-level changes as diffs (with the re-verification's own reasoning + sources). + +--- + +## What the app does + +- **Interactive map** of every facility, colored by lifecycle (operational / under construction / planned / decommissioned), with scope toggles (all vs. AI datacenters) and monitor-driven highlighting. +- **Popups** with the enriched profile, AI-impact classification, and clickable primary sources loaded on demand. +- **Dataset table** with all 25 fields per facility. Click any cell to open its **basis panel** — the reasoning and citations Parallel used to produce that value. +- **Live monitor feed** with a chart-as-filter (break down by time / category / severity) and cited events. +- **Weekly brief** — a newsletter deep-researched and written by the Task API across all monitors, every claim linked to a source. + +## Parallel APIs used + +**Task API** +- Iterative facility discovery via interaction chaining (`previous_interaction_id`) +- 25-field facility enrichment (`ultra2x`, Task Groups, structured output) +- AI-impact classification (structured output) +- Weekly brief research + writing +- `output.basis` → per-field reasoning + citations everywhere + +**Monitor API** +- 31 event-stream monitors (classified events with severity + citations) +- 200 daily snapshot monitors (field-level change detection with diffs) +- Webhooks + SSE for real-time updates + +## Tech stack + +- **Next.js 16** (App Router, TypeScript) +- **react-leaflet** + Leaflet (map) +- **Tailwind CSS** (Parallel design system) +- **Vercel** (hosting, Blob storage, serverless, cron) + +--- + +## Setup + +**Prerequisites:** Node.js 18+, Python 3.9+, a [Parallel API key](https://platform.parallel.ai), and a Vercel account (Blob storage + deploy). + +```bash +git clone https://github.com/parallel-web/parallel-cookbook.git +cd parallel-cookbook/typescript-recipes/parallel-datacenter-map +npm install +cp .env.local.example .env.local # add your keys +``` + +Then run the pipeline (each stage is optional — the repo ships with the generated data already in `public/data/`): + +```bash +# 1. discover facilities +pip install parallel-web +python scripts/build_datacenters_iterative.py + +# 2. enrich + classify +npx tsx scripts/run-enrichment-v2.ts +npx tsx scripts/collect-enrichments-v2.ts +npx tsx scripts/upload-per-facility.ts +npx tsx scripts/classify-ai.ts + +# 3. set up monitors +npx tsx scripts/setup-monitors.ts +WEBHOOK_URL=https://your-app.vercel.app/api/webhook npx tsx scripts/create-snapshots.ts + +# 4. run +npm run dev # local +vercel --prod # deploy +``` + +## Architecture + +``` +Map view Monitor panel (right rail) +- Leaflet map, 2,694 facilities - Chart-as-filter (time / category / severity) +- lifecycle + AI scope toggles - Cited event feed +- popups: profile, AI impact, - Weekly brief reader + on-demand sources + +Dataset view +- 25 enriched fields per facility +- per-cell basis panel (reasoning + citations, from Vercel Blob) +- monitor signals + snapshot diffs + +API routes + /api/monitors live events from the 31 event-stream monitors + /api/snapshots daily snapshot change detection (with basis) + /api/basis per-facility reasoning + citations (Vercel Blob) + /api/webhook receives monitor events (SSE to the client) + /api/newsletter/* weekly brief generate / preview / issue list + /api/cron/newsletter weekly brief cron +``` + +## Scripts + +| Stage | Script | Purpose | +|-------|--------|---------| +| Discover | `build_datacenters_iterative.py` | Enumerate U.S. facilities (shard-by-state + interaction pagination) | +| Enrich | `run-enrichment.ts` / `run-enrichment-v2.ts` | Submit facility enrichment task groups (`ultra2x`) | +| Enrich | `collect-enrichments*.ts` | Collect enrichment results | +| Enrich | `upload-per-facility.ts` / `upload-enrichments.ts` | Store per-facility basis in Vercel Blob | +| Enrich | `backfill-basis.ts` | Re-fetch a run's basis from its `run_id` onto a stored facility | +| Classify | `classify-ai.ts` | AI-impact classification pass | +| Monitor | `setup-monitors.ts` / `monitor-configs.ts` | Create the 31 event-stream monitors | +| Monitor | `create-snapshots.ts` / `snapshots-to-daily.ts` | Create/tune daily snapshot monitors | +| Monitor | `set-webhooks.ts` / `check-events.ts` | Register webhooks / inspect events | +| Brief | `generate-issue.ts` / `seed-issue.ts` / `regenerate-brief.ts` | Generate the weekly brief | + +## License + +MIT — see [LICENSE](./LICENSE). diff --git a/typescript-recipes/parallel-datacenter-map/eslint.config.mjs b/typescript-recipes/parallel-datacenter-map/eslint.config.mjs new file mode 100644 index 0000000..05e726d --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/eslint.config.mjs @@ -0,0 +1,18 @@ +import { defineConfig, globalIgnores } from "eslint/config"; +import nextVitals from "eslint-config-next/core-web-vitals"; +import nextTs from "eslint-config-next/typescript"; + +const eslintConfig = defineConfig([ + ...nextVitals, + ...nextTs, + // Override default ignores of eslint-config-next. + globalIgnores([ + // Default ignores of eslint-config-next: + ".next/**", + "out/**", + "build/**", + "next-env.d.ts", + ]), +]); + +export default eslintConfig; diff --git a/typescript-recipes/parallel-datacenter-map/next.config.ts b/typescript-recipes/parallel-datacenter-map/next.config.ts new file mode 100644 index 0000000..e9ffa30 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/next.config.ts @@ -0,0 +1,7 @@ +import type { NextConfig } from "next"; + +const nextConfig: NextConfig = { + /* config options here */ +}; + +export default nextConfig; diff --git a/typescript-recipes/parallel-datacenter-map/package-lock.json b/typescript-recipes/parallel-datacenter-map/package-lock.json new file mode 100644 index 0000000..faf2974 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/package-lock.json @@ -0,0 +1,7774 @@ +{ + "name": "datacenter-map-demo", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "datacenter-map-demo", + "version": "0.1.0", + "dependencies": { + "@anthropic-ai/sdk": "^0.109.0", + "@types/leaflet": "^1.9.21", + "@types/papaparse": "^5.5.2", + "@vercel/blob": "^2.5.0", + "clsx": "^2.1.1", + "leaflet": "^1.9.4", + "lucide-react": "^1.22.0", + "next": "16.2.9", + "papaparse": "^5.5.4", + "react": "19.2.4", + "react-dom": "19.2.4", + "react-leaflet": "^5.0.0" + }, + "devDependencies": { + "@tailwindcss/postcss": "^4", + "@types/node": "^20", + "@types/react": "^19", + "@types/react-dom": "^19", + "eslint": "^9", + "eslint-config-next": "16.2.9", + "tailwindcss": "^4", + "tsx": "^4.22.4", + "typescript": "^5" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@anthropic-ai/sdk": { + "version": "0.109.0", + "resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.109.0.tgz", + "integrity": "sha512-y7P4eLyW5uNut4fXpOUEHqhJwx7dnxrWAfCQE4Lcgm0hSFQuIeHa7CWEKE5dFolEjQJE/RFKkppjri05r2OK/Q==", + "license": "MIT", + "dependencies": { + "json-schema-to-ts": "^3.1.1", + "standardwebhooks": "^1.0.0" + }, + "bin": { + "anthropic-ai-sdk": "bin/cli" + }, + "peerDependencies": { + "zod": "^3.25.0 || ^4.0.0" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } + } + }, + "node_modules/@babel/code-frame": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz", + "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.29.7", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz", + "integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz", + "integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.7", + "@babel/generator": "^7.29.7", + "@babel/helper-compilation-targets": "^7.29.7", + "@babel/helper-module-transforms": "^7.29.7", + "@babel/helpers": "^7.29.7", + "@babel/parser": "^7.29.7", + "@babel/template": "^7.29.7", + "@babel/traverse": "^7.29.7", + "@babel/types": "^7.29.7", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz", + "integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.7", + "@babel/types": "^7.29.7", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz", + "integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.29.7", + "@babel/helper-validator-option": "^7.29.7", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz", + "integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz", + "integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.29.7", + "@babel/types": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz", + "integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.29.7", + "@babel/helper-validator-identifier": "^7.29.7", + "@babel/traverse": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz", + "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz", + "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz", + "integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz", + "integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.29.7", + "@babel/types": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz", + "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.7" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz", + "integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz", + "integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.7", + "@babel/parser": "^7.29.7", + "@babel/types": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz", + "integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.7", + "@babel/generator": "^7.29.7", + "@babel/helper-globals": "^7.29.7", + "@babel/parser": "^7.29.7", + "@babel/template": "^7.29.7", + "@babel/types": "^7.29.7", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz", + "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.29.7", + "@babel/helper-validator-identifier": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@emnapi/core": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz", + "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.2.1", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.1.tgz", + "integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==", + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz", + "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.1.tgz", + "integrity": "sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.1.tgz", + "integrity": "sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.1.tgz", + "integrity": "sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.1.tgz", + "integrity": "sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.1.tgz", + "integrity": "sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.1.tgz", + "integrity": "sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.1.tgz", + "integrity": "sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.1.tgz", + "integrity": "sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.1.tgz", + "integrity": "sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.1.tgz", + "integrity": "sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.1.tgz", + "integrity": "sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.1.tgz", + "integrity": "sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.1.tgz", + "integrity": "sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.1.tgz", + "integrity": "sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.1.tgz", + "integrity": "sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.1.tgz", + "integrity": "sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.1.tgz", + "integrity": "sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.1.tgz", + "integrity": "sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.1.tgz", + "integrity": "sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.1.tgz", + "integrity": "sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.1.tgz", + "integrity": "sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.1.tgz", + "integrity": "sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.1.tgz", + "integrity": "sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.1.tgz", + "integrity": "sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.1.tgz", + "integrity": "sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.1.tgz", + "integrity": "sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/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, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.2", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz", + "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.5" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz", + "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.14.0", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.1", + "minimatch": "^3.1.5", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.4", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz", + "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz", + "integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/types": "^0.15.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.8.tgz", + "integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.2", + "@humanfs/types": "^0.15.0", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/types": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/@humanfs/types/-/types-0.15.0.tgz", + "integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "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, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@img/colour": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", + "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-darwin-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "cpu": [ + "arm" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "cpu": [ + "arm64" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "cpu": [ + "ppc64" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "cpu": [ + "riscv64" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "cpu": [ + "s390x" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "cpu": [ + "x64" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "cpu": [ + "arm64" + ], + "libc": [ + "musl" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "cpu": [ + "x64" + ], + "libc": [ + "musl" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "cpu": [ + "arm" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "cpu": [ + "arm64" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "cpu": [ + "ppc64" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-ppc64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "cpu": [ + "riscv64" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-riscv64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "cpu": [ + "s390x" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "cpu": [ + "x64" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "cpu": [ + "arm64" + ], + "libc": [ + "musl" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "cpu": [ + "x64" + ], + "libc": [ + "musl" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-wasm32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "cpu": [ + "wasm32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.7.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "cpu": [ + "ia32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@napi-rs/wasm-runtime": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.6.tgz", + "integrity": "sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@tybys/wasm-util": "^0.10.3" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Brooooooklyn" + }, + "peerDependencies": { + "@emnapi/core": "^1.7.1", + "@emnapi/runtime": "^1.7.1" + } + }, + "node_modules/@next/env": { + "version": "16.2.9", + "resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.9.tgz", + "integrity": "sha512-ki5VxxXfzD/9TDe13wyeTKIjQTAwBVpnr8KhRDUr8ltMUq1/NBpWNT5tiPoxiGl+PHM4X2ahSOiPk6iAimIzPg==", + "license": "MIT" + }, + "node_modules/@next/eslint-plugin-next": { + "version": "16.2.9", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-16.2.9.tgz", + "integrity": "sha512-UZi8+YT/MLgTC9nrrn2Xd4lBYv1B7lVmtWHfPcthAI5Tt/C1LuDe6DfmtCtJ+WQod3ksY4VrKSvk3oMVAnL7qw==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-glob": "3.3.1" + } + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "16.2.9", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.9.tgz", + "integrity": "sha512-HkfxNYUCmcct0Xsqib5KxqMSHV4AHJq857BNRchyBDs4YS19aHzVfn1kDuBYKqLLQBjXgnkIsjV2Kd4d2wzYhw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "16.2.9", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.9.tgz", + "integrity": "sha512-7IAtK4MeybpqRV9GRABWEhJ62mOS+rzWOzOTFie4cSEtm12xsoOMJRcECoZx3FHPzFAqN/IJtHqWAFOLfl152w==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "16.2.9", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.9.tgz", + "integrity": "sha512-hBD75iWpUtkL9SmQmcRhmLomn9jgkPzCEkbOcLgHymPEKzv+6ONy13RRiIEz/iEObjkS2Jlb5gYS2XGoS3X4rw==", + "cpu": [ + "arm64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "16.2.9", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.9.tgz", + "integrity": "sha512-qZTI3pf9SGc/obr8NkQAekBxmp1QK+kVm+VAf3BALLfFAj+1kUhkTxmrWpVos9R/UYIA8AWX2p6cGI5WdwzVUA==", + "cpu": [ + "arm64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "16.2.9", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.9.tgz", + "integrity": "sha512-xm0HfRNX+UkH4R3c18ynswjj5o5uEj/7iI9p9omdtTSIsRCzQqkGMA+10nzJ4EHnYC3as65IMhbbl5fWRUWHYg==", + "cpu": [ + "x64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "16.2.9", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.9.tgz", + "integrity": "sha512-QumimHkGEG6vM3PfEDWKyKen03NcqLOkeKB1EfcPe7VxzmEiCa4jNnMyBn/US5zcd/VE1CI+O8Ovb3lfjVHfGw==", + "cpu": [ + "x64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "16.2.9", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.9.tgz", + "integrity": "sha512-hzQpKZvw8rAwI6A2uQh6SacCSvNAXaIkPNsWwzqqfRiIMiXMfH936skDhz1OO6KpvdKkJrgHHtqQOq5PIXOvdQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "16.2.9", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.9.tgz", + "integrity": "sha512-qr2VL3Ce5QrwgO2yh1ujSBawrimjVKX8FGF/cOynmdYKJY0BdHpGVNIRK1tqONB10Vkm25Ub1BD2bkjWs4+96w==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "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, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "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, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nolyfill/is-core-module": { + "version": "1.0.39", + "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz", + "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.4.0" + } + }, + "node_modules/@react-leaflet/core": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-3.0.0.tgz", + "integrity": "sha512-3EWmekh4Nz+pGcr+xjf0KNyYfC3U2JjnkWsh0zcqaexYqmmB5ZhH37kz41JXGmKzpaMZCnPofBBm64i+YrEvGQ==", + "license": "Hippocratic-2.1", + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^19.0.0", + "react-dom": "^19.0.0" + } + }, + "node_modules/@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", + "dev": true, + "license": "MIT" + }, + "node_modules/@stablelib/base64": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@stablelib/base64/-/base64-1.0.1.tgz", + "integrity": "sha512-1bnPQqSxSuc3Ii6MhBysoWCg58j97aUjuCSZrGSmDxNqtytIi0k8utUenAwTZN4V5mXXYGsVUI9zeBqy+jBOSQ==", + "license": "MIT" + }, + "node_modules/@swc/helpers": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", + "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.8.0" + } + }, + "node_modules/@tailwindcss/node": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.1.tgz", + "integrity": "sha512-6NDaqRoAMSXD1mr/RXu0HBvNE9a2n5tHPsxu9XHLws8o4Twes5rBM2205SUUiJ9goAtadrN6xTGX0UDEwp/N4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.5", + "enhanced-resolve": "5.21.6", + "jiti": "^2.7.0", + "lightningcss": "1.32.0", + "magic-string": "^0.30.21", + "source-map-js": "^1.2.1", + "tailwindcss": "4.3.1" + } + }, + "node_modules/@tailwindcss/oxide": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.1.tgz", + "integrity": "sha512-yVPyo8RNkabVr3O2EhHEE0Rewu7YKzc1DhIqfL46LKveFrmu9XbDazNOJY7/GRuvw1h6u3utWnR29H/p5JPlgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 20" + }, + "optionalDependencies": { + "@tailwindcss/oxide-android-arm64": "4.3.1", + "@tailwindcss/oxide-darwin-arm64": "4.3.1", + "@tailwindcss/oxide-darwin-x64": "4.3.1", + "@tailwindcss/oxide-freebsd-x64": "4.3.1", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.1", + "@tailwindcss/oxide-linux-arm64-gnu": "4.3.1", + "@tailwindcss/oxide-linux-arm64-musl": "4.3.1", + "@tailwindcss/oxide-linux-x64-gnu": "4.3.1", + "@tailwindcss/oxide-linux-x64-musl": "4.3.1", + "@tailwindcss/oxide-wasm32-wasi": "4.3.1", + "@tailwindcss/oxide-win32-arm64-msvc": "4.3.1", + "@tailwindcss/oxide-win32-x64-msvc": "4.3.1" + } + }, + "node_modules/@tailwindcss/oxide-android-arm64": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.1.tgz", + "integrity": "sha512-SVlyf61g374l5cHyg8x9kf5xmLcOaxvOTsbsqDnSsDJaKOEFZ7GCvi84VAVGpxojYOs1+3K6M0UjXfqPU8vmOQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-arm64": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.1.tgz", + "integrity": "sha512-hVnWLwv+e/l7c4WKyVtHVrIPvYdqWHjRB3MDIqARynzFtnQg85kmQEFCbV9Ja0VVx4xXTIiDWY60Y7iz/iNoDA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-x64": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.1.tgz", + "integrity": "sha512-Cf7abu0WVgbhU7ANgPUnSAvm7nCvMweusHb8FnaHlLfv/Caq4GYaEZg7ZImzzmjx4lIAfuS8q+eLIS7A7IzxIg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-freebsd-x64": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.1.tgz", + "integrity": "sha512-ZZqzX2Y+GXtXXfqSfpJhDm60OoZfvLHLCgm+J7NVqgHHJjG/m9ugZI77RwTsVd4fnBJuCFP6Ae6kTJb71UdS8g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.1.tgz", + "integrity": "sha512-/Ah/xik0LaMYfv9DZ0S/t4pBlBNYOcqtRwusjgovHkvT8ixueWCLyJjsaF5kQIckjb4IT8Q6K6p/iPmZMixYgg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.1.tgz", + "integrity": "sha512-gqdFoVJlw444GvpnheZLHmvTzSxI/cOUUh2KSNejQjTcYkW062SVD+En0rUgD+QV91bz1XGIGtt1HJd48xUGbQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.1.tgz", + "integrity": "sha512-Bwv9KwOvE0VKa86xPFif9b9c3Y1NxOV1P0gLti/IYaWEsQYZXDlxfGEtA8mdDZ7SG3wyNXAWYT5SIn3giL57oA==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.1.tgz", + "integrity": "sha512-Ymi8O8T15HYQdOUWUtTI6ldN0neHP85FC+Qz32xTcZ7iJXtem/x8ITev0o1e9e5rkqj4lONZfTRLvkmin1+tKg==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-musl": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.1.tgz", + "integrity": "sha512-M+P/91qJ6uILLw4k2G93GMDRAXj61SMvFQYt39AqvUqYgExXpLL5aepfns7sj4HiAQeolirQF9E0lzRvdf4zPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.1.tgz", + "integrity": "sha512-zsM8uOeqvVGHsAXsJxsT28ttosFahLJKCLOTUBqRAtKnVgGSRitds9T432QiT8b77Yga7JIBkulIRRlJPtYhRA==", + "bundleDependencies": [ + "@napi-rs/wasm-runtime", + "@emnapi/core", + "@emnapi/runtime", + "@tybys/wasm-util", + "@emnapi/wasi-threads", + "tslib" + ], + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.10.0", + "@emnapi/runtime": "^1.10.0", + "@emnapi/wasi-threads": "^1.2.1", + "@napi-rs/wasm-runtime": "^1.1.4", + "@tybys/wasm-util": "^0.10.2", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.1.tgz", + "integrity": "sha512-aiNvSq9BsVk8V513lDKlrCFAgf8qBMPZTpgEhInL+NwQqs97mYmupVMrPrgBBSL8Pv/0zXu9MrMF9rMun1ZeNg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.1.tgz", + "integrity": "sha512-xDEyu1rg290472FEGaKHnzyDyh5QH+AlWvsU5hMoMtPpzmKlRI0jaYKCgSHDYtaQWZOYbMaduSyCwFwY4n1HmA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/postcss": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.3.1.tgz", + "integrity": "sha512-dNJuNbdEJT/SWRuXTYP1WSamelsz3ztkUsdtWQPjrexysrTpaEPM40P/71knXiXLYEojqPOEGitVLLpPMS5T6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "@tailwindcss/node": "4.3.1", + "@tailwindcss/oxide": "4.3.1", + "postcss": "8.5.15", + "tailwindcss": "4.3.1" + } + }, + "node_modules/@tybys/wasm-util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.3.tgz", + "integrity": "sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/estree": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz", + "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/geojson": { + "version": "7946.0.16", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz", + "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==", + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/leaflet": { + "version": "1.9.21", + "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.9.21.tgz", + "integrity": "sha512-TbAd9DaPGSnzp6QvtYngntMZgcRk+igFELwR2N99XZn7RXUdKgsXMR+28bUO0rPsWp8MIu/f47luLIQuSLYv/w==", + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/node": { + "version": "20.19.43", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.43.tgz", + "integrity": "sha512-6oYBAi5ikg4Pl+kGsoYtawUMBT2zZMCvPNF7pVLnHZfd1zf38DRiWn/gT01RYCdUqkv7Fhr+C9ot4/tb+2sVvA==", + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/papaparse": { + "version": "5.5.2", + "resolved": "https://registry.npmjs.org/@types/papaparse/-/papaparse-5.5.2.tgz", + "integrity": "sha512-gFnFp/JMzLHCwRf7tQHrNnfhN4eYBVYYI897CGX4MY1tzY9l2aLkVyx2IlKZ/SAqDbB3I1AOZW5gTMGGsqWliA==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/react": { + "version": "19.2.17", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz", + "integrity": "sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.62.0.tgz", + "integrity": "sha512-o+mpz7EYiMzXoySXiKmzlabIvTVqUuK5yLrAedRPRDA0IpPFMUV1IXt6OqljIxX/kumN6EjUYp41Hqelh6p/Dw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.12.2", + "@typescript-eslint/scope-manager": "8.62.0", + "@typescript-eslint/type-utils": "8.62.0", + "@typescript-eslint/utils": "8.62.0", + "@typescript-eslint/visitor-keys": "8.62.0", + "ignore": "^7.0.5", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.5.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.62.0", + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.62.0.tgz", + "integrity": "sha512-dzHeT2gySzZtLDsuqxU9AkYgIsQoHAHtRBpOqM+Ofzx1Bwrd2RcCjQJ+6iQbsHOIR6NS33bF2W1k3blN1zLDrA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.62.0", + "@typescript-eslint/types": "8.62.0", + "@typescript-eslint/typescript-estree": "8.62.0", + "@typescript-eslint/visitor-keys": "8.62.0", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.62.0.tgz", + "integrity": "sha512-wexnCqiTg7BOGtbLDftYpRWlmLq4xfoMd7BKFR6Y75sZS3QmRKLdN3yWLhmIYgqMmP/OXWpj3H8odkb5nGURCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.62.0", + "@typescript-eslint/types": "^8.62.0", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.62.0.tgz", + "integrity": "sha512-1lX38kNxXIRb8mEc3lbq5mdHq1Pf2+U0nFU65KfT18mtPxxl0fvjuEE92mHuXPuCtElJhOrddOpyMlM3Z0umEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.62.0", + "@typescript-eslint/visitor-keys": "8.62.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.62.0.tgz", + "integrity": "sha512-y2GAdB6ykaXUvuspbYnizQc4oDDz0Tz/Yc7iWrXf9mx8vm/L/0vLHCe0tS2boG96Zy+DivnVDQ9ZUEWoHqqx1g==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.62.0.tgz", + "integrity": "sha512-+g5O3j0w2ldzC86Pv6fvbO/xhAonbJFIdf/MKQ1d30gndlsVzUOE83ldfSE15Qrl9fhFjK6AovHs5Wpp6vx86w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.62.0", + "@typescript-eslint/typescript-estree": "8.62.0", + "@typescript-eslint/utils": "8.62.0", + "debug": "^4.4.3", + "ts-api-utils": "^2.5.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.62.0.tgz", + "integrity": "sha512-KvAclkktORPvM54TgLgA4z9HIV1M8zOgw9ZVNXl9f/8dLYfXYX1wkMXP7qmabpijQRV5bHJLOmoyGQbLMaUYeg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.62.0.tgz", + "integrity": "sha512-+hVbNxtW64pIcZWDPGbyaKF7vp2IBTVY5ma1blwwksrjdsbdqqEKvJWMGbBofei4F6Dovx1M0RJgoFeNu2279A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.62.0", + "@typescript-eslint/tsconfig-utils": "8.62.0", + "@typescript-eslint/types": "8.62.0", + "@typescript-eslint/visitor-keys": "8.62.0", + "debug": "^4.4.3", + "minimatch": "^10.2.2", + "semver": "^7.7.3", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.5.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz", + "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "brace-expansion": "^5.0.5" + }, + "engines": { + "node": "18 || 20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.8.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz", + "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.62.0.tgz", + "integrity": "sha512-82r66fi9zYwZ+mTq3vKgwjbZ1PVk/DJzrXFLpG6RnBbdvH8TEGVHIs9H4d2drhkOzf0syZuD/OZvvlu6GDbP4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.9.1", + "@typescript-eslint/scope-manager": "8.62.0", + "@typescript-eslint/types": "8.62.0", + "@typescript-eslint/typescript-estree": "8.62.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.62.0.tgz", + "integrity": "sha512-CY3uyFSRbcQv3nnSv8S0+lDftMVz6P963PoRlxrV7ew/Md564g9ut60PYzdLM5qW4jFn93GBF+Soi90ISAN+GQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.62.0", + "eslint-visitor-keys": "^5.0.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^20.19.0 || ^22.13.0 || >=24" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@unrs/resolver-binding-android-arm-eabi": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.12.2.tgz", + "integrity": "sha512-g5T90pqg1bo/7mytQx6F4iBNC0Wsh9cu+z9veDbFjc7HjpesJFWD7QMS0NGStXM075+7dJPPVvBbpZlnrdpi/w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-android-arm64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.12.2.tgz", + "integrity": "sha512-YGCRZv/9GLhwmz6mYDeTsm/92BAyR28l6c2ReweVW5pWgfsitWLY8upvfRlGdoyD8HjeTHSYJWyZGD4KJA/nFQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-arm64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.12.2.tgz", + "integrity": "sha512-u9DiNT1auQMO20A9SyTuG3wUgQWB9Z7KjAg0uFuCDR1FsAY8A0CG2S6JpHS1xwm/w1G08bjXZDcyOCjv1WAm2w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-x64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.12.2.tgz", + "integrity": "sha512-f7rPLi/T1HVKZu/u6t87lroib16n8vrSzcyxI7lg4BGO9UF26KhQL44sd9eOUgrTYhvRXtWOIZT5PejdPyJfUA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-freebsd-x64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.12.2.tgz", + "integrity": "sha512-BpcOjWCJub6nRZUS2zA20pmLvjtqAtGejETaIyRLiZiQf++cbrjltLA5NN/xaXfqeOBOSlMFbemIl5/S5tljmg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.12.2.tgz", + "integrity": "sha512-vZTDvdSISZjJx66OzJqtsOhzifbqRjbmI1Mnu49fQDwog5GtDI4QidRiEAYbZCRj9C8YZEW+3ZjqsyS9GR4k2A==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.12.2.tgz", + "integrity": "sha512-BiPI+IrIlwcW4nLLMM21+B1dFPzd55yAVgVGrdgDjNef+ch03GdxrcyaIz8X9SsQirh/kCQ7mviyWlMxdh2D7g==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.12.2.tgz", + "integrity": "sha512-zJc0H99FEPoFfSrNpa91HYfxzfAJCr502oxNK1cfdC9hlaFI43RT+JFCann9JUgZmLzzntChHyn13Sgn9ljHNg==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-musl": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.12.2.tgz", + "integrity": "sha512-KQ3Lki6l+Pz1k/eBipN41ES+YUK30beLGb9YqcB1O542cyLCNE6GaxrfcY3T6EezmGGk84wb5XyO9loTM9tkcA==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-loong64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-loong64-gnu/-/resolver-binding-linux-loong64-gnu-1.12.2.tgz", + "integrity": "sha512-3SJGEh1DborhG6pyxvhPzCT4bbSIVihsvgJc13P1bHG7KLdNDaF9T3gsTwFc7Jw/5Y5/iWOjkEx7Zy0NvCGX3Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-loong64-musl": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-loong64-musl/-/resolver-binding-linux-loong64-musl-1.12.2.tgz", + "integrity": "sha512-jiuG/Obbel7uw1PwHNFfrkiKhLAF6mnyZ6aWlOAVN9WqKm8v0OFGnciJIHu8+CMvXLQ8AD51LPzAoUfT21D5Ew==", + "cpu": [ + "loong64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.12.2.tgz", + "integrity": "sha512-q7xRvVpmcfeL+LlZg8Pbbo6QaTZwDU5BaGZbwfhkEsXJn3Was8xYfE0RBH266xZt0rM6B7i8xAYIvjthuUIWHg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.12.2.tgz", + "integrity": "sha512-0CVdx6lcnT3Q9inOH8tsMIOJ6ImndllMjqJHg8RLVdB7Vq4SfkEXl9mCSsVNuNA4MCYycRicCUxPCabVHJRr6A==", + "cpu": [ + "riscv64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-musl": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.12.2.tgz", + "integrity": "sha512-iOwlRo9vnp6R6ohHQS11n0NnfdXx/omhkocmIfaPRpQhKZ+3BDMkkdRVh53qjkFkpPddf+FETA28NwGN7l5l+w==", + "cpu": [ + "riscv64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.12.2.tgz", + "integrity": "sha512-HYJtLfXq94q8iZNFT1lknx258wlkkWhZeUXJRqzKBBUJ00CvZ+N33zgbCqimLjsyw5Va6uUxhVa12mI+kaveEw==", + "cpu": [ + "s390x" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.12.2.tgz", + "integrity": "sha512-mPsUhunKKDih5O96Y6enDQyHc1SqBPlY1E/SfMWDM3EdJ95Z9CArPeCVwCCqbP45ljvivdEk8Fxn+SIb1rDAJQ==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-musl": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.12.2.tgz", + "integrity": "sha512-azrt6+5ydLd8Vt210AAFis/lZevSfPw93EJRIJG+xPu4WCJ8K0kppCTpMyLPcKT7H15M4Jnt2tMp5bOvCkRC6A==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-openharmony-arm64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-openharmony-arm64/-/resolver-binding-openharmony-arm64-1.12.2.tgz", + "integrity": "sha512-YZ9hP4O0X9PQb8eO980qmLNGH4zT3I9+SZTdt0Pr0YyuGQhYKoOZkV02VzrzyOZJ5xIJ3UFIenKkUkGg8GjgWQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@unrs/resolver-binding-wasm32-wasi": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.12.2.tgz", + "integrity": "sha512-tYFDIkMxSflfEc/h92ZWNsZlHSwgimbNHSO3PL2JWQHfCuC2q316jMyYU9TIWZsFK2bQwyK5VAdYgn8ygPj69A==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "1.10.0", + "@emnapi/runtime": "1.10.0", + "@napi-rs/wasm-runtime": "^1.1.4" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@unrs/resolver-binding-wasm32-wasi/node_modules/@emnapi/runtime": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz", + "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.12.2.tgz", + "integrity": "sha512-qzNyg3xL0VPQmCaUh+N5jSitce6k+uCBfMDesWRnlULOZaqUkaJ0ybdT+UqlAWJoQjuqfIU/0Ptx9bteN4D82g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.12.2.tgz", + "integrity": "sha512-WD9sY00OfpHVGfsnHZoA8jVT+esS/Bg8z8jzxp5BnDCjjwsuKsPQrzswwpFy4J1AUJbXPRfkpcX0mXrzeXW79g==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-x64-msvc": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.12.2.tgz", + "integrity": "sha512-nAB74NfSNKknqQ1RrYj6uz8FcXEomu/MATJZxh/x+BArzN2U3JbOYC0APYzUIGhVY3m5hRxA8VPNdPBoG8txlA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@vercel/blob": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@vercel/blob/-/blob-2.5.0.tgz", + "integrity": "sha512-ke6WnMMYlUu9nBFmyjwEkC2o03Ku2X7QIeJ3KtlOJzblS/8Xau209zt0ic76rd7IvV5nrKCH/BzP4MkFmoSLuw==", + "license": "Apache-2.0", + "dependencies": { + "@vercel/oidc": "^3.6.1", + "async-retry": "^1.3.3", + "is-buffer": "^2.0.5", + "is-node-process": "^1.2.0", + "throttleit": "^2.1.0", + "undici": "^6.23.0" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@vercel/cli-config": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@vercel/cli-config/-/cli-config-0.2.0.tgz", + "integrity": "sha512-fJRRRB7734BDuXZ89yBEaA2ncYhH7bWX30mk04W80J6VAfQc+4iB8lyzAdaGpFV3/vNlkt9VZt+/uoQoWX6UsQ==", + "license": "Apache-2.0", + "dependencies": { + "xdg-app-paths": "5", + "zod": "4.1.11" + } + }, + "node_modules/@vercel/cli-config/node_modules/zod": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.1.11.tgz", + "integrity": "sha512-WPsqwxITS2tzx1bzhIKsEs19ABD5vmCVa4xBo2tq/SrV4RNZtfws1EnCWQXM6yh8bD08a1idvkB5MZSBiZsjwg==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/@vercel/cli-exec": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@vercel/cli-exec/-/cli-exec-1.0.0.tgz", + "integrity": "sha512-kQF8LGie/Hbdq9/psJxLE7owRTcqMQMhgybU04gCeR7cbQAr5t8OrjefDNColJv1QSSucFt4pLwRiARVmlOnug==", + "license": "Apache-2.0", + "dependencies": { + "execa": "5.1.1" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@vercel/oidc": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/@vercel/oidc/-/oidc-3.7.1.tgz", + "integrity": "sha512-RrSsVWbq3KLK5lJobyTPp3tSthNfUp+zWkXno5Wkko0oEW05rA4ngOrnVypP4+L8/Av89uPo2rWFmzL8iwnsmA==", + "license": "Apache-2.0", + "dependencies": { + "@vercel/cli-config": "0.2.0", + "@vercel/cli-exec": "1.0.0", + "jose": "^5.9.6" + }, + "engines": { + "node": ">= 20" + } + }, + "node_modules/acorn": { + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.17.0.tgz", + "integrity": "sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "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, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz", + "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==", + "dev": true, + "license": "MIT", + "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/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, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "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, + "license": "Python-2.0" + }, + "node_modules/aria-query": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", + "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "get-intrinsic": "^1.3.0", + "is-string": "^1.1.1", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz", + "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-shim-unscopables": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/async-retry": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", + "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", + "license": "MIT", + "dependencies": { + "retry": "0.13.1" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.12.1.tgz", + "integrity": "sha512-s7iGf5GaVMxEG0ENN9x+xTr7GFZCb1ZP/1uATUpCEK2X78nDB3RwbtFCo9pGAf9ru+VwoQ464DkaLEeRM08wJA==", + "dev": true, + "license": "MPL-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "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, + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.10.40", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.40.tgz", + "integrity": "sha512-BSSLZ9/Cjjv7Gtj5B68ZzXcXUg8iOf3fme+FCuh8rC/Go+Kmh8cox7M3A8dolou16s64QjLPOSdngh7GxXvkSw==", + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.15.tgz", + "integrity": "sha512-EwOCDEex4quD37XhqM3omwtMoJjr//isUZz1JopUNWms+4Z2ViyM/k1YIRePpoVNnQhENnxtFjLaxNHrT7xIUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.28.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.4.tgz", + "integrity": "sha512-MTc8i/x9jBQd1iMw2CFGS+rwMa07eYjLR0CCTLDACl9xhxy+nIs3KeML/biicXtk9JrZ6dnnTatmc7ErPXIxqw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.10.38", + "caniuse-lite": "^1.0.30001799", + "electron-to-chromium": "^1.5.376", + "node-releases": "^2.0.48", + "update-browserslist-db": "^1.2.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/call-bind": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.9.tgz", + "integrity": "sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "get-intrinsic": "^1.3.0", + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001799", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001799.tgz", + "integrity": "sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "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, + "license": "MIT", + "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/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "license": "MIT" + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "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, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "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, + "license": "MIT" + }, + "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, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/data-view-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/inspect-js" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "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, + "license": "MIT" + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "devOptional": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.380", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.380.tgz", + "integrity": "sha512-W6d5AbuEoRayO447cqrg6lKJIlscgRnnxOZl/08kfV71BQDoEBC7Wwis68z87LjyK6f4kWyTaubuDbhHKrZkbA==", + "dev": true, + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/enhanced-resolve": { + "version": "5.21.6", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.6.tgz", + "integrity": "sha512-aNnGCvbJ/RIyWo1IuhNdVjnNF+EjH9wpzpNHt+ci/m9He9LJvUN8wrCcXjp9cWsGNAuvSpVFTx/vraAFQ8qGjQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.3.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/es-abstract": { + "version": "1.24.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.2.tgz", + "integrity": "sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.2", + "arraybuffer.prototype.slice": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "data-view-buffer": "^1.0.2", + "data-view-byte-length": "^1.0.2", + "data-view-byte-offset": "^1.0.1", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", + "get-symbol-description": "^1.1.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "internal-slot": "^1.1.0", + "is-array-buffer": "^3.0.5", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.2", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.2.1", + "is-set": "^2.0.3", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.1", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.4", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.3", + "typed-array-byte-length": "^1.0.3", + "typed-array-byte-offset": "^1.0.4", + "typed-array-length": "^1.0.7", + "unbox-primitive": "^1.1.0", + "which-typed-array": "^1.1.19" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-abstract-get": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-abstract-get/-/es-abstract-get-1.0.0.tgz", + "integrity": "sha512-6PMWXpdhshVvFp+FoWYs1EvG1Nj0tvk0dZM+XcK0xMEM1czRVcP6ohqPWHy6qPagSpC8j4+p89WXlT+xXJs/fg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.2", + "is-callable": "^1.2.7", + "object-inspect": "^1.13.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.3.3.tgz", + "integrity": "sha512-0PuBxFi+4uPanB97iDxCLWuHeYud2FALrw5HFZGtAF38UpJDbDC8frwp2cnDyae692CQ0dou60UwWfhgsa4U/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.9", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.2", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.1.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.3.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "iterator.prototype": "^1.1.5", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz", + "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", + "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.4.tgz", + "integrity": "sha512-yPDz7wqpg1/mmHLmS3tcfTfbw5f1eryXvyghYBffGdERwe+mV7ZcWzTR8LR17Kvqt3qfPurjlonmnq3MKXIOXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-abstract-get": "^1.0.0", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "is-callable": "^1.2.7", + "is-date-object": "^1.1.0", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/esbuild": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.1.tgz", + "integrity": "sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.28.1", + "@esbuild/android-arm": "0.28.1", + "@esbuild/android-arm64": "0.28.1", + "@esbuild/android-x64": "0.28.1", + "@esbuild/darwin-arm64": "0.28.1", + "@esbuild/darwin-x64": "0.28.1", + "@esbuild/freebsd-arm64": "0.28.1", + "@esbuild/freebsd-x64": "0.28.1", + "@esbuild/linux-arm": "0.28.1", + "@esbuild/linux-arm64": "0.28.1", + "@esbuild/linux-ia32": "0.28.1", + "@esbuild/linux-loong64": "0.28.1", + "@esbuild/linux-mips64el": "0.28.1", + "@esbuild/linux-ppc64": "0.28.1", + "@esbuild/linux-riscv64": "0.28.1", + "@esbuild/linux-s390x": "0.28.1", + "@esbuild/linux-x64": "0.28.1", + "@esbuild/netbsd-arm64": "0.28.1", + "@esbuild/netbsd-x64": "0.28.1", + "@esbuild/openbsd-arm64": "0.28.1", + "@esbuild/openbsd-x64": "0.28.1", + "@esbuild/openharmony-arm64": "0.28.1", + "@esbuild/sunos-x64": "0.28.1", + "@esbuild/win32-arm64": "0.28.1", + "@esbuild/win32-ia32": "0.28.1", + "@esbuild/win32-x64": "0.28.1" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.39.4", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.4.tgz", + "integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.2", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.5", + "@eslint/js": "9.39.4", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.14.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.5", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-config-next": { + "version": "16.2.9", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-16.2.9.tgz", + "integrity": "sha512-olGtBrs07bQchpaJWeqbk9GaMoU0oGmN/pYNEBXSbfgKngb5uHnPe37X6tVeh6DJfaWFQildvinGEOrolo5fmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@next/eslint-plugin-next": "16.2.9", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.32.0", + "eslint-plugin-jsx-a11y": "^6.10.0", + "eslint-plugin-react": "^7.37.0", + "eslint-plugin-react-hooks": "^7.0.0", + "globals": "16.4.0", + "typescript-eslint": "^8.46.0" + }, + "peerDependencies": { + "eslint": ">=9.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-config-next/node_modules/globals": { + "version": "16.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-16.4.0.tgz", + "integrity": "sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.10.tgz", + "integrity": "sha512-tRrKqFyCaKict5hOd244sL6EQFNycnMQnBe+j8uqGNXYzsImGbGUU4ibtoaBmv5FLwJwcFJNeg1GeVjQfbMrDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.16.1", + "resolve": "^2.0.0-next.6" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.1.tgz", + "integrity": "sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "@nolyfill/is-core-module": "1.0.39", + "debug": "^4.4.0", + "get-tsconfig": "^4.10.0", + "is-bun-module": "^2.0.0", + "stable-hash": "^0.0.5", + "tinyglobby": "^0.2.13", + "unrs-resolver": "^1.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-import-resolver-typescript" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*", + "eslint-plugin-import-x": "*" + }, + "peerDependenciesMeta": { + "eslint-plugin-import": { + "optional": true + }, + "eslint-plugin-import-x": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.13.0.tgz", + "integrity": "sha512-bLohSkT6469rRs8czj0tLTD8vaeIS/whvPRJVjDr7IuoTT1k5DYDERlNycjDj/HkOlvQdYurmfZ/g3fG5bgeLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.32.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz", + "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rtsao/scc": "^1.1.0", + "array-includes": "^3.1.9", + "array.prototype.findlastindex": "^1.2.6", + "array.prototype.flat": "^1.3.3", + "array.prototype.flatmap": "^1.3.3", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.12.1", + "hasown": "^2.0.2", + "is-core-module": "^2.16.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "object.groupby": "^1.0.3", + "object.values": "^1.2.1", + "semver": "^6.3.1", + "string.prototype.trimend": "^1.0.9", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz", + "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "aria-query": "^5.3.2", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.10.0", + "axobject-query": "^4.1.0", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "hasown": "^2.0.2", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.1" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.37.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", + "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.3", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.2.1", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.9", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.1", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.12", + "string.prototype.repeat": "^1.0.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.1.1.tgz", + "integrity": "sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.24.4", + "@babel/parser": "^7.24.4", + "hermes-parser": "^0.25.1", + "zod": "^3.25.0 || ^4.0.0", + "zod-validation-error": "^3.5.0 || ^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", + "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "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, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "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, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "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, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "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, + "license": "MIT" + }, + "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, + "license": "MIT", + "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, + "license": "ISC", + "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, + "license": "MIT" + }, + "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, + "license": "MIT" + }, + "node_modules/fast-sha256": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-sha256/-/fast-sha256-1.3.0.tgz", + "integrity": "sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==", + "license": "Unlicense" + }, + "node_modules/fastq": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "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, + "license": "MIT", + "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": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", + "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==", + "dev": true, + "license": "ISC" + }, + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.2.0.tgz", + "integrity": "sha512-jObKIik1P2QjPHP5nz5BaOtUlfgS0fWo8IUByNXkM+o+02sJOi94em77GwJKQSJ3gfPHdgzLNrHc1uokV4P/ew==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.9", + "call-bound": "^1.0.4", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2", + "hasown": "^2.0.4", + "is-callable": "^1.2.7", + "is-document.all": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/generator-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", + "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.14.0.tgz", + "integrity": "sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "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, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz", + "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hermes-estree": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", + "dev": true, + "license": "MIT" + }, + "node_modules/hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "hermes-estree": "0.25.1" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/is-bun-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz", + "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.7.1" + } + }, + "node_modules/is-bun-module/node_modules/semver": { + "version": "7.8.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz", + "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.16.2", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.2.tgz", + "integrity": "sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-document.all": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-document.all/-/is-document.all-1.0.0.tgz", + "integrity": "sha512-+XSoyS05OdBbhFuELhgTCpFNHkpBOJqtsZfUFFpe5QTw+9Sjbh8zitxhQkYAo6wV7e1Vb8cAPvpCk9jGam/82g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "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, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-generator-function": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", + "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.4", + "generator-function": "^2.0.0", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-node-process": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-node-process/-/is-node-process-1.2.0.tgz", + "integrity": "sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==", + "license": "MIT" + }, + "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, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/iterator.prototype": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", + "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "get-proto": "^1.0.0", + "has-symbols": "^1.1.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/jiti": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz", + "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/jose": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/jose/-/jose-5.10.0.tgz", + "integrity": "sha512-s+3Al/p9g32Iq+oqXxkW//7jk2Vig6FF1CFqzVXoTUXt2qz89YWbL+OwS17NFYEvxC35n0FKeGO2LGYSxeM2Gg==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/panva" + } + }, + "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, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.3.0.tgz", + "integrity": "sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/puzrin" + }, + { + "type": "github", + "url": "https://github.com/sponsors/nodeca" + } + ], + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "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, + "license": "MIT" + }, + "node_modules/json-schema-to-ts": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-3.1.1.tgz", + "integrity": "sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "ts-algebra": "^2.0.0" + }, + "engines": { + "node": ">=16" + } + }, + "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, + "license": "MIT" + }, + "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, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dev": true, + "license": "MIT", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/leaflet": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.9.4.tgz", + "integrity": "sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==", + "license": "BSD-2-Clause" + }, + "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, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lightningcss": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz", + "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^2.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.32.0", + "lightningcss-darwin-arm64": "1.32.0", + "lightningcss-darwin-x64": "1.32.0", + "lightningcss-freebsd-x64": "1.32.0", + "lightningcss-linux-arm-gnueabihf": "1.32.0", + "lightningcss-linux-arm64-gnu": "1.32.0", + "lightningcss-linux-arm64-musl": "1.32.0", + "lightningcss-linux-x64-gnu": "1.32.0", + "lightningcss-linux-x64-musl": "1.32.0", + "lightningcss-win32-arm64-msvc": "1.32.0", + "lightningcss-win32-x64-msvc": "1.32.0" + } + }, + "node_modules/lightningcss-android-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz", + "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz", + "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz", + "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz", + "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz", + "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz", + "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz", + "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz", + "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz", + "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz", + "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz", + "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "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, + "license": "MIT", + "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, + "license": "MIT" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lucide-react": { + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-1.22.0.tgz", + "integrity": "sha512-c9o3l0PiNcgOQDW4F31BEYHudE7kgxVt3o30qMl36ZPwTxXlGB4QnLilhERvVM4uh/pl5MDyY1/gzZSYcHDtBg==", + "license": "ISC", + "peerDependencies": { + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "license": "MIT" + }, + "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, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.15", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.15.tgz", + "integrity": "sha512-y7Wygv/7mEOvxTuEQDB8StXdMRBWf1kR/tlhAzBRUFkB2jfcLOAxO/SHmOO2zgz1pVgK29/kyupn059/bCHdjA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/napi-postinstall": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz", + "integrity": "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==", + "dev": true, + "license": "MIT", + "bin": { + "napi-postinstall": "lib/cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/napi-postinstall" + } + }, + "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, + "license": "MIT" + }, + "node_modules/next": { + "version": "16.2.9", + "resolved": "https://registry.npmjs.org/next/-/next-16.2.9.tgz", + "integrity": "sha512-MEOJiq/UvuezAdqVSceHbqDgZt1kDw2tpGVOlsdIoJsQdbN2JY2hpVG4xnXGkbdJUOEWhnRfiu/O4Hpc9Juwww==", + "license": "MIT", + "dependencies": { + "@next/env": "16.2.9", + "@swc/helpers": "0.5.15", + "baseline-browser-mapping": "^2.9.19", + "caniuse-lite": "^1.0.30001579", + "postcss": "8.4.31", + "styled-jsx": "5.1.6" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=20.9.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "16.2.9", + "@next/swc-darwin-x64": "16.2.9", + "@next/swc-linux-arm64-gnu": "16.2.9", + "@next/swc-linux-arm64-musl": "16.2.9", + "@next/swc-linux-x64-gnu": "16.2.9", + "@next/swc-linux-x64-musl": "16.2.9", + "@next/swc-win32-arm64-msvc": "16.2.9", + "@next/swc-win32-x64-msvc": "16.2.9", + "sharp": "^0.34.5" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "@playwright/test": "^1.51.1", + "babel-plugin-react-compiler": "*", + "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "@playwright/test": { + "optional": true + }, + "babel-plugin-react-compiler": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/next/node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "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": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/node-exports-info": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/node-exports-info/-/node-exports-info-1.6.2.tgz", + "integrity": "sha512-kXs9Go0cah0qHVV2v389IXQLdLCeE1xfFtjOAF+iobu0OIoG1pje8At2vMHyaPMiPMnG/LWP50twML21eMcAag==", + "dev": true, + "license": "MIT", + "dependencies": { + "array.prototype.flatmap": "^1.3.3", + "es-errors": "^1.3.0", + "object.entries": "^1.1.9", + "semver": "^6.3.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/node-releases": { + "version": "2.0.50", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.50.tgz", + "integrity": "sha512-J6l92tKHX6w8Jy5nO1Vuc01NoIiRGi/d6qBKVxh+IQ8Cr3b6HbVNfKiF8ZpFKufTwpwxMmce2W3iQZ861ZRyTg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", + "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.values": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/os-paths": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/os-paths/-/os-paths-4.4.0.tgz", + "integrity": "sha512-wrAwOeXp1RRMFfQY8Sy7VaGVmPocaLwSFOYCGKSyo8qmJ+/yaafCl5BCA1IQZWqFSRBrKDYFeR9d/VyQzfH/jg==", + "license": "MIT", + "engines": { + "node": ">= 6.0" + } + }, + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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, + "license": "MIT", + "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, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/papaparse": { + "version": "5.5.4", + "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.5.4.tgz", + "integrity": "sha512-SwzWD9gl/ElwYLCI0nUja1mFJzjq2D8ziShfNBa7zCHzkOozeOGDwHWQ+tvCzEZcewecWZ5U7kUopDnG+DFYEQ==", + "license": "MIT" + }, + "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, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "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==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.5.15", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz", + "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==", + "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" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.12", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "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" + } + ], + "license": "MIT" + }, + "node_modules/react": { + "version": "19.2.4", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz", + "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.2.4", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz", + "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==", + "license": "MIT", + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.4" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/react-leaflet": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/react-leaflet/-/react-leaflet-5.0.0.tgz", + "integrity": "sha512-CWbTpr5vcHw5bt9i4zSlPEVQdTVcML390TjeDG0cK59z1ylexpqC6M1PJFjV8jD7CF+ACBFsLIDs6DRMoLEofw==", + "license": "Hippocratic-2.1", + "dependencies": { + "@react-leaflet/core": "^3.0.0" + }, + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^19.0.0", + "react-dom": "^19.0.0" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.7", + "get-proto": "^1.0.1", + "which-builtin-type": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve": { + "version": "2.0.0-next.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.7.tgz", + "integrity": "sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "is-core-module": "^2.16.2", + "node-exports-info": "^1.6.0", + "object-keys": "^1.1.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "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" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.4.tgz", + "integrity": "sha512-wtZlHyOje6OZTGqAoaDKxFkgRtkF9CnHAVnCHKfuj200wAgL+bSJhdsCD2l0Qx/2ekEXjPWcyKkfGb5CPboslg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.9", + "call-bound": "^1.0.4", + "get-intrinsic": "^1.3.0", + "has-symbols": "^1.1.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-push-apply": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-proto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/sharp": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", + "hasInstallScript": true, + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "@img/colour": "^1.0.0", + "detect-libc": "^2.1.2", + "semver": "^7.7.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.34.5", + "@img/sharp-darwin-x64": "0.34.5", + "@img/sharp-libvips-darwin-arm64": "1.2.4", + "@img/sharp-libvips-darwin-x64": "1.2.4", + "@img/sharp-libvips-linux-arm": "1.2.4", + "@img/sharp-libvips-linux-arm64": "1.2.4", + "@img/sharp-libvips-linux-ppc64": "1.2.4", + "@img/sharp-libvips-linux-riscv64": "1.2.4", + "@img/sharp-libvips-linux-s390x": "1.2.4", + "@img/sharp-libvips-linux-x64": "1.2.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", + "@img/sharp-linux-arm": "0.34.5", + "@img/sharp-linux-arm64": "0.34.5", + "@img/sharp-linux-ppc64": "0.34.5", + "@img/sharp-linux-riscv64": "0.34.5", + "@img/sharp-linux-s390x": "0.34.5", + "@img/sharp-linux-x64": "0.34.5", + "@img/sharp-linuxmusl-arm64": "0.34.5", + "@img/sharp-linuxmusl-x64": "0.34.5", + "@img/sharp-wasm32": "0.34.5", + "@img/sharp-win32-arm64": "0.34.5", + "@img/sharp-win32-ia32": "0.34.5", + "@img/sharp-win32-x64": "0.34.5" + } + }, + "node_modules/sharp/node_modules/semver": { + "version": "7.8.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz", + "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==", + "license": "ISC", + "optional": true, + "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==", + "license": "MIT", + "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==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz", + "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.4", + "side-channel-list": "^1.0.1", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz", + "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "license": "ISC" + }, + "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/stable-hash": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz", + "integrity": "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==", + "dev": true, + "license": "MIT" + }, + "node_modules/standardwebhooks": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/standardwebhooks/-/standardwebhooks-1.0.0.tgz", + "integrity": "sha512-BbHGOQK9olHPMvQNHWul6MYlrRTAOKn03rOe4A8O3CLWhNf4YHBqq2HJKKC+sfqpxiBY52pNeesD6jIiLDz8jg==", + "license": "MIT", + "dependencies": { + "@stablelib/base64": "^1.0.0", + "fast-sha256": "^1.3.0" + } + }, + "node_modules/stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string.prototype.includes": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", + "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", + "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "regexp.prototype.flags": "^1.5.3", + "set-function-name": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.11.tgz", + "integrity": "sha512-PwvK7BU+CMTJGYQCTZb5RWXIML92lftJLhQz1tBzgKiqGxJaMlBAa48POXaNAC2s4y8jr3EFqrkF9+44neS46w==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.9", + "call-bound": "^1.0.4", + "define-data-property": "^1.1.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.2", + "es-object-atoms": "^1.1.2", + "has-property-descriptors": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.10.tgz", + "integrity": "sha512-2+3aDAOmPTmuFwjDnmJG2ctEkQKVki7vOSqaxkv42Mowj1V6PnvuwFCRrR5lChUux1TBskPjfkeTOhqczDMxTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.9", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", + "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", + "license": "MIT", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "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, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwindcss": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.1.tgz", + "integrity": "sha512-hk+TB1m+K8CYNrP6rjQaq/Y+4Zylwpa87mLYBKCunwnnQ9p+fHb7kmSfGqyEJoxF/O6CDyABWVFEafNSYKll+Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/tapable": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz", + "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/throttleit": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-2.1.0.tgz", + "integrity": "sha512-nt6AMGKW1p/70DF/hGBdJB57B8Tspmbp5gfJ8ilhLnt7kkr2ye7hzD6NVG8GGErk2HWF34igrL2CXmNIkzKqKw==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz", + "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "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, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-algebra": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ts-algebra/-/ts-algebra-2.0.0.tgz", + "integrity": "sha512-FPAhNPFMrkwz76P7cdjdmiShwMynZYN6SgOujD1urY4oNm80Ou9oMdmbR45LotcKOXoy7wSmHkRFE6Mxbrhefw==", + "license": "MIT" + }, + "node_modules/ts-api-utils": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz", + "integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/tsx": { + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.22.4.tgz", + "integrity": "sha512-X8EX+XV4QR5xCsrgxaED954zTDfY8KqlDtskKEL0cHhyS/P8b4IFOvGDQpsC9Q1XnLq915wEfwwY/zzskCtmhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "~0.28.0" + }, + "bin": { + "tsx": "dist/cli.mjs" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } + }, + "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, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.15", + "reflect.getprototypeof": "^1.0.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.8.tgz", + "integrity": "sha512-phPGCwqr2+Qo0fwniCE8e4pKnGu/yFb5nD5Y8bf0EEeiI5GklnACYA9GFy/DrAeRrKHXvHn+1SUsOWgJp6RO+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.9", + "for-each": "^0.3.5", + "gopd": "^1.2.0", + "is-typed-array": "^1.1.15", + "possible-typed-array-names": "^1.1.0", + "reflect.getprototypeof": "^1.0.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.62.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.62.0.tgz", + "integrity": "sha512-8QxXi+ZACKX0kaqO4gY8kn0RSD9gFfaHDWwjqtEN48aWCBkX4MJaufWN+c3BzlrXLOxfywDL8CaoqUwcRq4j4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.62.0", + "@typescript-eslint/parser": "8.62.0", + "@typescript-eslint/typescript-estree": "8.62.0", + "@typescript-eslint/utils": "8.62.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-bigints": "^1.0.2", + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici": { + "version": "6.27.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.27.0.tgz", + "integrity": "sha512-YmfV3YnEDzXRC5lZ2jWtWWHKGUm1zIt8AhesR1tens+HTNv+YZlN/dp6G727LOvMJ8xjP9Be7Y2Sdr96LDm+pg==", + "license": "MIT", + "engines": { + "node": ">=18.17" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "license": "MIT" + }, + "node_modules/unrs-resolver": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.12.2.tgz", + "integrity": "sha512-dmlRxBJJayXjqTwC+JtF1HhJmgf3ftQ3YejFcZrf4+KKtJv0qDsK1pjqaaVjG7wJ5NJ6UVP1OqRMQ71Z4C3rxQ==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "napi-postinstall": "^0.3.4" + }, + "funding": { + "url": "https://opencollective.com/unrs-resolver" + }, + "optionalDependencies": { + "@unrs/resolver-binding-android-arm-eabi": "1.12.2", + "@unrs/resolver-binding-android-arm64": "1.12.2", + "@unrs/resolver-binding-darwin-arm64": "1.12.2", + "@unrs/resolver-binding-darwin-x64": "1.12.2", + "@unrs/resolver-binding-freebsd-x64": "1.12.2", + "@unrs/resolver-binding-linux-arm-gnueabihf": "1.12.2", + "@unrs/resolver-binding-linux-arm-musleabihf": "1.12.2", + "@unrs/resolver-binding-linux-arm64-gnu": "1.12.2", + "@unrs/resolver-binding-linux-arm64-musl": "1.12.2", + "@unrs/resolver-binding-linux-loong64-gnu": "1.12.2", + "@unrs/resolver-binding-linux-loong64-musl": "1.12.2", + "@unrs/resolver-binding-linux-ppc64-gnu": "1.12.2", + "@unrs/resolver-binding-linux-riscv64-gnu": "1.12.2", + "@unrs/resolver-binding-linux-riscv64-musl": "1.12.2", + "@unrs/resolver-binding-linux-s390x-gnu": "1.12.2", + "@unrs/resolver-binding-linux-x64-gnu": "1.12.2", + "@unrs/resolver-binding-linux-x64-musl": "1.12.2", + "@unrs/resolver-binding-openharmony-arm64": "1.12.2", + "@unrs/resolver-binding-wasm32-wasi": "1.12.2", + "@unrs/resolver-binding-win32-arm64-msvc": "1.12.2", + "@unrs/resolver-binding-win32-ia32-msvc": "1.12.2", + "@unrs/resolver-binding-win32-x64-msvc": "1.12.2" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "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, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.2.1", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.1.0", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.22", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.22.tgz", + "integrity": "sha512-fvO4ExWMFsqyhG3AiPAObMuY1lxaqgYcxbc49CNdWDDECOJNgQyvsOWVwbZc+qf3rzRtxojBK+CMEv0Ld5CYpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.9", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/xdg-app-paths": { + "version": "5.5.1", + "resolved": "https://registry.npmjs.org/xdg-app-paths/-/xdg-app-paths-5.5.1.tgz", + "integrity": "sha512-hI3flOB4PLZIy5prbtTpirobtPE2ZtZ52szO+2mM9Efp6ErM398La+C1lIpNWDfNoQk+6Lsi6nMcCwVB7pxeMQ==", + "license": "MIT", + "dependencies": { + "os-paths": "^4.0.1", + "xdg-portable": "^7.2.0" + }, + "engines": { + "node": ">= 6.0" + } + }, + "node_modules/xdg-portable": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/xdg-portable/-/xdg-portable-7.3.0.tgz", + "integrity": "sha512-sqMMuL1rc0FmMBOzCpd0yuy9trqF2yTTVe+E9ogwCSWQCdDEtQUwrZPT6AxqtsFGRNxycgncbP/xmOOSPw5ZUw==", + "license": "MIT", + "dependencies": { + "os-paths": "^4.0.1" + }, + "engines": { + "node": ">= 6.0" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "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, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz", + "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==", + "devOptional": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-validation-error": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz", + "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "zod": "^3.25.0 || ^4.0.0" + } + } + } +} diff --git a/typescript-recipes/parallel-datacenter-map/package.json b/typescript-recipes/parallel-datacenter-map/package.json new file mode 100644 index 0000000..b2f9a7c --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/package.json @@ -0,0 +1,36 @@ +{ + "name": "datacenter-map-demo", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "eslint" + }, + "dependencies": { + "@anthropic-ai/sdk": "^0.109.0", + "@types/leaflet": "^1.9.21", + "@types/papaparse": "^5.5.2", + "@vercel/blob": "^2.5.0", + "clsx": "^2.1.1", + "leaflet": "^1.9.4", + "lucide-react": "^1.22.0", + "next": "16.2.9", + "papaparse": "^5.5.4", + "react": "19.2.4", + "react-dom": "19.2.4", + "react-leaflet": "^5.0.0" + }, + "devDependencies": { + "@tailwindcss/postcss": "^4", + "@types/node": "^20", + "@types/react": "^19", + "@types/react-dom": "^19", + "eslint": "^9", + "eslint-config-next": "16.2.9", + "tailwindcss": "^4", + "tsx": "^4.22.4", + "typescript": "^5" + } +} diff --git a/typescript-recipes/parallel-datacenter-map/postcss.config.mjs b/typescript-recipes/parallel-datacenter-map/postcss.config.mjs new file mode 100644 index 0000000..61e3684 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/postcss.config.mjs @@ -0,0 +1,7 @@ +const config = { + plugins: { + "@tailwindcss/postcss": {}, + }, +}; + +export default config; diff --git a/typescript-recipes/parallel-datacenter-map/public/data/ai-classifications.json b/typescript-recipes/parallel-datacenter-map/public/data/ai-classifications.json new file mode 100644 index 0000000..fefc82b --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/public/data/ai-classifications.json @@ -0,0 +1 @@ +{"24":{"community_note":"No site-specific opposition found; regionally, Loudoun residents are fighting Dominion’s transmission routes for data centers and regulators are reviewing expanded diesel‑generator use, with proceedings ongoing.","water_impact":"moderate","ai_evidence":"Public profiles identify the site as a 113,300‑sq‑ft Digital Realty/AWS facility (~6.8 MW) with no disclosed AI GPU clusters or liquid‑cooling retrofits; AWS provides AI instances in us‑east‑1 regionally, not tied to this address.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No facility-specific usage disclosed; Loudoun data centers consumed ~899 million gallons of potable water in 2023 after ~250% growth since 2019, and during 2026 drought conditions they faced the same restrictions as other customers.","grid_note":"Dominion‑served Northern Virginia grid upgrades for data centers are contributing to rising transmission and potential rate impacts, with PJM customers already paying billions and future allocation shifts under review.","citations":[{"title":"Loudoun transmission line debate tees up SCC response ...","url":"https://virginiamercury.com/2025/09/19/loudoun-transmission-line-debate-aims-scc-to-respond-to-data-center-needs-resident-concerns/"},{"title":"State regulators weigh expanded use of data centers ...","url":"https://www.vpm.org/news/2025-12-17/virginia-data-centers-diesel-backup-generators-deq-loudoun-turner-dowd"},{"title":"The surging demand for data is guzzling Virginia's water | Grist","url":"https://grist.org/technology/surging-demand-data-guzzling-water-ai/"},{"title":"RESPONSIBLE DATA CENTER DEVELOPMENT – ...","url":"https://vcnva.org/agenda-item/responsible-data-center-development/"},{"title":"IAD24 Data Center | 43830 Devin Shafron Drive Bldg F","url":"https://www.digitalrealty.com/data-centers/americas/northern-virginia/iad24"}],"runId":"srun_c0e944bd89584b5411ab1c7979e45b6d","classifiedAt":"2026-07-02T22:55:49.365Z"},"27":{"community_note":"No organized opposition or lawsuit tied specifically to QTS ASH1 was found; regional Loudoun/Ashburn pushback is active over Dominion transmission routes and generator noise during heat events, with homeowners contesting new lines and residents filing noise complaints [1][2].","water_impact":"unknown","ai_evidence":"ASH1 lists 55 MW+ capacity with liquid-cooling availability for high-density workloads [1], and QTS is certified for the NVIDIA DGX colocation program [2], but no ASH1-specific GPU cluster or AI tenant announcements were found; initial Ashburn reporting cited a financial services anchor tenant [3].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No public ASH1 gallons/day were found; QTS states its data centers use closed-loop cooling that does not consume water for cooling once operational, while ASH1 documentation lists water-cooled centrifugal chillers, cooling towers, and 12-hour condenser-water storage [1][2].","grid_note":"55 MW+ Dominion-served load in Loudoun; Virginia created a GS-5 rate class for high-load (mostly data center) customers and ordered a review of Dominion’s load-forecasting and data-center hookup timing [1][2][3][4].","citations":[{"title":"Loudoun homeowners battle Dominion Energy to save ...","url":"https://wjla.com/news/local/loudoun-county-ashburn-virginia-dominion-energy-power-lines-property-values-transmission-lines-public-school-board-golden-to-mars"},{"title":"Heat Wave Prompts Increased Data Center Generator Use","url":"https://www.loudounnow.com/news/heat-wave-prompts-increased-data-center-generator-use-turner-pushes-for-tier-4-upgrades/article_60a48bda-dc50-4d1a-8b16-399cd4340350.html"},{"title":"Environmental Stewardship","url":"https://q.com/the-qts-difference/environmental-stewardship/"},{"title":"QTS_Ashburn_Data_Sheet.pdf - QTS Ashburn 1 Data Center","url":"https://baxtel.com/data-center/qts-ashburn-1/files/qts_ashburn_data_sheet"},{"title":"Ashburn 1 - Data Centers","url":"https://qtsdatacenters.com/data-centers/ashburn-1/"}],"runId":"srun_c0e944bd89584b54cc0336c8ef168372","classifiedAt":"2026-07-02T22:55:49.366Z"},"28":{"community_note":"Nearby residents report persistent noise near Belmont Ridge Road, and homeowners are fighting Dominion’s high‑voltage line projects tied to data center demand, while regulators have approved a route for new power lines.","water_impact":"low","ai_evidence":"Marketed for hyperscale cloud/AI deployments, but there are no public confirmations of AI tenants or GPU superclusters at VA32/VA3 and the site relies on air‑cooled chillers rather than liquid‑cooled GPU systems.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Uses air‑cooled chillers with a closed‑loop chilled water system, limiting direct water draw; statewide analysts warn data‑center cooling can strain local water systems in Virginia.","grid_note":"Roughly 288 MW campus load on Dominion’s Loudoun grid, alongside a 2026 rate increase (~$16/month) and planned nine‑mile transmission lines to meet data‑center demand.","citations":[{"title":"Sound of New Vantage 3 Data Center Off of Belmont Ridge ...","url":"https://www.reddit.com/r/nova/comments/1tfqj9z/sound_of_new_vantage_3_data_center_off_of_belmont/"},{"title":"Ashburn family loses fight to stop 185-foot data center ...","url":"https://www.wusa9.com/article/news/local/virginia/data-centers-ashburn-loudoun-dominion-energy-virginia-state-corportation-commission/65-f080cdfe-fb78-4040-a964-cf155c07a0b7"},{"title":"Ashburn III, Virginia Data Center Campus","url":"https://vantage-dc.com/data-center-locations/north-america/ashburn-iii-virginia/"},{"title":"Does Virginia have enough water to quench thirsty data ...","url":"https://frontiergroup.org/articles/does-virginia-have-enough-water-to-quench-thirsty-data-centers/"},{"title":"Vantage Data Centers: Ashburn III Data Center Campus","url":"https://www.datacenters.com/vantage-ashburn-iii-campus-building-1"}],"runId":"srun_c0e944bd89584b54865b511b75747c63","classifiedAt":"2026-07-02T22:59:23.077Z"},"29":{"community_note":"Loudoun residents and officials opposed Dominion’s Golden–Mars transmission line routes while neighbors complained about a loud CloudHQ data-center hum; the SCC issued a final order selecting Route 3A on June 29, and opposition activity continues.","water_impact":"moderate","ai_evidence":"Listings note LC4 is a 180 MW, ~1.4–1.58M sq ft hyperscale build that is fully leased, but no LC4-specific GPU supercluster, NVIDIA deployment, or AI-tenant disclosure was found.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No LC4-specific gallons/day reported; CloudHQ says Ashburn facilities using evaporative cooling are served by grey water, while regional reporting notes large data centers can use up to 5 million gallons/day and rising data‑center drinking‑water use in Loudoun.","grid_note":"LC4 is listed at 180 MW within CloudHQ’s LC campus scaling toward gigawatt capacity; the SCC approved Route 3A for the Golden–Mars transmission line, and Dominion’s 2026 rate increase was approved.","citations":[{"title":"Neighbors raise concerns about noisy data center in ...","url":"https://www.nbcwashington.com/news/local/northern-virginia/neighbors-raise-concerns-about-noisy-data-center-in-loudoun/4080249/"},{"title":"Transmission Lines in Loudoun County","url":"https://www.loudoun.gov/transmissionlines"},{"title":"Loudoun County urges action to reroute data center power ...","url":"https://www.wusa9.com/article/news/investigations/dominion-energy-data-centers-transmission-lines-loudoun-county-supervisors-school-board-state-corportation-commission/65-59830183-ee2d-49f4-bb4a-db496a66eadd"},{"title":"Water is Precious","url":"https://cloudhq.com/water-is-precious/"},{"title":"The surging demand for data is guzzling Virginia's water | Grist","url":"https://grist.org/technology/surging-demand-data-guzzling-water-ai/"}],"runId":"srun_c0e944bd89584b5440b36b6af3574e94","classifiedAt":"2026-07-02T22:55:49.366Z"},"30":{"community_note":"Neighbors in Ashburn have raised complaints about a loud, continuous droning noise from a nearby CloudHQ data center, signaling active local pushback focused on noise impacts.","water_impact":"moderate","ai_evidence":"CloudHQ’s LC Campus targets over 1.7 GW of planned customer critical IT load, and LC8 is profiled as a ~96–108 MW planned building, but public sources name no AI/GPU tenants or superclusters; one profile explicitly notes no explicit AI/GPU evidence [1][2][3].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No LC8-specific water figure is published; regionally, data centers averaged ~4 MGD on-site in 2025 and account for about 15% of Loudoun Water’s total use [1][2].","grid_note":"Planned >1.7 GW LC Campus load in Ashburn will ride a constrained grid that is adding 8–9 miles of new transmission locally, while Virginia’s SCC created a new rate class for the biggest users including data centers [1][2][3].","citations":[{"title":"Neighbors raise concerns about noisy data center in ...","url":"https://www.nbcwashington.com/news/local/northern-virginia/neighbors-raise-concerns-about-noisy-data-center-in-loudoun/4080249/"},{"title":"Does Virginia have enough water to quench thirsty data ...","url":"https://frontiergroup.org/articles/does-virginia-have-enough-water-to-quench-thirsty-data-centers/"},{"title":"Data Center Alley: How Loudoun Water Manages Demand","url":"https://www.waterloop.org/the-water-reality-in-data-center-alley/"},{"title":"LC Campus","url":"https://cloudhq.com/campus/lc-campus/"},{"title":"Permit BLDC-2025-029746 — Loudoun County, VA","url":"https://mlq.ai/permit-filings/usa/virginia/loudoun-county/bldc-2025-029746/"}],"runId":"srun_c0e944bd89584b54fb0b85bd0ef55ea9","classifiedAt":"2026-07-02T22:55:49.366Z"},"31":{"community_note":"No IAD-01–specific opposition found; Loudoun Valley Estates neighbors are fighting proposed 165‑foot, 500 kV Dominion transmission lines for Data Center Alley in Ashburn.","water_impact":"low","ai_evidence":"Marketed as “AI & Cloud‑Ready” at 21890 Uunet Drive, but no public IAD‑01 GPU/AI tenant or supercluster has been announced; Aligned’s AI/GPU partnership announcement pertains to DFW.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Uses closed-loop/waterless cooling per operator materials; no IAD-01 gallons/day figures or source-stress/discharge issues found.","grid_note":"60 MW facility in Ashburn; SCC approved the Golden‑Mars transmission line route serving the area, and JLARC warns growing data center demand will likely increase system costs for all customers.","citations":[{"title":"Loudoun County neighbors fight proposed Dominion ...","url":"https://virginiamercury.com/2025/08/14/loudoun-county-neighbors-fight-proposed-dominion-transmission-lines-for-data-center-alley/"},{"title":"Protecting Regional Water Resources","url":"https://aligneddc.com/case-studies/case-study-protecting-regional-water-resources/"},{"title":"Fully Adaptive, AI-Ready Data Centers in Northern Virginia","url":"https://aligneddc.com/northern-virginia-data-centers/"},{"title":"Aligned and Lambda Partner to Power Next-Generation AI ...","url":"https://aligneddc.com/press-release/aligned-and-lambda-partner-to-power-next-generation-ai-infrastructure-6/"},{"title":"Data Centers in Virginia - JLARC","url":"https://jlarc.virginia.gov/landing-2024-data-centers-in-virginia.asp"}],"runId":"srun_c0e944bd89584b54b563a00cf6846826","classifiedAt":"2026-07-02T22:55:49.366Z"},"32":{"community_note":"No IAD-02–specific lawsuit was found, but Loudoun/Ashburn neighbors are actively opposing Dominion high‑voltage lines and complaining about generator noise as the county ended by‑right data center approvals and SCC actions proceed.","water_impact":"low","ai_evidence":"No confirmed IAD‑02 AI tenant or GPU supercluster is publicly reported; the site is marketed as AI‑ready with high‑density GPU cooling and participation in NVIDIA’s DGX‑Ready program.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Near‑zero WUE is marketed for 21821 Uunet using a closed‑loop system and waterless approaches; no gallons/day or source disclosed.","grid_note":"120 MW Dominion‑served facility; Virginia SCC approved GS‑5 rate class for the biggest users (including data centers), and Loudoun faces new 165–185‑foot high‑voltage transmission projects/approvals.","citations":[{"title":"Loudoun County neighbors fight proposed Dominion ...","url":"https://virginiamercury.com/2025/08/14/loudoun-county-neighbors-fight-proposed-dominion-transmission-lines-for-data-center-alley/"},{"title":"Ashburn family loses fight to stop 185-foot data center ...","url":"https://www.wusa9.com/article/news/local/virginia/data-centers-ashburn-loudoun-dominion-energy-virginia-state-corportation-commission/65-f080cdfe-fb78-4040-a964-cf155c07a0b7"},{"title":"Heat Wave Prompts Increased Data Center Generator Use","url":"https://www.loudounnow.com/news/heat-wave-prompts-increased-data-center-generator-use-turner-pushes-for-tier-4-upgrades/article_60a48bda-dc50-4d1a-8b16-399cd4340350.html"},{"title":"Loudoun County Statement Regarding Data Center ...","url":"https://www.loudoun.gov/CivicAlerts.asp?AID=9001&ARC=16729"},{"title":"Loudoun County, Virginia, Eliminates By-Right Data Center ...","url":"https://www.hklaw.com/en/insights/publications/2025/04/loudoun-county-virginia-eliminates-by-right-data-center-development"}],"runId":"srun_c0e944bd89584b546fbbba5f13422317","classifiedAt":"2026-07-02T22:55:49.366Z"},"34":{"community_note":"No ABX-1–specific case found; nearby Ashburn residents opposed Dominion’s new high‑voltage power lines for Data Center Alley, but state regulators approved a route.","water_impact":"unknown","ai_evidence":"Public listings describe a fully leased CyrusOne powered‑shell/hyperscale colo at 21529 Beaumeade Circle with large floor area and stated capacity, but no reports identify AI training clusters, GPU tenants, or site‑specific liquid‑cooling retrofits.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No ABX‑1–specific gallons/day or source found; regionally, Loudoun’s data centers used about 900 million gallons in 2023, and basin planners project ~22 MGD average and >80 MGD peak by 2050.","grid_note":"Dedicated electrical available up to 80 MW; Virginia’s GS‑5 rate class requires 14-year contracts with minimum 85% transmission cost responsibility for large data center customers.","citations":[{"title":"Ashburn family loses fight to stop 185-foot data center ...","url":"https://www.wusa9.com/article/news/local/virginia/data-centers-ashburn-loudoun-dominion-energy-virginia-state-corportation-commission/65-f080cdfe-fb78-4040-a964-cf155c07a0b7"},{"title":"The surging demand for data is guzzling Virginia's water | Grist","url":"https://grist.org/technology/surging-demand-data-guzzling-water-ai/"},{"title":"Does Virginia have enough water to quench thirsty data ...","url":"https://frontiergroup.org/articles/does-virginia-have-enough-water-to-quench-thirsty-data-centers/"},{"title":"CyrusOne Leases ABX-1","url":"https://www.powerhousedata.com/news/powerhouse-data-centers-announces-lease-agreement-with-cyrusone-for-abx-1-data-center-powered-shell"},{"title":"Ashburn NVA14 - CyrusOne","url":"https://www.ocolo.io/colocation/cyrusone/ashburn-nva14/"}],"runId":"srun_c0e944bd89584b542a13d4aeea44a520","classifiedAt":"2026-07-02T22:55:49.366Z"},"35":{"community_note":"No PowerHouse Pacific–specific lawsuit or moratorium surfaced; countywide pushback over data-center land use and generator noise led Loudoun to end by-right approvals, while Sterling residents have complained about continuous turbine noise.","water_impact":"moderate","ai_evidence":"PowerHouse describes the campus as designed for hyperscale and AI-driven applications with advanced cooling, and partners highlight HPC and AI-focused high-density deployments.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Regional context: Loudoun data centers used about 899 million gallons of potable water in 2023, and during drought conditions in 2026 data centers faced the same restrictions as other customers.","grid_note":"Planned for up to ~265 MW utility capacity with staged delivery (Q3 2026–Q2 2027), as PJM advances an $11.8B transmission plan to serve growing load and data centers.","citations":[{"title":"Loudoun County, Virginia, Eliminates By-Right Data Center ...","url":"https://www.hklaw.com/en/insights/publications/2025/04/loudoun-county-virginia-eliminates-by-right-data-center-development"},{"title":"Sterling Residents Raise Alarms Over Off-Grid Data Center","url":"https://www.loudounnow.com/news/sterling-residents-raise-alarms-over-off-grid-data-center/article_3481d7fd-11ef-4948-a951-8c4ee6e69f2f.html"},{"title":"State Data Center Legislation Faces Local Zoning Battles","url":"https://www.multistate.us/insider/2026/1/15/state-data-center-legislation-faces-local-zoning-battles"},{"title":"Data Center Expansion in Virginia: Closing Critical Gaps for ...","url":"https://securewater.illinois.edu/data-center-expansion-in-virginia-closing-critical-gaps-for-informed-water-planning-and-permitting/"},{"title":"Does Virginia have enough water to quench thirsty data ...","url":"https://frontiergroup.org/articles/does-virginia-have-enough-water-to-quench-thirsty-data-centers/"}],"runId":"srun_c0e944bd89584b54e46beef1aae69b65","classifiedAt":"2026-07-02T22:55:49.366Z"},"36":{"community_note":"No NVA1-specific opposition was found; regionally, Loudoun residents and officials pressed for tighter data center rules and state regulators weighed expanded diesel-generator use after an outage, prompting scrutiny and new DEQ procedures.","water_impact":"low","ai_evidence":"","grid_impact":"high","ai_class":"not-ai","community_pushback":"some-concern","water_note":"Campus features zero‑water cooling; no NVA1 gallons/day published, while WMA data centers used ~4 MGD on‑site in 2025 and could reach ~16 MGD by 2035.","grid_note":"Campus IT capacity is 48 MW; Dominion faces NOVA interconnection/transmission strain, and the SCC approved a large‑customer structure requiring 85% minimum demand payments.","citations":[{"title":"Loudoun County advances changes to data center ...","url":"https://virginiabusiness.com/loudoun-county-advances-changes-to-data-center-regulations/"},{"title":"State regulators weigh expanded use of data centers ...","url":"https://www.vpm.org/news/2025-12-17/virginia-data-centers-diesel-backup-generators-deq-loudoun-turner-dowd"},{"title":"Issued Air Permits for Data Centers | Virginia DEQ","url":"https://www.deq.virginia.gov/news-info/shortcuts/permits/air/issued-air-permits-for-data-centers"},{"title":"Sterling NVA1-NVA3 - AI infrastructure intelligence","url":"https://mlq.ai/data-centers/usa/virginia/sterling/cyrusone-nva1-sterling/"},{"title":"Summary of the December 2024 JLARC Report: Data ...","url":"https://www.pwcva.gov/assets/2024-12/JLARC%20Report%20Summary_12-16-2024.pdf"}],"runId":"srun_c0e944bd89584b549ec409405d20b36a","classifiedAt":"2026-07-02T22:55:49.366Z"},"37":{"community_note":"Regional opponents, including Loudoun residents and advocacy groups, are challenging Dominion’s Golden-to-Mars transmission routes near neighborhoods and schools in proceedings before the Virginia SCC.","water_impact":"low","ai_evidence":"Cologix markets its Ashburn/ASH1 facilities for “AI inferencing” and high‑performance computing, and industry coverage reported the 120 MW ASH1 was fully pre‑leased to a major global technology company.","grid_impact":"high","ai_class":"ai-inference","community_pushback":"active-opposition","water_note":"ASH1 is described as using closed‑loop cooling that recirculates water, with no gallons/day disclosed, while Loudoun utilities reported about 899 million gallons used by data centers in 2023 (not ASH1‑specific).","grid_note":"ASH1 is a 120 MW facility on Dominion Energy Virginia amid Ashburn’s cluster, with major upgrades like Dominion’s Golden‑to‑Mars 500/230 kV reliability project underway and the SCC creating a new rate class for the largest users, including data centers.","citations":[{"title":"Loudoun residents take fight against high-voltage power ...","url":"https://virginiamercury.com/2025/12/16/loudoun-residents-take-fight-against-high-voltage-power-lines-for-data-center-alley-to-scc/"},{"title":"Golden to Mars Project Timeline","url":"https://www.pecva.org/region/loudoun/golden-to-mars-project-timeline/"},{"title":"Breaking Ground: Q & A with Jon Gibbs on the Sustainable ...","url":"https://cologix.com/resources/blogs/breaking-ground-q-a-jon-gibbs-sustainable-construction-ash1/"},{"title":"Data Center Expansion in Virginia: Closing Critical Gaps for ...","url":"https://securewater.illinois.edu/data-center-expansion-in-virginia-closing-critical-gaps-for-informed-water-planning-and-permitting/"},{"title":"Ashburn, VA Hyperscale Edge Data Center ...","url":"https://cologix.com/data-centers/ashburn/"}],"runId":"srun_c0e944bd89584b54591c2393c165f62b","classifiedAt":"2026-07-02T22:55:49.366Z"},"42":{"community_note":"No H5‑specific opposition was found; at the county/regional level, Loudoun has tightened data‑center zoning and residents/advocacy groups are opposing new transmission lines serving data centers elsewhere in the county.","water_impact":"low","ai_evidence":"A 42 MW, 255,000‑sq‑ft site fully leased to an unnamed hyperscale client was reported, with no public, facility‑specific disclosures of GPU clusters or AI tenants.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"The site lists air‑cooled chiller units and no published gallons/day; countywide, data‑center drinking‑water use rose more than 250% from 2019–2023, which is contextual rather than facility‑specific.","grid_note":"Advertises 42 MW (up to 60 MVA) served by Dominion; Virginia’s data‑center load growth is driving rate cases and grid build‑outs, but no H5‑specific upgrade/curtailment was identified.","citations":[{"title":"Data Center Standards & Locations","url":"https://www.loudoun.gov/5990/Data-Center-Standards-Locations"},{"title":"Data center power line gets pushback in Northern Virginia","url":"https://www.bayjournal.com/news/energy/data-center-power-line-gets-pushback-in-northern-virginia/article_1b1556f5-ca8f-4d75-a4ff-dd7e387fa4d0.html"},{"title":"Ashburn Data Center - Northern Virginia Data Center","url":"https://h5datacenters.com/ashburn-data-center.html"},{"title":"The surging demand for data is guzzling Virginia's water | Grist","url":"https://grist.org/technology/surging-demand-data-guzzling-water-ai/"},{"title":"H5 Ashburn data center site fully leased to hyperscale client","url":"https://www.datacenterdynamics.com/en/news/h5-ashburn-data-center-site-fully-leased-to-hyperscale-client/"}],"runId":"srun_c0e944bd89584b5413743de22297042c","classifiedAt":"2026-07-02T22:55:49.366Z"},"46":{"community_note":"No EdgeCore/Maries Road–specific opposition was found; regionally, Loudoun officials and residents are pushing to reroute Dominion power lines for data-center load, with state review and debates ongoing.","water_impact":"low","ai_evidence":"EdgeCore financed two fully leased hyperscale data centers in Northern Virginia and promotes AI‑ready infrastructure in Ashburn, but no public disclosure names an AI tenant or GPU supercluster at AS01; third-party data lists AS01 at 72 MW critical.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"EdgeCore says Ashburn uses air-cooled chillers to minimize water use, with no site-specific gallons/day reported, while regional estimates range from roughly 899 million gallons (Loudoun) to close to 2 billion gallons (Northern Virginia) in 2023.","grid_note":"AS01 is expected to deliver 72,000 kW of critical load on Dominion’s system, while Loudoun is seeking reroutes of nearby transmission lines and statewide demand could double within a decade if data center growth is unconstrained.","citations":[{"title":"Loudoun transmission line debate tees up SCC response ...","url":"https://virginiamercury.com/2025/09/19/loudoun-transmission-line-debate-aims-scc-to-respond-to-data-center-needs-resident-concerns/"},{"title":"Loudoun County urges action to reroute data center power ...","url":"https://www.wusa9.com/article/news/investigations/dominion-energy-data-centers-transmission-lines-loudoun-county-supervisors-school-board-state-corportation-commission/65-59830183-ee2d-49f4-bb4a-db496a66eadd"},{"title":"Ashburn Data Centers","url":"https://edgecore.com/locations/ashburn-data-center"},{"title":"Responsibility: Community, Safety & Sustainability","url":"https://edgecore.com/responsibility"},{"title":"Data Centers and Water Consumption | Article | EESI","url":"https://www.eesi.org/articles/view/data-centers-and-water-consumption"}],"runId":"srun_c0e944bd89584b54cdcc58353df50531","classifiedAt":"2026-07-02T22:55:49.366Z"},"47":{"community_note":"No AS02-specific opposition surfaced; county officials and residents have raised broader concerns (water, growth impacts), and the Board eliminated by-right data center approvals to require more review.","water_impact":"low","ai_evidence":"EdgeCore’s Northern Virginia builds are described as fully leased hyperscale and engineered for high-density AI workloads with direct-to-chip liquid cooling capability, but there is no public confirmation of a named AI tenant or GPU supercluster at AS02.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No site-specific gallons/day published; EdgeCore says it uses air-cooled, low-water designs, while NOVA data centers used nearly 2B gallons in 2023 (about 900M in Loudoun), prompting a new Virginia law requiring public disclosure of data center water usage.","grid_note":"AS02 is listed around 36 MW and will be served by Dominion Energy; state reviews indicate growing data center load likely increases system costs for all customers.","citations":[{"title":"Loudoun County, Virginia, Eliminates By-Right Data Center ...","url":"https://www.hklaw.com/en/insights/publications/2025/04/loudoun-county-virginia-eliminates-by-right-data-center-development"},{"title":"New Virginia law requires data center water usage be ...","url":"https://www.wvtf.org/news/2026-06-11/new-virginia-law-requires-data-center-water-usage-be-made-public"},{"title":"Responsibility: Community, Safety & Sustainability","url":"https://edgecore.com/responsibility"},{"title":"EdgeCore Internet Real Estate: Ashburn 1 Data Center","url":"https://www.datacenters.com/edgecore-internet-real-estate-ashburn-1"},{"title":"Counties grapple with data center boom","url":"https://www.naco.org/news/counties-grapple-data-center-boom"}],"runId":"srun_c0e944bd89584b548824728407d6f9ae","classifiedAt":"2026-07-02T22:55:49.366Z"},"49":{"community_note":"Regional groups and residents are actively opposing Loudoun/Ashburn data center growth and the Golden–Mars transmission line; by-right approvals ended in 2025 and residents have taken the fight to the SCC.","water_impact":"moderate","ai_evidence":"Public directories list 20935 Loudoun County Pkwy as an AWS us-east-1 data center, but no address-specific GPU/Trainium deployment is documented; AWS provides Trainium and P5/H100 capacity in us-east-1 without site-level disclosure.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No facility-specific gallons found; county utilities reported ~899 million gallons of potable water used by data centers in 2023, and Loudoun Water supplies reclaimed water for industrial cooling.","grid_note":"No MW published for 20935; Dominion warned in 2022 it couldn’t meet new data-center loads, JLARC says data-center demand will increase system costs for all customers, and the Golden–Mars 500/230 kV project serves Ashburn reliability.","citations":[{"title":"Loudoun County, Virginia, Eliminates By-Right Data Center ...","url":"https://www.hklaw.com/en/insights/publications/2025/04/loudoun-county-virginia-eliminates-by-right-data-center-development"},{"title":"Loudoun residents take fight against high-voltage power ...","url":"https://virginiamercury.com/2025/12/16/loudoun-residents-take-fight-against-high-voltage-power-lines-for-data-center-alley-to-scc/"},{"title":"Four Pillars of Data Center Reform","url":"https://www.pecva.org/work/energy-work/data-centers/four-pillars-of-data-center-reform/"},{"title":"Data Center Expansion in Virginia: Closing Critical Gaps for ...","url":"https://securewater.illinois.edu/data-center-expansion-in-virginia-closing-critical-gaps-for-informed-water-planning-and-permitting/"},{"title":"Reclaimed Water Program","url":"https://www.loudounwater.org/commercial-customers/reclaimed-water-program"}],"runId":"srun_c0e944bd89584b54427c8cd70973b38f","classifiedAt":"2026-07-02T22:55:49.366Z"},"50":{"community_note":"Organized Northern Virginia opponents (county officials and advocacy groups) are challenging data center impacts—especially transmission routing, siting, noise, and air quality—with routing fights and local policy actions ongoing.","water_impact":"moderate","ai_evidence":"Oracle US Gov East (us-langley-1, Ashburn) is part of Oracle’s US Government Cloud and supports OCI Supercluster with NVIDIA H100/A100 GPUs, with NVIDIA B300 GPUs announced for government regions—indicating both training and inference AI workloads.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No facility-specific data found; regionally, studies show rising data center water use with Potomac River basin estimates and potential drought/low-flow concerns.","grid_note":"Dominion’s PJM zone peak load rose to 23,905 MW in summer 2025 (+23% vs. 2019) and 25,413 MW in winter (+45%), and the SCC approved a new rate class for the largest users (25 MW+) including data centers.","citations":[{"title":"Loudoun County urges action to reroute data center power ...","url":"https://www.wusa9.com/article/news/investigations/dominion-energy-data-centers-transmission-lines-loudoun-county-supervisors-school-board-state-corportation-commission/65-59830183-ee2d-49f4-bb4a-db496a66eadd"},{"title":"The Dark Side of Data Centers","url":"https://loudounclimate.org/data-centers/"},{"title":"Rizer: County Government will Oppose Data Centers at ...","url":"https://www.loudounnow.com/news/rizer-county-government-will-oppose-data-centers-at-gw-campus/article_0b67130c-c83c-4804-9344-3834c03ae1bc.html"},{"title":"Data Center Expansion in Virginia: Closing Critical Gaps for ...","url":"https://securewater.illinois.edu/data-center-expansion-in-virginia-closing-critical-gaps-for-informed-water-planning-and-permitting/"},{"title":"Oracle US Government Cloud","url":"https://docs.oracle.com/en-us/iaas/Content/gov-cloud/govfedramp.htm"}],"runId":"srun_c0e944bd89584b54fcd4a7263a059ae8","classifiedAt":"2026-07-02T22:55:49.366Z"},"52":{"community_note":"City-level action: Phoenix adopted 2025 zoning/special-permit rules for data centers addressing reliability, high-voltage infrastructure, fire/emergency access, noise, and water after mayoral concerns over generator noise; no site-specific litigation reported for the Union Hills campus.","water_impact":"moderate","ai_evidence":"The Phoenix campus is marketed as “AI & Cloud‑Ready” with support for high‑density GPU requirements, and Aligned is listed among NVIDIA’s DGX‑Ready colocation partners; no public disclosures identify a deployed GPU supercluster or named AI tenant at PHX‑01/02/03.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day figure located; Phoenix’s large‑water‑user rules trigger planning at 250,000 gpd and require at least a 30% recycled/conserved‑water offset for users above 500,000 gpd, and Phoenix‑area data center cooling water is projected to rise from 385M to over 3.7B gallons/year.","grid_note":"Approx. 180 MW campus; APS has proposed >45% rate increases for extra‑large users and plans a 2 GW gas plant under a subscription model amid ~18 GW of data‑center requests.","citations":[{"title":"City of Phoenix Updates Zoning to Safeguard Health and ...","url":"https://www.phoenix.gov/newsroom/pdd-news/city-of-phoenix-updates-zoning-to-safeguard-health-and-safety-as.html"},{"title":"Phoenix, Arizona, to clamp down on data centers - DCD","url":"https://www.datacenterdynamics.com/en/news/phoenix-arizona-to-clamp-down-on-data-centers/"},{"title":"Phoenix cooling lab showcases hybrid data center ...","url":"https://www.facilitiesdive.com/news/phoenix-cooling-lab-showcases-hybrid-data-center-cooling-capabilities/757542/"},{"title":"Phoenix unanimously passes 'large water user' ordinance","url":"https://www.12news.com/article/news/local/valley/city-of-phoenix-passes-large-water-user-ordinance/75-a87a51e1-2e31-433f-93fc-c63439266c4d"},{"title":"AI data center water use collides with drought in the West","url":"https://qz.com/data-center-water-use-drought-american-west-051326"}],"runId":"srun_c0e944bd89584b54b72cc16993d1aa5d","classifiedAt":"2026-07-02T22:55:49.366Z"},"53":{"community_note":"No PHX-04-specific organized opposition found; in Dec. 2025 the Chandler City Council unanimously rejected a separate AI data-center proposal after resident outcry.","water_impact":"low","ai_evidence":"Campus is promoted as AI/HPC-ready and Aligned is a DGX–Ready partner, but no named AI tenant or GPU supercluster is public for PHX‑04; the public AI-cloud deal is for DFW‑04, not Phoenix.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No PHX‑04 gallons/day reported; the Phoenix campus’ PHX‑05 uses a waterless heat-rejection system, while regional analysts warn data centers can strain limited Southwest water supplies.","grid_note":"No PHX‑04 MW disclosed; SRP says data centers were 441 MW (5.1%) of 2025 peak and large new loads must fund upgrades and meet E‑67 minimum-billing protections.","citations":[{"title":"Chandler City Council unanimously rejects proposed $2 ...","url":"https://www.12news.com/article/news/local/valley/chandler-arizona-city-council-unanimously-rejects-proposed-2-billion-ai-data-center-but-questions-remain/75-ac766643-9879-4f7e-997e-a2a79132799a"},{"title":"Arizona city rejects data center after AI lobbying push","url":"https://www.politico.com/news/2025/12/12/arizona-city-rejects-data-center-after-ai-lobbying-push-00688543"},{"title":"Aligned Expands Phoenix Campus, Adding Fourth ...","url":"https://aligneddc.com/press-release/aligned-expands-phoenix-footprint-with-new-hyperscale-data-center/"},{"title":"Are data centers depleting the Southwest's resources?","url":"https://www.apmresearchlab.org/10x/data-centers-resource"},{"title":"Scalable and Adaptive Data Centers in Phoenix, AZ | Aligned","url":"https://aligneddc.com/phoenix-data-centers/"}],"runId":"srun_c0e944bd89584b547184dbd84bd03882","classifiedAt":"2026-07-02T22:55:49.366Z"},"54":{"community_note":"No PHX-07–specific lawsuits or formal protests were found; citywide zoning restrictions triggered Prop. 207 claims/waivers for data center owners, and a local Facebook group is organizing petitions against West Valley data centers.","water_impact":"low","ai_evidence":"No named AI tenant or GPU supercluster is publicly confirmed at PHX-07; the site is marketed as AI/HPC‑ready with high‑density and liquid‑cooling support, and Aligned is an NVIDIA DGX‑Ready colocation partner.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Operator reports near‑zero WUE from closed‑loop, largely air‑cooled systems at the Phoenix campus; no gallons/day or source‑stress data found.","grid_note":"PHX‑07‑2 adds 40 MW on an 80 MW campus, and APS has proposed a >45% rate increase for extra‑large users like data centers.","citations":[{"title":"Cities May Have to Pay for Data Center Zoning Restrictions ...","url":"https://azbex.com/legislation-issues/cities-may-have-to-pay-for-data-center-zoning-restrictions-under-state-law/"},{"title":"Opposition to data center in Surprise, Arizona","url":"https://www.facebook.com/groups/nodesertdatacenter/posts/1124885589726837/"},{"title":"Scalable and Adaptive Data Centers in Phoenix, AZ | Aligned","url":"https://aligneddc.com/phoenix-data-centers/"},{"title":"Aligned Data Centers: Adaptive Data Centers for Growth","url":"https://aligneddc.com/"},{"title":"Advanced Data Center Cooling","url":"https://aligneddc.com/cooling-innovation/"}],"runId":"srun_c0e944bd89584b542bdcf60bd76869b3","classifiedAt":"2026-07-02T22:55:49.366Z"},"58":{"community_note":"No organized opposition, lawsuits, or zoning fights were found for Compass PHX II; reporting shows routine proposal/planning activity for a three‑building campus in El Mirage.","water_impact":"low","ai_evidence":"Public sources describe a three-building, 108 MW hyperscale campus with 36 MW per building; no verified PHX II tenants, GPU superclusters, or AI‑specific deployments have been announced for Building 1.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No facility-specific gallons reported; Compass cites “advanced hybrid cooling” and “responsible water and energy use” for Phoenix, and Arizona is “highly water‑stressed.”","grid_note":"Building 1 is 36 MW within a 108 MW campus; APS proposed a 45% rate increase for extra‑large users like data centers in its rate request.","citations":[{"title":"New Data Center Proposed in El Mirage","url":"https://azbex.com/planning-development/new-data-center-proposed-in-el-mirage/"},{"title":"Compass Datacenters acquires 120 acres in El Mirage ...","url":"https://www.datacenterdynamics.com/en/news/compass-datacenters-acquires-120-acres-in-el-mirage-arizona/"},{"title":"Planning & Zoning Commission | El Mirage, AZ","url":"https://www.elmirageaz.gov/376/Planning-Zoning-Commission"},{"title":"Building for What's Next: Phoenix Data Centers","url":"https://www.compassdatacenters.com/leadership-thoughts/building-for-whats-next-phoenix-data-centers/"},{"title":"Are data centers depleting the Southwest's resources?","url":"https://www.apmresearchlab.org/10x/data-centers-resource"}],"runId":"srun_c0e944bd89584b54e635107a57895544","classifiedAt":"2026-07-02T22:55:49.366Z"},"59":{"community_note":"","water_impact":"unknown","ai_evidence":"Reporting points to a 108 MW PHX II campus with 36 MW buildings and no named AI tenants or GPU superclusters for Building 3; Compass’s cooling note references AI-driven demand in general, not PHX II specifically.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No Building 3 gallons/day or source data reported; Compass notes generally that it is innovating liquid cooling and flexible designs for AI-era loads, but not PHX II–specific.","grid_note":"36 MW Building 3 within a 108 MW campus; listings cite a master plan up to 350 MW with an on-site 230 kV substation, and APS/City note new electrical infrastructure for a data center customer while APS highlights a high load factor rate to protect customers.","citations":[{"title":"News, Announcements & Media Releases","url":"https://www.elmirageaz.gov/news-announcements-media-releases?viewAll=1a2a50cc-c9e3-4f99-bdf3-231bc218c566&contentId=4e98efc1-dbba-4682-8d63-bef921ea160c"},{"title":"West Valley Central","url":"https://www.aps.com/en/About/Construction-and-Power-Line-Siting/Power-Line-Siting/Power-Line-Siting-Projects/West-Valley-Central"},{"title":"Planning & Zoning Commission | El Mirage, AZ","url":"https://www.elmirageaz.gov/376/Planning-Zoning-Commission"},{"title":"Evolving Our Approach to Data Center Cooling","url":"https://www.compassdatacenters.com/evolving-our-approach-to-data-center-cooling/"},{"title":"Compass Datacenters acquires 120 acres in El Mirage ...","url":"https://www.datacenterdynamics.com/en/news/compass-datacenters-acquires-120-acres-in-el-mirage-arizona/"}],"runId":"srun_c0e944bd89584b54a08d2aadc8e34cd9","classifiedAt":"2026-07-02T22:55:49.664Z"},"62":{"community_note":"Brittany Heights residents have organized online over 24/7 chiller noise at PHX15, while Chandler enacted a data‑center zoning ordinance requiring PAD approvals and added operational conditions; opposition remains active.","water_impact":"moderate","ai_evidence":"Marketed as AI/HPC‑capable with high‑density and liquid‑cooling options (including NVIDIA DGX H100) via the operator’s HD Colo program; no PHX15‑specific GPU tenant or supercluster has been publicly confirmed.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No site-specific water-consumption figures reported for PHX15; the operator is pursuing portfolio-wide initiatives to reduce cooling water use.","grid_note":"Capacity is reported between about 34 MW (critical IT) and 54 MW total across third-party listings.","citations":[{"title":"Ordinance No. 5033 Data Center","url":"https://www.chandleraz.gov/sites/default/files/departments/development-services/PLH22-0053-Ordinance-No-5033-Data-Center.pdf"},{"title":"Microsoft and Digital Realty cut data center water use","url":"https://trellis.net/article/digital-realty-microsoft-take-water-out-of-data-centers/"},{"title":"PHX15 Data Center | 2121 South Price Road Chandler","url":"https://www.digitalrealty.com/data-centers/americas/phoenix/phx15"},{"title":"High-Density Colocation","url":"https://www.digitalrealty.com/platform-digital/colocation/high-density-colocation"},{"title":"The facts about SRP and data centers","url":"https://azcapitoltimes.com/news/2026/03/31/the-facts-about-srp-and-data-centers/"}],"runId":"srun_c0e944bd89584b545ae5451c1ccf8636","classifiedAt":"2026-07-02T23:02:25.211Z"},"66":{"community_note":"No organized opposition or litigation specific to Google’s Mesa Redhawk was found; Mesa officials and local press described the project as approved and economically positive, while community posts show scattered concerns about issues like generators and public visibility of approvals.","water_impact":"low","ai_evidence":"Reports say the Mesa campus supports Google Cloud and core services, with language about AI/ML processing, but there are no Mesa-specific disclosures of GPU/TPU superclusters or AI training deployments.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Air-cooled design at Mesa—local news reported it “won't use water to cool storage units,” and Google confirms the site “will use air-cooled technology.”","grid_note":"SRP’s Project Red Hawk built the Sidewinder 230‑kV switchyard and 230‑kV lines to serve the site, Google arranged 400+ MW of clean energy with SRP resources, and SRP’s large‑load tariff applies to accounts ≥20 MW with a 90% load factor.","citations":[{"title":"Data centers becoming dominant force in Mesa | News","url":"https://www.eastvalleytribune.com/news/data-centers-becoming-dominant-force-in-mesa/article_bc14d7fc-af5e-11eb-b82b-abc064d912cd.html"},{"title":"City of Mesa - File #: DSN 24033","url":"https://mesa.legistar.com/LegislationDetail.aspx?ID=6612348&GUID=1C8D0A87-5024-4936-BEA6-9A98FF27AA53&G=6D482A9C-B912-4765-B79B-550C367FA729&Options=&Search="},{"title":"Google opens new data center in Mesa, Arizona","url":"https://www.facebook.com/CityofMesa/posts/mesas-tech-corridor-is-expanding-with-a-new-google-data-center-that-will-use-sta/697088139127964/"},{"title":"Google Data Center (Elliot & Sossaman) : r/mesaaz","url":"https://www.reddit.com/r/mesaaz/comments/1pvxqkp/google_data_center_elliot_sossaman/"},{"title":"Google building a $600 million data center in Mesa","url":"https://www.12news.com/article/news/local/valley/google-is-building-a-600-million-data-center-in-mesa-that-wont-use-water-to-cool-storage-units/75-423d5f59-5c3e-4160-b587-0a328eec9a83"}],"runId":"srun_c0e944bd89584b54153d5f4ffc6b8207","classifiedAt":"2026-07-02T22:55:49.664Z"},"70":{"community_note":"","water_impact":"unknown","ai_evidence":"Hyperscale-ready colocation with 6 MW pre-lease in 2020 and two additional 6 MW leases in 2021, but no public reporting of GPU clusters or AI-specific deployments at AZP-2 [1][2][3].","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No AZP-2-specific gallons/day, WUE, source, or discharge data found; Phoenix-area reporting projects data center cooling water use could rise from ~385 million gallons/year to >3.7 billion, but this is not tied to AZP-2 [1].","grid_note":"AZP-2 is a ~48 MW IT-load facility in Phoenix; metro reporting estimates data centers draw about 350 MW from the utility, and the utility states it is planning to serve growth while protecting other customers [1][2][3].","citations":[{"title":"Iron Mountain Signs Leases for Six Megawatts with Fortune 100 ...","url":"https://www.businesswire.com/news/home/20210415005068/en/Iron-Mountain-Signs-Leases-for-Six-Megawatts-with-Fortune-100-Technology-Customer-at-AZP-2-Data-Center-in-Phoenix"},{"title":"News Details","url":"https://investors.ironmountain.com/news/news-details/2020/Iron-Mountain-Executes-Six-Megawatt-Pre-Lease-with-Fortune-100-Customer-at-AZP-2-Data-Center-in-Phoenix/default.aspx"},{"title":"Iron Mountain Signs New 6MW Pre-Lease in Phoenix","url":"https://datacenterplanet.com/news/cloud/iron-mountain-signs-new-6mw-pre-lease-in-phoenix/"},{"title":"Iron Mountain Data Centers AZP-2 in Phoenix (48 MW)","url":"https://www.datacentermap.com/usa/arizona/phoenix/iron-mountain-azp-2/"},{"title":"Iron Mountain Executes 6MW Expansion with Fortune 100 ...","url":"https://hostingjournalist.com/news/iron-mountain-executes-6mw-expansion-with-fortune-100-customer-in-phoenix"}],"runId":"srun_c0e944bd89584b54cf9579be080e53d0","classifiedAt":"2026-07-02T22:55:49.664Z"},"72":{"community_note":"No organized opposition specific to 3402 E University Dr was found; Phoenix adopted citywide data center regulations (noise limits/zoning) and landowners/developers filed ~$750M claims against the city, with rules in effect and claims pending.","water_impact":"moderate","ai_evidence":"Carrier-neutral retail colocation at 3402 E University Dr with GPU servers available via phoenixNAP indicates general-purpose and mixed enterprise workloads rather than a disclosed GPU supercluster; Liquid Web’s GPU hosting announcement does not identify a large AI cluster at this site.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Chilled-water cooling is used at this facility, and Phoenix-area data center cooling water demand is projected to rise by ~870% from 385M gal/year, but no site-specific consumption has been disclosed.","grid_note":"SRP has ~8,000 MW of capacity and data centers were ~441 MW (5.1%) of 2025 peak; this campus is slated for an additional 18+ MW by 1H 2028, with no reporting of site-specific grid strain.","citations":[{"title":"Phoenix adopts data center regulations, sets noise limit ...","url":"https://www.abc15.com/news/business/phoenix-adopts-data-center-regulations-sets-noise-limits-and-zoning-requirements"},{"title":"Landowners demand Phoenix pay $750M for new data ...","url":"https://www.azcentral.com/story/news/local/phoenix/2026/03/20/landowners-demand-phoenix-pay-750m-for-new-data-center-rules/89174679007/"},{"title":"Pheonix NAP Data Center Case Study","url":"https://tahoeweb.daikinapplied.com/api/general/DownloadDocumentByName/media/Daikin_CS_1037_LR_Phoenix_NAP_Data_Center_Case_Study.pdf/"},{"title":"AI data center water use collides with drought in the West","url":"https://qz.com/data-center-water-use-drought-american-west-051326"},{"title":"PhoenixNAP - Phoenix Data Center","url":"https://cloudandcolocation.com/datacenters/phoenixnap-phoenix-data-center/"}],"runId":"srun_c0e944bd89584b5489ed93e18d05ccb5","classifiedAt":"2026-07-02T22:55:49.664Z"},"76":{"community_note":"Ahwatukee residents protested Menlo’s five‑building data center at a Village Planning Committee hearing over impacts like power, water, and noise, but local reporting says the project received final city approval and is proceeding.","water_impact":"unknown","ai_evidence":"Marketed as a hyperscale campus with a dedicated on‑site substation and >257 MW utility capacity, but no disclosed AI tenants, GPU clusters, or liquid‑cooling retrofits for this site.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No facility-specific water-use disclosures found; one analysis projects Phoenix-area data center cooling water could rise about 870%, from ~385 million to over 3.7 billion gallons per year.","grid_note":"Planned five-building campus includes a dedicated on-site substation with over 257 MW of total utility capacity.","citations":[{"title":"Ahwatukee Foothills Village Planning Committee hearing ...","url":"https://www.ahwatukee.com/news/ahwatukee-foothills-village-planning-committee-hearing-heats-up-over-data-center/article_ab9f6692-99d6-4260-8ccb-eb88fdc6ed1a.html"},{"title":"Proposed Ahwatukee data center gets final city OK | News","url":"https://www.ahwatukee.com/news/proposed-ahwatukee-data-center-gets-final-city-ok/article_f6aa5460-63e6-11ef-bdad-33021a17f8a1.html"},{"title":"7 Ways Data Centers Affect US Communities","url":"https://www.wri.org/insights/us-data-center-growth-impacts"},{"title":"MD-PHX1 (Phoenix)","url":"https://menlo-digital.com/portfolio/md-phx1-phoenix/"},{"title":"Menlo Equities plans five-building data center campus in ...","url":"https://www.datacenterdynamics.com/en/news/menlo-equities-plans-five-building-data-center-campus-in-phoenix-arizona/"}],"runId":"srun_c0e944bd89584b544445ae50e09e2b1a","classifiedAt":"2026-07-02T22:55:49.665Z"},"77":{"community_note":"Statewide opponents cite water stress, but no El Mirage–specific lawsuit or moratorium surfaced; Microsoft’s El Mirage campus expansion is moving through city review via a site plan amendment.","water_impact":"moderate","ai_evidence":"PHX80 is listed as a Microsoft Azure cloud facility (operational 2021; ~244,666 sq ft; 57 MW), with no public PHX80-specific announcements of GPU superclusters or liquid-cooling retrofits [5].","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No PHX80-specific water-use figure was found; Microsoft’s Goodyear site will pilot a design eliminating over 42 million gallons of water use, but that project is separate from El Mirage.","grid_note":"APS proposed a 45% rate increase for certain high-load data center customers in its June 2025 rate request to align rates with the true cost to serve.","citations":[{"title":"With water cuts looming in Arizona in US, locals fight data ...","url":"https://www.aljazeera.com/economy/2026/6/27/with-water-cuts-looming-in-arizona-in-us-locals-fight-data-centres"},{"title":"Microsoft files to expand El Mirage data center campus in ...","url":"https://www.datacenterdynamics.com/en/news/microsoft-files-to-expand-el-mirage-data-center-campus-in-arizona/"},{"title":"Are data centers depleting the Southwest's resources?","url":"https://www.apmresearchlab.org/10x/data-centers-resource"},{"title":"Microsoft PHX-80 — Maricopa County, Arizona","url":"https://cleanview.co/data-centers/arizona/3532/microsoft-phx-80"},{"title":"Data Centers","url":"https://www.aps.com/en/Utility/Company-wide-Events-and-Messages/Data_Centers_How_Were_Protecting_Customers_While_Planning-for_Big_Energy_Needs"}],"runId":"srun_c0e944bd89584b54fe9dc8836752e91b","classifiedAt":"2026-07-02T22:55:49.665Z"},"81":{"community_note":"No PHX2-specific opposition found; citywide debates in Phoenix over zoning and neighborhood impacts continue.","water_impact":"low","ai_evidence":"QTS markets Phoenix 2 for rapid, large-scale deployments [1]; a report says the site is fully leased to a single hyperscale tenant across four phases [3]. No public disclosures confirm GPU clusters, AI tenants, or liquid-cooling retrofits at PHX2 DC1 [2].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"QTS cites about 600,000 gallons of annual water use for a closed-loop data center, with no PHX2-specific gallons/day disclosed; a local analysis projects Phoenix-area data center cooling water could rise nearly tenfold in six years.","grid_note":"DC1 is ~42 MW at 1200 N 40th St and the Phoenix 2 campus is ~210 MW served by SRP.","citations":[{"title":"Neighborhoods push back on Arizona data centers","url":"https://www.axios.com/local/phoenix/2026/05/06/data-center-growth-opposition-arizona-neighborhoods"},{"title":"Pioneering Water Efficiency and Sustainability in Data ...","url":"https://q.com/resources/pioneering-water-efficiency-and-sustainability-in-data-center-operations/"},{"title":"Phoenix 2 - Data Centers","url":"https://q.com/data-centers/phoenix-2/"},{"title":"QTS Nears Closing on $600M Refi for Phoenix Data Center","url":"https://www.connectcre.com/stories/qts-nears-closing-on-600-refi-for-phoenix-data-center/"},{"title":"QTS breaks ground on data center in Phoenix, Arizona - DCD","url":"https://www.datacenterdynamics.com/en/news/qts-breaks-ground-on-data-center-in-phoenix-arizona/"}],"runId":"srun_c0e944bd89584b54b8f5e2f2c45ea9bc","classifiedAt":"2026-07-02T22:55:49.665Z"},"82":{"community_note":"No PHX2 DC2-specific opposition was found; statewide Arizona groups and officials have raised concerns over data centers’ water/power demands and tax incentives, with resident campaigns and a 2026 policy move toward a data-center tax-incentive moratorium.","water_impact":"low","ai_evidence":"PHX2 DC2 collateral is described as about 36 MW and leased to a single hyperscale tenant, with no public evidence of named AI tenants, GPU superclusters, or liquid-cooling retrofits.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"QTS says its water‑free Freedom Design (WUE 0) saves more than 48 million gallons per data center annually, and no PHX2 DC2–specific gallons/day or discharge data were found amid broader Arizona drought concerns.","grid_note":"PHX2’s campus is ~210 MW with DC2 ~36 MW, in an SRP system where data centers reached 441 MW (5.1% of 2025 peak) and are fastest‑growing; SRP is upgrading transmission (e.g., 80% capacity boost via reconductoring) and regulators emphasize protecting ratepayers.","citations":[{"title":"With water cuts looming in Arizona in US, locals fight data ...","url":"https://www.aljazeera.com/economy/2026/6/27/with-water-cuts-looming-in-arizona-in-us-locals-fight-data-centres"},{"title":"Arizona emerges as test case for AI's energy and water ...","url":"https://www.axios.com/2026/06/18/arizona-ai-data-center-water-power"},{"title":"Arizona's data center moratorium is only the beginning","url":"https://azcapitoltimes.com/news/2026/06/12/arizonas-data-center-moratorium-is-only-the-beginning/"},{"title":"Pioneering Water Efficiency and Sustainability in Data ...","url":"https://q.com/resources/pioneering-water-efficiency-and-sustainability-in-data-center-operations/"},{"title":"Building the sustainable data centre | World Finance","url":"https://www.worldfinance.com/strategy/building-the-sustainable-data-centre"}],"runId":"srun_c0e944bd89584b54734dfd255b9be6c1","classifiedAt":"2026-07-02T22:55:49.665Z"},"85":{"community_note":"No Stream PHXA-specific organized opposition or litigation was found; the City of Goodyear publicly welcomed Stream’s project in 2019 and highlighted its benefits [1].","water_impact":"low","ai_evidence":"Stream markets the PHXA campus as “AI-Ready,” but there are no public disclosures of GPU superclusters, AI tenants, or liquid-cooling retrofits; recent filings show tenant improvements rather than AI-specific builds [1][2][3].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No PHXA-specific gallons/day were found; the campus is air-cooled, and nearby Microsoft shifted future Goodyear buildings to air cooling because the city could not handle additional water, amid broader Southwest water-stress concerns [1][2].","grid_note":"At roughly 280 MW campus scale, APS says it does not yet have enough power plants, transmission lines, and key infrastructure to serve all new data center requests and has proposed a 45%+ rate increase for extra‑large users [1][2][3].","citations":[{"title":"Technology surge brings Stream Data Centers to ...","url":"https://www.goodyearaz.gov/Home/Components/News/News/9227/32?arch=1"},{"title":"Microsoft to swap water for air cooling at campus in ...","url":"https://www.datacenterdynamics.com/en/news/microsoft-swapping-water-for-air-cooling-at-campus-in-phoenix-arizona/"},{"title":"Are data centers depleting the Southwest's resources?","url":"https://www.apmresearchlab.org/10x/data-centers-resource"},{"title":"Phoenix Data Center - Stream Data Centers in Arizona","url":"https://www.streamdatacenters.com/locations/phoenix/"},{"title":"Stream Goodyear AZ Data Center","url":"https://baxtel.com/data-center/stream-goodyear-az"}],"runId":"srun_c0e944bd89584b542da61794e81fcc9e","classifiedAt":"2026-07-02T22:55:49.665Z"},"87":{"community_note":"No Vantage AZ11-specific organized opposition or litigation was found; Goodyear officials praised the project, while in 2026 the city adopted general data-center zoning updates adding noise-study requirements near homes.","water_impact":"low","ai_evidence":"Goodyear city communications say the mega-scale campus will welcome hyperscalers, cloud providers and large enterprises, and Vantage is in NVIDIA’s DGX-Ready program to power and cool high‑density GPU clusters; no AZ11-specific AI tenant or GPU supercluster is publicly confirmed.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Designed to minimize cooling water use via a closed-loop chilled water system with air-side economizers; no gallons/day disclosed.","grid_note":"Campus capacity is about 176 MW on APS service, and APS has proposed a 45% rate increase for extra‑large energy users like data centers.","citations":[{"title":"Vantage Data Centers Tops Out Phase II in Goodyear","url":"https://www.goodyearaz.gov/Home/Components/News/News/12799/"},{"title":"Goodyear updates zoning rules for data centers, battery ...","url":"https://www.bizjournals.com/phoenix/news/2026/03/09/goodyear-az-data-center-bess-zoning.html"},{"title":"Vantage Data Centers Phase Two in Goodyear | City News","url":"https://www.goodyearaz.gov/Home/Components/News/News/12503/"},{"title":"Vantage Data Centers Celebrates Topping Out of First ...","url":"https://vantage-dc.com/news/vantage-data-centers-celebrates-topping-out-of-first-data-center-on-phoenix-campus/"},{"title":"Vantage Data Centers Topping Out Celebration in Goodyear","url":"https://www.goodyearaz.gov/Home/Components/News/News/12191/32?npage=49"}],"runId":"srun_c0e944bd89584b54e7fe31c75020d39f","classifiedAt":"2026-07-02T22:55:49.665Z"},"91":{"community_note":"No organized opposition specific to Aligned PHX-13; Glendale’s council approved a pre‑annexation agreement, while nearby protests target the unrelated Project Baccara by Takanock LLC [1][2].","water_impact":"low","ai_evidence":"Aligned markets AI-ready infrastructure (DeltaFlow liquid cooling to accommodate high‑density AI/HPC), but there is no public confirmation of GPU clusters or an AI tenant at PHX‑13; Aligned’s AI tenant announcement with Lambda is for DFW, not Phoenix [1][2][3].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Closed‑loop/waterless cooling is used, and the city reports more than a 73% annual water‑use reduction for the campus with unused well rights retained on‑site [1][2].","grid_note":"Served by APS, with APS proposing a 45% rate increase for extra‑large energy users and facing surging data‑center demand (average request ~500 MW), indicating significant new generation/transmission needs [1][2].","citations":[{"title":"The Glendale City Council unanimously approved a pre","url":"https://www.facebook.com/FOX10Phoenix/posts/the-glendale-city-council-unanimously-approved-a-pre-annexation-development-agre/1298698819130908/"},{"title":"Project Baccara | Surprise, AZ - Official Website","url":"https://surpriseaz.gov/1499/Project-Baccara"},{"title":"Aligned Data Centers Breaks Ground on Phx-13 Facility","url":"https://www.glendaleaz.gov/Business/Economic-Development/Economic-Development-News/2025/Aligned-Data-Centers-Breaks-Ground-on-Phx-13-Facility"},{"title":"Protecting Regional Water Resources","url":"https://aligneddc.com/case-studies/case-study-protecting-regional-water-resources/"},{"title":"Advanced Data Center Cooling","url":"https://aligneddc.com/cooling-innovation/"}],"runId":"srun_c0e944bd89584b54a2564c361c4003f8","classifiedAt":"2026-07-02T22:55:49.665Z"},"113":{"community_note":"No organized opposition or litigation surfaced; local coverage discussed a same-campus expansion at 2800 Summit Ave without reporting pushback.","water_impact":"low","ai_evidence":"Aligned markets the Dallas–Fort Worth campus as powering AI and cloud workloads and supporting the highest‑density GPUs, but the named AI cloud deployment is Lambda at DFW‑04, not DFW‑01.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Uses closed‑loop/air‑cooled cooling with claims of reduced water use and millions of gallons saved annually; no DFW‑01 gallons/day, source, drought/aquifer, or discharge details found.","grid_note":"Approximately 60 MW critical load with Oncor as provider; no DFW‑01‑specific upgrades, rate cases, or curtailment identified.","citations":[{"title":"Data Centers Expansion Set For Plano, Texas","url":"https://www.localprofile.com/news/data-centers-expansion-set-for-plano-texas-8279396"},{"title":"Aligned Data Centers: Adaptive Data Centers for Growth","url":"https://aligneddc.com/"},{"title":"Protecting Regional Water Resources","url":"https://aligneddc.com/case-studies/case-study-protecting-regional-water-resources/"},{"title":"Aligned Data Centers Opens Ultra-Efficient Data Center in ...","url":"https://aligneddc.com/press-release/aligned-data-centers-opens-ultra-efficient-data-center-in-plano/"},{"title":"Sustainable, AI-Ready Data Centers in Dallas Fort Worth","url":"https://aligneddc.com/dallas-data-centers/"}],"runId":"srun_c0e944bd89584b545cae6659b9c502cd","classifiedAt":"2026-07-02T22:55:49.665Z"},"117":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"CyrusOne reports DFW1 transitioned to 100% water‑free cooling, reducing annual water use by 65% and operating as a net‑positive water campus; no gallons/day or local aquifer/discharge concerns were disclosed.","grid_note":"Listed around 90 MW of IT capacity; no facility‑specific reporting of utility upgrades, new transmission, rate cases, or curtailments tied to this site was found.","citations":[{"title":"Carrollton, TX: DFW1","url":"https://www.cyrusone.com/data-centers/north-america/carrollton-texas"},{"title":"CyrusOne DFW1 — Dallas, Texas","url":"https://cleanview.co/data-centers/texas/935/cyrusone-dfw1"},{"title":"CyrusOne Data Center in Carrollton, TX","url":"https://www.datacenters.com/cyrusone-dfw1-dallas-carrollton"},{"title":"CyrusOne DFW1 - Carrollton Data Center in Dallas (90 MW)","url":"https://www.datacentermap.com/usa/texas/dallas/cyrusone-carrolton/"},{"title":"CyrusOne DFW1 | 1649 W Frankford Road, Dallas/Fort Worth","url":"https://datacenterhawk.com/marketplace/providers/cyrusone/1649-w-frankford-road/dfw1"}],"runId":"srun_c0e944bd89584b54170680e8978ad252","classifiedAt":"2026-07-02T22:55:49.665Z"},"118":{"community_note":"No DFW2-specific opposition was found; the City of Lewisville passed a June 2026 ordinance prohibiting data centers in residential zones and requiring special-use permits/public hearings due to noise, water, electrical, and environmental concerns.","water_impact":"low","ai_evidence":"LightEdge’s Dallas/Lewisville presence markets AI/GPU colocation (\"supports AI workloads\"; \"host GPU-intensive AI workloads\") at 2501 State Hwy 121, and CyrusOne DFW2 advertises high-density capacity (26.5 MW), but no named GPU supercluster or DGX deployment is reported.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"CyrusOne reports water-free cooling at its Lewisville facility, significantly limiting on-site water use; no gallons/day or discharge issues were identified.","grid_note":"DFW2 lists 26.5 MW of IT capacity and two independent power grids; TNMP regulatory and investor materials note data center loads in distribution/transmission billings, with no DFW2-specific upgrades disclosed.","citations":[{"title":"Lewisville sets 'proactive' limits on AI data centers before ...","url":"https://www.keranews.org/news/2026-06-25/lewisville-sets-proactive-limits-on-ai-data-centers-before-they-arrive"},{"title":"City passes new Data Center ordinance | Latest City News","url":"https://www.cityoflewisville.com/Home/Components/News/News/8405/?ref=writing.strisker.com"},{"title":"Lewisville sets 'proactive' limits on AI data centers before ...","url":"https://dentonrc.com/news/lewisville/lewisville-sets-proactive-limits-on-ai-data-centers-before-they-arrive/article_67ff20d0-18eb-447e-86fe-9dd544311c34.html"},{"title":"Growing Our Net Positive Water Portfolio","url":"https://www.cyrusone.com/resources/blogs/growing-our-net-positive-water-portfolio"},{"title":"Uncertain Waters: Data Centers' Hidden Water Consumption","url":"https://dallasexpress.com/state/uncertain-waters-data-centers-hidden-water-consumption/"}],"runId":"srun_c0e944bd89584b54d15e9b3bb157ab43","classifiedAt":"2026-07-02T22:55:49.665Z"},"119":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"No Irving-specific gallons/day, source or discharge reporting was found; QTS says its closed-loop cooling “recirculates water rather than relying on a continuous supply of new water” and a “water-free cooling system” can “save more than 48 million gallons of water annually per data center.”","grid_note":"DC1/DC2 at 6431 Longhorn Drive offer roughly 75.2 MW of critical power, while Oncor reports a ~$36.1B 2025–2029 capital plan and heavy large‑load interconnection demand; no Irving‑specific upgrade, curtailment, or rate case was identified.","citations":[{"title":"QTS Irving DC1 & DC2 Data Center in Dallas (75.2 MW)","url":"https://www.datacentermap.com/usa/texas/dallas/qts-irving/"},{"title":"QTS Data Center in Irving Texas","url":"https://www.datacenters.com/qts-irving-dallas-dc1-dc2"},{"title":"QTS Enters Dallas Market, Buys 700000 SF Facility","url":"https://www.datacenterknowledge.com/operations-and-management/qts-enters-dallas-market-buys-700-000-sf-facility"},{"title":"Irving - Data Centers","url":"https://q.com/data-centers/irving/"},{"title":"QTS set to more than double the size of Irving campus - DCD","url":"https://www.datacenterdynamics.com/en/news/qts-set-to-more-than-double-the-size-of-irving-campus/"}],"runId":"srun_c0e944bd89584b548bb6b54abe1590f4","classifiedAt":"2026-07-02T22:55:49.665Z"},"124":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"The Dallas page lists cooling as “Closed loop air and liquid,” and no gallons/day, source-water, aquifer, or discharge details were reported for 1515 Round Table [2].","grid_note":"Industry listings describe the 1515 Round Table facility at about 6 MW and roughly 107,000 sq ft; no site-specific reports of new transmission or rate impacts surfaced [3].","citations":[{"title":"Sustainability","url":"https://primedatacenters.com/sustainability/"},{"title":"Prime Data Centers: Prime Dallas - 1515 Round Table","url":"https://www.datacenters.com/prime-prime-dallas-1515-round-table"},{"title":"Data Center Thermal Management | Carrier Commercial","url":"https://www.carrier.com/us/en/commercial/data-centers/"},{"title":"Advancing responsible water use at our data centers","url":"https://datacenters.google/water/"},{"title":"Dallas Data Centers","url":"https://primedatacenters.com/locations/dallas/"}],"runId":"srun_c0e944bd89584b54460ecf9da0cc78c9","classifiedAt":"2026-07-02T22:55:49.665Z"},"125":{"community_note":"Residents and local leaders in Wilmer are pushing back over rapid data-center growth—favoring community infrastructure and calling for tighter rules—though no Wilmer-specific moratorium or lawsuit is reported.","water_impact":"unknown","ai_evidence":"Baxtel lists DFW‑B2 within a 690,000‑sq‑ft hyperscale campus in Wilmer, while Stream markets configurable liquid‑cooling for AI across its portfolio; no public source names an AI tenant or GPU supercluster at DFW‑B2.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No facility-specific gallons/day or water source identified; a Texas study discusses combined direct and indirect water use by data centers statewide without site-level detail.","grid_note":"Campus presence is listed at 90 MW, and a new 48 MW data center with a substation is permitted on the Wilmer campus.","citations":[{"title":"Data centers are coming to Wilmer. Residents would rather ...","url":"https://www.keranews.org/news/2026-07-01/data-centers-wilmer-grocery-store-infrastructure-north-texas"},{"title":"Data Centers and Water Consumption | Article | EESI","url":"https://www.eesi.org/articles/view/data-centers-and-water-consumption"},{"title":"Stream: DFW-B2 Data Center","url":"https://baxtel.com/data-center/stream-dfw-b2"},{"title":"Stream Data Centers - Development & Colocation Services","url":"https://www.streamdatacenters.com/"},{"title":"Stream DC DFW-VIII - Wilmer Data Center in Dallas (90 MW)","url":"https://www.datacentermap.com/usa/texas/dallas/stream-dc-dfw-viii-wilmer/"}],"runId":"srun_c0e944bd89584b540066ea2c3e091fc6","classifiedAt":"2026-07-02T22:55:49.665Z"},"126":{"community_note":"","water_impact":"unknown","ai_evidence":"Google includes Midlothian among its Texas data center locations and says it is investing $40B in Texas through 2027 for “cloud and AI infrastructure,” while the Midlothian 5 listing notes it “supports growing cloud and AI infrastructure demand”; no public, facility-specific disclosures of GPU/TPU superclusters or liquid-cooling retrofits were found.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No facility-specific water volumes are published; the project scope includes Water Supply & Treatment, and Google says it evaluates each site’s watershed health before selecting cooling approaches.","grid_note":"No MW published for Midlothian; permits list Building 4 and a ~$492M Building 5 at 3441 Railport Pkwy, while Oncor reports rising POI requests and a large DC queue across its territory.","citations":[{"title":"City of Midlothian, Texas","url":"https://www.facebook.com/cityofmidlothiantx/photos/on-thursday-google-announced-plans-to-invest-more-than-1-billion-in-texas-this-y/898988665608337/"},{"title":"Billion-dollar Google data center project comes to Midlothian","url":"https://www.nbcdfw.com/news/politics/lone-star-politics/google-data-center-midlothian/3622572/"},{"title":"Google Data Center - Quiddity | Midlothian, TX","url":"https://quiddity.com/projects/google-data-center-quiddity/"},{"title":"Advancing responsible water use at our data centers","url":"https://datacenters.google/water/"},{"title":"Texas – Google Data Center Location","url":"https://datacenters.google/locations/texas/"}],"runId":"srun_c0e944bd89584b54babf047f48590df7","classifiedAt":"2026-07-02T22:55:49.665Z"},"133":{"community_note":"No organized SAT1-specific opposition or legal action; a separate Westover Hills protest in 2026 targeted another project, with no current action aimed at SAT1.","water_impact":"low","ai_evidence":"No SAT1-specific announcements or disclosures of GPU training clusters or AI inference tenants were found; listings show a 9.0 MW colocation site without AI deployment details.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"SAT1 advertises 'Water-Free Cooling' and 'No water consumption for cooling,' with only minimal water used for humidification/maintenance; no gallons/day or aquifer-stress data disclosed.","grid_note":"Far West Bexar County data centers already draw ~324 MW, and CPS Energy has a large-load customer process to manage growth, indicating limited relative grid impact for a ~9 MW site.","citations":[{"title":"'A Special Place in Hell': San Antonio residents push back ...","url":"https://www.sacurrent.com/news/san-antonio-news/a-special-place-in-hell-san-antonio-residents-push-back-against-far-west-side-data-center/"},{"title":"San Antonio, TX: SAT1 - Data centers","url":"https://www.cyrusone.com/data-centers/north-america/san-antonio-texas-sat1"},{"title":"Edwards Aquifer Authority: Home","url":"https://www.edwardsaquifer.org/"},{"title":"CyrusOne SAT6, Texas Research Park","url":"https://centexdatacenters.org/tracker/cyrusone-sat6-san-antonio"},{"title":"Geology and hydrology of the Edwards Aquifer in the San ...","url":"https://pubs.usgs.gov/publication/wri954186"}],"runId":"srun_c0e944bd89584b5475171e8e26a474c0","classifiedAt":"2026-07-02T22:55:49.665Z"},"134":{"community_note":"San Antonio District 6 Councilmember Ric Galvan called for a policy discussion on data center growth over electric grid, water supply, and neighborhood impacts; no SAT2-specific lawsuits or complaints were found.","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No SAT2 gallons/day or discharge issues were found; a nearby campus facility (SAT3) features a closed-loop chilled water system, while regional advocates urge limiting potable water use to protect local supplies.","grid_note":"SAT2 is listed at 36 MW and operates in a market where CPS Energy already serves 21 data centers; no SAT2-specific curtailment or new-generation requirement surfaced.","citations":[{"title":"District 6 Councilmember Calls for Policy on Data Center ...","url":"https://www.sa.gov/Directory/News-Releases/District-6-Councilmember-Calls-for-Policy-Discussion-on-Data-Center-Growth-and-Resource-Impact"},{"title":"CyrusOne SAT3 - San Antonio","url":"https://www.datacentermap.com/usa/texas/san-antonio/cyrusone-sat3-san-antonio/"},{"title":"Greater Edwards Aquifer Alliance report sounds the alarm ...","url":"https://www.tpr.org/news/2026-04-29/greater-edwards-aquifer-authority-report-sounds-the-alarm-over-proposed-data-centers-in-texas"},{"title":"CyrusOne SAT2 | 9554 Westover Hills Boulevard, San ...","url":"https://datacenterhawk.com/marketplace/providers/cyrusone/9554-westover-hills-boulevard/sat2"},{"title":"CyrusOne SAT2 - San Antonio Data Center (36 MW)","url":"https://www.datacentermap.com/usa/texas/san-antonio/cyrusone-sat2/"}],"runId":"srun_c0e944bd89584b542f6f38d1ecb332c5","classifiedAt":"2026-07-02T22:55:50.064Z"},"135":{"community_note":"No SAT5/SAT6-specific opposition found; residents have organized against other far‑west‑side/Vantage projects over diesel generators, noise, light, and resource use, not CyrusOne SAT5/SAT6 [1].","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"CyrusOne lists 'Water‑Free Cooling' with 'Minimal water usage for humidification and maintenance' at the SAT5–SAT6 site; no gallons/day figure was reported [1].","grid_note":"Approx. 18 MW IT capacity at SAT5 (material load) [1]; CPS Energy reports rapid large‑load growth and plans about $1.3B in transmission over five years, with a 40 MW 'large load' threshold—no SAT5‑specific upgrade/curtailment noted [2][3][4].","citations":[{"title":"'A Special Place in Hell': San Antonio residents push back ...","url":"https://www.sacurrent.com/news/san-antonio-news/a-special-place-in-hell-san-antonio-residents-push-back-against-far-west-side-data-center/"},{"title":"San Antonio, TX: SAT5-SAT6 - Data centers","url":"https://www.cyrusone.com/data-centers/north-america/san-antonio-sat5-sat6"},{"title":"San Antonio, TX: SAT5-SAT6 - Data centers","url":"https://www.cyrusone.com/data-centers/north-america/san-antonio-sat5-sat6"},{"title":"San Antonio, TX: SAT1 - Data centers","url":"https://www.cyrusone.com/data-centers/north-america/san-antonio-texas-sat1"},{"title":"CyrusOne: SAT5 San Antonio Data Center","url":"https://www.datacenters.com/cyrusone-sat5-san-antonio"}],"runId":"srun_c0e944bd89584b54e9c7536086d49d4a","classifiedAt":"2026-07-02T22:55:50.064Z"},"136":{"community_note":"No SAT9-specific lawsuits or moratoriums were found; San Antonio leaders are advancing data center standards amid resident concerns about resource impacts, with public input underway.","water_impact":"low","ai_evidence":"Materials describe AI-ready, high-density deployments but do not identify specific GPU superclusters or AI tenants.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No SAT9 gallons/day reported; nearby CyrusOne San Antonio pages note “Water‑Free Cooling across campus” with only minimal humidification/maintenance use, and the region relies on the Edwards Aquifer.","grid_note":"Two new buildings along Omicron Drive add to CPS Energy’s large‑load queue, and CPS expects about $1.3B in transmission spending over five years; no SAT9‑specific rate case was found.","citations":[{"title":"San Antonio city leaders seek input from residents on ...","url":"https://www.kens5.com/article/news/local/san-antonio-texas-satx-ccr-councilmember-ric-galvan-district-6-data-centers-regulations-resident-feedback-april-2026/273-4fdb2593-c1e8-4e75-9aa8-417988c2b1f9"},{"title":"San Antonio considers regulations for data centers","url":"https://spectrumlocalnews.com/tx/san-antonio/news/2025/12/18/san-antonio-mulls-data-center-regulations"},{"title":"Data Center Campus -- San Antonio: SAT2-SAT4","url":"https://www.cyrusone.com/data-centers/north-america/san-antonio-sat2-sat4"},{"title":"Growing Our Net Positive Water Portfolio","url":"https://www.cyrusone.com/resources/blogs/growing-our-net-positive-water-portfolio"},{"title":"Edwards Aquifer Authority: Home","url":"https://www.edwardsaquifer.org/"}],"runId":"srun_c0e944bd89584b54a41f6db38d778bcb","classifiedAt":"2026-07-02T22:55:50.064Z"},"142":{"community_note":"Residents and local environmental groups have opposed Vantage’s far West Side data center plans over water/power use and air/noise concerns at public hearings; TX11’s TCEQ air permit was in public-notice/comment as of Mar 11, 2026, with no TX11-specific lawsuit or moratorium found.","water_impact":"low","ai_evidence":"No public proof of TX11 hosting AI training clusters or named AI tenants; its 32MW, four 8MW-hall design is presented as general hyperscale capacity, while Vantage’s explicit AI/OpenAI deployment is at the separate Shackelford County campus.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No TX11-specific gallons/day publicly found; Vantage states air-cooled, closed-loop chillers with near-zero water recharge, while GEAA and local reporting flag broader Edwards Aquifer/public-resource concerns for San Antonio data center growth.","grid_note":"32MW planned load at 14720 Omicron Dr, with 80 backup generators listed at the site, while CPS Energy plans ~$1.3bn in transmission/generation upgrades amid data center-driven growth; no TX11-specific curtailment or rate case found.","citations":[{"title":"'A Special Place in Hell': San Antonio residents push back ...","url":"https://www.sacurrent.com/news/san-antonio-news/a-special-place-in-hell-san-antonio-residents-push-back-against-far-west-side-data-center/"},{"title":"Data Centers Bringing Major New Pollution Sources to San ...","url":"https://deceleration.news/data-centers-major-new-air-pollution-san-antonio/"},{"title":"TEXAS COMMISSION ON ENVIRONMENTAL QUALITY","url":"https://records.tceq.texas.gov/cs/idcplg?IdcService=TCEQ_EXTERNAL_SEARCH_GET_FILE&dID=9573640&Rendition=Web&searchType=External"},{"title":"Sustainability","url":"https://vantage-dc.com/features/sustainability/"},{"title":"Cooling","url":"https://vantage-dc.com/features/cooling/"}],"runId":"srun_c0e944bd89584b545e7787c28ec1c6cc","classifiedAt":"2026-07-02T22:55:50.064Z"},"144":{"community_note":"No CloudHQ-specific lawsuit or moratorium surfaced, but San Antonio leaders (District 6) initiated a CCR and are weighing zoning standards (e.g., a 1,000-foot buffer) in response to resident concerns about data center growth [7][8].","water_impact":"high","ai_evidence":"CloudHQ’s SAT campus is presented as up to 600 MW across five data centers, with coverage noting the land acquisition and development trajectory; public listings do not name AI tenants or GPU deployments for SAT1 [1][3].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Campus-level estimates peg total water use at roughly 5.4–7.8 million gallons per day, and regional reporting highlights aquifer-related concerns tied to rapid data center growth [2][4].","grid_note":"CPS defines a large load at 40 MW and ERCOT’s threshold is 75 MW, while CPS expects to spend over $1.3B on transmission and generation in the next five years to serve rapid data center growth [5][6].","citations":[{"title":"District 6 Councilmember Calls for Policy on Data Center ...","url":"https://www.sa.gov/Directory/News-Releases/District-6-Councilmember-Calls-for-Policy-Discussion-on-Data-Center-Growth-and-Resource-Impact"},{"title":"San Antonio City Council looks to zoning to manage data ...","url":"https://www.ksat.com/news/local/2026/03/07/san-antonio-city-council-looks-to-zoning-to-manage-data-center-growth/"},{"title":"CloudHQ SAT Campus - Central Texas Data Center Tracker","url":"https://centexdatacenters.org/tracker/cloudhq-san-antonio"},{"title":"Greater Edwards Aquifer Alliance report sounds the alarm ...","url":"https://www.tpr.org/news/2026-04-29/greater-edwards-aquifer-authority-report-sounds-the-alarm-over-proposed-data-centers-in-texas"},{"title":"SAT Campus","url":"https://cloudhq.com/campus/sat-campus/"}],"runId":"srun_c0e944bd89584b5418cfa215f402f6d1","classifiedAt":"2026-07-02T22:55:50.064Z"},"145":{"community_note":"A few local residents on social media have complained about noise and possible utility impacts at 5150 Rogers Rd, but there is no organized opposition, lawsuit, or zoning fight evident.","water_impact":"moderate","ai_evidence":"Listings place the Microsoft Azure facility at 5150 Rogers Rd with ~470,000 sq ft [1], and Azure Foundry models show availability in the South Central US region [2], but there is no public, facility-specific evidence of GPU superclusters or liquid-cooling retrofits at this address.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Reporting indicates the site would use more than 250 acre-feet of SAWS recycled water annually for cooling, with Microsoft’s case study noting recycled water was available to meet the cooling system’s needs.","grid_note":"CPS Energy expects to spend about $1.3 billion on transmission and generation over five years to serve rapid data-center load growth in San Antonio, and is taking swift action for large-load customers such as data centers.","citations":[{"title":"Microsoft built a data center in San Antonio","url":"https://www.facebook.com/groups/635869761194443/posts/660680142046738/"},{"title":"What the heck is this facility at 5150 Rogers Rd?","url":"https://www.reddit.com/r/sanantonio/comments/w1es5j/what_the_heck_is_this_facility_at_5150_rogers_rd/"},{"title":"Microsoft to use recycled water in San Antonio datacenter","url":"https://www.datacenterdynamics.com/en/news/microsoft-to-use-recycled-water-in-san-antonio-datacenter/"},{"title":"Microsoft San Antonio Case Study","url":"https://ceowatermandate.org/wp-content/uploads/2018/01/Water_Risk_Monetizer_Microsoft_Case_Study.pdf"},{"title":"Understanding water use at Microsoft datacenters","url":"https://local.microsoft.com/blog/understanding-water-use-at-microsoft-datacenters/"}],"runId":"srun_c0e944bd89584b54d327bca44fc727ce","classifiedAt":"2026-07-02T22:59:23.555Z"},"146":{"community_note":"Localized concern has focused on another Westover Hills/Far West Side data center project over tree clearing and impacts, with no organized challenge identified specific to Microsoft 3823 Wiseman to date.","water_impact":"moderate","ai_evidence":"Listed as a Microsoft Azure data center that is part of the South Central US region, with Microsoft confirming construction at the Wiseman Boulevard site; no public evidence of GPU superclusters or liquid-cooling AI retrofits specific to 3823 Wiseman was found.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No site-specific gallons/day found; Microsoft’s San Antonio cooling has relied on SAWS recycled water (more than 250 acre-feet/year), and two Microsoft San Antonio data centers together used 463 million gallons in 2023–24.","grid_note":"Far western Bexar data centers already use around 324 MW; CPS Energy has a large-load process for data centers and is developing new substation/transmission in northwest San Antonio.","citations":[{"title":"'A Special Place in Hell': San Antonio residents push back ...","url":"https://www.sacurrent.com/news/san-antonio-news/a-special-place-in-hell-san-antonio-residents-push-back-against-far-west-side-data-center/"},{"title":"Microsoft files for data center campus outside San Antonio","url":"https://www.datacenterdynamics.com/en/news/microsoft-files-for-data-center-campus-outside-san-antonio/"},{"title":"Microsoft San Antonio Case Study","url":"https://ceowatermandate.org/wp-content/uploads/2018/01/Water_Risk_Monetizer_Microsoft_Case_Study.pdf"},{"title":"Microsoft to use recycled water in San Antonio datacenter","url":"https://www.datacenterdynamics.com/en/news/microsoft-to-use-recycled-water-in-san-antonio-datacenter/"},{"title":"Texas Data Centers Use 50 Billion Gallons of Water as ...","url":"https://www.newsweek.com/texas-data-center-water-artificial-intelligence-2107500"}],"runId":"srun_c0e944bd89584b548d7fd6f7f401e5ef","classifiedAt":"2026-07-02T22:55:50.064Z"},"147":{"community_note":"Nearby residents (Stonegate Hill/West Side) objected to removal of 2,642 trees, but a mitigation agreement was reached and the city approved the variance; no active litigation identified.","water_impact":"unknown","ai_evidence":"Listed as an Azure availability‑zone facility at 3545 Wiseman Blvd and documented in state filings as the SAT14 Data Center; no public disclosures of GPU superclusters, AI tenants, or liquid‑cooling retrofits tied to this site.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No SAT14-specific gallons/day published; Microsoft noted SAWS recycled water availability for an older San Antonio data center and later announced a zero‑water cooling design for next‑gen sites, but there’s no confirmation this facility uses it.","grid_note":"Building 1 capacity is 39 MW; CPS Energy is scaling for data-center-driven large-load growth, with reporting of up to ~$1.45B in upgrades and roughly gigawatt-scale additions as demand increases.","citations":[{"title":"Microsoft to remove thousands of trees for data center in ...","url":"https://sanantonioreport.org/microsoft-data-center-tree-variance/"},{"title":"West Side subdivision reaches agreement with Microsoft ...","url":"https://news4sanantonio.com/news/local/west-side-subdivision-reaches-agreement-with-microsoft-over-removal-of-thousands-of-trees-san-antonio-texas-wiseman-boulevard-tech-company-data-center-local"},{"title":"Microsoft gets permission to cut down 2600 trees in San ...","url":"https://www.datacenterdynamics.com/en/news/microsoft-gets-permission-to-cut-down-2600-tress-in-san-antonio/"},{"title":"Microsoft San Antonio Case Study","url":"https://ceowatermandate.org/wp-content/uploads/2018/01/Water_Risk_Monetizer_Microsoft_Case_Study.pdf"},{"title":"Next-generation datacenters consume zero water for cooling","url":"https://www.microsoft.com/en-us/microsoft-cloud/blog/2024/12/09/sustainable-by-design-next-generation-datacenters-consume-zero-water-for-cooling/"}],"runId":"srun_c0e944bd89584b5447d7f10647d3e348","classifiedAt":"2026-07-02T22:55:50.064Z"},"148":{"community_note":"Residents in Medina County (e.g., local data-center discussion groups) have raised concerns about water, light/noise, and other impacts, but no SAT82-specific lawsuits or moratoriums surfaced, and the project remains registered for 2026–2028.","water_impact":"moderate","ai_evidence":"Regulatory and press materials describe SAT82 as a new Microsoft data center in Castroville with no mention of GPU clusters or AI-specific liquid cooling; Microsoft’s AI superfactory announcements cite Fairwater sites in Wisconsin/Atlanta, not SAT82.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No SAT82-specific gallons/day were found; Medina County relies on the drought‑strained Edwards Aquifer, and nearby Project Cinco is sourcing from the aquifer and discussing offsets.","grid_note":"No SAT82 MW disclosed; a nearby ERCOT project plans ~129 MW of load with new 138‑kV lines, and state leadership has directed PUC/ERCOT to shield Texans from data‑center infrastructure costs.","citations":[{"title":"Concerns about data centers in Medina County","url":"https://www.facebook.com/groups/936648762494702/posts/980935064732738/"},{"title":"How One Texas County Struck a Deal With Its Data Centers","url":"https://www.texasmonthly.com/news-politics/data-center-water-shortage-medina-county/"},{"title":"Project Details - Texas Department of Licensing and Regulation","url":"https://www.tdlr.texas.gov/TABS/Search/Print/TABS2026008231"},{"title":"Microsoft brings $400M data center to tiny Texas town","url":"https://www.mysanantonio.com/business/article/castroville-microsoft-data-center-21277209.php"},{"title":"How One Texas County Struck a Deal With Its Data Centers","url":"https://www.texasmonthly.com/news-politics/data-center-water-shortage-medina-county/"}],"runId":"srun_c0e944bd89584b5402300b495faba0fd","classifiedAt":"2026-07-02T22:55:50.064Z"},"149":{"community_note":"Residents in Medina County have raised concerns about water use, drought stress, and related impacts from new data centers, but no SAT89/SAT90-specific lawsuit or moratorium fight surfaced.","water_impact":"moderate","ai_evidence":"Microsoft filed plans for two single-story buildings (SAT89 and SAT90) at 2995 US HWY 90 W in Castroville; no public reporting confirms GPU superclusters or site-specific liquid-cooling/high-density AI deployments.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No SAT90-specific gallons/day were found; the Edwards Aquifer that serves about 2 million Texans is described as under pressure from drought, growth, and data center expansion.","grid_note":"No SAT90-specific MW load, transmission project, or rate case was identified in public reporting.","citations":[{"title":"The impact of billion-dollar data centers in water-stressed ...","url":"https://www.ksat.com/news/local/2025/10/03/the-impact-of-billion-dollar-data-centers-in-water-stressed-medina-county/"},{"title":"The impact of billion-dollar data centers in water-stressed ...","url":"https://www.ksat.com/news/local/2025/10/03/the-impact-of-billion-dollar-data-centers-in-water-stressed-medina-county/"},{"title":"Microsoft files for data center campus outside San Antonio","url":"https://www.datacenterdynamics.com/en/news/microsoft-files-for-data-center-campus-outside-san-antonio/"},{"title":"San Antonio, Medina County continue to attract data centers","url":"https://www.tpr.org/news/2026-03-18/san-antonio-medina-county-continue-to-attract-data-centers"},{"title":"Microsoft: SAT90 Data Center","url":"https://baxtel.com/data-center/microsoft-sat90"}],"runId":"srun_c0e944bd89584b54bc8825f8f3fbcc22","classifiedAt":"2026-07-02T22:55:50.064Z"},"150":{"community_note":"","water_impact":"unknown","ai_evidence":"Project filings and facility listings show ALE060/AWS Rockfish at 7400 Potranco (109,600 sq ft; 12 MW) operated by AWS, with no public evidence tying this site to GPU superclusters or liquid-cooling retrofits [1][2][3][4].","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No ALE060 gallons/day reported; regionally, data centers use around 0.1% of SAWS’ drinking water, AWS says it uses recycled water for cooling where available, and SAWS drought restrictions are triggered by Edwards Aquifer levels [8][9][10].","grid_note":"Listed at about 12 MW for 7400 Potranco [3]; CPS plans to invest upwards of $1.3 billion in transmission and generation to meet rapid data center growth, with no ALE060-specific upgrade cited [7].","citations":[{"title":"Amazon is planning to build a data center on the far West ...","url":"https://www.expressnews.com/business/local/article/Amazon-is-planning-to-build-a-data-center-on-the-15679690.php"},{"title":"Amazon AWS Data Center in San Antonio Texas","url":"https://www.datacenters.com/amazon-aws-7400-potranco-rd"},{"title":"Amazon plans to build two data centers in San Antonio","url":"https://www.expressnews.com/business/article/san-antonio-amazon-data-centers-west-southeast-22081667.php"},{"title":"Amazon AWS SAT - 7400 Potranco","url":"https://www.datacentermap.com/usa/texas/san-antonio/amazon-aws-sat-7400-potranco/"},{"title":"CPS Energy grabs the reins - San Antonio","url":"https://www.bizjournals.com/sanantonio/news/2026/02/02/data-center-cover-story-energy-demand-public-state.html"}],"runId":"srun_c0e944bd89584b5476e0402b9864bbd3","classifiedAt":"2026-07-02T22:55:50.064Z"},"151":{"community_note":"","water_impact":"unknown","ai_evidence":"State project records list the facility as ALE061 at 11625 Old Corpus Christi Hwy in San Antonio, and industry reporting ties it to AWS’s Rockfish builds at ~109,600 sq ft; no source reports AI GPU clusters or liquid-cooling retrofits at this address [1][2].","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No site-level data on gallons/day, cooling method, source water, or discharge for ALE061 was located.","grid_note":"Reported to connect to Karnes Electric Cooperative; no public MW load or upgrade details are disclosed [3].","citations":[{"title":"AWS Rockfish: Planning documents reveal three Amazon ...","url":"https://www.datacenterdynamics.com/en/news/aws-rockfish-planning-documents-reveal-three-amazon-data-centers-in-texas/"},{"title":"Project Details - TDLR TABS","url":"https://www.tdlr.texas.gov/TABS/Search/Project/TABS2021001485"},{"title":"Project Details - Texas Department of Licensing and Regulation","url":"https://www.tdlr.texas.gov/TABS/Search/Print/TABS2021001485"},{"title":"Amazon AWS SAT - 11625 Old Corpus Christi in San Antonio","url":"https://www.datacentermap.com/usa/texas/san-antonio/aws-sat-11625-old-corpus-christi/"},{"title":"Planning documents reveal three Amazon data centers in Texas","url":"https://www.i-sa.com/news-1/aws-rockfish-planning-documents-reveal-three-amazon-data-centers-in-texas"}],"runId":"srun_c0e944bd89584b5431385a5a83b005e4","classifiedAt":"2026-07-02T22:55:50.064Z"},"152":{"community_note":"No organized opposition or lawsuits were identified; residents/advocates have raised water‑use concerns in water‑stressed Medina County, and Rowan agreed to third‑party monitoring of traffic, noise, and dust; construction is underway.","water_impact":"moderate","ai_evidence":"Rowan and contractor materials describe Cinco as supporting cloud and AI infrastructure/customers; no named tenants, GPU superclusters, or density/liquid-cooling details were found.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"KSAT reports Cinco will draw from the Edwards Aquifer in water‑stressed Medina County, and Rowan says the campus will limit and reuse cooling water with a 250% offset.","grid_note":"Phase 1 is cited at 60 MW within a 300 MW campus now under construction and served by AEP Texas.","citations":[{"title":"Denver company building $900M data center west of San ...","url":"https://www.expressnews.com/business/article/rowan-digital-medina-county-lytle-data-center-20815729.php"},{"title":"The impact of billion-dollar data centers in water-stressed ...","url":"https://www.ksat.com/news/local/2025/10/03/the-impact-of-billion-dollar-data-centers-in-water-stressed-medina-county/"},{"title":"The impact of billion-dollar data centers in water-stressed ...","url":"https://www.ksat.com/news/local/2025/10/03/the-impact-of-billion-dollar-data-centers-in-water-stressed-medina-county/"},{"title":"Local Investment Drives 250% Water Offset at Cinco","url":"https://rowan.digital/local-investment-drives-250-water-offset-at-cinco/"},{"title":"Rowan in Medina County","url":"https://www.rowanmedina.com/"}],"runId":"srun_c0e944bd89584b54eb90748d88480f39","classifiedAt":"2026-07-02T22:55:50.064Z"},"159":{"community_note":"Opponents including 1000 Friends of Oregon sued in June 2026 to block Hillsboro data center tax breaks, and the fight has moved into the courts.","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"No POR01A-specific gallons/day were found; Hillsboro reports data centers used 111 million gallons in 2025 (1.76% of city demand) and predominantly employ closed-loop systems that reuse water.","grid_note":"Served by PGE; Oregon approved changes so data centers and other large industrial users will pay more to access electricity, reflecting grid and rate impacts from large loads.","citations":[{"title":"Opponents Sue to Block 17 Proposed Data Centers in ...","url":"https://www.wweek.com/news/courts/2026/06/23/opponents-sue-to-block-17-proposed-data-centers-in-hillsboro/"},{"title":"Data Center Water Use in Hillsboro | News & ...","url":"https://www.hillsboro-oregon.gov/Home/Components/News/News/17350/"},{"title":"Lawsuit filed against Hillsboro, Washington County over ...","url":"https://katu.com/news/local/lawsuit-filed-against-hillsboro-washington-county-over-data-center-tax-breaks-billionaire-environment-company-fortune-500-oregon-portland-salem-politics-business-jobs-water-privacy"},{"title":"STACK Opens New Hillsboro Data Center Campus","url":"https://www.stackinfra.com/about/news-press/press-releases/stack-infrastructure-continues-its-u-s-expansion-with-the-groundbreaking-of-latest-hillsboro-campus/"},{"title":"Data centers disrupting neighborhoods with noise and ...","url":"https://www.facebook.com/ScienceNaturePage/posts/across-the-united-states-data-centers-are-transforming-peaceful-neighborhoods-in/1552446523002878/"}],"runId":"srun_c0e944bd89584b54a5e88f3cd8fdb696","classifiedAt":"2026-07-02T22:55:50.064Z"},"160":{"community_note":"Hillsboro residents and advocacy groups (notably 1000 Friends of Oregon) are pushing back over tax deals and growth impacts; a lawsuit was filed and the city is considering a pause/stricter review of stand‑alone data centers.","water_impact":"low","ai_evidence":"POR01B is marketed as a 36MW expansion on the POR01 campus and STACK promotes AI-ready capabilities, but there is no confirmed GPU tenant or AI deployment tied to POR01B.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No POR01B-specific gallons/day found; Hillsboro reports most data centers use closed-loop cooling and draw from regional supplies, with data centers representing a small share of total city demand and discharging to the sanitary sewer.","grid_note":"Planned load is 36MW; PGE targets roughly 80MW of new Hillsboro data‑center load coming online soon, with rising system demand and cost‑allocation disputes driving grid upgrade planning.","citations":[{"title":"Hillsboro residents push back on 'data center explosion'","url":"https://www.opb.org/article/2026/06/03/data-center-hillsboro-residents-city-council-meeting/"},{"title":"Community lawsuit filed by 1000 Friends of Oregon and ...","url":"https://friends.org/news/2026/6/1000-friends-sue-hillsboro"},{"title":"Hillsboro considers 'pause' on new data centers amid ...","url":"https://www.oregonlive.com/silicon-forest/2026/06/hillsboro-considers-pause-on-new-data-centers-amid-uproar-over-unchecked-tax-breaks.html"},{"title":"Data Center Water Use in Hillsboro | News & ...","url":"https://www.hillsboro-oregon.gov/Home/Components/News/News/17350/"},{"title":"POR01","url":"https://www.stackinfra.com/locations/americas/portland/por01/"}],"runId":"srun_c0e944bd89584b546040a96fa07579a7","classifiedAt":"2026-07-02T22:55:50.064Z"},"163":{"community_note":"Residents and advocacy groups (including 1000 Friends of Oregon, the Oregon Education Association, and a Hillsboro city councilor) are actively opposing Hillsboro data centers over land/power use and tax abatements, with the city investigating a moratorium and a lawsuit filed over enterprise-zone tax breaks.","water_impact":"low","ai_evidence":"No credible public evidence ties Hillsboro 1 DC1 to AI training clusters or AI inference tenants; campus AI activity cited publicly is linked to another building (Hillsboro-5), while DC1 is presented as standard colocation.","grid_impact":"high","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"QTS indicates a water-free, closed-loop cooling design—claiming savings of more than 48 million gallons annually per data center—with the city noting closed-loop systems used for data centers in Hillsboro.","grid_note":"Approx. 24 MW facility on PGE’s system; PGE has proposed a 29% rate increase for large-load customers like data centers.","citations":[{"title":"Hillsboro will investigate data center moratorium after ...","url":"https://www.oregonlive.com/silicon-forest/2026/06/hillsboro-will-investigate-data-center-moratorium-after-residents-outcry.html"},{"title":"Hillsboro data center fight heads to court","url":"https://www.opb.org/article/2026/06/23/hillsboro-data-center-fight-heads-to-court/"},{"title":"Lawsuit filed against Hillsboro, Washington County over ...","url":"https://katu.com/news/local/lawsuit-filed-against-hillsboro-washington-county-over-data-center-tax-breaks-billionaire-environment-company-fortune-500-oregon-portland-salem-politics-business-jobs-water-privacy"},{"title":"Hillsboro Data Center Protest Shows Growing Unrest Over ...","url":"https://hillsboroherald.com/hillsboro-data-center-protest-shows-growing-unrest-over-millions-of-tax-giveaways/"},{"title":"Data Center Water Use in Hillsboro | News & ...","url":"https://www.hillsboro-oregon.gov/Home/Components/News/News/17350/"}],"runId":"srun_c0e944bd89584b541a98c39ec9216bb0","classifiedAt":"2026-07-02T22:55:50.064Z"},"164":{"community_note":"Active opposition: advocacy groups (1000 Friends of Oregon, Oregon Education Association) sued Hillsboro/Washington County over data-center tax breaks, with QTS named among affected companies, and the city is probing a moratorium after resident outcry [1][2][3][4].","water_impact":"low","ai_evidence":"No public evidence of GPU superclusters or AI‑specific tenants for DC1; QTS promotes Hillsboro 2 as a 180 MW+ campus for rapid large‑scale deployments, and industry research notes a hyperscale tenant in QTS’s Hillsboro entry [5][6].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No DC1 gallons/day reported; city data show all data centers used about 1.76% of Hillsboro’s 2025 water demand, and QTS’s Hillsboro facility was reported to use a zero‑water cooling system [7][8].","grid_note":"On PGE’s system, data‑center rates are slated to rise ~29% and a >20 MW large‑load tariff now applies, while PGE’s Hillsboro Reliability Project brings transmission capacity to new data centers [9][10][11].","citations":[{"title":"Hillsboro data center fight heads to court","url":"https://www.opb.org/article/2026/06/23/hillsboro-data-center-fight-heads-to-court/"},{"title":"Community lawsuit filed by 1000 Friends of Oregon and ...","url":"https://friends.org/news/2026/6/1000-friends-sue-hillsboro"},{"title":"Lawsuit filed against Hillsboro, Washington County over ...","url":"https://katu.com/news/local/lawsuit-filed-against-hillsboro-washington-county-over-data-center-tax-breaks-billionaire-environment-company-fortune-500-oregon-portland-salem-politics-business-jobs-water-privacy"},{"title":"Hillsboro will investigate data center moratorium after ...","url":"https://www.oregonlive.com/silicon-forest/2026/06/hillsboro-will-investigate-data-center-moratorium-after-residents-outcry.html"},{"title":"Data Center Water Use in Hillsboro | News & ...","url":"https://www.hillsboro-oregon.gov/Home/Components/News/News/17350/"}],"runId":"srun_c0e944bd89584b54d4f0ddc12c6392d5","classifiedAt":"2026-07-02T22:55:50.064Z"},"165":{"community_note":"Active Hillsboro-wide opposition: 1000 Friends of Oregon and partners sued over enterprise-zone data center approvals while a city councilor launched a petition for a temporary moratorium; opposition targets city incentive approvals broadly, not a single operator.","water_impact":"low","ai_evidence":"No public evidence confirms an AI tenant or GPU supercluster at PDX-01; Aligned highlights support for air, liquid, or hybrid cooling and high-density deployments, and is an NVIDIA DGX-Ready partner—indicating AI-capable infrastructure but not verified AI workloads.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No PDX-01 gallons/day reported; Hillsboro says data centers accounted for about 1.76% of 2025 city water demand (6.3 billion gallons total), and the site employs air-cooled chillers.","grid_note":"72 MW first building on a 108 MW campus with a 31 MW/62 MWh BESS to accelerate interconnection, amid PGE’s higher rates for data centers (e.g., a proposed 29% increase).","citations":[{"title":"Community lawsuit filed by 1000 Friends of Oregon and ...","url":"https://friends.org/news/2026/6/1000-friends-sue-hillsboro"},{"title":"Hillsboro data center fight heads to court","url":"https://www.opb.org/article/2026/06/23/hillsboro-data-center-fight-heads-to-court/"},{"title":"In Hillsboro, petition seeks pause on new data centers ...","url":"https://katu.com/news/local/hillsboro-petition-seeks-pause-data-centers-amid-energy-and-farmland-concerns-washington-county-oregon-city-councilor-kipperlyn-sinclair-jacob-roloff-tammy-carpenter-illsboro-herald-editor-dirk-knudsen-tualatin-riverkeepers-pge"},{"title":"Data Center Water Use in Hillsboro | News & ...","url":"https://www.hillsboro-oregon.gov/Home/Components/News/News/17350/"},{"title":"Data Centers and Water Use in Hillsboro","url":"https://apps.oregonlegislature.gov/liz/2026R1/Downloads/PublicTestimonyDocument/251667"}],"runId":"srun_c0e944bd89584b548f48f870a41376ba","classifiedAt":"2026-07-02T22:55:50.064Z"},"192":{"community_note":"No SV12x-specific lawsuit or organized opposition was found; residents and advocates in San José have raised health/environmental and fast‑track concerns about data centers citywide, while SV12x is already live [1][2].","water_impact":"unknown","ai_evidence":"SV12x is Equinix’s first U.S. xScale hyperscale facility via a JV with PGIM, expected to provide more than 28 MW and launched in January 2026 [1][2]; Equinix markets “AI‑ready hyperscale capacity,” but no public reporting in the set names an AI tenant or GPU supercluster at SV12x [3].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No SV12x-specific gallons/day, WUE, water source, aquifer/drought, or discharge figure was found in the provided materials; city environmental review exists but the quoted excerpts do not quantify water use [1][2].","grid_note":"PG&E officially powered SV12x as the first of a dozen large‑load customers; the JV expects >28 MW at SV12x; and San José/PG&E plan for nearly 2 GW of new demand with PG&E estimating 1–2% bill reductions per 1 GW [1][2][3].","citations":[{"title":"New San Jose data center goes live under PG&E partnership","url":"https://www.nbcbayarea.com/news/local/san-jose-data-center-pge-partnership/4018067/"},{"title":"Advocates worry San Jose will fast track data centers","url":"https://x.com/SJSpotlight/status/2065823649689641384"},{"title":"Advocates worry San Jose will fast track data centers","url":"https://sanjosespotlight.com/advocates-worry-san-jose-will-fast-track-data-centers/"},{"title":"Equinix Data Centers (SV-12, SV-13, & SV-14)","url":"https://www.sanjoseca.gov/your-government/departments-offices/planning-building-code-enforcement/planning-division/environmental-planning/environmental-review/negative-declaration-initial-studies/equinix-data-centers-sv-12-sv-13-sv-14"},{"title":"SV12x","url":"https://www.equinix.com/data-centers/americas-colocation/united-states-colocation/silicon-valley-data-centers/sv12x"}],"runId":"srun_c0e944bd89584b5449a112a3ac6933fb","classifiedAt":"2026-07-02T22:55:50.064Z"},"199":{"community_note":"Planning-stage opposition surfaced when Santa Clara’s Planning Commission delayed SV9 over cumulative data-center growth and related impacts, but the project was approved in 2022 and proceeded to launch; no active lawsuit or organized opposition is evident [1][2].","water_impact":"low","ai_evidence":"SV9 is described as an AI-ready facility certified in the NVIDIA DGX-Ready Data Center program, and it offers native AWS 400G Direct Connect positioned for ML and LLM training workloads; no public evidence of a specific GPU supercluster tenant was found [5][6].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Projected cooling water use was cut from about 370 million gallons/year to roughly 2 million gallons/year; no site-specific source stress or discharge issues were reported [3][4].","grid_note":"34 MW IT load with a new onsite Silicon Valley Power substation; no evidence of SV9-specific rate impacts, curtailment, or new generation requirements [7].","citations":[{"title":"City planning decision on CoreSite SV9 Santa Clara ...","url":"https://www.datacenterdynamics.com/en/news/city-planning-decision-on-coresite-sv9-santa-clara-data-center-pushed-back/"},{"title":"CoreSite gains construction approval for 34MW SV9 ...","url":"https://www.datacenterdynamics.com/en/news/coresite-gains-construction-approval-for-34mw-sv9-data-center-in-silicon-valley/"},{"title":"CoreSite SV9 Data Center","url":"https://www.corgan.com/projects/coresite-sv9-data-center"},{"title":"Silicon Valley data centers keep information flowing","url":"https://www.bizjournals.com/sanjose/news/2024/05/17/silicon-valley-data-centers-ai-flow.html"},{"title":"CoreSite Expands Silicon Valley Campus with Completion ...","url":"https://www.coresite.com/news/coresite-expands-silicon-valley-campus-with-completion-of-228000-square-foot-ai-ready-data-center"}],"runId":"srun_c0e944bd89584b5403f92cd2ac9e2d9c","classifiedAt":"2026-07-02T22:55:50.064Z"},"212":{"community_note":"No facility-specific opposition was found for Vantage CA2; citywide, Santa Clara leaders and residents have raised concerns over data centers’ land, electricity, water use and diesel generators, so the status is broader local concern rather than an active CA2 dispute.","water_impact":"low","ai_evidence":"Vantage says its facilities are “purpose-built to power and cool high-density GPU clusters for applications such as machine learning and AI,” via the NVIDIA DGX-Ready program [2], while the CA2 campus itself is described as a 9-acre, three-building, 75MW hyperscale site [1].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day figure was found for CA2; project materials state “A highly efficient chilled water system utilizes minimal water for maximum cooling,” and the utility notes some data centers use water while encouraging efficient solutions.","grid_note":"CA2 is a 75 MW IT-load campus served by Silicon Valley Power; Santa Clara has ‘hit max energy capacity’ for new data centers and SVP is pursuing a $459 million expansion program designed to double electric load capacity.","citations":[{"title":"As data centers multiply, Santa Clara leaders, residents ...","url":"https://localnewsmatters.org/2025/06/04/as-data-centers-multiply-santa-clara-leaders-residents-question-its-environmental-impacts/"},{"title":"Vantage Data Centers CA2 Campus","url":"https://www.dpr.com/projects/vantage-ca2-data-center-campus"},{"title":"Data Centers in Santa Clara","url":"https://www.siliconvalleypower.com/businesses/data-centers-in-santa-clara"},{"title":"Santa Clara II (SC2) - AI infrastructure intelligence","url":"https://mlq.ai/data-centers/usa/california/santa-clara/vantage-sc2-santaclara/"},{"title":"Vantage Data Centers Joins NVIDIA DGX-Ready ...","url":"https://vantage-dc.com/news/vantage-data-centers-joins-nvidia-dgx-ready-data-center-colocation-program/"}],"runId":"srun_c0e944bd89584b54be514705679dd4a1","classifiedAt":"2026-07-02T22:55:50.367Z"},"213":{"community_note":"No CA21-specific organized opposition or litigation surfaced; the McLaren/Vantage project at 651/725/825 Mathew received a CEQA Notice of Determination, and a 2024 Authority to Construct added diesel backup generators with a no-significant-effect finding, while the City held a general study session on data centers [1][2][3].","water_impact":"unknown","ai_evidence":"Vantage lists CA21 at 825 Mathew Street as a hyperscale data center but does not disclose an AI tenant or GPU supercluster for this site [4][5]. Company-wide, Vantage touts DGX-Ready capabilities for “high-density GPU clusters… for machine learning and AI,” which is not site-specific [9].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No CA21-specific daily water-use figure or discharge details were found in public materials reviewed.","grid_note":"SVP notes data centers require 24/7 power and drive system upgrades, with ~60 data centers in the city and expectations that data-center load will almost double by 2035; the CA2 campus serves large hyperscale loads [5][6][7][8].","citations":[{"title":"McLaren Data Center Project - CEQAnet - CA.gov","url":"https://ceqanet.lci.ca.gov/2018062057/4"},{"title":"ORIGINAL","url":"https://ceqanet.lci.ca.gov/2018062057/6/Attachment/uIFd--"},{"title":"Joint Study Session with Planning Commission and City ...","url":"https://content.govdelivery.com/accounts/CASANTACLARA/bulletins/3e11100"},{"title":"Vantage Data Centers CA21 | 825 Mathew Street, Northern ...","url":"https://datacenterhawk.com/marketplace/providers/vantage-data-centers/825-mathew-street/ca21"},{"title":"Santa Clara III, California Data Center","url":"https://vantage-dc.com/data-center/santa-clara-iii-california/"}],"runId":"srun_c0e944bd89584b5478a961b4b38db8fe","classifiedAt":"2026-07-02T22:59:23.910Z"},"214":{"community_note":"BAAQMD objected to diesel backup emissions during the CEC SPPE review; the case proceeded through hearings/public comment in 2022 and no ongoing litigation is evident.","water_impact":"low","ai_evidence":"No CA3-specific AI tenants or GPU superclusters are disclosed; CA3 is a 64 MW hyperscale build, and Vantage’s DGX-Ready messaging is generic rather than site-specific.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Closed-loop chilled-water cooling with free cooling and virtually zero WUE; no CA3-specific gallons/day, source-stress, or discharge data found.","grid_note":"64 MW IT load on SVP, whose peak is ~740 MW and projected ~1,300 MW, with a $459M expansion to double capacity underway.","citations":[{"title":"Bay Area Air Quality Management District Comments on ...","url":"https://efiling.energy.ca.gov/GetDocument.aspx?tn=242229"},{"title":"CA3 Backup Generating Facility - California Energy Commission","url":"https://www.energy.ca.gov/powerplant/backup-generating-system/ca3-backup-generating-facility"},{"title":"California Energy Commission : Docket Log - CA.gov","url":"https://efiling.energy.ca.gov/Lists/DocketLog.aspx?docketnumber=21-SPPE-01"},{"title":"Cooling","url":"https://vantage-dc.com/features/cooling/"},{"title":"Santa Clara III, California Data Center","url":"https://vantage-dc.com/data-center/santa-clara-iii-california/"}],"runId":"srun_c0e944bd89584b5433017be7946a883f","classifiedAt":"2026-07-02T22:55:50.367Z"},"215":{"community_note":"No organized QTS Santa Clara I–specific opposition found; elsewhere in Santa Clara, officials and residents have challenged other data center projects (GI Partners’ 72MW denied; Bowers approved over Planning objection; 1231 Comstock denied then appealed).","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No gallons/day reported; operator cites closed-loop cooling that “does not consume water” once operational, and Santa Clara supplies/mandates recycled water for applicable non‑potable uses where feasible.","grid_note":"Listed at 7.5MW critical power and located in a city where the utility is planning a $400 million transmission-capacity expansion.","citations":[{"title":"Santa Clara planning officials deny GI Partner's 72MW data ...","url":"https://www.datacenterdynamics.com/en/news/santa-clara-planning-officials-deny-gi-partners-72mw-data-center-proposals/"},{"title":"Council Approves Data Center In Spite of Planning ...","url":"https://www.svvoice.com/council-approves-data-center-in-spite-of-planning-commission-objection/"},{"title":"1231 Comstock - Data Center | Projects Listing","url":"https://www.santaclaraca.gov/Home/Components/BusinessDirectory/BusinessDirectory/525/2495"},{"title":"Environmental Stewardship","url":"https://q.com/the-qts-difference/environmental-stewardship/"},{"title":"Santa Clara Valley Water District - File #: 25-0434","url":"https://scvwd.legistar.com/LegislationDetail.aspx?ID=7405457&GUID=9DDD4486-D46A-462F-9025-96C2E72A67E9&FullText=1"}],"runId":"srun_c0e944bd89584b54ed599616e318cb18","classifiedAt":"2026-07-02T22:55:50.367Z"},"216":{"community_note":"No QTS Santa Clara II–specific lawsuit or organized opposition was found; however, Santa Clara residents and environmental groups have raised broader concerns over data centers’ power, water use, and diesel backup emissions—via a local petition and an April 2026 petition to regional air regulators—so advocacy is ongoing without facility-specific litigation.","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"QTS indicates closed-loop, water-free cooling designs, with no published gallons/day or site-specific drought/aquifer or discharge issues reported for Santa Clara II.","grid_note":"At 2.5 MW, the site is small relative to Silicon Valley Power’s citywide load; SVP says data centers require planning for system upgrades and load growth and expects data-center demand to nearly double by 2035.","citations":[{"title":"Santa Clara data centers hit max energy capacity","url":"https://sanjosespotlight.com/santa-clara-data-centers-hit-max-energy-capacity/"},{"title":"California Agency Urged to Protect Public Health ...","url":"https://biologicaldiversity.org/w/news/press-releases/california-agency-urged-to-protect-public-health-environment-from-data-center-diesel-generators-2026-04-22/"},{"title":"Revitalize Santa Clara for People, Not (large and intrustive) ...","url":"https://www.change.org/p/revitalize-santa-clara-for-people-not-large-and-intrustive-data-centers"},{"title":"Environmental Stewardship","url":"https://q.com/the-qts-difference/environmental-stewardship/"},{"title":"Pioneering Water Efficiency and Sustainability in Data ...","url":"https://q.com/resources/pioneering-water-efficiency-and-sustainability-in-data-center-operations/"}],"runId":"srun_c0e944bd89584b54a7b1b039f872c4ad","classifiedAt":"2026-07-02T22:55:50.367Z"},"217":{"community_note":"No SVY01A-specific campaign was found; citywide, advocates have raised concerns about energy, water, and diesel emissions while San Jose advances uniform data-center standards.","water_impact":"moderate","ai_evidence":"Listings and operator pages describe a 9.3 MW colocation/wholesale site at 2001 Fortune Drive, with no disclosed GPU clusters or AI tenant announcements for SVY01A.","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No gallons/day disclosed; site uses water-based cooling—DPR reported 5 high-efficiency cooling towers providing 3,500 tons of capacity, and listings place the 9.3 MW facility at 2001 Fortune Drive with dual PG&E feeds.","grid_note":"Approx. 9.3 MW with dual PG&E distribution feeds at 2001 Fortune Drive; the SVY01 campus is 100 MW with a 60 MW expansion underway, while reporting warns San Jose’s data-center buildout could nearly triple peak demand and shift upgrade costs to customers.","citations":[{"title":"Data Center and other Large Energy-Use Projects","url":"https://www.sanjoseca.gov/your-government/departments-offices/planning-building-code-enforcement/planning-division/data-center-and-other-large-energy-use-projects"},{"title":"Advocates worry San Jose will fast track data centers","url":"https://sanjosespotlight.com/advocates-worry-san-jose-will-fast-track-data-centers/"},{"title":"ENGINEERING EVALUATION","url":"https://www.baaqmd.gov/~/media/files/engineering/public-notices/2024/696975/fid22974_nsr_696975_eval_112224-pdf.pdf?rev=a74c9a0a06784f86aba263811c1e2079&sc_lang=en"},{"title":"Fortune Data Centers Commences Operations of New…","url":"https://www.dpr.com/media/press-releases/fortune-data-centers-commences-operations-in-silicon-valley"},{"title":"San Jose Data Center - Fortune","url":"https://cloudandcolocation.com/datacenters/fortune-data-centers-san-jose-data-center/"}],"runId":"srun_c0e944bd89584b546209ca8877690bb2","classifiedAt":"2026-07-02T22:55:50.367Z"},"218":{"community_note":"Coverage flagged potential demolition of the historic Memorex headquarters at 1200 Memorex Dr; no lawsuits or moratoria were found after approvals [1].","water_impact":"low","ai_evidence":"SVY02 is marketed as a 48 MW facility with an onsite substation, and STACK is in the NVIDIA DGX‑Ready program for AI deployments, but no public tenant or GPU cluster has been announced for SVY02A [1][2].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day are disclosed; the site specifies closed-loop water cooling with N+1 345‑ton air‑cooled chillers, and Santa Clara requires recycled water for non‑potable uses where available [1][2].","grid_note":"In SVP territory, where “data centers require significant power,” the utility emphasizes efficiency and cooling innovations as it manages growing demand [1].","citations":[{"title":"Skybox Development data center in Santa Clara could ...","url":"https://www.datacenterdynamics.com/en/news/skybox-development-facility-in-santa-clara-could-demolish-historic-memorex-headquarters/"},{"title":"Stack Infrastructure: SVY02A Data Center","url":"https://www.datacenters.com/stack-infrastructure-svy02a"},{"title":"City of Santa Clara 2022 Climate Action Plan Compliance ...","url":"https://www.santaclaraca.gov/home/showpublisheddocument/89667/639161709542970000"},{"title":"SVY02","url":"https://www.stackinfra.com/locations/americas/silicon-valley/svy02/"},{"title":"STACK Offers AI Hosting with NVIDIA DGX Program","url":"https://www.stackinfra.com/about/news-press/press-releases/stack-infrastructure-provides-a-path-for-customers-to-leverage-ai-in-the-data-center-with-the-nvidia-dgx-ready-program/"}],"runId":"srun_c0e944bd89584b541c61e55bf445d523","classifiedAt":"2026-07-02T22:55:50.367Z"},"222":{"community_note":"","water_impact":"low","ai_evidence":"Cerebras’ Andromeda AI supercomputer is “deployed in Santa Clara, California, in 16 racks at Colovore” for LLM training [1]; Colovore markets “ultra-high-density, liquid-cooled” 5–600+ kW racks for AI workloads [2], with Andromeda comprising 16 CS‑2 systems and 13.5 million AI‑optimized cores [3].","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"Colovore says the building uses recycled water as its primary water supply and achieved a 41.2% reduction in water use; no specific gallons/day or discharge/drought issues are publicly reported [1].","grid_note":"SVP says data center load is already its largest and may almost double by 2035—pursuing geothermal and batteries—while under its cost‑of‑service model data centers pay for infrastructure to directly connect them [1][2].","citations":[{"title":"Data Centers in Santa Clara","url":"https://www.siliconvalleypower.com/businesses/data-centers-in-santa-clara"},{"title":"Integrated Resource Plan","url":"https://www.siliconvalleypower.com/svp-and-community/about-svp/integrated-resource-plan"},{"title":"News Release: Silicon Valley Power and Emerald AI ...","url":"https://www.siliconvalleypower.com/Home/Components/News/News/45589/6271?backlist=%2F"},{"title":"Silicon Valley Power says data center load to double by ...","url":"https://www.datacenterdynamics.com/en/news/silicon-valley-power-says-data-center-load-to-double-by-2035-will-need-geothermal-power-and-batteries/"},{"title":"Power Demand Forecasts Revised Up","url":"https://gridstrategiesllc.com/wp-content/uploads/Grid-Strategies-National-Load-Growth-Report-2025.pdf"}],"runId":"srun_c0e944bd89584b54d6b9ff2a73e3a954","classifiedAt":"2026-07-02T23:02:25.582Z"},"223":{"community_note":"","water_impact":"low","ai_evidence":"Colovore states the site is “Validated for NVIDIA DGX systems and engineered for modern AI workloads. Our ultra-high-density, liquid-cooled architecture supports demanding GPU clusters” [1], and announced a “9‑megawatt facility in Santa Clara that will be optimized to host liquid‑cooled artificial intelligence (AI) workloads” [2] at 3060 Raymond Street [3].","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"Closed‑loop, air‑cooled chillers require little to no water after initial fill; annual potable demand is reported as ~571,000 gallons/year (also cited as ~384 HCF/0.88 AF/year), with wastewater sent to the San José–Santa Clara Regional Wastewater Facility [1].","grid_note":"9MW facility at 3060 Raymond is dual‑fed by Silicon Valley Power; SVP says 53% of its power use/sales are from data centers and expects data‑center load to almost double by 2035 [1][2][3].","citations":[{"title":"3060 Raymond Street - Data Center | Projects Listing","url":"https://www.santaclaraca.gov/Home/Components/BusinessDirectory/BusinessDirectory/461/2495?npage=3"},{"title":"3060 Raymond Street Data Center","url":"https://files.ceqanet.lci.ca.gov/286028-1/attachment/A4G4-RZy-2RJofrDvyjtrnsbDaXq_gsM0rNeV-cpJXIjoJPQFrU5Zmd2AYrCIXa08LkOcFIYHwV2qyZj0"},{"title":"3060 Raymond Street Data Center","url":"https://files.ceqanet.lci.ca.gov/286028-1/attachment/A4G4-RZy-2RJofrDvyjtrnsbDaXq_gsM0rNeV-cpJXIjoJPQFrU5Zmd2AYrCIXa08LkOcFIYHwV2qyZj0"},{"title":"Data Centers","url":"https://www.colovore.com/data-center"},{"title":"Colovore Building New Data Center for Extreme Density AI ...","url":"https://www.colovore.com/news/colovore-building-new-data-center-for-extreme-density-ai-workloads"}],"runId":"srun_c0e944bd89584b54911219fdf814bae9","classifiedAt":"2026-07-02T22:55:50.367Z"},"228":{"community_note":"No EdgeCore-specific opposition found; area groups petitioned BAAQMD over diesel generator air pollution in Santa Clara and SVP’s NRS–KRS 115‑kV transmission project has community proceedings, but neither names this campus specifically.","water_impact":"low","ai_evidence":"EdgeCore says it develops and operates high‑density, single‑tenant data centers “exclusively for the world’s largest cloud and AI companies,” and the Santa Clara campus delivers 72 MW across a hyperscale footprint; no named GPU cluster tenants are disclosed.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Air-cooled (with closed-loop chilled water), and no public gallons/day, source, or discharge issues found for this campus.","grid_note":"72 MW IT load; SVP is advancing a new 115‑kV transmission line in Santa Clara, notes data centers are ~55% of utility load, and emphasizes protecting ratepayers under a cost‑of‑service model.","citations":[{"title":"California Agency Urged to Protect Public Health ...","url":"https://biologicaldiversity.org/w/news/press-releases/california-agency-urged-to-protect-public-health-environment-from-data-center-diesel-generators-2026-04-22/"},{"title":"Join Us for a Community Meeting to Discuss SVP's New ...","url":"https://www.santaclaraca.gov/Home/Components/News/News/45051/"},{"title":"EdgeCore Internet Real Estate Silicon Valley","url":"https://inflect.com/building/2201-laurelwood-road-santa-clara/edgecore/datacenter/silicon-valley"},{"title":"Responsibility: Community, Safety & Sustainability","url":"https://edgecore.com/responsibility"},{"title":"EdgeCore: High Density Data Center Solutions","url":"https://edgecore.com/"}],"runId":"srun_c0e944bd89584b544b6a344c86f2c1e6","classifiedAt":"2026-07-02T22:55:50.367Z"},"229":{"community_note":"Santa Clara Citizens for Sensible Industry appealed the CEQA/MND approvals for the 1111 Comstock data center, but the Santa Clara Planning Commission denied the appeal in January 2021.","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"No facility-specific gallons/day were reported for SJC02; Prime markets hybrid and closed‑loop cooling, and no site‑specific drought/aquifer or discharge issues were documented in sources reviewed.","grid_note":"9 MW facility at 1111 Comstock served by Silicon Valley Power within Santa Clara’s large data center cluster; no project‑specific grid upgrades or rate actions for SJC02 were found.","citations":[{"title":"Planning Commission Approves Another Data Center ...","url":"https://www.svvoice.com/planning-commission-approves-another-data-center-questions-future-of-data-center-projects/"},{"title":"Legislative Public Meetings","url":"https://santaclara.legistar.com/LegislationDetail.aspx?ID=4836599&GUID=6A205FD5-50BE-4362-8D79-413C3AB1BF34&Options=&Search="},{"title":"ADAMS BROADWELL JOSEPH & CARDOZO","url":"https://phonyuniontreehuggers.com/wp-content/uploads/2021/03/2021-02-02-Santa-Clara-Citizens-for-Sensible-lndustry-aka-California-Unions-for-Reliable-Energy-CURE-1111-Comstock-Data-Center-City-of-Santa-Clara-Letter.pdf"},{"title":"AI Solutions","url":"https://primedatacenters.com/ai/"},{"title":"Prime Data Centers uses closed-loop air and liquid cooling ...","url":"https://www.facilitiesdive.com/news/prime-data-centers-uses-closed-loop-air-and-liquid-cooling-to-earn-energy-s/810432/"}],"runId":"srun_c0e944bd89584b5405c24e1f94ec7b57","classifiedAt":"2026-07-02T22:55:50.367Z"},"230":{"community_note":"Santa Clara Citizens for Sensible Industry/CURE filed 2019 CEQA comments challenging the MND for 2175 Martin Ave over environmental analyses; broader city pushback exists, but no active SJC03-specific lawsuit was found.","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No SJC03 gallons/day disclosed; Prime cites closed-loop air and liquid cooling, and Santa Clara operates 33 miles of recycled-water pipelines commonly used for cooling.","grid_note":"Approx. 9 MW critical capacity; in SVP’s system, data centers account for roughly 55% of load and SVP notes data centers pay for direct interconnection/infrastructure.","citations":[{"title":"ADAMS BROADWELL JOSEPH & CARDOZO","url":"https://phonyuniontreehuggers.com/wp-content/uploads/2021/05/2019-08-26-Adams-Broadwell-Joseph-Cardozo-Santa-Clara-Citizens-for-Sensible-Industry-aka-California-Unions-for-Reliable-Energy-CURE-LS1-Data-Center-Project-City-of-Santa-Clara-Letter.pdf"},{"title":"2175 Martin Avenue LS1 Data Center Project (CEQA)","url":"https://www.santaclaraca.gov/Home/Components/BusinessDirectory/BusinessDirectory/339/3650"},{"title":"Council Approves Data Center In Spite of Planning ...","url":"https://www.svvoice.com/council-approves-data-center-in-spite-of-planning-commission-objection/"},{"title":"Silicon Valley Data Centers","url":"https://primedatacenters.com/locations/silicon-valley/"},{"title":"Recycled Water Service | City of Santa Clara","url":"https://www.santaclaraca.gov/our-city/departments-g-z/water-sewer-utilities/recycled-water-utility"}],"runId":"srun_c0e944bd89584b54c01a68ee61650ee0","classifiedAt":"2026-07-02T22:55:50.367Z"},"231":{"community_note":"Planning Commission rejection was overturned by the Santa Clara City Council, indicating some pushback but approval is in place and no lawsuit was found.","water_impact":"low","ai_evidence":"No SJC04-specific AI tenant or GPU cluster has been announced; marketing notes high-density 'like AI' while a separate Prime site (LAX01) hosts Lambda’s GPU cluster.","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No gallons/day disclosed; a development summary cites 'Near-zero Water Usage Effectiveness,' and no water-source stress or discharge issues were reported.","grid_note":"Approx. 9 MW critical capacity at 1231 Comstock, in an SVP system where data centers account for about 55% of load and where SVP uses a cost-of-service model with data centers paying for interconnection infrastructure.","citations":[{"title":"Another Data Center Coming To Santa Clara","url":"https://www.svvoice.com/another-data-center-coming-to-santa-clara/"},{"title":"1231 Comstock - Data Center (CEQA) | CEQA Archive","url":"https://www.santaclaraca.gov/Home/Components/BusinessDirectory/BusinessDirectory/535/3650"},{"title":"Data Center - Comstock, Santa Clara - California Development","url":"https://california-development.com/data-center-comstock-santa-clara/"},{"title":"Prime Santa Clara SJC04 - 1231 Comstock St","url":"https://www.datacentermap.com/usa/california/santa-clara/prime-santa-clara-2/"},{"title":"Lambda to deploy GPU cluster at Prime's LAX01 ...","url":"https://www.datacenterdynamics.com/en/news/lambda-to-deploy-gpu-cluster-at-primes-lax01-data-center-in-california/"}],"runId":"srun_c0e944bd89584b547a7282b10c781d25","classifiedAt":"2026-07-02T22:55:50.367Z"},"232":{"community_note":"No organized opposition specific to 6580 Via del Oro was found; advocacy concerns focus on San Jose potentially fast‑tracking data centers citywide, with no site-specific action reported.","water_impact":"moderate","ai_evidence":"No SJC06 announcements of GPU clusters or AI tenants were found; Prime’s AI partnership and media coverage point to Lambda’s GPU deployment at LAX01 in Southern California, not San Jose.","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"Uses close‑coupled evaporative cooling that relies on recycled water; no gallons/day or discharge details reported.","grid_note":"10 MW facility; San José and PG&E agreed to increase grid capacity by nearly 2 GW for planned/proposed data centers; no site‑specific upgrades or rate cases found.","citations":[{"title":"Advocates worry San Jose will fast track data centers","url":"https://sanjosespotlight.com/advocates-worry-san-jose-will-fast-track-data-centers/"},{"title":"RICloud: 6580 Via del Oro Data Center","url":"https://baxtel.com/data-center/ricloud-6580-via-del-oro"},{"title":"SJC-01 - Prime Data Centers","url":"https://www.ocolo.io/colocation/prime-data-centers/sjc-01/"},{"title":"Silicon Valley Data Centers","url":"https://primedatacenters.com/locations/silicon-valley/"},{"title":"Prime Data Centers and Lambda Partner to Power the Next ...","url":"https://primedatacenters.com/news/prime-data-centers-and-lambda-partner-to-power-the-next-era-of-superintelligence-with-ai-optimized-infrastructure-in-southern-california/"}],"runId":"srun_c0e944bd89584b5434ca9d0021534b2a","classifiedAt":"2026-07-02T22:55:50.367Z"},"233":{"community_note":"Santa Clara leaders and residents have raised concerns about environmental impacts of the city’s growing data center cluster, but no organized opposition specific to this AWS site has been identified.","water_impact":"moderate","ai_evidence":"A third-party directory lists the campus as an AWS-operated facility and has referenced AI-capable instances, but no site-specific AWS announcement confirms dedicated AI training or inference clusters at this address.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Evaporative cooling is expected to rely on recycled/treated wastewater in Santa Clara, but no gallons/day are disclosed for this site.","grid_note":"SVP is building a dedicated 60kV substation for this AWS facility and the project is on the CEC’s backup‑generating system docket, while SVP flags AI‑driven load growth and ratepayer protections.","citations":[{"title":"Silicon Valley Power to build 60kV substation for Amazon ...","url":"https://www.datacenterdynamics.com/en/news/silicon-valley-power-to-build-60kv-substation-for-amazon-web-services-data-center-in-santa-clara/"},{"title":"Mission College Data Center | California Energy Commission","url":"https://www.energy.ca.gov/powerplant/backup-generating-system/mission-college-data-center"},{"title":"Amazon 2305 Mission College Blvd Data Center","url":"https://baxtel.com/data-center/amazon-2305-mission-college-blvd"},{"title":"2305 Mission College Blvd Data Center Project","url":"https://www.santaclaraca.gov/Home/Components/BusinessDirectory/BusinessDirectory/382/2495"},{"title":"AWS Mission College DC - Building 1 — Santa Clara ...","url":"https://cleanview.co/data-centers/california/1341/santa-clara-sv-campus"}],"runId":"srun_c0e944bd89584b54ef22b7d3580961eb","classifiedAt":"2026-07-02T22:55:50.367Z"},"234":{"community_note":"No organized opposition specific to 960 Central Expressway was found; the CEQAnet entry lists the project and scope but shows no active litigation or zoning fight [1].","water_impact":"moderate","ai_evidence":"Reporting confirms Amazon acquired the 960 Central Expressway site, but no site-specific AI-training or AI-inference deployments have been disclosed; a facility directory lists it as land-banked rather than active AI [3][4].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"City WSA scenario for 960 Central indicates roughly 490 AFY proposed demand with a net increase of about 364 AFY, with recycled water planning noted and broader drought/imported-supply risks flagged [2].","grid_note":"SVP reports data centers are already its single largest load and about 55% of usage, with data center demand expected to nearly double by 2035—driving substantial grid upgrades often funded by large customers [5][6][7].","citations":[{"title":"AWS rolls out liquid cooling in data centers","url":"https://www.aboutamazon.com/news/aws/aws-liquid-cooling-data-centers"},{"title":"AWS AI infrastructure with NVIDIA Blackwell: Two powerful ...","url":"https://aws.amazon.com/blogs/machine-learning/aws-ai-infrastructure-with-nvidia-blackwell-two-powerful-compute-solutions-for-the-next-frontier-of-ai/"},{"title":"Amazon acquires factory site in Santa Clara, California - DCD","url":"https://www.datacenterdynamics.com/en/news/amazon-acquires-factory-site-in-santa-clara-california/"},{"title":"Amazon AWS SFO - 960 Central Data Center in Santa Clara","url":"https://www.datacentermap.com/usa/california/santa-clara/amazon-aws-sfo-960-central/"},{"title":"AWS's New Liquid Cooling Solution Rattled the Market— ...","url":"https://www.delloro.com/awss-new-liquid-cooling-solution-rattled-the-market-but-is-it-truly-disruptive/"}],"runId":"srun_c0e944bd89584b54a97ad1a2c51b886c","classifiedAt":"2026-07-02T22:55:50.367Z"},"235":{"community_note":"Citywide advocates and Alviso residents are pushing back on San Jose’s data center expansion over impacts like energy and water use, but no Terra-specific lawsuit or formal opposition has been identified to date.","water_impact":"unknown","ai_evidence":"The developer markets the campus as serving AI workloads, and third-party coverage describes a chilled-water system via absorption chillers compatible with high-density compute cooling needs.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No Terra-specific water volumes or source identified; cooling is planned via absorption chillers that use fuel-cell waste heat to generate chilled water.","grid_note":"Planned on-site natural-gas fuel cells with an energy supply hub suggest a microgrid design to power the campus, with no evidence of required PG&E transmission upgrades to date.","citations":[{"title":"Residents push back against San Jose's data center plans","url":"https://sanjosespotlight.com/residents-push-back-against-san-joses-data-center-plans/"},{"title":"Natural gas-powered data center pitched in San Jose ...","url":"https://www.datacenterdynamics.com/en/news/natural-gas-powered-data-center-pitched-in-san-jose-california/"},{"title":"Near-net-zero data center campus in San Jose | Project","url":"https://www.arcadis.com/en/projects/north-america/united-states/nearing-net-zero/"},{"title":"Terra Green Data Center","url":"https://terradc.com/"},{"title":"Energy Plant + Data Center Proposed at 4701 North First ...","url":"https://sfyimby.com/2025/04/energy-plant-data-center-proposed-at-4701-north-first-street-san-jose.html"}],"runId":"srun_c0e944bd89584b5463d2ec75adc6b4f1","classifiedAt":"2026-07-02T22:55:50.367Z"},"239":{"community_note":"Santa Clara’s Planning Commission voted 4–3 to deny Prime’s 1231 Comstock data center, but on appeal the City Council approved the four‑story project; no lawsuits or organized campaign specific to SJC04 were found [1][2].","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"Air‑cooled chillers are specified and a third‑party brief touts near‑zero WUE/closed‑loop cooling; no gallons/day figure or water‑source stress was disclosed for this site [3][4].","grid_note":"Listed at 9 MW, with SVP noting it plans system upgrades with data centers and operates a cost‑of‑service model where data centers pay for direct‑connection and infrastructure [5][6][7].","citations":[{"title":"1231 Comstock - Data Center | Projects Listing","url":"https://www.santaclaraca.gov/Home/Components/BusinessDirectory/BusinessDirectory/525/2495"},{"title":"Another Data Center Coming To Santa Clara","url":"https://www.svvoice.com/another-data-center-coming-to-santa-clara/"},{"title":"Legislative Public Meetings","url":"https://santaclara.legistar.com/gateway.aspx?m=l&id=/matter.aspx?key=24432"},{"title":"Data Center Proposed at 1231 Comstock Street In Santa ...","url":"https://sfyimby.com/2024/12/data-center-proposed-at-1231-comstock-street-in-santa-clara.html"},{"title":"Data Center - Comstock, Santa Clara - California Development","url":"https://california-development.com/data-center-comstock-santa-clara/"}],"runId":"srun_c0e944bd89584b541e2b06c497c815ee","classifiedAt":"2026-07-02T22:55:50.367Z"},"241":{"community_note":"Residents near the Great Oaks campus raised noise/air-quality concerns and there was a petition to intervene at the CEC, but the project proceeded with no active litigation identified.","water_impact":"unknown","ai_evidence":"Equinix states SV12x will “Support AI and high-density workloads” with next‑gen cooling, it is the first U.S. xScale JV facility, and third‑party listings cite an ultimate 28 MW IT capacity [6][7][8].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No SV12x-specific gallons/day found; the local utility (Great Oaks Water Company) relies on groundwater and established a surcharge for higher groundwater production charges, while Equinix highlights avoiding evaporative cooling in water‑stressed areas [4][5][3].","grid_note":"PG&E added 20 MW at 123 Great Oaks, bringing the site to 40 MW, amid city plans for nearly 2 GW of new data-center load requiring significant grid capacity increases [11][13].","citations":[{"title":"How the Bay Area's AI Boom Is Fueling a Dirty Energy ...","url":"https://www.kqed.org/news/12026604/bay-areas-ai-boom-fuels-a-dirty-energy-dilemma"},{"title":"California Energy Commission : Docket Log - CA.gov","url":"https://efiling.energy.ca.gov/Lists/DocketLog.aspx?docketnumber=20-SPPE-01"},{"title":"A Guide to Responsible Water Use in Data Centers","url":"https://blog.equinix.com/blog/2026/03/19/a-guide-to-responsible-water-use-in-data-centers/"},{"title":"20. GREAT OAKS WATER COMPANY","url":"https://santaclaralafco.org/sites/default/files/service_reviews/2011%20COUNTYWIDE%20WATER%20SERVICE%20REVIEW%20-%20Great%20Oaks%20Water%20Company_0.pdf"},{"title":"SV12x","url":"https://www.equinix.com/data-centers/americas-colocation/united-states-colocation/silicon-valley-data-centers/sv12x"}],"runId":"srun_c0e944bd89584b54d8832097a9ffe34f","classifiedAt":"2026-07-02T22:55:50.367Z"},"249":{"community_note":"No DC5-specific opposition found; separately, preservation groups and residents oppose QTS’s Prince William Digital Gateway rezoning near Manassas Battlefield, with courts halting it and QTS appealing to the Virginia Supreme Court.","water_impact":"low","ai_evidence":"Listings show a 300,000 SF facility with 42,000 kW commissioned at 9301 Freedom Center Blvd; no public disclosures of GPU superclusters, liquid cooling, or AI-specific tenants were found.","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"QTS says its closed‑loop cooling does not consume water for cooling once operational and cites about 600,000 gallons/year for similarly sized facilities.","grid_note":"Listed at 42 MW commissioned in Manassas; regulators approved new Dominion rates for 2026 that add ~$16/month to a typical bill.","citations":[{"title":"Legal battle over massive data center campus continues ...","url":"https://wjla.com/news/local/prince-william-county-digital-gateway-datacenter-appeal-lawsuit-rezoning-rural-farmland-manassas-battlefield-community-opposition-judges-construction-halted-developer-qts-compass-blackstone-supreme-virginia-economy-environment-landuse"},{"title":"American Battlefield Trust Urges Virginia Supreme Court to Reject Manassas Data Center Developer Appeal | American Battlefield Trust","url":"http://battlefields.org/news/american-battlefield-trust-urges-virginia-supreme-court-reject-manassas-data-center-developer"},{"title":"Water and Wastewater Treatment Capacity FAQ","url":"https://princewilliamwater.org/our-customers/residential-customers/frequently-asked-questions/water-quality-frequently-asked-questions/water-wastewater-capacity"},{"title":"Manassas DC5 - QTS Data Centers","url":"https://www.ocolo.io/colocation/qts-data-centers/manassas-dc5/"},{"title":"Legislature considers shifting power line costs from ...","url":"https://virginiamercury.com/2026/02/19/legislature-considers-passing-cost-of-distribution-transmission-lines-to-data-centers-instead-of-residents/"}],"runId":"srun_c0e944bd89584b5492db3b66b371c0a8","classifiedAt":"2026-07-02T22:55:50.367Z"},"250":{"community_note":"No organized opposition specific to 10680/DC4 was found, but QTS faces ongoing Digital Gateway litigation/appeals and protests over rural land, battlefield proximity, and infrastructure impacts, including a protest outside its existing Manassas data center.","water_impact":"low","ai_evidence":"Manassas is a 100+ acre, six-building, ~190 MW hyperscale campus with the DC4 expansion associated to 10680 University Blvd, but no confirmed GPU supercluster or AI tenant has been reported for this site; NVIDIA’s Virginia AI Factory announcement does not mention QTS [1][2][3][4].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No DC4 gallons/day figure found; QTS cites a water‑free ‘Freedom’ cooling design and a zero‑water‑usage design on the MAN1 DC‑3 building, while the local utility notes data center water use depends on cooling type and conditions [1][2][3].","grid_note":"Campus-scale load is ~190 MW and interconnects to Dominion Energy; Dominion has proposed a new large‑load (25+ MW) GS‑5 rate class with higher minimum demand charges, underscoring grid strain from data centers [1][2][3][4].","citations":[{"title":"Legal battle over massive data center campus continues ...","url":"https://wjla.com/news/local/prince-william-county-digital-gateway-datacenter-appeal-lawsuit-rezoning-rural-farmland-manassas-battlefield-community-opposition-judges-construction-halted-developer-qts-compass-blackstone-supreme-virginia-economy-environment-landuse"},{"title":"Officials in Virginia's Prince William County drop support for ...","url":"https://www.datacenterdynamics.com/en/news/officials-in-virginias-prince-william-county-drop-support-for-qtscompass-digital-gateway-data-center-project/"},{"title":"Virginia data center fight offers crucial lessons","url":"https://technical.ly/civics/digital-gateway-data-center-battle-virginia-supreme-court/"},{"title":"Pioneering Water Efficiency and Sustainability in Data ...","url":"https://q.com/resources/pioneering-water-efficiency-and-sustainability-in-data-center-operations/"},{"title":"Project Profile: QTS MAN1 DC-3","url":"https://tilt-up.org/projects/profile/?id=6596"}],"runId":"srun_c0e944bd89584b544d335529108dea9d","classifiedAt":"2026-07-02T22:55:50.647Z"},"251":{"community_note":"No organized opposition targeting CloudHQ MCC2; regional disputes focus on the Digital Gateway/QTS litigation and Amazon-related noise, not this facility.","water_impact":"unknown","ai_evidence":"Public materials describe MCC2 within a 375+ MW MCC campus and list MCC2 at 64 MW with no AI/GPU signals; a 2022 sale article characterizes the Manassas asset as wholesale/multi-tenant rather than AI-specific.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No MCC2-specific cooling-water or gallons/day reporting; the local utility notes data-center water use varies by facility size and cooling type.","grid_note":"Approx. 64 MW facility connected to Dominion Energy Virginia; the Virginia SCC approved a new rate class for the biggest electricity users, including data centers.","citations":[{"title":"Legal battle over massive data center campus continues ...","url":"https://wjla.com/news/local/prince-william-county-digital-gateway-datacenter-appeal-lawsuit-rezoning-rural-farmland-manassas-battlefield-community-opposition-judges-construction-halted-developer-qts-compass-blackstone-supreme-virginia-economy-environment-landuse"},{"title":"Prince William County backs noise study for Amazon data ...","url":"https://www.insidenova.com/headlines/prince-william-county-backs-noise-study-for-amazon-data-center/article_9a1b31ca-4b14-11ed-9981-6b4f709e3254.html"},{"title":"Water and Wastewater Treatment Capacity FAQ","url":"https://princewilliamwater.org/our-customers/residential-customers/frequently-asked-questions/water-quality-frequently-asked-questions/water-wastewater-capacity"},{"title":"Water is Precious","url":"https://cloudhq.com/water-is-precious/"},{"title":"MCC Campus","url":"https://cloudhq.com/campus/mcc-campus/"}],"runId":"srun_c0e944bd89584b54078b6f981361fc42","classifiedAt":"2026-07-02T22:55:50.647Z"},"252":{"community_note":"Approved amid resident concerns; regional groups continue organized opposition to data centers, but no MCC7-specific lawsuit identified.","water_impact":"unknown","ai_evidence":"No confirmed AI tenants or GPU superclusters; Manassas AI Factory activity is at Digital Realty, not CloudHQ MCC7.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No MCC7 gallons/day reported; operator emphasizes reducing/eliminating water use and selective evaporative cooling, while statewide reporting notes large water needs and limited disclosure on data-center wastewater.","grid_note":"Planned 36 MW facility within CloudHQ’s 375+ MW MCC campus in Dominion’s Northern Virginia market; JLARC projects $14–$37/month residential bill impacts from required generation/transmission, and data center requests reportedly total 70,000 MW — triple Dominion’s peak load.","citations":[{"title":"What's in the water? What we know and don't ...","url":"https://virginiamercury.com/2026/06/01/whats-in-the-water-what-we-know-and-dont-know-about-data-center-water-discharge-in-virginia/"},{"title":"MCC Campus","url":"https://cloudhq.com/campus/mcc-campus/"},{"title":"Data centers consume massive amounts of water","url":"https://theconversation.com/data-centers-consume-massive-amounts-of-water-companies-rarely-tell-the-public-exactly-how-much-262901"},{"title":"Water is Precious","url":"https://cloudhq.com/water-is-precious/"},{"title":"CloudHQ MCC Campus - Manassas","url":"https://www.datacentermap.com/usa/virginia/ashburn/cloudhq-mcc-campus/"}],"runId":"srun_c0e944bd89584b54c1e38a4b247691f3","classifiedAt":"2026-07-02T22:55:50.647Z"},"254":{"community_note":"Prince William County residents and the Coalition to Protect Prince William County opposed STACK’s Bristow campus expansion over proximity and environmental concerns, and the Board of Supervisors voted 4–2 to reject the rezoning.","water_impact":"moderate","ai_evidence":"STACK Infrastructure is an NVIDIA DGX‑Ready colocation partner, and the NVA02 campus is a 420 MW hyperscale site with dedicated NOVEC substations, but no public announcements confirm AI training clusters or specific GPU tenants at NVA02B.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Prince William Water says data centers accounted for ~3.8% of average daily demand and 10.1% of peak in 2025, while regional analysis calls data center water use a growing concern rather than a crisis.","grid_note":"NVA02 totals 420 MW with two 300 MW NOVEC substations, while NOVEC serves 58 data center buildings at 1,408 MW (3,513 MW contracted).","citations":[{"title":"Prince William County rejects rezoning application from ...","url":"https://www.datacenterdynamics.com/en/news/prince-william-county-rejects-rezoning-application-from-stack-infrastructure/"},{"title":"Prince William County votes against Stack Infrastructure's ...","url":"https://thetechcapital.com/prince-william-county-votes-against-stack-infrastructures-campus-expansion/"},{"title":"Water and Wastewater Treatment Capacity FAQ","url":"https://princewilliamwater.org/our-customers/residential-customers/frequently-asked-questions/water-quality-frequently-asked-questions/water-wastewater-capacity"},{"title":"Does Virginia have enough water to quench thirsty data ...","url":"https://frontiergroup.org/articles/does-virginia-have-enough-water-to-quench-thirsty-data-centers/"},{"title":"STACK Offers AI Hosting with NVIDIA DGX Program","url":"https://www.stackinfra.com/about/news-press/press-releases/stack-infrastructure-provides-a-path-for-customers-to-leverage-ai-in-the-data-center-with-the-nvidia-dgx-ready-program/"}],"runId":"srun_c0e944bd89584b547c3ba43adfe8c104","classifiedAt":"2026-07-02T22:55:50.647Z"},"255":{"community_note":"No organized opposition specific to NVA05B was documented in county records; the rezoning (NVA05A/B) was approved by the Prince William County Board on September 17, 2024.","water_impact":"low","ai_evidence":"Operator and listings market NVA05B as a 48 MW hyperscale phase designed to support cloud/AI/HPC, but no named AI tenant or GPU supercluster has been publicly disclosed for this specific building.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No gallons/day reported; design uses air-cooled, low-water systems with N+1 345-ton air-cooled chillers.","grid_note":"Listed at 48 MW and located adjacent to existing utility infrastructure for reliable power access, in a Dominion territory where data center-driven growth can affect broader rate structures.","citations":[{"title":"PC STAFF REPORT - NVA05C Planning Commission","url":"https://eservice.pwcgov.org/planning/documents/REZ2024-00042.pdf"},{"title":"Zoning Verification and Proffer Determination Case # ...","url":"https://www.pwcva.gov/assets/2025-01/Zoning-Verification_Determination_Letter_ZNR2025-00057.pdf"},{"title":"NVA05NORTHERN VIRGINIA","url":"https://www.stackinfra.com/wp-content/uploads/2022/04/NVA05_040523.pdf"},{"title":"Water and Wastewater Treatment Capacity FAQ","url":"https://princewilliamwater.org/our-customers/residential-customers/frequently-asked-questions/water-quality-frequently-asked-questions/water-wastewater-capacity"},{"title":"NVA05NORTHERN VIRGINIA","url":"https://www.stackinfra.com/wp-content/uploads/2022/04/NVA05_040523.pdf"}],"runId":"srun_c0e944bd89584b543693beed40f72299","classifiedAt":"2026-07-02T22:55:50.648Z"},"257":{"community_note":"No NVA05D-specific opposition was found; countywide groups and residents have opposed other Prince William County data-center projects (e.g., Digital Gateway), with a court halting a major rezoning in April 2026.","water_impact":"low","ai_evidence":"NVA05D appears as a planned facility at 8685–8695 Wellington Rd within STACK’s NVA05 Manassas campus, with no published GPU cluster or AI-tenant announcements specific to NVA05/NVA05D.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No NVA05D-specific water-use or discharge data found; in Virginia, most data centers discharge to municipal wastewater systems, and air-cooling generally implies limited process-water use.","grid_note":"Campus up to 200 MW in NOVEC territory, where data centers exceed 65% of energy sales and NOVEC’s metered data-center load is in PJM’s forecast; NOVEC notes some power-cost components are not shared with residential members.","citations":[{"title":"Va. Court of Appeals stops major data center development ...","url":"https://virginiamercury.com/briefs/va-court-of-appeals-stops-major-data-center-development-in-prince-william-county/"},{"title":"Virginia groups oppose proposed mega-data center","url":"https://planetforward.org/story/virginia-mega-data-center/"},{"title":"What's in the water? What we know and don't ...","url":"https://virginiamercury.com/2026/06/01/whats-in-the-water-what-we-know-and-dont-know-about-data-center-water-discharge-in-virginia/"},{"title":"Data Drain: The Land and Water Impacts of the AI Boom","url":"https://www.lincolninst.edu/publications/land-lines-magazine/articles/land-water-impacts-data-centers/"},{"title":"STACK Infrastructure NVA05D - Manassas","url":"https://www.datacentermap.com/usa/virginia/manassas/stack-infrastructure-nva05d/"}],"runId":"srun_c0e944bd89584b54ab43f30f46e812c7","classifiedAt":"2026-07-02T22:55:50.648Z"},"258":{"community_note":"Area residents mounted lawsuits over the separate Devlin Technology Park rezoning in Bristow, while the JK Land Holdings/Yondr site moved forward through county planning with some local concern but no active litigation specific to Yondr Building 1.","water_impact":"unknown","ai_evidence":"Listings describe the site as a hyperscale, cloud-focused campus ('critical cloud capacity'), and the permit identifies Building 1 as a 324,580 sq ft data center; no public record shows AI GPU superclusters, AI tenants, or liquid-cooling retrofits for this building.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No Building‑1‑specific cooling‑water usage, source, or discharge data was found in public listings.","grid_note":"Campus power capacity is listed at 60.0 MW on DC Hub; no project‑specific Dominion substation or transmission upgrade filings were identified for the address.","citations":[{"title":"Prince William County planners back data center near ...","url":"https://www.datacenterdynamics.com/en/news/prince-william-county-planners-back-data-center-near-gainesville/"},{"title":"Prince William County residents sue county over recently ...","url":"https://wjla.com/news/local/prince-william-county-residents-sue-data-center-plan-stanley-martin-homes-supervisors-board-county-bristow-virginia-defend-devlin-corporation-opposition-legal-trial-combat-challenge-community-technology-park"},{"title":"Yondr BLD2022-03616 — Prince William County, VA","url":"https://mlq.ai/permit-filings/usa/virginia/prince-william-county/bld2022-03616/"},{"title":"Yondr Bristow Campus Data Center","url":"https://baxtel.com/data-center/yondr-bristow-campus"},{"title":"What we know and don't know about data center water ...","url":"https://www.whro.org/environment/2026-06-04/what-we-know-and-dont-know-about-data-center-water-discharge-in-virginia"}],"runId":"srun_c0e944bd89584b54659c0dfe8160b810","classifiedAt":"2026-07-02T22:55:50.648Z"},"259":{"community_note":"Local activists opposed Dominion’s Daves Store 230 kV transmission line to power Gainesville-area data centers; SCC-approved route maps exist, and opposition continues.","water_impact":"low","ai_evidence":"The campus is “designed to support hyperscale operations,” and Building 1 is a 72 MW facility using Airedale/Modine chiller-based cooling; no public evidence names AI GPU superclusters or specific AI tenants.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day reported; campus materials note recycled water and Building 1 uses Airedale/Modine chiller-based cooling; no specific drought/aquifer or discharge issues were found.","grid_note":"Building 1 is 72 MW within a five-building, 306 MW campus, and Dominion’s Daves Store project proposes new 230 kV double-circuit transmission lines to serve Gainesville-area data centers that have already drawn activist pushback.","citations":[{"title":"New high-voltage transmission line for Gainesville data ...","url":"https://www.princewilliamtimes.com/news/new-high-voltage-transmission-line-for-gainesville-data-centers-is-already-facing-pushback-from-activists/article_4b5c7c22-ae75-11ee-b74f-fbfe31692841.html"},{"title":"Dominion's Massive “Extension Cord” for Data Centers ...","url":"https://protectpwc.org/2024/02/24/dominions-massive-extension-cord-for-data-centers-through-gainesville-and-brentsville-districts/"},{"title":"Daves Store SCC Approved Transmission Line Routes","url":"https://www.dominionenergy.com/-/media/content/about/power-line-projects/daves-store/pdfs/daves-store-scc-approved-routes-map.pdf"},{"title":"Corscale Gainesville Crossing Data Center (326 MW)","url":"https://www.datacentermap.com/usa/virginia/gainesville-va/corscale-gainesville-crossing/"},{"title":"Corscale Data Centers approves IST of Airedale by ...","url":"https://www.modine.com/news/corscale-data-centers-approves-ist-of-airedale-by-modine-cooling-solutions-on-72mw-gainesville-crossing-data-center/"}],"runId":"srun_c0e944bd89584b541ff427a1e55c6875","classifiedAt":"2026-07-02T22:55:50.648Z"},"260":{"community_note":"No organized, site‑specific opposition to Building 2 was found; local concern in Gainesville/Heritage Hunt focused on broader data‑center proposals and environmental impacts, with no active lawsuit targeting this facility.","water_impact":"low","ai_evidence":"Corscale said the 72 MW Building 2 was fully leased to an undisclosed hyperscale tenant [1], and financing coverage describes the campus as designed to support cloud computing and artificial intelligence [2]; no public disclosures name a tenant or GPU supercluster.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No site‑specific gallons/day were found; the campus uses high‑efficiency air‑cooled plant equipment (e.g., OptiChill chillers, AireWall units, SmartCool CRACs), and Prince William Water reports data centers accounted for ~3.8% of average and 10.1% of maximum daily demand in 2025.","grid_note":"A 72 MW building within an ~326 MW campus, in a region where data‑center growth has pushed Dominion’s PJM zone prices higher and regulators approved 2026 rate increases.","citations":[{"title":"Data center town hall in Gainesville's Heritage Hunt draws ...","url":"https://www.princewilliamtimes.com/news/data-center-town-hall-in-gainesville-s-heritage-hunt-draws-crowd-of-more-than-250/article_1d38c600-5eab-11ec-90fa-a324d2c0aad4.html"},{"title":"County's environmental staff rejects rural crescent data ...","url":"https://www.princewilliamtimes.com/news/county-s-environmental-staff-rejects-rural-crescent-data-center-plan-over-major-impacts-to-natural/article_6271b0b8-6295-11ec-b0f5-97cbf6e11e3b.html"},{"title":"GCDC Campus","url":"https://affiniuscapital.com/projects/gcdc/"},{"title":"Corscale Nears Opening of 72MW Data Center Following ...","url":"https://refindustry.com/news/market-news/corscale-nears-opening-of-72mw-data-center-following-successful-ist-of-airedale-cooling-solution/"},{"title":"Water and Wastewater Treatment Capacity FAQ","url":"https://princewilliamwater.org/our-customers/residential-customers/frequently-asked-questions/water-quality-frequently-asked-questions/water-wastewater-capacity"}],"runId":"srun_c0e944bd89584b54da4c4210011c655a","classifiedAt":"2026-07-02T22:55:50.648Z"},"261":{"community_note":"County-level opposition is active: the Coalition to Protect Prince William County and Gainesville-area residents oppose data center proliferation over rising bills, noise, and environmental impacts; current fights and litigation focus on countywide projects (e.g., Digital Gateway) rather than this specific Corscale building.","water_impact":"unknown","ai_evidence":"Building 3 is a 54 MW facility under construction at Corscale’s Gainesville Crossing campus, with reporting noting that specifications for the third building were not disclosed and the campus totaling 2.3 million sq ft/326 MW; no public evidence identifies an AI tenant, GPU cluster, or liquid cooling for this building.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No public gallons/day or source-stress data were found for Building 3.","grid_note":"A 54 MW building within a 326 MW Dominion-powered campus; PJM/Dominion documents note transmission constraints and major investments tied to Northern Virginia data center load.","citations":[{"title":"The Coalition to Protect Prince William County – UNLESS ...","url":"https://protectpwc.org/"},{"title":"'The Industry Comes In and Kills the Work of Local Citizens'","url":"https://www.politico.com/news/2026/02/13/virginia-prince-william-county-data-center-boom-00779219"},{"title":"Virginia groups oppose proposed mega-data center","url":"https://planetforward.org/story/virginia-mega-data-center/"},{"title":"Corscale Data Centers approves IST of Airedale by Modine cooling solutions on 72MW Gainesville Crossing Data Center - Modine","url":"https://www.modine.com/news/corscale-data-centers-approves-ist-of-airedale-by-modine-cooling-solutions-on-72mw-gainesville-crossing-data-center"},{"title":"Corscale Gainesville - Bldg 3 Data Center (54 MW)","url":"https://www.datacentermap.com/usa/virginia/gainesville-va/corscale-gainesville-bldg-3/"}],"runId":"srun_c0e944bd89584b5494a45cc3f06441db","classifiedAt":"2026-07-02T22:55:50.648Z"},"262":{"community_note":"No organized opposition specific to Gainesville Crossing Building 4 was found; broader Prince William County groups and residents are contesting data center expansion (including the Manassas-area mega-complex) over costs, environmental and historic-land concerns, with litigation ongoing.","water_impact":"low","ai_evidence":"Affinius/CorScale describe the campus as high-density, AI-ready infrastructure for cloud and AI workloads, while CorScale’s news highlights AI-driven demand; there is no public disclosure of a GPU supercluster or named AI tenant for Building 4, which remains under review.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No Building 4 gallons/day figure was found; the campus cites advanced cooling and water conservation, and data centers accounted for about 3.8% of average daily and 10.1% of maximum daily county water demand in 2025.","grid_note":"Campus load is on the order of 306–326 MW, and Virginia has explored special rate classes and documented rapid Dominion load growth linked to data centers.","citations":[{"title":"Eastern Prince William residents denounce data centers","url":"https://www.insidenova.com/news/prince_william/a-major-concern-eastern-prince-william-residents-denounce-new-data-center-proposals/article_68168e40-f202-468c-8709-c1887d01b097.html"},{"title":"Plan for massive Virginia data center complex heads to ...","url":"https://www.washingtonpost.com/dc-md-va/2026/05/01/data-center-virginia-lawsuit-manassas/"},{"title":"Virginia groups oppose proposed mega-data center","url":"https://planetforward.org/story/virginia-mega-data-center/"},{"title":"Corscale breaks ground on 54MW Gainsville Crossing ...","url":"https://www.datacenterdynamics.com/en/news/corscale-breaks-ground-on-54mw-gainsville-crossing-facility-in-northern-virginia/"},{"title":"Water and Wastewater Treatment Capacity FAQ","url":"https://princewilliamwater.org/our-customers/residential-customers/frequently-asked-questions/water-quality-frequently-asked-questions/water-wastewater-capacity"}],"runId":"srun_c0e944bd89584b544efc76b26ee30d7c","classifiedAt":"2026-07-02T22:55:50.648Z"},"263":{"community_note":"No direct opposition to Building 5 was found; nearby, the Save Braemar coalition and residents are opposing Dominion’s proposed Nokesville–Bristow 230‑kV transmission routes serving western Prince William, which Dominion lists as a new 230‑kV line from Nokesville Substation to a future Bristow Switching Station.","water_impact":"unknown","ai_evidence":"Building 5 is listed as a planned data center at 13760 University Blvd and is part of a campus marketed for cloud/AI demand, yet no named AI tenants or GPU deployments are disclosed for this building.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day figure is published for Building 5; campus materials cite high‑efficiency WUE, water conservation, and air‑cooled chillers/liquid‑cooled options, and the county utility notes data center water use varies by facility size and cooling type.","grid_note":"Campus is cited around 326 MW with Buildings 4–5 at 128 MW combined, while Dominion is proposing a new 230‑kV Nokesville–Bristow line in the area and reporting highlights ratepayer costs for transmission upgrades linked to data center growth.","citations":[{"title":"Nokesville - Bristow 230kV Electric Transmission Line","url":"http://www.dominionenergy.com/en/About/Delivering-Energy/Electric-Projects/Power-Line-Projects/Nokesville"},{"title":"Save Braemar vs. Dominion: The Bristow Transmission ...","url":"https://www.pcrehomes.com/blog/save-braemar-dominion-energy-transmission-line-bristow-2026/"},{"title":"GCDC Campus","url":"https://affiniuscapital.com/projects/gcdc/"},{"title":"Corscale Gainesville Crossing Data Center Campus","url":"https://www.corgan.com/projects/corscale-gainesville-crossing-data-center-campus"},{"title":"Water and Wastewater Treatment Capacity FAQ","url":"https://princewilliamwater.org/our-customers/residential-customers/frequently-asked-questions/water-quality-frequently-asked-questions/water-wastewater-capacity"}],"runId":"srun_c0e944bd89584b5409549165ebf71301","classifiedAt":"2026-07-02T22:55:50.648Z"},"264":{"community_note":"Great Oak residents have organized protests and continued complaints over persistent low‑frequency noise from the nearby AWS Freedom Campus, while county noise‑limit revisions have stalled and may not resolve their concerns.","water_impact":"moderate","ai_evidence":"No public reporting ties IAD‑131 at 9020 Freedom to GPU superclusters or AI‑specific deployments; AWS promotes GPU instances (e.g., P5/H100) and broader AI infrastructure region‑wide rather than naming this facility specifically.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Prince William Water reports data centers used ~3.8% of average daily and ~10.1% of maximum daily demand in 2025; no IAD‑131‑specific usage figure is publicly reported.","grid_note":"Part of a 100–250 MW Amazon cluster at 9020/9040 Freedom served by Dominion; Virginia reporting links large data center buildout to rising rates and new generation initiatives.","citations":[{"title":"Protestors chant outside Amazon Web Services Data Center","url":"https://www.wusa9.com/article/news/local/amazon-data-center-prince-william-county-great-oak-community/65-abb14ad1-66a3-4f14-951b-9f6de39a7c64"},{"title":"Long-awaited effort to limit data center noise hits a snag","url":"https://www.princewilliamtimes.com/news/long-awaited-effort-to-limit-data-center-noise-hits-a-snag/article_34e928bd-5fcb-48fc-8cf5-f6b232e59daa.html"},{"title":"Data Center Noise Still Shakes Homes in Great Oak, ...","url":"https://www.potomaclocal.com/?p=238180"},{"title":"Water and Wastewater Treatment Capacity FAQ","url":"https://princewilliamwater.org/our-customers/residential-customers/frequently-asked-questions/water-quality-frequently-asked-questions/water-wastewater-capacity"},{"title":"Commercial Customers","url":"https://princewilliamwater.org/our-customers/commercial-customers"}],"runId":"srun_c0e944bd89584b54c3acabd473f26cde","classifiedAt":"2026-07-02T22:59:24.194Z"},"265":{"community_note":"Residents voiced concerns about Wellington/Gainesville data center proposals while the county’s DAPS now lists SUP2023-00006 as withdrawn despite a 2024 Planning Commission recommendation; no facility-specific lawsuit or named opposition group was found.","water_impact":"moderate","ai_evidence":"Coverage notes AWS submitted two special-use permit requests for an approximately 2.2 million sq ft campus spanning 5845 and 5945 Wellington Road, and listings show an AWS IAD data center at 5845 Wellington; no reports identify GPU superclusters or AI-specific tenants at this facility.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day figure was published; SUP conditions require public water/sewer and a water‑quality contribution, and local watershed materials note the critical importance of the Occoquan/Lake Manassas system.","grid_note":"Planned on‑site/dedicated substations (including a NOVEC/Dominion substation at 5945 Wellington) are cited for the campus, while Dominion reports ~70,000 MW of data‑center requests and resource additions to meet DC demand.","citations":[{"title":"Development Application Processing Schedule (DAPS) ...","url":"https://eservice.pwcgov.org/planning/documents/daps/daps.pdf"},{"title":"Planning Commission 2024 Annual Report","url":"https://www.pwcva.gov/assets/2025-02/Signed%20PC%20Annual%20Report%202024.pdf"},{"title":"Amazon buys Virginia land at the center of heated data ...","url":"https://abcnews4.com/news/nation-world/amazon-virginia-data-center-neighborhood-residents-schools-land-concerns-payment-facilities-information-energy-costs-devlin-technology-community-supervisors-gainsville-bristow"},{"title":"How Data Centers Use Water, and How We're Working to ...","url":"https://blog.equinix.com/blog/2024/09/19/how-data-centers-use-water-and-how-were-working-to-use-water-responsibly/"},{"title":"Water and Wastewater Treatment Capacity FAQ","url":"https://princewilliamwater.org/our-customers/residential-customers/frequently-asked-questions/water-quality-frequently-asked-questions/water-wastewater-capacity"}],"runId":"srun_c0e944bd89584b547e04c587379ec0df","classifiedAt":"2026-07-02T22:55:50.648Z"},"266":{"ai_evidence":"Prince William County documents and industry coverage describe 5945 Wellington Road as part of an AWS data center campus via special-use permits, with no reporting of AI-specific GPU superclusters or liquid-cooling retrofits.","water_impact":"unknown","community_note":"Area groups near Wellington and Limestone have flagged nearby data center plans, while countywide reporting highlights concerns over diesel generators and related impacts; no litigation specific to this building is evident in the provided records.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day reported for 5945 Wellington; broader reporting notes Amazon uses raw water in Louisa County and invests in extensive “purple pipe” in other localities.","grid_note":"A NOVEC substation is planned at 5945 Wellington, with Dominion providing transmission-level support in the area.","citations":[{"title":"R. No. 24-xxx RE: SPECIAL USE PERMIT # SUP2023","url":"https://eservice.pwcgov.org/planning/documents/SUP2023-00006.pdf"},{"title":"AWS, QTS, and JK Land Holdings planning ...","url":"https://www.datacenterdynamics.com/en/news/aws-qts-and-jk-land-holdings-planning-data-center-developments-in-virginias-prince-william-county/"},{"title":"AWS planning another data center campus in Virginia's ...","url":"https://www.datacenterdynamics.com/en/news/aws-planning-another-data-center-campus-in-virginias-prince-william-county/"},{"title":"R. No. 24-xxx RE: SPECIAL USE PERMIT # SUP2023","url":"https://eservice.pwcgov.org/planning/documents/SUP2023-00006.pdf"},{"title":"Four Va. counties will pump almost 20 million gallons of ...","url":"https://virginiamercury.com/2026/06/19/four-va-counties-will-pump-almost-20-million-gallons-of-water-a-day-to-amazon-cause-for-concern/"}],"runId":"srun_c0e944bd89584b54385ce0766f7aafb8","classifiedAt":"2026-07-02T23:02:25.893Z"},"269":{"community_note":"Bristow residents (Devlin Defend Corporation) opposed the Devlin Technology Park rezoning over neighborhood impacts and sued, but the lawsuit was dismissed in June 2024 and the project is moving forward.","water_impact":"unknown","ai_evidence":"No site-specific reporting confirms GPU superclusters or AI tenants at MNZ03; directories instead describe a Microsoft/Azure hyperscale build (about 250,000 sq ft) with 31.375 MW power capacity and Dominion service.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No site-specific gallons/day or cooling/discharge details were found; a regional review notes data centers in the Potomac basin typically discharge to municipal sewers.","grid_note":"Listed at 31.375 MW on Dominion with a planned Devlin substation/switching station at Hansen Farm and nearby transmission additions in western Prince William County.","citations":[{"title":"Judge dismisses lawsuit challenging Bristow data centers","url":"https://www.princewilliamtimes.com/news/judge-dismisses-lawsuit-challenging-bristow-area-data-center-complex/article_aaa873e4-2480-11ef-a6ee-4756f1583bc7.html"},{"title":"Virginia residents file lawsuit against Devlin Technology ...","url":"https://www.datacenterdynamics.com/en/news/virginia-residents-file-lawsuit-against-devlin-technology-park-data-center-campus/"},{"title":"Data Centers and Water Use in the Potomac River Basin","url":"https://www.potomacriver.org/focus-areas/water-resources-and-drinking-water/water-resources/planning/data-centers-and-water-use-in-the-potomac-river-basin/"},{"title":"Microsoft Data Center(4dd37376) - Bristow, VA","url":"https://www.datacenter.fyi/public-record/microsoft-4dd37376"},{"title":"Microsoft - MNZ03 Building 1 - US Data Centers Inventory ...","url":"https://www.aterio.io/insights/us-data-centers/dc/microsoft-25319-va"}],"runId":"srun_c0e944bd89584b54f2b4fa19392ef98d","classifiedAt":"2026-07-02T22:55:50.648Z"},"270":{"community_note":"Residents and advocacy groups in Prince William County have opposed nearby data center growth over environmental impacts and rising utility bills; no facility-specific litigation was found for Microsoft’s 13490 University Blvd site.","water_impact":"unknown","ai_evidence":"Microsoft acquired roughly 124 acres at 13490 University Blvd. and 5941 Wellington Rd. for data centers, but no public filings or reports show AI GPU superclusters or AI tenants at this parcel; Microsoft’s AI‑optimized, zero‑water design announced in 2024 is fleet‑level, not site‑specific.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No site-specific gallons/day reported; Prince William Water says data centers in 2025 consumed approximately 3.8% of average daily and 10.1% of maximum daily water demand.","grid_note":"No site-specific MW or interconnection details found; regionally, data center power requests in Virginia total 70,000 MW—triple Dominion’s peak load—and the SCC approved a new rate class for the biggest users including data centers.","citations":[{"title":"Prince William Co. residents push back against ...","url":"https://wtop.com/prince-william-county/2025/07/prince-william-county-residents-push-back-against-recommendation-of-another-data-center/"},{"title":"Virginia groups oppose proposed mega-data center","url":"https://planetforward.org/story/virginia-mega-data-center/"},{"title":"Virginia Court of Appeals Deals Blow to Data Center ...","url":"https://www.battlefields.org/news/virginia-court-appeals-deals-blow-data-center-complex-threatening-manassas-battlefield"},{"title":"Water and Wastewater Treatment Capacity FAQ","url":"https://princewilliamwater.org/our-customers/residential-customers/frequently-asked-questions/water-quality-frequently-asked-questions/water-wastewater-capacity"},{"title":"Commercial Customers","url":"https://princewilliamwater.org/our-customers/commercial-customers"}],"runId":"srun_c0e944bd89584b54ad0d14a80f64e612","classifiedAt":"2026-07-02T22:55:50.648Z"},"271":{"community_note":"No organized opposition specific to Microsoft’s 5941 Wellington Rd/13490 University Blvd parcels was found; regional conservation and community groups have opposed the separate Digital Gateway megaproject near Manassas National Battlefield.","water_impact":"unknown","ai_evidence":"No public site-specific evidence was found for GPU superclusters, AI training deployments, liquid cooling, or other AI-specific signals; reports list this campus as a planned Microsoft site following the 124-acre land purchase.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No site-specific water consumption disclosed; the utility notes data center water use depends on facility size, cooling type, and outdoor temperature.","grid_note":"No MW figure is published; Microsoft purchased about 124 acres across 13490 University Blvd. and 5941 Wellington Road in Gainesville.","citations":[{"title":"Virginia groups oppose proposed mega-data center","url":"https://planetforward.org/story/virginia-mega-data-center/"},{"title":"Data Centers and Water Use in the Potomac River Basin","url":"https://www.potomacriver.org/focus-areas/water-resources-and-drinking-water/water-resources/planning/data-centers-and-water-use-in-the-potomac-river-basin/"},{"title":"Microsoft acquires 124 acres in Virginia's Prince William ...","url":"https://www.datacenterdynamics.com/en/news/microsoft-acquires-124-acres-in-virginias-prince-william-county-for-4655m/"},{"title":"Microsoft - 13490 University Blvd in Gainesville","url":"https://www.datacentermap.com/usa/virginia/gainesville-va/microsoft-13490-university-blvd/"},{"title":"Dominion prepares for 70000 MW in data center demand","url":"https://virginiabusiness.com/dominion-data-center-power-demand-virginia-scc/"}],"runId":"srun_c0e944bd89584b5467652f7b08b20783","classifiedAt":"2026-07-02T22:55:50.648Z"},"272":{"community_note":"Residents raised concerns during the 2022 rezoning amendment process for 10920 Balls Ford Road, but no active lawsuit specific to Aligned IAD05 was found; broader county-level data center opposition continues.","water_impact":"low","ai_evidence":"No site-specific AI/GPU tenant or liquid-cooling deployment is disclosed for IAD05; Aligned’s AI-readiness is evidenced at the corporate level (DGX‑Ready partner; Lambda liquid‑cooled AI data center in Dallas–Fort Worth, not Manassas).","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No facility-specific gallons/day were found; as an air-cooled site, on-site cooling water demand should be minimal, while Northern Virginia utilities report data-center water use rose ~86% from 2019–2023.","grid_note":"No site-specific MW disclosed; Dominion has proposed a new large‑load rate for data centers and the SCC approved a GS‑5 rate class, reflecting heavy regional data‑center load growth.","citations":[{"title":"Developer considering distribution or data center off Balls ...","url":"https://www.insidenova.com/headlines/developer-considering-distribution-or-data-center-off-balls-ford-road/article_8243f05a-f524-11ec-844c-8bcac8031c59.html"},{"title":"Myths vs. Reality: Data Centers And Water Usage","url":"https://www.fwpcoa.org/content.aspx?page_id=5&club_id=859275&item_id=130961"},{"title":"What's in the water? What we know and don't ...","url":"https://virginiamercury.com/2026/06/01/whats-in-the-water-what-we-know-and-dont-know-about-data-center-water-discharge-in-virginia/"},{"title":"Alligned Data Centers (Balls Ford) — Prince William, Virginia","url":"https://cleanview.co/data-centers/virginia/1757/alligned-data-centers-balls-ford"},{"title":"Aligned: Manassas, VA Data Center","url":"https://baxtel.com/data-center/aligned-manassas-va"}],"runId":"srun_c0e944bd89584b5421bd490a0049ed34","classifiedAt":"2026-07-02T22:55:50.648Z"},"274":{"community_note":"","water_impact":"moderate","ai_evidence":"Operator and directory materials describe MCC as a hyperscale campus (375+ MW) and MCC2 as a 64 MW, fully leased facility, with no MCC2-specific GPU/AI cluster or retrofit announcements found [1], [2], [8].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"MCC2 uses ten water‑cooled chillers, but no gallons/day or source details are published; typical Potomac‑basin data‑center water intensities range roughly 100–1,600 gal/day/MW depending on cooling technology [3], [4].","grid_note":"At 64 MW as part of a 375+ MW campus, MCC2 contributes to large, concentrated load that Dominion/PJM attribute to data centers and that requires substantial transmission buildout in Northern Virginia [1], [2], [15], [7].","citations":[{"title":"MCC Campus","url":"https://cloudhq.com/campus/mcc-campus/"},{"title":"CloudHQ MCC2 Data Center in Manassas (64 MW)","url":"https://www.datacentermap.com/usa/virginia/manassas/cloudhq-mcc2/"},{"title":"Building Production-Ready Multi-Tenant GPU Infrastructure","url":"https://www.vcluster.com/guides/gpu-cluster-to-ai-factory-multi-tenant-infrastructure"},{"title":"Manassas MDC Campus","url":"https://mlq.ai/data-centers/usa/virginia/manassas/cloudhq-mdc/"},{"title":"CloudHQ MCC2 | 10100 Harry J Parish Boulevard ...","url":"https://datacenterhawk.com/marketplace/providers/cloudhq/10100-harry-j-parish-boulevard/mcc2"}],"runId":"srun_c0e944bd89584b54dc1563dd38e6c089","classifiedAt":"2026-07-02T22:55:51.032Z"},"275":{"community_note":"No facility-specific opposition found; broader Prince William County residents have organized against other proposed data centers over noise, pollution, and land-use impacts, with those campaigns ongoing.","water_impact":"low","ai_evidence":"Corgan describes Building 1 as a 72 MW critical IT facility with eight 9 MW data halls, and Corscale said the 72 MW facility was fully leased to an undisclosed hyperscale tenant; no public record confirms a GPU supercluster or AI-training deployment.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No gallons/day reported; the facility uses Airedale cooling solutions and the campus highlights water conservation, and the county utility notes data center water use depends on cooling type (water vs. air cooled).","grid_note":"72 MW building on a Dominion-served campus marketed at 326 MW; state analysis says data center growth will require substantial new generation and transmission and could raise typical bills by 2040.","citations":[{"title":"Eastern Prince William residents denounce data centers","url":"https://www.insidenova.com/news/prince_william/a-major-concern-eastern-prince-william-residents-denounce-new-data-center-proposals/article_68168e40-f202-468c-8709-c1887d01b097.html"},{"title":"Corscale Data Centers approves IST of Airedale by Modine cooling solutions on 72MW Gainesville Crossing Data Center - Modine","url":"https://modine.com/news/corscale-data-centers-approves-ist-of-airedale-by-modine-cooling-solutions-on-72mw-gainesville-crossing-data-center"},{"title":"Corscale breaks ground on 54MW Gainsville Crossing ...","url":"https://www.datacenterdynamics.com/en/news/corscale-breaks-ground-on-54mw-gainsville-crossing-facility-in-northern-virginia/"},{"title":"Water and Wastewater Treatment Capacity FAQ","url":"https://princewilliamwater.org/our-customers/residential-customers/frequently-asked-questions/water-quality-frequently-asked-questions/water-wastewater-capacity"},{"title":"Corscale Gainesville Crossing Data Center Campus","url":"https://www.corgan.com/projects/corscale-gainesville-crossing-data-center-campus"}],"runId":"srun_c0e944bd89584b54966d7e6cc0e2fb06","classifiedAt":"2026-07-02T22:55:51.032Z"},"276":{"community_note":"No organized opposition specific to this building was found, but regionally residents and conservation groups have litigated over the Digital Gateway while residents have objected to diesel-generator air-quality rules, and a separate STACK rezoning was rejected by county supervisors.","water_impact":"low","ai_evidence":"No facility-specific announcements of GPU superclusters, AI training, or liquid-cooling retrofits were found; the campus is positioned as hyperscale capacity, and STACK’s NVIDIA DGX-Ready program is a general certification not tied to this site.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day disclosed; the site uses a low-water-use, air-cooled design, while Northern Virginia data centers collectively consumed close to 2 billion gallons in 2023.","grid_note":"Building B is 48MW/340,000 sq ft, and Virginia regulators and analysts report data centers are driving substantial grid upgrades and could add roughly $14–$37/month to typical residential bills, prompting creation of a new large-user rate class.","citations":[{"title":"Va. Court of Appeals stops major data center development ...","url":"https://virginiamercury.com/briefs/va-court-of-appeals-stops-major-data-center-development-in-prince-william-county/"},{"title":"Va. eases its rules on dirtier data center generators","url":"https://www.princewilliamtimes.com/localnews/despite-hundreds-of-complaints-va-eases-its-rules-on-dirtier-data-center-generators/article_4739de1c-04fc-4843-8b8b-7494b7531ad0.html"},{"title":"Prince William County rejects rezoning application from ...","url":"https://www.datacenterdynamics.com/en/news/prince-william-county-rejects-rezoning-application-from-stack-infrastructure/"},{"title":"NVA05NORTHERN VIRGINIA","url":"https://www.stackinfra.com/wp-content/uploads/2022/04/NVA05_040523.pdf"},{"title":"Stack secures $900m in green financing for 200MW ...","url":"https://www.datacenterdynamics.com/en/news/stack-secures-900m-in-green-financing-for-200mw-virginia-campus/"}],"runId":"srun_c0e944bd89584b5450c5983fda9980b7","classifiedAt":"2026-07-02T22:59:24.466Z"},"296":{"community_note":"No organized local opposition identified for ATL1; the Atlanta Regional Commission’s DRI review documents planning/environmental items but does not record public controversy.","water_impact":"low","ai_evidence":"Marketed as a hyperscale-ready, high-density campus with AI positioning, but there is no public disclosure of named AI tenants or GPU superclusters.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Air-cooled cooling minimizes onsite water use; Georgia reporting notes broader concerns about data center water demand during droughts.","grid_note":"Served by GreyStone Power in a region facing substantial data center-driven load growth; regulators and utilities are adopting measures so large users bear direct costs rather than shifting them to other ratepayers.","citations":[{"title":"2024 DC Blox ATL West Data Center DRI 4112","url":"http://documents.atlantaregional.com/Land%20Use/Reviews/ID5407/2024%20DC%20Blox%20ATL%20West%20Data%20Center%20DRI%204112%20-%20Final%20Report.pdf"},{"title":"Data centers use a lot of water. Georgia counties and ...","url":"https://www.wabe.org/data-centers-use-a-lot-of-water-georgia-counties-and-conservationists-are-looking-for-solutions/"},{"title":"Atlanta West hyperscale Data Center Campus","url":"https://www.dcblox.com/data-centers/atlanta-data-centers/douglas-county-ga-hyperscale-data-center-campus/"},{"title":"DC Blox plans additional 80MW building at ...","url":"https://www.datacenterdynamics.com/en/news/dc-blox-plans-additional-80mw-building-at-data-center-campus-in-atlanta-georgia/"},{"title":"Data Center FAQs","url":"https://www.greystonepower.com/datacenters"}],"runId":"srun_c0e944bd89584b540b1db2ceb0b62c00","classifiedAt":"2026-07-02T22:55:51.032Z"},"297":{"community_note":"Rockdale County residents opposed additional data centers at a lengthy May 2026 town hall, and the county extended its data-center/BESS moratorium to Sept. 8, 2026 [1].","water_impact":"low","ai_evidence":"Marketed as hyperscale/AI‑ready infrastructure with metro dark fiber connecting into the Atlanta East site, but no named AI tenants or GPU clusters have been announced for this facility [7][8].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Closed‑loop cooling initially primed with utility water is described for the site; no gallons/day figures are disclosed [3].","grid_note":"Campus lists 154 Critical MW, and Georgia Power provides guidance on how large data centers affect rates and grid reliability in the state [5][6].","citations":[{"title":"Neighbors spend hours telling leaders why Rockdale ...","url":"https://www.wsbtv.com/news/local/rockdale-county/neighbors-spend-hours-telling-leaders-why-rockdale-county-doesnt-need-another-data-center/VB6BX5Z7G5DUVKEHPFLSAAAEYA/"},{"title":"DC BLOX & Rockdale County","url":"https://www.dcblox.com/wp-content/uploads/2026/03/DC-BLOX-Conyers-Rockdale-Community-Overview.pdf"},{"title":"Hyperscale Data Center Campuses in Southeastern US","url":"https://www.dcblox.com/hyperscale-data-center/"},{"title":"Atlanta Data Centers","url":"https://www.dcblox.com/data-centers/atlanta-data-centers/"},{"title":"Georgia regulators approve huge electric generation ...","url":"https://www.power-eng.com/news/georgia-regulators-approve-huge-electric-generation-increase-for-data-centers/"}],"runId":"srun_c0e944bd89584b54c575cc91773f7d05","classifiedAt":"2026-07-02T22:55:51.032Z"},"301":{"community_note":"Local advocates and Clayton County officials have raised organized concerns (moratoriums, council discussions, EPD notice) about environmental and neighborhood impacts; the Fort Gillem site is within Forest Park city limits and not halted by the county moratorium.","water_impact":"moderate","ai_evidence":"Coverage shows a planned hyperscale campus (two buildings, ~1.9M sq ft on ~97 acres, reported up to ~200 MW) with no ATL15-specific AI tenant or GPU-cluster announcement; Digital Realty’s liquid-to-chip cooling support is companywide, not tied to ATL15.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day or cooling method confirmed; the project drew an EPD Water Pollution Branch public comment notice and sits on a 97-acre portion of the former Fort Gillem site.","grid_note":"Planned within a two-building campus reported around 120–200 MW, with Georgia PSC large-load rate structures and new capacity additions under consideration; no ATL15-specific grid-upgrade filings identified.","citations":[{"title":"Clayton County Board of Commissioners Approves ...","url":"https://www.claytoncountyga.gov/news/clayton-county-board-of-commissioners-approves-moratorium-on-new-data-centers-in-clayton-county/"},{"title":"CITY COUNCIL REGULAR SESSION AGENDA","url":"https://mccmeetings.blob.core.usgovcloudapi.net/forestpark-pubu/MEET-Packet-35ada9a2c2374b9bb7051f462ab6fed0.pdf"},{"title":"DeKalb extends moratorium as data center backlash grows ...","url":"https://saportareport.com/dekalb-extends-moratorium-as-data-center-backlash-grows-across-georgia/columnists/adrianne-murchison/"},{"title":"Fort Gillem data center project in Clayton County, Georgia ...","url":"https://www.facebook.com/groups/748308444500071/posts/947836424547271/"},{"title":"Fort Gillem data center project in Clayton County, Georgia ...","url":"https://www.facebook.com/groups/748308444500071/posts/947836424547271/"}],"runId":"srun_c0e944bd89584b547fcde720dd66118a","classifiedAt":"2026-07-02T22:55:51.032Z"},"304":{"community_note":"No facility-specific opposition to Edged ATL01 was found; regionally, environmental groups sued over Georgia Power’s data-center-driven energy expansion and counties advanced/extended data center ordinances/moratoria citing water, energy, noise, and air-quality concerns [1][2].","water_impact":"low","ai_evidence":"Edged highlights a 42 MW building at the Atlanta campus 'optimized for AI inference at scale' and positions ATL01-01 for 'AI, cloud, and advanced computing' workloads, but no public source identifies a named GPU tenant or training supercluster [1][2].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Waterless cooling at the campus is reported, with estimated savings of about 664 million gallons per year versus conventional systems [1][2].","grid_note":"Campus scale is ~169 MW with all three buildings ultimately fully leased; statewide, Georgia Power projects ~8,500 MW of six‑year load growth and the PSC adopted new large‑load terms to protect ratepayers from cost shifting [1][2][3].","citations":[{"title":"Environmental groups sue over Georgia Power's energy ...","url":"https://thecurrentga.org/2026/03/27/environmental-groups-sue-over-georgia-powers-energy-expansion-for-data-centers/"},{"title":"A 'wave' of data center ordinances sweep through GA ...","url":"https://www.gpb.org/news/2025/10/22/wave-of-data-center-ordinances-sweep-through-ga-counties-how-strict-are-they"},{"title":"Edged Data Centers Celebrates Grand Opening of New ...","url":"https://edged.us/news/grand-opening-of-new-sustainable-data-center-in-atlanta"},{"title":"Edged tops out 42MW Atlanta data centre built for AI","url":"https://datacenter.news/story/edged-tops-out-42mw-atlanta-data-centre-built-for-ai"},{"title":"Edged US 'Tops Out' Ultra-Efficient 42 MW Data Center ...","url":"https://www.edged.es/news/edged-us-tops-out-ultra---efficient-42-mw-data-center-optimized-for-ai-inference-at-scale-at-its-atlanta-campus"}],"runId":"srun_c0e944bd89584b543a2601f31d844f0b","classifiedAt":"2026-07-02T22:55:51.032Z"},"305":{"community_note":"No organized opposition identified; the campus reuses the formerly vacant Tilford Yard brownfield and the first facility is live.","water_impact":"low","ai_evidence":"The campus is designed for high-density AI workloads, and a separate 42 MW building on the same campus is custom-built for AI training and inference at scale; no ATL01-02–specific named GPU tenant found.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"Waterless cooling is advertised for the Atlanta campus; no specific local drought, aquifer, or discharge concerns were reported.","grid_note":"Georgia Power–served campus cited around 168 MW total (ATL01-02 listed up to 100 MW), and PSC rules require large data centers to pay site-specific and upstream generation/transmission/distribution costs.","citations":[{"title":"Edged Data Centers launches facility in Atlanta - DCD","url":"https://www.datacenterdynamics.com/en/news/edged-data-centers-launches-facility-in-atlanta/"},{"title":"Edged U.S. | Home","url":"https://edged.us/"},{"title":"Edged Data Centers Celebrates Grand Opening of New ...","url":"https://www.edged.es/news/grand-opening-of-new-sustainable-data-center-in-atlanta"},{"title":"Edged Energy opens first North American data centre - Capacity","url":"https://capacityglobal.com/news/edged-energy-opens-first-north-american-data-centre-in-atlanta/"},{"title":"Edged US 'Tops Out' Ultra-Efficient 42 MW Data Center ...","url":"https://www.edged.es/news/edged-us-tops-out-ultra---efficient-42-mw-data-center-optimized-for-ai-inference-at-scale-at-its-atlanta-campus"}],"runId":"srun_c0e944bd89584b54f47e1b82f411718c","classifiedAt":"2026-07-02T22:55:51.032Z"},"306":{"community_note":"No ATL01-3-specific complaints were found; environmental groups have filed a court challenge to the Georgia PSC’s approval of Georgia Power’s data-center-driven expansion and resource plan, which is currently being litigated.","water_impact":"low","ai_evidence":"Edged’s ATL01-3 is described as a 42 MW facility “Optimized for AI Inference at Scale,” and the Atlanta campus is framed as an “AI-ready” campus; no public announcements of named training clusters or tenants were identified.","grid_impact":"moderate","ai_class":"ai-inference","community_pushback":"active-opposition","water_note":"The Atlanta campus uses waterless cooling (ThermalWorks) and promotes “waterless cooling,” with no independent reports of local aquifer, drought, or discharge concerns.","grid_note":"ATL01-3 is a 42 MW build within an “AI-ready” 168 MW Atlanta campus; Georgia regulators face a lawsuit over approving nearly 10 GW of new generation for large loads, while Georgia Power projects “estimated savings of approximately $102 per year” under a stipulated agreement.","citations":[{"title":"Georgia Power data center expansion faces new court challenge","url":"http://ajc.com/business/2026/03/environmental-groups-take-psc-to-court-over-georgia-power-data-center-expansion"},{"title":"Environmental groups sue over Georgia Power's energy ...","url":"https://georgiarecorder.com/briefs/environmental-groups-sue-over-georgia-powers-energy-expansion-for-data-centers/"},{"title":"Edged Data Centers Celebrates Grand Opening of New ...","url":"https://edged.us/news/grand-opening-of-new-sustainable-data-center-in-atlanta"},{"title":"News","url":"https://edged.us/news"},{"title":"Edged US 'Tops Out' Ultra-Efficient 42 MW Data Center ...","url":"https://www.edged.es/news/edged-us-tops-out-ultra---efficient-42-mw-data-center-optimized-for-ai-inference-at-scale-at-its-atlanta-campus"}],"runId":"srun_c0e944bd89584b54aed6365505189211","classifiedAt":"2026-07-02T22:55:51.032Z"},"309":{"community_note":"Residents and community activists in Union City/South Fulton have mobilized via town halls to oppose/raise concerns about proposed data centers near Stonewall Tell Road; no litigation identified to date.","water_impact":"unknown","ai_evidence":"EdgeConneX lists ATL11–13 with high-density capability (20+kW per cabinet for cloud and 100+kW-class for AI), and market listings say it is designed to meet AI and hyperscale cloud demand; there is no public confirmation of a named GPU supercluster at this site.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"","grid_note":"State regulators approved large generation additions to serve data centers and reporting cites a planned 324MW campus near Atlanta, indicating significant grid upgrades and costs.","citations":[{"title":"East Point Data Center — Fulton, Georgia","url":"https://cleanview.co/data-centers/georgia/1661/east-point-data-center"},{"title":"South Fulton residents debate impact of data centers on ...","url":"https://www.fox5atlanta.com/news/south-fulton-residents-debate-impact-data-centers-community"},{"title":"Understanding Microsoft datacenters in South Fulton County","url":"https://local.microsoft.com/blog/understanding-microsoft-datacenters-in-fulton-county/"},{"title":"Microsoft: Union City Campus Data Center","url":"https://baxtel.com/data-center/microsoft-union-city-campus"},{"title":"Union City, GA data center hub growth","url":"https://www.facebook.com/groups/225251524184246/posts/33285190701096902/"}],"runId":"srun_c0e944bd89584b54692e50e4dff37b8e","classifiedAt":"2026-07-02T22:55:51.032Z"},"315":{"community_note":"Peachtree Corners approved a special use permit for Flexential at 2755/2775 Northwoods Parkway with standard conditions; no organized opposition or lawsuits were reported.","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Flexential lists a target PUE of 1.3 and “zero water use” for Norcross 2; no gallons/day figures or drought/aquifer/discharge concerns were reported in public sources.","grid_note":"Planned at 4.5 MW with an expected in-service window in the first half of 2028; no site-specific reports of grid strain, new transmission/generation, or ratepayer impacts were found.","citations":[{"title":"Council approves Flexential special use permit to expand ...","url":"https://citizenportal.ai/articles/7220378/Peachtree-Corners/Gwinnett-County/Georgia/Council-approves-Flexential-special-use-permit-to-expand-data-center-in-Northwoods-Office-Park"},{"title":"state of georgia - gwinnett county","url":"https://peachtreecornersga.gov/DocumentCenter/View/4251"},{"title":"Atlanta – Norcross 2 Data Center","url":"https://www.flexential.com/data-centers/ga/atlanta/norcross-2-data-center"},{"title":"Atlanta – Norcross 2 Data Center","url":"https://www.flexential.com/data-centers/ga/atlanta/norcross-2-data-center"},{"title":"Flexential Adding Fifth Atlanta-Area Data Center as ...","url":"https://www.flexential.com/resources/press-release/flexential-adding-fifth-atlanta-area-data-center"}],"runId":"srun_c0e944bd89584b5423866ab76dedb12f","classifiedAt":"2026-07-02T22:55:51.032Z"},"318":{"community_note":"Douglas County enacted a 90‑day moratorium on data centers in March 2025 and later advanced rules with restrictions on noise, buffers, and water/energy use; no organized opposition specific to Flexential Douglasville 2 was found.","water_impact":"unknown","ai_evidence":"The operator describes Douglasville 2 (1750 N. River Rd) as a 36 MW, 358,000‑sq‑ft facility designed for AI/ML with chilled‑water, liquid‑ready cooling and high power density, and CoreWeave announced Flexential colocation in Douglasville, GA, with trade press noting CoreWeave leasing Flexential sites in Georgia and Oregon.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No gallons/day or source-stress data found; the site uses chilled-water piping/liquid-ready cooling at 1750 N. River Rd with 36 MW capacity.","grid_note":"36 MW facility; regulators approved a nearly 10,000‑MW grid expansion to serve data centers, and Georgia Power publishes rate/reliability guidance for data centers; no site‑specific interconnection filings were identified.","citations":[{"title":"Douglas County imposes 90-day halt on data centers","url":"https://www.fox5atlanta.com/news/douglas-county-data-centers-moratorium"},{"title":"A 'wave' of data center ordinances sweep through GA ...","url":"https://www.gpb.org/news/2025/10/22/wave-of-data-center-ordinances-sweep-through-ga-counties-how-strict-are-they"},{"title":"Flexential Secures Strategic Real Estate Control in Atlanta ...","url":"https://www.flexential.com/resources/press-release/flexential-secures-strategic-real-estate-control-atlanta-acquisition"},{"title":"Atlanta - Douglasville 2 data center","url":"https://www.flexential.com/data-centers/ga/atlanta/douglasville-2-data-center"},{"title":"Atlanta - Douglasville 2 data center","url":"https://www.flexential.com/data-centers/ga/atlanta/douglasville-2-data-center"}],"runId":"srun_c0e944bd89584b54ddde8546c4380788","classifiedAt":"2026-07-02T22:55:51.032Z"},"332":{"community_note":"Howell Station/West Midtown neighbors are actively opposing Georgia Power’s planned high-voltage transmission lines near the QTS Atlanta 1 campus over consultation and neighborhood impacts, with community meetings and rallies reported but no facility-specific lawsuits noted.","water_impact":"low","ai_evidence":"DCD reported DC2 opened with 72MW and 240,000 sq ft of data hall space, and QTS lists DC2 at 1025 Jefferson St NW on the multi-hundred‑MW Atlanta 1 campus; no reporting was found of GPU superclusters, named AI tenants, or liquid-cooling retrofits at DC2.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"QTS says its closed-loop cooling does not consume water once operational and has claimed about 600,000 gallons/year for a closed-loop site, while a separate 29M+ gallon accounting issue occurred at QTS Fayetteville, not Atlanta 1 DC2.","grid_note":"DC2 is ~72 MW within the Atlanta 1 campus, which has an on-site Georgia Power substation up to 120 MVA; new high-voltage lines are planned nearby and the PSC approved special terms to protect customers from data center load impacts.","citations":[{"title":"Georgia Power expanding grid near West Midtown data ...","url":"https://www.atlantanewsfirst.com/2025/05/06/georgia-power-expanding-grid-near-west-midtown-data-center-neighbors-rally-against-it/"},{"title":"Howell Station neighbors fight new transmission lines in ...","url":"https://www.wabe.org/howell-station-neighbors-fight-new-transmission-lines-in-northwest-atlanta/"},{"title":"Historic Atlanta neighborhood near Fulton Co. Jail pushing ...","url":"https://www.wsbtv.com/news/local/atlanta/historic-atlanta-neighborhood-near-fulton-co-jail-pushing-back-new-power-lines-tree-removal/F7MS5SONTJCIBAXEF3ZVYSZZU4/"},{"title":"Environmental Stewardship","url":"https://q.com/the-qts-difference/environmental-stewardship/"},{"title":"Same size. Not the same water use. A QTS closed-loop ...","url":"https://www.facebook.com/qtsdatacenters/posts/same-size-not-the-same-water-usea-qts-closed-loop-data-center-uses-about-600000-/1461407262694610/"}],"runId":"srun_c0e944bd89584b5498369f09a6aff5bd","classifiedAt":"2026-07-02T22:55:51.032Z"},"333":{"community_note":"No facility-specific organized opposition was found for QTS Atlanta 1 DC3; citywide scrutiny led to limits near the BeltLine/MARTA and proposals to bar data centers in neighborhood-commercial zones.","water_impact":"low","ai_evidence":"DC3 is part of the 278+ MW Atlanta 1 campus at 953 Herndon St NW, but no DC3 GPU cluster or AI-tenant announcement was found [1].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No DC3-specific usage was reported; a QTS post says a closed-loop QTS data center uses about 600,000 gallons of water annually.","grid_note":"Georgia PSC approved special billing terms for >100 MW customers, and QTS agreed with Georgia Power to add nearly 350 MW of renewables to Atlanta’s grid.","citations":[{"title":"Atlanta City Council passes rules limiting ...","url":"https://www.datacenterdynamics.com/en/news/atlanta-city-council-passes-rules-limiting-data-center-locations/"},{"title":"Additional data center regulations supported by Zoning ...","url":"https://civicatlanta.org/blog/2025-05-25-additional-data-center-regulations"},{"title":"Environmental Stewardship","url":"https://q.com/the-qts-difference/environmental-stewardship/"},{"title":"QTS Atlanta 1 DC3","url":"https://mlq.ai/data-centers/usa/georgia/atlanta/qts-ga-atl1-dc3/"},{"title":"DATA CENTER FACT SHEET","url":"https://psc.ga.gov/site/downloads/datacenterfactsheet.pdf"}],"runId":"srun_c0e944bd89584b54528eb9b8737fc862","classifiedAt":"2026-07-02T22:55:51.032Z"},"334":{"community_note":"Howell Station residents have raised concerns about Georgia Power transmission-line expansion and buffer clearing near the QTS Atlanta campus; no DC4-specific legal action or moratorium was identified [1].","water_impact":"low","ai_evidence":"","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day reported for Atlanta 1 DC4; QTS cites water-free cooling (WUE=0) saving >48M gallons per data center annually, while a distinct 30M‑gallon water‑use incident involved a QTS‑developed Fayetteville site [1][2].","grid_note":"80 MW building on a 278 MW+ campus with on-site Georgia Power substations; Georgia regulators approved massive new capacity and transmission to serve data centers [1][2].","citations":[{"title":"Atlanta transmission lines are new front for data center ...","url":"https://www.ajc.com/news/business/transmission-lines-become-new-front-line-for-data-center-growing-pains/MHLH6KMBYFFGDKSZGZD53COT5I/"},{"title":"Pioneering Water Efficiency and Sustainability in Data ...","url":"https://q.com/resources/pioneering-water-efficiency-and-sustainability-in-data-center-operations/"},{"title":"Microsoft debuts 'AI superfactory' data center south of Atlanta","url":"https://www.ajc.com/business/2025/11/microsofts-newest-ai-superfactory-opens-at-sprawling-fayetteville-campus/"},{"title":"Atlanta 1","url":"https://q.com/data-centers/atlanta-1/"},{"title":"Atlanta 1","url":"https://q.com/data-centers/atlanta-1/"}],"runId":"srun_c0e944bd89584b540ce6d46bef4ae793","classifiedAt":"2026-07-02T22:55:51.032Z"},"335":{"community_note":"No organized opposition identified for Atlanta 1; EPD posted a 2022 air permit application for 1033 Jefferson St NW, while legal and noise/water disputes target QTS’s Fayetteville/Fairwater campus, not this site.","water_impact":"low","ai_evidence":"Hyperscale campus with 278 MW+ and dedicated Georgia Power substations, plus a 12 MW hyperscale anchor lease; public AI supercluster reports in the region concern Microsoft’s Fairwater site in Fayetteville, not Atlanta 1.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"QTS says its data centers use closed-loop/water-free cooling once operational and highlights a ‘water-free Freedom Design’ that cools without consuming water; no Atlanta 1–specific gallons/day or discharge concerns were found.","grid_note":"278 MW+ campus with three dedicated on-site Georgia Power substations; PSC adopted special terms for >100 MW customers and revised large-load pricing, and QTS arranged nearly 350 MW of new renewables in Atlanta.","citations":[{"title":"EPD PUBLIC ADVISORY GEORGIA AIR PROTECTION ...","url":"https://epd.georgia.gov/document/document/pa0622-1/download"},{"title":"Environmental group, residents file notice of intent to sue ...","url":"https://www.11alive.com/article/tech/science/environment/flint-riverkeeper-residents-notice-of-intent-to-sue-alleged-clean-water-act-violation-qts-data-center-fayetteville-georgia/85-cbb74ee3-00fa-48af-8e67-ded756ee0c96"},{"title":"Environmental Stewardship","url":"https://q.com/the-qts-difference/environmental-stewardship/"},{"title":"Pioneering Water Efficiency and Sustainability in Data ...","url":"https://q.com/resources/pioneering-water-efficiency-and-sustainability-in-data-center-operations/"},{"title":"Atlanta 1","url":"https://q.com/data-centers/atlanta-1/"}],"runId":"srun_c0e944bd89584b54c73eee1a2202f924","classifiedAt":"2026-07-02T22:55:51.032Z"},"336":{"community_note":"No organized opposition, lawsuits, or zoning/complaint actions specific to QTS Suwanee 1 DC1 were found in local notices; status: none active [7].","water_impact":"unknown","ai_evidence":"Public materials list DC1 as a colocation/hyperscale site (~26 MW) with no disclosed GPU/AI deployments or retrofits [1][2].","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No Suwanee DC1 gallons/day reported; listings show N+1 cooling redundancy [5], while QTS touts generic ‘water‑free cooling’ saving 48+ million gallons per data center annually, not tied to DC1 [6].","grid_note":"Approx. 26 MW at 300 Satellite Blvd [1]; QTS–Georgia Power agreement adds nearly 350 MW of new renewables to the Atlanta grid starting 2024 [4].","citations":[{"title":"News and Notices","url":"https://www.gwinnettcounty.com/government/departments/planning-development/news-notices"},{"title":"QTS Suwanee DC1 | 300 Satellite Boulevard NW, Atlanta","url":"https://datacenterhawk.com/marketplace/providers/qts/300-satellite-boulevard-nw/suwanee-dc1"},{"title":"Pioneering Water Efficiency and Sustainability in Data ...","url":"https://q.com/resources/pioneering-water-efficiency-and-sustainability-in-data-center-operations/"},{"title":"QTS Suwanee 1 DC1 Data Center in Atlanta (26 MW)","url":"https://www.datacentermap.com/usa/georgia/atlanta/qts-suwanee/"},{"title":"Suwanee 1","url":"http://www.qtsdatacenters.com/data-centers/atlanta-suwanee"}],"runId":"srun_c0e944bd89584b54819708cd16b1ec79","classifiedAt":"2026-07-02T22:55:51.032Z"},"337":{"community_note":"No Suwanee/DC2-specific organized opposition or lawsuits were found; notable Georgia pushback targets QTS Fayetteville (Clean Water Act notice) and county moratorium actions elsewhere, not this facility.","water_impact":"low","ai_evidence":"Listings describe DC2 as a 376,900‑sq‑ft facility at 120 Satellite Blvd NW with no public disclosures of DC2‑specific GPU clusters or AI tenants; QTS holds an NVIDIA DGX Colocation certification company‑wide, which does not confirm deployments at this site.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No Suwanee DC2 gallons/day were reported; QTS says its data centers use closed‑loop systems that don’t consume water for cooling once operational.","grid_note":"Listed at 24 MW and ~376,900 sq ft at 120 Satellite Blvd NW, with Georgia outlets noting new generation and 230–500 kV transmission are needed to serve statewide data‑center growth.","citations":[{"title":"Environmental group, residents file notice of intent to sue ...","url":"https://www.11alive.com/article/tech/science/environment/flint-riverkeeper-residents-notice-of-intent-to-sue-alleged-clean-water-act-violation-qts-data-center-fayetteville-georgia/85-cbb74ee3-00fa-48af-8e67-ded756ee0c96"},{"title":"DeKalb extends moratorium as data center backlash grows ...","url":"https://saportareport.com/dekalb-extends-moratorium-as-data-center-backlash-grows-across-georgia/columnists/adrianne-murchison/"},{"title":"Environmental Stewardship","url":"https://q.com/the-qts-difference/environmental-stewardship/"},{"title":"Pioneering Water Efficiency and Sustainability in Data ...","url":"https://q.com/resources/pioneering-water-efficiency-and-sustainability-in-data-center-operations/"},{"title":"A data center drained 30M gallons of water unnoticed","url":"https://www.politico.com/news/2026/05/08/georgia-data-centers-water-00909988"}],"runId":"srun_c0e944bd89584b543bef237c62e500d6","classifiedAt":"2026-07-02T22:55:51.032Z"},"338":{"community_note":"Residents organized opposition with a 2023 petition against QTS, and in 2026 pushed back on a separate new data center proposal tracked by the City; the QTS campus continues while the other developer’s process ended without approval.","water_impact":"moderate","ai_evidence":"Microsoft launched an “AI superfactory” data center at the QTS Fayetteville campus, and Microsoft describes its Atlanta Fairwater AI datacenter as part of that superfactory working across states in near real time.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Reports say roughly 30 million gallons were drawn unmetered during construction, while QTS says its closed-loop design uses no cooling water once operational.","grid_note":"Georgia Power credits expected revenue from large customers like data centers with supporting a three-year freeze on base rates.","citations":[{"title":"Fayetteville Council Approves Agreement with QTS Data ...","url":"https://www.fayette-news.net/news/fayetteville-council-approves-agreement-with-qts-data-center/article_ab0b0716-0fb4-11ee-9b7d-f3974dacf3d5.html"},{"title":"Data Center Discussion | Fayetteville, GA","url":"https://www.fayetteville-ga.gov/746/Data-Center-Discussion"},{"title":"A data center drained 30M gallons of water unnoticed","url":"https://www.politico.com/news/2026/05/08/georgia-data-centers-water-00909988"},{"title":"Facts about the QTS Fayetteville Data Center Campus ...","url":"https://fayettecountyga.gov/news_detail_T2_R185.php"},{"title":"Microsoft debuts 'AI superfactory' data center south of Atlanta","url":"https://www.ajc.com/business/2025/11/microsofts-newest-ai-superfactory-opens-at-sprawling-fayetteville-campus/"}],"runId":"srun_c0e944bd89584b54f6473d2f3efd3ee7","classifiedAt":"2026-07-02T22:55:51.032Z"},"339":{"community_note":"Residents raised low water-pressure concerns tied to QTS’s Fayetteville campus, and the City of Fayetteville now prohibits new data centers citywide (as of Mar 5, 2026) while the already-approved QTS project continues [1][2][3].","water_impact":"moderate","ai_evidence":"ATL2 East is billed as a 2M‑sq‑ft expansion designed for AI and hyperscale cloud, and the broader QTS Fayetteville campus includes Microsoft’s Fairwater AI superfactory with densely packed Nvidia chips used for training; ATL2 East–specific GPU/tenant details have not been disclosed [1][2][3][4].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"QTS says the campus uses a closed-loop cooling system that will not use water for cooling once operational, while county reporting found more than 29 million gallons went unaccounted during hookups and residents experienced low water pressure [1][2][3].","grid_note":"Georgia adopted new power-usage terms for high‑load data centers (15‑year contracts and minimum billing) and reviewed nearly 10,000 MW of new resources amid data‑center growth, while local reporting says the Fayetteville QTS complex could draw power comparable to about a million U.S. homes [1][2][3].","citations":[{"title":"Data Center Discussion | Fayetteville, GA","url":"https://www.fayetteville-ga.gov/746/Data-Center-Discussion"},{"title":"A data center drained 30M gallons of water unnoticed","url":"https://www.politico.com/news/2026/05/08/georgia-data-centers-water-00909988"},{"title":"Fayetteville, Georgia - Data Centers","url":"https://q.com/data-centers/fayetteville/"},{"title":"A data center drained 30M gallons of water unnoticed","url":"https://www.politico.com/news/2026/05/08/georgia-data-centers-water-00909988"},{"title":"QTS: ATL2 East Campus Data Center","url":"https://baxtel.com/data-center/qts-atl2-east-campus"}],"runId":"srun_c0e944bd89584b54b09f57de5208c670","classifiedAt":"2026-07-02T22:55:51.032Z"},"341":{"community_note":"No organized opposition or litigation was found; the only nearby civic item is Alpharetta’s PH-26-12 “Royal 400 Data Center – Change of Condition” regarding an expansion at an existing data center (status not cited here). [8][9]","water_impact":"unknown","ai_evidence":"Listings show ATL01 as a conventional colocation campus (ATL01A ~7MW, ATL01B 12MW) served by Georgia Power with no disclosed GPU/AI tenant or cluster; STACK’s DGX-ready program is portfolio-level and does not name ATL01 as an AI site. [1][2][5]","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific water-use or source data were found; the operator describes portfolio-level options like purple-pipe reuse to reduce potable water for evaporative cooling [13].","grid_note":"Around 19–20MW across ATL01A (~7MW) and ATL01B (12MW planned) served by Georgia Power—below Georgia’s >100MW large-load billing threshold; Georgia Power’s IRP adds 1,000+ miles of new transmission and PSC approved large-load pricing changes, with no ATL01-specific upgrades cited [3][4][10][11][12].","citations":[{"title":"Public Hearings - PH-26-12 Royal 400 Data Center","url":"https://www.alpharetta.ga.us/public-hearings?contentId=fe43b6e8-d7aa-4bff-a5a0-745b73b5ac92"},{"title":"Transforming Cooling With Sustainable Water Solutions","url":"https://www.stackinfra.com/resources/thought-leadership/a-modern-economy-transforming-data-center-cooling-with-sustainable-water-solutions/"},{"title":"STACK Infrastructure ATL01A Data Center in Atlanta (8 MW)","url":"https://www.datacentermap.com/usa/georgia/atlanta/stack-infrastructure-atl01a/"},{"title":"STACK Infrastructure ATL01B Data Center in Atlanta (12 MW)","url":"https://www.datacentermap.com/usa/georgia/atlanta/stack-infrastructure-atl01b/"},{"title":"STACK Offers AI Hosting with NVIDIA DGX Program","url":"https://www.stackinfra.com/about/news-press/press-releases/stack-infrastructure-provides-a-path-for-customers-to-leverage-ai-in-the-data-center-with-the-nvidia-dgx-ready-program/"}],"runId":"srun_c0e944bd89584b546af77181959f6215","classifiedAt":"2026-07-02T22:55:51.317Z"},"342":{"community_note":"No organized opposition or lawsuits identified; the project proceeded through ARC’s DRI review with planning/environmental comments noted.","water_impact":"moderate","ai_evidence":"Marketed as a 160 MW hyperscale campus with the Atlanta market \"poised to support the rapid growth of AI,\" but no ATL02‑specific GPU cluster or AI tenant announcements were identified.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"DRI estimates ~0.031 MGD potable water and ~0.017 MGD sewage via the Douglasville‑Douglas County Water & Sewer Authority; service is from the public main on Factory Shoals Road in a water‑supply watershed.","grid_note":"160 MW campus; Georgia Power’s planning discourse projects up to 9.4 GW of new load and has prompted ratepayer‑impact concerns and tariff changes for large users.","citations":[{"title":"2023 Lithia Springs Data Center DRI 4087","url":"http://documents.atlantaregional.com/Land%20Use/Reviews/ID5376/2023%20Lithia%20Springs%20Data%20Center%20DRI%204087%20-%20Final%20Report.pdf"},{"title":"Data Center Growth in Metro Atlanta - ARC","url":"https://atlantaregional.org/data-centers/"},{"title":"2023 Lithia Springs Data Center DRI 4087","url":"http://documents.atlantaregional.com/Land%20Use/Reviews/ID5376/2023%20Lithia%20Springs%20Data%20Center%20DRI%204087%20-%20Preliminary%20Report%20and%20Comments%20Request.pdf"},{"title":"Data Center Growth in Metro Atlanta - ARC","url":"https://atlantaregional.org/data-centers/"},{"title":"ATL02","url":"https://www.stackinfra.com/locations/americas/atlanta/atl02/"}],"runId":"srun_c0e944bd89584b54254f8c30ba60867a","classifiedAt":"2026-07-02T22:55:51.317Z"},"343":{"community_note":"Douglas County commissioners imposed a 90‑day moratorium on new data centers after resident concerns about growth and infrastructure impacts; no lawsuit or action specifically naming T5@Atlanta I was found.","water_impact":"unknown","ai_evidence":"T5 describes Atlanta I as serving hyperscale cloud and enterprise; a 2017 press release cites a multi‑MW Fortune 100 enterprise tenant at T5@Atlanta, while T5’s dense‑GPU case study and the AI‑oriented Atlanta IV campus are separate and not linked to this building.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No facility-specific water data was found; regional guidance notes closed-loop systems can use less than 100,000 gallons per day, whereas evaporative systems can be much higher.","grid_note":"Part of a ~220 MW hyperscale campus at 1456 Trae Ln; Georgia regulators approved large new generation and investments to serve data‑center growth, with multi‑billion‑dollar costs and potential customer bill impacts.","citations":[{"title":"Douglas County imposes 90-day halt on data centers","url":"https://www.fox5atlanta.com/news/douglas-county-data-centers-moratorium"},{"title":"Douglas County, Georgia enacts data center moratorium","url":"https://www.bizjournals.com/atlanta/news/2025/03/21/douglas-county-data-center-moratorium.html"},{"title":"County staff: moratorium and utility rules slowed data center ...","url":"https://citizenportal.ai/articles/7275765/georgia/douglas-county/county-staff-moratorium-and-utility-rules-slowed-data-center-boom-one-application-remains-pending"},{"title":"Data Centers and Water Resources in Our Region","url":"https://northgeorgiawater.org/residents-schools-businesses/conserve-our-water/data-centers-and-water-resources-in-our-region/"},{"title":"T5 @ Atlanta I","url":"https://t5datacenters.com/locations/t5-atlanta-i/"}],"runId":"srun_c0e944bd89584b54dfa7a6e33f719e3b","classifiedAt":"2026-07-02T22:55:51.317Z"},"344":{"community_note":"Douglas County commissioners approved a 90‑day moratorium on new data centers to study impacts after resident objections; no T5@Atlanta III–specific opposition or litigation was identified.","water_impact":"unknown","ai_evidence":"T5 markets Atlanta III as a hyperscale campus supporting up to 50 kW/rack with air and liquid cooling, and Building 1 is a 20 MW, 162,500 sq ft facility.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day or source details are disclosed for T5@Atlanta III Building 1; regional coverage highlights Douglas County water management and references recycled‑water cooling practices at another operator’s Douglas County site.","grid_note":"20 MW building on a 300 MW campus; Georgia Power projects about 8,500 MW of load growth and reports data centers will consume ~80% of new generation, with PSC‑approved pricing changes for large‑load customers.","citations":[{"title":"Douglas County imposes 90-day halt on data centers","url":"https://www.fox5atlanta.com/news/douglas-county-data-centers-moratorium"},{"title":"Douglas County, Georgia enacts data center moratorium","url":"https://www.bizjournals.com/atlanta/news/2025/03/21/douglas-county-data-center-moratorium.html"},{"title":"Data centers use a lot of water. Georgia counties and ...","url":"https://www.wabe.org/data-centers-use-a-lot-of-water-georgia-counties-and-conservationists-are-looking-for-solutions/"},{"title":"Georgia – Google Data Center Location","url":"https://datacenters.google/locations/georgia/"},{"title":"T5 @ Atlanta III","url":"https://t5datacenters.com/locations/t5-atlanta-iii/"}],"runId":"srun_c0e944bd89584b5499ffc0924a5448dc","classifiedAt":"2026-07-02T22:55:51.317Z"},"345":{"community_note":"Local advocates in South Fulton/Palmetto have organized against data-center growth while Palmetto’s Jan. 7, 2026 agenda addressed T5 ATL IV; no facility-specific lawsuits or nuisance complaints were identified.","water_impact":"moderate","ai_evidence":"T5 says ATL IV will enable advanced AI capabilities with air and liquid cooling for high power densities and a 200 MW campus scalable toward 300 MW; no public filings name specific GPU tenants or training clusters.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"ARC’s DRI lists water demand of 0.01352 MGD and sewer demand of 0.011350 MGD with City of Atlanta water and Fulton County sewer service, alongside a recommendation to use waterless or near-waterless cooling where feasible.","grid_note":"Georgia Power says large data centers pay the full costs to serve them, and T5’s ATL IV announcement highlights scalability toward a 300 MW campus.","citations":[{"title":"The City of Palmetto","url":"https://www.citypalmetto.com/media/2566"},{"title":"Black Community Fights Georgia's Data Center Boom","url":"https://atlanta.capitalbnews.org/black-community-in-south-fulton-fight-georgias-data-center-boom/"},{"title":"2025 T5 ATL IV 4465 - Final Report.pdf","url":"http://documents.atlantaregional.com/Land%20Use/Reviews/ID6544/2025%20T5%20ATL%20IV%204465%20-%20Final%20Report.pdf"},{"title":"T5 @ Atlanta IV","url":"https://t5datacenters.com/locations/t5-atlanta-iv/"},{"title":"T5 Finalizes Land Acquisition in Atlanta to Support a 300 ...","url":"https://www.prnewswire.com/news-releases/t5-finalizes-land-acquisition-in-atlanta-to-support-a-300-mw-data-center-campus-302232913.html"}],"runId":"srun_c0e944bd89584b545457db4527846b61","classifiedAt":"2026-07-02T22:55:51.317Z"},"346":{"community_note":"No organized site-specific opposition was found; Douglas County imposed a 90‑day data center moratorium to study impacts, and Georgia EPD noticed an air permit application for The Keep Campus at 1–4 Switch Way.","water_impact":"unknown","ai_evidence":"The campus is up to 150 MW and its announced anchor tenant is a global logistics company, with no reporting of a GPU supercluster or AI inference tenant at 1 Switch Way; public AI deployments cited by Switch are in other markets (e.g., Las Vegas).","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No site-specific water-use or discharge figures were disclosed; Switch claims it reuses water via proprietary processing, and Georgia counties have enacted data-center water restrictions.","grid_note":"Planned for up to 150 MW on Georgia Power; regulators/reporting indicate large new capacity for data centers (about 80% of proposed energy) and PSC price-structure changes for large-load customers.","citations":[{"title":"Douglas County imposes 90-day halt on data centers","url":"https://www.fox5atlanta.com/news/douglas-county-data-centers-moratorium"},{"title":"EPD PUBLIC ADVISORY GEORGIA AIR PROTECTION ...","url":"https://epd.georgia.gov/document/document/pa1024-2/download"},{"title":"A 'wave' of data center ordinances sweep through GA ...","url":"https://www.gpb.org/news/2025/10/22/wave-of-data-center-ordinances-sweep-through-ga-counties-how-strict-are-they"},{"title":"Water as a Key Consideration for Sustainable Data Centers","url":"https://www.switch.com/water-as-a-key-consideration-for-sustainable-data-centers/"},{"title":"A 'wave' of data center ordinances sweep through GA ...","url":"https://www.gpb.org/news/2025/10/22/wave-of-data-center-ordinances-sweep-through-ga-counties-how-strict-are-they"}],"runId":"srun_c0e944bd89584b540eaff5f43be950be","classifiedAt":"2026-07-02T22:55:51.317Z"},"347":{"community_note":"Douglas County imposed a 90‑day moratorium on new data centers to study impacts; concern was voiced at the meeting, but the action was not targeted specifically at Google and was time‑limited [1].","water_impact":"moderate","ai_evidence":"","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Cooling uses recycled/industrial water at the Douglas County campus since 2012, prioritizing non‑potable/reclaimed sources; no verified gallons/day figure is publicly reported [2][3].","grid_note":"Georgia regulators approved new terms allowing Georgia Power to include minimum billing and other provisions in service agreements with large data center customers (100+ MW), aiming to manage costs and risk [5].","citations":[{"title":"Douglas County imposes 90-day halt on data centers","url":"https://www.fox5atlanta.com/news/douglas-county-data-centers-moratorium"},{"title":"Helping the Hooch with water conservation at our Douglas ...","url":"https://green.googleblog.com/2012/03/helping-hooch-with-water-conservation.html"},{"title":"Advancing responsible water use at our data centers","url":"https://datacenters.google/water/"},{"title":"Google Announces $300M Data Center Expansion in ...","url":"https://elevatedouglas.com/google-announces-300m-data-center-expansion-in-georgia/"},{"title":"DATA CENTER FACT SHEET","url":"https://psc.ga.gov/site/downloads/datacenterfactsheet.pdf"}],"runId":"srun_c0e944bd89584b54c9080fa7efef34ff","classifiedAt":"2026-07-02T22:55:51.317Z"},"348":{"community_note":"No organized opposition specific to Google’s Douglas County campus; the county imposed a 90‑day moratorium and reviewed projects like the Rock House Road data center, but those actions targeted new proposals, not the existing Google facility.","water_impact":"moderate","ai_evidence":"Google’s Douglas County page lists the campus and recycled‑water cooling but does not disclose any site‑specific GPU/TPU clusters or AI build‑outs.","grid_impact":"low","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Uses recycled (non‑potable) water for 100% of cooling; no site‑specific gallons/day disclosed.","grid_note":"No site‑specific grid upgrades identified; the utility states data centers pay rates designed to cover the full cost of service.","citations":[{"title":"Douglas County imposes 90-day halt on data centers","url":"https://www.fox5atlanta.com/news/douglas-county-data-centers-moratorium"},{"title":"2023 Rock House Road Data Center Site DRI 4078","url":"https://documents.atlantaregional.com/Land%20Use/Reviews/ID5383/2023%20Rock%20House%20Road%20Data%20Center%20Site%20DRI%204078%20-%20Final%20Report.pdf"},{"title":"Georgia – Google Data Center Location","url":"https://datacenters.google/locations/georgia/"},{"title":"Helping the Hooch with water conservation at our Douglas ...","url":"https://green.googleblog.com/2012/03/helping-hooch-with-water-conservation.html"},{"title":"Data centers use a lot of water. Georgia counties and ...","url":"https://www.wabe.org/data-centers-use-a-lot-of-water-georgia-counties-and-conservationists-are-looking-for-solutions/"}],"runId":"srun_c0e944bd89584b5483602a562a3e9058","classifiedAt":"2026-07-02T22:55:51.317Z"},"349":{"community_note":"In March 2025, Douglas County commissioners voted 4-1 to impose a 90‑day moratorium on new data centers amid resident concerns, and Georgia EPD posted public advisories for Microsoft’s FTY01 air permits at 1601 North River Road; no site-specific lawsuits were found.","water_impact":"high","ai_evidence":"Facility listings note the site as an Azure East US 3 campus with air cooling and do not detail GPU clusters, while Microsoft’s Atlanta ‘Fairwater’ facility is explicitly characterized as an AI data center housing densely packed Nvidia chips and tied to an AI superfactory.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"ARC’s DRI review for 1601 North River Road estimates 1.05 MGD water demand and 0.266 MGD sewage flow, and Microsoft says it buys water from East Point, Atlanta, and the Douglasville‑Douglas County Water & Sewer Authority and uses water cooling less than 15% of the year on days above 85°F.","grid_note":"Georgia’s PSC/Georgia Power materials cite more than 1,000 miles of new transmission and major resource additions for large-load growth, while Microsoft’s PSC filing agrees most data center load growth is real but warns about over‑forecasting near term.","citations":[{"title":"Douglas County imposes 90-day halt on data centers","url":"https://www.fox5atlanta.com/news/douglas-county-data-centers-moratorium"},{"title":"EPD PUBLIC ADVISORY GEORGIA AIR PROTECTION ...","url":"https://epd.georgia.gov/document/document/pa0922-1/download"},{"title":"REGIONAL REVIEW FINDING","url":"http://documents.atlantaregional.com/Land%20Use/Reviews/ID3152/ARC%20Final%20Report%20-%20FTY01%203426.pdf"},{"title":"Microsoft datacenters in Georgia","url":"https://local.microsoft.com/wp-content/uploads/2025/10/Microsoft-datacenters-in-Georgia.pdf"},{"title":"Atlanta Douglasville Campus - Microsoft (Azure)","url":"https://www.ocolo.io/colocation/microsoft-azure/atlanta-douglasville-campus/"}],"runId":"srun_c0e944bd89584b543db844f959b088ed","classifiedAt":"2026-07-02T22:55:51.317Z"},"350":{"community_note":"Fayetteville, GA residents and officials opposed large data-center development at the QTS/Project Excalibur campus hosting Microsoft Fairwater, and the city changed its zoning to effectively ban data centers in business center districts.","water_impact":"high","ai_evidence":"Microsoft positions Fairwater Atlanta as part of its Azure AI “superfactory” and the company’s second Fairwater AI datacenter, with industry reporting noting a two‑story AI facility using closed‑loop liquid cooling and densely packed Nvidia chips.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"More than 29 million gallons of unaccounted-for water were drawn at the broader QTS/Project Excalibur campus with local low-pressure complaints, while the Fairwater AI facility itself “primarily uses a closed-loop liquid cooling system.”","grid_note":"Very large load (~433 MW capacity) at Microsoft Fairwater Atlanta, served by Georgia Power.","citations":[{"title":"Data Center Discussion | Fayetteville, GA","url":"https://www.fayetteville-ga.gov/746/Data-Center-Discussion"},{"title":"All Georgia data center ordinances — from most to least ...","url":"https://www.ledger-enquirer.com/news/environment/article315964444.html"},{"title":"A data center drained 30M gallons of water unnoticed","url":"https://www.politico.com/news/2026/05/08/georgia-data-centers-water-00909988"},{"title":"Microsoft connects datacenters to build its first AI superfactory","url":"https://news.microsoft.com/source/features/ai/from-wisconsin-to-atlanta-microsoft-connects-datacenters-to-build-its-first-ai-superfactory/"},{"title":"Microsoft launches Atlanta Fairwater AI data center","url":"https://www.datacenterdynamics.com/en/news/microsoft-launches-atlanta-fairwater-data-center-two-stories-no-ups-or-gen-sets/"}],"runId":"srun_c0e944bd89584b54f8105e48fcc8aaf2","classifiedAt":"2026-07-02T22:55:51.317Z"},"351":{"community_note":"Residents and activists have pushed back on Union City data center plans, and on March 24, 2026 the city adopted a 180‑day moratorium on accepting rezonings/conditional‑use applications while zoning rules are reviewed.","water_impact":"moderate","ai_evidence":"Union City is described as a Microsoft self‑use Azure hyperscale campus; Microsoft’s GPU‑dense AI ‘superfactory’ footprint in Georgia is tied to the Fairwater sites near Fayetteville, not Union City.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"ARC DRI 4342 for the Stonewall Tell project reports 0.030 MGD water demand and 0.025 MGD estimated sewer flow.","grid_note":"Roughly a 324 MW campus load, with Georgia PSC considering nearly 10,000 MW of new capacity tied to data‑center growth.","citations":[{"title":"Home | City of Union City, GA","url":"https://www.unioncityga.gov/Home"},{"title":"Union City residents push back against proposed data center","url":"https://www.fox5atlanta.com/news/union-city-residents-push-back-against-proposed-data-center"},{"title":"2025 Stonewall Tell Data Center DRI 4342","url":"http://documents.atlantaregional.com/Land%20Use/Reviews/ID5486/2025%20Stonewall%20Tell%20Data%20Center%20DRI%204342%20-%20Final%20Report.pdf"},{"title":"Next-generation datacenters consume zero water for cooling","url":"https://www.microsoft.com/en-us/microsoft-cloud/blog/2024/12/09/sustainable-by-design-next-generation-datacenters-consume-zero-water-for-cooling/"},{"title":"Microsoft Union City Campus (Site Code: ATL11)","url":"https://mlq.ai/data-centers/usa/georgia/union-city/microsoft-atlanta-city/"}],"runId":"srun_c0e944bd89584b54b268799b453935e3","classifiedAt":"2026-07-02T22:55:51.317Z"},"352":{"community_note":"East Point officials objected in 2022 to Microsoft taking service from Georgia Power rather than the city utility, and Microsoft has been holding community update meetings about the project [2][3].","water_impact":"unknown","ai_evidence":"Microsoft describes East Point as a hyperscale Azure datacenter campus with Phase 1 including one building and a substation, but there is no public evidence of AI GPU superclusters or AI tenants at this site; the Atlanta-area ‘Fairwater’ AI superfactory is reported at a different QTS Fayetteville campus [1][5][4].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No East Point–specific gallons/day or water source disclosures were found; Microsoft has touted a 2024 AI-optimized design that uses zero operational cooling water, but this is not tied to East Point [10].","grid_note":"Phase 1 includes on-site substation infrastructure, while Georgia regulators approved new rate structures for large (>100 MW) data-center loads to protect ratepayers and a major grid expansion with new natural-gas plants to meet surging data-center demand [1][7][8].","citations":[{"title":"East Point livid over Microsoft opting for Georgia Power ...","url":"https://myhomerulenews.com/east-point-livid-over-microsoft-opting-for-georgia-power-over-city-utility-p1145-109.htm"},{"title":"7:30 PM 📍 Atlanta Community Food Bank HQ 3400 N. ...","url":"https://www.instagram.com/p/DLXtJZkMYzq/"},{"title":"Inside Microsoft's two-decade push to cut water intensity while ...","url":"https://blogs.microsoft.com/blog/2026/06/24/inside-microsofts-two-decade-push-to-cut-water-intensity-while-scaling-for-growth/"},{"title":"East Point, Georgia datacenter project update","url":"https://local.microsoft.com/blog/east-point-georgia-datacenter-project-update/"},{"title":"Microsoft East Point (ATL07)","url":"https://www.datacentermap.com/usa/georgia/atlanta/microsoft-east-point-atl07/"}],"runId":"srun_c0e944bd89584b546cc093ea20a02414","classifiedAt":"2026-07-02T22:55:51.317Z"},"354":{"community_note":"Environmental groups are challenging a 'pop-up' power plant being built to serve the Covington data center, and the City of Covington enacted a 180‑day moratorium on new data‑center requests; complaints are pending with regulators.","water_impact":"moderate","ai_evidence":"Local reporting identifies AWS/Amazon Data Services as developing a multi‑building data center campus in Covington; no source confirms site‑specific GPU superclusters or AI tenants.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"A $100M reclaimed‑water treatment and cooling facility was approved to serve the Alcovy Road project, reducing reliance on freshwater sources.","grid_note":"Third‑party tracking pegs Building 1 at about 65 MW, and a 90‑MW 'off‑grid' plant is being built next door to serve the site.","citations":[{"title":"Groups alert Georgia regulators to unpermitted ...","url":"https://www.selc.org/press-release/groups-alert-georgia-regulators-to-unpermitted-construction-of-pop-up-power-plant-data-center/"},{"title":"City of Covington imposes moratorium on new data center ...","url":"https://www.covnews.com/news/cities/city-covington-imposes-moratorium-new-data-center-requests/"},{"title":"DRI #4428 – Gregory Road Data Center – City of Covington","url":"https://negrc.org/uploads/sites/4/2025/05/DRI4428.FinalReport.pdf"},{"title":"AWS plans data center in Covington, Georgia - DCD","url":"https://www.datacenterdynamics.com/en/news/aws-plans-data-center-in-covington-georgia/"},{"title":"DATA CENTER FACT SHEET","url":"https://psc.ga.gov/site/downloads/datacenterfactsheet.pdf"}],"runId":"srun_c0e944bd89584b54e170c88c04d8a9a6","classifiedAt":"2026-07-02T22:55:51.317Z"},"355":{"community_note":"Pushback centers on zoning/annexations and growth impacts: Covington enacted a 180‑day moratorium on new data center requests, and Newton County commissioners objected to three annexations for planned data center sites.","water_impact":"moderate","ai_evidence":"AWS is planning a data center in Covington, GA, and a third‑party listing shows a planned 65 MW first building, but there are no site‑specific disclosures of GPUs/Trainium or AI clusters tied to this campus.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Covington approved a $100M reclaimed‑water treatment and cooling facility for the Amazon campus to use recycled water for cooling and is expected to preserve about 45M gallons of freshwater per year by 2030.","grid_note":"Georgia regulators approved large‑load tariff changes and considered plans tied to the data center boom, while Georgia Power notes data centers generally require area system upgrades.","citations":[{"title":"City of Covington imposes moratorium on new data center ...","url":"https://www.covnews.com/news/cities/city-covington-imposes-moratorium-new-data-center-requests/"},{"title":"$100 million Amazon water facility for Covington data ...","url":"https://www.wsbtv.com/news/local/newton-county/100-million-amazon-water-facility-covington-data-center-moving-forward/AHKDDWW5MBCHNFGRMCVVKUW55A/"},{"title":"$100 million Amazon water facility for Covington data ...","url":"https://www.yahoo.com/news/articles/100-million-amazon-water-facility-214734510.html"},{"title":"How AWS uses recycled water in data centers","url":"https://sustainability.aboutamazon.com/stories/how-aws-uses-recycled-water-in-data-centers"},{"title":"AWS plans data center in Covington, Georgia - DCD","url":"https://www.datacenterdynamics.com/en/news/aws-plans-data-center-in-covington-georgia/"}],"runId":"srun_c0e944bd89584b549bc8e2df7bbbf397","classifiedAt":"2026-07-02T22:55:51.317Z"},"356":{"community_note":"Nearby residents have raised dry-well/brown-water concerns and sought EPA review; Meta cites an independent study disputing causation, and no organized lawsuit or local anti-project campaign was found.","water_impact":"high","ai_evidence":"Meta characterizes the Stanton Springs campus as infrastructure for its apps and technologies, with no site‑specific disclosure of GPU superclusters or AI tenants; NVIDIA’s 2026 GB300 announcement covers Meta’s on‑prem data centers generally and does not tie deployments to this campus.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Officials have said the campus uses about 10% of Newton County’s daily water, while Meta highlights free‑air cooling and an independent study that found no impact on nearby wells.","grid_note":"Served by Walton EMC with dedicated solar partnerships via Silicon Ranch, and third‑party data places campus capacity in the several‑hundred‑MW range (around 300 MW, with some reports up to 435 MW).","citations":[{"title":"Their Water Taps Ran Dry When Meta Built Next Door","url":"https://www.nytimes.com/2025/07/14/technology/meta-data-center-water.html"},{"title":"EPA Official Agrees to Review Data Center Impacts on ...","url":"https://news.bloomberglaw.com/environment-and-energy/epa-to-investigate-meta-data-center-link-to-contaminated-water"},{"title":"Data center accused of muddying Georgia county's ...","url":"https://www.newsnationnow.com/us-news/southeast/meta-data-center-georgia-muddy-water/"},{"title":"UPDATE: Meta says an independent groundwater study ...","url":"https://www.facebook.com/CBSNewsAtlanta/posts/update-meta-says-an-independent-groundwater-study-found-its-georgia-data-center-/1506226341517279/"},{"title":"Hello, Georgia! - Meta Data Centers","url":"https://datacenters.atmeta.com/2021/03/hello-georgia/"}],"runId":"srun_c0e944bd89584b545620fc2e1b6183a0","classifiedAt":"2026-07-02T22:55:51.317Z"},"358":{"community_note":"Residents across Southwest Atlanta are organizing against the rapid expansion of data centers, and the City of South Fulton adopted a Data Center Ordinance with 100–150 ft residential buffers; no project-specific lawsuit was identified.","water_impact":"unknown","ai_evidence":"Public reporting characterizes the project as a proposed multi-building data center campus with the end user undisclosed and no mention of GPUs, AI tenants, or liquid-cooling retrofits.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No public figures for cooling water use (gallons/day) or a specified cooling method have been reported for this project.","grid_note":"Planned around 120 MW of load for a ~1.2M sq ft campus, with Georgia Power indicating data centers are affecting electricity rates and grid reliability and necessitating system upgrades.","citations":[{"title":"How Atlanta Communities Are Stopping Data Center ...","url":"https://atlanta.capitalbnews.org/atlanta-communities-fight-data-centers/"},{"title":"City of South Fulton Hosts Town Hall to Educate Public on ...","url":"http://www.cityofsouthfultonga.gov/m/newsflash/Home/Detail/777"},{"title":"1.2M square foot data center is proposed in Fairburn, south ...","url":"https://www.ajc.com/news/business/12m-square-foot-data-center-campus-floated-for-fairburn/4AOYENEM25GE3ETTQK4YKQY5X4/"},{"title":"Data Centers & Your Georgia Power Bill | FAQs & Updates","url":"https://www.georgiapower.com/data-centers.html"},{"title":"Large data center campus planned outside Atlanta, Georgia","url":"https://www.datacenterdynamics.com/en/news/large-data-center-campus-planned-outside-atlanta-georgia/"}],"runId":"srun_c0e944bd89584b5410791671a3f981e5","classifiedAt":"2026-07-02T23:02:26.267Z"},"359":{"community_note":"No organized opposition or lawsuits were identified; Union City processed rezoning/public-hearing items for the 7170 Red Oak Road data center, indicating a standard review process to date.","water_impact":"moderate","ai_evidence":"Announced as a 324MW hyperscale campus with reporting that Microsoft is the customer, but no site‑specific GPU/AI cluster details for ATL03; Microsoft’s separate Fairwater 2 near Atlanta is an AI site with densely packed Nvidia chips.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Regional planners recommended advanced “waterless” or “near waterless” cooling due to potential peak‑day water stress; no specific daily water‑use figures were identified in the reviewed public documents.","grid_note":"Part of a 324MW campus served by Georgia Power; regulators froze base rates through 2028 and stated that ratepayers will not subsidize data centers.","citations":[{"title":"Agenda","url":"https://www.unioncityga.gov/files/assets/city/v/1/community-development/documents/sept-2025-pzc-agenda.pdf"},{"title":"czim-august-public-notice-agenda_revised.docx","url":"https://www.unioncityga.gov/files/assets/city/v/1/community-development/documents/pzc/czim-august-public-notice-agenda_revised.docx"},{"title":"2024 ATL03 Red Oak DRI 4315 - Final Report.pdf","url":"http://documents.atlantaregional.com/Land%20Use/Reviews/ID5471/2024%20ATL03%20Red%20Oak%20DRI%204315%20-%20Final%20Report.pdf"},{"title":"EdgeConneX and TA Realty plan 324MW campus outside ...","url":"https://www.datacenterdynamics.com/en/news/edgeconnex-and-ta-realty-plan-324mw-campus-outside-atlanta-georgia/"},{"title":"TA Realty, EdgeConneX to Build Microsoft Data Center Campus - Commercial Property Executive","url":"https://www.commercialsearch.com/news/ta-realty-edgeconnex-eye-microsoft-hyperscale-campus/"}],"runId":"srun_c0e944bd89584b54cad131c070cf03ea","classifiedAt":"2026-07-02T22:55:51.317Z"},"360":{"community_note":"Clayton County’s Board of Commissioners has imposed and extended a countywide moratorium on new data centers (most recently via Resolution 2026-134 on June 16, 2026), indicating official pushback on further approvals.","water_impact":"unknown","ai_evidence":"Developers announced a 324 MW hyperscale campus for the Atlanta market to meet high-growth demand (including AI and cloud), but no public reporting names a GPU supercluster, AI tenant, or liquid-cooling deployment tied to this site.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day or cooling design are published; marketing materials only note a 16-inch water main and an 8-inch sanitary sewer serving the site.","grid_note":"A $959M incentive for a roughly 180 MW build at Ellenwood signals a large new Georgia Power load, aligning with statewide plans for substantial new generation/transmission to meet fast-rising large-load demand.","citations":[{"title":"Planning & Zoning - Clayton County, Georgia","url":"https://www.claytoncountyga.gov/government/community-economic-development/planning-zoning/"},{"title":"TA Realty: Ellenwood, ATL Data Center","url":"https://baxtel.com/data-center/ta-realty-ellenwood-atl"},{"title":"TA Realty and EdgeConneX® to Develop 324 MW ...","url":"https://www.businesswire.com/news/home/20240716972388/en/TA-Realty-and-EdgeConneX-to-Develop-324-MW-Hyperscale-Campus-in-Atlanta-GA"},{"title":"TA Realty - 4350 E Tanners Church Data Center in Atlanta","url":"https://www.datacentermap.com/usa/georgia/atlanta/ta-realty-4350-e-tanners-church/"},{"title":"EdgeConneX and TA Realty plan 324MW campus outside ...","url":"https://www.datacenterdynamics.com/en/news/edgeconnex-and-ta-realty-plan-324mw-campus-outside-atlanta-georgia/"}],"runId":"srun_c0e944bd89584b5485294b13864172ab","classifiedAt":"2026-07-02T22:55:51.317Z"},"361":{"community_note":"Active opposition by Palmetto-area residents over community character/greenspace and environmental concerns; Coweta approved rezoning (3–2) and then paused new data‑center applications via a moratorium while drafting rules.","water_impact":"moderate","ai_evidence":"No public confirmations of GPU training clusters, named AI tenants, or liquid‑cooling retrofits; filings describe a 2.1m sq ft, eight‑building campus.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Developer indicates primarily air-cooled operations and the DRI notes water may be used in some cooling modes; no publicly confirmed daily withdrawal figures were found.","grid_note":"At an estimated 200 MW, this would be a large new Georgia Power load; statewide, the utility projects ~8,500 MW of load growth and regulators have frozen base rates and emphasized protections for existing ratepayers as data‑center demand surges.","citations":[{"title":"Palmetto residents unclear on Project Peach as Coweta ...","url":"https://www.wabe.org/palmetto-residents-unclear-on-project-peach-data-center-as-coweta-commissioners-pauses-data-center-development/"},{"title":"Commissioners approve rezoning for Project Peach data ...","url":"https://www.times-herald.com/news/commissioners-approve-rezoning-for-project-peach-data-center/article_f9240bfb-4284-4474-9996-6c32e6504e34.html"},{"title":"Coweta County issues moratorium to pause data center ...","url":"https://www.ajc.com/news/business/coweta-county-issues-moratorium-to-pause-data-center-projects/2J464ISZIVB4VMFSBXZXNVHZXE/"},{"title":"DEVELOPMENTS OF REGIONAL IMPACT (DRI) REPORT ...","url":"https://cms3.revize.com/revize/chattahoocheehillsga/TRRC%20Report%20of%20Findings%20Project%20Peach%20Coweta%20County.pdf"},{"title":"Coweta County residents concerned over proposed 320- ...","url":"https://www.fox5atlanta.com/news/coweta-county-concerns-project-peach-data-center-palmetto"}],"runId":"srun_c0e944bd89584b543f816562bd5e15ac","classifiedAt":"2026-07-02T22:55:51.317Z"},"362":{"community_note":"Organized opposition has been active, with local groups objecting to annexation/rezoning and resource strains; AJC reports the ~604-acre project prompted moratoriums while residents mobilized against additional data-center approvals.","water_impact":"high","ai_evidence":"Articles describe a planned ~603-acre, five‑building, ~4 million sq ft data‑center campus in Hampton, with no disclosed AI/GPU tenants or AI‑specific infrastructure.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Reports say Griffin agreed to supply treated water to Hampton (in part for the data center), drawing concern from nearby officials and pointing to Molena reservoir/Flint River as sources.","grid_note":"Public records list Georgia Power grid connection; no project-specific rate case, transmission-upgrade, or curtailment evidence was found.","citations":[{"title":"This Georgia town learns what comes with a data center. ...","url":"https://www.ajc.com/business/2026/03/metro-atlanta-cities-question-how-many-data-centers-are-too-many/"},{"title":"Hampton City Council Voting on Data Center Zoning ...","url":"https://www.change.org/p/citizens-opposed-to-data-centers-in-henry-county-ga/u/34290738"},{"title":"📣HAMPTON, GEORGIA DATA CENTERS & CONSERVE ...","url":"https://www.facebook.com/conservehenry/posts/hampton-georgia-data-centers-conserve-henry-in-the-news-thank-you-the-atlanta-jo/122274652286196445/"},{"title":"Dutton unhappy with City of Griffin selling water to ...","url":"https://www.griffindailynews.com/news/dutton-unhappy-with-city-of-griffin-selling-water-to-hampton-for-new-data-center/article_fddb1d5c-26b3-5d35-8573-5546d66c30f1.html"},{"title":"Molena reservoir, Flint River to supply Hampton data center","url":"https://pikecountygeorgia.com/molena-reservoir-flint-river-to-supply-hampton-data-center/"}],"runId":"srun_c0e944bd89584b54f9d980b5dda85cb1","classifiedAt":"2026-07-02T22:55:51.638Z"},"363":{"community_note":"Local residents protested at June 2026 Marietta City Council meetings to urge the city to halt the Bells Ferry Road data center; no litigation surfaced in the cited reporting.","water_impact":"low","ai_evidence":"Listings describe a 347,200 sq ft hyperscale campus at 1751 Bells Ferry Road; there are no public confirmations of GPU training clusters or named AI tenants.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No public daily water-use figure was found; area drinking water is supplied by the Cobb County–Marietta Water Authority from the Chattahoochee River and Lake Allatoona.","grid_note":"Zoning was approved for a 108MW campus, and the city states construction is not underway and no building or site-development permits have been obtained.","citations":[{"title":"Citizens to protest forthcoming Bells Ferry Road data center","url":"https://eastcobbnews.com/citizens-to-protest-forthcoming-bells-ferry-road-data-center/"},{"title":"GrindCap Marietta DC-1 Data Center in Atlanta (48 MW)","url":"https://www.datacentermap.com/usa/georgia/atlanta/grindcap-marietta-dc-1/"},{"title":"GrindCap Marietta Campus Data Center in Atlanta","url":"https://www.datacentermap.com/usa/georgia/atlanta/grindcap-marietta-campus/"},{"title":"108MW data center campus granted zoning approval ...","url":"https://www.datacenterdynamics.com/en/news/108mw-data-center-campus-granted-zoning-approval-outside-atlanta-georgia/"},{"title":"Board of Directors - Power & Water","url":"https://www.mariettaga.gov/665/Board-of-Lights-Waterworks"}],"runId":"srun_c0e944bd89584b54b4319a04c911662e","classifiedAt":"2026-07-02T22:55:51.638Z"},"364":{"community_note":"Local residents and community groups in South Fulton are actively opposing the broader data-center boom over transparency, noise, environmental equity, tree canopy loss, and rising water/sewer bills, while projects continue to advance.","water_impact":"low","ai_evidence":"Listings describe Westlake as supporting cloud/AI/ML/HPC and Vantage is in the NVIDIA DGX‑Ready program, but there are no GA2‑specific GPU cluster or AI tenant disclosures.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No GA2 gallons/day or discharge-permit figures were found in public listings or filings.","grid_note":"The Westlake project is documented in the regional DRI filing for South Fulton, indicating formal review of a large new data-center load.","citations":[{"title":"Black Community Fights Georgia's Data Center Boom","url":"https://atlanta.capitalbnews.org/black-community-in-south-fulton-fight-georgias-data-center-boom/"},{"title":"Cooling","url":"https://vantage-dc.com/features/cooling/"},{"title":"Vantage Data Centers: Westlake Data Center","url":"https://www.datacenters.com/vantage-westlake"},{"title":"Vantage Data Centers Joins NVIDIA DGX-Ready ...","url":"https://vantage-dc.com/news/vantage-data-centers-joins-nvidia-dgx-ready-data-center-colocation-program/"},{"title":"DATA CENTER FACT SHEET","url":"https://psc.ga.gov/site/downloads/datacenterfactsheet.pdf"}],"runId":"srun_c0e944bd89584b546e89b4575d73a90f","classifiedAt":"2026-07-02T22:55:51.638Z"},"365":{"community_note":"Active pushback: SELC and local groups challenged alleged unpermitted construction of a pop-up power plant serving the Serverfarm site, and the City of Covington imposed a 180‑day moratorium on new data center permits (complaints pending).","water_impact":"low","ai_evidence":"Disclosure describes a 60MW single hyperscale tenant in Covington; no project-specific GPU cluster, AI-training deployment, or named AI tenant was identified.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No public gallons/day or discharge figures identified; air-cooled design suggests minimal cooling-water consumption.","grid_note":"Interim onsite/adjacent natural-gas generation via 33 RICE units has been proposed next to the site until utility infrastructure is in place.","citations":[{"title":"Groups alert Georgia regulators to unpermitted ...","url":"https://www.selc.org/press-release/groups-alert-georgia-regulators-to-unpermitted-construction-of-pop-up-power-plant-data-center/"},{"title":"Covington enacts moratorium on data center permits | News","url":"https://www.rockdalenewtoncitizen.com/news/covington-enacts-moratorium-on-data-center-permits/article_5054a82f-c4e7-47ab-b7b1-3892e30a4047.html"},{"title":"Georgia's first data center 'pop-up' power plant is breaking ...","url":"https://www.ajc.com/business/2026/07/georgias-first-data-center-pop-up-power-plant-is-breaking-rules-groups-say/"},{"title":"Data center could be on its way to Covington","url":"https://www.covnews.com/news/cities/data-center-could-be-its-way-covington/"},{"title":"Data Center Locations | Digital Transformation","url":"https://www.serverfarmllc.com/data-centers/"}],"runId":"srun_c0e944bd89584b5428e1cfa61c696868","classifiedAt":"2026-07-02T22:55:51.638Z"},"371":{"community_note":"No organized opposition, lawsuits, or zoning fights specific to 350 E. Cermak were identified as of July 2026.","water_impact":"unknown","ai_evidence":"","grid_impact":"high","ai_class":"not-ai","community_pushback":"none-found","water_note":"Data Center Knowledge reported the facility’s cooling includes an 8.5‑million‑gallon refrigerated brine‑like thermal‑storage tank; no gallons/day, source‑stress, or discharge figures were publicly reported.","grid_note":"ORD10 is listed at 19.5 MW, while the broader 350 E. Cermak building has more than 100 MW across multiple feeds and is cited as ComEd’s second‑largest power customer.","citations":[{"title":"Chicago ORD10 - 350 East Cermak","url":"https://www.digitalrealty.com/data-centers/americas/chicago/ord10"},{"title":"Digital Realty: ORD10 Data Center","url":"https://baxtel.com/data-center/digital-realty-ord10"},{"title":"350 East Cermak Road in Chicago | Digital Realty (19.5 MW)","url":"https://www.datacentermap.com/usa/illinois/chicago/350-east-cermark-road/"},{"title":"Chicago Data Center & Colocation","url":"https://www.digitalrealty.com/data-centers/americas/chicago"},{"title":"Digital Realty ORD10 | 350 East Cermak Road, Chicago","url":"https://datacenterhawk.com/marketplace/providers/digital-realty/350-east-cermak-road/ord10"}],"runId":"srun_c0e944bd89584b54e339e9e9831c1cdd","classifiedAt":"2026-07-02T22:55:51.638Z"},"375":{"community_note":"South Loop residents organized a petition to block a new Digital Realty data center near 350 E. Cermak, with the matter before Ald. Pat Dowell; no lawsuit tied to the existing 350 E. Cermak facility was identified.","water_impact":"unknown","ai_evidence":"Evidence points to AI-capable colocation and cloud GPU offerings in the building (e.g., Summit ‘AI & GPU Workloads’ and Hivelocity GPU instances), but there is no disclosed, named AI-training supercluster tenant.","grid_impact":"high","ai_class":"ai-inference","community_pushback":"active-opposition","water_note":"No gallons/day disclosed; the building uses chilled-water cooling with cooling towers, and Chicago’s municipal supply draws from Lake Michigan.","grid_note":"The 350 E. Cermak building is ~109 MW, and ComEd’s CEO linked higher bills to PJM capacity costs, with data-center growth as a contributing factor.","citations":[{"title":"South Loop residents fight against plans for new data center","url":"https://www.cbsnews.com/chicago/news/south-loop-residents-fight-new-data-center/"},{"title":"Chicago's digital renaissance","url":"https://www.digitalrealty.com/about/projects/digital-cermak"},{"title":"Digital Realty ORD10 Data Center, Chicago, IL, USA | UPSTACK Marketplace","url":"https://marketplace.upstack.com/data-centers/digital-realty-trust-data-center-chicago-ch1"},{"title":"Water Supply","url":"https://www.chicago.gov/city/en/depts/water/provdrs/supply.html"},{"title":"Chicago Data Center | Summit","url":"https://summithq.com/data-centers/chicago-illinois-data-center/"}],"runId":"srun_c0e944bd89584b549d92035892f50002","classifiedAt":"2026-07-02T22:55:51.638Z"},"377":{"community_note":"South Loop/Prairie District residents organized to oppose Digital Realty’s expansion near 350 E. Cermak over existing fan/alarm noise impacts; the proposal was publicly reported in Sept. 2023 and moving through the city process.","water_impact":"unknown","ai_evidence":"","grid_impact":"high","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"Cooling is supported by an 8.5‑million‑litre refrigerated brine‑water tank associated with the building’s system; no gallons/day usage or source‑stress data were found.","grid_note":"Reported to be ComEd’s second‑largest power customer, indicating very high utility draw.","citations":[{"title":"South Loop Neighbors Want To Block Data Center ...","url":"https://blockclubchicago.org/2023/09/13/south-loop-neighbors-want-to-block-data-center-expansion-near-mccormick-place/"},{"title":"Chicago ORD10 - 350 East Cermak","url":"https://www.digitalrealty.com/data-centers/americas/chicago/ord10"},{"title":"Due to immense strain on the power grid, ComEd asks ...","url":"https://www.facebook.com/WIFRTV/posts/due-to-immense-strain-on-the-power-grid-comed-asks-customers-to-reduce-their-ene/1030201006039896/"},{"title":"Digital Realty: ORD10 Data Center","url":"https://baxtel.com/data-center/digital-realty-ord10"},{"title":"Revisiting the World's Largest Data Center - 350 E Cermak ...","url":"https://www.digitalrealty.com/resources/blog/revisiting-the-worlds-largest-data-center-350-e-cermak-chi1"}],"runId":"srun_c0e944bd89584b5457ea1e8ba75b3933","classifiedAt":"2026-07-02T22:55:51.638Z"},"379":{"community_note":"","water_impact":"unknown","ai_evidence":"STN’s GPU One runs at CoreSite CH2 with more than 1,500 liquid‑cooled NVIDIA B200 GPUs and is described as purpose-built for compute‑intensive AI training; CH2 is also positioned within a key AI inference zone.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"CH2 uses customized liquid cooling (chilled-water/direct-to-chip style) for STN’s GPU One, but no public reporting of gallons/day, water-source stress, aquifer/drought concerns, or discharge specifics was found.","grid_note":"CH2 is planned/built to around 18 MW, and while Chicago-wide reporting ties rising bills to data center demand, no CH2-specific utility upgrade, new transmission/generation, curtailment, or rate-case impacts were found.","citations":[{"title":"CoreSite CH2 - Chicago Data Center","url":"https://www.coresite.com/data-center/ch2-chicago-il"},{"title":"CoreSite CH2 Data Center","url":"https://eea-ltd.com/project/coresite-ch2-data-center/"},{"title":"CoreSite Chicago CH2 Spec Sheet","url":"https://www.coresite.com/spec-sheets/chicago-ch2-facility-spec-sheet"},{"title":"CoreSite Chicago (CH2) - Specs","url":"https://www.datacentermap.com/usa/illinois/chicago/coresite-chicago-ch2/specs/"},{"title":"CoreSite CH2 | 1432 S Clinton Street, Chicago","url":"https://datacenterhawk.com/marketplace/providers/coresite/1432-s-clinton-street/ch2"}],"runId":"srun_c0e944bd89584b54124238fac6a699c4","classifiedAt":"2026-07-02T22:55:51.638Z"},"384":{"community_note":"None found: Local coverage shows the Chicago Plan Commission and then City Council approved QTS’s 2800 S. Ashland data center in late 2024, with no organized opposition reported.","water_impact":"low","ai_evidence":"No facility-specific disclosures of GPU superclusters, AI tenants, or AI liquid-cooling retrofits were found; contemporary reporting noted no major anchor tenant at opening and listings show standard colocation features.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"QTS Chicago implemented Kyoto Cooling and the company has stated a closed-loop data center uses about 600,000 gallons per year; no gallons/day, source stress, or discharge issues were reported.","grid_note":"Chicago 1 is listed at roughly 40 MW critical power, ComEd serves the site with a FERC-approved TSA involving QTS in 2026, and a three-story campus expansion was proposed in 2024.","citations":[{"title":"Plan Commission approves data center at 2800 S. Ashland","url":"https://chicago.urbanize.city/post/plan-commission-approves-data-center-2800-s-ashland"},{"title":"Chicago - Data Centers","url":"https://q.com/data-centers/chicago/"},{"title":"QTS Chicago 1 DC1 Data Center | 2800 S. Ashland Ave ...","url":"https://www.datacentermap.com/usa/illinois/chicago/qts-chicago/"},{"title":"QTS on schedule to open Chicago data center - DCD","url":"https://www.datacenterdynamics.com/en/news/qts-on-schedule-to-open-chicago-data-center/"},{"title":"QTS DC1 | 2800 S Ashland Avenue, Chicago","url":"https://datacenterhawk.com/marketplace/providers/qts/2800-s-ashland-avenue/dc1"}],"runId":"srun_c0e944bd89584b54cc9a522dfbc3cf59","classifiedAt":"2026-07-02T22:55:51.638Z"},"395":{"community_note":"Residents and advocates in Elk Grove Village have actively opposed broader data-center expansion over power, water, incentives, and jobs, while village leadership continues to defend growth and no Stream Chicago I–specific moratorium or litigation was found.","water_impact":"low","ai_evidence":"Stream markets the 2080 Lunt (Chicago I / ORDA) site as a hyperscale facility with 31 MW utility power and a 2024 expansion, while third‑party listings show it as a ~126–128k‑sf site historically designed for ~15 MW; no facility‑specific AI/GPU or liquid‑cooling deployment announcements were found.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No site‑specific gallons/day disclosed; listings note airside economizers/free cooling, Elk Grove purchases Lake Michigan water, and a local official stated a modern 200,000‑sf data center uses over 538,000 gallons/year; no ORDA‑specific drought, aquifer, or discharge issues were found.","grid_note":"31 MW facility in ComEd territory; Stream and ComEd broke ground on a new Elk Grove substation to support data-center growth, and ComEd’s CEO cited ~$2–$3/month bill increases linked to PJM capacity costs rather than site-specific curtailments.","citations":[{"title":"Elk Grove Village residents question future of data center ...","url":"https://www.fox32chicago.com/news/elk-grove-village-residents-question-future-data-center-expansion"},{"title":"Elk Grove Village Mayor defends data centers","url":"https://www.chicagotribune.com/2026/05/21/elk-grove-village-data-centers/"},{"title":"'Data center capital' of the Midwest expands as Pritzker ...","url":"https://www.nbcchicago.com/news/local/data-center-capital-of-the-midwest-expands-as-pritzker-calls-for-regulations/3952720/"},{"title":"Stream DC Chicago I Data Center | 2080 Lunt Avenue (15 ...","url":"https://www.datacentermap.com/usa/illinois/chicago/chicago-i/"},{"title":"Water / Sewer","url":"https://www.elkgrove.org/government/finance-department/water-sewer"}],"runId":"srun_c0e944bd89584b5486f26d9c3a163cb6","classifiedAt":"2026-07-02T22:55:51.638Z"},"396":{"community_note":"Elk Grove Village residents and regional media raised questions about expansion, noise, and oversight at public meetings, while officials defended the projects; no ORDB-specific litigation or moratorium was identified.","water_impact":"low","ai_evidence":"The operator lists 1925 Busse Road as a fully leased Hyperscale Data Center with 32 MW capacity, without naming AI tenants or GPU deployments.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Local benchmark: a modern 200,000-sq-ft data center uses over 538,000 gallons per year and the village supplies water to all customers.","grid_note":"Disclosed load is 32 MW; ComEd’s territory demand could double by 2040 in part due to data centers, and regulators okayed higher deposits for large-load projects.","citations":[{"title":"Elk Grove Village residents debate data centers","url":"https://www.fox32chicago.com/video/fmc-meq5kngr9znwh58p"},{"title":"'Data center capital' of the Midwest expands as Pritzker ...","url":"https://www.nbcchicago.com/news/local/data-center-capital-of-the-midwest-expands-as-pritzker-calls-for-regulations/3952720/"},{"title":"Power, water and worry: How growing data center ...","url":"https://www.dailyherald.com/20260407/technology/power-water-and-worry-how-growing-data-center-concerns-are-being-addressed-locally-and-statewide/"},{"title":"Mayor Touts Data Center Benefits At Well-Attended Elk ...","url":"https://www.journal-topics.com/articles/mayor-touts-data-center-benefits-at-well-attended-elk-grove-town-hall/"},{"title":"Chicago Data Center Solutions","url":"https://www.streamdatacenters.com/locations/chicago-data-centers/"}],"runId":"srun_c0e944bd89584b54414a87cfde5af487","classifiedAt":"2026-07-02T22:55:51.638Z"},"397":{"community_note":"No organized opposition or lawsuits specific to ORDC were found; Elk Grove Village held an Aug. 21, 2023 Plan Commission hearing and passed Sept. 12, 2023 approvals, while reporting says Stream bought and began razing about 55 homes.","water_impact":"unknown","ai_evidence":"Stream lists the ORDC campus at 2000 Landmeier Rd as a 35+ acre hyperscale campus with Building 1 at 40 MW; no public AI supercluster or AI tenant announcement for this facility was identified.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No public gallons/day or permit figures were found; Elk Grove Village’s municipal supply is Lake Michigan water purchased through JAWA/Chicago.","grid_note":"Building 1 is 40 MW and a 260 MW ComEd substation to serve the campus is due in 2027; regulators approved higher deposits for large-load projects to protect ratepayers.","citations":[{"title":"PLAN COMMISSION - 08/21/2023 - Laserfiche WebLink","url":"https://doccentral.elkgrove.org/WebLink/DocView.aspx?id=1626242&dbid=0&repo=EGV"},{"title":"ordinance - 3831 - 9/12/2023 - stream data centers, granting ...","url":"https://doccentral.elkgrove.org/WebLink/DocView.aspx?id=1625633&dbid=0&repo=EGV"},{"title":"Data center provider razes 55 homes to make room for ...","url":"https://www.networkworld.com/article/2071209/data-center-provider-razes-55-homes-to-make-room-for-illinois-campus.html"},{"title":"Water / Sewer","url":"https://www.elkgrove.org/government/finance-department/water-sewer"},{"title":"Chicago Data Center Solutions","url":"https://www.streamdatacenters.com/locations/chicago-data-centers/"}],"runId":"srun_c0e944bd89584b54fba2a13e7f78e850","classifiedAt":"2026-07-02T22:55:51.638Z"},"398":{"community_note":"Residents questioned further data center expansion at a May 2026 town hall, raising concerns while the mayor defended the buildout and no moratorium was adopted.","water_impact":"low","ai_evidence":"Public listings show CHI01B as a 24 MW wholesale/hyperscale facility; pages note support for liquid cooling but name no GPU supercluster or AI tenant at this site, and STACK’s DGX‑Ready claim is company‑wide, not CHI01B‑specific.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day figure reported; CHI01B lists air‑cooled chillers with integral free‑cooling, implying low water use.","grid_note":"24 MW load with service by ComEd; a new EGV substation for data centers is underway and ComEd has a $15.3B grid plan that could affect rates.","citations":[{"title":"Elk Grove Village residents question future of data center ...","url":"https://www.fox32chicago.com/news/elk-grove-village-residents-question-future-data-center-expansion"},{"title":"Data Center Town Hall Meeting | Agendas & Public Meetings","url":"https://www.elkgrove.org/Home/Components/Calendar/Event/9496/61"},{"title":"CHI01BScale For The Future","url":"https://www.stackinfra.com/wp-content/uploads/2020/11/CHI01B_032923.pdf"},{"title":"Stack Infrastructure: CHI01B Chicago Data Center","url":"https://www.datacenters.com/stack-infrastructure-chi01b-chicago"},{"title":"STACK Offers AI Hosting with NVIDIA DGX Program","url":"https://www.stackinfra.com/about/news-press/press-releases/stack-infrastructure-provides-a-path-for-customers-to-leverage-ai-in-the-data-center-with-the-nvidia-dgx-ready-program/"}],"runId":"srun_c0e944bd89584b54b5fabb6159e22c35","classifiedAt":"2026-07-02T22:55:51.638Z"},"401":{"community_note":"More than 500 residents attended a May 2026 Elk Grove Village town hall and questioned data-center expansion while village leaders defended the projects; no lawsuit or moratorium specific to Microsoft Building 1 was reported [1][2].","water_impact":"unknown","ai_evidence":"Building 1 is listed as part of Microsoft’s Azure presence at the Elk Grove Technology Park, with campus reporting tied to Azure/cloud services; no facility-specific disclosures of GPU superclusters or liquid-cooling retrofits were found [4][5].","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No facility-specific cooling-water figure was found; Microsoft says its next‑generation datacenters launched in August 2024 consume zero water for cooling [12].","grid_note":"Public records list 31.5 MW at 201 Innovation Dr. with ComEd service, and ComEd built/planned substations for Elk Grove’s data centers as its CEO later said data centers are contributing to bill increases of about $2–$3/month [13][14][15].","citations":[{"title":"Mayor Touts Data Center Benefits At Well-Attended Elk ...","url":"https://www.journal-topics.com/articles/mayor-touts-data-center-benefits-at-well-attended-elk-grove-town-hall/"},{"title":"Elk Grove Village residents question future of data center ...","url":"https://www.fox32chicago.com/news/elk-grove-village-residents-question-future-data-center-expansion"},{"title":"Data Center Water Use","url":"https://mostpolicyinitiative.org/science-note/data-center-water-use/"},{"title":"Microsoft Elk Grove - Building 1 Data Center in Chicago","url":"https://www.datacentermap.com/usa/illinois/chicago/microsoft-elk-grove-building-1/"},{"title":"Microsoft begins data center construction in Elk Grove ...","url":"https://www.datacenterdynamics.com/en/news/microsoft-begins-construction-elk-grove-chicago/"}],"runId":"srun_c0e944bd89584b547052d6d09296fa9a","classifiedAt":"2026-07-02T22:55:51.638Z"},"402":{"community_note":"At a May 2026 Elk Grove Village town hall, residents voiced concerns and urged limits such as banning gas-powered backup generators; no TA-specific lawsuit or organized opposition was identified.","water_impact":"unknown","ai_evidence":"No reporting indicates GPU superclusters, AI-specific tenants, or liquid-cooling AI deployments; sources describe a 45-acre, four-building wholesale/hyperscale campus and TA’s platform focuses on hyperscale/enterprise rather than AI-specific workloads.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No campus-specific gallons/day were reported; a local article cites data centers at 2.69 gallons per square foot per year (village-wide average), not specific to this site.","grid_note":"Planned at about 250 MW in ComEd territory, with ComEd citing roughly $2–$3/month bill impacts tied to PJM supply costs and regulators noting large loads can trigger transmission upgrades on ComEd’s system.","citations":[{"title":"More than 500 residents flood Elk Grove Village town hall ...","url":"https://www.yahoo.com/news/us/articles/more-500-residents-flood-elk-230600626.html"},{"title":"Data Center Town Hall Meeting | Agendas & Public Meetings","url":"https://www.elkgrove.org/Home/Components/Calendar/Event/9496/61"},{"title":"Mayor Touts Data Center Benefits At Well-Attended Elk ...","url":"https://www.journal-topics.com/articles/mayor-touts-data-center-benefits-at-well-attended-elk-grove-town-hall/"},{"title":"TA Realty: Elk Grove Data Center","url":"https://baxtel.com/data-center/ta-realty-elk-grove"},{"title":"New data center planned for Elmhurst and Old Higgins roads","url":"https://www.facebook.com/ElkGroveJournal/posts/another-huge-data-center-is-in-the-works-on-elmhurst-and-old-higgins-roads-in-el/1446731533971378/"}],"runId":"srun_c0e944bd89584b542aaaf003555b529b","classifiedAt":"2026-07-02T22:59:24.940Z"},"403":{"community_note":"Elk Grove Village residents raised concerns at a well-attended May 2026 town hall about data centers generally, but no organized, ORD‑03‑specific opposition or litigation was identified.","water_impact":"low","ai_evidence":"Aligned lists ORD‑03 (50 NW Point Blvd.) as part of an AI‑ready, hyperscale Chicago campus, and third‑party listings state it is designed for high‑density compute and liquid‑cooling—indicating AI‑capable infrastructure without confirmed AI tenant deployments.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No site-specific consumption is published; ORD‑03 uses closed‑loop cooling with an estimated 400,000 gallons/year saved by design changes, Elk Grove’s water comes from Lake Michigan via JAWA, and the village cites ~538,000 gallons/year for a modern 200,000‑sq‑ft data center.","grid_note":"FERC accepted a ComEd–Aligned Transmission Security Agreement for this campus, and reporting says TSAs seek to insulate existing customers while data centers are contributing to higher ComEd bills.","citations":[{"title":"Mayor Touts Data Center Benefits At Well-Attended Elk ...","url":"https://www.journal-topics.com/articles/mayor-touts-data-center-benefits-at-well-attended-elk-grove-town-hall/"},{"title":"More than 500 residents flood Elk Grove Village town hall ...","url":"https://www.yahoo.com/news/us/articles/more-500-residents-flood-elk-230600626.html"},{"title":"Cooling and Water Reduction at ORD-03","url":"https://aligneddc.com/blog/sustainable-cooling/"},{"title":"Water / Sewer","url":"https://www.elkgrove.org/government/finance-department/water-sewer"},{"title":"More than 500 residents flood Elk Grove Village town hall ...","url":"https://www.yahoo.com/news/us/articles/more-500-residents-flood-elk-230600626.html"}],"runId":"srun_c0e944bd89584b54e5030a729917833c","classifiedAt":"2026-07-02T22:55:51.638Z"},"404":{"community_note":"No organized opposition or litigation specific to ORD-01 was reported; coverage focused on Aligned breaking ground and launching the Northlake facility, with no zoning/noise/air complaints noted.","water_impact":"low","ai_evidence":"Marketed as “AI & Cloud-Ready” and part of NVIDIA’s DGX-Ready partner ecosystem, but no public evidence of ORD-01 hosting a named GPU cluster or AI tenant; the Lambda partnership cited by Aligned pertains to DFW, not Northlake.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No gallons/day figure reported; Aligned cites air-cooled, closed-loop systems with water reuse and near-zero outside water usage via waterless heat rejection, with no site-specific drought/aquifer concerns noted.","grid_note":"48 MW expandable to ~60 MW; campus shows dual-substation capacity around 170 MW; ComEd TSAs approved by FERC include protections to insulate existing customers from data-center costs.","citations":[{"title":"Aligned breaks ground on Northlake data center","url":"https://www.chicagobusiness.com/commercial-real-estate/northlake-nabs-another-big-data-center-tech-boom-continues/"},{"title":"Aligned Breaks Ground on Chicago Hyperscale Data ...","url":"https://aligneddc.com/press-release/aligned-breaks-ground-on-chicago-hyperscale-data-center-campus/"},{"title":"Aligned Launches Chicago Hyperscale Data Center ...","url":"https://aligneddc.com/press-release/aligned-launches-chicago-hyperscale-data-center-campus-and-breaks-ground-on-second-adjacent-facility/"},{"title":"Advanced Data Center Cooling","url":"https://aligneddc.com/cooling-innovation/"},{"title":"Protecting Regional Water Resources","url":"https://aligneddc.com/wp-content/uploads/2025/10/Aligned-Water-Savings-Case-Study.pdf"}],"runId":"srun_c0e944bd89584b549f5b25a563c34841","classifiedAt":"2026-07-02T22:55:51.638Z"},"405":{"community_note":"","water_impact":"low","ai_evidence":"Marketed as AI- and cloud-ready and OCP Ready for Hyperscale; no public ORD-02-specific GPU/AI tenant or workload disclosure found.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Closed-loop/waterless cooling reportedly saves millions to tens of millions of gallons annually; no ORD-02-specific gallons/day, source stress, or discharge issues found.","grid_note":"36 MW on ComEd; Illinois regulators and media are scrutinizing data-center-driven rate impacts, but no ORD-02-specific upgrades or curtailments were identified.","citations":[{"title":"Sustainable, AI-Ready Data Centers in Chicago, IL | Aligned","url":"https://aligneddc.com/chicago-data-centers/"},{"title":"The Case for Grid-Friendly Data Centers in Illinois","url":"https://elpc.org/blog/the-case-for-grid-friendly-data-centers-in-illinois/"},{"title":"Aligned ORD-02 Data Center — Cook, Illinois","url":"https://cleanview.co/data-centers/illinois/1017/aligned-ord-02-data-center"},{"title":"18.5 228768 36 MW","url":"https://aligneddc.com/wp-content/uploads/2025/09/ALI_ChicagoIIBldgSpecs241015.pdf"},{"title":"Aligned ORD-02 Data Center in Chicago (36 MW)","url":"https://www.datacentermap.com/usa/illinois/chicago/aligned-ord-02/"}],"runId":"srun_c0e944bd89584b5459b33f1494d44c1e","classifiedAt":"2026-07-02T22:55:51.638Z"},"409":{"community_note":"No organized opposition specific to NTT Chicago CH1 surfaced; Itasca advanced zoning/development approvals (including substation entitlements) without an active dispute.","water_impact":"unknown","ai_evidence":"CH1 provides 36MW of capacity on NTT’s Itasca campus [1], but NTT highlights Chicago 2—not CH1—as “designed for AI and high-density computing” [2], and no CH1-specific AI tenant or GPU-cluster announcement was found.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No public gallons/day or water-source disclosure for CH1 was found in the reviewed materials.","grid_note":"36MW facility and first phase of a planned 200+MW campus with a campus electrical substation approved; ICC is investigating data center growth and consumer protections in ComEd territory.","citations":[{"title":"Village of Itasca Community Development Department","url":"https://www.itasca.com/AgendaCenter/ViewFile/Item/6167?fileID=8828"},{"title":"MEMORANDUM","url":"https://www.itasca.com/AgendaCenter/ViewFile/Item/10717?fileID=11401"},{"title":"LOU with NTT","url":"https://www.itasca.com/AgendaCenter/ViewFile/Item/10766?fileID=11435"},{"title":"Chicago CH1 Data Center | NTT","url":"https://services.global.ntt/en-us/services-and-products/global-data-centers/global-locations/americas/chicago-ch1-data-center"},{"title":"NTT Global Data Centers: CH1 Chicago Data Center","url":"https://www.datacenters.com/ntt-global-ch1-chicago"}],"runId":"srun_c0e944bd89584b54140b5947bf44541f","classifiedAt":"2026-07-02T22:55:51.638Z"},"415":{"community_note":"Some local residents have raised concerns on social media about potential impacts, and reporting shows the project is proceeding with a dedicated ComEd substation under construction and no lawsuits or moratorium noted.","water_impact":"unknown","ai_evidence":"Described as a hyperscale data center campus, with no named AI tenant or GPU supercluster disclosed in reporting.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No facility-specific water usage or discharge data was found in cited sources.","grid_note":"Operator materials state up to 300 MW of critical IT load via an on-site substation.","citations":[{"title":"Power station being built for Mount Prospect data center ...","url":"https://www.dailyherald.com/20241216/news/mount-prospect-data-center-waiting-on-comed-substation-possible-legal-issues/"},{"title":"ComEd joins with CloudHQ to build $2.5B data center in ...","url":"https://dailyenergyinsider.com/innovation/36434-comed-joins-with-cloudhq-to-build-2-5b-data-center-in-northern-illinois/"},{"title":"ORD Campus","url":"https://cloudhq.com/campus/ord-campus/"},{"title":"Cloud HQ - Data Center | Village of Mount ...","url":"https://www.mountprospect.org/services/community-information-and-fact-check-portal/cloud-hq-data-center"},{"title":"Power station being built for Mount Prospect data center ...","url":"https://www.dailyherald.com/20241216/news/mount-prospect-data-center-waiting-on-comed-substation-possible-legal-issues/"}],"runId":"srun_c0e944bd89584b54ce6374b6fe955278","classifiedAt":"2026-07-02T22:55:51.638Z"},"416":{"community_note":"Aurora residents near the CyrusOne campus pressed the city over 24/7 noise, leading to a 180‑day moratorium and March 2026 noise‑cap regulations, while CyrusOne undertakes repairs and noise‑mitigation measures.","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"CyrusOne states the Aurora campus uses no water for cooling and only minimal water for humidification/maintenance, and Aurora now requires public reporting of water use for new data centers; no CHI1 gallons/day or source‑stress data were found.","grid_note":"Estimated at ~48 MW for CHI1 with a ~109 MW campus and documented single‑feed operations during ComEd work with generator runs; no CHI1‑specific rate case or new generation/transmission requirement identified.","citations":[{"title":"Aurora City Council to vote on data center regulations","url":"https://wgntv.com/news/aurora/white-noise-on-steroids-aurora-city-council-to-vote-on-data-center-regulations-as-residents-clamor-for-change/"},{"title":"New Data Center and Warehouse Regulations","url":"https://www.aurora.il.us/Property-Business/Zoning-and-Planning/New-Data-Center-and-Warehouse-Regulations"},{"title":"City Council Approves Regulations on Data Centers","url":"https://www.aurora.il.us/News-articles/City-Council-Approves-Regulations-on-Data-Centers"},{"title":"CyrusOne Data Center Repairs","url":"https://www.aurora.il.us/News-articles/CyrusOne-Data-Center-Repairs"},{"title":"UPDATE: CyrusOne Data Center Repair","url":"https://www.aurora.il.us/News-articles/UPDATE-CyrusOne-Data-Center-Repair"}],"runId":"srun_c0e944bd89584b5488bb8ed9d9f8714d","classifiedAt":"2026-07-02T22:55:51.985Z"},"417":{"community_note":"Nearby Aurora residents have actively opposed constant noise from the CyrusOne Diehl Road campus, prompting a 180‑day city moratorium and new regulations while CyrusOne and ComEd continue generator/noise mitigation work.","water_impact":"low","ai_evidence":"CME states the Aurora data center houses customer equipment for all Globex products, indicating trading colocation rather than AI clusters, and third‑party listings describe CHI2 as colocation/enterprise with 50 MW capacity, not an AI GPU deployment.","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"CyrusOne indicates the Aurora campus uses no water for cooling (minimal humidification/maintenance only), while the city’s FAQ highlights tightening water availability and caps for data centers; no CHI2 gallons/day or discharge data found.","grid_note":"Around 50 MW IT load at CHI2 with ComEd service, and consumer advocates/local reporting tie data‑center growth to higher electric bills and PJM/ComEd reliability pressures; no CHI2‑specific curtailment or required new generation was found.","citations":[{"title":"Aurora discusses new data center regulations","url":"https://www.nbcchicago.com/news/local/city-of-aurora-to-discuss-and-take-potential-vote-on-new-data-center-regulations/3913114/"},{"title":"Aurora City Council to vote on data center regulations","url":"https://wgntv.com/news/aurora/white-noise-on-steroids-aurora-city-council-to-vote-on-data-center-regulations-as-residents-clamor-for-change/"},{"title":"New Data Center and Warehouse Regulations","url":"https://www.aurora.il.us/Property-Business/Zoning-and-Planning/New-Data-Center-and-Warehouse-Regulations"},{"title":"Aurora, IL: CHI1-CHI3 - Noise Communication","url":"https://www.cyrusone.com/data-centers/north-america/aurora-il-back-up-generator-schedule"},{"title":"Aurora, IL: CHI1-CHI3","url":"https://www.cyrusone.com/data-centers/north-america/aurora-il"}],"runId":"srun_c0e944bd89584b544313a868b0f296d2","classifiedAt":"2026-07-02T22:55:51.986Z"},"418":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Minimal water usage for humidification and maintenance; Lombard’s municipal supply is Lake Michigan via Chicago and the DuPage Water Commission; no gallons/day or discharge issues were reported for CHI5.","grid_note":"Listed at 12 MW IT capacity; no CHI5-specific ComEd upgrade, curtailment, or ratepayer-impact reporting found, though regulators approved higher deposits for large-load projects like data centers.","citations":[{"title":"Lombard, IL: CHI5","url":"https://www.cyrusone.com/data-centers/north-america/lombard-il"},{"title":"Aurora, IL: CHI1-CHI3 - Noise Communication","url":"https://www.cyrusone.com/data-centers/north-america/aurora-il-back-up-generator-schedule"},{"title":"CyrusOne receives rezoning approval for ...","url":"https://www.datacenterdynamics.com/en/news/cyrusone-receives-rezoning-approval-for-data-center-campus-outside-chicago-illinois/"},{"title":"Lombard, IL: CHI5","url":"https://www.cyrusone.com/data-centers/north-america/lombard-il"},{"title":"Water | Lombard, IL","url":"https://www.villageoflombard.org/262/Water"}],"runId":"srun_c0e944bd89584b54fd6bc3bb82ac5bc3","classifiedAt":"2026-07-02T22:55:51.986Z"},"420":{"community_note":"No facility-specific opposition surfaced; the Chicago Department of Planning and Development granted site plan approval for a data center at 1951 W. Hastings.","water_impact":"low","ai_evidence":"H5 markets the 1951 W. Hastings site as a 36 MW, high-density data center, while a third-party listing says it meets AI Ready criteria with 120+ kW/rack and liquid cooling; no public disclosures identify a GPU supercluster or specific AI-training tenant.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"A third-party listing for the prior IMD1 project at 1951 W. Hastings reports a WUE of 0; no gallons/day or water-source stress data were found.","grid_note":"Planned for 36 MW total (18 MW initial) with energization timelines aligned with ComEd’s infrastructure; no site-specific evidence of required new generation/transmission was found.","citations":[{"title":"Data center approved at 1951 W. Hastings","url":"https://chicago.urbanize.city/post/data-center-approved-1951-w-hastings"},{"title":"Metro Edge IMD1 - Chicago","url":"https://www.datacentermap.com/usa/illinois/chicago/metro-edge-imd1/"},{"title":"What Is Water Usage Effectiveness (WUE) in Data Centers?","url":"https://blog.equinix.com/blog/2024/11/13/what-is-water-usage-effectiveness-wue-in-data-centers/"},{"title":"Chicago Data Center","url":"https://h5datacenters.com/chicago-data-center.html"},{"title":"Chicago - H5 Data Centers","url":"https://www.ocolo.io/colocation/h5-data-centers/chicago/"}],"runId":"srun_c0e944bd89584b54b7c3ddca90596674","classifiedAt":"2026-07-02T22:55:51.986Z"},"438":{"community_note":"No organized opposition specific to CyrusOne OCB1 was found; a local Facebook group post discussed hiring a lawyer to stop “2 data centers” in Council Bluffs, but no litigation or action tied to OCB1 was identified [1].","water_impact":"low","ai_evidence":"No public evidence of GPU superclusters, AI tenant announcements, or liquid-cooling retrofits at OCB1; the site highlights air-cooled “Water‑Free Cooling” and CRAH units, while CyrusOne’s AI page is generic and not site‑specific [1][2].","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"OCB1 advertises “Water‑Free Cooling” with “Minimal water usage for humidification and maintenance,” and notes it “doesn't consume water for cooling”; no gallons/day or source-stress data reported [1][2].","grid_note":"OCB1 is an 18 MW IT‑load facility served by MidAmerican Energy, reported as “now powered by 100% renewable electricity,” leveraging GreenAdvantage, while MidAmerican says its agreements “protect other customers from cost shifts” tied to data centers [1][2][3][4].","citations":[{"title":"Hiring a lawyer to stop data centers in Council Bluffs, Iowa?","url":"https://www.facebook.com/groups/saynotodatacenters/posts/1537039864894180/"},{"title":"Council Bluffs, IA: OCB1","url":"https://www.cyrusone.com/data-centers/north-america/council-bluffs-ia"},{"title":"Harnessing the Wind and Sun: Council Bluffs Data Center ...","url":"https://www.cyrusone.com/resources/blogs/harnessing-the-wind-and-sun-council-bluffs-data-center-now-powered-by-100-renewable-electricity"},{"title":"Council Bluffs, IA: OCB1","url":"https://www.cyrusone.com/data-centers/north-america/council-bluffs-ia"},{"title":"AI Data Centers","url":"https://www.cyrusone.com/solutions/ai-data-centers"}],"runId":"srun_c0e944bd89584b54721bf71d652af049","classifiedAt":"2026-07-02T22:55:51.986Z"},"441":{"community_note":"Council Bluffs’ mayor proposed a one-year moratorium on new data centers (rejected by the city council) and neighborhoods are opposing MidAmerican’s transmission line upgrades for a new data center; no lawsuits were identified [1][2].","water_impact":"high","ai_evidence":"Google Cloud’s TPU locations show Council Bluffs (us-central1) as an AI zone with access to TPUs, evidencing AI accelerator deployments in this region [1].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Reported 2024 use is ~3.9 million gallons/day withdrawn and ~2.8 million gallons/day consumed, sourced from municipal supply; no site-specific drought or aquifer-stress issues were identified [1][2].","grid_note":"Served by MidAmerican: Google arranged up to 407 MW of wind-sourced energy for Council Bluffs; MidAmerican cites agreements that protect other customers from data center cost shifts; and a new transmission upgrade is proposed to meet higher demand from a new data center [1][2][3].","citations":[{"title":"Council Bluffs mayor's push to pause new data center ...","url":"https://www.3newsnow.com/council-bluffs/council-bluffs-mayors-push-to-pause-new-data-center-construction-rejected-by-city-council"},{"title":"MidAmerican Energy transmission line proposal sparks ...","url":"https://www.wowt.com/2026/06/25/midamerican-energy-transmission-line-proposal-sparks-neighborhood-opposition/"},{"title":"Data Center Water Use","url":"https://mostpolicyinitiative.org/science-note/data-center-water-use/"},{"title":"Why Data Centers Can No Longer Treat Water as an ...","url":"https://www.valicor.com/blog/data-center-water-management-afterthought"},{"title":"TPU locations | Compute Engine","url":"https://docs.cloud.google.com/compute/docs/regions-zones/tpu-regions-zones"}],"runId":"srun_c0e944bd89584b542c7412ac58cc4646","classifiedAt":"2026-07-02T22:55:51.986Z"},"442":{"community_note":"Council Bluffs Mayor Jill Shudak and some residents pushed for up to a one-year moratorium on new data-center projects over infrastructure and related concerns, but the City Council rejected it in June 2026.","water_impact":"high","ai_evidence":"us-central1 (Council Bluffs) provides GPU and TPU capacity, and Google has characterized the Council Bluffs buildout as critical for cloud and AI; no building‑specific accelerator disclosure was found.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Council Bluffs’ Google complex consumes about 2.8 million gallons/day, drawing from the Missouri River and Missouri River Alluvium amid record municipal pumping in 2023.","grid_note":"City/campus power is at multi‑hundred‑MW scale (e.g., a 300 MW listing and 500 MW regional capacity), Google previously contracted up to 407 MW of Iowa wind with MidAmerican, and the utility states data centers pay for required grid upgrades.","citations":[{"title":"Council Bluffs City Council rejects data center moratorium","url":"https://www.radioiowa.com/2026/06/18/council-bluffs-city-council-rejects-data-center-moratorium/"},{"title":"Council Bluffs mayor's push to pause new data center ...","url":"https://www.3newsnow.com/council-bluffs/council-bluffs-mayors-push-to-pause-new-data-center-construction-rejected-by-city-council"},{"title":"Council Bluffs council denies proposed moratorium on new ...","url":"https://www.kmaland.com/news/council-bluffs-council-denies-proposed-moratorium-on-new-data-centers/article_57610dda-a991-41c5-99a5-d4bd772cd936.html"},{"title":"Data Center Water Use","url":"https://mostpolicyinitiative.org/science-note/data-center-water-use/"},{"title":"2023 ANNUAL REPORT","url":"https://www.cbwaterworks.com/wp-content/uploads/2024/09/2023-Annual-Report.pdf"}],"runId":"srun_c0e944bd89584b54e6cc2cffca0dc577","classifiedAt":"2026-07-02T22:55:51.986Z"},"443":{"community_note":"Localized concern arose during 2023 rezoning/expansion over native prairie impacts, with a developer mitigation commitment; no lawsuits or organized opposition specific to Building 1 were found.","water_impact":"unknown","ai_evidence":"Google highlights AI use cases on its data center locations pages and lists Omaha as a site, and Nebraska reporting links Google’s investment to growing Google Cloud demand, but no Building 1–specific GPU/TPU training cluster or AI retrofit has been disclosed.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Google partnered with Omaha’s MUD on a $3M leak‑detection program expected to save up to 1 billion gallons of water annually [12].","grid_note":"A third‑party profile lists Google Omaha Building 1 (Phase 1) at 87 MW and operational in 2024 [11].","citations":[{"title":"Google Seeks To Stretch Farther In Northwest Omaha","url":"https://www.omahadailyrecord.com/content/google-seeks-stretch-farther-northwest-omaha"},{"title":"Google seeks to stretch farther in northwest Omaha","url":"https://nebraskaexaminer.com/2023/01/03/google-seeks-to-stretch-farther-in-northwest-omaha/"},{"title":"Water and energy use is growing as data centers are built ...","url":"https://nebraskapublicmedia.org/en/news/news-articles/water-and-energy-use-is-growing-as-data-centers-are-built-across-the-midwest-and-great-plains/"},{"title":"Advancing responsible water use at our data centers","url":"https://datacenters.google/water/"},{"title":"Locations of Google Data Centers","url":"https://datacenters.google/locations"}],"runId":"srun_c0e944bd89584b54a124460e960bcc40","classifiedAt":"2026-07-02T22:55:51.986Z"},"444":{"community_note":"No organized opposition specific to Google Papillion – Building 1 was found; recent Nebraska pushback includes an 18‑month Gage County data‑center moratorium and broader rising opposition, neither targeting this operational Papillion site.","water_impact":"unknown","ai_evidence":"Google highlights ongoing Nebraska data-center operations including Papillion, and an AI directory lists Google Papillion as an operational AI site; Google has arranged demand response by targeting machine-learning workloads with utilities including OPPD/TVA.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No public gallons/day reported for Building 1; Papillion’s wells pumped 2.028B gallons in 2025 (avg. 5.56 MGD), and Google reports replenishing over 7B gallons in 2025 across its programs.","grid_note":"Estimated at 59 MW and operational since 2020, the site sits on OPPD’s grid amid historic ~100 MW/year load growth, with Google deploying ML-based demand response to help limit peak strain and transmission needs.","citations":[{"title":"Gage County Planning and Zoning Commission ...","url":"https://nebraskapublicmedia.org/en/news/news-articles/gage-county-planning-and-zoning-commission-approves-18-month-moratorium-on-data-centers/"},{"title":"Nebraska Governor, Legislature Move to Win 'AI Power ...","url":"https://www.rtoinsider.com/133544-nebraska-governor-legislature-move-to-win-ai-power-game/"},{"title":"City of Papillion (NE3115313) Annual Water Quality Report ...","url":"https://www.papillion.org/DocumentCenter/View/16666/2025-Water-Quality-Report?bidId="},{"title":"Data Drain: The Land and Water Impacts of the AI Boom","url":"https://www.lincolninst.edu/publications/land-lines-magazine/articles/land-water-impacts-data-centers/"},{"title":"Nebraska, USA – Google Data Center Location","url":"https://datacenters.google/locations/nebraska"}],"runId":"srun_c0e944bd89584b545b7c6051ff33b945","classifiedAt":"2026-07-02T22:59:25.214Z"},"445":{"community_note":"No organized opposition specific to Papillion/Gold Coast Rd was found; nearby Nebraska pushback (e.g., Gage County moratorium) concerns other proposed sites and not this operating facility.","water_impact":"moderate","ai_evidence":"A directory lists the Papillion campus as an operational AI data center with Google AI chips (likely used by Google DeepMind), and Google has deployed liquid cooling in its data centers for the latest AI processors.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"Google partnered with Omaha’s Metropolitan Utilities District on a $3M leak‑detection program to reduce water use (projected savings up to roughly 1 billion gallons annually); no Papillion‑specific gallons/day figure was reported.","grid_note":"OPPD plans four fast‑start generation units (each up to 225 MW) and a 6.3% average rate adjustment per its 2025 corporate operating plan.","citations":[{"title":"Gage County Planning and Zoning Commission ...","url":"https://nebraskapublicmedia.org/en/news/news-articles/gage-county-planning-and-zoning-commission-approves-18-month-moratorium-on-data-centers/"},{"title":"Data centers consume massive amounts of water","url":"https://theconversation.com/data-centers-consume-massive-amounts-of-water-companies-rarely-tell-the-public-exactly-how-much-262901"},{"title":"Advancing responsible water use at our data centers","url":"https://datacenters.google/water/"},{"title":"Google gives $3 million to MUD to reduce water use in ...","url":"https://nebraskapublicmedia.org/es/news/news-articles/google-gives-3-million-to-mud-to-reduce-water-use-in-omaha/"},{"title":"Google Papillion | AI Data Centers","url":"https://epoch.ai/data/ai-data-centers/directory/google-papillion"}],"runId":"srun_c0e944bd89584b5415d47be0b4d9d5ca","classifiedAt":"2026-07-02T22:55:51.986Z"},"446":{"community_note":"","water_impact":"unknown","ai_evidence":"The Google Papillion campus is identified as an operational AI data center with AI chips, using Google TPU v4 and hosting about 80k H100‑equivalent chips [1]; Google and partners report demonstrations in OPPD territory reducing power demand associated with machine‑learning workloads during grid stress [2][3].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No Papillion/Building‑4 water‑use figure was disclosed in the provided sources; Google describes cooling‑water needs and stewardship goals, and reporting notes Google used over 6 billion gallons company‑wide in 2023 [1][2].","grid_note":"Building‑4 is listed at 116 MW capacity [1]; OPPD anticipates ~100 MW/year load growth vs ~4 MW historically and is partnering with Google on a 420‑MW solar plus 170‑MW/4‑hour battery project starting in 2027 [2][3].","citations":[{"title":"Nebraska, USA – Google Data Center Location","url":"https://datacenters.google/locations/nebraska"},{"title":"Americans Oppose AI Data Centers in Their Area","url":"https://news.gallup.com/poll/709772/americans-oppose-data-centers-area.aspx"},{"title":"Residents File First-of-its-Kind Class Action Against Data ...","url":"https://www.thevinelandvoice.com/news/residents-file-first-of-its-kind-class-action-against-data-center-for-noise/article_efeabfa4-81f3-407e-86c8-e71b1aeab40a.html"},{"title":"Meta Sarpy - Building 6 Data Center in Papillion","url":"https://www.datacentermap.com/usa/nebraska/papillion/meta-sarpy-building-6/"},{"title":"Papillion - Building 3 — Sarpy, Nebraska","url":"https://cleanview.co/data-centers/nebraska/881/papillion-data-center---phase-2"}],"runId":"srun_c0e944bd89584b54d02c9533ff4ead4b","classifiedAt":"2026-07-02T22:55:51.986Z"},"447":{"community_note":"Some residents and former landowners voiced concerns over farmland conversion and construction impacts, but no Sarpy-specific lawsuits or moratoria were reported, while local coverage emphasizes jobs and tax-base benefits.","water_impact":"moderate","ai_evidence":"No Sarpy-specific announcement of GPU superclusters or AI training clusters; Meta’s engineering posts reference fleetwide H100 deployments without naming Sarpy, and Meta’s Sarpy materials emphasize a company-operated hyperscale campus and sustainability rather than a disclosed AI cluster.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No Sarpy-site gallons/day were published; Meta highlights water-efficient operations and a goal to be water-positive by 2030, with reuse practices before discharge mentioned in its sustainability materials.","grid_note":"Estimated at 160 MW, the campus contributes to OPPD’s sharply rising load from data centers, with reporting linking Google/Meta demand to keeping coal units online and OPPD projecting significant increases in net service requirements and infrastructure needs.","citations":[{"title":"$1.5 billion Facebook data center planned in Sarpy County ...","url":"https://www.wowt.com/2021/03/25/15-billion-facebook-data-center-planned-in-sarpy-county-one-of-the-largest-in-the-world/"},{"title":"Water - Meta Sustainability","url":"https://sustainability.atmeta.com/water/"},{"title":"Meta's Sarpy Data Center","url":"https://datacenters.atmeta.com/asset/sarpy-data-center-info-sheet/"},{"title":"Meta data center electricity consumption hits 14975GWh, ...","url":"https://www.datacenterdynamics.com/en/news/meta-data-center-electricity-consumption-hits-14975gwh-leased-data-center-use-nearly-doubles/"},{"title":"Building Meta's GenAI Infrastructure - Engineering at Meta","url":"https://engineering.fb.com/2024/03/12/data-center-engineering/building-metas-genai-infrastructure/"}],"runId":"srun_c0e944bd89584b548a84af427d9d254c","classifiedAt":"2026-07-02T22:55:51.986Z"},"448":{"community_note":"No organized local opposition found; only routine permitting at 14734 Friend Plaza and a past construction-site racist-graffiti incident that paused work but was not an environmental/zoning fight.","water_impact":"unknown","ai_evidence":"Meta announced adding a new Sarpy building to create a nine‑building, 4‑million‑sq‑ft campus, but provides no Sarpy‑specific disclosure of GPU superclusters or AI tenants; its AI‑optimized design page is generic and does not identify Sarpy/Tower Two.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Meta states Sarpy uses water‑efficient cooling, reuses water numerous times before discharging as wastewater, and captures/infiltrates rainwater on site, but no gallons/day or source details are published.","grid_note":"Campus-scale records show 993.05 MW power capacity and 595.83 MW IT load with OPPD; OPPD reports ~100 MW/year load growth and proposes an average 6.3% 2026 rate increase amid soaring demand.","citations":[{"title":"Raven Northbrook, LLC | DWEE NE","url":"https://dwee.nebraska.gov/news-events/public-notices/raven-northbrook-llc-0"},{"title":"Construction on hold at Meta data center in Sarpy County ...","url":"https://www.datacenterdynamics.com/en/news/construction-on-hold-at-meta-data-center-in-sarpy-county-as-racist-graffiti-is-once-again-found/"},{"title":"Meta's Sarpy Data Center","url":"https://datacenters.atmeta.com/asset/sarpy-data-center-info-sheet/"},{"title":"Raven Northbrook, LLC | DWEE NE","url":"https://dwee.nebraska.gov/news-events/public-notices/raven-northbrook-llc"},{"title":"Water - Meta Data Centers","url":"https://datacenters.atmeta.com/water/"}],"runId":"srun_c0e944bd89584b5444dcca9599f13f51","classifiedAt":"2026-07-02T22:55:51.986Z"},"449":{"community_note":"City Council unanimously approved a scope-reduction amendment for Project Lola; no organized opposition or lawsuits were identified in coverage.","water_impact":"low","ai_evidence":"Edged announced financing for a 200 MW Council Bluffs campus and describes its data centers as AI-ready/high-density for generative AI, but no named AI tenant or GPU supercluster has been publicly disclosed.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No site-specific gallons/day were reported; Edged says every site uses its ThermalWorks waterless cooling and claims more than 1.2 billion gallons/year saved versus conventional designs.","grid_note":"Campus scale is about 200 MW and the city approved a scope-reduction amendment; no public reporting identified on ratepayer costs, new generation/transmission, or curtailment.","citations":[{"title":"Edged reduces scope of planned data center campus in ...","url":"https://www.datacenterdynamics.com/en/news/edged-reduces-scope-of-planned-data-center-campus-in-council-bluffs-iowa/"},{"title":"Council Bluffs 'Project Lola' data center reduced in size, still ...","url":"https://www.3newsnow.com/council-bluffs/council-bluffs-project-lola-data-center-reduced-in-size-still-planned-near-iowa-western"},{"title":"Edged U.S. | Home","url":"https://edged.us/"},{"title":"Edged Energy Launches in the U.S. with Four Ultra-Efficient ...","url":"https://endeavourii.com/post/introducing-four-sustainable-data-centers-across-the-u-s"},{"title":"Edged Partner ThermalWorks Launches AI-Ready ...","url":"https://edged.us/news/edged-partner-thermalworks-launches-advanced-waterless-cooling-system-worldwide"}],"runId":"srun_c0e944bd89584b54ff34e4247eee564e","classifiedAt":"2026-07-02T22:55:51.986Z"},"464":{"community_note":"Local residents and civil-rights advocates have raised concerns over transparency, environmental health, and community benefits; no lawsuit was identified in reporting as of 2026-07-02.","water_impact":"unknown","ai_evidence":"Marketed as an 'AI-ready' facility with 16MW capacity and 'GPU-ready high density' for AI deployments; no named AI tenant or deployed GPU supercluster is confirmed in public materials.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No facility-specific gallons/day or water-source details were found in public materials for MIA-1.","grid_note":"Planned at 16 MW; Florida SB 484 affirms local authority over land-use planning and establishes protections relevant to large data centers, with MIA-1 below the 50 MW trigger discussed in public reporting.","citations":[{"title":"New Miami-Dade data center sparks concerns in Black ...","url":"https://www.wlrn.org/government-politics/2026-04-29/new-miami-dade-data-center-sparks-concerns-in-black-community"},{"title":"Myths vs. Reality: Data Centers And Water Usage","url":"https://www.fwpcoa.org/content.aspx?page_id=5&club_id=859275&item_id=130961"},{"title":"Iron Mountain MIA-1 — Miami Dade, Florida","url":"https://cleanview.co/data-centers/florida/1124/iron-mountain-mia-1"},{"title":"Miami Data Center | Miami Colocation","url":"https://www.ironmountain.com/data-centers/locations/miami-data-center"},{"title":"Iron Mountain Data Centers: MIA-1 - Miami Data Center","url":"https://www.datacenters.com/iron-mountain-mia-1-miami"}],"runId":"srun_c0e944bd89584b54b98cfe77916c476f","classifiedAt":"2026-07-02T22:55:51.986Z"},"478":{"community_note":"Residents and advocacy groups oppose Project Tango over health/safety, power and water concerns; the county vote has been postponed to mid-July 2026 and a landowner lawsuit is underway.","water_impact":"moderate","ai_evidence":"Marketed as a hyperscale AI data center with a planned 600 MW campus, but no named operator or specific GPU training/inference deployments have been publicly disclosed.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Reported estimates cite ~1.7 million gallons/month (21 million/year), while a later redesign claim says a 'closed loop' approach would need only ~5,000 gallons/day.","grid_note":"Planned load is 600 MW, adjacent to FPL’s 3,750 MW West County Energy Center.","citations":[{"title":"Hundreds pack Palm Beach County town hall to oppose ...","url":"https://www.wflx.com/2026/02/26/hundreds-pack-palm-beach-county-town-hall-oppose-project-tango-amid-health-safety-concerns/"},{"title":"Vote on future of AI data center Project Tango postponed","url":"https://www.wptv.com/news/region-c-palm-beach-county/loxahatchee-acreage/palm-beach-county-postpones-vote-on-future-of-ai-data-center-project-tango-to-july"},{"title":"Dueling owners go to court over Project Tango in Palm ...","url":"https://www.wlrn.org/light/south-florida/2026-06-16/dueling-owners-go-to-court-over-project-tango-in-palm-beach-county"},{"title":"Could another data center move forward at Project Tango ...","url":"https://cbs12.com/news/local/could-another-data-center-move-forward-at-project-tango-site-lawsuit-raises-new-questions-public-input-hearings-vote-loophole-warehouse-conversion-wpb-logistics-tpa-group-pba-holdings"},{"title":"Activists worry data center proposal near Arden could drain ...","url":"https://www.wflx.com/2025/12/10/activists-worry-data-center-proposal-near-arden-could-drain-massive-amounts-water-energy/"}],"runId":"srun_c0e944bd89584b5473e519865702b3c8","classifiedAt":"2026-07-02T22:59:25.214Z"},"494":{"community_note":"No organized opposition or lawsuits were identified; the project is proceeding through construction.","water_impact":"unknown","ai_evidence":"Goodman says the LAX01 facility will supply up to 49.5 MW \"supporting surging demand for AI, cloud, and digital infrastructure,\" and DataBank holds NVIDIA DGX-Ready Data Center certification, but no site-specific AI tenant or GPU cluster has been announced.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No facility-specific water consumption was disclosed; Vernon’s water system has a direct Metropolitan Water District (MWD) connection providing a supplemental source.","grid_note":"Up to 49.5 MW capacity with a first 6 MW phase targeted for December 2026.","citations":[{"title":"Goodman Group breaks ground on data center LAX01 in ...","url":"https://us.goodman.com/about-goodman/media-center/latest-news/2025/goodman-group-breaks-ground-on-data-center-lax01-in-vernon-california"},{"title":"Data Centers","url":"https://www.cityofvernonca.gov/government/public-utilities/latest-vpu-developments/data-centers"},{"title":"Goodman Group breaks ground on data center LAX01 in ...","url":"https://us.goodman.com/about-goodman/media-center/latest-news/2025/goodman-group-breaks-ground-on-data-center-lax01-in-vernon-california"},{"title":"Los Angeles Vernon Data Center","url":"https://www.databank.com/data-centers/los-angeles/los-angeles-vernon-data-center/"},{"title":"DataBank LAX2 - Vernon Data Center in Los Angeles (32 ...","url":"https://www.datacentermap.com/usa/california/los-angeles/goodman-lax01/"}],"runId":"srun_c0e944bd89584b542e3d33c97fd3727d","classifiedAt":"2026-07-02T22:55:51.986Z"},"509":{"community_note":"South Coast AQMD submitted CEQA comments on air-quality/NOx issues for proposed emergency diesel generators at 444 North Nash; CEQAnet lists a project to install up to seven generators, and no resident lawsuits or organized opposition were found.","water_impact":"unknown","ai_evidence":"No LAX1-specific announcements of GPU clusters or liquid-cooling retrofits were found; PeeringDB lists network presences (Amazon.com, Cogent, VPLS) at this facility, while Serverfarm’s NVIDIA DGX partner status is company-level, not proof of an LAX1 AI cluster.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day or WUE figures were found; the property lists city water and sewer service, and El Segundo Water partners with West Basin MWD/Metropolitan Water District.","grid_note":"About 18.3 MW is currently commissioned at the 117,500 SF facility; no public evidence of required transmission upgrades or rate-case impacts tied to this site was found.","citations":[{"title":"LAC221108-09 MND 444 North Nash Street Data Center ...","url":"https://www.aqmd.gov/docs/default-source/ceqa/comment-letters/2022/november/LAC221108-09.pdf?sfvrsn=8"},{"title":"444 NORTH NASH STREET DATA CENTER PROJECT","url":"https://ceqanet.lci.ca.gov/2022110041"},{"title":"444 N Nash St, El Segundo, CA 90245","url":"https://www.loopnet.com/Listing/444-N-Nash-St-El-Segundo-CA/7671641/"},{"title":"Water Operations","url":"https://www.elsegundo.gov/government/departments/public-works/water"},{"title":"Serverfarm LAX1 Los Angeles","url":"https://www.peeringdb.com/fac/4952"}],"runId":"srun_c0e944bd89584b54e8954d78d4f86fa2","classifiedAt":"2026-07-02T22:55:51.986Z"},"517":{"community_note":"No organized opposition was found; City of Vernon officials publicly welcomed the facility at opening and the site is operational.","water_impact":"low","ai_evidence":"Lambda will initially lease 21 MW at LAX01 for AI-optimized NVIDIA/GPU infrastructure, and DCD reports Supermicro leased 21 MW at the facility and sublet to Lambda Cloud; Prime describes the site as AI-ready with high-density hybrid air/liquid cooling.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No gallons/day figure or source-stress data reported; Prime cites closed-loop near-zero WUE and Water Restoration Certificates covering 120% of annual consumption.","grid_note":"33 MW facility on Vernon Public Utilities, served by a new 49.5 MVA substation at 66 kV; VPU is not processing new data center capacity or expansion requests until further notice.","citations":[{"title":"We're proud to welcome Prime Los Angeles, the first data ...","url":"https://www.instagram.com/p/DDfdGgWzhHh/?hl=en"},{"title":"Data Centers","url":"https://www.cityofvernonca.gov/government/public-utilities/latest-vpu-developments/data-centers"},{"title":"Sustainability","url":"https://primedatacenters.com/sustainability/"},{"title":"Prime Data Centers Announces the Opening of Its ...","url":"https://www.prnewswire.com/news-releases/prime-data-centers-announces-the-opening-of-its-hyperscale-data-center-in-vernon-california-302305195.html"},{"title":"Prime Data Centers and Lambda Partner to Power the Next ...","url":"https://primedatacenters.com/news/prime-data-centers-and-lambda-partner-to-power-the-next-era-of-superintelligence-with-ai-optimized-infrastructure-in-southern-california/"}],"runId":"srun_c0e944bd89584b54a2ed68ab7e307353","classifiedAt":"2026-07-02T22:55:51.986Z"},"535":{"community_note":"No COL7-specific lawsuit was found; statewide opponents have pushed protests and a moratorium over electricity, water use, and tax incentives, while Ohio approved a Cologix sales‑tax exemption just before pausing new data center tax breaks.","water_impact":"unknown","ai_evidence":"COL7 is marketed as 'AI-ready' and 'purpose-built to support both Scalelogix and Digital Edge deployments' with liquid-to-chip readiness; the only named GPU supercluster in Columbus is Lambda’s NVIDIA HGX B200 at Cologix’s COL4, not COL7.","grid_impact":"high","ai_class":"ai-inference","community_pushback":"some-concern","water_note":"No COL7-specific water volumes or sources are published; the facility is marketed as liquid-to-chip ready, and statewide reporting finds Ohio generally has sufficient water but faces infrastructure and used-water constraints amid growing scrutiny in Licking County.","grid_note":"Planned as part of an up-to-800MW Johnstown campus (eight AI-ready facilities), COL7 is in AEP Ohio territory where PUCO ordered a data center–specific tariff after unprecedented ~30,000 MW of data center requests to manage system impacts and cost allocation.","citations":[{"title":"2 Ohio data centers get $42M tax break before pause","url":"https://signalohio.org/ohio-approves-last-data-center-exemption-before-moratorium/"},{"title":"Ohio OKs last data center sales tax break before DeWine's ...","url":"https://www.dispatch.com/story/marketplace/jobs/2026/06/01/central-ohio-cologix-data-center-gets-last-of-sales-tax-breaks-before-pause/90358842007/"},{"title":"Ohioans urge statewide moratorium as data center boom ...","url":"https://www.dispatch.com/story/news/politics/2026/06/01/ohioans-pack-statehouse-to-protest-rapid-spread-of-data-centers/90316214007/"},{"title":"COL7 Data Center Spec Sheet","url":"https://cologix.com/resources/spec-sheets/col7-data-center-spec-sheet/"},{"title":"Water Readiness and Data Centers: A Near-Term Study for ...","url":"https://ohiochamberfoundation.com/projects/water-readiness-and-data-centers-a-near-term-study-for-ohio/"}],"runId":"srun_c0e944bd89584b545d4582daf3857c64","classifiedAt":"2026-07-02T22:55:51.986Z"},"536":{"community_note":"Active local and statewide pushback: Johnstown-area residents and Ohio opponents cite farmland loss, noise/environment, and utility-bill impacts; no Cologix-specific lawsuit surfaced, and major tax exemptions were approved before a moratorium pause.","water_impact":"unknown","ai_evidence":"No named GPU cluster or AI tenant has been announced for COL8; NVIDIA HGX B200 clusters were launched at COL4, not COL8.","grid_impact":"high","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"","grid_note":"Part of a planned 800 MW campus in AEP Ohio territory; AEP reports 5,642 MW of data-center load under binding contracts and includes Schedule DCT loads in PJM planning.","citations":[{"title":"Data centers bring money and pushback","url":"https://spectrumnews1.com/oh/columbus/news/2026/02/19/data-centers-bring-money-and-pushback"},{"title":"The data center battle continues at the Ohio Statehouse","url":"https://www.news5cleveland.com/news/politics/ohio-politics/the-data-center-battle-continues-at-the-ohio-statehouse"},{"title":"What information is available about the Cologix data center ...","url":"https://www.facebook.com/groups/1410241462740123/posts/2045239189240344/"},{"title":"2 Ohio data centers get $42M tax break before pause","url":"https://signalcleveland.org/ohio-approves-last-data-center-exemption-before-moratorium/"},{"title":"Colocation in Columbus: COL8 Data Center","url":"https://cologix.com/data-centers/columbus/col8/"}],"runId":"srun_c0e944bd89584b54179d9c0d37b5ecb9","classifiedAt":"2026-07-02T22:55:52.262Z"},"550":{"community_note":"Organized regional pushback in central Ohio, including New Albany, centers on power/water use and transparency, but no QTS-specific lawsuits or zoning appeals were found.","water_impact":"low","ai_evidence":"Described as a campus for rapid large-scale deployments with ~144 MW across the first two facilities, but no public GPU supercluster or named AI tenant announcements were found.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"QTS says its closed-loop cooling does not consume water once operational and a water-free system can save more than 48 million gallons annually per data center; no facility-specific gallons/day, source-stress, or discharge details were disclosed.","grid_note":"Approx. 144 MW across the first two facilities, and PUCO approved AEP Ohio’s Data Center Tariff in July 2025 requiring large new data center customers (>25 MW) to pay associated costs, mitigating ratepayer exposure.","citations":[{"title":"New Albany touts jobs, revenue as data center pushback ...","url":"https://www.dispatch.com/story/news/local/2026/06/08/new-albany-ohio-data-center-construction-jobs-pushback-community/90423756007/"},{"title":"Ohio's data center boom is running into political resistance","url":"https://signalohio.org/ohio-data-center-boom-faces-political-resistence/"},{"title":"Environmental Stewardship","url":"https://q.com/the-qts-difference/environmental-stewardship/"},{"title":"Pioneering Water Efficiency and Sustainability in Data ...","url":"https://q.com/resources/pioneering-water-efficiency-and-sustainability-in-data-center-operations/"},{"title":"Same size. Not the same water use. A QTS closed-loop ...","url":"https://www.facebook.com/qtsdatacenters/posts/same-size-not-the-same-water-usea-qts-closed-loop-data-center-uses-about-600000-/1461407262694610/"}],"runId":"srun_c0e944bd89584b54d1f5b7bcfa896816","classifiedAt":"2026-07-02T22:55:52.262Z"},"551":{"community_note":"No QTS‑specific organized opposition was found; regional reporting notes public pushback over data centers’ power and water use, and the City launched a data‑center information site to address water, energy, zoning, and community‑impact questions [1][2].","water_impact":"low","ai_evidence":"QTS describes New Albany 1 as built for rapid, large‑scale deployments at 1225 Beech Rd SW (DC2) without naming AI tenants, and industry coverage notes a multi‑building campus in New Albany but does not cite AI‑specific deployments [1][2].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"QTS markets closed‑loop cooling with WUE 0 for data halls and the City says New Albany data centers “do not use large amounts every day,” while separate reporting projects central‑Ohio data‑center demand near 28.8 million gallons/day by 2030 and flags used‑water/wastewater management as a key issue [1][2][3][4].","grid_note":"QTS plans about 222 MW of critical power on its New Albany campus, while AEP Ohio reports 17,861 MW of contracted data‑center load and a PUCO‑approved Data Center Tariff requiring large customers to pay at least 85% of subscribed usage to reduce stranded‑cost risk [1][2][3].","citations":[{"title":"New Albany touts jobs, revenue as data center pushback ...","url":"https://www.dispatch.com/story/news/local/2026/06/08/new-albany-ohio-data-center-construction-jobs-pushback-community/90423756007/"},{"title":"Data Center - City of New Albany, Ohio","url":"https://datacenters.newalbanyohio.org/"},{"title":"Do Data Centers Use a Lot of Water?","url":"https://q.com/resources/do-data-centers-use-a-lot-of-water/"},{"title":"Data Center - City of New Albany, Ohio","url":"https://datacenters.newalbanyohio.org/"},{"title":"Data center water report from Ohio chamber says state ...","url":"https://www.dispatch.com/story/news/environment/2026/06/10/data-center-water-report-from-ohio-chamber-says-state-must-build-trust/90475947007/"}],"runId":"srun_c0e944bd89584b548c4dd1ef95a2b827","classifiedAt":"2026-07-02T22:55:52.262Z"},"552":{"community_note":"No project-specific organized opposition or complaints were found for CyrusOne New Albany COL-1; separately, St. Albans Township in Licking County has moved to ban data centers.","water_impact":"unknown","ai_evidence":"Reporting describes an under-construction CyrusOne colocation/hyperscale facility at 12181 Jug St. with no disclosed capacity, tenants, or AI/GPU deployments; permits note a $150m, two‑story, 274,518‑sf building.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No site-specific water volumes or sources were found; Ohio coverage notes data centers can use significant water and that usage is under heightened scrutiny.","grid_note":"Facility-specific MW was not disclosed; AEP Ohio’s PUCO‑approved data‑center tariff requires large (>25 MW) customers to pay for a minimum 85% of subscribed energy, and AEP Ohio reports significant contracted data‑center load through 2026 and beyond.","citations":[{"title":"Permits offer details after groundbreaking of $150 million ...","url":"https://www.nbc4i.com/news/local-news/new-albany/permits-offer-details-after-groundbreaking-of-150-million-new-albany-data-center/"},{"title":"Even as they ban data centers, St. Albans Township ...","url":"https://www.thereportingproject.org/even-as-they-ban-data-centers-st-albans-township-trustees-embrace-tools-to-manage-growth/"},{"title":"Data center growth raises questions about water use","url":"https://spectrumnews1.com/oh/columbus/news/2026/04/29/how-data-centers-use-water"},{"title":"More than electricity: Data centers' water use scrutinized","url":"https://ohiohouse.gov/members/christine-cockley/in-the-news/more-than-electricity-data-centers-water-use-scrutinized-5784"},{"title":"CyrusOne breaks ground on New Albany, Ohio data center","url":"https://www.datacenterdynamics.com/en/news/cyrusone-breaks-ground-on-new-albany-ohio-data-center/"}],"runId":"srun_c0e944bd89584b5446a5eb1eb3c2f230","classifiedAt":"2026-07-02T22:55:52.262Z"},"553":{"community_note":"No organized opposition specific to Edged CMH01 was found; statewide and nearby communities have raised concerns about water use, diesel emissions/noise, and grid/ratepayer costs, while New Albany approved a 15-year, 100% real-property-tax abatement for the project in November 2023.","water_impact":"low","ai_evidence":"Operator materials and industry coverage describe the New Albany facility as delivering 24 MW and using next‑generation waterless cooling for high‑density AI workloads; it is marketed as engineered for dense, AI‑driven loads, but no named GPU/AI tenant at CMH01 is publicly disclosed.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Operator and trade coverage state closed-loop, waterless cooling at CMH01, with claims of saving nearly 95 million gallons of water per year.","grid_note":"24 MW facility in AEP Ohio territory; PUCO ordered AEP Ohio to create a data‑center‑specific tariff and lift its moratorium on new data‑center connections, and the adopted tariff adds more stringent requirements for such loads.","citations":[{"title":"New Albany lands another $3.25B in data center projects ...","url":"https://www.bizjournals.com/columbus/news/2023/11/22/edged-energy-new-albany-data-center.html"},{"title":"Council Minutes - Regular Meeting - November 21, 2023","url":"https://newalbanyohio.org/wp-content/uploads/2020/03/Council-Minutes-11-21-23.pdf"},{"title":"More than electricity: Data centers' water use scrutinized","url":"https://ohiohouse.gov/members/christine-cockley/in-the-news/more-than-electricity-data-centers-water-use-scrutinized-5784"},{"title":"Data centers' impact on Ohio's environment","url":"https://www.spectrumnews1.com/oh/columbus/news/2026/02/22/data-centers--impact-on-the-environment-"},{"title":"Grove City imposes 12-month moratorium on data centers","url":"https://www.spectrumnews1.com/oh/columbus/sports/2026/06/02/grove-city-data-center"}],"runId":"srun_c0e944bd89584b5400fe0541195aae55","classifiedAt":"2026-07-02T22:55:52.262Z"},"554":{"community_note":"No organized, site-specific opposition was found; regionally, consumer/utility stakeholders and media scrutinize data centers over electricity costs and water use, with no active litigation or moratorium targeting this parcel.","water_impact":"unknown","ai_evidence":"DBT lists “Harrison Road, New Albany, OH – 44 Acres – Purchased: March 2022,” and Baxtel notes DBT acquired 44 acres intending to develop a data center at 2214 Harrison Rd; no public disclosures show GPUs, AI tenants, or liquid-cooling/high-density specs at this site.","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No site-specific water-use or cooling details were found; state/media coverage notes central Ohio data-center water use is being scrutinized.","grid_note":"No site-specific MW or interconnection details were found; regionally, AEP Ohio reports 17,861 MW of contracted data-center projects and PUCO approved a data-center-specific tariff requiring large new data centers to pay at least 85% of subscribed energy.","citations":[{"title":"AEP Ohio Proposal on Data Centers to Protect ...","url":"https://www.aep.com/news/stories/view/10327/"},{"title":"More than electricity: Data centers' water use scrutinized","url":"https://ohiohouse.gov/members/christine-cockley/in-the-news/more-than-electricity-data-centers-water-use-scrutinized-5784"},{"title":"Data centers' impact on Ohio's environment","url":"https://spectrumnews1.com/oh/columbus/news/2026/02/22/data-centers--impact-on-the-environment-"},{"title":"More than electricity: Data centers' water use scrutinized","url":"https://ohiohouse.gov/members/christine-cockley/in-the-news/more-than-electricity-data-centers-water-use-scrutinized-5784"},{"title":"Current & Past Projects | DBT Data","url":"https://dbtdata.com/projects/"}],"runId":"srun_c0e944bd89584b54bb5620f04a22cf3a","classifiedAt":"2026-07-02T22:55:52.262Z"},"555":{"community_note":"Residents organized a rally and petition drive opposing the Aligned Pataskala campus over local impacts; the Planning & Zoning Commission voted 5–2 to recommend denial and City Council action is pending.","water_impact":"low","ai_evidence":"No site-specific AI workload is confirmed; Aligned is an NVIDIA DGX‑Ready colocation partner, and marketplace listings describe this address as a developing colocation/build‑to‑scale facility.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Closed-loop cooling is available/anticipated, which recycles water; no gallons/day, source-aquifer stress, or industrial discharge figures were reported in public materials.","grid_note":"Proposed 200‑MW, three‑building campus on 89 acres at Broad & Mink; no specific transmission upgrades, new generation, curtailment, or ratepayer charges disclosed in public reports.","citations":[{"title":"Pataskala residents rally at City Hall to fight Aligned data ...","url":"https://abc6onyourside.com/news/local/pataskala-residents-rally-at-city-hall-to-fight-aligned-data-center-seek-petition-drive-ohio"},{"title":"Pataskala planning board says city council should reject ...","url":"https://www.thereportingproject.org/pataskala-planning-board-says-city-council-should-reject-aligned-data-centers-proposal/"},{"title":"Should Pataskala allow data center in industrial park ...","url":"https://www.aol.com/articles/pataskala-allow-data-center-industrial-180844923.html"},{"title":"Advanced Data Center Cooling","url":"https://aligneddc.com/cooling-innovation/"},{"title":"Protecting Regional Water Resources","url":"https://aligneddc.com/case-studies/case-study-protecting-regional-water-resources/"}],"runId":"srun_c0e944bd89584b5475ae3a23114e3a7b","classifiedAt":"2026-07-02T22:55:52.262Z"},"556":{"community_note":"No organized opposition identified; New Albany adopted the Smart Farm Zoning District (~115.5 acres) and no litigation or moratorium specific to the site is reported.","water_impact":"unknown","ai_evidence":"Local reporting calls it an eight-building, +/-1.6M-sf high-density data storage and processing campus; no public confirmation of GPU clusters or specific AI tenants was found.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"","grid_note":"An industry listing shows a planned 36 MW facility/building at the site.","citations":[{"title":"ordinance o-24-2025","url":"https://newalbanyohio.org/wp-content/uploads/2025/07/Adopted-Legislation-7-15-25.pdf"},{"title":"Central Ohio Regional Water Study","url":"https://epa.ohio.gov/monitor-pollution/pollution-issues/water-studies/central-ohio-water-study"},{"title":"Tell Ohio EPA: New data center wastewater permit puts our ...","url":"https://greatlakes.org/2026/01/tell-ohio-epa-new-data-center-wastewater-permit-puts-our-waters-at-risk/"},{"title":"Large data center complex proposed for 114 acres just ...","url":"https://www.thereportingproject.org/large-data-center-complex-proposed-for-114-acres-just-south-of-johnstown/"},{"title":"AEP Ohio Proposal on Data Centers to Protect ...","url":"https://www.aep.com/news/stories/view/10327/"}],"runId":"srun_c0e944bd89584b5430065452d825cb1c","classifiedAt":"2026-07-02T22:55:52.262Z"},"557":{"community_note":"No organized legal/zoning fight found specific to 2570 Beech Road; regionally, New Albany/central-Ohio debate and opposition persist over data centers’ impacts—especially water—while economic benefits are touted.","water_impact":"unknown","ai_evidence":"An AWS-linked report identifies a 459,000‑sq‑ft AWS facility at 2570 Beech Road, and AWS connects its Ohio expansion to cloud and AI demand while offering H100-based EC2 P5 instances in the Ohio region; however, no reporting ties AI GPU clusters specifically to this building.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No site-specific water metrics reported; AWS disclosed a 2025 average of 0.03 gal/kWh, while central-Ohio water use by data centers has drawn policy scrutiny.","grid_note":"No 2570-specific MW reported; AEP Ohio shows 5,642 MW of binding data-center contracts and an 85% minimum-billing tariff for large new data centers.","citations":[{"title":"New Albany touts jobs, revenue as data center pushback ...","url":"https://www.dispatch.com/story/news/local/2026/06/08/new-albany-ohio-data-center-construction-jobs-pushback-community/90423756007/"},{"title":"Strategies to Address Water Use Emerge in Wake of ...","url":"https://www.publicpower.org/periodical/article/strategies-address-water-use-emerge-wake-community-opposition-data-centers"},{"title":"Amazon — finally — reports its annual water use at data ...","url":"https://www.latitudemedia.com/news/amazon-finally-reports-its-annual-water-use-at-data-centers/"},{"title":"More than electricity: Data centers' water use scrutinized","url":"https://ohiohouse.gov/members/christine-cockley/in-the-news/more-than-electricity-data-centers-water-use-scrutinized-5784"},{"title":"AWS-linked company files plans for two massive ...","url":"https://www.datacenterdynamics.com/en/news/aws-linked-company-files-plans-for-two-massive-data-center-campus-in-new-albany-ohio/"}],"runId":"srun_c0e944bd89584b54ea5e6f85b7a68e21","classifiedAt":"2026-07-02T22:55:52.262Z"},"558":{"community_note":"City of Hilliard officials and residents have mounted active opposition to AWS/AEP Ohio’s 228 natural-gas fuel cells and 158 diesel backup generators over emissions and oversight, with the OPSB approving fuel cells, an EPA permit appealed by the city, and public comments on diesel permits underway.","water_impact":"unknown","ai_evidence":"Public listings confirm 5109 Hayden Run is an AWS data center, but there is no disclosed evidence of GPU superclusters, Trainium/P5 deployments, or liquid-cooling retrofits at this building; AWS’s AI/GPU offerings are not facility-specific here.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No site-specific water data found; Amazon reports 0.12 L/kWh in 2025 and says AWS often uses direct evaporative cooling during hot periods.","grid_note":"OPSB approved a 228-unit fuel-cell project for the Hilliard AWS campus with a city appeal of the EPA permit pending, Amazon sought permits for 158 diesel backup generators, and AEP Ohio’s Data Center Tariff took effect July 23, 2025.","citations":[{"title":"Hilliard to appeal EPA fuel cell permit for Amazon site","url":"https://hilliardohio.gov/hilliard-to-appeal-epa-fuel-cell-permit-for-amazon-site/"},{"title":"Hilliard residents voice concerns over Amazon fuel cells ...","url":"https://www.10tv.com/article/news/local/boomtown-ohio/hilliard-residents-voice-concerns-amazon-fuel-cells-project-aep-open-house/530-15e5c601-f8cc-4f05-944a-558e18f4841c"},{"title":"Hilliard residents concerned by data center backup ...","url":"https://www.nbc4i.com/news/local-news/hilliard/hilliard-residents-concerned-by-data-center-backup-generator-emissions/"},{"title":"CMH 072 (Hilliard Amazon Data Center)","url":"https://ohioepa.commentinput.com/?id=B5PFQeuWp&utm_medium=email&utm_name=&utm_source=govdelivery"},{"title":"How Amazon is making its data centers more water-efficient","url":"https://www.aboutamazon.com/news/sustainability/amazon-data-center-water-usage"}],"runId":"srun_c0e944bd89584b54a4b68934d0e0a07e","classifiedAt":"2026-07-02T22:55:52.262Z"},"559":{"community_note":"New Albany has seen resident pushback over resource use and transparency, while St. Albans Township (Licking County) advanced a ban on data centers; no lawsuit or moratorium specific to the AWS Beech/Miller campus was found.","water_impact":"unknown","ai_evidence":"DCD and facility listings describe the Beech/Miller site as an AWS hyperscale campus without campus-specific GPU or liquid-cooling disclosures, while AWS’s H100-based P5 instances exist at the regional (us-east-2) level, not this site.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No campus-specific gallons/day or source/discharge data was found; regional reporting flags competition for water in central Ohio, and Amazon said its data centers used 2.5 billion gallons in 2025, not allocated to this site.","grid_note":"No campus MW disclosed; regionally AEP Ohio cited ~600 MW existing data-center load, 4.4 GW under agreements by 2030, and PUCO-approved tariff terms requiring large data centers to pay at least 85% of reserved capacity to protect other ratepayers.","citations":[{"title":"New Albany touts jobs, revenue as data center pushback ...","url":"https://www.dispatch.com/story/news/local/2026/06/08/new-albany-ohio-data-center-construction-jobs-pushback-community/90423756007/"},{"title":"Licking County Planning Commission OKs St. Albans ...","url":"https://www.thereportingproject.org/licking-county-planning-commission-oks-st-albans-township-plan-to-ban-data-centers/"},{"title":"Data Centers And Farmers Fight Over Water In Ohio","url":"https://weather.com/news/news/2025-11-22-water-wars-ohio-data-centers-farmers"},{"title":"Five things to know about Amazon data centers' use of water","url":"https://www.southbendtribune.com/story/news/local/2026/06/11/five-things-to-know-about-amazon-data-centers-use-of-water/90499359007/"},{"title":"Amazon: 2570 Beech Road Data Center","url":"https://baxtel.com/data-center/amazon-2570-beech-road"}],"runId":"srun_c0e944bd89584b545f0ea367784b67bf","classifiedAt":"2026-07-02T22:55:52.262Z"},"560":{"community_note":"No organized opposition specific to 2565 Harrison Rd was found; statewide coverage notes rising backlash and occasional moratoria over electricity prices and infrastructure impacts, but none tied to this parcel.","water_impact":"unknown","ai_evidence":"Coverage confirms Google paid $63M for the 2565 Harrison Rd NW property and indicates a potential data center site, but provides no details of GPU superclusters, AI tenants, or AI-focused infrastructure.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No site-specific data reported; separate coverage cites Google’s existing New Albany facility at more than 405 million gallons per year and highlights statewide scrutiny of data-center water use.","grid_note":"AEP Ohio’s Data Center Tariff became effective July 23, 2025, governing large new data-center loads in the territory.","citations":[{"title":"Ohio's data center boom is running into political resistance","url":"https://signalohio.org/ohio-data-center-boom-faces-political-resistence/"},{"title":"Advancing responsible water use at our data centers","url":"https://datacenters.google/water/"},{"title":"Google acquires 85 acres in New Albany, Ohio - DCD","url":"https://www.datacenterdynamics.com/en/news/google-acquires-85-acres-in-new-albany-ohio/"},{"title":"Google: 2565 Harrison Rd Data Center","url":"https://baxtel.com/data-center/google-2565-harrison-rd"},{"title":"Public Utilities Commission of Ohio Authorizes Tariff for ...","url":"https://www.vorys.com/publication-public-utilities-commission-of-ohio-authorizes-tariff-for-aep-ohios-data-center-customers-requires-end-of-moratorium-on-new-services-for-data-centers"}],"runId":"srun_c0e944bd89584b541966be96b3442898","classifiedAt":"2026-07-02T22:55:52.262Z"},"561":{"community_note":"No organized opposition specific to Microsoft’s 3287 Beech Rd site was found; New Albany runs a public data‑center information site to address resident questions while broader Ohio moratorium/backlash stories continue.","water_impact":"unknown","ai_evidence":"Microsoft’s construction update and DCD coverage describe a new Azure data center in New Albany (~245,000 sq ft, ~$420m) without any mention of GPU superclusters or AI‑specific deployments at this site.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No facility-specific gallons/day were reported; the city launched a data‑center information site on water use, and Microsoft says new datacenters from Aug 2024 use closed‑loop cooling with zero water evaporated for cooling, without explicitly naming this site.","grid_note":"AEP Ohio reports 5,642 MW of binding data‑center contracts and has a Data Center Tariff with load‑study fees, signaling substantial regional load growth and structured cost allocation.","citations":[{"title":"Data Center - City of New Albany, Ohio","url":"https://datacenters.newalbanyohio.org/"},{"title":"Ohio's data center boom is running into political resistance","url":"https://signalohio.org/ohio-data-center-boom-faces-political-resistence/"},{"title":"Data centers spark growth amid power and water concerns","url":"https://www.10tv.com/article/news/local/data-centers-drive-growth-water-electricity-concerns-central-ohio/530-7bed9fda-a207-4891-ac21-0f553c3c2c66"},{"title":"Explore New Albany's Data Center Website","url":"https://newalbanyohio.org/news/2026/06/explore-new-albanys-data-center-website/"},{"title":"Next-generation datacenters consume zero water for cooling","url":"https://www.microsoft.com/en-us/microsoft-cloud/blog/2024/12/09/sustainable-by-design-next-generation-datacenters-consume-zero-water-for-cooling/"}],"runId":"srun_c0e944bd89584b54d3bed8b91dc16d2d","classifiedAt":"2026-07-02T22:55:52.262Z"},"563":{"community_note":"No organized opposition, lawsuits, or zoning fights specific to COL4 were found; public materials are neutral/promotional about the Worthington Woods/Alta View expansion.","water_impact":"unknown","ai_evidence":"Lambda is deploying NVIDIA HGX B200–accelerated AI clusters at Cologix COL4, with DCD reporting the clusters are at 7500 Alta View and the facility offers 33MW of IT capacity.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No facility-specific gallons/day reported; the site uses chilled water with free cooling and county permits show 'INSTALL SANITARY AND DOMESTIC WATER' work at 7500 Alta View.","grid_note":"Approx. 33MW IT at 7500 Alta View in AEP Ohio; the AEP Ohio Data Center Tariff sets a minimum monthly billing demand of 85% to mitigate ratepayer cost shifts.","citations":[{"title":"Cologix re-announces COL4 data center in Columbus, Ohio","url":"https://www.datacenterdynamics.com/en/news/cologix-re-announces-col4-data-center-in-columbus-ohio/"},{"title":"Cologix Expanding Data Center Campus in the Columbus ...","url":"https://cologix.com/news/cologix-expanding-data-center-campus-in-the-columbus-region-investing-more-than-150-million/"},{"title":"Liquid Cooling for Data Centers: Meeting the Growing ...","url":"https://cologix.com/resources/blogs/liquid-cooling-for-data-centers-meeting-the-growing-demand-of-ai/"},{"title":"Data center growth raises questions about water use","url":"https://spectrumnews1.com/oh/columbus/news/2026/04/29/how-data-centers-use-water"},{"title":"Cologix and Lambda Launch First NVIDIA HGX B200 ...","url":"https://cologix.com/news/cologix-and-lambda-launch-first-nvidia-hgx-b200-accelerated-ai-clusters-in-columbus-at-col4/"}],"runId":"srun_c0e944bd89584b548e16f208760a6232","classifiedAt":"2026-07-02T22:55:52.262Z"},"571":{"community_note":"No Secaucus-specific opposition or litigation surfaced; NJ pushback covered in the news pertains to other projects (e.g., Vineland noise lawsuit, broader political fights), not H5’s Secaucus site.","water_impact":"unknown","ai_evidence":"No disclosures of GPU superclusters, AI-training tenants, or liquid-cooling retrofits for Secaucus; listings describe a ~38,000 sq ft colocation/enterprise site with ~2.00 MW capacity, while H5’s AI page is general marketing, not site-specific.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Cooling plant includes N+1 chillers, N+1 cooling towers, N+1 CRACs, and cold-aisle containment; no gallons/day, source, or discharge details are published.","grid_note":"Listed capacity is ~2.00 MW; utility is PSE&G; no Secaucus-specific upgrade or rate action identified, and PSE&G provides generic data center services information.","citations":[{"title":"New Jersey Neighbors Sue Over Humming Noise From Data ...","url":"https://www.govtech.com/artificial-intelligence/new-jersey-neighbors-sue-over-humming-noise-from-data-center"},{"title":"Inside the battle over data center development that's quietly ...","url":"https://newjerseyglobe.com/congress/inside-the-battle-over-data-center-development-thats-quietly-reshaping-n-j-politics/"},{"title":"New Jersey Data Center","url":"https://h5datacenters.com/new-jersey-data-center.html"},{"title":"New Jersey Data Center","url":"https://h5datacenters.com/new-jersey-data-center.html"},{"title":"H5 Data Centers: New Jersey","url":"https://www.ocolo.io/colocation/h5-data-centers/new-jersey/"}],"runId":"srun_c0e944bd89584b54486f0ddbca1081a3","classifiedAt":"2026-07-02T22:55:52.262Z"},"576":{"community_note":"No organized opposition or litigation was identified; the site proceeded through routine planning actions (a 2022 expansion filing and a March 13, 2024 accessory‑generator application) with no site‑specific reporting of opposition.","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"QTS states its facilities use closed-loop, water-free cooling once operational; no site-specific gallons/day, source-stress, or discharge data for Piscataway was found.","grid_note":"Listings place capacity between 52 MW and 65 MW; no public records located indicating transmission upgrades, curtailment, or ratepayer impacts specific to this site.","citations":[{"title":"Piscataway NJ: Data Center on Possumtown Road proposes expansion","url":"http://mycentraljersey.com/story/news/local/middlesex-county/2022/02/08/piscataway-nj-data-center-possumtown-road-proposes-expansion/6648002001"},{"title":"piscataway township planning board","url":"https://cms9files.revize.com/piscatawaynj/Planning%20Board%20agenda%2001.24.24.pdf"},{"title":"Piscataway, New Jersey planning meeting minutes for 2024 ...","url":"https://files.piscatawaynjmeetings.com/planning/2024-03-13.pdf"},{"title":"Environmental Stewardship","url":"https://q.com/the-qts-difference/environmental-stewardship/"},{"title":"Did you know? The QTS water-free cooling system saves ...","url":"https://www.facebook.com/qtsdatacenters/videos/did-you-know-the-qts-water-free-cooling-system-saves-more-than-48-million-gallon/512608931819190/"}],"runId":"srun_c0e944bd89584b5402c727aa431279d4","classifiedAt":"2026-07-02T22:55:52.262Z"},"578":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No site-specific gallons/day reported; Jersey City’s municipal system averages roughly 45–50 MGD with peak treatment up to ~80 MGD, and no controversy tied to this site was found.","grid_note":"Public directories list QTS JCY1/DC1’s capacity in a wide band—from <10 MW to 24 MW—suggesting a modest existing colo load with no noted utility transmission additions.","citations":[{"title":"QTS Jersey City 1 DC1 - Hudson County","url":"https://www.datacentermap.com/usa/new-jersey/hudson-county/qts-jersey-city/"},{"title":"QTS Expands Jersey City Data Center","url":"https://www.datacenterknowledge.com/operations-and-management/qts-expands-jersey-city-data-center"},{"title":"QTS Jersey City (JCY1)","url":"https://www.peeringdb.com/fac/579"},{"title":"QTS Jersey City","url":"https://mlq.ai/data-centers/usa/new-jersey/jersey-city/qts-us-nj-jc/"},{"title":"Jersey City 1 DC1 - QTS Data Centers","url":"https://www.ocolo.io/colocation/qts-data-centers/jersey-city-1-dc1/"}],"runId":"srun_c0e944bd89584b54bd1f417deda8b369","classifiedAt":"2026-07-02T22:55:52.262Z"},"589":{"community_note":"Residents mounted organized opposition during hearings on QTS’s second East Windsor facility, but the Planning Board approved the project with conditions after public hearings and protests [1][2][3].","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"QTS states East Windsor uses closed‑loop cooling that does not consume water for cooling once operational, and water service is provided by East Windsor MUA drawing from the Raritan‑Magothy aquifer [1][2].","grid_note":"The site is reported at about 70 MW of capacity, and hearings drew public concern, but I found no verified evidence of required new generation/transmission or rate impacts specific to this project [1][2].","citations":[{"title":"East Windsor NJ data center expansion draws public ...","url":"https://nj1015.com/east-windsor-data-center-backlash/"},{"title":"New QTS Data Center Receives Green Light from East ...","url":"https://www.tapinto.net/towns/east-windsor-hightstown/sections/government/articles/new-qts-data-center-receives-green-light-from-east-windsor-planning-board"},{"title":"Decision on QTS' planned expansion of data center in East ...","url":"https://www.datacenterdynamics.com/en/news/decision-on-qts-planned-expansion-of-data-center-in-east-windsor-new-jersey-postponed/"},{"title":"East Windsor - Data Centers","url":"https://qtsdatacenters.com/data-centers/east-windsor/"},{"title":"Decision on QTS' planned expansion of data center in East ...","url":"https://www.datacenterdynamics.com/en/news/decision-on-qts-planned-expansion-of-data-center-in-east-windsor-new-jersey-postponed/"}],"runId":"srun_c0e944bd89584b5477775ccc94c17266","classifiedAt":"2026-07-02T22:55:52.262Z"},"613":{"community_note":"No organized local opposition identified; only routine Utah DAQ public-comment air-permit actions for backup generation at the West Jordan data center are on file.","water_impact":"moderate","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"Grist reports 47.4 million gallons used Oct 2024–Sep 2025 (~130,000 gpd) for Aligned’s West Jordan data center; Aligned cites closed-loop, waterless cooling that reduces ongoing water use.","grid_note":"About 34 MW at SLC-01; Utah revised duty-to-serve rules for ≥100 MW loads and Rocky Mountain Power is reported as lacking capacity for the surge, with no SLC-01-specific upgrades or rate actions identified.","citations":[{"title":"{{$s }}","url":"https://daqpermitting.utah.gov/DocViewer?IntDocID=159077&contentType=application/pdf"},{"title":"DAQ-2026-000020 - Laserfiche WebLink - Utah.gov","url":"https://lf-public.deq.utah.gov/WebLink/DocView.aspx?id=641110&dbid=0&repo=Public"},{"title":"Can you build data centers in a desert without draining ... - Grist","url":"https://grist.org/technology/utah-data-center-water-supply-meta-novva/"},{"title":"Protecting Regional Water Resources","url":"https://aligneddc.com/case-studies/case-study-protecting-regional-water-resources/"},{"title":"Sustainability as a Priority","url":"https://aligneddc.com/sustainability/"}],"runId":"srun_c0e944bd89584b5431cf769ffb2704d7","classifiedAt":"2026-07-02T22:55:52.262Z"},"614":{"community_note":"No organized opposition or lawsuits were found; state air-permitting records document an updated Approval Order for onsite natural-gas generation at the West Jordan campus.","water_impact":"moderate","ai_evidence":"Official pages describe a multi-tenant colocation campus and do not announce GPU superclusters or AI tenants.","grid_impact":"high","ai_class":"not-ai","community_pushback":"none-found","water_note":"A closed-loop, water-free cooling design is used; Grist reports a one-time 55,000-gallon fill, and local reporting noted about 1.1 million gallons consumed early in operations in the Great Salt Lake basin.","grid_note":"Build-out targets around 175 MW, and a 200 MW onsite natural-gas facility (“Project Pulsar”) has topped out at the West Jordan campus.","citations":[{"title":"Laserfiche WebLink - Utah.gov","url":"https://lf-public.deq.utah.gov/WebLink/DocView.aspx?id=582523&dbid=0&repo=Public"},{"title":"Can you build data centers in a desert without draining ... - Grist","url":"https://grist.org/technology/utah-data-center-water-supply-meta-novva/"},{"title":"Sustainable Water-Free Data Center Cooling","url":"https://www.novva.com/data-center-services/water-free-cooling/"},{"title":"Yes, data centers use a lot of water. But a Utah company ...","url":"https://greatsaltlakenews.org/latest-news/salt-lake-tribune/yes-data-centers-use-a-lot-of-water-but-a-utah-company-shows-it-doesnt-have-to-be-that-way"},{"title":"Utah Data Center | SLC Colocation","url":"https://www.novva.com/data-center-facilities/utah/"}],"runId":"srun_c0e944bd89584b54ec27906e62482e60","classifiedAt":"2026-07-02T22:55:52.262Z"},"623":{"community_note":"No organized opposition or litigation surfaced; the 2024 Utah DAQ air permit references routine emergency-generator permitting and standard public-comment procedures only.","water_impact":"low","ai_evidence":"A Utah AI-data-center map includes Oracle West Jordan and notes it is air-cooled, while Oracle Cloud Infrastructure offers NVIDIA GPU instances for AI workloads; no site-specific GPU supercluster or liquid-cooling retrofit was identified.","grid_impact":"unknown","ai_class":"ai-inference","community_pushback":"none-found","water_note":"No Oracle West Jordan gallon/day figure was reported; ABC4 says servers are air-cooled, and Salas O’Brien adds the facility was designed to significantly reduce energy and water use for West Jordan’s desert climate.","grid_note":"Utah DAQ records list 12 emergency diesel generators and a diesel fire-pump engine for backup at the 6136 W 10120 S facility; no MW load or utility upgrade filings were found.","citations":[{"title":"{{$s }}","url":"https://daqpermitting.utah.gov/DocViewer?IntDocID=142764&contentType=application/pdf"},{"title":"DAQ-2024-007919","url":"https://lf-public.deq.utah.gov/WebLink/DocView.aspx?id=397818&dbid=0&repo=Public"},{"title":"Tracking where AI data centers are being built in Utah","url":"https://www.abc4.com/news/digital-exclusives/tracking-ai-data-centers-utah-map/"},{"title":"Cloud Networking Facility, Cells 2.1 & 2.2","url":"https://salasobrien.com/projects/cloud-networking-facility-cells-2-1-2-2/"},{"title":"Can you build data centers in a desert without draining ... - Grist","url":"https://grist.org/technology/utah-data-center-water-supply-meta-novva/"}],"runId":"srun_c0e944bd89584b54a67faa31c0651ea5","classifiedAt":"2026-07-02T22:55:52.657Z"},"625":{"community_note":"No organized opposition surfaced; Bluffdale Planning Commission minutes note no public comments during site-plan approval on Dec 6, 2023 [1].","water_impact":"low","ai_evidence":"No confirmed AI tenant or GPU deployment was identified for Bluffdale; Edged describes its facilities as “AI-ready” and backed by waterless cooling [4], and the facility is listed at the Bluffdale address without workload details [5].","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"Edged markets closed-loop, waterless cooling for its data centers; no Bluffdale-specific gallons/day or discharge details were published [3].","grid_note":"","citations":[{"title":"BlUFfDAlE","url":"https://www.bluffdale.gov/AgendaCenter/ViewFile/Minutes/_12062023-1316"},{"title":"Edged Partner ThermalWorks Launches AI-Ready ...","url":"https://edged.us/news/edged-partner-thermalworks-launches-advanced-waterless-cooling-system-worldwide"},{"title":"Edged U.S. | Home","url":"https://edged.us/"},{"title":"Edged Energy SLC01-1 | 600 W 14600 South, Salt Lake City","url":"https://datacenterhawk.com/marketplace/providers/edged-energy/600-w-14600-south/slc01-1"},{"title":"Can you build data centers in a desert without draining ... - Grist","url":"https://grist.org/technology/utah-data-center-water-supply-meta-novva/"}],"runId":"srun_c0e944bd89584b5460d7c580f10b94aa","classifiedAt":"2026-07-02T22:55:52.657Z"},"626":{"community_note":"No organized opposition reported; Utah DAQ issued an approval order in Sept. 2022 for the West Jordan data center’s emergency diesel equipment [6].","water_impact":"moderate","ai_evidence":"SLC‑03 is presented as a hyperscale facility, but there are no SLC‑03‑specific announcements of GPU clusters or AI tenants; Aligned’s public AI partnership with Lambda targets a DFW site instead of Salt Lake City [2][3].","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Local reporting says Aligned used 47.4 million gallons of water at its West Jordan site over a recent 12-month period [1].","grid_note":"Two‑story hyperscale facility in the ~80–100 MW class, with Utah’s SB132 defining special treatment for loads ≥100 MW within five years; no SLC‑03‑specific utility upgrade or curtailment reporting found [4][5].","citations":[{"title":"{{$s }}","url":"https://daqpermitting.utah.gov/DocViewer?IntDocID=133004&contentType=application/pdf"},{"title":"AI data center water use collides with drought in the West","url":"https://qz.com/data-center-water-use-drought-american-west-051326"},{"title":"Aligned and Lambda Partner to Power Next-Generation AI ...","url":"https://aligneddc.com/press-release/aligned-and-lambda-partner-to-power-next-generation-ai-infrastructure-6/"},{"title":"Aligned SLC-03 Data Center","url":"https://baxtel.com/data-center/aligned-slc-03"},{"title":"Utah is taking a different approach to new data center load","url":"https://www.latitudemedia.com/news/utah-is-taking-a-different-approach-to-new-data-center-load/"}],"runId":"srun_c0e944bd89584b541b2fdf53375e9f6b","classifiedAt":"2026-07-02T22:55:52.657Z"},"628":{"community_note":"Henderson officials introduced Bill No. 3927 for a 180‑day pause on new data‑center conditional‑use applications, indicating municipal concern; no facility‑specific lawsuits or organized opposition groups were identified.","water_impact":"high","ai_evidence":"GPU resources are offered in the us‑west4 (Las Vegas) cloud region, and Google operates a data center in Henderson with third‑party listings at 560 W Warm Springs Rd; however, no public source names this site as a dedicated GPU supercluster, indicating cloud AI alongside general workloads.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"City-reported data show ~352 million gallons used in 2024 (~0.96M gpd), with Henderson sourcing about 90% of drinking water from the Colorado River amid Tier 1 shortage conditions.","grid_note":"Approx. 60 MW facility capacity, with Google’s Nevada data‑center load associated with up to 690 MW of solar and 380 MW of storage.","citations":[{"title":"Henderson considers data center pause amid construction ...","url":"https://thenevadaindependent.com/article/henderson-considers-data-center-pause-amid-construction-boom-across-clark-county"},{"title":"Henderson City Council introduces moratorium on new ...","url":"https://www.reviewjournal.com/local/henderson/henderson-city-council-introduces-moratorium-on-new-data-centers-3839299/"},{"title":"Nevada's data center boom is a power, water conundrum","url":"https://www.reviewjournal.com/local/local-nevada/nevadas-data-center-boom-is-a-power-water-conundrum-3403770/"},{"title":"Water Source | Henderson, NV","url":"https://www.cityofhenderson.com/government/departments/utility-services/water-quality/water-source"},{"title":"Drought and conservation measures","url":"https://www.lvvwd.com/conservation/measures/index.html"}],"runId":"srun_c0e944bd89584b54d587f9223994a0ec","classifiedAt":"2026-07-02T22:55:52.657Z"},"629":{"community_note":"No organized opposition was found for Switch LAS VEGAS 2 at 2475 S Arden; a separate southwest Las Vegas Switch expansion (LAS 19) faced public and environmental-group opposition but was approved by Clark County.","water_impact":"unknown","ai_evidence":"No facility-specific public evidence links Switch LAS VEGAS 2 (2475 S Arden) to GPU superclusters or AI tenants; Switch’s disclosed AI Factories are at Jones Blvd/215, not at this address.","grid_impact":"high","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No LAS VEGAS 2-specific gallons/day reported; Southern Nevada draws from Lake Mead/Colorado River under a federal shortage.","grid_note":"Switch markets its Las Vegas Core campus as up to 495 MW, and NV Energy’s 2026 IRP highlights dramatic load growth driven largely by data centers.","citations":[{"title":"Clark County approves Switch data center items in ...","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Switch proposal to add another data center to its ...","url":"https://www.reviewjournal.com/news/politics-and-government/clark-county/switchs-plan-to-add-another-data-center-to-las-vegas-hq-moves-forward-3839760/"},{"title":"Las Vegas data center expansion approved as officials ...","url":"https://nevadacurrent.com/2026/06/18/las-vegas-data-center-expansion-approved-as-officials-ponder-need-for-future-regulations/"},{"title":"Switch LAS VEGAS 2 Data Center | 2475 S Arden St","url":"https://www.datacentermap.com/usa/nevada/las-vegas/switch-las-vegas-2/"},{"title":"Switch is building 'AI factories' in Las Vegas","url":"https://www.switch.com/switch-is-building-ai-factories-in-las-vegas/"}],"runId":"srun_c0e944bd89584b548fe014f541ae0371","classifiedAt":"2026-07-02T22:55:52.657Z"},"630":{"community_note":"","water_impact":"unknown","ai_evidence":"CoreWeave opened a Las Vegas data center at Switch to deliver low-latency GPU cloud compute for VFX, AI, and ML workloads [1]; Switch promotes Las Vegas “AI factories” with hybrid air & liquid cooling for high-density deployments [2][3].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No facility-specific water data; Southern Nevada’s supplies come from Lake Mead/Colorado River and local groundwater, and Lake Mead has dropped ~160 feet since 2000 amid an ongoing shortage declaration [1][2].","grid_note":"Switch says the Las Vegas Core campus will have up to 495 MW [1]; Nevada reports data centers want to add 21–22 GW of load [2], Microsoft proposed a ratepayer-protection tariff [3], and NV Energy is advancing the Greenlink transmission buildout [4].","citations":[{"title":"Clark County approves Switch data center items in ...","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Water - Switch","url":"https://www.switch.com/sustainable-data-centers/water/"},{"title":"Where Your Water Comes From","url":"https://www.snwa.com/water-resources/where-water-comes-from/"},{"title":"Southern Nevada Water Authority - Las Vegas","url":"https://www.snwa.com/"},{"title":"CoreWeave Opens New Data Center in Las Vegas ...","url":"https://www.coreweave.com/blog/coreweave-opens-new-data-center-in-las-vegas-opening-specialized-cloud-capabilities-for-west-coast-firms"}],"runId":"srun_c0e944bd89584b544a382e4436fd0b6e","classifiedAt":"2026-07-02T22:55:52.657Z"},"631":{"community_note":"No organized opposition was found for 4495 E Sahara/LAS VEGAS 4; public pushback centered on a separate southwest-valley Switch project that county officials approved after hearing objections.","water_impact":"unknown","ai_evidence":"No LAS VEGAS 4–specific AI/GPU deployments or AI tenants were identified; AI activity cited for Las Vegas involves CoreWeave in another Switch Core Campus building and separate AI-focused developments, not this address.","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"No LAS VEGAS 4 gallons/day were reported; a different Switch project (LAS19) was described as using about 1,000 gallons/day in a closed-loop system.","grid_note":"Campus context: Switch’s Las Vegas Core Campus is marketed at up to 495 MW on completion.","citations":[{"title":"Clark County approves Switch data center items in ...","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Water - Switch","url":"https://www.switch.com/sustainable-data-centers/water/"},{"title":"Switch LAS VEGAS 4 Data Center | 4495 E Sahara Avenue","url":"https://www.datacentermap.com/usa/nevada/las-vegas/nevada-nap/"},{"title":"CoreWeave: US West LAS1 Data Center","url":"https://baxtel.com/data-center/coreweave-us-west-las1"},{"title":"CoreWeave Opens New Data Center in Las Vegas ...","url":"https://www.coreweave.com/blog/coreweave-opens-new-data-center-in-las-vegas-opening-specialized-cloud-capabilities-for-west-coast-firms"}],"runId":"srun_c0e944bd89584b5404904817148775cf","classifiedAt":"2026-07-02T22:55:52.657Z"},"632":{"community_note":"No LAS VEGAS 5–specific opposition found; a separate Switch southwest campus expansion was approved after resident objections were aired at public meetings.","water_impact":"moderate","ai_evidence":"No LAS VEGAS 5–specific AI tenant or GPU supercluster has been identified; CoreWeave’s Las Vegas region is listed at 5605 Badura Ave, and GB300 NVL72 deployments are noted generically 'at Switch' without tying them to 4489 E Sahara Ave.","grid_impact":"high","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No LAS VEGAS 5 gallons/day reported; regionally, new evaporative cooling is prohibited for commercial/industrial buildings and 10 Southern Nevada data centers used over 352 million gallons in 2024.","grid_note":"Campus marketed up to 495 MW (about 275 MW current), and NV Energy projects data centers could more than double Nevada’s power needs as it explores large-load tariffs and infrastructure tracking.","citations":[{"title":"Las Vegas data center expansion approved as officials ...","url":"https://nevadacurrent.com/2026/06/18/las-vegas-data-center-expansion-approved-as-officials-ponder-need-for-future-regulations/"},{"title":"Clark County approves Switch data center items in ...","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Nevada's data center boom is a power, water conundrum","url":"https://www.reviewjournal.com/local/local-nevada/nevadas-data-center-boom-is-a-power-water-conundrum-3403770/"},{"title":"We hear you, Las Vegas! Find out how data centers in ...","url":"https://www.facebook.com/thesnwa/posts/we-hear-you-las-vegas-find-out-how-data-centers-in-southern-nevada-use-less-wate/1344232354551604/"},{"title":"Nye County water board pushes data center moratorium","url":"https://nevadacurrent.com/2026/05/27/nye-county-water-board-pushes-data-center-moratorium/"}],"runId":"srun_c0e944bd89584b54bee863e68b4eef28","classifiedAt":"2026-07-02T22:55:52.657Z"},"633":{"community_note":"No site-specific opposition at 4475 E Sahara; environmental groups and residents opposed Switch’s separate southwest Las Vegas expansion over impacts, but Clark County approved it in June 2026.","water_impact":"moderate","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No facility-specific gallons/day were found; Southern Nevada indicates a ban on water-based cooling technology, reflecting conservation in a drought-stressed region.","grid_note":"No site MW disclosed; Switch markets the broader Las Vegas Core ecosystem at up to 495 MW, not specific to 4475 E Sahara.","citations":[{"title":"Switch proposal to add another data center to its ...","url":"https://www.reviewjournal.com/news/politics-and-government/clark-county/switchs-plan-to-add-another-data-center-to-las-vegas-hq-moves-forward-3839760/"},{"title":"Clark County approves Switch data center items in ...","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Understand Laws & Ordinances","url":"https://www.snwa.com/conservation/understand-laws-ordinances/index.html"},{"title":"Sustainable Water-Free Data Center Cooling","url":"https://www.novva.com/data-center-services/water-free-cooling/"},{"title":"Sustainable Water-Free Data Center Cooling","url":"https://www.novva.com/data-center-services/water-free-cooling/"}],"runId":"srun_c0e944bd89584b5479407da92356981d","classifiedAt":"2026-07-02T22:55:52.657Z"},"634":{"community_note":"No organized opposition specific to LAS VEGAS 7 was found; residents and advocates opposed a separate southwest-valley expansion that Clark County approved after public pushback.","water_impact":"high","ai_evidence":"UNLV’s Cherry Creek supercomputer is housed in Switch’s SUPERNAP but is not described as a GPU AI mega-cluster, and Switch’s AI factories are separate facilities near the Jones–215 interchange rather than at LAS VEGAS 7.","grid_impact":"high","ai_class":"not-ai","community_pushback":"some-concern","water_note":"Switch reportedly used roughly 340 million gallons in 2025, and the company cites a net-positive-water strategy to balance its footprint.","grid_note":"LAS VEGAS 7 is cited at ~100 MW within a Core Campus targeting up to 495 MW, and Switch previously paid a $27.7M exit fee to leave Nevada Power.","citations":[{"title":"Clark County approves Switch data center items in southwest Las Vegas after public pushback","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Southern Nevada data centers used a ton of water in 2024. ...","url":"https://www.watereducation.org/aquafornia-news/southern-nevada-data-centers-used-ton-water-2024-heres-how"},{"title":"The $3 Billion Blind Spot: How Nevada's Cooling Tower Ban ...","url":"https://avanzaenergy.substack.com/p/the-3-billion-blind-spot-how-nevadas"},{"title":"Switch SUPERNAP, Intel Partner with UNLV to Boost ...","url":"https://www.unlv.edu/news/release/switch-supernap-intel-partner-unlv-boost-scientific-research-and-economic-development"},{"title":"Switch Las Vegas AI Factory 1","url":"https://www.datacentermap.com/usa/nevada/las-vegas/switch-las-vegas-ai-factory-1/"}],"runId":"srun_c0e944bd89584b5433989718d0457cc2","classifiedAt":"2026-07-02T22:55:52.657Z"},"635":{"community_note":"No LAS VEGAS 9–specific opposition was found; a 2026 Switch data center item in the southwest Las Vegas area drew public opposition before commissioners approved it.","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"A 2026 Clark County filing for a new Switch facility in Las Vegas specified a closed-loop system using about 1,000 gallons/day for domestic uses; no LAS VEGAS 9–specific water data was published.","grid_note":"Switch lists LAS VEGAS 9 at up to 50 MVA and the Las Vegas Core Campus at up to 495 MW upon completion.","citations":[{"title":"Clark County approves Switch data center in southwest ...","url":"https://www.facebook.com/FOX5Vegas/posts/clark-county-approves-switch-data-center-project-in-southwest-valley-after-publi/1463902482445479/"},{"title":"SNWA Water Resource Plan - 2026","url":"https://www.snwa.com/assets/pdf/water-resource-plan-2026.pdf?lang=en"},{"title":"las vegas exascale data center ecosystems - Switch","url":"https://www.switch.com/las-vegas/"},{"title":"Switch Las Vegas CORE Campus","url":"https://baxtel.com/data-center/switch-las-vegas-core-campus"},{"title":"Switch wins Las Vegas expansion approval even as data ...","url":"https://lasvegassun.com/news/2026/jun/23/switch-wins-las-vegas-expansion-approval-even-as-d/"}],"runId":"srun_c0e944bd89584b54edf0b2cb36bf1e73","classifiedAt":"2026-07-02T22:55:52.657Z"},"636":{"community_note":"Residents and environmental advocates opposed a 2026 Switch Core Campus expansion over energy/water and neighborhood impacts, but Clark County approved it; no LAS VEGAS 10–specific complaints were reported.","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"No LAS VEGAS 10 gallons/day figure is published; Switch cites hybrid air and liquid-to-chip cooling and plans to replenish up to 2× the water it uses operationally, while a Nevada study notes a typical 100‑MW data center uses ~2 million liters/day.","grid_note":"LAS VEGAS 10 is a 40 MW building within a campus marketed to reach 495 MW, and Switch left NV Energy retail service in 2016 after paying a $27M exit fee; no LAS VEGAS 10–specific transmission or generation upgrades were identified.","citations":[{"title":"Clark County approves Switch data center items in ...","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Switch proposal to add another data center to its ...","url":"https://www.reviewjournal.com/news/politics-and-government/clark-county/switchs-plan-to-add-another-data-center-to-las-vegas-hq-moves-forward-3839760/"},{"title":"Las Vegas data center expansion approved as officials ...","url":"https://nevadacurrent.com/2026/06/18/las-vegas-data-center-expansion-approved-as-officials-ponder-need-for-future-regulations/"},{"title":"Switch - The AI, Cloud & Enterprise Data Center Experts","url":"https://www.switch.com/"},{"title":"Green Datacenter | Data Center Services - Switch","url":"https://www.switch.com/sustainability/"}],"runId":"srun_c0e944bd89584b54a848ccba3fd41284","classifiedAt":"2026-07-02T22:55:52.657Z"},"637":{"community_note":"Residents opposed Switch’s southwest-valley expansion at Clark County hearings over water/energy/noise concerns, but the county approved the project.","water_impact":"high","ai_evidence":"","grid_impact":"high","ai_class":"not-ai","community_pushback":"some-concern","water_note":"Southern Nevada data centers consumed 716 million gallons in 2024, described as permanently lost from the Colorado River; no site-specific figure is public for LAS VEGAS 11.","grid_note":"Switch’s Las Vegas Core campus is planned for up to 495 MW while NV Energy projects data centers could require roughly triple Las Vegas’s electricity demand, with large additional capacity in the interconnection queue.","citations":[{"title":"Clark County approves Switch data center in southwest ...","url":"https://www.facebook.com/FOX5Vegas/posts/clark-county-approves-switch-data-center-project-in-southwest-valley-after-publi/1463902482445479/"},{"title":"Switch, the Las Vegas-based technology infrastructure ...","url":"https://www.facebook.com/reviewjournal/posts/switch-the-las-vegas-based-technology-infrastructure-company-recently-received-a/1463780152457658/"},{"title":"The $3 Billion Blind Spot: How Nevada's Cooling Tower Ban ...","url":"https://avanzaenergy.substack.com/p/the-3-billion-blind-spot-how-nevadas"},{"title":"Data Center Water and Electricity Consumption in Nevada","url":"https://www.dri.edu/datacenters/"},{"title":"Switch LAS VEGAS 11 - 7380 Lindell Road","url":"https://www.datacentermap.com/usa/nevada/las-vegas/switch-las-vegas-101/"}],"runId":"srun_c0e944bd89584b5462a0e66d03ec0a19","classifiedAt":"2026-07-02T22:59:25.614Z"},"638":{"community_note":"At the campus level, Clark County approved a Switch southwest Las Vegas expansion after public opposition from residents over impacts like energy and water; no LAS VEGAS 14–specific lawsuit was found.","water_impact":"moderate","ai_evidence":"Switch lists Switch LAS VEGAS among locations for CoreWeave’s “world’s first” NVIDIA GB300 NVL72 deployment in its AI Factory solution, and the Las Vegas Core is marketed for hybrid air/liquid-to-chip cooling at up to 2 MW per cabinet and up to 495 MW campus power—signals of GPU-intensive AI workloads.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No LAS VEGAS 14–specific gallons/day were found; regionally, Southern Nevada data centers used substantial water in 2024 (e.g., Google’s Henderson site at roughly 352 million gallons), while Switch states it will replenish up to two times the water it uses.","grid_note":"On NV Energy, the Las Vegas Core campus is planned up to 495 MW, while NV Energy projects data centers could reach a dominant share of statewide load and policymakers are exploring tariffs to shield ratepayers from large-load costs.","citations":[{"title":"Clark County approves Switch data center items in ...","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Southwest valley residents voice concerns over proposed ...","url":"https://www.ktnv.com/neighborhoods/southwest-las-vegas/southwest-valley-residents-voice-concerns-over-proposed-data-center-expansion"},{"title":"Southern Nevada data centers used a ton of water in 2024. ...","url":"https://www.reviewjournal.com/local/local-las-vegas/southern-nevada-data-centers-used-a-ton-of-water-in-2024-heres-how-3397994/"},{"title":"Water - Switch","url":"https://www.switch.com/sustainable-data-centers/water/"},{"title":"CoreWeave Deploys “World's First” NVIDIA GB300 NVL72 in ...","url":"https://www.switch.com/coreweave-deploys-industry-first-nvidia-gb300-nvl72-in-switchs-ai-factory-solution/"}],"runId":"srun_c0e944bd89584b541cf901dcb1049c76","classifiedAt":"2026-07-02T22:55:52.657Z"},"639":{"community_note":"Residents and advocates opposed Switch’s southwest Las Vegas expansion over energy and water impacts, but county commissions approved the project with conditions in June 2026.","water_impact":"moderate","ai_evidence":"","grid_impact":"high","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"No LAS VEGAS 15-specific water total found; Switch says it reduces and recycles cooling water, while the Review-Journal estimated Southern Nevada data centers used over 716 million gallons in 2024.","grid_note":"Campus exposure is large: the Las Vegas Core is planned for up to 495 MW, Nevada’s 12-project data-center pipeline is estimated at 5,900 MW, and reporting flags ratepayer/subsidy concerns and prior Switch–NV Energy rate disputes.","citations":[{"title":"Clark County approves Switch data center items in ...","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Clark County commissioners OK Switch data center project in ...","url":"https://www.wbay.com/video/2026/06/18/clark-county-commissioners-ok-switch-data-center-project-southwest-las-vegas/"},{"title":"Clark County Approves Switch LAS 19 Datacenter in Las Vegas","url":"https://usdatacenterprojects.com/nevada/clark-county-approves-switch-las-19-data-center-las-vegas"},{"title":"Water - Switch","url":"https://www.switch.com/sustainable-data-centers/water/"},{"title":"Southern Nevada data centers used a ton of water in 2024. ...","url":"https://www.reviewjournal.com/local/local-las-vegas/southern-nevada-data-centers-used-a-ton-of-water-in-2024-heres-how-3397994/"}],"runId":"srun_c0e944bd89584b54d7511b8f5084a047","classifiedAt":"2026-07-02T22:55:52.657Z"},"640":{"community_note":"No Armory-specific opposition found; Clark County approved Switch’s nearby LAS 19 expansion after public opposition over resource and grid concerns.","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No Armory gallons/day disclosed; the building is a proposed listing at 9380 S Decatur Blvd, and separate reporting notes Switch withdrew 1.9 million gallons in 2023 at Nevada operations.","grid_note":"No Armory MW disclosed; a nearby Switch project cited service via existing electric infrastructure (Audet substation), while NV Energy’s data-center strategy is under active debate.","citations":[{"title":"Clark County approves Switch data center items in ...","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Water - Switch","url":"https://www.switch.com/sustainable-data-centers/water/"},{"title":"Southern Nevada data centers used a ton of water in 2024. ...","url":"https://www.reviewjournal.com/local/local-las-vegas/southern-nevada-data-centers-used-a-ton-of-water-in-2024-heres-how-3397994/"},{"title":"Clark County approves Switch data center items in ...","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Will data centers impact Indianapolis property values?","url":"https://mirrorindy.org/sabey-data-centers-indianapolis-property-values-protect-decatur-township/"}],"runId":"srun_c0e944bd89584b5491a9357ecc82b190","classifiedAt":"2026-07-02T22:55:52.657Z"},"664":{"community_note":"","water_impact":"unknown","ai_evidence":"Digital Realty, OQC, and NVIDIA launched a quantum‑AI data center at JFK10, integrating superconducting quantum computers with NVIDIA accelerated systems, with JFK10 marketed as combining quantum and AI‑ready infrastructure [3][2][4].","grid_impact":"low","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"","grid_note":"Approx. 3.7 MW UPS (listing) and served by Con Edison; no facility-specific upgrade or rate-case impacts found, with a 2012 storm-time generator incident at 111 8th Ave noted historically [5][7][6].","citations":[{"title":"New York JFK10 - 111 8th Avenue","url":"https://www.digitalrealty.com/data-centers/americas/new-york/jfk10"},{"title":"Digital Realty Data Center in New York NY","url":"https://www.datacenters.com/digital-realty-new-york-jfk10"},{"title":"New York JFK10 - 111 8th Avenue","url":"https://www.digitalrealty.com/data-centers/americas/new-york/jfk10"},{"title":"Temperatures Soar at Data Center Inside 111 8th Avenue","url":"https://www.datacenterknowledge.com/cooling/temperatures-soar-at-data-center-inside-111-8th-avenue"},{"title":"Digital Realty Data Center in New York NY","url":"https://www.datacenters.com/digital-realty-new-york-jfk10"}],"runId":"srun_c0e944bd89584b544c014f219810f0f5","classifiedAt":"2026-07-02T22:55:52.657Z"},"675":{"community_note":"No organized facility-specific opposition identified; Industry City’s rezoning drew controversy but was not directed at DataVerge’s data center operations [8].","water_impact":"unknown","ai_evidence":"Mathpix colocated GPU servers at DataVerge (2024) and in 2026 expanded AI training, fine‑tuning, and real‑time inference at the facility using NVIDIA GPU hardware [1][2][3].","grid_impact":"low","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No gallons/day or discharge data found; operator markets 200kW cold‑air containment pods for GPU‑intensive workloads, implying air-based cooling without disclosed evaporative systems [4].","grid_note":"Served from Industry City’s 50 MW on-site ConEd substation with the facility listed around the low single‑digit MW range; no reports tie this site to new generation/transmission or ratepayer impacts, and ConEd cites separate Brooklyn reliability upgrades [5][6][7].","citations":[{"title":"Con Edison to spend $29B shoring up NYC area grid as ...","url":"https://www.utilitydive.com/news/con-edison-to-spend-29b-shoring-up-nyc-area-grid-as-electrification-rises/819865/"},{"title":"DataVerge Data Center in Brooklyn, NY","url":"https://www.datacenters.com/dataverge-brooklyn"},{"title":"Con Edison Investing in Major Reliability Projects Serving ...","url":"https://www.coned.com/en/about-us/media-center/news/2025/05-16/con-edison-investing-in-major-reliability-projects--serving-customers-in-brooklyn-and-staten-island"},{"title":"Con Edison wants credit for a record North Brooklyn","url":"https://bushwickdaily.com/news/con-edison-wants-credit-for-a-record-north-brooklyn-grid-upgrade-youre-paying-for-it-through-the-rate-hike-on-your-bill/"},{"title":"Dataverge NY Data Center in New York | 882 3rd Ave (3 MW)","url":"https://www.datacentermap.com/usa/new-york/new-york/dataverge-ny/"}],"runId":"srun_c0e944bd89584b5406596a90154339da","classifiedAt":"2026-07-02T22:55:52.657Z"},"694":{"community_note":"No organized opposition specific to QTS Jersey City 1 DC1; Jersey City generator-noise coverage involves Liberty Harbor (e.g., 88 Regent St.), not 95 Christopher Columbus, and there are no reported complaints or litigation tied to this site [1][2][3].","water_impact":"unknown","ai_evidence":"No JCY1/DC1–specific evidence of GPU training clusters, AI inference platforms, or liquid-cooling retrofits; listings present it as a colocation facility at 95 Christopher Columbus Dr, and QTS’s DGX certification is company-wide, not site-specific [1][2][3].","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No site-specific water-use (gallons/day) or discharge details for JCY1/DC1 were found in public facility listings; no stressed-source or aquifer/drought notes located.","grid_note":"Delivered 3.6 MW of critical power to the facility; no leaseable power under construction; backup diesel generators include 1.25 MW and 2 MW units [1][2][3].","citations":[{"title":"QTS Compliance Matrix","url":"http://q.com/wp-content/uploads/2025/03/QTS_ComplianceMatrix.pdf"},{"title":"City Does Little as Blaring Generator Disrupts Liberty ...","url":"https://jcitytimes.com/city-unresponsive-as-blaring-generator-disrupts-liberty-harbor-tenants-lives/"},{"title":"Jersey City Times on Instagram: \"A trailer-sized power supply ...","url":"https://www.instagram.com/reel/DNBI_sEI46n/"},{"title":"QTS data center used over 1 million gallons of water in ...","url":"https://www.facebook.com/groups/907018296913809/posts/2603721650576790/"},{"title":"QTS Data Center in Jersey City New Jersey","url":"https://www.datacenters.com/qts-jersey-city"}],"runId":"srun_c0e944bd89584b54c0b18443d47fee5b","classifiedAt":"2026-07-02T22:55:52.657Z"},"699":{"community_note":"No organized opposition or litigation was found for Telehouse New York Teleport; it is an established colocation/disaster‑recovery facility operating within the Teleport office park campus [1][2].","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Uses water‑cooled chillers and cooling towers (major systems replaced in 2015), but no public data on gallons/day, water source, drought/aquifer stress, or discharge impacts were found [1].","grid_note":"Approximately 10 MW total available with redundant commercial feeds and access to dual power grids (Con Edison and PSE&G); no facility‑specific grid upgrades or rate impacts were identified [1][2].","citations":[{"title":"Telehouse New York Teleport Data Center","url":"https://www.telehouse.com/global-data-centers/america/new-york-datacenters/telehouse-new-york-teleport-data-center/"},{"title":"Telehouse The Teleport Data Center","url":"https://baxtel.com/data-center/telehouse-the-teleport"},{"title":"Telehouse Teleport Data Center, Staten Island, NY, USA","url":"https://marketplace.upstack.com/data-centers/telehouse-data-center-staten-island-teleport"},{"title":"High-Density Colocation in NYC: Why Telehouse Stands Out","url":"https://www.telehouse.com/2026/03/17/high-density-colocation-in-nyc-why-telehouse-stands-out/"},{"title":"Telehouse New York Teleport Data Center","url":"https://www.telehouse.com/global-data-centers/america/new-york-datacenters/telehouse-new-york-teleport-data-center/"}],"runId":"srun_c0e944bd89584b547b099e3259ca0bfc","classifiedAt":"2026-07-02T22:55:52.657Z"},"700":{"community_note":"No organized opposition, lawsuits, zoning fights, or site-specific noise/air complaints were found targeting DataVerge Brooklyn; no active community campaign is evident.","water_impact":"low","ai_evidence":"Mathpix is expanding at DataVerge Brooklyn and deploying Nvidia B300 GPU servers to support AI training and real-time inference workloads.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No gallons/day figure found; materials indicate air-cooled IT rooms rather than evaporative systems, and no site-specific water-withdrawal, discharge, or drought/aquifer concerns were identified.","grid_note":"Two utility-grid feeds to an on-site 140 MW substation with 1.75 MW diesel backup are listed; no evidence links this site to Con Edison rate cases, curtailments, or new generation/transmission builds.","citations":[{"title":"Mathpix Expands AI Training and Inference Infrastructure at ...","url":"https://finance.yahoo.com/sectors/technology/articles/mathpix-expands-ai-training-inference-130000912.html"},{"title":"Mathpix Expands AI Training and Inference Infrastructure at ...","url":"https://dataverge.com/press-releases/mathpix-expands-ai-training-and-inference-infrastructure-at-dataverge-deploying-nvidia-b300-gpus-to-power-real-time-ai-document-processing/"},{"title":"Press Release","url":"https://dataverge.com/category/press-releases/"},{"title":"DataVerge","url":"https://x.com/DataVerge"},{"title":"DataVerge to host Nvidia hardware in Brooklyn for Mathpix ...","url":"https://www.datacenterdynamics.com/en/news/dataverge-to-host-nvidia-hardware-in-brooklyn-for-mathpix-expands-facility/"}],"runId":"srun_c0e944bd89584b543561b9e5eb2ee381","classifiedAt":"2026-07-02T22:59:25.907Z"},"731":{"community_note":"No site-specific opposition surfaced; regionally, Seattle passed a one‑year moratorium on large data centers, indicating heightened scrutiny but not a Lynnwood-specific action.","water_impact":"unknown","ai_evidence":"CTP said it will refit the facility and deploy an initial 5 MW Edge installation for an AI-focused customer at the 4200 194th St SW site.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No facility-specific water-use or discharge figures were found; the local utility provides general water service information with no site-specific details.","grid_note":"Local utility planning includes capacity expansions via new facilities and system-specific projects, but no address-specific transmission or rate impacts were identified for this 6 MW site.","citations":[{"title":"Seattle passes one-year data center moratorium","url":"https://mynorthwest.com/local/data-center-moratorium/4246470"},{"title":"Digital Fortress Data Center in Lynnwood, WA","url":"https://www.datacenters.com/digital-fortress-north-seattle-lyn"},{"title":"Major 150MW expansion initiatives across the USA","url":"https://chirisatechnologyparks.com/major-150mw-expansion-initiatives-across-the-usa-3/"},{"title":"PTC NEWS: Chirisa Technology Parks and Strategic ...","url":"https://www.powerhousedata.com/news/ptc-news-chirisa-technology-parks-and-strategic-partner-powerhouse-data-centers-announces-major-expansion-initiatives-across-the-usa-focused-on-hyperscale-and-ai-workloads"},{"title":"Digital Fortress: North Seattle - Lynnwood (SEA1)","url":"https://www.ocolo.io/colocation/digital-fortress/north-seattle-lynnwood-sea1/"}],"runId":"srun_c0e944bd89584b54efb9d35414fa8b5e","classifiedAt":"2026-07-02T22:55:52.947Z"},"738":{"community_note":"No organized, facility-specific opposition or litigation was found for 23050 NE 102 St; no ongoing disputes identified.","water_impact":"unknown","ai_evidence":"A trade report describes Redmond Ridge 1 as a ~50,000 sq ft Microsoft facility near the main campus, with no mention of GPU superclusters or AI tenants at this site [1].","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"","grid_note":"Approx. 17 MW class facility served by Puget Sound Energy; no site-specific transmission builds or curtailment risks were identified in public sources.","citations":[{"title":"Microsoft Redmond Ridge Data Center","url":"https://baxtel.com/data-center/microsoft-redmond-ridge"},{"title":"Next-generation datacenters consume zero water for cooling","url":"https://www.microsoft.com/en-us/microsoft-cloud/blog/2024/12/09/sustainable-by-design-next-generation-datacenters-consume-zero-water-for-cooling/"},{"title":"Issued Air Permits for Data Centers | Virginia DEQ","url":"https://www.deq.virginia.gov/news-info/shortcuts/permits/air/issued-air-permits-for-data-centers"},{"title":"Redmond Data Center","url":"https://www.colocationnorthwest.com/data-centers/redmond"},{"title":"Waste, water…what else? Tackling environmental woes for…","url":"https://www.reedsmith.com/articles/data-centers-bytes-and-rights/waste-water-what-else-tackling-environmental-woes-for-us-data-centers/"}],"runId":"srun_c0e944bd89584b54aa11ed073515585f","classifiedAt":"2026-07-02T22:55:52.947Z"},"743":{"community_note":"","water_impact":"unknown","ai_evidence":"Voltage Park selected Centeris for a primary AI cloud facility with approximately 24,000 NVIDIA H100 GPUs, one of the most powerful machine-learning clouds [1]; Voltage Park offers on‑demand H100/B200/GB300 GPU cloud across Tier 3+ data centers [2], and ScaleMatrix markets the Puyallup site as a high‑density data center supporting colo/cloud services used for AI/HPC [3].","grid_impact":"unknown","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"","grid_note":"Marketed capacity indicates a 50 MW campus with an SH1 upgrade to 24 MW; no reporting found tying this facility to ratepayer impacts, curtailment, or new transmission. [1][2][3]","citations":[{"title":"Seattle South Hill Campus","url":"http://centeris.com/locations"},{"title":"ScaleMatrix Data Center in Puyallup Washington","url":"https://www.datacenters.com/scalematrix-seattle-us-west-02"},{"title":"Texas county rescinds data center moratorium after lawsuit","url":"https://www.texastribune.org/2026/06/05/texas-hill-county-moratorium-rescinded-data-centers/"},{"title":"Centeris Data Centers","url":"http://centeris.com/"},{"title":"ScaleMatrix Seattle Data Center in Tacoma (50 MW)","url":"https://www.datacentermap.com/usa/washington/tacoma/scalematrix-seattle/"}],"runId":"srun_c0e944bd89584b54646a08f668850738","classifiedAt":"2026-07-02T22:55:52.947Z"},"744":{"community_note":"No organized opposition identified; city SEPA and routine permits are on file for Centeris Voltage Park upgrades, with no lawsuits or appeals reported.","water_impact":"low","ai_evidence":"Voltage Park selected Centeris and is deploying a large H100 GPU footprint, while Voltage Park describes itself as a neocloud GPU company owning 24,000 GPUs—indicating AI training/inference at this facility.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"Hybrid cooling with self-contained, high-density water-cooled cabinets suggests low ongoing make-up water use, and no reported aquifer/drought or discharge concerns were found in cited sources.","grid_note":"Approx. 24 MW campus-scale load reported, with a SEPA entry for “Centeris Voltage Park Infrastructure Upgrades,” indicating material electrical infrastructure work.","citations":[{"title":"Voltage Park: AI Infrastructure. AI Factory.","url":"https://www.voltagepark.com/"},{"title":"Seattle Data Center","url":"https://www.scalematrix.com/seattle-data-center.html"},{"title":"GPUaaS provider Voltage Park acquires GPU cloud ...","url":"https://www.datacenterdynamics.com/en/news/gpuaas-provider-voltage-park-acquires-gpu-cloud-marketplace-tensordock/"},{"title":"Scaling AI in 2025 is All About Flexibility and Speed","url":"https://www.voltagepark.com/blog/scaling-ai-in-2025-flexibility-speed"},{"title":"Voltage Park VAST Data Customer Video","url":"https://www.youtube.com/watch?v=jGVNDItuHCU"}],"runId":"srun_c0e944bd89584b541ec2229955762d0d","classifiedAt":"2026-07-02T22:55:52.947Z"},"746":{"community_note":"No site‑specific opposition found; Seattle councilmembers introduced a 365‑day moratorium on new data centers to study impacts, currently at the introduction stage.","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No facility‑specific gallons/day, source, or discharge data was found; listings note N+1 HVAC but no evaporative/liquid‑cooling, while water concerns are being studied citywide under the proposed moratorium, not tied to this site.","grid_note":"No public MW/MVA for this facility (the 999 MW figure is uncorroborated); SCL has proposed policies including a dedicated rate class for new/expanding ≥10 MVA data centers, not tied to 1505 5th Ave.","citations":[{"title":"Councilmembers introducing moratorium on data centers ...","url":"https://council.seattle.gov/2026/04/30/councilmembers-introducing-moratorium-on-data-centers-in-seattle/"},{"title":"Lumen Seattle 1 Data Center | 1505 5th Avenue","url":"https://www.datacentermap.com/usa/washington/seattle/level3-seattle1/"},{"title":"Powering Seattle's Next Wave Of AI Innovation","url":"https://www.lumen.com/blog/en-us/ai-house-powering-seattle-wave-innovation"},{"title":"Lumen Seattle 3 Data Center","url":"https://baxtel.com/data-center/lumen-seattle-3"},{"title":"Lumen Expands Fiber Network With New AI-Focused ...","url":"https://finance.yahoo.com/news/lumen-expands-fiber-network-ai-125600357.html"}],"runId":"srun_c0e944bd89584b54d91a3c28be811792","classifiedAt":"2026-07-02T22:55:52.947Z"},"747":{"community_note":"None found: no organized opposition specific to the former data center; the site was redeveloped for an 8‑story, 220‑unit apartment project and the existing building was to be demolished.","water_impact":"low","ai_evidence":"No site-specific AI indicators were found: the location was a small 2,000 sq ft colocation facility with no mention of GPUs/AI or liquid cooling, its listing is inactive, and the property was redeveloped into apartments.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No public gallons/day or water-source/discharge data were found; the former building was demolished for the Siteline redevelopment at 223 Taylor Ave N.","grid_note":"No site-specific MW load or utility-upgrade evidence was found; listings show ~2,000 sq ft of raised floor and the entire Seattle market totals 274 MW, so the claimed 999 MW is not supported.","citations":[{"title":"223 TAYLOR AVE N","url":"https://www.seattleinprogress.com/project/3028452"},{"title":"Lumen: Seattle 4 Data Center","url":"https://www.datacenters.com/lumen-seattle-4"},{"title":"tw telecom Seattle - 223 Taylor Ave N","url":"https://www.datacentermap.com/usa/washington/seattle/twtc-seattle/"},{"title":"Lumen: Seattle 4 Data Center","url":"https://www.datacenters.com/lumen-seattle-4"},{"title":"tw telecom Seattle - 223 Taylor Ave N","url":"https://www.datacentermap.com/usa/washington/seattle/twtc-seattle/"}],"runId":"srun_c0e944bd89584b54937257fb0a8abf03","classifiedAt":"2026-07-02T22:55:52.947Z"},"748":{"community_note":"No site-specific opposition was found; Seattle adopted a citywide emergency moratorium on new large data centers, which does not single out this existing Verizon site [5].","water_impact":"low","ai_evidence":"Public listings identify the site as a colocation facility, with no announcements of GPU clusters, AI tenants, or liquid-cooling retrofits [2][3].","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No public gallons/day or source data were found for this address; listings indicate air-cooled precision HVAC and no reported water permits or discharge issues.","grid_note":"No site-specific MW or SCL upgrade details were found; Seattle City Light has proposed an average 9.5% annual retail rate hike for 2027–2028 [7].","citations":[{"title":"City Council passes emergency data center moratorium and policy framework - Seattle City Council Blog","url":"https://council.seattle.gov/2026/06/09/city-council-passes-emergency-data-center-moratorium-and-policy-framework/"},{"title":"Verizon: Verizon Seattle","url":"https://www.datacenters.com/verizon-verizon-seattle"},{"title":"Verizon: Seattle Data Centers Locations (1)","url":"https://www.datacenters.com/providers/verizon/locations/united-states/washington/seattle"},{"title":"Verizon Seattle Data Center | 1100 2nd Ave","url":"https://www.datacentermap.com/usa/washington/seattle/xo-seattle/"},{"title":"Getting Ahead of Data Center Power Demands - Powerlines","url":"https://powerlines.seattle.gov/2026/06/12/getting-ahead-of-data-center-power-demands/"}],"runId":"srun_c0e944bd89584b544dca718a17e691b4","classifiedAt":"2026-07-02T22:55:52.947Z"},"752":{"community_note":"","water_impact":"low","ai_evidence":"The operator promotes 'high‑density computing' (greater than 10 kW per cabinet) and the Tacoma site functions as a carrier-neutral colocation/NOC at 1101 A St, but no named AI tenants or GPU superclusters are reported.","grid_impact":"low","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No gallons/day reported; Tacoma Water’s primary source is the Green River Municipal Watershed with 24 supplemental groundwater wells, and despite a 2026 statewide drought declaration the utility reported proactive measures and no anticipated shortage.","grid_note":"Specs list 800 kW total capacity on three‑phase 208 V municipal service; Tacoma Power’s 2024 IRP discusses data‑center load growth in general terms without facility‑specific upgrades.","citations":[{"title":"How many data centers are in Pierce County? A look inside","url":"https://www.thenewstribune.com/news/local/article314654606.html"},{"title":"Water Source","url":"https://www.mytpu.org/about-tpu/services/water/water-source/"},{"title":"The Green River Municipal Watershed","url":"https://www.mytpu.org/about-tpu/services/water/water-source/green-river-watershed/"},{"title":"Groundwater Wells - Water","url":"https://www.mytpu.org/about-tpu/services/water/water-source/ground-water-wells/"},{"title":"High-Density Computing","url":"https://www.colocationnorthwest.com/solutions/high-density-computing"}],"runId":"srun_c0e944bd89584b5408228b5dd5c05b09","classifiedAt":"2026-07-02T22:55:52.947Z"},"770":{"community_note":"Residents and advocacy groups pressed Charlotte City Council for a pause over water, power, noise, and transparency concerns; on June 8, 2026 the Council unanimously approved a 150‑day moratorium on new data‑center applications while impacts are studied, with existing approvals unaffected.","water_impact":"high","ai_evidence":"Developer materials say the campus is designed for advanced hyperscale and AI-driven applications and is liquid-ready to support AI/ML and GPU clusters; no public announcements name an AI tenant or GPU supercluster at this site yet.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"City staff said a data center under construction near University Place could use up to 1.2 million gallons per day in summer, roughly equivalent to thousands of homes’ use; site-specific cooling/source details for PowerHouse are not public.","grid_note":"Planned for about 300 MW with a dedicated Duke Energy substation expected in April 2027.","citations":[{"title":"Frequently Asked Questions: Data Centers & Moratorium","url":"https://www.charlottenc.gov/City-News/Data-Centers-Moratorium-FAQs"},{"title":"Charlotte Imposes 150-Day Moratorium on Data Centers","url":"https://insidetowers.com/charlotte-imposes-150-day-moratorium-on-data-centers/"},{"title":"Charlotte council OKs data center moratorium on new ...","url":"https://www.charlotteobserver.com/news/politics-government/article316049525.html"},{"title":"Charlotte City Council weighs data center moratorium amid ...","url":"https://www.wfae.org/politics/2026-05-12/charlotte-city-council-weighs-data-center-moratorium-amid-water-power-concerns"},{"title":"Data centers use a lot of water. What does that mean for ...","url":"https://www.wunc.org/environment/2026-04-10/data-centers-water-quality-pfas-drought-climate-change"}],"runId":"srun_c0e944bd89584b54c27aa6ecf14a2a86","classifiedAt":"2026-07-02T22:55:52.947Z"},"771":{"community_note":"Organized local opposition has mounted via a petition and public meetings over environmental, water/power use, and siting concerns; the county has weighed a nine‑month moratorium while QTS says construction continues under existing approvals.","water_impact":"low","ai_evidence":"No facility‑specific evidence of GPU superclusters or named AI tenants was found; QTS has a corporate NVIDIA DGX colocation certification, but it is not York‑specific.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Closed‑loop cooling is used and “does not consume water for cooling, once operational,” with the county noting newer systems that require less water.","grid_note":"QTS pays for new power infrastructure; Duke Energy will upgrade transmission; York Electric is the retail supplier with power procured via Central Electric Power Cooperative, and the co‑op says member rates will not increase due to the data center.","citations":[{"title":"Petition · Stop the QTS data center in York County, SC","url":"https://www.change.org/p/stop-the-qts-data-center-in-york-county-sc"},{"title":"York County weighs 9-month moratorium on new data ...","url":"https://www.wbtv.com/2026/06/17/york-county-weighs-9-month-moratorium-new-data-centers-what-we-know/"},{"title":"York County considers nine-month data center moratorium","url":"https://www.heraldonline.com/news/business/article315909645.html"},{"title":"York County, South Carolina - Data Centers","url":"https://q.com/data-centers/york/"},{"title":"Data Centers | York, SC","url":"https://www.yorkcountygov.com/1313/Data-Centers"}],"runId":"srun_c0e944bd89584b547cd2c0bf3ca45737","classifiedAt":"2026-07-02T22:55:52.947Z"},"779":{"community_note":"No organized opposition, lawsuits, or zoning fights specific to DUR1 were found; status: none reported.","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"No gallons/day, source, or discharge figures for DUR1 were found; company-wide commentary discusses progressing toward being water positive without DUR1-specific metrics.","grid_note":"Served by Duke Energy with an on-site substation and dual feed; broader NC debates over data-center-driven rate and transmission pressures are ongoing but not tied specifically to DUR1.","citations":[{"title":"Durham, NC: DUR1 - Data centers","url":"https://www.cyrusone.com/data-centers/north-america/durham-nc"},{"title":"CyrusOne Data Center in Durham, NC","url":"https://www.datacenters.com/cyrusone-dur1-raleigh-durham"},{"title":"CyrusOne: Home","url":"https://www.cyrusone.com/"},{"title":"Durham DUR1 - CyrusOne","url":"https://www.ocolo.io/colocation/cyrusone/durham-dur1/"},{"title":"CyrusOne Raleigh-Durham I Data Center","url":"https://baxtel.com/data-center/cyrusone-raleigh-durham-i"}],"runId":"srun_c0e944bd89584b54372ada4e170f2c80","classifiedAt":"2026-07-02T22:55:52.947Z"},"781":{"community_note":"Charlotte approved a 150‑day citywide moratorium on new data‑center approvals on June 8, 2026 amid infrastructure/utility concerns, with no site‑specific opposition or legal action found for 900 Center Park Dr.","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No gallons/day or water-source details are reported for 900 Center Park Dr.; listings emphasize standard colocation features and power feeds, with no mention of evaporative/liquid cooling.","grid_note":"Listings show roughly 2.0–5.0 MW total capacity for Center Park and note it is on the area's second‑priority power grid; no public evidence of grid upgrades or curtailment specific to this site.","citations":[{"title":"Frequently Asked Questions: Data Centers & Moratorium","url":"https://www.charlottenc.gov/City-News/Data-Centers-Moratorium-FAQs"},{"title":"Charlotte City Council approves 150-day moratorium ...","url":"https://www.wbtv.com/2026/06/09/charlotte-city-council-approves-150-day-moratorium-new-data-centers/"},{"title":"Charlotte Data Center Locations Map","url":"https://cloudandcolocation.com/city/charlotte/"},{"title":"Tierpoint Charlotte - Center Park Data Cente","url":"https://cleanview.co/data-centers/north-carolina/1223/tierpoint-charlotte---center-park-data-cente"},{"title":"TierPoint Data Center in Charlotte North Carolina","url":"https://www.datacenters.com/tierpoint-charlotte-center-park"}],"runId":"srun_c0e944bd89584b54f182f4117087fc85","classifiedAt":"2026-07-02T22:55:52.947Z"},"782":{"community_note":"No Caronet-specific opposition identified; Charlotte adopted a 150‑day moratorium on new data centers after resident concerns, while existing facilities are exempt and Caronet’s site is not named.","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No gallons/day, source, or discharge details were found in public listings; the site is described with CRAC and N+1 HVAC typical of air‑cooled colo.","grid_note":"No site-specific utility upgrades or rate-case impacts were found; published specs show 130 kVA-class UPS equipment rather than MW-scale feeds, while broader NC rate debates continue.","citations":[{"title":"Charlotte City Council approves 150-day moratorium ...","url":"https://www.wbtv.com/2026/06/09/charlotte-city-council-approves-150-day-moratorium-new-data-centers/"},{"title":"Frequently Asked Questions: Data Centers & Moratorium","url":"https://www.charlottenc.gov/City-News/Data-Centers-Moratorium-FAQs"},{"title":"Caronet - Charlotte Data Center (XB)","url":"https://cloudandcolocation.com/datacenters/caronet-charlotte-xb-data-center/"},{"title":"Facility Specifications","url":"http://www.caro.net/index.php/about/facility-specs"},{"title":"Caronet - Charlotte Data Center (XB)","url":"https://cloudandcolocation.com/datacenters/caronet-charlotte-xb-data-center/"}],"runId":"srun_c0e944bd89584b54abdb0fa03e99a10a","classifiedAt":"2026-07-02T22:55:52.947Z"},"783":{"community_note":"No organized opposition specific to 1400 Cross Beam Drive was found; Charlotte approved a 150‑day moratorium to study data‑center impacts, and reporting says it does not apply to facilities that already received city approval.","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No site-specific cooling or water-use data was found; the owner describes it simply as a single‑storey data centre at 1400 Cross Beam Drive in southwest Charlotte.","grid_note":"No verified MW load or Duke Energy upgrades were found for this address; statewide coverage notes AI data centers are driving up power demand and costs in North Carolina.","citations":[{"title":"Frequently Asked Questions: Data Centers & Moratorium","url":"https://www.charlottenc.gov/City-News/Data-Centers-Moratorium-FAQs"},{"title":"Charlotte council OKs data center moratorium on new ...","url":"https://www.charlotteobserver.com/news/politics-government/article316049525.html"},{"title":"1400 Cross Beam Drive, Charlotte - MIPL Vietnam","url":"https://www.mapletree.com.sg/vn/property/1400-cross-beam-drive-charlotte/"},{"title":"Data Centers for the Era of AI Reasoning","url":"https://www.nvidia.com/en-us/data-center/"},{"title":"1400 Cross Beam Drive, Charlotte","url":"https://www.mapletreeindustrialtrust.com/property/1400-cross-beam-drive-charlotte/"}],"runId":"srun_c0e944bd89584b54663329735020cd8b","classifiedAt":"2026-07-02T22:55:52.947Z"},"784":{"community_note":"No facility-specific opposition was found; Charlotte adopted a 150-day moratorium on new data centers over infrastructure and utility-cost concerns, without naming this existing site.","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No public source reported gallons/day, cooling-water source, or discharge details for this site.","grid_note":"Dual 130 kVA UPS units and a 402 kW standby diesel generator indicate a small load, with no public evidence of Duke Energy upgrades for this site.","citations":[{"title":"Charlotte approves 150-day data center moratorium. A look ...","url":"https://www.wcnc.com/article/news/local/a-look-inside-uptown-charlottes-growing-data-center/275-b387788d-cd1e-4c96-b269-5599c128b655"},{"title":"Charlotte Colocation Center Data ...","url":"https://www.datacenters.com/charlotte-colocation-center-charlotte"},{"title":"Charlotte Colocation Center,... - Company Profile","url":"https://www.datacentermap.com/c/charlotte-colocation-center/"},{"title":"Charlotte Colocation Center Data Center Locations","url":"https://cloudandcolocation.com/colocation-provider/charlotte-colocation-center/"},{"title":"Charlotte, North Carolina Data Center","url":"https://h5datacenters.com/charlotte-data-center.html"}],"runId":"srun_c0e944bd89584b54208b4302e954eb0c","classifiedAt":"2026-07-02T22:55:52.947Z"},"785":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific gallons/day, water source, drought/aquifer, or discharge reporting was found; available listings describe conventional colocation/telecom environmental control rather than disclosed water‑intensive cooling [1][2][3].","grid_note":"Published specs indicate a small legacy colo/telecom facility rather than a hyperscale AI load—DataCenterMap lists 8,000 sq ft total and 2,541 sq ft colocation, MLQ lists up to 12 kW per rack, and an older Level 3 listing shows standard N/N+1-style infrastructure, with no evidence of new utility upgrades [1][2][3].","citations":[{"title":"1918 Wake Forest Road - Lumen Raleigh 2","url":"https://www.datacentermap.com/usa/north-carolina/raleigh/1918-wake-forest-rd/"},{"title":"Level 3 Communications - Raleigh Data Center","url":"https://cloudandcolocation.com/datacenters/level-3-communications-raleigh-data-center/"},{"title":"1918 Wake Forest Road - Lumen Raleigh 2","url":"https://www.datacentermap.com/usa/north-carolina/raleigh/1918-wake-forest-rd/"},{"title":"Level 3 Communications - Raleigh Data Center","url":"https://cloudandcolocation.com/datacenters/level-3-communications-raleigh-data-center/"},{"title":"1918 Wake Forest Road - Lumen Raleigh 2","url":"https://www.datacentermap.com/usa/north-carolina/raleigh/1918-wake-forest-rd/"}],"runId":"srun_c0e944bd89584b54dae35ed511cdc391","classifiedAt":"2026-07-02T22:55:52.947Z"},"786":{"community_note":"","water_impact":"unknown","ai_evidence":"Listings show a modest colocation footprint (8,000 sq ft total, 2,541 sq ft raised floor) with no disclosed AI/GPU or liquid-cooling deployments at this site.","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"","grid_note":"A 3440 Tarheel Drive brochure lists 480V 3‑phase building power rather than a facility MW load or utility upgrade details.","citations":[{"title":"Lumen Raleigh 3 Data Center","url":"https://baxtel.com/data-center/lumen-raleigh-3"},{"title":"Lumen Data Center in Raleigh","url":"https://www.datacenters.com/lumen-raleigh-3"},{"title":"Lumen Raleigh 3 Data Center | 3440 Tarheel Drive","url":"https://www.datacentermap.com/usa/north-carolina/raleigh/level3-raleigh3/"},{"title":"3 Innovation Opportunities in Data Center Water ...","url":"https://luxresearchinc.com/blog/3-innovation-opportunities-in-data-center-water-management/"},{"title":"Duke Energy proposes new investments in North Carolina ...","url":"https://news.duke-energy.com/releases/duke-energy-proposes-new-investments-in-north-carolina-to-boost-reliability-and-support-economic-growth-across-the-state"}],"runId":"srun_c0e944bd89584b54953b7864eef3e10e","classifiedAt":"2026-07-02T22:55:52.947Z"},"787":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No site-specific water-use figures or permits were found; as a small 2.0–5.0 MW colocation site, no drought or aquifer concerns have been reported.","grid_note":"Listed between 2.0 MW and 5.0 MW; no reported transmission upgrades or rate actions tied to this site.","citations":[{"title":"Raleigh Data Center","url":"https://www.segra.com/wp-content/uploads/2024/11/DataCenter_Raleigh_2024.pdf"},{"title":"Liquid cooling solutions for AI and high-density data centers","url":"https://www.se.com/us/en/work/solutions/data-centers-and-networks/liquid-cooling/"},{"title":"Liquid Cooling and the Changing Reality of AI Infrastructure","url":"https://evansgeneralcontractors.com/liquid-cooling-and-the-changing-reality-of-ai-infrastructure/"},{"title":"Segra: Raleigh Data Center","url":"https://www.datacenters.com/segra-raleigh"},{"title":"Segra Raleigh: See All services with pricing","url":"https://inflect.com/building/2100-garner-station-boulevard-raleigh/segra/datacenter/raleigh"}],"runId":"srun_c0e944bd89584b544f939237511637af","classifiedAt":"2026-07-02T22:59:25.907Z"},"788":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific public reporting found on cooling-water consumption, source, drought/aquifer stress, or discharge for Cogent Data Center - Raleigh; listings show a small 3,954 sq ft colocation site with 42U cabinets, not a water-intensive AI campus.","grid_note":"No public source verified the input 5000 MW figure or any utility upgrades, ratepayer impacts, curtailment risk, or new generation/transmission tied to 608 W Hargett; listings show standard power/UPS/generator features without an MW load.","citations":[{"title":"Service Locations","url":"https://www.cogentco.com/en/component/content/article?action=search&page=2&id=40&continent=North%20America&country=United%20States&state=NC"},{"title":"Cogent Data Centers","url":"https://www.cogentco.com/en/network/cogent-data-centers"},{"title":"Raleigh Data Center","url":"https://cogentco.com/en/cogent-charlotte/243-clt-office/4567-charlotte-office-2"},{"title":"Cogent Raleigh","url":"https://mlq.ai/data-centers/usa/north-carolina/raleigh/cogent-cdcrdu/"},{"title":"Cogent Data Center - Raleigh | 608 W Hargett St","url":"https://www.datacentermap.com/usa/north-carolina/raleigh/cogent-data-center-raleigh/"}],"runId":"srun_c0e944bd89584b5409ebadc6d66cef08","classifiedAt":"2026-07-02T22:55:52.947Z"},"789":{"community_note":"No Celito-specific organized opposition or complaints were found; Raleigh officials are broadly reviewing data centers and some NC localities have adopted moratoria, but none of this coverage names Celito or 1400 Sunday Drive.","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No Celito-specific gallons/day, water source, or discharge/permit details were found in public materials.","grid_note":"No Celito-specific MW load or utility upgrade evidence was found; the 5,000 MW figure is uncorroborated and inconsistent with cabinet-scale colocation and small office suites at 1400 Sunday Drive.","citations":[{"title":"Raleigh leaders take a closer look at data centers in the city","url":"https://www.cbs17.com/news/local-news/wake-county-news/raleigh-leaders-take-a-closer-look-at-data-centers-in-the-city/"},{"title":"Data center moratorium fever for NC local governments","url":"https://carolinapublicpress.org/75853/data-centers-moratorium-fever-for-nc-local-governments/"},{"title":"Wastewater and Stormwater Discharges from Data Centers","url":"https://epa.ohio.gov/divisions-and-offices/surface-water/permitting/wastewater-discharges-from-data-centers--general-permit"},{"title":"Climate Impacts on Water Utilities","url":"https://19january2021snapshot.epa.gov/arc-x/climate-impacts-water-utilities_.html"},{"title":"Startup's nuclear-inspired cooling system could make data ...","url":"https://news.mit.edu/2026/nuclear-inspired-cooling-system-ferveret-could-make-data-centers-more-sustainable-0610"}],"runId":"srun_c0e944bd89584b54c443c789f4863e3d","classifiedAt":"2026-07-02T22:55:53.241Z"},"790":{"community_note":"Local advocates pushed the Durham City Council to pause new data centers, leading to a 60‑day moratorium in May 2026 that was later extended by 10 months, reflecting organized opposition citywide rather than DUR1‑specific actions [1][2][3].","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"No DUR1-specific gallons/day, source, or discharge data were found; reporting centers on a citywide pause on new data centers rather than this facility’s water use [1][2][3].","grid_note":"Served by Duke Energy with an on-site substation and dual feeds; no reporting found linking DUR1 to specific Duke transmission/generation upgrades or rate cases [1][2].","citations":[{"title":"an ordinance imposing a temporary moratorium on ...","url":"https://cityordinances.durhamnc.gov/OnBaseAgendaOnline/Documents/DownloadFileBytes/Final-Published%20Attachment%20-%2019257%20-%202%20-%20ORDINANCE%20-%20ATTACHMENT%20A%20-%20ORDINANC.pdf?documentType=1&meetingId=746&itemId=47647&publishId=272021&isSection=False&isAttachment=True"},{"title":"Unanimous vote for Durham data center moratorium","url":"https://soundrivers.org/unanimous-vote-for-durham-data-center-moratorium/"},{"title":"Durham extends data center pause for a total of 12 months","url":"https://www.newsobserver.com/news/local/counties/durham-county/article316143276.html"},{"title":"Stop Data Centers & Crypto Mining in Durham! - Action Network","url":"https://actionnetwork.org/petitions/stop-data-centers-durham"},{"title":"Durham, NC: DUR1 - Data centers","url":"https://www.cyrusone.com/data-centers/north-america/durham-nc"}],"runId":"srun_c0e944bd89584b547e9be1389d46a0e2","classifiedAt":"2026-07-02T22:55:53.241Z"},"791":{"community_note":"No facility-specific organized opposition, lawsuit, zoning fight, moratorium campaign, or noise/air-quality complaint was found for Data Suites at 1020 W College St.; community pushback appears absent as of July 2026.","water_impact":"low","ai_evidence":"Marketed as “AI and HPC ready,” with up to 50 kW/rack and a 2 MW, 415V powered shell for AI/HPC build-outs, but no named GPU clusters, AI tenants, or confirmed AI workloads were found in public materials [1][2][3][4].","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No gallons/day reported; the operator describes a recycled chilled-water system, and Murfreesboro’s drinking water comes from the East Fork of the Stones River and J. Percy Priest Lake [2][5].","grid_note":"Powered shell of 2 MW at 415V is advertised; the local utility is Middle Tennessee Electric, with no public documentation of substation/transmission upgrades or rate cases tied to this site [3][6].","citations":[{"title":"Data Suites: Nashville / Murfreesboro Data Center | AI ...","url":"https://mydatasuites.com/"},{"title":"Data Suites Data Center in Nashville | 1020 W College St","url":"https://www.datacentermap.com/usa/tennessee/nashville/data-suites/"},{"title":"Nashville / Murfreesboro Data Center Colocation","url":"https://mydatasuites.com/colocation/"},{"title":"Water Quality Report | Murfreesboro, TN - Official Website","url":"https://www.murfreesborotn.gov/1489/Water-Quality-Report"},{"title":"Data Suites: Nashville / Murfreesboro Data Center | AI ...","url":"https://mydatasuites.com/"}],"runId":"srun_c0e944bd89584b5438f3fcebcf29ce13","classifiedAt":"2026-07-02T22:55:53.241Z"},"808":{"community_note":"A Gallatin council member proposed a two-year moratorium on new data centers and the City Council deferred action while residents described impacts of living near a large facility.","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"","grid_note":"Reported over 40 MW available at the site with plans toward ~100 MW across the campus; no documented rate cases, curtailment, or required new generation/transmission identified.","citations":[{"title":"Gallatin residents describe living near one of Tennessee's ...","url":"https://www.wsmv.com/2026/06/24/gallatin-residents-describe-living-near-one-tennessees-largest-data-centers-city-council-defers-moratorium-vote/"},{"title":"TVA, Origis Energy to Power Google Data Centers with 100 ...","url":"https://origisenergy.com/insights/tva-origis-energy-to-power-google-data-centers-with-100-renewable-energy/"},{"title":"Centersquare Data Center in Gallatin Tennessee","url":"https://www.datacenters.com/centersquare-nashville-gallatin-tn"},{"title":"Archer Datacenters: Gallatin Data Center","url":"https://www.datacenters.com/archer-gallatin"},{"title":"Archer Data Center","url":"https://www.martinconcrete.com/project/archer-data-center/"}],"runId":"srun_c0e944bd89584b54f34c169a7bed38a4","classifiedAt":"2026-07-02T22:55:53.241Z"},"820":{"community_note":"Local reporting centers on permits and a Jobs PILOT for 5C’s MEM01 with no facility-specific opposition found, while ongoing lawsuits and air-permit disputes in Memphis target xAI facilities run by a different operator.","water_impact":"unknown","ai_evidence":"5C promotes MEM01 as a “Frontier AI Factory” in Memphis jointly built with Together AI, launching in early 2026, and lists the site at 20 MW (fully committed) with a 35 MW expansion.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"","grid_note":"Listed at 20 MW (fully committed) with a 35 MW expansion and no public MLGW upgrade or rate-impact disclosures specific to MEM01.","citations":[{"title":"Data center developer proposes $152 million project in ...","url":"https://www.localmemphis.com/article/news/local/data-center-developer-proposes-152-million-project-in-memphis/522-34f7288c-d7f6-462a-9c98-c0e37f3a00f6"},{"title":"Tax incentive sought for data center project at former Fred's ...","url":"https://www.commercialappeal.com/story/money/business/2025/11/17/5c-plans-in-memphis-freds-headquarters/87325694007/"},{"title":"Data center company purchases Fred's headquarters ...","url":"https://www.fox13memphis.com/news/data-center-company-purchases-freds-headquarters-building-for-25-million-records-show/article_4cae4b04-ee6a-41a6-9ac3-279134616909.html"},{"title":"NAACP sues Elon Musk's xAI over Memphis data center air ...","url":"https://www.cnbc.com/2026/04/14/elon-musk-xai-memphis-data-centers.html"},{"title":"xAI built an illegal power plant to power its data center","url":"https://www.selc.org/news/xai-built-an-illegal-power-plant-to-power-its-data-center/"}],"runId":"srun_c0e944bd89584b54ada4304db7ad44f9","classifiedAt":"2026-07-02T22:55:53.241Z"},"822":{"community_note":"Active opposition from SELC, NAACP, Young Gifted & Green, Memphis Community Against Pollution, and Sierra Club challenged xAI’s gas-turbine air permit at 3231 Paul R. Lowry over air pollution; the appeal was dismissed on Dec. 15, 2025.","water_impact":"high","ai_evidence":"Supermicro and industry sources describe Colossus 1 as a large, liquid‑cooled GPU supercomputer, and in May 2026 Anthropic agreed to use all compute capacity at Colossus 1.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Cooling needs are reported at about 3 million gallons/day for open-loop and ~5+ million gallons/day at peak, with a paused greywater reuse plant and local groups warning of stress to the Memphis Sand Aquifer.","grid_note":"TVA/MLGW approvals increased supply for Colossus 1 to 300 MW with system-impact studies and transmission/substation upgrades referenced, while observers warn of strain and potential ratepayer exposure.","citations":[{"title":"Inside Memphis' fight against xAI","url":"https://www.selc.org/news/inside-memphis-fight-against-xai/"},{"title":"Groups appeal permit for xAI's South Memphis data ...","url":"https://www.selc.org/press-release/groups-appeal-permit-for-xais-south-memphis-data-center-decisions-around-unpermitted-methane-gas-turbines/"},{"title":"Memphis board dismisses appeal of xAI turbines permit at ...","url":"https://www.commercialappeal.com/story/money/business/2025/12/15/xai-turbines-permit-in-memphis-tn-appeal/87514353007/"},{"title":"Wastewater Will Cool This Memphis Data Center","url":"https://www.governing.com/resilience/wastewater-will-cool-this-memphis-data-center"},{"title":"xAI Supercomputer","url":"https://www.protectouraquifer.org/issues/xai-supercomputer"}],"runId":"srun_c0e944bd89584b5467fc4bfc1490b156","classifiedAt":"2026-07-02T22:55:53.241Z"},"823":{"community_note":"NAACP (with SELC) and Earthjustice, along with residents, oppose xAI/MZX Tech’s 41-turbine Southaven gas plant over air-pollution and related impacts; the permit was approved on Mar 10, 2026, and groups appealed Apr 9, 2026 while lawsuits and injunction efforts proceed.","water_impact":"high","ai_evidence":"xAI describes Colossus as its AI training supercomputer, and the 5400 Tulane Rd site was acquired as xAI’s second Memphis data center; public summaries indicate a major GPU build-out at the second site consistent with training workloads.","grid_impact":"high","ai_class":"ai-training","community_pushback":"active-opposition","water_note":"Reports cite more than 25 million gallons purchased from MLGW in March 2026, the water-reuse project 'indefinitely paused,' and reliance on the Memphis Sand Aquifer—with estimates up to ~1 million gallons/day—raising local source/contamination concerns.","grid_note":"MLGW indicated the Tulane Rd site could seek 260 MW to 1.1 GW (with TVA approval), and Mississippi regulators authorized 41 natural-gas turbines in Southaven to power nearby data centers.","citations":[{"title":"Mississippi regulators rubber-stamp air permit for xAI ...","url":"https://www.selc.org/press-release/mississippi-regulators-rubber-stamp-air-permit-for-xai-power-plant-ignoring-overwhelming-public-pushback/"},{"title":"Groups appeal air permit for xAI's personal power plant in ...","url":"https://www.selc.org/press-release/groups-appeal-air-permit-for-xais-personal-power-plant-in-north-mississippi/"},{"title":"NAACP Asks Court for Emergency Action to Stop Illegal Air ...","url":"https://earthjustice.org/press/2026/naacp-asks-court-for-emergency-action-to-stop-illegal-air-pollution-from-xais-data-center-power-plant"},{"title":"xAI submits motion to dismiss NAACP's lawsuit against use ...","url":"https://www.localmemphis.com/article/news/local/xai-submits-motion-to-dismiss-naacps-lawsuit-against-use-of-natural-gas-turbines-at-southaven-facilities/522-0989e2cc-b0bf-406a-9f1a-92482db0472e"},{"title":"Musk mugs Memphis again, with xAI's Colossus 2 data center","url":"https://www.climateandcapitalmedia.com/musk-mugs-memphis-again-with-xais-colossus-2-data-center/"}],"runId":"srun_c0e944bd89584b54225465af1c307467","classifiedAt":"2026-07-02T22:55:53.241Z"},"824":{"community_note":"Active litigation and opposition: NAACP and environmental groups sued xAI/MZX Tech in April 2026 over alleged unpermitted methane gas turbines powering its Memphis-area data center, and sought a preliminary injunction in May 2026; case pending.","water_impact":"high","ai_evidence":"Colossus is positioned as an AI training supercomputer, with NVIDIA confirming 100,000 H100 GPUs in Memphis and local reporting that Colossus 2 on Tulane Road aims for 550,000 GPUs and gigawatt-scale AI training; the 5414 Tulane expansion is a new 312,000-sq-ft building on that campus.","grid_impact":"high","ai_class":"ai-training","community_pushback":"active-opposition","water_note":"Estimated usage includes ~1.3 MGD of municipal drinking water initially, open‑loop cooling around 3 MGD at Colossus, and the $80M wastewater‑reuse plant is on hold.","grid_note":"About 150 MW initially with another 150 MW approved by TVA, under a curtailment agreement; xAI also sought ~1.2 GW of on-site gas turbines in the metro area.","citations":[{"title":"Civil rights group sues xAI for illegal pollution from data ...","url":"https://www.selc.org/press-release/civil-rights-group-sues-xai-for-illegal-pollution-from-data-center-power-plant/"},{"title":"NAACP Asks Court for Emergency Action to Stop Illegal Air ...","url":"https://earthjustice.org/press/2026/naacp-asks-court-for-emergency-action-to-stop-illegal-air-pollution-from-xais-data-center-power-plant"},{"title":"xAI Supercomputer","url":"https://www.protectouraquifer.org/issues/xai-supercomputer"},{"title":"Wastewater Will Cool This Memphis Data Center","url":"https://www.governing.com/resilience/wastewater-will-cool-this-memphis-data-center"},{"title":"Elon Musk says xAI water recycling project on hold until ...","url":"https://wreg.com/news/local/xai-memphis/xai-puts-water-recycling-project-on-hold-drawing-concerns/"}],"runId":"srun_c0e944bd89584b54dcac7f5e2b5759f0","classifiedAt":"2026-07-02T22:55:53.241Z"},"825":{"community_note":"","water_impact":"unknown","ai_evidence":"Data Center Dynamics reports the Memphis site as a modular AI data center set to serve an Oracle cloud partner, with up to 9 MW at full build-out [1]; STEM’s Oracle partnership page states, “Oracle provides the infrastructure · STEM handles deployment and operations,” indicating an AI inference/sovereign cloud model rather than a training supercluster [2].","grid_impact":"low","ai_class":"ai-inference","community_pushback":"none-found","water_note":"No facility-specific water-use data located; a local report said “the chips would require no water cooling,” but full cooling design and gallons/day remain undisclosed.","grid_note":"Planned capacity is up to 9 MW at full build-out; no reports identified of required utility upgrades, rate cases, or curtailment tied to this site.","citations":[{"title":"The STEM Practice Memphis","url":"https://www.datacentermap.com/usa/tennessee/memphis/the-stem-practice-memphis/"},{"title":"Another AI data center coming to Memphis, sources say","url":"https://www.wsmv.com/2026/01/14/another-ai-data-center-coming-memphis-sources-say/"},{"title":"Data center acquired in Memphis, set to serve Oracle cloud ...","url":"https://www.datacenterdynamics.com/en/news/data-center-acquired-in-memphis-set-to-serve-oracle-cloud-partner/"},{"title":"Memphis Data Centers - 13 Facilities from 1 Operators","url":"https://www.datacentermap.com/usa/tennessee/memphis/"},{"title":"Oracle partner planning another data center in Memphis","url":"https://www.fox13memphis.com/news/oracle-partner-planning-another-data-center-in-memphis/article_ce1e4a49-ef95-4250-be98-efcd8ca14762.html"}],"runId":"srun_c0e944bd89584b5497049901c928ce95","classifiedAt":"2026-07-02T22:55:53.241Z"},"826":{"community_note":"Active organized opposition: the Safe and Sound Coalition, NAACP and a large resident class-action challenge xAI’s Southaven power plant/data center over allegedly unlawful gas turbines, noise, and health/property impacts, with litigation active as of June 2026.","water_impact":"high","ai_evidence":"Elon Musk said MACROHARDRR will take xAI training compute to almost 2 GW, and the Mississippi governor announced xAI is retrofitting the Southaven facility as MACROHARDRR for new data-center operations.","grid_impact":"high","ai_class":"ai-training","community_pushback":"active-opposition","water_note":"No official MACROHARDRR-only GPD figure was found; xAI planned an $80M wastewater-recycling facility to cool servers with treated effluent instead of drinking water, and local officials pressed for its completion amid aquifer-protection focus.","grid_note":"Mississippi approved 41 natural-gas turbines at xAI’s Southaven site, with reports of 27 temporary turbines and later 46 units lacking air permits, while Entergy indicates large data centers pay a big share of grid-upgrade costs.","citations":[{"title":"NAACP Sues xAI for Illegal Pollution from Data Center ...","url":"https://naacp.org/articles/naacp-sues-xai-illegal-pollution-data-center-power-plant"},{"title":"Musk's xAI, SpaceX hit with class action over data center ' ...","url":"https://www.reuters.com/legal/government/musks-xai-spacex-hit-with-class-action-over-data-center-nuisance-2026-06-09/"},{"title":"As Musk's Data Centers Encroach, Southaven Residents ...","url":"https://www.mississippifreepress.org/as-musks-xai-data-centers-encroach-on-southaven-north-mississippi-residents-push-back/"},{"title":"Wastewater Will Cool This Memphis Data Center","url":"https://www.governing.com/resilience/wastewater-will-cool-this-memphis-data-center"},{"title":"Mayor, MLGW push xAI to complete water recycling facility","url":"https://wreg.com/news/local/xai-memphis/mayor-mlgw-push-xai-to-complete-water-recycling-facility/"}],"runId":"srun_c0e944bd89584b54515cb4b0d8544ffa","classifiedAt":"2026-07-02T22:55:53.241Z"},"839":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No published gallons/day, source, drought/aquifer, or discharge details were found for this facility.","grid_note":"No facility-specific MW or upgrade requirements were found; AEP Ohio reports 17,861 MW of contracted data center projects systemwide, not tied to this site.","citations":[{"title":"Planning and Zoning Commission PUBLIC MEETING ...","url":"https://www.groveport.org/AgendaCenter/ViewFile/Minutes/_07022018-71"},{"title":"Planning and Zoning Commission PUBLIC MEETING ...","url":"https://www.groveport.org/AgendaCenter/ViewFile/Minutes/_07022018-71"},{"title":"Planning and Zoning Commission PUBLIC MEETING ...","url":"https://www.groveport.org/AgendaCenter/ViewFile/Minutes/_07022018-71"},{"title":"AFCOM Central Ohio Chapter Meeting & AEP Data Center ...","url":"https://afcom.com/event/COH23Oct24"},{"title":"AEP Ohio Updates PUCO on Data Center Load","url":"https://www.aepohio.com/company/news/view?releaseID=10753"}],"runId":"srun_c0e944bd89584b540bb4ce63884dd1bb","classifiedAt":"2026-07-02T22:55:53.241Z"},"840":{"community_note":"No QTS New Albany 2 DC1–specific litigation surfaced; organized statewide opposition is active via a petition to ban >25 MW data centers while the City launched a standards-focused info site, with signature collection underway.","water_impact":"low","ai_evidence":"No confirmed AI training or inference deployments are publicly tied to QTS New Albany 2 DC1; the nearby Prometheus AI supercluster belongs to Meta, not QTS.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day disclosed for QTS DC1; like other New Albany data centers it receives water/sewer service from the City of Columbus and operates under capped-use agreements.","grid_note":"Approx. 78 MW critical load exceeds AEP Ohio’s 25 MW Data Center Tariff threshold, which incorporates PJM planning and cost-allocation mechanisms.","citations":[{"title":"Data center ban on the Ohio ballot? Petitioners get ...","url":"https://ohiocapitaljournal.com/2026/04/03/data-center-ban-on-the-ohio-ballot-petitioners-get-approval-to-start-gathering-signatures/"},{"title":"New Albany touts jobs, revenue as data center pushback ...","url":"https://www.dispatch.com/story/news/local/2026/06/08/new-albany-ohio-data-center-construction-jobs-pushback-community/90423756007/"},{"title":"Ohio Prohibition of Data Center Construction Amendment","url":"https://ballotpedia.org/Ohio_Prohibition_of_Data_Center_Construction_Amendment_(2027)"},{"title":"Data Center - City of New Albany, Ohio","url":"https://datacenters.newalbanyohio.org/"},{"title":"Data center company QTS investing $1.5B into New Albany","url":"https://myfox28columbus.com/news/building-ohios-future-intel-beyond/data-center-company-investing-into-new-albany"}],"runId":"srun_c0e944bd89584b54c60ce8129991f35c","classifiedAt":"2026-07-02T22:55:53.241Z"},"841":{"community_note":"No organized opposition specific to QTS in New Albany; the city reports only four data-center noise complaints since 2015, while statewide groups raise broader noise and generator concerns.","water_impact":"low","ai_evidence":"No named AI/GPU tenant or GPU supercluster has been reported; QTS frames New Albany 2 for rapid, large-scale deployments and third-party listings show ~78 MW critical capacity.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"QTS cites a water-free Freedom cooling design with WUE 0 that “saves more than 48 million gallons of water annually per data center,” but no New Albany 2 DC2–specific gallons/day or local source-stress data were found.","grid_note":"Planned load is material: New Albany 2 ~78 MW within a 222 MW campus, and AEP Ohio reports 5,642 MW of contracted data-center load and a Data Center Tariff addressing planning and cost allocation.","citations":[{"title":"Ohio's data center boom really started in New Albany. We ...","url":"https://www.news5cleveland.com/news/local-news/ohios-data-center-boom-really-started-in-new-albany-we-went-there-to-see-what-it-looks-like"},{"title":"Data Centers & Noise Pollution: Ohio Communities Are ...","url":"https://www.sierraclub.org/ohio/blog/2026/02/data-centers-noise-pollution-ohio-communities-are-organizing-accountability"},{"title":"Data centers' impact on Ohio's environment","url":"https://spectrumnews1.com/oh/columbus/news/2026/02/22/data-centers--impact-on-the-environment-"},{"title":"Pioneering Water Efficiency and Sustainability in Data ...","url":"https://q.com/resources/pioneering-water-efficiency-and-sustainability-in-data-center-operations/"},{"title":"New Albany 2 - Data Centers","url":"https://q.com/data-centers/new-albany-2/"}],"runId":"srun_c0e944bd89584b54806503c537f32be1","classifiedAt":"2026-07-02T22:55:53.241Z"},"842":{"community_note":"No site-specific complaints were found for 2570 Beech Road; regionally, St. Albans Township banned data centers amid resident concerns while New Albany officials emphasize jobs and revenue and continue supporting the sector.","water_impact":"moderate","ai_evidence":"AWS operates the 2570 Beech Road data center as part of the US East (Ohio) region, and while AWS offers H100-based EC2 P5 instances in that region, no source links this particular building to GPU superclusters or AI-specific retrofits.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day were found for 2570 Beech Road; New Albany indicates data centers use City of New Albany/Columbus water with regulated sewer treatment, regional analysis says supply is adequate but wastewater/discharge is a challenge, and Amazon reports aggregate annual data‑center water use rather than site‑level figures.","grid_note":"In AEP Ohio territory, a PUCO-approved Data Center Tariff includes a one-time load‑study fee of $10,000–$100,000 and other requirements intended to allocate costs to large new loads.","citations":[{"title":"New Albany touts jobs, revenue as data center pushback ...","url":"https://www.dispatch.com/story/news/local/2026/06/08/new-albany-ohio-data-center-construction-jobs-pushback-community/90423756007/"},{"title":"Licking County's St. Albans Township bans data centers","url":"https://www.newarkadvocate.com/story/news/politics/2026/03/12/licking-county-ohio-st-albans-township-bans-data-centers/89101649007/"},{"title":"Data Center - City of New Albany, Ohio","url":"https://datacenters.newalbanyohio.org/"},{"title":"Ohio Chamber report says there's enough water for data ...","url":"https://www.wyso.org/news/2026-06-18/ohio-chamber-report-says-theres-enough-water-for-data-centers-used-water-is-a-different-story"},{"title":"Amazon — finally — reports its annual water use at data ...","url":"https://www.latitudemedia.com/news/amazon-finally-reports-its-annual-water-use-at-data-centers/"}],"runId":"srun_c0e944bd89584b543abd1d744b0ad93e","classifiedAt":"2026-07-02T22:55:53.241Z"},"843":{"community_note":"Hilliard officials and residents are opposing AWS/AEP power additions—including a large fuel‑cell system and proposed diesel generators—with state approvals issued and the city appealing the EPA air permit.","water_impact":"unknown","ai_evidence":"Listings show 5109 Hayden Run is an AWS‑operated facility in the US East (Ohio) region, with Hayden Building 1 at approximately 154,000 sq ft; no public evidence of a site‑specific GPU supercluster or AI‑focused retrofit was found.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No site‑specific water‑use or discharge data was found for 5109 Hayden Run; AWS shares global water‑efficiency practices, but not Hilliard‑level metrics.","grid_note":"A 72.9‑MW solid‑oxide fuel‑cell project is proposed for the Hilliard AWS campus and Ohio regulators approved AEP Ohio’s data‑center tariff requiring large users (over 25 MW) to pay minimum charges.","citations":[{"title":"Hilliard to appeal EPA fuel cell permit for Amazon site","url":"https://hilliardohio.gov/hilliard-to-appeal-epa-fuel-cell-permit-for-amazon-site/"},{"title":"Diesel backup generators opposd for Amazon data center ...","url":"https://www.dispatch.com/story/news/local/communities/hilliard/2026/03/19/diesel-backup-generators-opposd-for-amazon-data-center-in-hilliard/89120950007/"},{"title":"How Amazon is making its data centers more water-efficient","url":"https://www.aboutamazon.com/news/sustainability/amazon-data-center-water-usage"},{"title":"Amazon — finally — reports its annual water use at data ...","url":"https://www.latitudemedia.com/news/amazon-finally-reports-its-annual-water-use-at-data-centers/"},{"title":"Amazon AWS CMH - 5109 Hayden Data Center in Columbus","url":"https://www.datacentermap.com/usa/ohio/columbus/amazon-aws-cmh-5109-hayden/"}],"runId":"srun_c0e944bd89584b54f5153727fef6377f","classifiedAt":"2026-07-02T22:55:53.241Z"},"844":{"community_note":"Active opposition: the City of Hilliard, residents, and the Protect Hilliard group are contesting AEP/Amazon’s 228-unit natural-gas fuel cell project at the Hilliard campus over air emissions, safety, and siting near neighborhoods/schools, with the City filing/advancing an appeal of the Ohio EPA permit after OPSB approval.","water_impact":"unknown","ai_evidence":"Facility directories list 5117 Hayden Run as an AWS data center within the US East (Ohio/us-east-2) region, but no announcements or records identify Hilliard-specific GPU clusters or AI retrofits.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day or cooling-water source was found for 5117 Hayden Run; OPSB staff materials for the 72.9‑MW campus fuel-cell project state water is limited to fire protection and potable needs from the City of Columbus, with no onsite groundwater use and no wastewater discharge.","grid_note":"A 72.9‑MW solid-oxide fuel cell project is proposed for the Amazon Hilliard campus, while AEP Ohio reports 17,861 MW of contracted data-center load and has a data-center tariff/agreements requiring large customers to shoulder costs.","citations":[{"title":"Hilliard to appeal EPA fuel cell permit for Amazon site","url":"https://hilliardohio.gov/hilliard-to-appeal-epa-fuel-cell-permit-for-amazon-site/"},{"title":"Protect Hilliard | AWS Fuel Cell Health Concerns","url":"https://hilliardcleanair.org/"},{"title":"Lawsuit aims to block Ohio Amazon data center's 228 'fuel ...","url":"https://signalohio.org/columbus-suburb-sues-to-block-amazon-data-centers-six-acre-array-of-228-fuel-cells-ohio/"},{"title":"Hilliard residents troubled as data center plan moves ...","url":"https://www.nbc4i.com/news/local-news/hilliard/hilliard-residents-troubled-as-data-center-plan-moves-forward-without-city-approval/"},{"title":"Some residents in Hilliard are raising alarms as plans move ...","url":"https://www.instagram.com/reel/DVjtwBDlXk4/"}],"runId":"srun_c0e944bd89584b54af6d52d60867c6d8","classifiedAt":"2026-07-02T22:55:53.241Z"},"845":{"community_note":"No organized opposition was found for 5113 Hayden Run; opposition in Hilliard targets a separate Scioto Darby campus over fuel cells and diesel generators, with hearings/appeals active.","water_impact":"unknown","ai_evidence":"The site is listed as an AWS data center at 5113 Hayden Run with no published indicators of GPU superclusters or liquid-cooling retrofits, and although AWS offers NVIDIA H100-based P5 instances, no reporting links those AI workloads to this facility.","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No site-specific data found; Amazon reports fleetwide 2025 usage at ~0.03 gal/kWh and says its data centers use air cooling most of the year rather than water.","grid_note":"No MW load disclosed for 5113; elsewhere in Hilliard, AEP pursued onsite fuel cells to serve AWS due to insufficient capacity and received approvals for onsite generation at high-demand data centers.","citations":[{"title":"Hilliard residents oppose Amazon data center fuel cell plans","url":"https://abc6onyourside.com/news/local/hilliard-ohio-residents-oppose-amazon-data-center-fuel-cell-plans-aep-ohio-city-council-solid-oxide-fuel-cell-system"},{"title":"Hilliard residents raise concerns over Amazon data center ...","url":"https://www.10tv.com/article/news/local/hilliard-residents-concerns-amazon-data-center-diesel-generators/530-ccb1ea66-fad0-403b-9baf-76110d65f2fd"},{"title":"How AWS uses recycled water in data centers","url":"https://sustainability.aboutamazon.com/stories/how-aws-uses-recycled-water-in-data-centers"},{"title":"Amazon AWS Data Center in Hilliard Ohio","url":"https://www.datacenters.com/amazon-aws-5113-hayden-run"},{"title":"Amazon EC2 P5 Instances","url":"https://aws.amazon.com/ec2/instance-types/p5/"}],"runId":"srun_c0e944bd89584b5469c56d79b545ea6d","classifiedAt":"2026-07-02T22:55:53.241Z"},"846":{"community_note":"Hilliard city officials and residents are actively opposing AEP/AWS on-site power projects at the Cosgray campus—appealing a 228‑fuel‑cell permit and protesting an Ohio EPA draft permit for 158 diesel backup generators—with proceedings and public comments continuing into 2026 [4][5][3].","water_impact":"unknown","ai_evidence":"Listings identify the Cosgray site as an AWS campus at 4600–4636 Cosgray Rd, but no public, site-specific announcements of GPU superclusters or AI-dedicated deployments were found [1][2].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No site-specific water metrics were found; Amazon reports global data center water use of ~2.5 billion gallons in 2025 at an average 0.12 L/kWh, which is not attributable to this campus [10][9].","grid_note":"Campus reported as four data-center buildings with AEP switching and substation; AEP is installing a dedicated fuel-cell system off Scioto Darby Creek Road to serve the customer’s onsite demand, and an AEP/PUCO tariff requires large new data centers to pay for at least 85% of subscribed energy [8][12][11].","citations":[{"title":"Fuel Cells - City of Hilliard","url":"https://hilliardohio.gov/fuel-cells/"},{"title":"Hilliard to appeal EPA fuel cell permit for Amazon site","url":"https://hilliardohio.gov/hilliard-to-appeal-epa-fuel-cell-permit-for-amazon-site/"},{"title":"Hilliard residents raise concerns over Amazon data center ...","url":"https://www.10tv.com/article/news/local/hilliard-residents-concerns-amazon-data-center-diesel-generators/530-ccb1ea66-fad0-403b-9baf-76110d65f2fd"},{"title":"Amazon — finally — reports its annual water use at data ...","url":"https://www.latitudemedia.com/news/amazon-finally-reports-its-annual-water-use-at-data-centers/"},{"title":"Amazon's secret weapon for cooling data centers: recycled ...","url":"https://trellis.net/article/amazon-cooling-data-centers-recycled-water/"}],"runId":"srun_c0e944bd89584b54241d87c84f47e072","classifiedAt":"2026-07-02T22:55:53.241Z"},"847":{"community_note":"The City of Hilliard and residents are actively opposing AEP/Amazon’s on-site 228‑fuel‑cell power project and air permits (up to 158 emergency generators) at the AWS Hilliard campus, filing appeals while proceedings continue.","water_impact":"unknown","ai_evidence":"This site is an AWS hyperscale facility at 5125 Hayden Run within the CMH Hayden Campus, with no public evidence of site‑specific GPU superclusters, AI training deployments, or liquid‑cooling retrofits.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No site‑specific water‑use data was found; Amazon reports 2.5 billion gallons used across data centers in 2025 and a 0.12 L/kWh global water intensity.","grid_note":"AEP flagged insufficient capacity for the AWS Hilliard campus, so a 228‑unit Bloom fuel‑cell project (~72.9 MW) is proceeding behind the meter, while AEP Ohio reports 17,861 MW of contracted data‑center load and a dedicated data‑center tariff to allocate costs and require load studies.","citations":[{"title":"Hilliard to appeal EPA fuel cell permit for Amazon site","url":"https://hilliardohio.gov/hilliard-to-appeal-epa-fuel-cell-permit-for-amazon-site/"},{"title":"City of Hilliard challenges Amazon fuel cell project at Ohio ...","url":"https://www.datacenterdynamics.com/en/news/city-of-hilliard-challenges-amazon-fuel-cell-project-at-ohio-data-center-report/"},{"title":"Ohio EPA to host public meeting on proposed Amazon data ...","url":"https://myfox28columbus.com/news/local/ohio-epa-host-public-meeting-proposed-amazon-data-center-permit-hilliard"},{"title":"Open house planned for controversial fuel cells at Hilliard ...","url":"https://www.dispatch.com/story/news/local/communities/hilliard/2026/02/18/open-house-planned-for-controversial-data-center-power-project-in-hilliard/88611075007/"},{"title":"How Amazon is making its data centers more water-efficient","url":"https://www.aboutamazon.com/news/sustainability/amazon-data-center-water-usage"}],"runId":"srun_c0e944bd89584b54de75a01b569a7b63","classifiedAt":"2026-07-02T22:55:53.241Z"},"848":{"community_note":"Active opposition: the City of Hilliard appealed state permitting and residents (e.g., Hilliard Clean Air) are organizing against the AWS/AEP fuel-cell project, citing health/air-quality and loss of local control, with the project advancing under state authority.","water_impact":"unknown","ai_evidence":"AWS provides NVIDIA H100-powered EC2 P5 instances in the US East (Ohio) region, indicating regional AI compute, but no report links those GPUs or an AI supercluster directly to 5121 Hayden; site listings only confirm the facility address within the Hayden campus.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No facility-specific public data found for cooling type, gallons/day, water source, discharge, aquifer stress, or drought concerns at 5121 Hayden Run.","grid_note":"73 MW on-site natural-gas fuel cells (228 units) are planned for the Hilliard AWS campus, and AEP Ohio’s PUCO-approved data-center tariff requires large new customers to pay a minimum of 85% of subscribed energy.","citations":[{"title":"Hilliard to appeal EPA fuel cell permit for Amazon site","url":"https://hilliardohio.gov/hilliard-to-appeal-epa-fuel-cell-permit-for-amazon-site/"},{"title":"State law overrides local review for AWS fuel cell system in ...","url":"https://hilliardohio.gov/state-law-overrides-local-review-for-aws-fuel-cell-system-in-hilliard/"},{"title":"Protect Hilliard | AWS Fuel Cell Health Concerns","url":"https://hilliardcleanair.org/"},{"title":"Hilliard residents troubled as data center plan moves forward without city approval | NBC4 WCMH-TV","url":"https://www.nbc4i.com/news/local-news/hilliard/hilliard-residents-troubled-as-data-center-plan-moves-forward-without-city-approval/"},{"title":"Protect Hilliard | AWS Fuel Cell Health Concerns","url":"https://hilliardcleanair.org/"}],"runId":"srun_c0e944bd89584b5498cdba6a9c770b94","classifiedAt":"2026-07-02T22:55:53.241Z"},"849":{"community_note":"No direct opposition identified for 2540 Beech, but regionally groups like Conserve Ohio and local residents are actively pushing back over power, water, and diesel-generator impacts, with public meetings and moratorium efforts ongoing.","water_impact":"moderate","ai_evidence":"2540 Beech is listed as an AWS-operated facility within the us-east-2 (Ohio) region, and AWS offers P5 GPU instances in this region, but no site-specific GPU supercluster or liquid-cooling announcement for this address was found.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No site-specific gallons/day found; cooling-related discharges are regulated under Ohio EPA’s NPDES framework, with a general permit covering data center blowdown/non-contact cooling water.","grid_note":"No site-specific MW disclosed; AEP Ohio has 17,861 MW of contracted data-center load, some growth depends on a new transmission line not expected until 2031, and PUCO’s tariff requires >25 MW data centers to fund necessary infrastructure.","citations":[{"title":"Conserve Ohio","url":"https://conserveohio.com/"},{"title":"New Albany touts jobs, revenue as data center pushback ...","url":"https://www.dispatch.com/story/news/local/2026/06/08/new-albany-ohio-data-center-construction-jobs-pushback-community/90423756007/"},{"title":"Diesel backup generators opposd for Amazon data center ...","url":"https://www.dispatch.com/story/news/local/communities/hilliard/2026/03/19/diesel-backup-generators-opposd-for-amazon-data-center-in-hilliard/89120950007/"},{"title":"Wastewater and Stormwater Discharges from Data Centers","url":"https://epa.ohio.gov/divisions-and-offices/surface-water/permitting/wastewater-discharges-from-data-centers--general-permit"},{"title":"Ohio EPA looks to streamline water permits for data centers","url":"https://www.wvxu.org/environment/2025-12-16/ohio-epa-water-permits-data-centers"}],"runId":"srun_c0e944bd89584b545325d4bdaad31da9","classifiedAt":"2026-07-02T22:55:53.609Z"},"851":{"community_note":"No organized, facility-specific opposition or legal action was found against QTS Jersey City 1; statewide calls and actions have targeted new large-scale data centers, not this existing site, with no active local case tied to JCY1.","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Technical listings cite an N+1 dry cooling plant with redundant glycol piping and generator-backed cooling; no gallons/day or local aquifer/drought/discharge concerns were reported for this site.","grid_note":"Listings indicate roughly 3 MW capacity at 95 Christopher Columbus Dr with N+1 redundancy; no evidence of utility upgrades or rate cases tied to this facility.","citations":[{"title":"Data Center Bans Emerge in 4 More New Jersey ...","url":"https://www.govtech.com/artificial-intelligence/data-center-bans-emerge-in-4-more-new-jersey-communities"},{"title":"QTS Jersey City Data Center","url":"https://baxtel.com/data-center/qts-jersey-city/files/qts-jersey-city"},{"title":"Environmental Stewardship","url":"https://q.com/the-qts-difference/environmental-stewardship/"},{"title":"QTS Data Center in Jersey City New Jersey","url":"https://www.datacenters.com/qts-jersey-city"},{"title":"QTS Certified for NVIDIA DGX Colocation Program","url":"https://q.com/news/qts-certified-for-nvidia-dgx-colocation-program/"}],"runId":"srun_c0e944bd89584b540d7df10c3655dd26","classifiedAt":"2026-07-02T22:55:53.609Z"},"855":{"community_note":"No organized opposition, lawsuits, or zoning disputes specific to CyrusOne NYM2 in Totowa were identified in municipal or local web sources.","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"No gallons/day disclosed for NYM2; Totowa buys all drinking water from Passaic Valley Water Commission, and NJDEP issued a statewide Drought Warning on July 1, 2026.","grid_note":"16 MW utility capacity at 50 Madison Road; PSE&G projects data-center demand in its zone rising to 3,084 MW by Summer 2031.","citations":[{"title":"Borough of Totowa: Home","url":"https://www.totowanj.org/"},{"title":"Planning Board","url":"https://www.totowanj.org/planningboard"},{"title":"Water Department","url":"https://www.totowanj.org/water"},{"title":"Water Quality","url":"https://www.pvwc.com/Water-Quality-Updates/Water-Quality"},{"title":"New Jersey Drought Information - NJDEP","url":"https://dep.nj.gov/drought/"}],"runId":"srun_c0e944bd89584b54c7d60b5f1bfb4217","classifiedAt":"2026-07-02T22:55:53.609Z"},"859":{"community_note":"Franklin Township’s Planning Board debated an ordinance to ban data centers in all zones, indicating township-wide concern, but no NYM1-specific lawsuit or organized opposition was found.","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No site-specific gallons/day, water source, or discharge details for NYM1 are published in facility listings; only general water-use commentary from the operator is available.","grid_note":"Listed at about 30 MW IT load with 430,000 sq ft, and no public record of NYM1-specific PSE&G upgrades or curtailments; New Jersey has considered policy focused on protecting ratepayers from large data-center power usage.","citations":[{"title":"Franklin Township Planning Board Debates Data Center Ban ...","url":"https://thelocallens.org/franklin-township-planning-board-debates-data-center-ban-amid-public-concerns/"},{"title":"Somerset, NJ: NYM1","url":"https://www.cyrusone.com/data-centers/north-america/somerset-nj"},{"title":"CyrusOne: NYM1 Somerset Data Center","url":"https://www.ocolo.io/colocation/cyrusone/nym1-somerset/"},{"title":"Data centers and the challenge of water consumption","url":"https://www.cyrusone.com/media-coverage-press-releases/resources/media-coverage/data-centers-and-the-challenge-of-water-consumption"},{"title":"Somerset, NJ: NYM1","url":"https://www.cyrusone.com/data-centers/north-america/somerset-nj"}],"runId":"srun_c0e944bd89584b54822e25ae0a223820","classifiedAt":"2026-07-02T22:55:53.609Z"},"863":{"community_note":"Active opposition: Kenilworth residents have rallied and protested against the AI data center under construction, with petitions and public pushback at meetings, while construction proceeds.","water_impact":"unknown","ai_evidence":"RE-NJ reports CoreWeave began building a 392,600-sq-ft AI data center in Kenilworth, supported by an NJEDA Next NJ Program–AI tax credit, and CoreWeave markets its data centers as high-performance GPU clusters with liquid cooling.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No gallons/day figure was reported; CoreWeave promotes closed‑loop, direct‑to‑chip liquid cooling, while regional coverage notes AI data centers can use millions of gallons of water.","grid_note":"Planned up to 250 MW with PSE&G preparing/upgrading local electrical infrastructure; no project‑specific rate case or curtailment terms were found.","citations":[{"title":"Ai Data Center Under Construction In Kenilworth Draws ...","url":"https://newjersey.news12.com/ai-data-center-under-construction-in-kenilworth-draws-mixed-reactions-from-residents"},{"title":"Community rallies against giant data center being built in ...","url":"https://abc7ny.com/post/community-rallies-giant-data-center-being-built-kenilworth-new-jersey/19053270/"},{"title":"AI Data Center Liquid Cooling | CoreWeave Video","url":"https://www.coreweave.com/resources/videos/coreweave-ai-data-centers-closed-loop-cooling-at-scale"},{"title":"CoreWeave data center coming to Kenilworth","url":"https://www.nj.com/union/2026/04/a-18-billion-ai-data-center-is-coming-to-this-tiny-nj-borough.html"},{"title":"CoreWeave begins $1.8 billion data center project in ...","url":"https://re-nj.com/coreweave-begins-1-8-billion-data-center-project-in-kenilworth-landing-first-award-under-new-eda-tax-credit-program/"}],"runId":"srun_c0e944bd89584b543c863ff181150c65","classifiedAt":"2026-07-02T22:55:53.609Z"},"875":{"community_note":"Residents in Kenilworth and nearby towns have organized protests and petitions over environmental and quality‑of‑life impacts, while the CoreWeave project is proceeding under construction [1][2][3].","water_impact":"low","ai_evidence":"CoreWeave describes its AI data centers as delivering high‑performance GPU clusters with liquid cooling [1][2], and regional reporting confirms the large Kenilworth CoreWeave data center is under construction [3].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Closed‑loop/direct‑to‑chip liquid cooling circulates non‑toxic coolant and is described as avoiding continuous local water draw, with no reported aquifer/drought stress or discharge issues specific to this site [1][2].","grid_note":"A 140‑MW CoreWeave build in Kenilworth is reported, with PSE&G collaboration on conversion and construction underway; no site‑specific rate case, PJM queue, or curtailment details were found [1][2][3].","citations":[{"title":"Meeting on AI data center in Kenilworth, N.J., called off, ...","url":"https://www.cbsnews.com/newyork/news/kenilworth-nj-ai-data-center-meeting-called-off/"},{"title":"Community rallies against giant data center being built in ...","url":"https://abc7ny.com/post/community-rallies-giant-data-center-being-built-kenilworth-new-jersey/19053270/"},{"title":"CoreWeave begins $1.8 billion data center project in ...","url":"https://re-nj.com/coreweave-begins-1-8-billion-data-center-project-in-kenilworth-landing-first-award-under-new-eda-tax-credit-program/"},{"title":"AI Data Center Liquid Cooling | CoreWeave Video","url":"https://www.coreweave.com/resources/videos/coreweave-ai-data-centers-closed-loop-cooling-at-scale"},{"title":"Ai Data Center Under Construction In Kenilworth Draws ...","url":"https://newjersey.news12.com/ai-data-center-under-construction-in-kenilworth-draws-mixed-reactions-from-residents"}],"runId":"srun_c0e944bd89584b54f6de58403ce6206a","classifiedAt":"2026-07-02T22:55:53.609Z"},"876":{"community_note":"","water_impact":"low","ai_evidence":"Public materials characterize NYM5 as a carrier‑neutral colocation site with up to 16 MW and work‑area recovery space, and there are no facility‑specific AI/GPU or liquid‑cooling deployment announcements [1][2].","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"Operator materials state NYM5 uses water‑free cooling, and no reports indicate cooling‑water consumption or discharge concerns [1].","grid_note":"Up to 16 MW IT capacity is cited for NYM5, while a market listing shows ~2 MW delivered and ~4 MW additional, with no public evidence of utility upgrades or rate impacts [2][3].","citations":[{"title":"Norwalk, CT: NYM5 | CyrusOne","url":"https://www.cyrusone.com/data-centers/north-america/norwalk-ct"},{"title":"Norwalk, CT: NYM5 | CyrusOne","url":"https://www.cyrusone.com/data-centers/north-america/norwalk-ct"},{"title":"Norwalk, CT: NYM5 | CyrusOne","url":"https://www.cyrusone.com/data-centers/north-america/norwalk-ct"},{"title":"Norwalk NYM5 - CyrusOne","url":"https://www.ocolo.io/colocation/cyrusone/norwalk-nym5/"},{"title":"AI Data Centers","url":"https://www.cyrusone.com/solutions/ai-data-centers"}],"runId":"srun_c0e944bd89584b54b13672934664fb2b","classifiedAt":"2026-07-02T22:55:53.609Z"},"877":{"community_note":"","water_impact":"unknown","ai_evidence":"No public site-specific evidence of GPU clusters, AI tenants, or liquid-cooling retrofits; listings describe a ~57,000 sq ft, 4.00 MW colocation/enterprise facility.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No Stamford NYM10 gallons/day or source disclosed; the county was under a Stage 2 drought advisory in June 2026 and Aquarion maintained irrigation restrictions, while CyrusOne discusses varied cooling approaches at a corporate level.","grid_note":"About 4 MW with no reported Eversource interconnection or transmission upgrades for this site; Eversource\u0019s remarks in 2026 targeted hyperscale impacts rather than specific Stamford facilities.","citations":[{"title":"Planning Board | Stamford, CT","url":"https://www.stamfordct.gov/business/planning-board"},{"title":"Why one Connecticut town approved a two-year ban on ...","url":"https://www.ctinsider.com/connecticut/article/morris-connecticut-data-center-moratorium-farmland-22270014.php"},{"title":"Park Map Stamford by River Bend Center","url":"https://riverbend1.com/map/"},{"title":"Growing Our Net Positive Water Portfolio","url":"https://www.cyrusone.com/resources/blogs/growing-our-net-positive-water-portfolio"},{"title":"Stamford NYM10 Data Center - CyrusOne","url":"https://www.ocolo.io/colocation/cyrusone/stamford-nym10/"}],"runId":"srun_c0e944bd89584b546b8e8ce2a866d32c","classifiedAt":"2026-07-02T22:55:53.609Z"},"896":{"community_note":"Residents in southwest Las Vegas opposed a Switch data center expansion near the Core Campus over water, noise, and growth impacts, but Clark County approved the project with conditions in June 2026 [1][2][3].","water_impact":"moderate","ai_evidence":"","grid_impact":"high","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"No LV7-specific gallons/day were reported; Switch says it recycles cooling water, while Nevada research cites a medium WUE of 0.465 L/kWh and finds most of a data center’s water footprint is indirect (about 2 gallons per kWh) via electricity generation [1][2][3].","grid_note":"Part of a Core Campus planned for up to 495 MW in Las Vegas, amid reporting that data centers could triple Nevada’s grid capacity and are central to NV Energy’s planning [1][2][3].","citations":[{"title":"Southwest valley residents voice concerns over proposed ...","url":"https://www.ktnv.com/neighborhoods/southwest-las-vegas/southwest-valley-residents-voice-concerns-over-proposed-data-center-expansion"},{"title":"Clark County approves Switch data center items in ...","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Las Vegas data center expansion approved as officials ...","url":"https://nevadacurrent.com/2026/06/18/las-vegas-data-center-expansion-approved-as-officials-ponder-need-for-future-regulations/"},{"title":"Water - Switch","url":"https://www.switch.com/sustainable-data-centers/water/"},{"title":"Data Center Water and Electricity Consumption in Nevada","url":"https://www.dri.edu/datacenters/"}],"runId":"srun_c0e944bd89584b5425e6a935f98ba631","classifiedAt":"2026-07-02T22:55:53.609Z"},"897":{"community_note":"Clark County approved a 2026 Switch Core-campus expansion after residents raised concerns about energy, water, and environmental impacts, while a commissioner said the complex had produced zero noise complaints for over a decade [6][7][8].","water_impact":"moderate","ai_evidence":"CoreWeave launched GPU cloud capacity in Las Vegas and deployed the NVIDIA GB300 NVL72 in Switch’s AI Factory environment, but reports place these AI Factory buildings near the Jones–215 interchange and do not link them to LV9 at 7365 S. Lindell Rd [11][12][13][14].","grid_impact":"high","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No LV9-specific figure found; 23 Southern Nevada data centers used about 716 million gallons in 2024 and Southern Nevada gets ~90% of its water from the Colorado River [9][10].","grid_note":"Design capacity up to 50 MVA for LV9 and up to 495 MW for the Las Vegas Core campus; Switch’s 2016 approval to exit NV Energy retail service required a $27M fee amid public-interest concerns [1][2][3][4].","citations":[{"title":"Switch proposal to add another data center to its ...","url":"https://www.reviewjournal.com/news/politics-and-government/clark-county/switchs-plan-to-add-another-data-center-to-las-vegas-hq-moves-forward-3839760/"},{"title":"Clark County approves Switch data center items in ...","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Switch wins Las Vegas expansion approval even as data ...","url":"https://lasvegassun.com/news/2026/jun/23/switch-wins-las-vegas-expansion-approval-even-as-d/"},{"title":"The $3 Billion Blind Spot: How Nevada's Cooling Tower Ban ...","url":"https://avanzaenergy.substack.com/p/the-3-billion-blind-spot-how-nevadas"},{"title":"Where Your Water Comes From","url":"https://www.snwa.com/water-resources/where-water-comes-from/"}],"runId":"srun_c0e944bd89584b54e03ec384763514ae","classifiedAt":"2026-07-02T22:55:53.609Z"},"898":{"community_note":"No LV10-specific opposition found; a related Switch LAS 19/Core Campus expansion was approved on 2026-06-17 despite opposition from residents and environmental groups over energy, water, transparency, and safety concerns.","water_impact":"unknown","ai_evidence":"LV10 is a 2017 Switch colocation/hyperscale build (~350,000 sq ft; up to 40 MW; 25.8 MW currently offered), and no LV10-specific GPU supercluster or AI-tenant announcement is published; Switch’s AI Factory and CoreWeave GB300 NVL72 deployments are associated with separate AI Factory facilities near the Jones Blvd–215 Beltway interchange, not explicitly LV10.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No LV10 gallons/day disclosed; Switch says it will replenish up to 2× its operational water use and operates campuses on 100% recycled effluent water, while Nevada researchers project considerable future water/electric consumption from data centers.","grid_note":"LV10 offers ~25.8 MW critical power within a facility rated up to 40 MW and sits in Switch’s Las Vegas Core Campus planned up to 495 MW; Nevada sources report large, accelerating data center-driven grid upgrades and new generation needs, with no LV10-specific upgrade or rate case identified.","citations":[{"title":"Clark County approves Switch data center items in ...","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Las Vegas data center expansion approved as officials ...","url":"https://nevadacurrent.com/2026/06/18/las-vegas-data-center-expansion-approved-as-officials-ponder-need-for-future-regulations/"},{"title":"Water - Switch","url":"https://www.switch.com/sustainable-data-centers/water/"},{"title":"Data Centers and Water Consumption | Article | EESI","url":"https://www.eesi.org/articles/view/data-centers-and-water-consumption"},{"title":"Data Center Water and Electricity Consumption in Nevada","url":"https://www.dri.edu/datacenters/"}],"runId":"srun_c0e944bd89584b549a96ddd7eccd348f","classifiedAt":"2026-07-02T22:55:53.609Z"},"899":{"community_note":"Environmental groups and residents opposed Switch’s southwest Las Vegas expansion over water/utility and community impacts, but Clark County approved it on June 17, 2026.","water_impact":"unknown","ai_evidence":"No verifiable reporting places GPU AI tenants or superclusters inside LV11; Switch’s AI Factory announcements and CoreWeave’s GB300 NVL72 deployment reference separate AI Factory sites near Jones Blvd/Roy Horn, not 7380 S Lindell Rd.","grid_impact":"high","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"No LV11 gallons/day reported; Switch says it recycles cooling water multiple times using Silver Bullet and targets replenishing up to 2x its operational water use.","grid_note":"No LV11 MW disclosed; the Core Campus targets up to 495 MW, while NV Energy reports needing three times Las Vegas’s electricity for proposed data centers and has agreed to 3,000–4,000 MW so far.","citations":[{"title":"Clark County approves Switch data center items in ...","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Switch proposal to add another data center to its ...","url":"https://www.reviewjournal.com/news/politics-and-government/clark-county/switchs-plan-to-add-another-data-center-to-las-vegas-hq-moves-forward-3839760/"},{"title":"Water - Switch","url":"https://www.switch.com/sustainable-data-centers/water/"},{"title":"Green Datacenter | Data Center Services - Switch","url":"https://www.switch.com/sustainability/"},{"title":"Switch LAS VEGAS 11 | 7380 Lindell Road, Las Vegas","url":"https://datacenterhawk.com/marketplace/providers/switch/7380-lindell-road/las-vegas-11"}],"runId":"srun_c0e944bd89584b5454eef6269154d9e8","classifiedAt":"2026-07-02T22:55:53.609Z"},"902":{"community_note":"Henderson officials are considering a temporary pause on new data centers to review impacts; no Google-specific lawsuits or organized opposition were identified [1].","water_impact":"high","ai_evidence":"Google said its 2024 Nevada data center investment would help meet demand for Google Cloud and AI innovations, and Henderson is Google’s Clark County campus [1][2].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"The Las Vegas Review-Journal reported Google’s Henderson site used roughly 352 million gallons of water in 2024, while Henderson sources about 90% of its water from the Colorado River via Lake Mead, which has endured more than 20 years of severe drought [1][2][3].","grid_note":"NV Energy and Google agreed to a Nevada deal including 350 MW of solar and up to 280 MW of energy storage; statewide analysis estimates 12 data center projects at about 5,900 MW of demand; a facility listing cites ~60 MW capacity for the Henderson campus [1][2][3].","citations":[{"title":"Henderson considers data center pause amid construction ...","url":"https://thenevadaindependent.com/article/henderson-considers-data-center-pause-amid-construction-boom-across-clark-county"},{"title":"Southern Nevada data centers used a ton of water in 2024. ...","url":"https://www.reviewjournal.com/local/local-las-vegas/southern-nevada-data-centers-used-a-ton-of-water-in-2024-heres-how-3397994/"},{"title":"Water Source | Henderson, NV","url":"https://www.cityofhenderson.com/government/departments/utility-services/water-quality/water-source"},{"title":"Where Your Water Comes From","url":"https://www.snwa.com/water-resources/where-water-comes-from/"},{"title":"Google to spend $400 million to expand Nevada data centers","url":"https://thenevadaindependent.com/article/google-to-spend-400-million-to-expand-nevada-data-centers"}],"runId":"srun_c0e944bd89584b540f471069fdf9575d","classifiedAt":"2026-07-02T22:55:53.609Z"},"911":{"community_note":"No facility-specific organized opposition was found; Box Elder County instead imposed a 180-day moratorium on new data centers in 2026.","water_impact":"moderate","ai_evidence":"Hyperscale build-to-suit (80 MW) at West Jordan [1] with campus infrastructure marketed for high‑density GPU liquid‑cooling via DeltaFlow loops [4], but no public announcement of a named AI tenant or GPU supercluster at SLC‑03.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Operator says closed‑loop, waterless cooling at the campus saves millions of gallons annually; no site‑specific metered consumption was found.","grid_note":"80‑MW facility at a Rocky Mountain Power–served campus; the utility is using ‘Operation Gigawatt’ agreements under Utah’s large‑load framework to manage growing data‑center demand.","citations":[{"title":"Box Elder County approves moratorium on future data ...","url":"https://www.sltrib.com/news/2026/06/10/box-elder-county-consider/"},{"title":"Advanced Data Center Cooling","url":"https://aligneddc.com/cooling-innovation/"},{"title":"Thirsty data centers would have to report water use under ...","url":"https://utahnewsdispatch.com/2025/11/21/data-centers-would-have-to-report-water-use-utah-bill/"},{"title":"Blackstone loans Aligned $600 million for Utah data center","url":"https://www.datacenterdynamics.com/en/news/blackstone-loans-aligned-600-million-for-utah-data-center/"},{"title":"Utah is taking a different approach to new data center load","url":"https://www.latitudemedia.com/news/utah-is-taking-a-different-approach-to-new-data-center-load/"}],"runId":"srun_c0e944bd89584b54c99f2ad851fe3f82","classifiedAt":"2026-07-02T22:55:53.609Z"},"912":{"community_note":"No organized opposition specific to SLC‑05 was identified in West Jordan records; a June 24, 2025 city presentation emphasized that West Jordan attracts data centers, with no facility‑specific objections noted.","water_impact":"moderate","ai_evidence":"No SLC‑05‑specific AI tenant or GPU supercluster has been publicly named; the facility is a 72 MW, 450,000‑SF build and part of an “AI‑ready” Salt Lake campus, while Aligned’s Lambda GPU deployment was announced for DFW, not SLC.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Aligned used 47.4 million gallons at its West Jordan operations over a one‑year period in the Great Salt Lake basin [5].","grid_note":"72 MW critical load; Utah’s SB132 revises service obligations for ≥100 MW “large loads,” and Rocky Mountain Power’s Operation Gigawatt targets serving data center growth and grid resilience [1][6][7].","citations":[{"title":"THE CITY OF WEST JORDAN COMMITTEE OF THE ...","url":"https://www.utah.gov/pmn/files/1289075.pdf"},{"title":"Can you build data centers in a desert without draining ... - Grist","url":"https://grist.org/technology/utah-data-center-water-supply-meta-novva/"},{"title":"Aligned Energy (SLC-5)","url":"https://jtmagen.com/project/aligned-energy-slc-5/"},{"title":"Scalable & Adaptive Data Centers in Salt Lake City, Utah","url":"https://aligneddc.com/salt-lake-city-data-centers/"},{"title":"Aligned and Lambda Partner to Power Next-Generation AI ...","url":"https://aligneddc.com/press-release/aligned-and-lambda-partner-to-power-next-generation-ai-infrastructure-6/"}],"runId":"srun_c0e944bd89584b5483f7470b9893fab3","classifiedAt":"2026-07-02T22:55:53.609Z"},"913":{"community_note":"Some concern, but no active opposition: state Rep. Jill Koford and advocates pushed water-use transparency for large data centers, culminating in Utah’s HB 76 in 2026 requiring public reporting, and no Eagle Mountain–specific lawsuit or moratorium was identified [4][5][2].","water_impact":"moderate","ai_evidence":"No site-specific disclosures confirm GPU superclusters or AI training/inference clusters at Eagle 2; Meta describes the facility as part of its global infrastructure for Meta services [6][7].","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"The campus withdrew more than 35 million gallons in 2024 (~96,000 gallons/day annualized), with cooling water now reused to irrigate Cory Wride Memorial Park via the city system in a high-stress Utah context [1][3].","grid_note":"Rocky Mountain Power serves large loads under Utah SB 132 and related utility policies, Building 2 is listed at 48 MW, and air permits show extensive diesel backup generation as Utah advances Operation Gigawatt to support data center growth [8][11][10][9][13].","citations":[{"title":"Utah lawmakers pass water reporting requirement for large ...","url":"https://kslnewsradio.com/business-economy/water-reporting-data-centers/2287583/"},{"title":"HB 76 Data Center Water Transparency Amendments","url":"https://le.utah.gov/~2026/bills/static/HB0076.html"},{"title":"Can Utah become a data center hub without draining its ...","url":"https://greatsaltlakenews.org/latest-news/salt-lake-tribune/can-utah-become-a-data-center-hub-without-draining-its-water-supply"},{"title":"Can you build data centers in a desert without draining ... - Grist","url":"https://grist.org/technology/utah-data-center-water-supply-meta-novva/"},{"title":"Datacenter water now re-used for Wride park grass","url":"https://eaglemountain.gov/datacenter-water-now-re-used-for-wride-park-grass/"}],"runId":"srun_c0e944bd89584b543e4f617ad4dfe844","classifiedAt":"2026-07-02T22:55:53.609Z"},"914":{"community_note":"No organized opposition identified; coverage raises concerns about water use and drought/Great Salt Lake impacts, but no site-specific lawsuits or formal opposition campaigns were found.","water_impact":"moderate","ai_evidence":"Meta describes Eagle Mountain as part of its global infrastructure and does not disclose site-specific AI/GPU clusters; Meta’s AI cluster announcements do not name Eagle Mountain as a deployment site.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Reporting says the Eagle Mountain campus withdrew more than 35 million gallons in 2024, with local coverage emphasizing drought/Great Salt Lake concerns.","grid_note":"Building 5 is listed at 48 MW; Rocky Mountain Power has proposed a 45‑mile, 345‑kV line to the Mercer Substation serving the area, and added a solar project on behalf of Facebook for the Eagle Mountain data center.","citations":[{"title":"Can you build data centers in a desert without draining ... - Grist","url":"https://grist.org/technology/utah-data-center-water-supply-meta-novva/"},{"title":"Can Utah become a data center hub without draining its ...","url":"https://greatsaltlakenews.org/latest-news/salt-lake-tribune/can-utah-become-a-data-center-hub-without-draining-its-water-supply"},{"title":"Can you build data centers in a desert without draining ... - Grist","url":"https://grist.org/technology/utah-data-center-water-supply-meta-novva/"},{"title":"Meta's Eagle Mountain Data Center","url":"https://datacenters.atmeta.com/asset/eagle-mountain-data-center-sheet/"},{"title":"Can Utah become a data center hub without draining its ...","url":"https://greatsaltlakenews.org/latest-news/salt-lake-tribune/can-utah-become-a-data-center-hub-without-draining-its-water-supply"}],"runId":"srun_c0e944bd89584b54f8a77badac5adfd9","classifiedAt":"2026-07-02T22:55:53.609Z"},"915":{"community_note":"Water-use transparency and consumption at the Eagle Mountain campus have drawn concern from local reporting, but no organized opposition or litigation targeting Meta Eagle 6 was identified.","water_impact":"moderate","ai_evidence":"Facility is a 99 MW Meta-operated building brought online in 2025, with no site-specific AI cluster disclosures; Meta’s GPU announcements describe deployments across its data centers generally, without naming Eagle Mountain or Building 6.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Eagle Mountain’s campus withdrew more than 35 million gallons in 2024 (~96,000 gallons/day annualized), in a drought-stressed basin, while using direct evaporative cooling with water reuse to limit consumption.","grid_note":"Building 6 is 99 MW within a nearly 300 MW campus, with the 685.3 MWdc Faraday Solar project under a 20-year PPA to supply the Eagle Mountain data center.","citations":[{"title":"Can Utah become a data center hub without draining its ...","url":"https://greatsaltlakenews.org/latest-news/salt-lake-tribune/can-utah-become-a-data-center-hub-without-draining-its-water-supply"},{"title":"City Council Meeting • Agendas & Minutes • CivicClerk","url":"https://eaglemountainut.portal.civicclerk.com/event/498/files"},{"title":"Can you build data centers in a desert without draining ... - Grist","url":"https://grist.org/technology/utah-data-center-water-supply-meta-novva/"},{"title":"Take a tour of our data center in Eagle Mountain, Utah","url":"https://tech.facebook.com/engineering/2021/8/eagle-mountain-data-center/"},{"title":"Meta Eagle Mountain - Building 6","url":"https://cleanview.co/data-centers/utah/3085/meta-eagle-mountain---building-6"}],"runId":"srun_c0e944bd89584b54b2ff941c7aff7536","classifiedAt":"2026-07-02T22:55:53.609Z"},"916":{"community_note":"No organized opposition or litigation was found; DEQ permitting shows routine small‑source status and generator approvals without recorded public objections [1][2].","water_impact":"low","ai_evidence":"Local media list Oracle’s West Jordan campus among “AI data centers” in West Jordan [6], and Oracle’s Database@Google Cloud is available in the Salt Lake City region [8]; however, project sources describe a modular, virtualized Oracle facility and no source ties GPU superclusters or liquid‑cooling retrofits to West Jordan [7].","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Air-side economizers/hot‑aisle containment leverage Utah’s dry climate, and an engineering note references a “Data Center Water Recycling Plant” at the West Jordan site; no gallons/day or discharge data were found [4][5].","grid_note":"No public MW load or Rocky Mountain Power upgrade filings were located; coverage notes the $300 million project resuming construction without grid details [10].","citations":[{"title":"Laserfiche WebLink - Utah.gov","url":"https://lf-public.deq.utah.gov/WebLink/DocView.aspx?id=582523&dbid=0&repo=Public"},{"title":"DAQ-2025-005030 - Laserfiche WebLink - Utah.gov","url":"https://lf-public.deq.utah.gov/WebLink/DocView.aspx?id=611988&dbid=0&repo=Public"},{"title":"Oracle Breaks Ground on Utah Project","url":"https://www.datacenterknowledge.com/operations-and-management/oracle-breaks-ground-on-utah-project"},{"title":"Tracking where AI data centers are being built in Utah","url":"https://www.abc4.com/news/digital-exclusives/tracking-ai-data-centers-utah-map/"},{"title":"Oracle resumes construction of Utah data center - DCD","url":"https://www.datacenterdynamics.com/en/news/oracle-resumes-construction-of-utah-data-center/"}],"runId":"srun_c0e944bd89584b546d57ae4fde7d4f07","classifiedAt":"2026-07-02T22:55:53.609Z"},"918":{"community_note":"Local news raised questions over water use at QTS Eagle Mountain, but no organized opposition or lawsuits were reported; the city publicly celebrated the project’s progress.","water_impact":"moderate","ai_evidence":"Public materials describe a hyperscale colocation campus (~28 data halls, ~300 MW) with no disclosed GPU superclusters or AI-specific tenants.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"QTS cites closed-loop cooling that “does not consume water for cooling” with a one-time initial fill per building and limited monthly humidification/domestic use, while separate reporting says the Eagle Mountain campus withdrew more than 35 million gallons in 2024 in a drought-prone region.","grid_note":"Roughly a ~300 MW campus in a region where Rocky Mountain Power faces capacity constraints, with more than 400 MW of new transmission targeted to the Eagle Mountain area by 2028.","citations":[{"title":"Questions grow over water use at massive QTS Data ...","url":"https://kutv.com/news/utah-water/questions-grow-over-water-use-at-massive-qts-data-center-in-eagle-mountain"},{"title":"QTS Topping Out Ceremony | Eagle Mountain City","url":"https://eaglemountain.gov/eagle-mountain-city-celebrates-major-milestone-with-qts-topping-out-ceremony/"},{"title":"Eagle Mountain City, Utah - Data Centers","url":"https://q.com/data-centers/eagle-mountain/"},{"title":"Can you build data centers in a desert without draining ... - Grist","url":"https://grist.org/technology/utah-data-center-water-supply-meta-novva/"},{"title":"Questions grow over water use at massive QTS Data ...","url":"https://kutv.com/news/utah-water/questions-grow-over-water-use-at-massive-qts-data-center-in-eagle-mountain"}],"runId":"srun_c0e944bd89584b5427afc8be8f7c00d0","classifiedAt":"2026-07-02T22:55:53.609Z"},"919":{"community_note":"Some concern over energy policy and power sourcing has been reported locally, but city communications emphasize benefits and no organized legal opposition is evident.","water_impact":"low","ai_evidence":"Listings characterize QTS Eagle Mountain II as a hyperscale build with plans for over 650 MW of critical power; no public disclosures confirm AI training clusters or AI-specific tenants.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Closed-loop cooling that “does not consume water for cooling” is planned, while media note QTS’s “big water promises” and growing questions amid Utah’s drought context.","grid_note":"Planned at over 650 MW critical power, with Utah SB132 defining ≥100 MW as “large loads” and Rocky Mountain Power’s Operation Gigawatt facilitating data-center expansion; permitting references 248 new emergency engine generators.","citations":[{"title":"Powering Progress or Fueling Controversy? Eagle ...","url":"https://cedarvalleysentinel.com/local-government/city-government-2025/powering-progress-or-fueling-controversy-eagle-mountains-energy-code-changes-spark-debate/"},{"title":"QTS Topping Out Ceremony | Eagle Mountain City","url":"https://eaglemountain.gov/eagle-mountain-city-celebrates-major-milestone-with-qts-topping-out-ceremony/"},{"title":"Eagle Mountain City, Utah - Data Centers","url":"https://q.com/data-centers/eagle-mountain/"},{"title":"Questions grow over water use at massive QTS Data ...","url":"https://kutv.com/news/utah-water/questions-grow-over-water-use-at-massive-qts-data-center-in-eagle-mountain"},{"title":"Eagle Mountain 193-acre data center campus is set to be ...","url":"https://utahnewsdispatch.com/2026/04/17/eagle-mountain-193-acre-data-center-campus-is-set-to-be-done-this-year-with-big-water-promises/"}],"runId":"srun_c0e944bd89584b54e207e2e10ec30fb5","classifiedAt":"2026-07-02T22:55:53.906Z"},"920":{"community_note":"Eagle Mountain’s Planning Commission recommended denial of zoning amendments to allow new energy sources for data centers in Jan 2025 amid debate; no Pony Express–specific lawsuit or organized opposition was found.","water_impact":"unknown","ai_evidence":"Public listings show a planned 225-acre, 120 MW campus within the Eagle Mountain RTI overlay and next to Meta, Google, and QTS; there are no disclosed GPU cluster deployments or AI-tenant announcements.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No Pony Express–specific water figure was found; nearby context shows Meta withdrew >35M gallons in 2024, the city reuses data center cooling water for irrigation, and QTS advertises closed-loop systems that do not consume water once filled.","grid_note":"Planned at 120 MW with Tract coordinating for >400 MW via new transmission by 2028, and Utah SB 132 treats ≥100‑MW customers as large loads with different service rules.","citations":[{"title":"Planning Commission recommends denial of zoning ...","url":"https://eaglemountain.gov/planning-commission-recommends-denial-of-zoning-changes-for-energy-generation/"},{"title":"Powering Progress or Fueling Controversy? Eagle ...","url":"https://cedarvalleysentinel.com/local-government/city-government-2025/powering-progress-or-fueling-controversy-eagle-mountains-energy-code-changes-spark-debate/"},{"title":"Eagle Mountain Planning Commission balks at ordinance ...","url":"https://www.heraldextra.com/news/local/2025/jan/16/eagle-mountain-planning-commission-balks-at-ordinance-revisions-to-allow-new-energy-sources/"},{"title":"Can you build data centers in a desert without draining ... - Grist","url":"https://grist.org/technology/utah-data-center-water-supply-meta-novva/"},{"title":"Datacenter water now re-used for Wride park grass","url":"https://eaglemountain.gov/datacenter-water-now-re-used-for-wride-park-grass/"}],"runId":"srun_c0e944bd89584b549c5fff50bc4f441a","classifiedAt":"2026-07-02T22:55:53.906Z"},"921":{"community_note":"No organized opposition specific to Tract Pole Canyon was found; the site sits in Eagle Mountain’s RTI by‑right industrial zoning, while regional discussion centers on data‑center water use (e.g., QTS) and a separate Rocky Mountain Power transmission line proposal.","water_impact":"unknown","ai_evidence":"Positioned as a hyperscale/wholesale campus without public disclosures of GPU superclusters or named AI tenants; industry trackers list 1,700 MW planned capacity.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No site-specific water-consumption or cooling details were located; regional reporting highlights water scrutiny (Meta withdrawals; QTS closed-loop commitments) and some reuse initiatives in Eagle Mountain.","grid_note":"Planned at very large scale (listed 1,700 MW), with 400+ MW targeted via new transmission by 2028 and a proposed 45‑mile 345 kV line to Mercer; Utah’s SB132/Operation Gigawatt framework applies to such large-load interconnections.","citations":[{"title":"Industrial Development","url":"https://eaglemountain.gov/eagle-mountain-economic-development/industrial-development/"},{"title":"Pole Canyon","url":"https://eaglemountain.gov/wp-content/uploads/2024/10/EMPole-Canyon-Business-Park-1.pdf"},{"title":"Rocky Mountain Power's New Transmission Line Proposal","url":"https://cedarvalleysentinel.com/infrastructure-services/energy-2025/rocky-mountain-powers-new-transmission-line-proposal-what-it-means-for-eagle-mountain/"},{"title":"Eagle Mountain 193-acre data center campus is set to be ...","url":"https://utahnewsdispatch.com/2026/04/17/eagle-mountain-193-acre-data-center-campus-is-set-to-be-done-this-year-with-big-water-promises/"},{"title":"Questions grow over water use at massive QTS Data ...","url":"https://kutv.com/news/utah-water/questions-grow-over-water-use-at-massive-qts-data-center-in-eagle-mountain"}],"runId":"srun_c0e944bd89584b5456b8198397ab441b","classifiedAt":"2026-07-02T22:55:53.906Z"},"922":{"community_note":"No organized opposition or permit challenges specific to the data center were found; local coverage centers on View 78 apartments, not this facility.","water_impact":"unknown","ai_evidence":"Marketed as hyperscale/wholesale (32 MW initial, expandable to 160 MW); no named AI tenant or GPU deployment publicly reported.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No facility-specific gallons/day, water source, or discharge information was found in the provided sources.","grid_note":"Phase 1 is 32 MW with an expandable campus marketed to 160 MW; Utah SB132 defines 'large loads' as 100+ MW within five years, triggering special utility treatment.","citations":[{"title":"Midvale City Council approves high-density View 78 ...","url":"https://www.midvalejournal.com/2026/01/15/560660/midvale-city-council-approves-high-density-view-78-apartments"},{"title":"Hyperscale Data Center Development Program and Project ...","url":"https://cirrusds.com/"},{"title":"Midvale, UT Data Center Campus - CirrusDS","url":"https://cirrusds.com/midvale-ut-campus.php"},{"title":"Cirrus Data Services plans 160MW campus in Salt Lake City","url":"https://www.datacenterdynamics.com/en/news/cirrus-data-services-plans-160mw-campus-in-salt-lake-city/"},{"title":"CirrusDS View 78 Campus Data Center in Salt Lake City","url":"https://www.datacentermap.com/usa/utah/salt-lake-city/cirrusds-view78/"}],"runId":"srun_c0e944bd89584b54111033f2a8081abc","classifiedAt":"2026-07-02T22:55:53.906Z"},"931":{"community_note":"No organized, facility-specific opposition; Seattle and Renton moratorium discussions target new data centers generally and do not mention 1300 SW 7th St/Suite 112.","water_impact":"unknown","ai_evidence":"Listings describe the facility as a WORLDLINK/Pacific Colocation site offering colocation services, with no references to GPU clusters or AI tenants.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No gallons/day or source reported; listing mentions hot/cold-aisle air cooling, suggesting no evaporative or liquid systems are in use.","grid_note":"Approx. 1 MW load with on-site diesel generator backup; no site-specific utility upgrades or rate-case impacts identified.","citations":[{"title":"Councilmembers introducing moratorium on data centers ...","url":"https://council.seattle.gov/2026/04/30/councilmembers-introducing-moratorium-on-data-centers-in-seattle/"},{"title":"Renton City Council sets AI data center moratorium in motion","url":"https://www.rentonreporter.com/2026/06/15/renton-city-council-sets-ai-data-center-ban-in-motion/"},{"title":"WORLDLINK - Updated June 2026 - 1300 SW 7th St ...","url":"https://www.yelp.com/biz/worldlink-tukwila"},{"title":"WORLDLINK Seattle South Data Center","url":"https://baxtel.com/data-center/worldlink-seattle-south"},{"title":"Pacific Internet South Datacenter in Seattle (1 MW)","url":"https://www.datacentermap.com/usa/washington/seattle/worldlink-south-datacenter/"}],"runId":"srun_c0e944bd89584b54cb684c2535d0e9c1","classifiedAt":"2026-07-02T22:55:53.906Z"},"936":{"community_note":"","water_impact":"unknown","ai_evidence":"Public reports describe Redmond Ridge 1 as a purpose-built data lab consolidating internal R&D/research-unit servers, not an AI GPU facility [1][2].","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"","grid_note":"A facility profile lists Redmond Ridge 1 as a 57,000‑sq‑ft data center built in July 2009; no facility‑specific reporting was found on PSE grid strain, new gen/transmission, curtailment, or ratepayer impacts.","citations":[{"title":"Microsoft Redmond Ridge Data Center","url":"https://baxtel.com/data-center/microsoft-redmond-ridge"},{"title":"What's that sound? It's Mount Pleasant's new AI data center","url":"https://www.youtube.com/watch?v=gc5XZJfF0kQ"},{"title":"Redmond Data Center","url":"https://www.colocationnorthwest.com/data-centers/redmond"},{"title":"Noise from data center near home","url":"https://www.facebook.com/groups/1234717441669661/posts/1364938605314210/"},{"title":"Why aren't we discussing data center noise pollution?","url":"https://www.facebook.com/groups/2414453065623673/posts/2455094384892874/"}],"runId":"srun_c0e944bd89584b5485c06694b1ceed9e","classifiedAt":"2026-07-02T22:55:53.906Z"},"942":{"community_note":"No organized site-specific opposition was identified; New Albany reports only four data-center noise complaints since 2015 while advocacy groups note resident concerns in Licking County, with no major organized movement currently targeting this facility.","water_impact":"unknown","ai_evidence":"Public reporting around the planning and groundbreaking described COL-1 with sparse details and did not identify AI/GPU clusters, tenants, or cooling specifics.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day or water-source figures were disclosed for COL-1; central‑Ohio reporting says data‑center water use is under scrutiny by policymakers and regulators.","grid_note":"AEP Ohio warned that over 13 GW of new data‑center demand in central Ohio hinges on a still‑unapproved Indiana‑to‑central‑Ohio transmission line that may not arrive until 2031, indicating upgrade and curtailment risk.","citations":[{"title":"Ohio's data center boom really started in New Albany. We ...","url":"https://www.news5cleveland.com/news/local-news/ohios-data-center-boom-really-started-in-new-albany-we-went-there-to-see-what-it-looks-like"},{"title":"New Albany & Licking County, Ohio - Ohio Data Centers","url":"https://stopohiodatacenters.org/licking-county"},{"title":"CyrusOne plans $150m data center in New Albany, Ohio","url":"https://www.datacenterdynamics.com/en/news/cyrusone-plans-150m-data-center-in-new-albany-ohio/"},{"title":"CyrusOne breaks ground on New Albany, Ohio data center","url":"https://www.datacenterdynamics.com/en/news/cyrusone-breaks-ground-on-new-albany-ohio-data-center/"},{"title":"CyrusOne plans $150m data center in New Albany, Ohio","url":"https://www.datacenterdynamics.com/en/news/cyrusone-plans-150m-data-center-in-new-albany-ohio/"}],"runId":"srun_c0e944bd89584b54401880c7c969249f","classifiedAt":"2026-07-02T22:55:53.906Z"},"944":{"community_note":"","water_impact":"unknown","ai_evidence":"ColoCrossing markets its LA1 site at 1200 W 7th St as AI/GPU compute-ready with high-density colocation and dedicated GPU server options, but there are no public disclosures of named AI tenants or large training clusters [1][2][3][4].","grid_impact":"low","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No public data on gallons/day, water source, or discharge issues specific to LA1/West7Center was found.","grid_note":"LA1 operates within West7Center, which lists generator plants totaling 16.9 MW and has been reported at 22.5 MW building-scale capacity; no LADWP upgrade or rate impacts tied to this site were found.","citations":[{"title":"West 7 Center in Los Angeles | Rising Realty Partners","url":"https://www.datacentermap.com/usa/california/los-angeles/the-garland-building/"},{"title":"Los Angeles Data Center","url":"https://www.colocrossing.com/datacenter/los-angeles-ca/"},{"title":"Michigan Residents Sue Data Center Over Constant Noise","url":"https://spectrumlocalnews.com/mi/michigan/news/2026/05/29/residents-sue-data-center-company-over-constant-noise--health-concerns"},{"title":"West 7 Center (1200 West 7th) Data Center","url":"https://baxtel.com/data-center/west-7-center-1200-west-7th"},{"title":"ColoCrossing - 11 Data Centers - See Locations and Details","url":"https://www.datacentermap.com/c/colocrossing/"}],"runId":"srun_c0e944bd89584b54fa709d36d0a95cf8","classifiedAt":"2026-07-02T22:55:53.906Z"},"948":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"","grid_note":"Capacity is published at 15.00 MW/149,100 sq ft and also 8.624 MW with Southern California Edison interconnection, plus 1 MW of onsite fuel-cell generation; no rate or transmission impacts were found [1][2][3].","citations":[{"title":"Csquare: LAX5-A Irvine Data Center","url":"https://www.datacenters.com/centersquare-lax5-a-irvine"},{"title":"Centersquare Data Center in Irvine, CA","url":"https://www.datacenters.com/centersquare-lax3-los-angeles-irvine-campus"},{"title":"Using diesel generators to power the AI revolution would ...","url":"https://www.theinvadingsea.com/2026/06/10/data-centers-ai-diesel-generators-air-pollution-particulate-matter-electricity-demand/"},{"title":"Centersquare Irvine, CA - LA2 Data Center","url":"https://marketplace.upstack.com/data-centers/evoque-dcs-irvine-la2"},{"title":"Evolving Our Approach to Data Center Cooling","url":"https://www.compassdatacenters.com/evolving-our-approach-to-data-center-cooling/"}],"runId":"srun_c0e944bd89584b54b4c8b759fdbba1cd","classifiedAt":"2026-07-02T22:55:53.906Z"},"955":{"community_note":"None found: no organized opposition, litigation, zoning fights, or notable noise/air-quality complaints tied to QTS Miami 1 DC1 surfaced in local/government/news searches as of 2026-07-02.","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific gallons/day (or WUE), water source, withdrawal, or discharge information is published in the cited facility listings [1]-[3].","grid_note":"Published specs list about 2 MW critical power with no public evidence of a dedicated new substation or transmission upgrade tied to this site [1]-[3].","citations":[{"title":"Community Files Lawsuit Over Stokes County Data Center ...","url":"https://southerncoalition.org/community-groups-residents-file-lawsuit-over-stokes-county-data-center-rezoning/"},{"title":"The lawsuit alleges residents have lost their ability to use ...","url":"https://www.facebook.com/wwmtnews/posts/the-lawsuit-alleges-residents-have-lost-their-ability-to-use-and-enjoy-their-pro/1457007383131613/"},{"title":"Residents File First-of-its-Kind Class Action Against Data ...","url":"https://www.thevinelandvoice.com/news/residents-file-first-of-its-kind-class-action-against-data-center-for-noise/article_efeabfa4-81f3-407e-86c8-e71b1aeab40a.html"},{"title":"Michigan Data Center Faces Class Action Lawsuit Over ...","url":"https://www.classaction.org/news/michigan-data-center-faces-class-action-lawsuit-over-alleged-failure-to-curb-excessive-noise-pollution"},{"title":"QTS Miami - AI infrastructure intelligence","url":"https://mlq.ai/data-centers/usa/florida/miami/qts-us-mia/"}],"runId":"srun_c0e944bd89584b546f20d1e896513552","classifiedAt":"2026-07-02T22:55:53.906Z"},"965":{"community_note":"Opposition led by the Stop Project Tango group and local parents/educators has staged a press conference and a property-owners lawsuit, and the county has postponed action on the project.","water_impact":"moderate","ai_evidence":"Media describe Project Tango as a 'hyperscale AI data center campus,' but no tenant, GPU supercluster, or workload details have been publicly disclosed.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"County planners capped potable water use at 100,000 gallons per day, and residents warn of stress to the local surficial aquifer/private wells in the Acreage.","grid_note":"The campus is just east of FPL’s 3,750 MW West County Energy Center, and opponents cite potential 'electricity costs' impacts.","citations":[{"title":"Stop the Palm Beach Data Center Project Tango","url":"https://www.facebook.com/groups/stopprojecttango/"},{"title":"Press conference in Loxahatchee opposes Project Tango ...","url":"https://cbs12.com/news/local/ai-data-center-local-florida-concerned-parents-educators-and-community-leaders-loxahatchee-palm-beach-county-news-press-conference-set-in-loxahatchee-to-oppose-project-tango-ai-data-center-protest-arden-community-the-acreage-westlake-lion-country-safari"},{"title":"Property owners sue over control of West Palm Beach AI ...","url":"https://www.wpbf.com/article/property-owners-sue-over-control-of-west-palm-beach-ai-data-center-site/71595948"},{"title":"Palm Beach County postpones huge AI data center after ...","url":"https://www.wlrn.org/government-politics/2025-12-10/project-tango-ai-data-center-palm-beach-county"},{"title":"Planners recommend approval of AI data center Project ...","url":"https://www.wptv.com/news/region-c-palm-beach-county/loxahatchee-acreage/palm-beach-county-planners-recommend-approval-of-controversial-project-tango-ai-data-center"}],"runId":"srun_c0e944bd89584b542978ea3b1e169643","classifiedAt":"2026-07-02T22:55:53.906Z"},"989":{"community_note":"Residents and Sierra Club Delaware oppose Project Washington over electric-rate impacts and pollution/noise from 516 diesel generators, and DNREC’s Coastal Zone Act prohibition was upheld by the state board on March 26, 2026.","water_impact":"low","ai_evidence":"Reports describe a 1.2 GW, 11‑building hyperscale campus and note data centers powering 'ever‑growing AI technology,' but there are no public announcements of GPU clusters, named AI tenants, or liquid‑cooling deployments; the FAQ specifies closed‑loop air cooling.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Closed‑loop air cooling with a one‑time ~600,000‑gallon fill; ongoing usage characterized as minimal by the project.","grid_note":"Planned 1,200 MW load—estimated at ~8.7 million MWh/year—has spurred Delaware lawmakers to advance bills requiring large data centers to shoulder electricity costs to protect ratepayers.","citations":[{"title":"Delaware City data center hits roadblocks","url":"https://whyy.org/articles/delaware-city-data-center-setback-environment/"},{"title":"Data Centers & DE","url":"https://www.sierraclub.org/delaware/data-centers"},{"title":"DNREC's decision to prohibit data center upheld by state ...","url":"https://www.delawareonline.com/story/news/local/2026/03/26/delaware-largest-data-center-proposal-takes-another-blow/89287953007/"},{"title":"Project Washington Frequently Asked Questions","url":"https://projwashington.com/frequently-asked-questions/"},{"title":"How much water do data centers use?","url":"https://whyy.org/articles/data-centers-water-usage/"}],"runId":"srun_c0e944bd89584b54e3d1044a1dc443f4","classifiedAt":"2026-07-02T22:55:53.906Z"},"998":{"community_note":"Residents in Columbiana and nearby communities raised organized opposition over water/power use, noise, and potential bill impacts at and after a Jan. 15, 2026 town hall, and the council later rejected a major property-tax abatement; no local lawsuit or moratorium was reported.","water_impact":"moderate","ai_evidence":"Cerebras Systems signed a 10-year, about $1.1B agreement for 40 MW at the Columbiana site, and the facility is described as supporting HPC and AI workloads.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Officials said the city cannot support water usage for all project phases; no gallons/day figures or aquifer/drought issues were cited.","grid_note":"Planned 55 MW campus with a 40 MW anchor in two phases (15 MW then 25 MW), using the legacy Grede Foundry substation under an Alabama Power agreement; no quantified ratepayer impact found.","citations":[{"title":"Columbiana Council Unanimously Rejects Major Tax ...","url":"https://abc3340.com/news/local/columbiana-council-unanimously-rejects-major-tax-break-for-proposed-data-center"},{"title":"Details on Columbiana data center revealed, town hall set ...","url":"https://www.cityofcolumbiana.com/home/news/details-columbiana-data-center-revealed-town-hall-set-jan-15"},{"title":"Columbiana updated its zoning rules to require data ...","url":"https://www.facebook.com/aldotcom/posts/columbiana-updated-its-zoning-rules-to-require-data-centers-to-meet-new-building/1299450025563225/"},{"title":"Details on Columbiana data center revealed, town hall set ...","url":"https://www.cityofcolumbiana.com/home/news/details-columbiana-data-center-revealed-town-hall-set-jan-15"},{"title":"Cerebras signs on for 40MW of capacity at Digi Power X ...","url":"https://www.datacenterdynamics.com/en/news/cerebras-signs-on-for-40mw-of-capacity-at-digi-power-x-data-center-in-alabama/"}],"runId":"srun_c0e944bd89584b549e291e9d669a79c9","classifiedAt":"2026-07-02T22:55:53.906Z"},"1002":{"community_note":"No organized opposition surfaced for the Huntsville site; local TV reported nearby residents cited quiet operation (WVTM, Apr. 17, 2025).","water_impact":"moderate","ai_evidence":"Official materials describe Huntsville as part of Meta’s global infrastructure supporting its technologies and services, with no Huntsville-specific reports of GPU superclusters, AI training/inference deployments, or liquid-cooling retrofits.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No public gallons/day figure found; Meta’s Huntsville info sheet highlights on-site water efficiency, and Meta is working toward being water positive by 2030.","grid_note":"Served within TVA’s system with dedicated solar projects and ongoing campus expansion/duct-bank work; local officials refuted outage-rumor claims and no related rate or curtailment impacts were confirmed.","citations":[{"title":"Huntsville residents near data campus cite quiet ...","url":"https://www.wvtm13.com/article/data-center-bessemer-huntsville-alabama-noise/64517561"},{"title":"Meta's Huntsville Data Center","url":"https://datacenters.atmeta.com/asset/huntsville-data-center-info-sheet/"},{"title":"Advancing Water Stewardship in Our Data Center Communities","url":"https://about.fb.com/news/2025/12/advancing-water-stewardship-in-metas-data-center-communities/"},{"title":"Facebook opens Huntsville, Alabama data center - DCD","url":"https://www.datacenterdynamics.com/en/news/facebook-opens-huntsville-alabama-data-center/"},{"title":"Meta Data Centers","url":"https://datacenters.atmeta.com/"}],"runId":"srun_c0e944bd89584b5458813b2c7e67f0c6","classifiedAt":"2026-07-02T22:55:53.906Z"},"1021":{"community_note":"No organized opposition was found; the only cited item is a Valley Air District enforcement update listing Cogent Communications Company LP at 233 W Voorman Ave for failing to submit the 2024 annual emissions inventory (status: procedural notice).","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific public evidence was found for cooling-water consumption, gallons/day, water source, wastewater discharge, or drought/aquifer impact.","grid_note":"No facility-specific public evidence was found for MW load, PG&E interconnection or service upgrades, new generation/transmission, ratepayer impacts, or curtailment risk.","citations":[{"title":"South Central Fresno Enforcement Update","url":"https://community.valleyair.org/media/grzdaekn/south-central-fresno-csc-2025-q3-enforcement-update.pdf"},{"title":"Service Locations","url":"https://cogentco.com/en/network/service-locations?action=search&continent=&country=&state=CA&metro=&site_type=CDC"},{"title":"Water-cooled NVIDIA GPU Servers for AI - Bizon-tech","url":"https://bizon-tech.com/gpu-servers-water-cooling?srsltid=AfmBOortzXROYGzj0_zsGZh4p5r6huVNXkLloPZpNxmXsfyOtUMeUUYw"},{"title":"PG&E says it won't let AI data centers raise Central Valley ...","url":"https://abc30.com/post/data-land-usa-pge-says-let-ai-centers-raise-central-valley-power-bills/18617812/"},{"title":"Why NVIDIA GPUs Need Liquid Cooling | The Rise of the ...","url":"https://www.youtube.com/watch?v=jr1ddzsJRqY"}],"runId":"srun_c0e944bd89584b5412d9557fe3e29ef7","classifiedAt":"2026-07-02T22:55:53.906Z"},"1023":{"community_note":"Local residents and watchdog media criticized the approval, but the City reports no appeals and lists STACK SVY03A as under construction.","water_impact":"unknown","ai_evidence":"No verifiable SVY03A-specific GPU cluster, AI tenant, or liquid-cooling retrofit was found; materials describe a wholesale data center build rather than a named AI deployment.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No public gallons/day or source-stress/discharge figures were found; materials reference site stormwater features but do not quantify cooling-water consumption.","grid_note":"Plans indicate roughly 76–77 MW capacity with 28 diesel emergency generators and an SPPE with PG&E; the CPUC later required changes to the PG&E–STACK agreement to increase ratepayer protection.","citations":[{"title":"Data Center Development Applications | City of Hayward","url":"https://www.hayward-ca.gov/business/for-developers/data-center-development-applications"},{"title":"Who Approved Hayward’s Largest Data Center?","url":"https://haywardherald.org/who-approved-haywards-largest-data-center/"},{"title":"SVY03A Data Center Campus - CEQAnet - CA.gov","url":"https://ceqanet.lci.ca.gov/2025030999"},{"title":"STACK Infrastructure SVY03A - Hayward","url":"https://www.datacentermap.com/usa/california/hayward/stack-infrastructure-svy03a/"},{"title":"STACK SVY03A Data Center Campus","url":"https://www.energy.ca.gov/powerplant/backup-generating-system/stack-svy03a-data-center-campus"}],"runId":"srun_c0e944bd89584b54cd316f8e551ad3c0","classifiedAt":"2026-07-02T22:55:53.906Z"},"1032":{"community_note":"Residents raised concerns at a May 19, 2026 Sierra County Board meeting about a rumored AI data center at 100 Railroad Ave, while officials said no permit applications had been filed.","water_impact":"unknown","ai_evidence":"Listed as a planned AI-focused NYGC Loyalton site with an 18 MW biomass-based primary energy source [1]; operator markets “enterprise-grade GPU cloud infrastructure powered by NVIDIA systems,” but no Loyalton-specific GPU deployment is confirmed [3].","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No public reporting identified Loyalton-specific cooling technology, gallons/day, water source stress, or discharge permits.","grid_note":"Onsite biomass in Loyalton and Liberty Utilities service suggest interconnection would proceed through CAISO studies; no Liberty-specific upgrade or rate-case evidence for this site was found.","citations":[{"title":"NYGC Loyalton Data Center | NewYork GreenCloud (10 MW)","url":"https://www.datacentermap.com/usa/california/loyalton/nygc-loyalton/"},{"title":"Liberty Home page - Residential - California Electric","url":"https://california.libertyutilities.com/verdi/residential"},{"title":"NewYork GreenCloud to launch biomass-powered AI ...","url":"https://www.bioenergy-news.com/news/17488/"},{"title":"Loyalton Biomass","url":"https://www.calbiomass.org/facilities/loyalton-biomass/"},{"title":"The Data Center Shuffle at Liberty Utilities","url":"https://gridium.com/liberty-ai-boom/"}],"runId":"srun_c0e944bd89584b54878989d150ca31c5","classifiedAt":"2026-07-02T22:55:53.906Z"},"1045":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"","grid_note":"No published MW load; this existing telecom/rack site notes 'emergency power,' and a directory only mentions proximity to substations, with no evidence of new grid upgrades or rate impacts.","citations":[{"title":"Sierra Morena Tower Data Center","url":"https://baxtel.com/data-center/sierra-morena-tower"},{"title":"Sierra Morena Tower, LLC - Palo Alto","url":"https://www.datacentermap.com/usa/california/palo-alto/sierra-morena-tower/"},{"title":"Backup Power Transfer Meter Program","url":"https://www.pge.com/en/outages-and-safety/outage-preparedness-and-support/general-outage-resources/backup-power-transfer-meter-program.html"},{"title":"How PG&E is leveraging its gas grid for AI load","url":"https://www.latitudemedia.com/news/how-pge-is-leveraging-its-gas-grid-for-ai-load/"},{"title":"Sierra Morena Tower – Helping You Reach New Heights","url":"https://sierramorenatower.com/"}],"runId":"srun_c0e944bd89584b5441e1a26078e55c4a","classifiedAt":"2026-07-02T22:55:53.906Z"},"1050":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Uses six 500-ton water-cooled chillers (3,000 tons total) with water-side economizers in a closed-loop design; no gallons/day figure reported.","grid_note":"Draws up to ~9 MW with 4+ MW critical and a dedicated on-site substation; no facility-specific grid strain or rate-case impacts reported.","citations":[{"title":"SMUD","url":"https://www.smud.org/"},{"title":"Station J substation - Sacramento","url":"https://www.smud.org/Corporate/About-us/Reliability/Station-J-substation"},{"title":"QTS Data Center in Sacramento California","url":"https://www.datacenters.com/qts-sacramento"},{"title":"Sacramento Municipal Utility District","url":"https://recurrentenergy.com/project/smud/"},{"title":"QTS Sacramento - AI infrastructure intelligence","url":"https://mlq.ai/data-centers/usa/california/sacramento/qts-us-sac/"}],"runId":"srun_c0e944bd89584b54fc39bcb30e58cccb","classifiedAt":"2026-07-02T22:55:53.906Z"},"1051":{"community_note":"None found; the facility operates under a SMAQMD Title V permit at 1200/1312 Striker Ave.","water_impact":"unknown","ai_evidence":"NTT markets Sacramento (including CA1) as carrier-neutral colocation with turn‑key infrastructure, and there are no facility‑specific announcements of GPU superclusters or AI tenants.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No public gallons/day or source disclosed for CA1; statewide rules leave the public largely in the dark on data center water use.","grid_note":"Approx. 12.6 MW IT load versus SMUD’s 2024 peak of 3,147 MW indicates a small share of system demand; no CA1‑specific grid upgrades or rate cases were identified.","citations":[{"title":"title v federal operating permit and smaqmd rule 201 ...","url":"https://www.airquality.org/StationarySources/Documents/PERMIT%202016-20-01%20final.pdf"},{"title":"Data centers are guzzling California's water. We have no ...","url":"https://calmatters.org/environment/water/2026/05/california-data-centers-water-transparency/"},{"title":"Sacramento data centers and colocation","url":"https://services.global.ntt/en-us/services-and-products/global-data-centers/global-locations/americas/sacramento-data-centers"},{"title":"Sacramento CA1 Data Center","url":"https://services.global.ntt/en-us/services-and-products/global-data-centers/global-locations/americas/sacramento-ca-1-data-center"},{"title":"Data Centers in Sacramento","url":"https://mlq.ai/data-centers/usa/california/sacramento/"}],"runId":"srun_c0e944bd89584b54b691d6c2090a33cc","classifiedAt":"2026-07-02T22:55:53.906Z"},"1083":{"community_note":"No facility-specific opposition found; a regional petition asked regulators to tighten oversight of data center diesel generators, not naming this facility, and it has been filed.","water_impact":"low","ai_evidence":"Listings describe a standard colocation campus with carrier options and do not cite GPU superclusters or AI-specific deployments.","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"No gallons/day reported; the facility uses close-coupled evaporative cooling relying on recycled water, and Santa Clara supplies recycled water for industrial cooling.","grid_note":"Approximate critical capacity is 8 MW, served by Silicon Valley Power.","citations":[{"title":"California Agency Urged to Protect Public Health ...","url":"https://biologicaldiversity.org/w/news/press-releases/california-agency-urged-to-protect-public-health-environment-from-data-center-diesel-generators-2026-04-22/"},{"title":"Environmental Stewardship","url":"https://q.com/the-qts-difference/environmental-stewardship/"},{"title":"Santa Clara Valley Water District - File #: 25-0434","url":"https://scvwd.legistar.com/LegislationDetail.aspx?ID=7405457&GUID=9DDD4486-D46A-462F-9025-96C2E72A67E9&FullText=1"},{"title":"Santa Clara - Data Centers","url":"https://q.com/data-centers/santa-clara/"},{"title":"QTS Santa Clara I | 2807 Mission College Boulevard, ...","url":"https://datacenterhawk.com/marketplace/providers/qts/2807-mission-college-boulevard/santa-clara-i"}],"runId":"srun_c0e944bd89584b5470e9f315b9ac77d1","classifiedAt":"2026-07-02T22:55:54.269Z"},"1086":{"community_note":"Santa Clara Citizens for Sensible Industry/California Unions for Reliable Energy appealed the 1111 Comstock mitigated negative declaration/approvals in 2020–21; the Planning Commission approved the project and the appeal went to Council, and no ongoing litigation was found.","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No gallons/day disclosed for SJC02; listings note Prime’s closed-loop cooling with near-zero water use, and local agencies (Valley Water/City) emphasize conservation amid recurring droughts.","grid_note":"SJC02’s 9 MW adds to SVP’s data-center-dominated load (~55%), as the utility undertakes about $450 million of system upgrades and recently implemented a 5% rate increase for critical infrastructure.","citations":[{"title":"Legislative Public Meetings","url":"https://santaclara.legistar.com/LegislationDetail.aspx?ID=4775197&GUID=20BCD7CB-0BC9-48BC-8149-AA139A676473&Options=&Search="},{"title":"Legislative Public Meetings","url":"https://santaclara.legistar.com/LegislationDetail.aspx?ID=4836599&GUID=6A205FD5-50BE-4362-8D79-413C3AB1BF34&Options=&Search="},{"title":"City planning decision on CoreSite SV9 Santa Clara ...","url":"https://www.datacenterdynamics.com/en/news/city-planning-decision-on-coresite-sv9-santa-clara-data-center-pushed-back/"},{"title":"Prime Data Centers Data Center in Santa Clara California","url":"https://www.datacenters.com/prime-prime-santa-clara-1111-comstock"},{"title":"Silicon Valley Data Centers","url":"https://primedatacenters.com/locations/silicon-valley/"}],"runId":"srun_c0e944bd89584b542b420da4af9640ce","classifiedAt":"2026-07-02T22:55:54.269Z"},"1087":{"community_note":"No SJC03-specific opposition was found; the City held a study session on the prevalence/impacts of data centers and local coverage highlights broader debates and fiscal context.","water_impact":"low","ai_evidence":"Prime lists SJC03 (2215 Martin) as an enterprise, single- or multi-tenant 9 MW facility with closed-loop/liquid cooling; no public announcements identify an AI GPU tenant or supercluster at this site.","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No gallons/day disclosed; SJC03 uses a closed air loop with liquid cooling, and the local water agency notes data centers use recycled water and low-water-use cooling.","grid_note":"At 9 MW, SJC03 adds load in a constrained SVP system where SVP plans upgrades for 24/7 data center loads, CAISO cites rapid load growth, and press reports say major upgrades won’t be complete until 2028.","citations":[{"title":"Legislative Public Meetings","url":"https://santaclara.legistar.com/LegislationDetail.aspx?ID=7404898&GUID=25408312-6834-469E-B545-48CCFFBD1814&Options=ID%7CText%7C&Search=Data+Center"},{"title":"Data Centers — Santa Clara's Third Largest General Fund ...","url":"https://www.svvoice.com/data-centers-santa-claras-third-largest-general-fund-revenue-generator/"},{"title":"Silicon Valley Portfolio","url":"https://primedatacenters.com/wp-content/uploads/2025/10/PDC_Silicon_Valley_TechSheets_SJC03.pdf"},{"title":"Santa Clara Valley Water District - File #: 25-0434","url":"https://scvwd.legistar.com/LegislationDetail.aspx?ID=7405457&GUID=9DDD4486-D46A-462F-9025-96C2E72A67E9&FullText=1"},{"title":"Silicon Valley Data Centers","url":"https://primedatacenters.com/locations/silicon-valley/"}],"runId":"srun_c0e944bd89584b54e59a27f7b0f848ef","classifiedAt":"2026-07-02T22:55:54.269Z"},"1090":{"community_note":"","water_impact":"unknown","ai_evidence":"Listed as a planned/future facility with no public tenant or GPU deployment; sponsor materials position Rowan for hyperscale, AI, and cloud customers but provide no Matterhorn-specific AI details [1][2].","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No facility-specific water use disclosed; Rowan says its data centers use fully closed‑loop water cooling with about 1–2M gallons added once and recirculated for more than a decade (Temple, TX example), not a verified Tracy figure [3].","grid_note":"No public MW load or interconnection details; the site is listed as a planned location at 19900 Byron Rd [4].","citations":[{"title":"Hotter Than a Hot Tub: The 45°C Breakthrough to Cool AI's ...","url":"https://blogs.nvidia.com/blog/liquid-cooling-ai-factories/"},{"title":"Rowan: Matterhorn, CA Data Center News","url":"https://baxtel.com/news/data-centers/rowan-matterhorn-ca"},{"title":"Rowan Cheung on Instagram: \"As AI chips consume more ...","url":"https://www.instagram.com/reel/DYPpmfBBgRX/"},{"title":"Dive into Different Liquid Cooling Methods for the GPU Era","url":"https://www.mirantis.com/blog/dive-into-liquid-cooling/"},{"title":"Rowan Digital Infrastructure | Hyperscale Data Center ...","url":"https://rowan.digital/"}],"runId":"srun_c0e944bd89584b549ff24006418cf648","classifiedAt":"2026-07-02T22:55:54.269Z"},"1096":{"community_note":"No PHX01-specific opponents or complaints were found; Phoenix enacted citywide data-center zoning controls in July 2025 amid concerns over power, water, noise, and fire risk, and separate Prop. 207 claims over those rules are ongoing citywide, not specific to PHX01.","water_impact":"moderate","ai_evidence":"PHX01 is planned at ~140,000 sq ft and 20 MW in Phoenix [1], and the 5C/Hypertec combination promotes building “AI factories,” signaling AI‑focused infrastructure [2].","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No PHX01 gallons/day reported; the facility highlights adiabatic trim cooling, Phoenix requires projects over 250,000 gallons/day to file conservation plans, and regional cooling demand is projected to rise ~870% from 385M gal/yr.","grid_note":"APS reports ~350 MW of current data-center load and has proposed >45% rate increases for extra-large users, while state policy requires large-load/data-center developers to bear certain new-infrastructure costs.","citations":[{"title":"City of Phoenix Updates Zoning to Safeguard Health and ...","url":"https://www.phoenix.gov/newsroom/pdd-news/city-of-phoenix-updates-zoning-to-safeguard-health-and-safety-as.html"},{"title":"Item 108-7.1.25 Data Center Memo Final.pdf","url":"https://www.phoenix.gov/content/dam/phoenix/pddsite/documents/text-amendments/Item%20108-7.1.25%20Data%20Center%20Memo%20Final.pdf"},{"title":"Cities May Have to Pay for Data Center Zoning Restrictions ...","url":"https://azbex.com/legislation-issues/cities-may-have-to-pay-for-data-center-zoning-restrictions-under-state-law/"},{"title":"5CDC Phoenix - PHX01 Data Center (18 MW)","url":"https://www.datacentermap.com/usa/arizona/phoenix/5cdc-phoenix-phx01/"},{"title":"AI data center water use collides with drought in the West","url":"https://qz.com/data-center-water-use-drought-american-west-051326"}],"runId":"srun_c0e944bd89584b545a4a5a49b9a0b7fd","classifiedAt":"2026-07-02T22:55:54.269Z"},"1097":{"community_note":"Citywide concerns over power, water, noise, and safety led Phoenix to update data‑center zoning; ABC15 reports Aligned filed Prop 207 claim/waiver notices after the change, with no PHX08‑specific lawsuits or complaints found.","water_impact":"low","ai_evidence":"PHX08 is listed under construction with 180 MW capacity and Aligned promotes AI/GPU‑ready infrastructure and an Advanced Cooling Lab for next‑gen GPUs, but no PHX08‑specific AI tenant or GPU supercluster has been announced.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No PHX08-specific gallons/day published; Aligned touts tens of millions of gallons saved per data center and reports state its new facilities from 2024 onward use zero‑water cooling.","grid_note":"Baxtel lists PHX08 at 180 MW; APS reports about 350 MW of current data‑center load and is updating data‑center rates, with state regulators holding large‑load workshops.","citations":[{"title":"City of Phoenix Updates Zoning to Safeguard Health and ...","url":"https://www.phoenix.gov/newsroom/pdd-news/city-of-phoenix-updates-zoning-to-safeguard-health-and-safety-as.html"},{"title":"Phoenix negotiates with developers after data center ...","url":"https://www.abc15.com/news/business/phoenix-negotiates-with-developers-after-data-center-zoning-rules-trigger-claims"},{"title":"Phoenix Planning Commission OKs data center restrictions","url":"https://www.ahwatukee.com/news/phoenix-planning-commission-oks-data-center-restrictions/article_600071f3-058f-48e5-a1fe-15ee9961eacc.html"},{"title":"Sustainability as a Priority","url":"https://aligneddc.com/sustainability/"},{"title":"Data Centers Transforming Buckeye Community Plans","url":"https://www.circleofblue.org/2025/supply/data-centers-a-small-but-growing-factor-in-arizonas-water-budget/"}],"runId":"srun_c0e944bd89584b5414a274f8198aed22","classifiedAt":"2026-07-02T22:55:54.269Z"},"1098":{"community_note":"Policy pushback is active: Phoenix tightened data-center zoning rules and Arizona paused new tax incentives, with reporting that cities may face Prop. 207 takings claims; no PHX09-specific neighborhood lawsuits were found.","water_impact":"moderate","ai_evidence":"The site at 3151 W Behrend Dr is tied to Aligned Data Centers [13], and Aligned highlights a Phoenix-based Advanced Cooling Lab for next‑gen GPUs and status as an NVIDIA DGX‑Ready partner [11][12]; no PHX09‑specific GPU tenant or deployment has been publicly announced.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No PHX09 gallons/day reported; Aligned cites near‑zero WUE via closed‑loop chilled water in Phoenix, but the Southwest faces limited water supplies and growth‑driven stress.","grid_note":"APS reports data centers use about 350 MW and roughly 5% of peak demand in 2025, and it is updating data‑center rates to align costs and protect other customers.","citations":[{"title":"City of Phoenix Updates Zoning to Safeguard Health and ...","url":"https://www.phoenix.gov/newsroom/pdd-news/city-of-phoenix-updates-zoning-to-safeguard-health-and-safety-as.html"},{"title":"Arizona's data center moratorium is only the beginning","url":"https://azcapitoltimes.com/news/2026/06/12/arizonas-data-center-moratorium-is-only-the-beginning/"},{"title":"Cities May Have to Pay for Data Center Zoning Restrictions ...","url":"https://azbex.com/legislation-issues/cities-may-have-to-pay-for-data-center-zoning-restrictions-under-state-law/"},{"title":"Scalable and Adaptive Data Centers in Phoenix, AZ | Aligned","url":"https://aligneddc.com/phoenix-data-centers/"},{"title":"Are data centers depleting the Southwest's resources?","url":"https://www.apmresearchlab.org/10x/data-centers-resource"}],"runId":"srun_c0e944bd89584b54cefa912b5c05a2d3","classifiedAt":"2026-07-02T22:55:54.269Z"},"1103":{"community_note":"Mesquite Canyon residents, including Taylor, opposed the C-1 Mesa/CyrusOne campus at the hearing, but the proposal advanced on a 4–3 vote.","water_impact":"unknown","ai_evidence":"Coverage describes a five-building, ~1.4M-sf hyperscale campus with no Mesa-specific AI/GPU tenant or training cluster disclosures; CyrusOne’s AI marketing is generic and not tied to this site.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No facility-specific water-use figure was found; Mesa enacted guardrails amid resident concerns, and Google’s Mesa campus opted for air cooling to reduce water consumption.","grid_note":"Plans include an on-site SRP switchyard and CyrusOne-owned substation, and SRP says new data centers should not raise residential rates, with broader grid upgrades underway to support Mesa’s tech load.","citations":[{"title":"Despite opposition, Mesa board OKs big data center | News","url":"https://www.themesatribune.com/news/despite-opposition-mesa-board-oks-big-data-center/article_1ef491b0-4b8c-11ef-8b1a-cb99887dca3d.html"},{"title":"Data center campuses move forward in Mesa","url":"https://www.abc15.com/news/business/data-center-campuses-move-forward-in-mesa"},{"title":"Mesa approves guardrails on data center growth | News","url":"https://www.themesatribune.com/news/mesa-approves-guardrails-on-data-center-growth/article_44a4139a-3181-4cda-a75e-53941a483891.html"},{"title":"Mesa Council to vote on data center controls","url":"https://www.aztechcouncil.org/news/mesa-council-to-vote-on-data-center-controls/"},{"title":"In lieu of water cooling, Google locks down renewables for ...","url":"https://www.latitudemedia.com/news/in-lieu-of-water-cooling-google-locks-down-renewables-for-mesa-data-center/"}],"runId":"srun_c0e944bd89584b548952ab5adb59a2e4","classifiedAt":"2026-07-02T22:55:54.269Z"},"1104":{"community_note":"City leaders approved new data center regulations amid growth concerns in Mesa; no Google‑Mesa–specific lawsuits or organized opposition located to date.","water_impact":"low","ai_evidence":"Public listings identify the Mesa site as a Google‑operated campus, but no Mesa‑specific disclosures of GPU/TPU superclusters, AI‑training clusters, third‑party AI tenants, or liquid‑cooling retrofits were found.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Air cooling was chosen in lieu of water cooling at Mesa, indicating minimal cooling‑water use.","grid_note":"SRP established dedicated infrastructure under Project Red Hawk to serve the Mesa data center campus.","citations":[{"title":"New data center regulations approved by Mesa leaders","url":"https://www.12news.com/article/news/local/valley/new-data-center-regulations-approved-by-mesa-leaders-arizona/75-db14238c-61cd-4f89-9cfa-f7759baa5cf3"},{"title":"Google Announces New Commitment To Arizona","url":"https://www.azcommerce.com/news-events/news/2023/9/google-announces-new-commitment-to-arizona/"},{"title":"Google Mesa - Phase 1 Data Center in Phoenix","url":"https://www.datacentermap.com/usa/arizona/phoenix/google-mesa-phase-1/"},{"title":"Google Data Centers: Homepage","url":"https://datacenters.google/"},{"title":"Project Red Hawk","url":"https://www.srpnet.com/grid-water-management/grid-management/improvement-projects/project-red-hawk"}],"runId":"srun_c0e944bd89584b5443aac58d749efe39","classifiedAt":"2026-07-02T22:55:54.269Z"},"1105":{"community_note":"No organized, Novva‑Mesa–specific opposition or litigation surfaced; the campus is moving through city design review near Warner & Ellsworth while Arizona hosts broader debates over data‑center incentives and impacts [9][10].","water_impact":"low","ai_evidence":"No source names an AI tenant or GPU supercluster; DCD only notes the campus will support high‑density, direct‑to‑chip liquid‑cooling deployments, which is AI‑ready but not confirmation of training/inference tenants [1][2].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Novva says Mesa will use water‑free cooling with rainfall capture and atmospheric‑water generation, projecting ~650M gallons/year savings versus evaporative systems; no facility‑specific gallons/day or groundwater draw is reported [3][4].","grid_note":"Planned at 300 MW on SRP, the campus will require high‑voltage service, and SRP states new data centers should not raise residential electric rates due to its cost‑allocation policies [2][8].","citations":[{"title":"City of Mesa - File #: DSN 24072","url":"https://mesa.legistar.com/LegislationDetail.aspx?ID=6823351&GUID=B35C2372-43EC-428D-BFBA-E042D78C6330&Options=&Search="},{"title":"Arizona's data center moratorium is only the beginning","url":"https://azcapitoltimes.com/news/2026/06/12/arizonas-data-center-moratorium-is-only-the-beginning/"},{"title":"Novva Data Centers Unveils 300-Megawatt Arizona Facility","url":"https://www.crn.com/news/data-center/2024/novva-data-centers-announces-300-mw-arizona-facility"},{"title":"Novva confirmed as behind Project Borealis ...","url":"https://www.datacenterdynamics.com/en/news/novva-confirmed-as-behind-project-borealis-data-center-campus-in-phoenix-arizona/"},{"title":"Novva Mesa Arizona","url":"https://cleanview.co/data-centers/arizona/800/novva-mesa-arizona"}],"runId":"srun_c0e944bd89584b54fe02de3c230e8b96","classifiedAt":"2026-07-02T22:55:54.269Z"},"1107":{"community_note":"No organized, facility-specific opposition was found; Goodyear updated general data‑center rules (e.g., noise studies within 500 feet of homes), with no dispute targeting Compass.","water_impact":"low","ai_evidence":"DCD reported the assets are 100% leased to four “investment‑grade hyperscale tenants,” and Compass characterized Goodyear as a hyperscale campus; no public GPU supercluster or AI‑tenant announcement was found for this site.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No Compass Goodyear water‑use figures were published; operator materials reference water‑free/hybrid cooling approaches to minimize evaporative use in arid regions.","grid_note":"APS‑served campus (~212 MW capacity) is part of a surge in large loads; APS proposed ~45% higher rates for extra‑large users and the ACC noted ~13.1 GW of large‑customer peak demand this year.","citations":[{"title":"Goodyear updates zoning rules for data centers, battery ...","url":"https://www.bizjournals.com/phoenix/news/2026/03/09/goodyear-az-data-center-bess-zoning.html"},{"title":"Goodyear moves to set rules for data centers as industry ...","url":"https://www.yourvalley.net/litchfield-park-independent/stories/goodyear-moves-to-set-rules-for-data-centers-as-industry-expands,669232"},{"title":"Evolving Our Approach to Data Center Cooling","url":"https://www.compassdatacenters.com/evolving-our-approach-to-data-center-cooling/"},{"title":"Compass Datacenters - 29 Data Centers - See Locations","url":"https://www.datacentermap.com/c/compass-datacenters/"},{"title":"Compass Datacenters looks to new tranch of ABS funding","url":"https://www.datacenterdynamics.com/en/news/compass-datacenters-looks-to-new-tranch-of-abs-funding/"}],"runId":"srun_c0e944bd89584b54b85af86f277278a7","classifiedAt":"2026-07-02T22:55:54.269Z"},"1108":{"community_note":"No DCX‑GYR1‑specific opposition or complaints found; the City publicly welcomed the project, while recent rulemaking addressed general design/noise/water issues citywide.","water_impact":"low","ai_evidence":"DCX describes GYR1 as purpose-built for HPC and AI/ML with 6 MW online at launch and expansion to 12+ MW, and directories list it as a 12 MW hyper-density colocation campus—no public proof of named GPU superclusters or specific AI tenants.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"Reportedly uses virtually no cooling water via a closed‑loop chilled water system; no gallons/day figures found.","grid_note":"Approx. 6 MW online, scalable to 12+ MW; site includes diesel backup generators; APS is revising extra‑high‑load tariffs and planning new generation for growing data‑center demand.","citations":[{"title":"DCX opens high-performance data center in Goodyear, Ariz.","url":"https://www.goodyearaz.gov/Home/Components/News/News/12504/32?date=20150318032500&npage=7&arch=1"},{"title":"Goodyear updates zoning rules for data centers, battery ...","url":"https://www.bizjournals.com/phoenix/news/2026/03/09/goodyear-az-data-center-bess-zoning.html"},{"title":"Goodyear moves to set rules for data centers as industry ...","url":"https://www.yourvalley.net/litchfield-park-independent/stories/goodyear-moves-to-set-rules-for-data-centers-as-industry-expands,669232"},{"title":"DCX-GYR1 Data Center","url":"https://www.dcx.us/data-centers/"},{"title":"Report: Goodyear 'air-cooled' AI data centers guzzling ...","url":"https://fhtimes.com/stories/report-goodyear-air-cooled-ai-data-centers-guzzling-unknown-millions-of-gallons-of-water,489771"}],"runId":"srun_c0e944bd89584b5472b3129e50bb46b0","classifiedAt":"2026-07-02T22:55:54.269Z"},"1109":{"community_note":"No organized opposition specific to PHX70 surfaced; concerns focus on water infrastructure/capacity and transparency, while a different Goodyear‑area proposal (not Microsoft) was withdrawn amid grassroots opposition.","water_impact":"high","ai_evidence":"Azure West US 3 (Arizona) is a live Azure region and Microsoft documentation lists region‑based availability for Azure OpenAI/Foundry models; PHX70 is marketed for high‑performance workloads like AI, but no public evidence shows a PHX70 training supercluster.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Estimated use ~56M gallons/year; interim wastewater discharge capped at 500,000 gpd with up to ~1.2M gpd allocated at build‑out; Microsoft agreed to pay $36M toward the 157th Ave WWTP expansion and to shift future buildings to air/low‑water cooling.","grid_note":"Reported campus load ~143 MW; APS proposed a 45% extra‑large‑user rate increase and cites ~10 GW of pending data‑center interconnection requests; Microsoft procures regional solar from Sun Streams 2.","citations":[{"title":"Are data centers depleting the Southwest's resources?","url":"https://www.apmresearchlab.org/10x/data-centers-resource"},{"title":"Microsoft, Goodyear Update Development Agreement","url":"https://azbex.com/local-news/microsoft-goodyear-update-development-agreement/"},{"title":"Developer pulls Goodyear-area data center application amid ...","url":"https://www.yourvalley.net/litchfield-park-independent/stories/developer-pulls-goodyear-area-data-center-application-amid-grassroots-municipal-opposition,506154"},{"title":"Are data centers depleting the Southwest's resources?","url":"https://www.apmresearchlab.org/10x/data-centers-resource"},{"title":"Microsoft agrees to make data centers air cooled amid ...","url":"https://www.aztechcouncil.org/microsoft-agrees-to-make-data-centers-air-cooled-amid-water-infrastructure-challenges-in-goodyear/"}],"runId":"srun_c0e944bd89584b542d0b2cc16aaa4fd5","classifiedAt":"2026-07-02T22:55:54.269Z"},"1110":{"community_note":"No organized opposition specific to Stream PHXA was found; Goodyear is moving to set local data-center rules (including around generator noise), and a separate Goodyear-area data-center application was pulled after opposition from nearby cities.","water_impact":"low","ai_evidence":"Marketed as a hyperscale, AI‑ready campus, but no public announcements of GPU superclusters, named AI tenants, or liquid‑cooling deployments at PHXA were found.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Planned closed-loop air cooling at PHXA; no published gallons/day or source details located.","grid_note":"Planned ~280 MW campus; APS proposed >45% rate increase for extra‑large users like data centers, and data centers already use about 350 MW from APS.","citations":[{"title":"Goodyear moves to set rules for data centers as industry ...","url":"https://www.yourvalley.net/litchfield-park-independent/stories/goodyear-moves-to-set-rules-for-data-centers-as-industry-expands,669232"},{"title":"Developer pulls Goodyear-area data center application amid ...","url":"https://www.yourvalley.net/litchfield-park-independent/stories/developer-pulls-goodyear-area-data-center-application-amid-grassroots-municipal-opposition,506154"},{"title":"Stream Data Centers set to build out remaining site in ...","url":"https://www.bizjournals.com/phoenix/news/2023/07/03/stream-data-centers-goodyear-phoenix-arizona.html"},{"title":"Cooling Without the Drain: How Closed-Loop Systems Cut ...","url":"https://blog.vantage-dc.com/2026/04/22/cooling-without-the-drain-how-closed-loop-systems-cut-day-to-day-water-use/"},{"title":"Phoenix Data Center - Stream Data Centers in Arizona","url":"https://www.streamdatacenters.com/locations/phoenix/"}],"runId":"srun_c0e944bd89584b54e7634970485d97ba","classifiedAt":"2026-07-02T22:55:54.269Z"},"1111":{"community_note":"Dozens of residents opposed the Hermosa Ranch/“Phoenix 4” data center at the Apr 17, 2024 Avondale Planning Commission hearing over height, noise/vibration, and blackout/heat-island worries; the project advanced and City Council approved rezoning/GPA in May 2024, with no lawsuits found [1][2].","water_impact":"low","ai_evidence":"QTS shows Phoenix 4 (Avondale) as in development and DCD reports QTS acquired ~200 acres for the site, but there are no named AI tenants or GPU supercluster announcements in these materials [1][2][3].","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"QTS says Phoenix 4 will use a water‑free cooling system, and hearing materials described low‑water technology with reduced water/wastewater versus prior zoning, but no gallons/day or discharge issues were disclosed [1][2].","grid_note":"Served by SRP and discussed as a large power user near existing SRP infrastructure, with SRP stating data centers were 441 MW (5.1%) of its 8,542‑MW 2025 summer peak; no Avondale‑specific MW, upgrade project, or rate case was identified [1][2].","citations":[{"title":"Apr 17, 2024 Planning Commission - Avondale, AZ","url":"https://avondaleaz.new.swagit.com/videos/303094"},{"title":"Avondale to get new data center in $246 million land sale. ...","url":"https://www.azcentral.com/story/news/local/southwest-valley/2024/07/26/avondale-to-get-data-center-150-jobs-in-246-million-land-sale/74506428007/"},{"title":"Phoenix 4 - Data Centers","url":"https://q.com/data-centers/phoenix-4/"},{"title":"Pioneering Water Efficiency and Sustainability in Data ...","url":"https://q.com/resources/pioneering-water-efficiency-and-sustainability-in-data-center-operations/"},{"title":"Apr 17, 2024 Planning Commission - Avondale, AZ","url":"https://avondaleaz.new.swagit.com/videos/303094"}],"runId":"srun_c0e944bd89584b54a1bb63a3efd2b0fb","classifiedAt":"2026-07-02T22:55:54.269Z"},"1112":{"community_note":"","water_impact":"moderate","ai_evidence":"Region-level AI services are available in West US 3 per Microsoft Learn’s model-region support, while West US 3 is a launched Azure region in Arizona; no public source confirms this specific El Mirage building hosts a GPU training supercluster.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No El Mirage-specific figure reported; Microsoft’s Goodyear facility will pilot a design by 2026 eliminating over 160 million liters (~42 million gallons) of water use per year [1].","grid_note":"APS proposed over a 45% rate increase for extra-large energy users like data centers to ensure they pay their costs of service [1].","citations":[{"title":"Are data centers depleting the Southwest's resources?","url":"https://www.apmresearchlab.org/10x/data-centers-resource"},{"title":"Microsoft Azure Data Center in El Mirage, Arizona","url":"https://www.datacenters.com/microsoft-azure-west-us-3-arizona"},{"title":"Microsoft launches its sustainable datacenter region ...","url":"https://azure.microsoft.com/en-us/blog/expanding-cloud-services-microsoft-launches-its-sustainable-datacenter-region-in-arizona/"},{"title":"Microsoft Revolutionizes Datacenter Pilot Project Designed ...","url":"https://greenlivingmag.com/microsoft-revolutionizes-datacenter-pilot-project-designed-to-save-millions-of-gallons-of-water-each-year/"},{"title":"Microsoft El Mirage (PHX80)","url":"https://www.datacentermap.com/usa/arizona/phoenix/microsoft-el-mirage/"}],"runId":"srun_c0e944bd89584b545c137dd24b61309c","classifiedAt":"2026-07-02T22:55:54.269Z"},"1128":{"community_note":"Local residents are organizing on Facebook to oppose AI-related expansion at 80 Merritt Blvd—citing plans for ~120 diesel backup generators and associated air-quality risks—with opposition currently at the community-organizing stage and no formal moratorium or litigation identified.","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"No public figures on cooling water use or cooling type were found for this facility.","grid_note":"Approx. 15 MW load served by United Illuminating (UI); no site-specific grid upgrades or rate actions identified in the provided sources.","citations":[{"title":"How to stop an AI data center in Trumbull, CT?","url":"https://www.facebook.com/groups/165251940779753/posts/2021908108447451/"},{"title":"Aphorio Carter acquires Digital Realty data center in ...","url":"https://www.datacenterdynamics.com/en/news/aphorio-carter-acquires-digital-realty-data-center-in-trumbull-connecticut/"},{"title":"How to stop an AI data center in Trumbull, CT?","url":"https://www.facebook.com/groups/165251940779753/posts/2021908108447451/"},{"title":"Clinic Lawsuit Challenges Data Center Expansion in Lowell ...","url":"https://law.yale.edu/yls-today/news/clinic-lawsuit-challenges-data-center-expansion-lowell-massachusetts"},{"title":"Trumbull Data Center | Aphorio Carter (15 MW)","url":"https://www.datacentermap.com/usa/connecticut/trumbull/80-merritt-boulevard/"}],"runId":"srun_c0e944bd89584b54166b96056528e5a1","classifiedAt":"2026-07-02T22:55:54.269Z"},"1153":{"community_note":"No organized opposition or litigation has been reported for Novva’s Colorado Springs data center; Rolls‑Royce announced emergency backup power for an expansion, but no zoning, noise, or air‑quality complaints were found.","water_impact":"low","ai_evidence":"Public materials describe the site as multi-tenant colocation with an unnamed anchor tenant and 40 MW power availability, with no verified announcements of GPU superclusters or AI tenants.","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"Reported at about 6,000 gallons/day in 2024 (including sewer discharge) with a retrofit to water‑free cooling underway; no aquifer or discharge disputes surfaced.","grid_note":"Initial 6 MW with plans to expand to 30–40 MW; CSU’s 2024 peak was 1,011 MW and its large‑load policy says data centers cover the full cost of service.","citations":[{"title":"Rolls-Royce secures emergency backup power for ...","url":"https://www.rolls-royce.com/media/press-releases/2024/06-06-2024-rr-secures-emergency-backup-power-for-co-location-data-centre-in-colorado.aspx"},{"title":"Novva Data Centers: A different kind of data center","url":"https://gazette.com/2023/05/31/novva-data-centers-a-different-kind-of-data-center-21986e9c-fb46-11ed-96f1-7b56e6b72f5f/"},{"title":"Sustainable Water-Free Data Center Cooling","url":"https://www.novva.com/data-center-services/water-free-cooling/"},{"title":"Novva Data Centers: A different kind of data center","url":"https://gazette.com/2023/05/31/novva-data-centers-a-different-kind-of-data-center-21986e9c-fb46-11ed-96f1-7b56e6b72f5f/"},{"title":"Novva Colorado Springs - 650 Sybilla Lane","url":"https://www.datacentermap.com/usa/colorado/colorado-springs/novva-colorado-springs/"}],"runId":"srun_c0e944bd89584b54d0c3b0b40dfcbbfe","classifiedAt":"2026-07-02T22:55:54.269Z"},"1154":{"community_note":"No organized opposition was found for the existing QTS Rockrimmon facility; opposition is focused on the separate Raeden/Project Taurus Garden of the Gods proposal, with five of six appeals deemed complete as of June 23, 2026.","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"No site-specific gallons/day were reported; QTS says closed-loop “zero water for operational cooling” with WUE=0, and no local drought/aquifer or discharge issues were identified for this site.","grid_note":"Approximately 14 MW critical load versus CSU’s 1,011 MW maximum hourly peak; CSU says big power users such as data centers cover the full cost of their service, and no QTS‑specific grid upgrades or rate cases were found.","citations":[{"title":"Proposed AI data center in Colorado Springs spurs talk on ...","url":"https://gazette.com/2026/05/09/proposed-ai-data-center-in-colorado-springs-spurs-talk-on-its-merits-amid-concerns/"},{"title":"Five data center appeals complete as opponents rally at ...","url":"https://www.koaa.com/news/local-news/five-data-center-appeals-complete-as-opponents-rally-at-city-hall"},{"title":"QTS Data Centers: Home","url":"https://q.com/"},{"title":"Environmental Stewardship","url":"https://q.com/the-qts-difference/environmental-stewardship/"},{"title":"Do Data Centers Use a Lot of Water?","url":"https://q.com/resources/do-data-centers-use-a-lot-of-water/"}],"runId":"srun_c0e944bd89584b548b1bcae7057bf93f","classifiedAt":"2026-07-02T22:55:54.269Z"},"1169":{"community_note":"No organized opposition specific to Novva’s 650 Sybilla Lane site was found; statewide environmental groups are challenging data centers over power/water/climate impacts while 2026 legislation is debated.","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"Uses ambient-air/water-free cooling; no site-specific gallons/day or water-source stress/discharge issues reported.","grid_note":"Listed with ~30 MW planned capacity and shown on a utility request map at 550/650 Sybilla Lane; no reports of site-specific new generation/transmission or curtailment.","citations":[{"title":"Colorado data center bills split environmental, labor groups","url":"https://coloradosun.com/2026/03/26/labor-environmental-groups-split-data-centers/"},{"title":"Sustainable Water-Free Data Center Cooling","url":"https://www.novva.com/data-center-services/water-free-cooling/"},{"title":"NOVVA Data Centers achieves zero downtime","url":"https://www.siemens.com/en-us/content/novva-data-centers/"},{"title":"Novva Data Centers: A different kind of data center","url":"https://gazette.com/2023/05/31/novva-data-centers-a-different-kind-of-data-center-21986e9c-fb46-11ed-96f1-7b56e6b72f5f/"},{"title":"Progressive data center in Colorado Springs sold to Utah ...","url":"https://gazette.com/2021/09/15/progressive-data-center-in-colorado-springs-sold-to-utah-company-188e2bbe-15b2-11ec-a1dd-d34eecd4c44a/"}],"runId":"srun_c0e944bd89584b544573e71682937a18","classifiedAt":"2026-07-02T22:55:54.269Z"},"1170":{"community_note":"Active pushback targets Raeden’s Project Taurus near Garden of the Gods (noise, water, power), while no QTS Rockrimmon–specific opposition or litigation was found; Project Taurus recently received administrative approval.","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"No site-specific water-use data found; QTS promotes a water-free 'Freedom' cooling design claiming to save over 48 million gallons annually per data center, but this is not confirmed for the Colorado Springs facility.","grid_note":"Listed at 14 MW+ critical power and thus meets Colorado Springs Utilities’ dedicated large-load (≥10 MW) rate treatment.","citations":[{"title":"Project Taurus data center development takes a step ...","url":"https://www.cpr.org/2026/06/15/colorado-springs-data-center-administrative-approval/"},{"title":"Colorado Springs administratively approves data center on ...","url":"https://gazette.com/2026/06/12/colorado-springs-administratively-approves-data-center-on-garden-of-the-gods-road/"},{"title":"Proposed AI data center in Colorado Springs spurs talk on ...","url":"https://gazette.com/2026/05/09/proposed-ai-data-center-in-colorado-springs-spurs-talk-on-its-merits-amid-concerns/"},{"title":"Pioneering Water Efficiency and Sustainability in Data ...","url":"https://q.com/resources/pioneering-water-efficiency-and-sustainability-in-data-center-operations/"},{"title":"Colorado Springs - Data Centers","url":"https://q.com/data-centers/colorado-springs/"}],"runId":"srun_c0e944bd89584b54ffcc01393dfda9ad","classifiedAt":"2026-07-02T22:55:54.555Z"},"1179":{"community_note":"Aurora officials sought community input on data center concerns while Denver imposed a one‑year moratorium amid pushback, with no reported lawsuit specifically against the QTS Aurora campus.","water_impact":"low","ai_evidence":"QTS and Lumen announced connectivity for “AI‑ready” infrastructure across 16 new QTS campuses, while the Aurora site is a large hyperscale build; no public confirmation of an AI GPU supercluster or named AI tenant at Aurora was found.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Company statements reported by local media indicate the Aurora campus will use “water‑free” liquid cooling.","grid_note":"Planned at roughly 177 MW and among Xcel’s largest customers, with QTS paying for a new transmission line.","citations":[{"title":"Community engagement sought on Aurora data center ...","url":"https://sentinelcolorado.com/metro/community-engagement-sought-on-aurora-data-center-concerns/"},{"title":"Denver city council apologizes for allowing data center ...","url":"https://www.9news.com/article/news/local/denver-city-council-apologizes-data-center-moratorium/73-9f34e8b7-75e3-491b-90ac-17dee009a520"},{"title":"Data Center moratoriums take hold along Front Range, but ...","url":"https://gazette.com/2026/06/16/data-center-moratoriums-take-hold-along-front-range-but-not-colorado-springs/"},{"title":"QTS Aurora Data Center Campus, Colorado","url":"https://poweredbywho.com/projects/qts-aurora-data-center-campus-1e727725"},{"title":"Could data center boom threaten Colorado's water supply ...","url":"https://www.denverpost.com/2025/06/05/data-centers-colorado-water-power/"}],"runId":"srun_c0e944bd89584b54ba241b88371254b2","classifiedAt":"2026-07-02T22:59:26.642Z"},"1187":{"community_note":"Organized residents and advocacy groups oppose Project Tango over impacts like water/aquifer risk, power demand, and proximity to homes/schools, while a lawsuit over control/public input is pending; county zoning is scheduled July 2 and a BCC vote July 15, 2026.","water_impact":"moderate","ai_evidence":"County and media reporting characterize Project Tango as an AI/hyperscale-AI data center campus, while listings still show the operator as undisclosed/unknown and no public GPU supercluster or workload details have been announced.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Closed-loop cooling is cited with about 5,000 gpd (often reclaimed) for domestic/process needs, but opponents cite ~1.7M gallons/month and raise aquifer/well concerns.","grid_note":"FPL is expected to serve the campus near the 3,750 MW West County Energy Center, and Florida’s large-load tariff (≥50 MW) implies required infrastructure would be customer-funded rather than broadly socialized.","citations":[{"title":"Planners recommend approval of AI data center Project ...","url":"https://www.wptv.com/news/region-c-palm-beach-county/loxahatchee-acreage/palm-beach-county-planners-recommend-approval-of-controversial-project-tango-ai-data-center"},{"title":"Palm Beach County","url":"https://www.facebook.com/pbcgov/posts/the-central-park-of-commerce-center-project-tango-zoning-hearing-has-been-postpo/1394914346012337/"},{"title":"Could another data center move forward at Project Tango ...","url":"https://cbs12.com/news/local/could-another-data-center-move-forward-at-project-tango-site-lawsuit-raises-new-questions-public-input-hearings-vote-loophole-warehouse-conversion-wpb-logistics-tpa-group-pba-holdings"},{"title":"Palm Beach County residents voice strong opposition to ...","url":"https://www.wpbf.com/article/florida-palm-beach-county-residents-voice-strong-opposition-to-proposed-data-center/70506003"},{"title":"Reworks made for Project Tango data center plan after ...","url":"https://www.wflx.com/2026/03/18/reworks-made-project-tango-data-center-plan-after-months-pushback-palm-beach-county-residents/"}],"runId":"srun_c0e944bd89584b54747c345bc684a623","classifiedAt":"2026-07-02T22:55:54.555Z"},"1244":{"community_note":"No organized opposition found for LightEdge Altoona I; separate community debate concerns a different LightEdge proposal in Ames.","water_impact":"low","ai_evidence":"Site described as a hybrid/colocation facility; LightEdge’s GPU‑as‑a‑Service page does not identify Altoona I or Des Moines as a GPU deployment location.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No published gallons/day for Altoona I; local reporting notes Meta’s Altoona campus can use up to 1 million gallons/day, which is unrelated to LightEdge’s site.","grid_note":"Around 2,000 kW critical power at 1435 Northridge; the nearby 1,000‑MW figure is Tract’s planned site, not LightEdge Altoona I.","citations":[{"title":"Ames data center: Debate continues as city council hears ...","url":"https://www.kcci.com/article/ames-data-center-lightedge-city-council-meeting-debate/71688460"},{"title":"Des Moines, IA Colocation Data Centers","url":"https://lightedge.com/data-centers/des-moines-data-center/"},{"title":"LightEdge | 1435 Northridge Circle, Des Moines","url":"https://datacenterhawk.com/marketplace/providers/lightedge/1435-northridge-circle/123106"},{"title":"How much water do Iowa data centers use?","url":"https://who13.com/news/iowa-news/how-much-water-do-iowa-data-centers-use/"},{"title":"How LightEdge Brought the Future to Altoona","url":"https://altoonanow.org/lightedge/"}],"runId":"srun_c0e944bd89584b542ed44e2a55fc8854","classifiedAt":"2026-07-02T22:55:54.555Z"},"1247":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Closed‑loop chilled water (2N) with winter free cooling reported; no public gallons/day, source‑stress, or discharge specifics found [1].","grid_note":"No public evidence of transmission upgrades, new generation, or rate-case impacts tied to this facility; directories portray it as a conventional colocation/private‑cloud site [1][2][3].","citations":[{"title":"AGENDA","url":"https://www.hiawatha-iowa.com/files/documents/12-19-11_pz_agenda.doc"},{"title":"Enseva - Hiawatha Data Center","url":"https://cloudandcolocation.com/datacenters/enseva-hiawatha-data-center/"},{"title":"Enseva Hiawatha","url":"https://www.enseva.com/?page_id=14"},{"title":"Enseva Hiawatha Datacenter in Cedar Rapids","url":"https://www.datacentermap.com/usa/iowa/cedar-rapids/enseva-hiawatha/"},{"title":"Overview - Enseva","url":"https://www.enseva.com/?page_id=1141"}],"runId":"srun_c0e944bd89584b54e92c68fd22c7b5e9","classifiedAt":"2026-07-02T22:55:54.555Z"},"1249":{"community_note":"No organized opposition specific to Long Lines Data Center; in 2026, Siouxland officials discussed moratoriums/permitting for new industrial data centers, not this existing facility [1][2].","water_impact":"unknown","ai_evidence":"Listings describe a 3,972‑sq‑ft secure colocation/disaster‑recovery facility with 2,000 amps commercial power, a 1,000 kVA generator, and a 225 kVA UPS—no AI/GPU tenants or retrofits are cited [1][2].","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"","grid_note":"Published specs list 2,000 amps commercial power with a 1,000 kVA generator and 225 kVA UPS—no evidence supports a 999 MW capacity [1][2].","citations":[{"title":"Siouxland communities considering moratoriums on data ...","url":"https://www.ktiv.com/video/2026/06/17/siouxland-communities-considering-moratoriums-data-center-projects/"},{"title":"Agenda: Discussion about the permitting procedures for ...","url":"https://www.ktiv.com/2026/06/16/agenda-discussion-about-permitting-procedures-industrial-data-centers-unincorporated-woodbury-county/"},{"title":"Secure Data Center Services - Sioux City","url":"https://www.longlines.com/data-center"},{"title":"Long Lines Data Center in Sioux City | 4647 Stone Ave","url":"https://www.datacentermap.com/usa/iowa/sioux-city/long-lines-data-center/"},{"title":"Secure Data Center Services - Sioux City","url":"https://www.longlines.com/data-center"}],"runId":"srun_c0e944bd89584b54a384854ca175bce6","classifiedAt":"2026-07-02T22:55:54.555Z"},"1250":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"","grid_note":"Listed at ~3.0 MW capacity with modest onsite electrical services (incl. 500 kW backup diesel generator), and no public record of MidAmerican grid upgrades tied to this site.","citations":[{"title":"FiberComm revitalizes century-old downtown building","url":"https://siouxcityjournal.com/edition/siouxland_business/fibercomm-revitalizes-century-old-downtown-building/article_990f30a9-4c11-5699-9f16-04a422115204.html"},{"title":"Sioux City, Iowa, Turns Vacant Building Into Data Center","url":"https://www.govtech.com/data/Sioux-City-Iowa-Turns-Vacant-Building-Into-Data-Center.html"},{"title":"713 Nebraska St Data Center in Sioux City | FiberComm LC","url":"https://www.datacentermap.com/usa/iowa/sioux-city/713-nebraska-st/"},{"title":"FiberComm LC FiberComm 713 Nebraska — Data Center","url":"https://dchub.cloud/facilities/fibercomm-lc-fibercomm-713-nebraska-e769e03a"},{"title":"Goldman Sachs-owned ImOn acquires Iowa's FiberComm","url":"https://www.datacenterdynamics.com/en/news/goldman-sachs-owned-imon-acquires-iowas-fibercomm/"}],"runId":"srun_c0e944bd89584b545ddc9f1fdb7ef257","classifiedAt":"2026-07-02T22:55:54.555Z"},"1251":{"community_note":"","water_impact":"low","ai_evidence":"Peering and carrier listings confirm an HE PoP, QCIX node, and Cogent on-net at 2814 N Clark St, with no mention of GPUs or AI workloads.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Local TV reporting indicates the South Front Networks Quad Cities data center does not use water [1].","grid_note":"Local TV reported about 20,000 kWh/month—more than a home but less than a small grocery store—roughly a 28 kW average load, with no reported utility upgrades or rate impacts [1].","citations":[{"title":"South Front Networks: Davenport Data Center","url":"https://www.datacenters.com/south-front-networks-davenport"},{"title":"SFN IA-Davenport - South Front Networks","url":"https://www.datacentermap.com/usa/iowa/davenport/sfn-ia-davenport/"},{"title":"Map of locations","url":"https://southfront.io/path.html"},{"title":"South Front Networks - 2 Data Centers - See Locations","url":"https://www.datacentermap.com/c/south-front-networks/"},{"title":"SFN IA-Davenport","url":"https://www.peeringdb.com/fac/7705"}],"runId":"srun_c0e944bd89584b541834b9eebdf4dfe0","classifiedAt":"2026-07-02T22:55:54.555Z"},"1252":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No gallons/day, source, aquifer/drought, or discharge information is published for this facility.","grid_note":"No public support for the 999 MW value; listings show a small 500 sq ft colocation suite with no disclosed MidAmerican upgrades or rate impacts.","citations":[{"title":"Fidium Des Moines - 400 Locust St","url":"https://www.datacentermap.com/usa/iowa/des-moines/consolidated-des-moines/"},{"title":"Consolidated Communications Holdings, Inc.: Des Moines ...","url":"https://www.datacenters.com/consolidated-communications-holdings-inc-des-moines"},{"title":"Iowa Data Center & Colocation Services","url":"https://www.fidiumbusiness.com/network/data-center-locations/iowa"},{"title":"Des Moines Data Centers - 69 Facilities from 5 Operators","url":"https://www.datacentermap.com/usa/iowa/des-moines/"},{"title":"Consolidated Des Moines Data Center","url":"https://baxtel.com/data-center/consolidated-des-moines"}],"runId":"srun_c0e944bd89584b54d28cd3b160eea825","classifiedAt":"2026-07-02T22:55:54.555Z"},"1253":{"community_note":"","water_impact":"low","ai_evidence":"Operator and third-party descriptions frame InfoBunker as a secure underground colocation/hosting site with no stated AI GPU clusters or AI-cloud tenants [1][2].","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No gallons/day figure is published; cooling uses three DX units, three economizers, and two dry coolers [3].","grid_note":"No evidence supports a 999 MW load; operator materials describe robust but conventional power systems, with no public reports of new grid build-out or rate impacts tied to this site [4].","citations":[{"title":"Facility Details: Infobunker - Iowa DNR's Facility Explorer","url":"https://facilityexplorer.iowadnr.gov/FacilityExplorer/SiteDetail.aspx?facID=310505952"},{"title":"Data Center HVAC","url":"https://www.infobunker.com/hvac.shtml"},{"title":"Infobunker","url":"https://www.infobunker.com/"},{"title":"InfoBunker Data Center","url":"https://baxtel.com/data-center/infobunker"},{"title":"Data Center Power","url":"https://www.infobunker.com/power.shtml"}],"runId":"srun_c0e944bd89584b548ce4ec00ab8b6c2a","classifiedAt":"2026-07-02T22:55:54.555Z"},"1254":{"community_note":"No organized opposition specific to Windstream at 3540 SW 61st St.; statewide advocates have raised transparency/ratepayer concerns about data centers, but none tied to this site.","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific gallons/day or cooling-water source reported; West Des Moines Water Works reports Microsoft data centers use 2%–7% of monthly system water, which is unrelated to this Des Moines address.","grid_note":"No source confirms the 999 MW figure; public listings describe a small Windstream colocation site at 3540 SW 61st St, with no reported MidAmerican upgrades or rate cases tied to this facility.","citations":[{"title":"Transparency Needed for Data Centers","url":"https://www.sierraclub.org/iowa/blog/2026/03/transparency-needed-data-centers"},{"title":"Data Centers and Water Usage | WDMWW","url":"https://www.wdmww.com/data-centers-your-water.aspx"},{"title":"Windstream Des Moines - US Data Centers","url":"https://www.aterio.io/insights/us-data-centers/dc/windstream-91925-ia"},{"title":"Windstream Des Moines Data Center | 3540 SW 61st St","url":"https://www.datacentermap.com/usa/iowa/des-moines/windstream-des-moines/"},{"title":"Windstream Des Moines - US Data Centers","url":"https://www.aterio.io/insights/us-data-centers/dc/windstream-91925-ia"}],"runId":"srun_c0e944bd89584b54473d06d3b75690eb","classifiedAt":"2026-07-02T22:55:54.555Z"},"1255":{"community_note":"No organized opposition or complaints identified; the only local record located was a Pleasant Hill building-permit report for an addition at 4550 Carlisle Rd by Lumen, with no noted objections.","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No site-specific gallons/day or source details were found; available regional reports cover Microsoft West Des Moines data centers, not Lumen Pleasant Hill.","grid_note":"No verified MW load or grid-upgrade details for the site; the nearby Greater Des Moines Energy Center is a separate 576.3 MW gas plant at 4401 Carlisle Rd.","citations":[{"title":"Building Permit Report September 2025","url":"https://www.pleasanthilliowa.org/Archive.aspx?ADID=880"},{"title":"Data Centers and Water Usage | WDMWW","url":"https://www.wdmww.com/data-centers-your-water.aspx"},{"title":"Get the Facts: How much water do West Des Moines data ...","url":"https://www.kcci.com/article/get-the-facts-how-much-water-do-west-des-moines-data-centers-actually-use/65105524"},{"title":"Lumen: Des Moines 1 Data Center","url":"https://www.datacenters.com/lumen-des-moines-1"},{"title":"Lumen Des Moines - 4550 Carlisle Rd","url":"https://www.datacentermap.com/usa/iowa/des-moines/lumen-des-moines/"}],"runId":"srun_c0e944bd89584b54019520a256d14b6c","classifiedAt":"2026-07-02T22:55:54.555Z"},"1258":{"community_note":"No documented local opposition or legal/zoning disputes were found for the Jesup facility; no active complaints or moratorium efforts surfaced.","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No public figures on cooling-water use or source are disclosed for this site; neither the operator’s page nor directory listings provide water metrics [1][3].","grid_note":"No MW load or utility‑upgrade details are published for this site; a directory only mentions the region’s “low power rate of the Midwest,” and the 999 MW figure is not corroborated [3].","citations":[{"title":"Data Center","url":"https://heartlandtechnology.com/data-center-2/"},{"title":"Heartland Technology","url":"https://heartlandtechnology.com/"},{"title":"Beacon AI Centers: Heartland AI Hub Data Center","url":"https://www.datacenters.com/beacon-ai-centers-heartland-ai-hub"},{"title":"The AI Data-Center Boom Is Coming to America's Heartland","url":"https://www.benton.org/headlines/ai-data-center-boom-coming-america%E2%80%99s-heartland"},{"title":"Advanced Data Center Cooling","url":"https://aligneddc.com/cooling-innovation/"}],"runId":"srun_c0e944bd89584b54bbed3d757166b3f1","classifiedAt":"2026-07-02T22:55:54.555Z"},"1259":{"community_note":"No organized opposition specific to Global Reach Ames; the 2026 debate is about a different data‑center proposal near the municipal airport now under City Council review [1][2].","water_impact":"unknown","ai_evidence":"Operator markets web development/hosting and IT services, and the facility is listed as a small colocation site at Iowa State University Research Park with no GPU or AI infrastructure disclosures [4][5].","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility‑specific gallons/day, source, aquifer/drought stress, discharge, or liquid‑cooling details are disclosed on the operator’s data center page [6].","grid_note":"A Global Reach data center in Ames was reported at 1.6 MW versus the city’s record 138 MW peak; no evidence of utility upgrades or rate cases tied to this site [7][8].","citations":[{"title":"Ames City Council mulls bringing a new data center to Ames","url":"https://www.amestrib.com/story/news/politics/government/2026/06/17/ames-data-center-proposal/90559662007/"},{"title":"Ames data center: Debate continues as city council hears ...","url":"https://www.kcci.com/article/ames-data-center-lightedge-city-council-meeting-debate/71688460"},{"title":"Driving Directions | Headquarters | Ames, Iowa","url":"http://globalreach.com/contact/locations/headquarters"},{"title":"Global Reach Ames Data Center in Des Moines","url":"http://datacentermap.com/usa/iowa/des-moines/global-reach-ames"},{"title":"Global Reach Internet Productions, LLC.","url":"https://www.globalreach.com/"}],"runId":"srun_c0e944bd89584b54764557c4d766baee","classifiedAt":"2026-07-02T22:55:54.555Z"},"1260":{"community_note":"Residents and energy advocates pushed Linn County/Cedar Rapids for stronger guardrails (water, energy rates, rural impacts), prompting a strict zoning ordinance for data centers; no lawsuits were identified [1][2].","water_impact":"moderate","ai_evidence":"Press and civic leaders describe the campus as an AI data center/artificial-intelligence infrastructure initiative and note AI as the catalyst for investment, while QTS markets the campus to support AI infrastructure; no public GPU supercluster or named AI tenant has been disclosed [3][4][5].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"QTS says Cedar Rapids will use water‑free/closed‑loop cooling that saves ~48 million gallons per data center and up to ~4 billion gallons annually versus evaporative systems, with local news adding it requires “no net new water for cooling,” though residents have voiced aquifer/supply concerns [3][4][5][2].","grid_note":"QTS plans a temporary on‑site power plant to support testing until permanent utility service is ready, while officials assert the AI campus can grow without raising rates and regulators are tightening rules so data‑center‑driven transmission costs are properly allocated [6][7][3][8].","citations":[{"title":"Facing Its Third Data Center, an Iowa County Rolls Out ...","url":"https://insideclimatenews.org/news/01032026/iowa-county-data-center-ordinance/"},{"title":"Cedar Rapids data centers ignite concern from energy ...","url":"https://dailyiowan.com/2025/12/09/cedar-rapids-data-centers-ignite-concern-from-energy-advocates-excitement-from-officials/"},{"title":"Pioneering Water Efficiency and Sustainability in Data ...","url":"https://q.com/resources/pioneering-water-efficiency-and-sustainability-in-data-center-operations/"},{"title":"QTS Announces World-Class Data Center in Cedar Rapids","url":"https://q.com/news/qts-announces-new-world-class-data-center-campus-in-cedar-rapids/"},{"title":"Company behind Cedar Rapids data center used nearly 30 ...","url":"https://www.kcrg.com/2026/05/11/company-behind-an-iowa-data-center-is-facing-violations-georgia-this-isnt-first-time-its-broken-regulation/"}],"runId":"srun_c0e944bd89584b54309d7197558c804f","classifiedAt":"2026-07-02T22:55:54.555Z"},"1261":{"community_note":"Some concern over water use from utility officials and media, but no organized local opposition or litigation; city materials have hailed Project Alluvion.","water_impact":"moderate","ai_evidence":"Microsoft says West Des Moines is home to an Azure supercomputer built for OpenAI to train breakthrough AI models, and AP reports the technology behind ChatGPT/GPT‑4 was built in Iowa.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Evaporative cooling is used at several Microsoft West Des Moines data centers; the utility says Microsoft accounts for 2%–7% of monthly system pumpage, and reporting shows 48,751,325 gallons used through Sept. 2025 across the sites.","grid_note":"Listed at 131.719 MW power (79.031 MW IT load) with other records showing 100–250 MW capacity; MidAmerican says large‑load agreements protect other customers, amid rising data‑center electricity demand.","citations":[{"title":"Data Centers and Water Usage | WDMWW","url":"https://www.wdmww.com/data-centers-your-water.aspx"},{"title":"A look into West Des Moines Microsoft data centers' water ...","url":"https://who13.com/news/a-look-into-how-much-water-data-centers-use-in-west-des-moines/"},{"title":"Midwest cities take on AI with local laws","url":"https://www.iowapublicradio.org/ipr-news/2025-07-30/from-water-to-policing-midwest-cities-take-on-ai-with-few-guardrails"},{"title":"$2 billion data center in West Des Moines | City News","url":"https://www.wdm.iowa.gov/Home/Components/News/News/4420/"},{"title":"WATER RATES","url":"https://www.wdmww.com/CMDocs/WDMWW/Service%20Line/2025/winter%20service%20line.pdf"}],"runId":"srun_c0e944bd89584b54eaf58a660a76b1a8","classifiedAt":"2026-07-02T22:55:54.555Z"},"1262":{"community_note":"No organized lawsuit specific to Project Alluvion Building 2 surfaced; coverage notes scattered resident concerns about Microsoft’s West Des Moines campuses over construction, traffic, lighting, and resource use, with no formal case tied to this site identified.","water_impact":"moderate","ai_evidence":"OpenAI’s GPT‑4/ChatGPT technology was built/trained on Microsoft infrastructure in West Des Moines’ data‑center cluster, indicating AI training workloads on the campus even if Building 2 is not singled out.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"WDMWW reports Microsoft’s West Des Moines data centers use about 2%–7% of monthly system water and employ evaporative cooling, with WPR noting 68.5 million gallons used in 2024 across five campuses; supply is through WDMWW/Central Iowa Water Works.","grid_note":"Served by MidAmerican Energy, a public record shows the West Des Moines facility connected to its grid with 131.719 MW power capacity (79.031 MW IT load); no project‑specific curtailment or rate case was found.","citations":[{"title":"Microsoft built 5 data center campuses in this Iowa city. ...","url":"https://www.wpr.org/news/microsoft-data-center-iowa-wisconsin-expect"},{"title":"Data Centers and Water Usage | WDMWW","url":"https://www.wdmww.com/data-centers-your-water.aspx"},{"title":"WATER RATES","url":"https://www.wdmww.com/CMDocs/WDMWW/Service%20Line/2025/winter%20service%20line.pdf"},{"title":"Microsoft built 5 data center campuses in this Iowa city. ...","url":"https://www.wpr.org/news/microsoft-data-center-iowa-wisconsin-expect"},{"title":"Artificial intelligence technology behind ChatGPT was built ...","url":"https://apnews.com/article/chatgpt-gpt4-iowa-ai-water-consumption-microsoft-f551fde98083d17a7e8d904f8be822c4"}],"runId":"srun_c0e944bd89584b54a54da4297978d79d","classifiedAt":"2026-07-02T22:55:54.555Z"},"1263":{"community_note":"Local media note scrutiny of energy/water use, but no organized opposition in West Des Moines; the City approved a sixth Microsoft campus agreement in 2024.","water_impact":"moderate","ai_evidence":"Microsoft says Iowa hosts an Azure supercomputer built for OpenAI to train breakthrough AI models; Building 3 is part of the Project Alluvion site at 550 White Crane Rd in West Des Moines.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"WDM Water Works reports Microsoft data centers use 2%–7% of monthly system pumping and Business Record reports 48,751,325 gallons used through September 2025; several facilities use evaporative cooling.","grid_note":"Large-load data centers commonly fund required grid upgrades via dedicated tariffs, helping protect other ratepayers, and Iowa maintains comparatively low electric rates; no site-specific rate case or curtailment evidence was identified.","citations":[{"title":"Energy, water use under close watch as data centers ...","url":"https://www.businessrecord.com/energy-water-use-under-close-watch-as-data-centers-expand-in-iowa/"},{"title":"West Des Moines approves agreement with Microsoft for ...","url":"https://www.businessrecord.com/west-des-moines-approves-agreement-with-microsoft-for-6th-data-center/"},{"title":"Data Centers and Water Usage | WDMWW","url":"https://www.wdmww.com/data-centers-your-water.aspx"},{"title":"Energy, water use under close watch as data centers ...","url":"https://www.businessrecord.com/energy-water-use-under-close-watch-as-data-centers-expand-in-iowa/"},{"title":"WATER RATES","url":"https://www.wdmww.com/CMDocs/WDMWW/Service%20Line/2025/winter%20service%20line.pdf"}],"runId":"srun_c0e944bd89584b545fa5be98f478ff42","classifiedAt":"2026-07-02T22:55:54.555Z"},"1264":{"community_note":"Some concern over siting and water use has been reported, but no organized opposition or litigation specific to Project Alluvion – Building 4 was found.","water_impact":"moderate","ai_evidence":"Microsoft identifies West Des Moines as home to an Azure supercomputer used by OpenAI to train large AI models and notes its AI datacenters power OpenAI and Copilot workloads, indicating both training and inference at the campus; Building 4 is listed at the Alluvion address but without public, building-specific GPU details.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Microsoft’s West Des Moines data centers used 68.5 million gallons in 2024 (2.62% of system total), with monthly usage typically 2%–7% of WDMWW pumpage and several sites using evaporative cooling.","grid_note":"Utility states it uses customer agreements to protect other customers from cost shifts tied to data centers and other large energy users; Building 4–specific MW and upgrade details are not publicly documented in the sources cited.","citations":[{"title":"Data Centers and Water Usage | WDMWW","url":"https://www.wdmww.com/data-centers-your-water.aspx"},{"title":"Iowa Neighborhood Upset About Planned Microsoft Data ...","url":"https://khak.com/iowa-microsoft-data-center/"},{"title":"Data Centers and Water Usage | WDMWW","url":"https://www.wdmww.com/data-centers-your-water.aspx"},{"title":"Just the Facts: Data Centers & Water","url":"https://www.wdmww.com/CMDocs/WDMWW/Data%20Center%20Facts%20060126%20for%20web.pdf"},{"title":"Microsoft built 5 data center campuses in this Iowa city. ...","url":"https://www.wpr.org/news/microsoft-data-center-iowa-wisconsin-expect"}],"runId":"srun_c0e944bd89584b5419fddb4b00f854f3","classifiedAt":"2026-07-02T22:55:54.555Z"},"1265":{"community_note":"Residents quoted by WPR raised concerns about prolonged construction noise, increased traffic, and light pollution around Microsoft’s West Des Moines campuses; no organized West Des Moines–specific litigation or moratorium identified to date [5].","water_impact":"moderate","ai_evidence":"Microsoft says West Des Moines hosts an Azure supercomputer built for OpenAI to train large AI models, and AP reported GPT‑4 was trained in the Iowa cluster of Microsoft data centers [1][6].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"WDMWW reports Microsoft data centers use 2%–7% of monthly water (six‑year avg 2.1%), supplied via Central Iowa Water Works from the Raccoon and Des Moines rivers, and several sites use evaporative cooling [2][8].","grid_note":"No public source verifies the 999 MW figure; one WDM Microsoft site lists 131.719 MW capacity, and MidAmerican says customer agreements protect other customers from cost shifts tied to data centers [4][7].","citations":[{"title":"Microsoft built 5 data center campuses in this Iowa city. ...","url":"https://www.wpr.org/news/microsoft-data-center-iowa-wisconsin-expect"},{"title":"Data Centers and Water Usage | WDMWW","url":"https://www.wdmww.com/data-centers-your-water.aspx"},{"title":"Just the Facts: Data Centers & Water","url":"https://www.wdmww.com/CMDocs/WDMWW/Data%20Center%20Facts%20060126%20for%20web.pdf"},{"title":"How a small city in Iowa became an epicenter for ...","url":"https://news.microsoft.com/source/features/ai/west-des-moines-iowa-ai-supercomputer/"},{"title":"Artificial intelligence technology behind ChatGPT was built ...","url":"https://apnews.com/article/chatgpt-gpt4-iowa-ai-water-consumption-microsoft-f551fde98083d17a7e8d904f8be822c4"}],"runId":"srun_c0e944bd89584b54d455f53a1f83a404","classifiedAt":"2026-07-02T22:55:54.555Z"},"1266":{"community_note":"Local coverage and utility communications scrutinize data-center water/energy use, but no organized opposition or litigation in West Des Moines was identified; status: scattered concern about water use and permitting [11][5].","water_impact":"moderate","ai_evidence":"Microsoft says West Des Moines hosts an Azure supercomputer built for OpenAI to train large AI models (e.g., GPT‑4) [1], while Building 8 is listed as an Azure Alluvion facility at 550 White Crane Rd [2].","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Microsoft used 68.5 million gallons in West Des Moines in 2024; WDMWW says Microsoft data centers account for 2–7% of monthly pumping, with wells historically drawing from the Jordan aquifer [4][5][7].","grid_note":"Building 8 is listed at 18 MW; another WDM Microsoft site shows 131.7 MW capacity; MidAmerican created a dedicated rate for data centers amid Iowa-wide demand growth tied to data centers [3][10][8][9].","citations":[{"title":"Data Centers and Water Usage | WDMWW","url":"https://www.wdmww.com/data-centers-your-water.aspx"},{"title":"Water and energy use is growing as data centers are built ...","url":"https://www.wpr.org/news/water-energy-use-data-centers-midwest-great-plains"},{"title":"Data Centers and Water Usage | WDMWW","url":"https://www.wdmww.com/data-centers-your-water.aspx"},{"title":"WDMWW: Plenty of Supply in Wells; No Nitrate Issues","url":"https://www.wdmww.com/CMDocs/WDMWW/Service%20Line/2014/Winter%202014%20Service%20Line.pdf"},{"title":"How a small city in Iowa became an epicenter for ...","url":"https://news.microsoft.com/source/features/ai/west-des-moines-iowa-ai-supercomputer/"}],"runId":"srun_c0e944bd89584b548eae0fed1d708399","classifiedAt":"2026-07-02T22:55:54.947Z"},"1267":{"community_note":"No organized opposition documented; a visiting delegation measured about 45 dB near the campus during a fact-finding trip.","water_impact":"high","ai_evidence":"Listings describe a standard Meta data center at 100 Share Way NW with efficiency/renewables focus, and Meta’s 24,576‑GPU cluster announcements do not identify Altoona as a host site.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Local news reports up to 1 million gallons/day—about one-fifth of Altoona’s production capacity—from the Jordan aquifer for Meta’s data centers.","grid_note":"Utility notes data centers use 20–50× more energy per square foot and provides specific rate options for such large users.","citations":[{"title":"Trip to Iowa gives officials close look at Meta data center","url":"https://www.warrencountyrecord.com/stories/trip-to-iowa-gives-officials-close-look-at-meta-data-center,163085"},{"title":"Facebook Altoona Iowa Data Center","url":"https://baxtel.com/data-center/facebook-altoona-iowa"},{"title":"Where does the water used by Iowa data centers go?","url":"https://who13.com/news/iowa-news/where-does-the-water-used-by-iowa-data-centers-go/"},{"title":"City of Altoona Approves Contract with ...","url":"https://storycon.com/news/city-of-altoona-approves-contract-with-story-construction-for-new-water-treatment-plant/"},{"title":"Altoona 1 - Meta","url":"https://www.ocolo.io/colocation/meta/altoona-1/"}],"runId":"srun_c0e944bd89584b544906285ce492ddf6","classifiedAt":"2026-07-02T22:55:54.947Z"},"1268":{"community_note":"No organized opposition identified; some residents/advocates raised aquifer and water-use concerns, while Altoona officials approved further Meta data center expansion.","water_impact":"high","ai_evidence":"Listed as a 48 MW Meta hyperscale building with no public confirmation of AI GPU clusters at this site [1]; Meta’s AI cluster announcements (e.g., Prometheus) do not name Altoona [2].","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Up to ~1,000,000 gallons/day (about one-fifth of Altoona’s production), with planning tied to the deep Jordan aquifer and a new water plant/wells by 2026.","grid_note":"Matched with Iowa wind PPAs, including MidAmerican’s project adding up to 138 MW and Apex’s Great Pathfinder Wind supporting Meta’s operations near Altoona.","citations":[{"title":"Altoona approves another massive Facebook data center","url":"https://www.kcci.com/article/altoona-iowa-approves-another-massive-facebook-data-center/34903595"},{"title":"Iowa's water needs protection from aquifer raiders","url":"https://iowacapitaldispatch.com/2024/06/22/iowas-water-needs-protection-from-aquifer-raiders/"},{"title":"How much water do Iowa data centers use?","url":"https://who13.com/news/iowa-news/how-much-water-do-iowa-data-centers-use/"},{"title":"Meta Altoona - Building 6 — Polk, Iowa","url":"https://cleanview.co/data-centers/iowa/3020/meta-altoona---building-6"},{"title":"Meta's Infrastructure Evolution and the Advent of AI","url":"https://engineering.fb.com/2025/09/29/data-infrastructure/metas-infrastructure-evolution-and-the-advent-of-ai/"}],"runId":"srun_c0e944bd89584b54035e420f44fe4fc7","classifiedAt":"2026-07-02T22:55:54.947Z"},"1274":{"community_note":"Linn County supervisors imposed an 18-month rural data-center moratorium and the county advanced new rules, but there is no QTS-specific lawsuit or city zoning fight stopping Cedar Rapids I.","water_impact":"low","ai_evidence":"Local media ties the Cedar Rapids data centers to an AI buildout, but there are no public disclosures of GPU superclusters, named AI tenants, or training-vs-inference specifics.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"QTS indicates closed-loop/water‑free cooling with no net new cooling water and savings of more than 48M gallons annually per data center, while a subcontractor was fined over 40 unpermitted dewatering wells during construction.","grid_note":"Expected campus draw is about 1.05 GW (roughly 800,000 homes), QTS pursued a temporary on‑site power plant for test/commissioning, and Alliant links data‑center growth to a five‑year rate freeze.","citations":[{"title":"Linn County passes data center moratorium - The Gazette","url":"https://www.thegazette.com/news/linn-county-passes-data-center-moratorium/article_94ac8e37-7dd1-4871-8a6f-d853f66f0b39.html"},{"title":"Facing Its Third Data Center, an Iowa County Rolls Out ...","url":"https://insideclimatenews.org/news/01032026/iowa-county-data-center-ordinance/"},{"title":"Cedar Rapids, Iowa - Data Centers","url":"https://q.com/data-centers/cedar-rapids/"},{"title":"Company behind Cedar Rapids data center used nearly 30 ...","url":"https://www.kcrg.com/2026/05/11/company-behind-an-iowa-data-center-is-facing-violations-georgia-this-isnt-first-time-its-broken-regulation/"},{"title":"$750M Iowa Data Center's Unpermitted Wells Draw $20K ...","url":"https://www.enr.com/articles/61162-750m-iowa-data-centers-unpermitted-wells-draw-20k-fine-against-dewatering-contractor"}],"runId":"srun_c0e944bd89584b54bdb65cfef85dbb10","classifiedAt":"2026-07-02T22:55:54.947Z"},"1291":{"community_note":"Residents and local groups opposed Google/Hatchworks’ request for additional diesel backup generators over noise/air-pollution and environmental impacts, but IDEM approved the generators in April 2026.","water_impact":"moderate","ai_evidence":"Regulatory filings and reporting state the Fort Wayne data center will reduce or shift machine-learning workloads during grid stress under a demand-response program.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No site-specific GPD disclosed; the campus will use city water, with the city citing ~37 MGD average vs. 72 MGD treatment capacity, and a city–Google deal could save ~182 million gallons/year.","grid_note":"Facility profile lists 100 MW; IURC approved an I&M–Google demand-response structure in April 2026 to minimize grid impact, amid I&M planning that projects a 99.5% rise in annual peak demand by 2030.","citations":[{"title":"IDEM approves request to install additional backup diesel ...","url":"https://www.wane.com/top-stories/idem-approves-request-to-install-additional-backup-diesel-generators-at-google-data-center-in-fort-wayne/"},{"title":"Fort Wayne residents are getting a Google data center, but ...","url":"https://www.wfyi.org/public-affairs/2025-12-16/googles-data-center-what-the-build-could-mean-for-fort-wayne"},{"title":"Google Data Center | Engage Fort Wayne","url":"https://engage.cityoffortwayne.org/data-center"},{"title":"Geologist: More studies needed to ensure data centers use ...","url":"https://www.wane.com/top-stories/geologist-more-studies-needed-to-ensure-data-centers-use-water-responsibly/"},{"title":"Google goal: replenish 120% of water used in data centers","url":"https://www.wane.com/top-stories/google-goal-replenish-120-of-water-used-in-data-centers/"}],"runId":"srun_c0e944bd89584b54780e76a1b76e8f75","classifiedAt":"2026-07-02T22:55:54.947Z"},"1292":{"community_note":"Local and statewide opponents have raised water, air-quality, and land-use concerns—IDEM halted some construction over wetland impacts, the county council denied rezoning for an additional site, and air-permit violations were reported—signaling active, ongoing pushback.","water_impact":"moderate","ai_evidence":"AWS collaborated with Anthropic to launch Project Rainier—one of the world's largest AI compute clusters with nearly half a million Trainium2 chips—and technical writeups describe it as a flagship AI training cluster for Anthropic.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Hybrid cooling with outside air most of the time and evaporative on hot days, a county cap of up to 24M gpd combined from the Kankakee Aquifer for Amazon and GM, and approval for up to 31M gpd construction dewatering.","grid_note":"Reported load up to ~2.2 GW, with I&M expecting peak demand to roughly double to 8 GW by 2030, a ‘large load’ settlement requiring long-term commitments, and an Expedited Generation Resource plan filed to add capacity.","citations":[{"title":"IDEM sends letter, halts some work over Amazon's ...","url":"https://wsbt.com/news/local/wetland-impact-idem-sends-letter-halts-some-work-over-amazons-data-center-construction-impact-indiana-department-environmental-management-application-process-unauthorized-impact-st-joseph-county"},{"title":"St. Joseph County Council denies land rezoning for data ...","url":"https://wsbt.com/news/local/st-joseph-county-council-denies-rezoning-of-land-for-data-center-votes-7-2-marathon-meeting-hours-long-public-opinion-13-billion-dollar-project-amazon-new-carlisle-approval-process-plan-commission-st-joseph-county-indiana"},{"title":"How data centers could add to Indiana's air pollution","url":"https://www.indystar.com/story/news/environment/2026/05/11/hoosiers-say-they-want-stronger-protections-from-data-center-emissions/89995405007/"},{"title":"Amazon data center violates air permits in multiple ways","url":"https://www.wvpe.org/wvpe-news/2026-06-16/amazon-data-center-violates-air-permits-in-multiple-ways"},{"title":"Five things to know about Amazon data centers' use of water","url":"https://www.southbendtribune.com/story/news/local/2026/06/11/five-things-to-know-about-amazon-data-centers-use-of-water/90499359007/"}],"runId":"srun_c0e944bd89584b54326693103a93f85a","classifiedAt":"2026-07-02T23:02:27.643Z"},"1293":{"community_note":"Residents and some county officials raised concerns over siting, noise, and water use; LaPorte County adopted data-center restrictions while LaPorte City Council approved a second Microsoft facility.","water_impact":"unknown","ai_evidence":"Microsoft and state/local partners announced a $1B cloud data center campus in La Porte, and industry listings connect the campus to cloud computing and artificial intelligence, but no GPU supercluster or training cluster has been disclosed.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No gallons/day published for La Porte; the county ordinance requires verification of water use and wastewater discharge as part of approvals.","grid_note":"Planned capacity around 538 MW by 2032; NIPSCO pursued a special contract at the IURC to serve a large data-center load, and Indiana adopted large‑load interconnection rules.","citations":[{"title":"LaPorte County moves forward with data center restrictions","url":"https://www.wndu.com/2026/05/06/laporte-county-moves-forward-with-data-center-restrictions/"},{"title":"LaPorte County restricts possible data center locations","url":"https://www.southbendtribune.com/story/news/local/2026/05/19/laporte-county-restricts-possible-data-center-locations/90101557007/"},{"title":"LaPorte City Council approves second Microsoft data center","url":"https://wsbt.com/news/local/laporte-city-council-vote-on-second-microsoft-data-center-yes-no-boyd-boulevard-transparency-economic-development-campus-union-workers-project-jobs"},{"title":"Data Center Ordinance","url":"https://laporteco.in.gov/wp-content/uploads/2026/04/Data-Center-Ordinance-Draft-1.pdf"},{"title":"Understanding water use at Microsoft datacenters","url":"https://local.microsoft.com/blog/understanding-water-use-at-microsoft-datacenters/"}],"runId":"srun_c0e944bd89584b54ecbeadc337c69cdb","classifiedAt":"2026-07-02T22:55:54.947Z"},"1310":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"CH1 employs chilled-water distribution to computer room air handlers, but no public CH1-specific gallons/day, water-source stress, drought/aquifer, or discharge data were found [1].","grid_note":"Operational multi‑MW colocation load in downtown Chicago; Illinois regulators have raised deposits for new 50–200 MW projects, with no CH1‑specific upgrade or curtailment reports [1].","citations":[{"title":"CoreSite CH1 - Chicago Data Center","url":"https://www.coresite.com/data-center/ch1-chicago-il"},{"title":"CoreSite's Chicago AI-Optimized Infrastructure Powers ...","url":"https://www.coresite.com/news/coresites-chicago-ai-optimized-infrastructure-powers-stns-gpu-one-platform-and-helps-deliver-significant-savings"},{"title":"CoreSite Delivers Customized Liquid Cooling System to ...","url":"https://www.coresite.com/blog/coresite-delivers-customized-liquid-cooling-system-to-support-gpuaas-and-enterprise-ai"},{"title":"CoreSite Chicago Data Center | 427 South LaSalle","url":"https://www.datacentermap.com/usa/illinois/chicago/427-lasalle/"},{"title":"CoreSite's Chicago AI-Optimized Infrastructure Powers ...","url":"https://finance.yahoo.com/news/coresite-chicago-ai-optimized-infrastructure-150000897.html"}],"runId":"srun_c0e944bd89584b54a716c7b20e4a9a7c","classifiedAt":"2026-07-02T22:55:54.947Z"},"1311":{"community_note":"No organized pushback specific to CoreSite CH2 was found; regional stories cite a Lake County moratorium and broader concerns (noise, diesel emissions, rising bills), while CH2 was publicly celebrated rather than contested [1][2][3].","water_impact":"unknown","ai_evidence":"STN’s GPU One runs at CH2 with more than 1,500 NVIDIA B200 GPUs “purpose-built for compute-intensive AI training and inference workloads” and includes a 1,536-B200 deployment across 24 racks with customized liquid cooling [1][2][3].","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"CH2 uses chilled-water circulation with partial free cooling and customized direct‑to‑chip liquid cooling, but no public gallons/day, WUE, source‑stress, or discharge metrics were found [1][2].","grid_note":"CH2 is cited at about 18 MW of critical capacity with a multi‑MW GPU cluster; no CH2‑specific reports of new generation/transmission or curtailment were found, while regional coverage notes elevated ComEd supply prices tied to PJM capacity costs [1][2][4][5].","citations":[{"title":"Lake County Hits Pause on Data Centers","url":"https://therealdeal.com/chicago/2026/06/11/lake-county-hits-pause-on-data-centers/"},{"title":"Data centers spark debate across Chicagoland: 'It was like ...","url":"https://www.fox32chicago.com/news/data-centers-spark-debate-across-chicagoland"},{"title":"CoreSite Celebrates Its Expanded Chicago Data Center ...","url":"https://www.coresite.com/news/media-advisory-coresite-celebrates-its-expanded-chicago-data-center-footprint-enabling-digital-transformation-in-a-rising-internet-hub"},{"title":"Downtown Data Centers: CoreSite Connects Chicago","url":"https://www.coresite.com/hubfs/5ede90c37797f3a0c28fe41d_Coresite%20Case%20Study%20Graphic%20Final%206-4-2020.pdf"},{"title":"CoreSite Delivers Customized Liquid Cooling System to ...","url":"https://www.coresite.com/blog/coresite-delivers-customized-liquid-cooling-system-to-support-gpuaas-and-enterprise-ai"}],"runId":"srun_c0e944bd89584b54616ee065a5e94001","classifiedAt":"2026-07-02T22:55:54.947Z"},"1315":{"community_note":"No organized opposition identified; the project’s expansion received Plan Commission and City Council approvals, with local coverage noting a development meeting where it received favorable nods, and it is proceeding.","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"Closed-loop cooling that “doesn't consume water for cooling”; no gallons/day figure or discharge issues found.","grid_note":"Approx. 40 MW today with a dedicated ComEd substation area and a 125 MW onsite substation planned to support the campus.","citations":[{"title":"Plan Commission approves data center at 2800 S. Ashland","url":"https://chicago.urbanize.city/post/plan-commission-approves-data-center-2800-s-ashland"},{"title":"City Council approves data center at 2800 S. Ashland","url":"https://chicago.urbanize.city/post/city-council-approves-data-center-2800-s-ashland"},{"title":"Data Center Expansion Gets Nods at Development Meeting","url":"https://mckinleypark.news/news/5975-data-center-expansion-gets-nods-at-development-meeting"},{"title":"Chicago - Data Centers","url":"https://q.com/data-centers/chicago/"},{"title":"QTS Data Centers: Colocation Services Provider","url":"https://www.ocolo.io/colocation/qts-data-centers/"}],"runId":"srun_c0e944bd89584b541bc6fad459c895de","classifiedAt":"2026-07-02T22:55:54.947Z"},"1320":{"community_note":"No site-specific organized opposition, litigation, zoning fight, moratorium, or noise/air-quality complaint was found for CHI5; issues cited in Sangamon County and Aurora involve different projects and locations.","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Minimal water usage limited to humidification and maintenance; no gallons/day figure or source-stress/discharge details reported.","grid_note":"Approx. 12 MW IT load; no site-specific evidence of grid strain, required new transmission/generation, curtailment risk, or rate impacts identified.","citations":[{"title":"CyrusOne files for nine-building data center campus ...","url":"https://www.datacenterdynamics.com/en/news/cyrusone-files-for-nine-building-data-center-campus-outside-chicago-illinois/"},{"title":"Proposed CyrusOne Data Center","url":"https://sangamonil.gov/departments/a-c/county-board/proposed-cyrusone-data-center"},{"title":"CyrusOne and Scientel Settle Legal Battle Over Tower ...","url":"https://www.datacenterknowledge.com/regulations/cyrusone-and-scientel-settle-legal-battle-over-tower-for-trading-data"},{"title":"Lombard, IL: CHI5","url":"https://www.cyrusone.com/data-centers/north-america/lombard-il"},{"title":"Lombard, IL: CHI5","url":"https://www.cyrusone.com/data-centers/north-america/lombard-il"}],"runId":"srun_c0e944bd89584b54d61f148759c997df","classifiedAt":"2026-07-02T22:55:54.947Z"},"1321":{"community_note":"Aurora residents have opposed persistent noise from CyrusOne’s Diehl Rd campus; the City imposed a 180‑day moratorium in Sept 2025 and passed new noise/operations rules in Mar 2026, while CyrusOne has a posted noise‑mitigation schedule underway.","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"Operator states the Aurora campus uses air cooling with “no water consumption for cooling” and only minimal water for humidification/maintenance.","grid_note":"At 58.4 MW on ComEd, CHI2 contributes to large‑load growth as regulators implement tariffs/deposit protections and TSAs for data centers; no CHI2‑specific transmission build was identified.","citations":[{"title":"New Data Center and Warehouse Regulations","url":"https://www.aurora.il.us/Property-Business/Zoning-and-Planning/New-Data-Center-and-Warehouse-Regulations"},{"title":"City Council Approves Regulations on Data Centers","url":"https://www.aurora.il.us/News-articles/City-Council-Approves-Regulations-on-Data-Centers"},{"title":"Aurora City Council to vote on data center regulations","url":"https://wgntv.com/news/aurora/white-noise-on-steroids-aurora-city-council-to-vote-on-data-center-regulations-as-residents-clamor-for-change/"},{"title":"Aurora residents warn Sangamon County about data ...","url":"https://www.sj-r.com/story/news/local/2026/03/20/aurora-residents-warn-sangamon-county-about-data-center-noise/89202083007/"},{"title":"Aurora, IL: CHI1-CHI3 - Noise Communication","url":"https://www.cyrusone.com/data-centers/north-america/aurora-il-back-up-generator-schedule"}],"runId":"srun_c0e944bd89584b54907731764ed0bcb8","classifiedAt":"2026-07-02T22:55:54.947Z"},"1322":{"community_note":"Residents living behind the Diehl Rd. campus organized over a constant generator hum/vibration, leading Aurora to enact a 180‑day moratorium and then adopt new restrictions, while the City and CyrusOne continue mitigation/repair work.","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"Operator specs list “No water consumption for cooling,” and Aurora considered rules addressing “noise, water and power” for data centers; no site‑specific gallons/day or discharge issues were found.","grid_note":"The campus has periodically run backup generators at 2805 Diehl Rd during utility events, while ComEd signed transmission security agreements with large data centers region‑wide.","citations":[{"title":"Aurora City Council approves proposed restrictions for new ...","url":"https://www.cbsnews.com/chicago/news/aurora-city-council-proposed-data-center-restrictions/"},{"title":"Aurora City Council to vote on data center regulations","url":"https://wgntv.com/news/aurora/white-noise-on-steroids-aurora-city-council-to-vote-on-data-center-regulations-as-residents-clamor-for-change/"},{"title":"City Council Approves Regulations on Data Centers","url":"https://www.aurora.il.us/News-articles/City-Council-Approves-Regulations-on-Data-Centers"},{"title":"UPDATE: CyrusOne Data Center Repair","url":"https://www.aurora.il.us/News-articles/UPDATE-CyrusOne-Data-Center-Repair"},{"title":"Aurora, IL: CHI1-CHI3","url":"https://www.cyrusone.com/data-centers/north-america/aurora-il"}],"runId":"srun_c0e944bd89584b544acf4b1965bf548d","classifiedAt":"2026-07-02T22:55:54.947Z"},"1323":{"community_note":"Aurora enacted a 180‑day citywide moratorium in 2025 and adopted new data‑center regulations in 2026 after residents raised concerns about noise, energy, water, and health; no Edged ORD01‑1–specific organized opposition or litigation was found.","water_impact":"low","ai_evidence":"Edged describes the Aurora campus as designed for high‑density AI workloads, and industry reporting positions ORD01‑1 as a purpose‑built, high‑density phase of a 96 MW campus; no named GPU supercluster or training‑cluster tenant has been publicly disclosed for ORD01‑1.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Waterless, closed-loop cooling with zero cooling-water use reported for the Chicago campus; Edged cites ~395 million gallons/year savings per 100 MW versus typical systems, and no aquifer/drought/discharge issues were identified.","grid_note":"24 MW building within a 96 MW campus; Illinois officials cite data centers as a major share of new load growth and recent bill pressures, with no ORD01‑1–specific rate case, curtailment, or new‑generation requirement identified.","citations":[{"title":"New Data Center and Warehouse Regulations","url":"https://www.aurora.il.us/Property-Business/Zoning-and-Planning/New-Data-Center-and-Warehouse-Regulations"},{"title":"Aurora discusses new data center regulations","url":"https://www.nbcchicago.com/news/local/city-of-aurora-to-discuss-and-take-potential-vote-on-new-data-center-regulations/3913114/"},{"title":"Aurora's data centers: Residents voice concerns","url":"https://wgntv.com/news/aurora/data-center-impact-aurora-residents/"},{"title":"Residents voice concerns ahead of end of Aurora data ...","url":"https://www.fox32chicago.com/news/residents-voice-concerns-ahead-end-aurora-data-center-pause"},{"title":"Edged U.S. | Sustainability","url":"https://edged.us/sustainability"}],"runId":"srun_c0e944bd89584b54052765a8cf828712","classifiedAt":"2026-07-02T22:55:54.947Z"},"1327":{"community_note":"No Chicago I–specific opposition was found; state officials are pushing to curb data center expansion while Stream has secured Elk Grove zoning approvals, and the facility operates fully leased.","water_impact":"unknown","ai_evidence":"Stream lists Chicago I (2080 Lunt Ave) as a fully leased Hyperscale Data Center with 155,189 SF and 31 MW of utility power; no public tenant/GPU cluster disclosures were identified for this site.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No published gallons/day, source, or discharge data were located for Chicago I.","grid_note":"Chicago I lists 31 MW of utility power, while ComEd built a 260 MW substation to serve Stream’s Elk Grove campus and state reporting notes ratepayers have borne hundreds of millions in data center interconnection costs.","citations":[{"title":"'Data center capital' of the Midwest expands as Pritzker ...","url":"https://www.nbcchicago.com/news/local/data-center-capital-of-the-midwest-expands-as-pritzker-calls-for-regulations/3952720/"},{"title":"Stream DC gains approval for data center zoning request ...","url":"https://www.datacenterdynamics.com/en/news/stream-dc-gains-approval-for-data-center-zoning-request-in-elk-grove-illinois/"},{"title":"Chicago Data Center Solutions","url":"https://www.streamdatacenters.com/locations/chicago-data-centers/"},{"title":"Stream Data Centers - Development & Colocation Services","url":"https://www.streamdatacenters.com/"},{"title":"'Data center capital' of the Midwest expands as Pritzker ...","url":"https://www.nbcchicago.com/news/local/data-center-capital-of-the-midwest-expands-as-pritzker-calls-for-regulations/3952720/"}],"runId":"srun_c0e944bd89584b54bf7f7e7b8f38f283","classifiedAt":"2026-07-02T22:55:54.947Z"},"1328":{"community_note":"Elk Grove Village residents raised concerns in 2026 about energy/water use, utility bills, and noise from data centers while the governor proposed pausing tax incentives, but no lawsuit or organized opposition specific to Stream Chicago II was reported.","water_impact":"low","ai_evidence":"Stream identifies Chicago II as a 226,000 SF facility providing 32 MW of critical capacity, and third-party listings note it was fully leased by cloud providers and hyperscale tenants in 2023, with no public announcements of GPU superclusters or AI-specific tenants.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No site-specific gallons/day reported; local officials said modern data centers use closed‑loop, deionized‑water cooling that recirculates and reduces routine water use.","grid_note":"Listed at 32 MW in ComEd territory; a new ComEd substation was started for the nearby Stream campus, and recent ComEd bill increases have been reported with data center growth cited as a contributing factor.","citations":[{"title":"Elk Grove Village Mayor defends data centers","url":"https://www.chicagotribune.com/2026/05/21/elk-grove-village-data-centers/"},{"title":"Elk Grove Village mayor defends data centers ahead of ...","url":"https://wgntv.com/news/northwest-suburbs/elk-grove-village-mayor-defends-data-centers-ahead-of-deadline-on-regulation-bill/"},{"title":"Mayor Touts Data Center Benefits At Well-Attended Elk ...","url":"https://www.journal-topics.com/articles/mayor-touts-data-center-benefits-at-well-attended-elk-grove-town-hall/"},{"title":"Cooling Without the Drain: How Closed-Loop Systems Cut ...","url":"https://blog.vantage-dc.com/2026/04/22/cooling-without-the-drain-how-closed-loop-systems-cut-day-to-day-water-use/"},{"title":"Chicago Data Center Solutions","url":"https://www.streamdatacenters.com/locations/chicago-data-centers/"}],"runId":"srun_c0e944bd89584b5479d7980a89bed234","classifiedAt":"2026-07-02T22:55:54.947Z"},"1330":{"community_note":"No organized opposition specific to Skybox Chicago I was found; debates in Chicagoland have centered on other facilities with residents complaining about generator noise (status: ongoing debate).","water_impact":"low","ai_evidence":"DigiCo lists Chicago CHI1 as a 32 MW hyperscale data centre under a 15-year lease to a global hyperscale customer, with no public evidence of AI/GPU deployments.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"","grid_note":"Dual 34.5 kV ComEd feeds via the Itasca substation serve the ~30 MW facility.","citations":[{"title":"Data centers spark debate across Chicagoland: 'It was like ...","url":"https://www.fox32chicago.com/news/data-centers-spark-debate-across-chicagoland"},{"title":"What We Do | Data Center Solutions","url":"https://www.skyboxdatacenters.com/what-we-do"},{"title":"Chicago CHI1","url":"https://www.digi-co.com.au/location/chicago-chi1/"},{"title":"Australia's DigiCo to sell US data centre for $750 million","url":"https://www.reuters.com/world/asia-pacific/australias-digico-infrastructure-reit-sell-chicago-data-center-750-million-2026-05-05/"},{"title":"Skybox Chicago I Data Center | 800 E Devon Ave (30 MW)","url":"https://www.datacentermap.com/usa/illinois/chicago/skybox-chicago-i/"}],"runId":"srun_c0e944bd89584b54342fb2dd90e59189","classifiedAt":"2026-07-02T22:55:54.947Z"},"1331":{"community_note":"No organized opposition reported; Northlake’s mayor publicly welcomed Aligned’s campus as the city’s third data center development, and no lawsuits or complaints were found.","water_impact":"low","ai_evidence":"Marketed as “AI & Cloud-Ready” with liquid-cooling support and Delta³ enabling up to 50 kW per rack, but no verified ORD-01 GPU supercluster deployments or named AI tenants were identified.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No gallons/day figure disclosed; operator cites closed-loop, air-cooled and waterless cooling that recycles water and “significantly limit[s] ongoing water consumption,” with no ORD-01-specific drought/aquifer or discharge issues reported.","grid_note":"ORD-01 is a 220,000-sf, 48 MW facility expandable to ~60 MW; regionally, ComEd is ~22 GW at peak and recent PJM capacity costs have raised bills, with no Northlake-specific curtailment or upgrade dispute reported.","citations":[{"title":"Aligned begins work at Chicago data center campus - DCD","url":"https://www.datacenterdynamics.com/en/news/aligned-begins-work-at-chicago-data-center-campus/"},{"title":"Aligned Breaks Ground on Chicago Hyperscale Data ...","url":"https://aligneddc.com/press-release/aligned-breaks-ground-on-chicago-hyperscale-data-center-campus/"},{"title":"Aligned Data Centers: Adaptive Data Centers for Growth","url":"https://aligneddc.com/"},{"title":"Advanced Data Center Cooling","url":"https://aligneddc.com/cooling-innovation/"},{"title":"Protecting Regional Water Resources","url":"https://aligneddc.com/case-studies/case-study-protecting-regional-water-resources/"}],"runId":"srun_c0e944bd89584b54ee87cf6ced7b4806","classifiedAt":"2026-07-02T22:55:54.947Z"},"1332":{"community_note":"No site-specific organized opposition, lawsuit, zoning fight, moratorium campaign, or noise/air-quality complaint was found for Aligned ORD-02 in Northlake; no action reported as of now.","water_impact":"low","ai_evidence":"Marketed as “AI-Ready” in Chicago with OCP Ready for Hyperscale certification; no public disclosures of named AI tenants or GPU superclusters at ORD-02.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Near-zero WUE from a closed-loop chilled-water design that continuously recycles and reuses water; no gallons/day figure, source-stress, or discharge issues reported.","grid_note":"36 MW facility with campus substations totaling 170 MW; FERC accepted a Transmission Security Agreement between ComEd and Aligned to secure transmission reliability/cost recovery for large-load service.","citations":[{"title":"Sustainable, AI-Ready Data Centers in Chicago, IL | Aligned","url":"https://aligneddc.com/chicago-data-centers/"},{"title":"Advanced Data Center Cooling","url":"https://aligneddc.com/cooling-innovation/"},{"title":"Aligned ORD-02 Data Center","url":"https://baxtel.com/data-center/aligned-ord-02"},{"title":"Aligned Data Centers: Adaptive Data Centers for Growth","url":"https://aligneddc.com/"},{"title":"Protecting Regional Water Resources","url":"https://aligneddc.com/case-studies/case-study-protecting-regional-water-resources/"}],"runId":"srun_c0e944bd89584b54a8dfe93f0270dfb7","classifiedAt":"2026-07-02T22:55:54.947Z"},"1333":{"community_note":"No organized, ORD-03-specific opposition or litigation was found; residents raised concerns at a well-attended Elk Grove Village town hall and broader Chicagoland debate has focused on noise and mitigation, while village plan commissioners advanced approvals.","water_impact":"low","ai_evidence":"Aligned describes cooling that \"integrates with our DeltaFlow~ liquid cooling to accommodate high-density AI and HPC deployments\" and lists ORD-03 on its Chicago campus pages, indicating AI-ready design; no public announcement of an AI training cluster or named GPU tenant at ORD-03 was identified in the cited sources.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day figure was found; Aligned cites an estimated 400,000 gallons/year saved at ORD-03 and local officials note about 2.69 gallons per square foot per year for data centers, with no aquifer/drought/discharge concern flagged in these sources.","grid_note":"Campus tracked around 100 MW and served by ComEd; regional reporting says data centers are contributing to higher Chicago-area energy costs.","citations":[{"title":"Mayor Touts Data Center Benefits At Well-Attended Elk ...","url":"https://www.journal-topics.com/articles/mayor-touts-data-center-benefits-at-well-attended-elk-grove-town-hall/"},{"title":"Data centers spark debate across Chicagoland: 'It was like ...","url":"https://www.fox32chicago.com/news/data-centers-spark-debate-across-chicagoland"},{"title":"Elk Grove Village Plan Commission Recommends ...","url":"https://www.journal-topics.com/articles/elk-grove-village-plan-commission-recommends-approval-of-data-center/"},{"title":"Cooling and Water Reduction at ORD-03","url":"https://aligneddc.com/blog/sustainable-cooling/"},{"title":"Mayor Touts Data Center Benefits At Well-Attended Elk ...","url":"https://www.journal-topics.com/articles/mayor-touts-data-center-benefits-at-well-attended-elk-grove-town-hall/"}],"runId":"srun_c0e944bd89584b54633803cef434bf00","classifiedAt":"2026-07-02T22:55:54.947Z"},"1334":{"community_note":"","water_impact":"unknown","ai_evidence":"This facility is part of an Azure availability zone and the Azure platform lists region-level availability for Azure OpenAI/Foundry models, supporting AI inference/cloud AI workloads at the regional footprint; no proof was found of a local GPU training supercluster at 601 Northwest Ave.","grid_impact":"high","ai_class":"ai-inference","community_pushback":"none-found","water_note":"Municipal water via Northlake/Chicago is used locally, and Microsoft says Illinois datacenters use direct evaporative cooling and water‑cooled chillers; no facility-specific gallons/day or discharge data were found.","grid_note":"Reported power ranges from 25–50 MW to 158 MW for Microsoft Northlake; regional sources report data centers contributing to higher ComEd prices/bills.","citations":[{"title":"Microsoft Chicago Northlake Data Center","url":"https://baxtel.com/data-center/microsoft-chicago-northlake"},{"title":"ComEd Celebrates International Data Center Day!","url":"https://poweringlives.comed.com/comed-celebrates-international-data-center-day/"},{"title":"Aligned breaks ground on Northlake data center","url":"https://www.chicagobusiness.com/commercial-real-estate/northlake-nabs-another-big-data-center-tech-boom-continues/"},{"title":"Welcome to the Big Energy Data Center","url":"https://www.citizensutilityboard.org/welcome-big-energy-data-center/"},{"title":"Sustainable, AI-Ready Data Centers in Chicago, IL | Aligned","url":"https://aligneddc.com/chicago-data-centers/"}],"runId":"srun_c0e944bd89584b541d901d91b688ee05","classifiedAt":"2026-07-02T22:55:55.256Z"},"1339":{"community_note":"","water_impact":"unknown","ai_evidence":"Public information points to traditional colocation and interconnection uses (United IX PoP, Trilogy edge platform, ISI’s network core) without any disclosed GPU training clusters or hyperscale AI tenants.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Chilled‑water cooling with water‑side economizers is documented, but no gallons/day consumption, water-source stress, or discharge issues are reported for this site.","grid_note":"Delivered about 2 MW to market to date at 603 Discovery; no public ComEd upgrade, rate-case, or new transmission reporting has been tied to this site.","citations":[{"title":"ISI Communications moves network core to Chicago's New ...","url":"https://datacenternews.asia/story/isi-communications-moves-network-core-to-chicago-s-new-continuum-data-centers"},{"title":"SBA Edge: 603 Discovery Data Center","url":"https://baxtel.com/data-center/sba-edge-603-discovery"},{"title":"SBA Edge – Your Data Starts Here","url":"https://www.sbaedge.com/"},{"title":"SBA Edge | 603 Discovery Drive, Chicago","url":"https://datacenterhawk.com/marketplace/providers/sba-edge/603-discovery-drive/115940"},{"title":"SBA Edge Chicago","url":"https://www.sbaedge.com/sba-edge-chicago/"}],"runId":"srun_c0e944bd89584b54d7e83620fa74408a","classifiedAt":"2026-07-02T22:55:55.256Z"},"1344":{"community_note":"More than 500 residents attended a May 2026 Elk Grove Village town hall raising concerns about future data center expansion (water, power/AI, noise/generators), while village leaders defended the projects.","water_impact":"low","ai_evidence":"Marketed as AI‑ready with liquid‑cooling and high‑density GPU support, but no public AI tenant or GPU supercluster announcement for ORD‑03.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No ORD‑03 gallons/day figure was published; Aligned cites closed‑loop cooling with an estimated 400,000 gallons saved per year at ORD‑03 and describes closed‑loop/air‑cooled designs that limit ongoing water use.","grid_note":"ORD‑03/ORD‑04 is a 100‑MW under‑construction project, and ComEd filed a $15.3B grid plan as the utility also builds a 260‑MW substation in Elk Grove to serve data center load.","citations":[{"title":"More than 500 residents flood Elk Grove Village town hall ...","url":"https://www.yahoo.com/news/us/articles/more-500-residents-flood-elk-230600626.html"},{"title":"Elk Grove Village residents question future of data center ...","url":"https://www.fox32chicago.com/news/elk-grove-village-residents-question-future-data-center-expansion"},{"title":"Elk Grove Village mayor defends data centers ahead of ...","url":"https://wgntv.com/news/northwest-suburbs/elk-grove-village-mayor-defends-data-centers-ahead-of-deadline-on-regulation-bill/"},{"title":"Aligned Data Centers: Adaptive Data Centers for Growth","url":"https://aligneddc.com/"},{"title":"Advanced Data Center Cooling","url":"https://aligneddc.com/cooling-innovation/"}],"runId":"srun_c0e944bd89584b54924050f37f426c0b","classifiedAt":"2026-07-02T22:55:55.256Z"},"1348":{"community_note":"Flint Riverkeeper and local organizers are actively opposing Equinix’s AT10x NPDES discharge to Clear Creek over water impacts [1].","water_impact":"high","ai_evidence":"An industry profile states AT10x is integrated into Equinix’s xScale portfolio to support high-density AI and massive cloud workloads [5].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Opposition posts claim the campus could use about 3.5 million gallons/day of drinking water with roughly 90% lost to evaporation during cooling [4].","grid_note":"The planned Hampton xScale campus is listed at roughly 240 MW of IT capacity [8].","citations":[{"title":"Equinix, Inc. – AT10x (Henry County)","url":"https://www.flintriverkeeper.org/wp-content/uploads/2026/03/2026.03.27_Comments-on-Equinix-Data-Center-Draft-NPDES-Permit_final.pdf"},{"title":"Summary Page","url":"https://geos.epd.georgia.gov/GA/GEOS/Public/EnSuite/Shared/pages/util/StreamDoc.ashx?id=1167588&type=PERMIT_FILLED_OBJECT"},{"title":"Equinix: Hampton AT10x Data Center","url":"https://baxtel.com/data-center/equinix-hampton-at10x"},{"title":"In Georgia, stakeholders still can't agree on data center ...","url":"https://www.latitudemedia.com/news/in-georgia-stakeholders-still-cant-agree-on-data-center-load-growth-numbers/"},{"title":"Equinix adds 1 GW to powered land pipeline, clocks 60% of ...","url":"https://newprojectmedia.com/earnings-equinix-adds-1-gw-to-powered-land-pipeline-clocks-60-of-4q25-bookings-from-ai-workloads/"}],"runId":"srun_c0e944bd89584b544c986a829aa8808c","classifiedAt":"2026-07-02T22:55:55.256Z"},"1349":{"community_note":"","water_impact":"low","ai_evidence":"QTS promotes liquid cooling tailored to AI workloads through its Freedom design [1], and DC4 is listed with 50+ kW/rack and full liquid cooling capability [2]; however, no named AI tenants or GPU cluster deployments at this building are publicly confirmed.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"QTS advertises “Zero water for operational cooling” for its data centers [3]; for context, a different QTS campus in Fayetteville, GA, was reported to have used roughly 29–30 million gallons of water without authorization during construction [4].","grid_note":"Georgia approved a major buildout to serve data center growth—Georgia Power planning roughly a 50% capacity increase at a cost of about $16.3 billion—and the utility explains how data centers are billed for their costs [7][8].","citations":[{"title":"Environmental Stewardship","url":"https://q.com/the-qts-difference/environmental-stewardship/"},{"title":"A data center drained 30M gallons of water unnoticed","url":"https://www.politico.com/news/2026/05/08/georgia-data-centers-water-00909988"},{"title":"QTS data center in Fayetteville, Georgia, used 29 million ...","url":"https://www.facebook.com/groups/1699215814102745/posts/1867137400643918/"},{"title":"America's data centers are thirsty. Rural towns are paying ...","url":"https://fortune.com/2026/05/13/data-center-georgia-arizona-water-wars/"},{"title":"'I can't drink the water' - life next to a US data centre","url":"https://www.bbc.com/news/articles/cy8gy7lv448o"}],"runId":"srun_c0e944bd89584b5406f0875521b22b11","classifiedAt":"2026-07-02T22:59:27.113Z"},"1350":{"community_note":"Douglas County adopted a 90-day moratorium on new data centers to study impacts and later set restrictions on noise, buffers, and water; no ATL-01-specific lawsuits or organized opposition were found.","water_impact":"low","ai_evidence":"Aligned highlights AI/HPC-focused cooling innovation, but its disclosed GPU cloud tenant (Lambda) is located at DFW-04 in Texas, not ATL-01.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No facility-specific withdrawal or discharge volumes were found; the operator cites air‑cooled, closed‑loop systems that significantly limit ongoing water use, while local reporting notes data centers can strain Douglas County’s water systems.","grid_note":"Georgia PSC materials tie rapid load growth to data centers—rising to 8,500 MW by 2025—and PSC staff estimated bills could increase about $20/month if the plan were fully approved, signaling high grid impact for large hyperscale sites.","citations":[{"title":"Douglas County imposes 90-day halt on data centers","url":"https://www.fox5atlanta.com/news/douglas-county-data-centers-moratorium"},{"title":"A 'wave' of data center ordinances sweep through GA ...","url":"https://www.gpb.org/news/2025/10/22/wave-of-data-center-ordinances-sweep-through-ga-counties-how-strict-are-they"},{"title":"Aligned Data Centers: Adaptive Data Centers for Growth","url":"https://aligneddc.com/"},{"title":"Aligned Data Centers ATL01 | 1551 N River Road, Atlanta","url":"https://datacenterhawk.com/marketplace/providers/aligned-data-centers/1551-n-river-road/atl01"},{"title":"Data centers use a lot of water. Georgia counties and ...","url":"https://www.wabe.org/data-centers-use-a-lot-of-water-georgia-counties-and-conservationists-are-looking-for-solutions/"}],"runId":"srun_c0e944bd89584b54c148a1e41874ea8e","classifiedAt":"2026-07-02T22:55:55.256Z"},"1356":{"community_note":"County-level: Douglas County commissioners approved a 90-day moratorium on new data centers on Mar. 19, 2025 amid resident concerns; no ATL02-specific lawsuits or noise campaigns were found.","water_impact":"low","ai_evidence":"ATL02 is presented as a 160MW hyperscale campus with new multi‑story buildings, but there are no ATL02‑specific disclosures of GPU superclusters, AI tenants, or liquid‑cooling retrofits; STACK’s NVIDIA DGX‑Ready marketing is generic to the portfolio, not tied to this site.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"DRI 4087 lists public water/sewer service with estimated water demand of ~0.031 MGD (~31,000 gpd) and sewage flow of ~0.017 MGD, and no site-specific drought/aquifer or discharge issues reported.","grid_note":"160MW campus served by Georgia Power with an adjacent substation, amid Georgia’s data-center demand rising to 8,500MW by 2025 and driving new generation and rate measures.","citations":[{"title":"Douglas County imposes 90-day halt on data centers","url":"https://www.fox5atlanta.com/news/douglas-county-data-centers-moratorium"},{"title":"A 'wave' of data center ordinances sweep through GA ...","url":"https://www.gpb.org/news/2025/10/22/wave-of-data-center-ordinances-sweep-through-ga-counties-how-strict-are-they"},{"title":"2023 Lithia Springs Data Center DRI 4087","url":"http://documents.atlantaregional.com/Land%20Use/Reviews/ID5376/2023%20Lithia%20Springs%20Data%20Center%20DRI%204087%20-%20Preliminary%20Report%20and%20Comments%20Request.pdf"},{"title":"ATL02","url":"https://www.stackinfra.com/locations/americas/atlanta/atl02/"},{"title":"Stack files to build two data centers outside Atlanta, Georgia","url":"https://www.datacenterdynamics.com/en/news/stack-files-to-build-two-data-centers-outside-atlanta-georgia/"}],"runId":"srun_c0e944bd89584b547ba0bbb7327f542f","classifiedAt":"2026-07-02T22:55:55.256Z"},"1364":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No site-specific water-use metrics or discharge issues are reported for Cogent Atlanta 1; Cogent lists a 7,826 sq ft colocation suite at 55 Marietta, and the carrier hotel advertises “500 tons of condensed water cooling” at the building level.","grid_note":"Small suite-level load with no Cogent-specific rate cases or grid-strain reports; the building owner (RadiusDC) has announced expansion at 55 Marietta to “support the next generation of AI and high-performance compute.”","citations":[{"title":"Marietta City Council faces opposition over data center plans","url":"https://www.wsbtv.com/news/local/cobb-county/marietta-city-council-faces-opposition-over-data-center-plans/LZ6OIWQCG5CJ3CCJBS5GKWUFVQ/"},{"title":"Hundreds of people packed Marietta City Hall on ...","url":"https://www.facebook.com/mdjonline/posts/hundreds-of-people-packed-marietta-city-hall-on-wednesday-as-residents-voiced-co/1586380283489040/"},{"title":"Cogent Atlanta","url":"https://www.cogentco.com/en/cogent-atlanta"},{"title":"Cogent Atlanta","url":"https://www.cogentco.com/en/cogent-atlanta"},{"title":"55 Marietta Street Data Center in Atlanta | RadiusDC (18 ...","url":"https://www.datacentermap.com/usa/georgia/atlanta/55-marietta/"}],"runId":"srun_c0e944bd89584b5435f8d446d5a64a88","classifiedAt":"2026-07-02T22:55:55.256Z"},"1376":{"community_note":"No organized local opposition identified for QTS at 12851 Foster; items surfaced online concern other QTS projects rather than this operational Overland Park site.","water_impact":"low","ai_evidence":"No facility-specific AI/GPU indicators: listings show a small 0.18 MW colocation site (~2,500 sq ft), and QTS’s DGX-Ready colocation certification is not linked to this address.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific gallons/day or source/discharge data found; QTS highlights water-free/closed-loop cooling in general and has cited about 600,000 gallons annually for a closed‑loop data center (not specific to this site).","grid_note":"Listed at about 0.18 MW with no reported Evergy upgrades; Evergy’s plan applies higher rates to hyperscale/very large users, not a small colo like this.","citations":[{"title":"City of Overland Park - Home","url":"https://opkansas.civicweb.net/"},{"title":"QTS Datacenters","url":"http://thealliancepartners.com/qts-datacenters/"},{"title":"Overland Park 1 DC1 - QTS Data Centers","url":"https://www.ocolo.io/colocation/qts-data-centers/overland-park-1-dc1/"},{"title":"Pioneering Water Efficiency and Sustainability in Data ...","url":"https://q.com/resources/pioneering-water-efficiency-and-sustainability-in-data-center-operations/"},{"title":"Same size. Not the same water use. A QTS closed-loop ...","url":"https://www.facebook.com/qtsdatacenters/posts/same-size-not-the-same-water-usea-qts-closed-loop-data-center-uses-about-600000-/1461407262694610/"}],"runId":"srun_c0e944bd89584b54f050ee09283ee6bd","classifiedAt":"2026-07-02T22:55:55.256Z"},"1390":{"community_note":"Residents have organized petitions and packed city council meetings to oppose the project over environmental and resource concerns; local deliberations are ongoing.","water_impact":"moderate","ai_evidence":"Proposed as a hyperscale campus (500+ MW, ~3.3M sq ft across up to seven buildings) by Alcove Development with MDH Partners, but no reporting of GPU superclusters, AI tenants, or liquid-cooling retrofits to date.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Developers say a fully air-cooled design reduces consumption, while residents focus on the Marais des Cygnes River supply as a concern.","grid_note":"Planned load is 500+ MW; interconnection/substation upgrades are expected, but specific rate cases or curtailment plans have not been reported in cited coverage.","citations":[{"title":"Osawatomie residents against data center gather signatures","url":"https://www.kmbc.com/article/osawatomie-data-center-petition-signatures/71486000"},{"title":"Yellowstone actor Mo Brings Plenty fights 'Project Catalyst' ...","url":"https://www.kshb.com/news/local-news/kansas/miami-county/yellowstone-actor-mo-brings-plenty-fights-project-catalyst-data-center-in-miami-county"},{"title":"Alcove Development and the City of Osawatomie ...","url":"https://www.osawatomieks.org/home/files/press-release-city-osawatomie-and-alcove-development"},{"title":"City of Osawatomie, Alcove Development Announce Plans ...","url":"https://ingrams.com/article/osawatomie-alcove-development-500-megawatt-data-center/"},{"title":"Marais Des Cygnes River at center of Miami County $1B ...","url":"https://www.kshb.com/news/local-news/kansas/miami-county/marais-des-cygnes-river-at-center-of-debate-over-proposed-miami-county-1b-data-center-deal"}],"runId":"srun_c0e944bd89584b54aaa908b8486c8962","classifiedAt":"2026-07-02T22:55:55.256Z"},"1394":{"community_note":"Active opposition from Osawatomie-area residents (including Mo Brings Plenty) over impacts like power, water, and neighborhood effects, even as the city and developer say the project is moving forward.","water_impact":"low","ai_evidence":"Announced as a 500+ MW data center campus by Alcove with MDH Partners, with no public disclosures of AI tenants or GPU superclusters.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Community-circulated details cite a 'fully air cooled' design and reduced water use compared to evaporative systems; no public gallons/day, source, or discharge figures were found.","grid_note":"Listed at 150 MW for an individual facility within a multi-phase 500+ MW campus, implying significant transmission/substation build-out; no rate-case or curtailment terms identified publicly.","citations":[{"title":"Osawatomie residents protest, call for data center moratorium","url":"http://kmbc.com/article/osawatomie-kansas-data-center-opposition-controversy/71435993"},{"title":"Yellowstone actor Mo Brings Plenty fights 'Project Catalyst' ...","url":"https://www.kshb.com/news/local-news/kansas/miami-county/yellowstone-actor-mo-brings-plenty-fights-project-catalyst-data-center-in-miami-county"},{"title":"City of Osawatomie, developer moving forward with data center","url":"http://kmbc.com/article/osawatomie-data-center-project-catalyst-moves-forward/71443450"},{"title":"Osawatomie and Alcove's new air-cooled data center ...","url":"https://www.facebook.com/groups/252244897106676/posts/1289040040093818/"},{"title":"Osawatomie's Project Catalyst reduces water consumption","url":"https://www.facebook.com/groups/1102418593201333/posts/26561194216897087/"}],"runId":"srun_c0e944bd89584b546501256bcef57893","classifiedAt":"2026-07-02T22:55:55.256Z"},"1396":{"community_note":"No organized opposition identified; BoiseDev reports city filings for ~38,000 sf initially at 9601 W Emerald and a preliminary application for ~31,000 sf more, with no site-specific lawsuits or moratoriums reported.","water_impact":"low","ai_evidence":"Marketing materials describe “AI-ready” colocation and support for AI/HPC workloads, but there are no disclosed GPU superclusters, named AI tenants, or confirmed training/inference deployments.","grid_impact":"low","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No gallons/day or source data reported; materials state hybrid air/liquid cooling with a closed-loop setup to minimize water waste.","grid_note":"Reported at 10 MW, with Idaho Power’s policy indicating large users fund interconnection and are not a general rate burden for others.","citations":[{"title":"Boise data center is set to open next year. Before ...","url":"https://boisedev.com/news/2026/03/26/valorc3-emerald/"},{"title":"ValorC3 Data Center","url":"https://boisedev.com/project/valorc3-data-center/"},{"title":"ValorC3 Boise 2 Data Center (10 MW)","url":"https://www.datacentermap.com/usa/idaho/boise/valorc3-boise-2-data-center/"},{"title":"Boise Data Center","url":"https://valorc3.com/boise-data-center/"},{"title":"Boise data center is set to open next year. Before ...","url":"https://boisedev.com/news/2026/03/26/valorc3-emerald/"}],"runId":"srun_c0e944bd89584b541f593f1a5bd86a24","classifiedAt":"2026-07-02T22:55:55.256Z"},"1402":{"community_note":"Idaho Press reported a mixed response with some residents opposing over Meta’s perceived politics, while no lawsuit or moratorium was noted and the project proceeded.","water_impact":"moderate","ai_evidence":"Meta reworked the Kuna (and sister) designs to support denser GPU deployments for AI workloads and publicly said the Kuna project was slowed to redesign for AI.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Phase 1 will use air-only cooling and Phase 2 will use water, with Meta investing $70M in a water/wastewater system now owned by the City of Kuna and supporting reclaimed-water reuse.","grid_note":"Set to be Idaho Power’s largest load with a renewable supply agreement via Clean Energy Your Way, and lawmakers moved to shield customers from rate impacts tied to large data-center loads; listings peg the project around 200 MW.","citations":[{"title":"Controversy in Kuna: Meta's new data center draws mixed ...","url":"https://www.idahopress.com/news/local/controversy-in-kuna-metas-new-data-center-draws-mixed-response/article_7635c83e-2575-11ed-b68d-5f47f7451ac5.html"},{"title":"How much water will Kuna's data centers use?","url":"https://boisedev.com/news/2026/03/20/data-center-water/"},{"title":"Meta's Kuna Data Center","url":"https://datacenters.atmeta.com/asset/kuna-data-center-info-sheet/"},{"title":"that's why our water stewardship program at the Kuna Data ...","url":"https://www.facebook.com/KunaDataCenter/posts/at-meta-we-believe-responsible-water-management-is-essential-for-a-sustainable-f/871488938831156/"},{"title":"Meta resumes construction of Texas and Idaho ...","url":"https://www.datacenterdynamics.com/en/news/meta-resumes-construction-of-texas-and-idaho-data-centers-with-new-ai-design/"}],"runId":"srun_c0e944bd89584b54d9b159cdd6b85b79","classifiedAt":"2026-07-02T22:55:55.256Z"},"1403":{"community_note":"Kootenai County commissioners approved a temporary moratorium on new data center building permits citing concerns including the Rathdrum Prairie Aquifer and infrastructure, but no report or filing names IonSwitch CDA01 or 600 W Appleway Ave [6][7][8].","water_impact":"unknown","ai_evidence":"IonSwitch markets VPS on “Dell servers with Dual Intel E5-2650” and dedicated “Intel Xeon E3-1220” systems, and offers colo cabinets such as 10A @ 120V and 30A @ 208V; there is no public mention of GPUs, AI tenants, or liquid cooling at CDA01 [3][4][2][1][5].","grid_impact":"low","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No CDA01 cooling-water usage or source is published; the county’s moratorium references the Rathdrum Prairie Aquifer in its findings but does not attribute any gallons/day to this site [1][7].","grid_note":"No public MW load or utility upgrade is tied to CDA01; IonSwitch advertises small cabinet circuits (e.g., 10A @ 120V, 20A @ 120V), while Avista discusses large-load data centers generally and separately reports frameworks for very large customers elsewhere [2][9][10].","citations":[{"title":"Moratorium imposed as data centers look to Kootenai County","url":"https://cdapress.com/news/2025/mar/02/kootenai-county-commissioners-approve-temporary-data-center-moratorium/"},{"title":"DATA CENTERS WHEREAS, the Rathdrum Prairie Aquifer ...","url":"https://www.kcgov.us/DocumentCenter/View/25322/25-Resolution---2025-23---Data-Center-Building-Permit-Moratorium"},{"title":"Kootenai County imposes moratorium on data center ...","url":"https://www.khq.com/news/kootenai-county-imposes-moratorium-on-data-center-building-permits/article_f622e15a-f79e-11ef-87ed-1bd380bdd67e.html"},{"title":"CDA01 Data Center","url":"https://www.ionswitch.com/datacenter"},{"title":"DATA CENTERS WHEREAS, the Rathdrum Prairie Aquifer ...","url":"https://www.kcgov.us/DocumentCenter/View/25322/25-Resolution---2025-23---Data-Center-Building-Permit-Moratorium"}],"runId":"srun_c0e944bd89584b549409727ca824cfd6","classifiedAt":"2026-07-02T22:55:55.256Z"},"1421":{"community_note":"","water_impact":"low","ai_evidence":"No public GPU/NVIDIA cluster or AI-tenant announcements; listings describe a 4.00 MW colocation/enterprise facility rather than an AI-specialized deployment.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Operator materials indicate no water consumption for cooling at CIN6, with no published gallons/day or source-stress data; third-party listings note water- and air-cooled chillers but provide no consumption figures.","grid_note":"Operational load served by Duke Energy Kentucky, with public listings citing 18.33 MW capacity and a 10–25 MW range; a PSC contract directory exists but no facility-specific transmission upgrades or ratepayer impacts were identified.","citations":[{"title":"CyrusOne — Florence, KY","url":"https://www.datacenter.fyi/facility/cyrusone-ky-eb81f37b"},{"title":"Our communities are growing, and Duke Energy is prepared ...","url":"https://www.facebook.com/duke.energy/videos/do-data-centers-impact-energy-reliability/1678687829921354/"},{"title":"Florence, KY: CIN6 - Data centers","url":"https://www.cyrusone.com/data-centers/north-america/florence-ky"},{"title":"CIN6 Florence - CyrusOne","url":"https://www.ocolo.io/colocation/cyrusone/cin6-florence/"},{"title":"Data centers are key to fight over Duke electric rates…","url":"https://www.canarymedia.com/articles/data-centers/duke-electric-rates-north-carolina"}],"runId":"srun_c0e944bd89584b544e618c2f98ef3de7","classifiedAt":"2026-07-02T22:55:55.256Z"},"1422":{"community_note":"","water_impact":"unknown","ai_evidence":"Marketed for AI/high-density workloads at Calvert 1, 2 & 3, but the site’s 2019 launch was as a blockchain hosting facility and no Calvert-specific named GPU tenant has been publicly identified.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"","grid_note":"150 MW energized capacity in a TVA-served area; TVA reports data centers at 18% of industrial load with growth projected to double by 2030 and is pursuing 6.2 GW of new generation, with a proposed data-center rate class under consideration.","citations":[{"title":"Core Scientific: High-Density Data Centers at Scale","url":"https://corescientific.com/"},{"title":"Kentucky Data Center | Scalable High-Density Facility","url":"https://corescientific.com/high-density-data-centers/calvert-city-ky/"},{"title":"High-Density Data Centers | Data Center Locations","url":"https://corescientific.com/high-density-data-centers/"},{"title":"Core Scientific Calvert City Data Center | 1035 Shar-Cal Rd","url":"https://www.datacentermap.com/usa/kentucky/calvert-city/core-scientific-calvert-city/"},{"title":"Core Scientific: Calvert 1, 2 & 3 — Marshall, Kentucky","url":"https://cleanview.co/data-centers/kentucky/882/core-scientific-calvert-1-2--3"}],"runId":"srun_c0e944bd89584b5408b9a6debb5f9370","classifiedAt":"2026-07-02T22:55:55.256Z"},"1423":{"community_note":"Local groups including SOKY Indivisible and the Bowling Green–Warren County NAACP pushed a six‑month pause over water, grid/rate, karst, noise and transparency concerns, but the city rejected the moratorium and approved data‑center regulations in June 2026 [1][2][3].","water_impact":"low","ai_evidence":"No confirmed AI tenant, GPU supercluster, or cloud-AI deployment is reported; LRDC is positioned as a small colocation/interconnection site with network provider presence, not an AI facility [1][2][3].","grid_impact":"low","ai_class":"not-ai","community_pushback":"some-concern","water_note":"WNKY reports a closed-loop chilled-water/cooling-tower system with about 31,000 gallons per month lost to evaporation—roughly six households—and no LRDC-specific source-stress or discharge issues noted [1][2].","grid_note":"Facility listings show approximately 3.0 MW capacity, and local reporting mentions standard large‑load request processes with no LRDC‑specific transmission, generation, or rate impacts reported [1][2].","citations":[{"title":"Bowling Green data center moratorium fails again ...","url":"https://bgdailynews.com/2026/06/16/bowling-green-data-center-moratorium-fails-again-regulations-given-final-approval/"},{"title":"Bowling Green rejects data center pause, advances ...","url":"https://www.wnky.com/bowling-green-rejects-data-center-pause-advances-regulations-after-lengthy-debate/"},{"title":"'Here to say no:' SOKY Indivisible discusses plan for data ...","url":"https://bgdailynews.com/2026/06/11/here-to-say-no-soky-indivisible-discusses-plan-for-data-center-opposition/"},{"title":"description: Western Kentucky University Lost River Data Center is a data center operated by Western Kentucky University in Bowling Green, KY, US. Power capacity: 3.0 MW. View specs, location, power & connectivity on DC Hub. title: Western Kentucky University Lost River Data Center — Data Center","url":"https://dchub.cloud/facilities/western-kentucky-university-lost-river-data-center-a0ced38c"},{"title":"Lost River Data Center in Bowling Green | BGMU Fiber","url":"https://www.datacentermap.com/usa/kentucky/bowling-green/lost-river-data-center/"}],"runId":"srun_c0e944bd89584b54c311c08103cd4f15","classifiedAt":"2026-07-02T22:55:55.256Z"},"1424":{"community_note":"Local residents organized opposition and a petition, the developer sued Simpson County over a new data-center ordinance, and the Franklin Planning & Zoning Commission approved the preliminary plan in early March 2026.","water_impact":"unknown","ai_evidence":"No source confirms GPUs, AI training clusters, or an AI tenant; the project is described as a large-scale data storage and service campus.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day figure is published; the developer touts closed-loop cooling, while local reporting notes that data centers historically consume millions of gallons of water.","grid_note":"Plans call for regulated on-site energy infrastructure with ancillary/on-site power generation; no independently confirmed MW figure is published.","citations":[{"title":"'Feet to the fire': Preliminary plan for Franklin data center ...","url":"https://www.wkyufm.org/news/2026-03-04/feet-to-the-fire-preliminary-plan-for-franklin-data-center-approved"},{"title":"Data center developer sues Simpson County government ...","url":"https://www.lpm.org/news/2026-01-28/data-center-developer-sues-simpson-county-government-over-land-use-ordinance"},{"title":"Petition with a Mission: STOP DATA CENTER ...","url":"https://www.change.org/p/petition-with-a-mission-stop-data-center-development-on-portland-tn-franklin-ky-line"},{"title":"Data center proposal in Franklin, Kentucky, effectively ...","url":"https://www.datacenterdynamics.com/en/news/data-center-proposal-in-franklin-kentucky-gets-approval-from-planning-and-zoning-commission/"},{"title":"TenKeyDataCenter — The Future of Data Infrastructure","url":"https://tenkeydatacenter.com/"}],"runId":"srun_c0e944bd89584b547d69dd30fa19277a","classifiedAt":"2026-07-02T22:55:55.256Z"},"1425":{"community_note":"No organized opposition or legal challenges were found specific to KUSI; recent Kentucky pushback has centered on Cave City proposals, with lawsuits over a moratorium and zoning concerns still unfolding.","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"","grid_note":"No public MW is disclosed for KUSI; it’s listed as a 2,300‑sq‑ft per‑U colocation site, while EKPC’s special data‑center rate begins at 15 MW, and no Blue Grass Energy upgrade or rate case links to this facility.","citations":[{"title":"Lawsuit challenges Cave City data center moratorium","url":"https://www.wcluradio.com/2026/06/09/lawsuit-challenges-cave-city-data-center-moratorium/"},{"title":"Cave City at risk from data centers without zoning protection","url":"https://www.facebook.com/clineforcavecity/posts/i-have-stayed-quiet-and-tried-to-handle-this-the-right-way-behind-the-scenes-but/1408341997983139/"},{"title":"How Data Centers Use Water, and How We're Working to ...","url":"https://blog.equinix.com/blog/2024/09/19/how-data-centers-use-water-and-how-were-working-to-use-water-responsibly/"},{"title":"Kentucky Underground Storage - Company Profile","url":"https://www.datacentermap.com/c/kentucky-underground-storage/"},{"title":"Kentucky Underground Storage - Company Profile","url":"https://www.datacentermap.com/c/kentucky-underground-storage/"}],"runId":"srun_c0e944bd89584b5437c1f7e37fc8c93b","classifiedAt":"2026-07-02T22:55:55.256Z"},"1426":{"community_note":"Lexington residents and officials opposed proposed new data-center developments (e.g., a DartPoints expansion), leading to a city moratorium; no coverage identified naming Gearheart’s 1003 Winchester Rd site.","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No public data on gallons/day or cooling source for this site; Kentucky requires authorization for water withdrawals of 10,000+ gpd.","grid_note":"No published MW or KU/PSC filings specific to a large data-center interconnection at 1003 Winchester Rd were identified.","citations":[{"title":"Proposed Lexington data center draws pushback","url":"https://spectrumnews1.com/ky/louisville/news/2026/06/08/texas-based-data-center-coming-to-lexington"},{"title":"Data Centers in Lexington | Engage LexingtonKY","url":"https://engage.lexingtonky.gov/DataCenters"},{"title":"About Gearheart","url":"https://gearheart.com/aboutus/"},{"title":"Gearheart Data center Lexington Ky","url":"https://gdc-lex.com/"},{"title":"Water Withdrawal - Kentucky Energy and Environment Cabinet","url":"https://eec.ky.gov/Environmental-Protection/Water/Protection/Pages/WaterWithdrawal.aspx"}],"runId":"srun_c0e944bd89584b54f21a1192ea96fbdc","classifiedAt":"2026-07-02T22:55:55.256Z"},"1427":{"community_note":"No organized opposition specific to Windstream Lexington was found; countywide, the Lexington Urban County Council imposed a moratorium on new data center approvals, signaling general concern while the pause is in effect.","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No facility-specific gallons/day or cooling-water details were found; broader reporting notes companies rarely disclose exact water use.","grid_note":"No KU load or upgrade details were found for this site; utility and press coverage focus on other projects (e.g., LG&E’s first hyperscale customer) and broader pipeline activity.","citations":[{"title":"Council temporarily halts data center development in ...","url":"https://news.civiclex.org/council-temporarily-halts-data-center-development-in-fayette-county/"},{"title":"Lexington City Council passes moratorium on data center ...","url":"https://www.lex18.com/news/covering-kentucky/lexington-city-council-passes-moratorium-on-data-center-development"},{"title":"Lexington could pursue land use regulations for data centers","url":"https://www.kentucky.com/news/local/counties/fayette-county/article315098305.html"},{"title":"Data centers consume massive amounts of water","url":"https://theconversation.com/data-centers-consume-massive-amounts-of-water-companies-rarely-tell-the-public-exactly-how-much-262901"},{"title":"Data Center Water Use","url":"https://mostpolicyinitiative.org/science-note/data-center-water-use/"}],"runId":"srun_c0e944bd89584b54ac722a45f5c20e61","classifiedAt":"2026-07-02T22:55:55.549Z"},"1428":{"community_note":"No reporting found that targets BluegrassNet/535 W 2nd St specifically; however, Lexington residents and groups have opposed proposed data-center developments and LFUCG adopted a moratorium on new approvals through Oct. 31, 2026.","water_impact":"unknown","ai_evidence":"Public listings characterize the Lexington site as traditional colocation and managed hosting/VPS; no public evidence of GPU/HPC clusters, AI tenants, or AI-specific retrofits.","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No facility-specific public reporting found for gallons/day, water source, or discharge for this site.","grid_note":"","citations":[{"title":"Lexington community voices opposition to data centers at ...","url":"https://www.wkyt.com/2026/06/16/lexington-community-voices-opposition-data-centers-packed-town-hall/"},{"title":"Lexington City Council passes moratorium on data center ...","url":"https://www.lex18.com/news/covering-kentucky/lexington-city-council-passes-moratorium-on-data-center-development"},{"title":"Council temporarily halts data center development in ...","url":"https://news.civiclex.org/council-temporarily-halts-data-center-development-in-fayette-county/"},{"title":"Data Centers in Louisville and Lexington, KY","url":"https://www.bluegrass.net/datacenter/"},{"title":"BluegrassNet: Lexington Data Center","url":"https://www.datacenters.com/bluegrassnet-lexington"}],"runId":"srun_c0e944bd89584b5466ca44f49dd367be","classifiedAt":"2026-07-02T22:55:55.549Z"},"1430":{"community_note":"Lexington’s Urban County Council imposed a countywide moratorium on data center development following community feedback, but no opposition tied specifically to CenterServ at 2333 Alexandria Dr. was found.","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No facility-specific gallons/day, water source, or cooling method is disclosed for 2333 Alexandria Dr.; the directory omits size and infrastructure details.","grid_note":"No verification of the claimed 999 MW or any KU interconnection/upgrades for 2333 Alexandria; statewide documents describe multi‑GW data center pipelines and potential ratepayer risk in general, not this facility.","citations":[{"title":"Data Centers in Lexington | Engage LexingtonKY","url":"https://engage.lexingtonky.gov/DataCenters"},{"title":"Lexington City Council passes moratorium on data center ...","url":"https://www.lex18.com/news/covering-kentucky/lexington-city-council-passes-moratorium-on-data-center-development"},{"title":"CenterServ: Lexington Data Center","url":"https://www.datacenters.com/centerserv-lexington"},{"title":"CenterServ: Lexington Data Center","url":"https://www.datacenters.com/centerserv-lexington"},{"title":"International AI and Machine Learning Server Network | CenterServ","url":"https://www.centerserv.com/AI-SERVER-NETWORK"}],"runId":"srun_c0e944bd89584b5421225ea7edff45ff","classifiedAt":"2026-07-02T22:55:55.549Z"},"1431":{"community_note":"No organized opposition targeting EnergyNet was found; city officials are developing land/energy/water guidelines for potential future data centers, with no active challenge to the existing site.","water_impact":"low","ai_evidence":"Service descriptions emphasize colocation, off-site backup, and disaster recovery with no public indication of GPU clusters, AI tenants, or liquid cooling.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No public gallons/day or source/discharge data found for this site; officials are formulating water-usage guidelines for potential future data-center proposals, not reporting impacts from EnergyNet.","grid_note":"Listed capacity is 3.0 MW; HES is a TVA local power company; no EnergyNet-specific grid upgrades or rate cases reported, while officials consider infrastructure rules for possible future data centers.","citations":[{"title":"Data centers in Hopkinsville? Officials share plan to protect ...","url":"https://christiancountynow.com/news/267762-data-centers-in-hopkinsville-officials-share-plan-to-protect-citys-infrastructure/"},{"title":"Hopkinsville Mayor talks data centers, gas prices and road aid ...","url":"https://whopam.com/2026/06/12/hopkinsville-mayor-talks-data-centers-gas-prices-and-road-aid-funds/"},{"title":"Data centers in Hopkinsville? Officials share plan to protect ...","url":"https://christiancountynow.com/news/267762-data-centers-in-hopkinsville-officials-share-plan-to-protect-citys-infrastructure/"},{"title":"HES energynet | Business internet","url":"https://hop-electric.com/business-internet/"},{"title":"Energynet Datacenter | DC Hub","url":"https://dchub.cloud/facilities/hopkinsville-electric-system-energynet-datacenter-2664f762"}],"runId":"srun_c0e944bd89584b54db7a7b560a8f1d58","classifiedAt":"2026-07-02T22:55:55.549Z"},"1432":{"community_note":"No organized opposition or litigation was found for Quad State Internet PAH1; AI data center debate in Paducah pertains to the DOE Paducah Site on federal land, not 1212 Helen St.","water_impact":"unknown","ai_evidence":"PAH1 is positioned as carrier-neutral colocation with dark fiber and wavelengths, hosting a Hurricane Electric PoP at 1212 Helen St; no public announcements indicate GPU superclusters or AI workloads, and a listing reports 3.0 MW capacity rather than hyperscale AI build-out [1][3][4].","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No site-specific public reporting was found on cooling-water consumption, source, or discharge for PAH1.","grid_note":"Reported capacity is 3.0 MW; no public records of utility upgrades or rate impacts tied to PAH1 were found, and the 999 MW figure is uncorroborated.","citations":[{"title":"Hurricane Electric POPs in Quad State Internet facilities","url":"https://pop.he.net/?name=Quad%20State%20Internet"},{"title":"U.S. Energy Department Seeks Proposals for AI Data ...","url":"https://www.energy.gov/em/articles/us-energy-department-seeks-proposals-ai-data-centers-energy-projects-paducah-site"},{"title":"Posted November 18, 2025 by Preston Louis Ursini","url":"https://quadstateinternet.net/posts"},{"title":"Quad State Internet: Home Fiber Internet - Metropolis and ...","url":"https://quadstateinternet.net/"},{"title":"Is the generator noise at Towne Center disturbing Pioneer ...","url":"https://www.facebook.com/groups/504617930896872/posts/663083865050277/"}],"runId":"srun_c0e944bd89584b5495d295f9852a3ded","classifiedAt":"2026-07-02T22:55:55.549Z"},"1433":{"community_note":"No organized opposition specific to Flexential Louisville–Downtown at 752 Barret Ave; 2026 protests and proposed rules target separate West Louisville hyperscale proposals, not this site.","water_impact":"unknown","ai_evidence":"No facility-specific public source verifies an AI training cluster or named GPU tenant at 752 Barret Ave; the site is marketed as able to handle AI/ML/GPU deployments, and Flexential’s GPU announcements either omit location or cite other cities, not Louisville–Downtown.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Cooling uses a chilled water system; no gallons/day or source/discharge details are published for this site.","grid_note":"Around 3.09 MW total power with no additional leaseable power under construction or planned; the site holds Louisville Metro APCD Minor Source Operating Permit O-1785-21-M for emergency generators.","citations":[{"title":"Residents raise noise, pollution concerns at meeting on ...","url":"https://www.wdrb.com/news/residents-raise-noise-pollution-concerns-at-meeting-on-proposed-west-louisville-data-center/article_a7cc514a-924f-45ef-8d84-5aeb49f2eaa2.html"},{"title":"Louisville proposed data center regulations. Here's what ...","url":"https://www.lpm.org/news/2026-06-10/louisville-proposed-data-center-regulations-heres-what-they-say"},{"title":"Flexential LOU04: See All services with pricing","url":"https://inflect.com/building/752-barret-avenue-louisville/flexential/datacenter/lou4"},{"title":"Louisville - Downtown data center","url":"https://www.flexential.com/data-centers/ky/louisville/downtown-data-center"},{"title":"Flexential Empowers Applied Digital's High-Performance ...","url":"https://www.flexential.com/resources/press-release/flexential-empowers-applied-digitals-high-performance-computing-solutions"}],"runId":"srun_c0e944bd89584b54502aaf48bf5f59f2","classifiedAt":"2026-07-02T22:55:55.549Z"},"1434":{"community_note":"","water_impact":"unknown","ai_evidence":"Official materials describe a 1.46 MW colocation facility with no published AI/GPU cluster deployments; a cited enterprise tenant, Forcht Bank, “relies on colocation,” indicating traditional enterprise use rather than AI training or inference.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No published gallons/day or water source for this facility; the official page lists uptime and cooling reliability but no water details.","grid_note":"1.46 MW critical load at 2101 Nelson Miller Pkwy; LG&E’s 130 MW initial service for the 400 MW PowerHouse hyperscale campus is a separate project.","citations":[{"title":"LG&E announces first major data center electric customer","url":"https://lge-ku.com/newsroom/press-releases/2025/01/16/lge-announces-first-major-data-center-electric-customer"},{"title":"PowerHouse Louisville","url":"https://www.americanrepartners.com/properties/powerhouse-louisville"},{"title":"'Hyperscale' data center project drawing resistance in rural ...","url":"https://www.lpm.org/news/2025-05-19/hyperscale-data-center-project-drawing-resistance-in-rural-oldham-county"},{"title":"Louisville - East data center","url":"https://www.flexential.com/data-centers/ky/louisville/east-data-center"},{"title":"Permits, Certifications, and Approvals","url":"https://eec.ky.gov/Environmental-Protection/Water/PermitCert/Pages/default.aspx"}],"runId":"srun_c0e944bd89584b540a82c89b44930ae3","classifiedAt":"2026-07-02T22:55:55.549Z"},"1436":{"community_note":"No facility-specific opposition found; Louisville’s draft rules/moratorium debates target large new hyperscale proposals in southwest Louisville, not the existing 848 S. 8th St. colo (rules posted; moratorium considered).","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific gallons/day or water-source details were found; 2026 coverage focuses on draft rules for new data centers (siting, grid, cooling) rather than this existing colo [6].","grid_note":"No public MW figure is published for Lumen Louisville 1 (listing says no power info offered) [8]; LG&E’s 335 MW initial/400 MW campus announcement refers to a different PowerHouse/Poe hyperscale site [7].","citations":[{"title":"Data Centers","url":"https://louisvilleky.gov/government/office-planning/data-centers"},{"title":"Louisville Metro Council considers moratorium on data ...","url":"https://www.wave3.com/2025/09/16/louisville-metro-council-considers-moratorium-data-centers/"},{"title":"Lumen: Louisville 1 Data Center","url":"https://www.datacenters.com/lumen-louisville-1"},{"title":"Louisville proposed data center regulations. Here's what ...","url":"https://www.lpm.org/news/2026-06-10/louisville-proposed-data-center-regulations-heres-what-they-say"},{"title":"848 S 8th St, Harrisburg, OR 97446","url":"https://www.zillow.com/homedetails/848-S-8th-St-Harrisburg-OR-97446/70512276_zpid/"}],"runId":"srun_c0e944bd89584b54c4dae2eafa2eb314","classifiedAt":"2026-07-02T22:55:55.549Z"},"1437":{"community_note":"No site-specific opposition was found for 715 S 7th St; city debate and opposition focused on a separate West Louisville/Camp Ground Road hyperscale project while draft regulations advanced in 2026.","water_impact":"unknown","ai_evidence":"Facility listings show a modest Lumen colocation at 715 S 7th St with 13,400 sq ft and no published GPU superclusters or AI tenant deployments; Lumen’s generic “AI-ready” marketing is not tied to this site.","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No site-specific water-use figure is published for 715 S 7th St; Louisville’s draft rules discuss encouraging closed-loop cooling citywide, while large water-use discussions locally relate to a separate 400 MW hyperscale campus.","grid_note":"No site-specific LG&E load is published for 715 S 7th St; the 400 MW figure cited in local news refers to a separate PowerHouse/Poe campus, and no source corroborates a 999 MW load here.","citations":[{"title":"Louisville proposed data center regulations. Here's what ...","url":"https://www.lpm.org/news/2026-06-10/louisville-proposed-data-center-regulations-heres-what-they-say"},{"title":"West Louisville data center approved despite opposition","url":"https://www.lpm.org/news/2026-03-05/west-louisville-data-center-approved-despite-opposition"},{"title":"Lumen: Louisville 2 Data Center","url":"https://www.datacenters.com/lumen-louisville-2"},{"title":"Lumen Louisville 2 Data Center | 715 S 7th St","url":"https://www.datacentermap.com/usa/kentucky/louisville/lumen-louisville-2/"},{"title":"Louisville proposed data center regulations. Here's what ...","url":"https://www.lpm.org/news/2026-06-10/louisville-proposed-data-center-regulations-heres-what-they-say"}],"runId":"srun_c0e944bd89584b547f32fc3d3b1c1b29","classifiedAt":"2026-07-02T22:55:55.549Z"},"1438":{"community_note":"Opposition in Louisville is centered on the separate West Louisville hyperscale campus by Poe/PowerHouse over energy, environmental, and noise concerns; no reporting was found opposing Lumen Louisville 3 at 332 W. Broadway.","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific gallons/day or source reporting was found; the profile notes temperature/humidity control and double-interlock dry‑pipe fire suppression.","grid_note":"No MW load is published for Lumen Louisville 3; LG&E’s 130 MW initial service toward a 400 MW campus refers to a different hyperscale project, not 332 W. Broadway.","citations":[{"title":"West Louisville data center approved despite opposition","url":"https://www.lpm.org/news/2026-03-05/west-louisville-data-center-approved-despite-opposition"},{"title":"Large-scale Louisville data center project advances ...","url":"https://www.wdrb.com/news/large-scale-louisville-data-center-project-advances-despite-community-protest/article_843c2208-7581-4d72-872c-b0e74418165e.html"},{"title":"Lumen: Louisville 3 Data Center","url":"https://www.datacenters.com/lumen-louisville-3"},{"title":"Lumen: Louisville 3 Data Center","url":"https://www.datacenters.com/lumen-louisville-3"},{"title":"Cogent Data Center - Louisville | 332 W. Broadway (0.2 MW)","url":"https://www.datacentermap.com/usa/kentucky/louisville/cogent-louisville/"}],"runId":"srun_c0e944bd89584b54398b198c580214a6","classifiedAt":"2026-07-02T22:55:55.549Z"},"1439":{"community_note":"No BluegrassNet/800 S 4th-specific organized opposition or complaints were found; citywide draft data-center regulations have prompted public discussion, but not a case against this facility.","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific gallons/day, water source, or discharge information was found for 800 S 4th St.","grid_note":"No public record identifies MW load or LG&E upgrades for BluegrassNet at 800 S 4th; separate LG&E materials describe a 400 MW Louisville campus (130 MW initial) and a $28.4M grid project, plus a statewide pipeline of ~12 GW—distinct from this site.","citations":[{"title":"Data Centers","url":"https://louisvilleky.gov/government/office-planning/data-centers"},{"title":"Louisville Metro proposed data center regulations re-ignite ...","url":"https://www.wave3.com/2026/06/11/louisville-metro-proposed-data-center-regulations-re-ignite-community-concerns/"},{"title":"Wilmington data center lawsuit moves to federal court","url":"https://www.wlwt.com/article/wilmington-data-center-lawsuit-moves-to-federal-court/71419677"},{"title":"Data Centers Confront Local Opposition Across America","url":"https://www.multistate.us/insider/2025/10/2/data-centers-confront-local-opposition-across-america"},{"title":"Generate White, Pink, Brown, Blue and Violet Noises","url":"https://hzgenerator.com/noise-generator"}],"runId":"srun_c0e944bd89584b54f3e333df3bc41497","classifiedAt":"2026-07-02T22:55:55.549Z"},"1440":{"community_note":"No IgLou-specific organized opposition or complaints were found; opposition in Louisville targets a separate West Louisville hyperscale project while the city advances draft data‑center regulations.","water_impact":"unknown","ai_evidence":"Operator materials and listings characterize the site as traditional local colocation; no public evidence of GPU superclusters, AI tenants, or liquid-cooling/high‑density retrofits.","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No gallons/day or source/discharge details were found; operator materials mention climate conditioning, not water‑intensive cooling.","grid_note":"No MW capacity is disclosed for IgLou; the 130 MW initial and ~400 MW eventual figures in Louisville refer to a separate West Louisville hyperscale project.","citations":[{"title":"West Louisville data center approved despite opposition","url":"https://www.lpm.org/news/2026-03-05/west-louisville-data-center-approved-despite-opposition"},{"title":"Residents raise noise, pollution concerns at meeting on ...","url":"https://www.wdrb.com/news/residents-raise-noise-pollution-concerns-at-meeting-on-proposed-west-louisville-data-center/article_a7cc514a-924f-45ef-8d84-5aeb49f2eaa2.html"},{"title":"Data Centers","url":"https://louisvilleky.gov/government/office-planning/data-centers"},{"title":"Data Center Server Colocation - Louisville","url":"https://www.iglou.com/server-colocation/"},{"title":"Data Center Server Colocation - Louisville","url":"https://www.iglou.com/server-colocation/"}],"runId":"srun_c0e944bd89584b54ae3b4d2ec29b20a0","classifiedAt":"2026-07-02T22:55:55.549Z"},"1441":{"community_note":"No organized opposition identified for 12901 Plantside Dr; current protests in Louisville focus on a separate proposed West Louisville data center over noise/pollution.","water_impact":"unknown","ai_evidence":"Listed as an enterprise data center with ~1 MW critical IT load and no verified GPU/AI deployments [1][2][3][5]; a later 365 Data Centers/Aphorio Carter announcement outlines a future AI‑ready pipeline that includes Louisville but does not confirm current AI workloads at this site [4][5].","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific gallons/day, water source, or discharge details were found for 12901 Plantside Dr.","grid_note":"About 1 MW critical IT capacity at 12901 Plantside Dr with no reported utility upgrades, while a separate Louisville campus is planned to scale to roughly 400 MW.","citations":[{"title":"Residents raise noise, pollution concerns at meeting on ...","url":"https://www.wdrb.com/news/residents-raise-noise-pollution-concerns-at-meeting-on-proposed-west-louisville-data-center/article_a7cc514a-924f-45ef-8d84-5aeb49f2eaa2.html"},{"title":"Aphorio Carter acquires two enterprise data centers in ...","url":"https://www.datacenterdynamics.com/en/news/aphorio-carter-acquires-two-enterprise-data-centers-in-kentucky-for-35m/"},{"title":"Community Files Lawsuit Over Stokes County Data Center ...","url":"https://southerncoalition.org/community-groups-residents-file-lawsuit-over-stokes-county-data-center-rezoning/"},{"title":"Jones County citizens sue county over data center ordinance","url":"https://www.macon.com/news/politics-government/article314778494.html"},{"title":"Louisville Data Centers - 23 Facilities from 5 Operators","url":"https://www.datacentermap.com/usa/kentucky/louisville/"}],"runId":"srun_c0e944bd89584b5468936771c270ece5","classifiedAt":"2026-07-02T22:55:55.549Z"},"1442":{"community_note":"","water_impact":"unknown","ai_evidence":"No public GPU supercluster or AI tenant is reported for the 1 MW Simpsonville enterprise/colo site; however, the operator and partner announced an ~200 MW AI‑ready conversion/development pipeline supporting 50–200+ kW cabinets, indicating forward-looking AI/HPC readiness rather than a live deployment.","grid_impact":"low","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No gallons/day or source/discharge details were published; legacy materials cite cool‑water coils, waterside economizer, and a Dolphin WaterCare system but do not quantify consumption.","grid_note":"Published load is 1 MW; no site-specific new generation, transmission upgrades, or rate cases were identified.","citations":[{"title":"Wastewater Discharge Permits - Kentucky Energy and ...","url":"https://eec.ky.gov/Environmental-Protection/Water/PermitCert/KPDES/Pages/default.aspx"},{"title":"Water Quality in Indiana: Wastewater Permitting","url":"https://www.in.gov/idem/cleanwater/wastewater-permitting/"},{"title":"Permits for treating and conveying water resources ...","url":"https://kingcounty.gov/en/dept/dnrp/waste-services/wastewater-treatment/facilities/npdes"},{"title":"Wastewater Permits Program","url":"https://mde.maryland.gov/programs/water/wwp/pages/index.aspx"},{"title":"Simpsonville Enterprise Data Center in Louisville (1 MW)","url":"https://www.datacentermap.com/usa/kentucky/louisville/simpsonville-enterprise-data-center/"}],"runId":"srun_c0e944bd89584b5422eb80c05a1ed6ea","classifiedAt":"2026-07-02T22:55:55.549Z"},"1443":{"community_note":"Residents and local groups have actively opposed the Camp Ground Road data center over air quality, water use, noise and utility bill impacts, yet the Louisville Planning Commission approved a revised site plan on Mar. 5, 2026, and city officials later proposed regulations to limit or ban hyperscale data centers [1][2][3].","water_impact":"unknown","ai_evidence":"Operator and listings market the Louisville campus for enterprise cloud and AI/ML workloads and position it as Kentucky’s first hyperscale campus, but no named AI tenant or GPU cluster deployment was found [1][2].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day disclosed; developers say water need depends on the tenant, Louisville Water notes usage varies and many centers are moving to closed-loop systems, and developers cite the Ohio River’s ~75 billion gallons/day flow near Louisville [1][2][3].","grid_note":"Planned as a 400 MW campus with a 130 MW initial phase, the project includes a cited $28.4M grid element and is part of broader LG&E/KU plans and approvals for new gas generation driven by data-center load growth [1][2][3][4].","citations":[{"title":"West Louisville data center approved despite opposition","url":"https://www.lpm.org/news/2026-03-05/west-louisville-data-center-approved-despite-opposition"},{"title":"Commission approves new site plan for data center, over ...","url":"https://www.whas11.com/article/news/investigations/focus/commission-approves-site-plan-data-center-over-strong-community-outrage/417-8401f75a-11fd-46da-8612-705ca9859941"},{"title":"Louisville Metro proposed data center regulations re-ignite ...","url":"https://www.wave3.com/2026/06/11/louisville-metro-proposed-data-center-regulations-re-ignite-community-concerns/"},{"title":"Large-scale data center coming to Louisville","url":"https://www.powerhousedata.com/news/developers-unveil-plans-for-large-tech-data-center-in-louisville"},{"title":"Data Centers","url":"https://louisvillewater.com/datacenters/"}],"runId":"srun_c0e944bd89584b54dd439a13090b01ab","classifiedAt":"2026-07-02T22:55:55.549Z"},"1444":{"community_note":"Grassroots group We Are Mason County, represented by attorney Hank Graddy, has sued county officials over rezoning for a 2,000+ acre hyperscale campus; a 2.2‑GW scale is cited in coverage and residents report displacement concerns, with the case moving forward in court.","water_impact":"moderate","ai_evidence":"An undisclosed Fortune 100/Unknown Company is evaluating a 2.2‑GW hyperscale campus in Mason County, KY, including a listing for an 'Unknown Company' facility at 3148 Big Pond Pike; no reports confirm GPU superclusters, specific AI tenants, or liquid‑cooling deployments.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Residents said the project was initially described as using river water for cooling, and one report notes a 200k‑sq‑ft data center can use 500k–650k gallons/day; no official usage or discharge figures for this campus have been published.","grid_note":"Coverage cites a planned 2.2‑GW data center to be served by EKPC, implying substantial new generation/transmission and dedicated substation capacity, with EKPC’s data center tariff approved in 2025 providing the service framework.","citations":[{"title":"Grassroots organization announces plans to file suit ...","url":"https://www.weku.org/the-commonwealth/2026-03-27/grassroots-organization-announces-plans-to-file-suit-against-mason-county-data-center-proposal"},{"title":"Anti-data center group in NKY sues over zoning for ...","url":"https://local12.com/news/local/anti-data-center-group-nky-sues-over-zoning-proposed-hyperscale-complex-northern-kentucky-mason-county-maysville-fiscal-court-planning-commission-construction-building-acres-farmers-farm-land-market-value-pollution-noise-energy-cost-cincinnati"},{"title":"Less than a week ago, an attorney representing Mason ...","url":"https://www.facebook.com/WCPO9/posts/less-than-a-week-ago-an-attorney-representing-mason-county-residents-threatened-/1393451346146152/"},{"title":"KY farmer on fight against hyperscale data center in Mason ...","url":"https://kentuckylantern.com/2026/03/30/stories-from-the-states-ky-farmer-on-fight-against-hyperscale-data-center-in-mason-county/"},{"title":"Neighbors voice concerns over Northern Kentucky data ...","url":"https://www.wcpo.com/news/northern-kentucky/im-being-ran-out-of-mason-county-neighbors-voice-concerns-over-northern-kentucky-data-center"}],"runId":"srun_c0e944bd89584b54979bb4621f804aac","classifiedAt":"2026-07-02T22:59:27.403Z"},"1460":{"community_note":"No organized opposition identified; Amazon told local media it has no plans to use the Owings Mills site as a data center while T. Rowe Price continues occupancy under a sale-leaseback.","water_impact":"unknown","ai_evidence":"Local media report Amazon said the Owings Mills property will not be used as a data center, and listings describe legacy T. Rowe Price office/technology space with no AI-specific deployments disclosed.","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific data on cooling method, gallons/day, water sources, or discharge issues was found in public reporting reviewed.","grid_note":"No public evidence of MW load, BGE upgrades, new transmission, or rate impacts for this address was found.","citations":[{"title":"Amazon says the office it purchased in Baltimore County ...","url":"https://www.cbsnews.com/baltimore/news/owings-mills-maryland-amazon-office-purchase/"},{"title":"Amazon Data Services Acquires Owings Mills Office ...","url":"https://www.citybiz.co/article/841980/amazon-data-services-acquires-owings-mills-office-property-for-15-2m-plans-undisclosed/"},{"title":"Amazon buys T. Rowe Price office building for $15.2 million","url":"https://www.facebook.com/baltimoresun/posts/amazon-data-services-has-purchased-a-t-rowe-price-group-office-building-in-owing/1398513142323191/"},{"title":"Amazon buys office and data center site in Maryland from T ...","url":"https://www.datacenterdynamics.com/en/news/amazon-buys-office-and-data-center-site-in-maryland-from-t-rowe/"},{"title":"Amazon Data Services Acquires Owings Mills Office ...","url":"https://www.citybiz.co/article/841980/amazon-data-services-acquires-owings-mills-office-property-for-15-2m-plans-undisclosed/"}],"runId":"srun_c0e944bd89584b5451f3d1b5de510fb1","classifiedAt":"2026-07-02T22:55:55.549Z"},"1461":{"community_note":"No site-specific organized opposition or litigation was found; the only local process item identified was Anne Arundel County’s notice of a May 28, 2026 pre‑submittal meeting for “Sandy Farms – Phase 2, Data Center Addition.”","water_impact":"unknown","ai_evidence":"Described as a hyperscale powered shell developed to support cloud/computing contracts and fully leased, with no reported GPU/AI tenant or liquid‑cooling retrofit.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No site‑specific cooling or gallons/day data were found; regionally, data centers typically discharge to municipal sewers for treatment.","grid_note":"A public tracker lists capacity at 10–25 MW for a Sandy Farm Rd project; regional sources cite data center load growth as a primary capacity-market driver and project the sector’s grid share to triple by 2029.","citations":[{"title":"Bill Signing","url":"https://app.indigov.com/pub/outreach/b94a13e2-6f29-4ec1-b7cc-1febc1dc4250"},{"title":"Subdivision Applications","url":"https://www.aacounty.org/planning-and-zoning/development/development-activity/subdivision-applications"},{"title":"Data Centers and Water Use in the Potomac River Basin","url":"https://www.potomacriver.org/focus-areas/water-resources-and-drinking-water/water-resources/planning/data-centers-and-water-use-in-the-potomac-river-basin/"},{"title":"Harrison Street sells two powered shell data center sites in ...","url":"https://www.datacenterdynamics.com/en/news/harrison-street-sells-two-powered-shell-data-center-sites-in-maryland/"},{"title":"7665 Sandy Farm Road in Baltimore | GI Partners","url":"https://www.datacentermap.com/usa/maryland/baltimore/7665-sandy-farm-road/"}],"runId":"srun_c0e944bd89584b540c4beb0476a8072e","classifiedAt":"2026-07-02T22:55:55.549Z"},"1462":{"community_note":"Active opposition by residents and advocacy groups over power, water, and quality-of-life impacts; Baltimore County Bill 3-26 pauses approvals until Jan. 1, 2027 or 90 days after the Planning Board’s report due Oct. 1, 2026.","water_impact":"unknown","ai_evidence":"Public listings describe a planned 150 MW campus by Security Land at 1500 Woodlawn Drive, but no announcements of GPU superclusters, AI tenants, or liquid-cooling retrofits were found.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day reported; any withdrawal would move through Maryland’s water‑appropriation permit process.","grid_note":"","citations":[{"title":"Environmental and faith groups push back on proposed ...","url":"https://www.wbal.com/proposed-150-megawatt-woodlawn-data-center-draws-alarm-from-advocates"},{"title":"Baltimore County Council Passes Unanimous 1-Year Data ...","url":"https://gunpowderriverkeeper.org/baltimore-county-council-passes-unanimous-1-year-data-center-moratorium-bill/"},{"title":"Planning Board Public Input Meeting on Data Centers: May ...","url":"https://www.baltimorecountymd.gov/departments/planning/events/planning-board-public-input-meeting-data-centers-may-21"},{"title":"Woodlawn Data Center Proposal Meets Pushback Over Power, Water Concerns | Towson, MD Patch","url":"https://patch.com/maryland/towson/woodlawn-data-center-proposal-meets-pushback-over-power-water-concerns"},{"title":"Water Appropriations or Use Permits","url":"https://mde.maryland.gov/programs/water/water_supply/pages/waterappropriationsorusepermits.aspx"}],"runId":"srun_c0e944bd89584b54c6a4055791ea340f","classifiedAt":"2026-07-02T22:55:55.549Z"},"1472":{"community_note":"Organized county opposition led by the Frederick County Data Center Referendum Committee secured 21,029 valid signatures for a ballot measure, but after lawsuits by landowners/operators a judge ruled against the referendum in June 2026 (with no vote moving forward).","water_impact":"unknown","ai_evidence":"The site is listed as “AI Ready” on a facility directory and Aligned markets AI‑ready infrastructure, but no named AI tenant or deployed GPU supercluster has been publicly confirmed.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No facility‑specific gallons/day figure was found; a local analysis notes Quantum Frederick data centers are using state‑of‑the‑art cooling and water‑conservation methods.","grid_note":"Potomac Edison plans a new substation and transmission project to support the first phase of Quantum Frederick, and county Q&A notes large energy users can support infrastructure development and related cost recovery mechanisms.","citations":[{"title":"Frederick County Data Center Referendum Committee","url":"https://fcdcreferendum.org/"},{"title":"Frederick County Residents Gather an Impressive ...","url":"https://ccanactionfund.org/frederick-county-residents-gather-an-impressive-21029-valid-signatures-to-put-controversial-data-center-expansion-project-on-the-ballot/"},{"title":"Frederick County judge rules against data center referendum","url":"https://www.wypr.org/wypr-news/2026-06-19/frederick-county-judge-rules-against-data-center-referendum"},{"title":"No referendum on Frederick data center expansion, MD ...","url":"https://thedailyrecord.com/2026/06/30/frederick-data-center-no-referendum/"},{"title":"Water Use and Cooling at Quantum Frederick","url":"https://macrocommercialrealestate.com/blog/water-use-and-cooling-at-quantum-frederick-whats-actually-happening/"}],"runId":"srun_c0e944bd89584b5480fc1ea685236968","classifiedAt":"2026-07-02T22:55:55.549Z"},"1473":{"community_note":"Residents opposing the county’s 2,600‑acre data center zone collected 21,000+ signatures for a referendum, but the Maryland Supreme Court shut it down on 2026‑06‑30.","water_impact":"high","ai_evidence":"Marketed as a >630 MW campus for cloud and AI workloads and associated with Amazon/AWS development in Frederick, but no public GPU supercluster or workload-specific (training/inference) disclosure for Bauxite II Building 1.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"County documents indicate cooling water is recirculated and discharged to the county wastewater system, and MDE maintains groundwater/surface-water sampling at the Bauxite site; no building-level cooling gallons were disclosed.","grid_note":"Potomac Edison/FirstEnergy received a waiver to connect the Doubs substation to the Rowan campus via a new switching station, reflecting major interconnection upgrades.","citations":[{"title":"Maryland Supreme Court shuts down Frederick County ...","url":"https://www.wypr.org/wypr-news/2026-06-30/maryland-supreme-court-shuts-down-frederick-county-data-center-referendum"},{"title":"Frederick Data Center Sampling/Reports","url":"https://mde.maryland.gov/datacenters/Pages/FrederickDataCenter.aspx"},{"title":"Bauxite Data Center","url":"https://bloximages.newyork1.vip.townnews.com/fredericknewspost.com/content/tncms/assets/v3/editorial/6/b1/6b17675f-0aa9-5223-a464-8da18b119d42/6539bc06d2b6d.pdf.pdf"},{"title":"Health concerns raised over Frederick County data center ...","url":"https://www.wypr.org/wypr-news/2025-11-05/health-concerns-raised-over-frederick-county-data-center-construction"},{"title":"Residents fear Frederick County will be 'data center alley'","url":"https://www.baltimoresun.com/2026/06/08/frederick-data-center-alley/"}],"runId":"srun_c0e944bd89584b543b5438e919ca1fdd","classifiedAt":"2026-07-02T22:55:55.826Z"},"1478":{"community_note":"Organized opposition from the 'Stop data centers in Calvert' group and residents has focused on risks like water/aquifer protection and costs, while moratorium votes were split/tied and AWS’s plan remains in concept/site-plan review [1]-[4].","water_impact":"low","ai_evidence":"No Calvert-specific evidence indicates GPU superclusters or dedicated AI training/inference deployments; reporting is limited to AWS’s site-plan application for a large campus near Calvert Cliffs [1]-[3].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day figure published; AWS said cooling would be air-based ~96% of the year and water ~4%, leveraging the Calvert Cliffs cooling-water process, while the county stresses closed-loop/hybrid/air systems and aquifer protection [1]-[2].","grid_note":"No official total MW published; third-party listings show ~75 MW per building, and SMECO says data-center developers must pay the full cost of required grid upgrades [1]-[2].","citations":[{"title":"Stop data centers in Calvert","url":"https://www.facebook.com/groups/4494029284161154/"},{"title":"Concerns about water use and transparency in Calvert ...","url":"https://www.facebook.com/groups/4494029284161154/posts/4579425422288206/"},{"title":"Data center moratorium shot down in Calvert on split vote","url":"https://www.somdnews.com/recorder/news/local/data-center-moratorium-shot-down-in-calvert-on-split-vote/article_078da1d3-b2ce-434b-9e72-907b1b6e1964.html"},{"title":"Latest data center moratorium vote ends in tie in Calvert","url":"https://www.somdnews.com/recorder/news/local/latest-data-center-moratorium-vote-ends-in-tie-in-calvert/article_1279bc51-a970-47ac-a7ea-115cc6066afa.html"},{"title":"Amazon Introduces Potential Calvert County Data Center ...","url":"https://thebaynet.com/amazon-introduces-potential-calvert-county-data-center-emphasizes-infrastructure-workforce-and-growth/"}],"runId":"srun_c0e944bd89584b54f5ac52587ec73102","classifiedAt":"2026-07-02T22:55:55.826Z"},"1515":{"community_note":"Residents and councilors raised environmental/health concerns, and the Westfield City Council approved a one-year moratorium on new data centers in June 2026.","water_impact":"low","ai_evidence":"Reporting says Servistar is courting hyperscale developers such as Microsoft and Google; no named AI/GPU tenant or deployment has been announced in public sources.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"City/developer materials say the campus would use closed‑loop cooling with near‑zero continuous potable water needs, and local news reiterates only minimal potable water use.","grid_note":"Proponents cite proximity to an Eversource transmission interconnect and a new substation that would boost regional reliability, implying a transmission-level interconnection for the campus.","citations":[{"title":"Westfield council supports moratorium to halt new data ...","url":"https://thereminder.com/local-news/hampden-county/westfield/westfield-council-supports-moratorium-to-halt-new-data-centers/"},{"title":"Residents pack council chambers as Westfield halts new ...","url":"https://www.masslive.com/westfieldnews/2026/06/residents-pack-council-chambers-as-westfield-halts-new-data-centers.html"},{"title":"Community Update Proposed Servistar Data Center Project","url":"https://www.cityofwestfield.org/CivicAlerts.aspx?AID=1724"},{"title":"SERVISTAR DATA CENTER CAMPUS A MODEL FOR ...","url":"https://www.cityofwestfield.org/DocumentCenter/View/17988/Servistar-Data-Center-Campus-Water-Energy-Fact-Sheet"},{"title":"Westfield mayor reviews Servistar Data Center project's ...","url":"https://www.wwlp.com/news/local-news/hampden-county/westfield-mayor-reviews-servistar-data-center-projects-impact/"}],"runId":"srun_c0e944bd89584b54b0046f8b76e22433","classifiedAt":"2026-07-02T22:59:27.724Z"},"1531":{"community_note":"","water_impact":"unknown","ai_evidence":"Irongate promotes “next-gen AI data centers” with high-density, liquid-cooled infrastructure “designed for AI workloads” [1], and the Warren listing shows 45.00MW capacity with colocation services [4]; no public disclosures name GPU superclusters or specific AI tenants at this site.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No facility-specific cooling water volumes, source, or discharge were reported; public listings reference liquid-cooled/high-density container designs without quantifying use [2][3].","grid_note":"Listings cite 45 MW power capacity for the Warren facility, and no IronGate-specific DTE/MPSC rate-case or contract docket for this site was found [4][5][7].","citations":[{"title":"AI Data Centers & Infrastructure in the Midwest | Irongate","url":"https://www.irongatedatacenters.com/"},{"title":"Can my old gpu run Amnesia: The Bunker at all?","url":"https://www.reddit.com/r/Amnesia/comments/1q15e2j/can_my_old_gpu_run_amnesia_the_bunker_at_all/"},{"title":"NVIDIA's Secret German Bunker: 10000 Blackwell GPUs ...","url":"https://www.youtube.com/watch?v=ZXeWDwWexrg"},{"title":"IronGate Data Centers - 4 Data Centers - See Locations","url":"https://www.datacentermap.com/c/irongate-data-centers/"},{"title":"IronGate Data Centers","url":"https://www.linkedin.com/company/irongate-data-centers"}],"runId":"srun_c0e944bd89584b546a5c89fae6072ac4","classifiedAt":"2026-07-02T22:55:55.826Z"},"1550":{"ai_evidence":"Local reporting tied the proposed Howell Township campus to Meta and described it as a hyperscale/AI data center, but there were no facility-specific disclosures of GPU clusters or liquid cooling prior to withdrawal.","water_impact":"moderate","community_note":"Residents mounted organized opposition that led to a six-month moratorium, and developers withdrew the rezoning request in December 2025.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Initial plans cited roughly 1–2 million gallons/day for cooling from the MHOG system (12 MGD capacity; ~4.5 MGD peak), with water‑recycling cooling pledged.","grid_note":"No Howell-specific MW was publicly confirmed; materials said DTE would have ample power to serve the site, while local reporting noted “DTE is going to have to pivot.”","citations":[{"title":"Meta is behind planned Howell data center: Township trustee","url":"https://planetdetroit.org/2025/11/meta-data-center-howell-township/"},{"title":"Meta reportedly behind $1bn data center in Howell County ...","url":"https://www.datacenterdynamics.com/en/news/meta-reportedly-the-company-behind-1bn-data-center-in-howell-county-michigan/"},{"title":"Scrutiny for Proposed Michigan $1B 'Hyperscale' Data Center","url":"https://www.govtech.com/artificial-intelligence/scrutiny-for-proposed-michigan-1b-hyperscale-data-center"},{"title":"Water Impact","url":"https://howelldatacenter.com/water"},{"title":"Howell Twp to Hold Public Hearing on Proposed Data Center","url":"https://www.whmi.com/news/article/howell-twp-to-hold-public-hearing-on-proposed-data-center"}],"runId":"srun_c0e944bd89584b5424b4a32da3191059","classifiedAt":"2026-07-02T23:02:28.137Z"},"1554":{"community_note":"Residents’ pushback over water and utility impacts led the proposal to be taken off the 2025 township agenda, and by June 2026 Pavilion Township had adopted a temporary data‑center moratorium while it studies the issue (Texas Township enacted a 12‑month moratorium effective July 5, 2026) [1][2][3].","water_impact":"moderate","ai_evidence":"No reporting confirms GPU deployments, AI tenants, or AI-specific builds; the site is marketed with up to 200 MW available but the end user/specs were undisclosed [1][2][3].","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No project-specific water volumes were disclosed; reports cite worries about water use/contamination and officials caution that such facilities could tax local utilities due to high water needs [1][2].","grid_note":"Marketing materials list up to 200 MW of power available at the site, with reporting noting concerns about taxing utilities and higher electricity bills, but no confirmed facility load or grid upgrades were disclosed [1][2][3].","citations":[{"title":"Community concerns halt proposed data center project in ...","url":"https://upnorthlive.com/news/local/data-center-indistrial-hub-pavilion-township-community-concerns-halt-project-kalamazoo-county-franklin-partners-llc"},{"title":"Kalamazoo County's Texas Township enacts 12-month ...","url":"https://wkzo.com/2026/06/26/942683/"},{"title":"Ordinance change for potential data center in Pavilion ...","url":"https://www.mlive.com/news/kalamazoo/2025/09/zoning-change-for-potential-data-center-in-pavilion-township-postponed-after-public-outcry.html"},{"title":"Residents concerned about major data center proposal in ...","url":"https://wwmt.com/news/local/residents-concerned-about-major-data-center-proposal-in-pavilion-township-south-26th-st-east-n-avenue-electricity-water-environment-jobs-taxes"},{"title":"Zone Change Would Allow Data Centers in Michigan Township","url":"https://www.govtech.com/artificial-intelligence/zone-change-would-allow-data-centers-in-michigan-township"}],"runId":"srun_c0e944bd89584b549964d6cfffb00787","classifiedAt":"2026-07-02T22:55:55.826Z"},"1556":{"community_note":"Local residents and petitioners opposed the project over water/electric use and neighborhood impacts; the township stated the LOI expired in early May 2026 and no data-center agreement is in effect.","water_impact":"low","ai_evidence":"No tenants or GPU clusters have been announced; materials describe a proposed hyperscale/AI data center campus rather than a committed AI training or inference deployment.","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Closed-loop cooling with a one-time fill was cited, with no ongoing cooling water consumption and no published gallons/day figure.","grid_note":"Discussed publicly with utility reviews anticipated, but no public MW figure or detailed upgrade plan; the LOI has expired and no agreement is currently in effect.","citations":[{"title":"STATEMENT ON TOWNSHIP PROPERTY AT 1500 ...","url":"https://www.facebook.com/100044630670288/posts/statement-on-township-property-at-1500-north-dixie-hwyfollowing-a-citizen-reques/1550441639786844/"},{"title":"Proposed data center concerns residents of Michigan's ...","url":"https://www.toledoblade.com/local/suburbs/2025/11/18/proposed-data-center-concerns-residents-michigans-frenchtown-township/stories/20251117127"},{"title":"Cloverleaf targets 200-acre data center development in ...","url":"https://www.datacenterdynamics.com/en/news/cloverleaf-targets-200-acre-data-center-development-in-michigan/"},{"title":"Project Cherry Blossom: Home","url":"https://cherryblossomdatacenter.com/"},{"title":"Project Cherry Blossom: Home","url":"https://cherryblossomdatacenter.com/"}],"runId":"srun_c0e944bd89584b5453bcf03e5e61e750","classifiedAt":"2026-07-02T22:55:55.826Z"},"1562":{"community_note":"Residents organized protests and meetings over potential impacts, and the Dorr Township Board approved a 12‑month moratorium on data centers in March 2026.","water_impact":"unknown","ai_evidence":"Microsoft purchased nearly 272 acres in Dorr Township for a planned data center campus, and the company frames new builds as 'Community‑First AI Infrastructure,' but no Dorr‑specific GPU/training/inference disclosures were found.","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day or source/discharge data reported for Dorr; residents have raised groundwater/well concerns.","grid_note":"No Dorr‑specific MW or upgrade filings; Michigan’s regulator approved Consumers Energy terms for very large data centers with protections for existing customers.","citations":[{"title":"Protesters in Dorr Township speak out against potential ...","url":"https://www.wzzm13.com/article/news/local/protesters-in-dorr-township-speak-out-against-potential-microsoft-data-center/69-31907ddc-1aec-4ef1-88a2-43d2a802f58a"},{"title":"Dorr Twp. approves 12-month moratorium on data centers","url":"https://wilcoxnewspapers.com/dorr-twp-approves-12-month-moratorium-on-data-centers/"},{"title":"Unlikely opportunities for water progress in data center ...","url":"https://planetdetroit.org/2026/04/data-centers-michigan-water/"},{"title":"How will a Microsoft data center affect Dorr Township's well ...","url":"https://www.facebook.com/groups/678116329298088/posts/2062689830840724/"},{"title":"Microsoft plans data center campuses in Dorr and Lowell ...","url":"https://www.datacenterdynamics.com/en/news/microsoft-plans-data-centers-in-dorr-and-lowell-townships-applies-for-property-rezoning-in-gaines-townships/"}],"runId":"srun_c0e944bd89584b540e150a61bfec2d35","classifiedAt":"2026-07-02T22:55:55.826Z"},"1564":{"community_note":"Citywide opponents pushed a moratorium over environmental/energy impacts while the Planning Commission approved a CUP formalizing data-center use at 1001 3rd Ave S; no site-specific lawsuits or complaints found [3][4].","water_impact":"unknown","ai_evidence":"The property is “primarily leased on a long-term basis to a leading provider of sovereign AI and cloud inferencing solutions” and coverage identifies Core42 as a 20 MW primary tenant in Minneapolis [1][10].","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Listings show large chilled-water/cooling-tower capacity (10,500 tons), but no gallons/day, water source, drought/aquifer, or discharge details were published [8].","grid_note":"Arcapita notes a 21‑megawatt Minneapolis data center with plans to expand, served by Xcel Energy [9].","citations":[{"title":"Minneapolis City Council approves 5-month pause on data ...","url":"https://www.cbsnews.com/minnesota/news/minneapolis-city-council-data-center-pause/"},{"title":"Planning Commission approves CUP to formalize data center ...","url":"https://citizenportal.ai/articles/7220689/minnesota/hennepin-county/minneapolis-city/Minneapolis-City/Hennepin-County/Minnesota/Planning-Commission-approves-CUP-to-formalize-data-center-use-at-1001-3rd-Ave-S"},{"title":"T5@Minneapolis | 1001 3rd Ave S (30 MW)","url":"https://www.datacentermap.com/usa/minnesota/minneapolis/t5-minneapolis/"},{"title":"Cloud Capital and Arcapita Acquire a 21-megawatt Data ...","url":"https://cloudcapital.com/cloud-capital-and-arcapita-acquire-a-21-megawatt-data-center-in-the-us-with-planned-expansion/"},{"title":"Core42 US footprint expands, adding 20MW in Minneapolis","url":"https://www.middleeastainews.com/p/core42-us-footprint-expands-adding"}],"runId":"srun_c0e944bd89584b54c86d27d09a740d9a","classifiedAt":"2026-07-02T22:55:55.826Z"},"1582":{"community_note":"Eagan’s planning commission recommended denial of IronGate’s interim rooftop chiller permit (Apr 28, 2026) and the City Council unanimously denied it (May 5, 2026), and after the city enacted a data‑center moratorium the owner filed suit to overturn it [4][3][5].","water_impact":"unknown","ai_evidence":"The operator markets the campus as delivering “next‑gen AI data centers” with high‑density, liquid‑cooled infrastructure for AI workloads [1], and listings confirm 3199 Pilot Knob Rd as a long‑standing data center property [2]; no public evidence of specific GPU clusters or named AI tenants is available.","grid_impact":"unknown","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"City records list well drilling correspondence and permits for 3199 Pilot Knob Rd; no public figures on daily cooling-water consumption or discharge were found [6].","grid_note":"","citations":[{"title":"Dakota Electric helps bring data center to Dakota County","url":"https://www.dakotaelectric.com/2014/06/23/dakota-electric-helps-bring-data-center-to-dakota-county/"},{"title":"Irongate: 3199 Pilot Knob Rd","url":"https://www.datacenters.com/irongate-3199-pilot-knob-rd"},{"title":"AI Data Centers & Infrastructure in the Midwest | Irongate","url":"https://www.irongatedatacenters.com/"},{"title":"IronGate Data Centers | 3199 Pilot Knob Road, Minneapolis","url":"https://datacenterhawk.com/marketplace/providers/irongate-data-centers/3199-pilot-knob-road/1106026"},{"title":"IronGate Data Centers | Woodbury MN","url":"https://www.facebook.com/IronGateDataCenters/"}],"runId":"srun_c0e944bd89584b5482c541035104fb9b","classifiedAt":"2026-07-02T22:59:27.724Z"},"1583":{"community_note":"Local residents raised water, power-rate, and nuisance concerns, and the Rosemount City Council adopted a one-year moratorium on new data-center developments in April 2026 while a study is conducted.","water_impact":"unknown","ai_evidence":"The CR42/Blaine site is a Meta/Jimnist 200+ acre land bank with no disclosed build, cooling, power, or GPU details, and Meta’s AI-optimized claims apply to the separate UMore Park campus, not this tract.","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No CR42/Blaine-specific water figures were found; for context, Rosemount estimated the separate UMore Park Meta project could draw about 100,000 gallons/day at peak from the city’s groundwater system.","grid_note":"No CR42/Blaine-specific load or interconnection details were found; separately, Xcel Energy is powering the UMore Park Meta data center, which was described in filings as drawing at least 10 MW and growing, amid policy measures to protect other customers from higher bills.","citations":[{"title":"Rosemount halts new data center discussion with moratorium","url":"https://www.hometownsource.com/sun_thisweek/community/rosemount/rosemount-halts-new-data-center-discussion-with-moratorium/article_59c956b3-230d-4e67-aeeb-57028a66816a.html"},{"title":"ORDINANCE NO","url":"https://www.rosemountmn.gov/DocumentCenter/View/8294"},{"title":"Rosemount council adopts one-year moratorium, study on ...","url":"https://citizenportal.ai/articles/7857772/minnesota/dakota-county/rosemount-city/rosemount-council-adopts-one-year-moratorium-study-on-new-data-centers"},{"title":"Meta: Rosemount II Campus Data Center","url":"https://baxtel.com/data-center/meta-rosemount-ii-campus"},{"title":"Meta buys more Rosemount land - Minneapolis / St. Paul ...","url":"https://www.bizjournals.com/twincities/news/2025/10/16/meta-rosemount-data-center-real-estate-facebook.html"}],"runId":"srun_c0e944bd89584b543d1d5b72d4a4e23c","classifiedAt":"2026-07-02T22:55:55.826Z"},"1584":{"community_note":"Minnesota Center for Environmental Advocacy and residents are challenging the adequacy of environmental review, and a judge issued a temporary restraining order halting construction pending litigation.","water_impact":"moderate","ai_evidence":"The utility says the Google data center will support core services — including Workspace, Search, YouTube and Maps — with no disclosed site-specific evidence of GPU superclusters or AI-only deployments.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No site-specific cooling-water draw has been disclosed in cited sources; residents raised water-usage concerns, and Google announced a local water-replenishment project.","grid_note":"The project is linked to 1,400 MW of wind, 200 MW of solar, and 300 MW/30 GWh of storage and is subject to a PUC Electric Service Agreement docket.","citations":[{"title":"Judge halts construction of Pine Island's hyperscale data ...","url":"https://www.mprnews.org/story/2026/05/26/pine-island-hyperscale-data-center-construction-halted-by-judge"},{"title":"1 STATE OF MINNESOTA DISTRICT COURT COUNTY OF ...","url":"https://legalectric.org/f/2026/05/MCRO_25-CV-25-2298_Order-Granting-Motion_2026-05-22_20260526143544.pdf"},{"title":"Judge issues temporary restraining order for Pine Island ...","url":"https://www.kttc.com/2026/05/26/judge-issues-temporary-restraining-order-pine-island-data-center/"},{"title":"Google announces water project related to planned Pine ...","url":"https://www.postbulletin.com/news/local/google-announces-water-project-related-to-planned-pine-island-data-center"},{"title":"Xcel Energy to power new Google data center in Minnesota","url":"https://newsroom.xcelenergy.com/news/xcel-energy-to-power-new-google-data-center-in-minnesota"}],"runId":"srun_c0e944bd89584b54f77574a525852941","classifiedAt":"2026-07-02T22:55:55.826Z"},"1592":{"community_note":"Active opposition: Stop the Hermantown Data Center/residents (with MCEA) have sued over zoning and environmental review, and the City’s AUAR remains under public comment.","water_impact":"low","ai_evidence":"No public confirmation of GPU/TPU superclusters or AI-specific workloads at this site; utility and city materials describe a self-operated Google data center under an ESA without AI hardware/workload details.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Reports indicate waterless cooling, with about 50,000 gallons/day of municipal (Lake Superior) water for domestic needs rather than cooling.","grid_note":"ESA in place with Minnesota Power and plans for 700 MW of new clean resources; exact facility MW load is not publicly confirmed.","citations":[{"title":"Hermantown residents sue to block proposed Google data ...","url":"https://www.mprnews.org/story/2026/04/29/hermantown-residents-sue-to-block-proposed-google-data-center"},{"title":"Data centers roil local politics, spark Hermantown residents ...","url":"https://www.mprnews.org/story/2026/05/29/hermantown-data-centers-roil-local-politics-inspire-residents"},{"title":"Legal updates on MCEA's data center cases | Minnesota ...","url":"https://www.mncenter.org/legal-updates-mceas-data-center-cases"},{"title":"Second Comment Period Opens for Google Data Center","url":"https://hermantownmn.com/community/community-highlights/second-comment-period-opens-for-google-data-center/"},{"title":"More details emerge as Google, Hermantown work out ...","url":"https://www.kaxe.org/local-news/2026-05-20/more-details-emerge-as-google-hermantown-work-out-data-center-agreements"}],"runId":"srun_c0e944bd89584b54b1cd8e1436f6031e","classifiedAt":"2026-07-02T22:55:55.826Z"},"1607":{"community_note":"Some residents raised infrastructure concerns about the Ridgeland data centers, and the city updated its zoning ordinance to strengthen data-center standards; no Ridgeland-specific lawsuit or organized opposition campaign was found.","water_impact":"moderate","ai_evidence":"Regional coverage labels the Canton campus an “AI Data Center,” and Ridgeland is part of the same Mississippi expansion; Amazon describes a large Mississippi data center investment, but no Ridgeland-specific GPU or liquid-cooling details were found.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Amazon said it will exclusively use water from the City of Ridgeland for the data center, about 93 million gallons per year.","grid_note":"Entergy Mississippi serves the site; third-party trackers estimate roughly 650–1,056 MW for the Madison County/Ridgeland campus, Entergy highlights adding 650 MW of solar for data centers, and Mississippi Today notes the public may never be able to verify the Amazon-Entergy agreement’s impacts.","citations":[{"title":"$63M in water, sewer upgrades on tap for Ridgeland ...","url":"https://www.wlbt.com/2026/05/07/63m-water-sewer-upgrades-tap-ridgeland-thanks-aws-investment/"},{"title":"Ridgeland sets new data center limits to protect residents ...","url":"https://www.onlinemadison.com/news/ridgeland-sets-new-data-center-limits-to-protect-residents-infrastructure-and-city-services-c1c30975"},{"title":"Where do Amazon's data centers in Mississippi stand?","url":"https://mississippitoday.org/2026/06/09/amazon-data-centers-mississippi/"},{"title":"$63M in water, sewer upgrades on tap for Ridgeland ...","url":"https://www.wlbt.com/2026/05/07/63m-water-sewer-upgrades-tap-ridgeland-thanks-aws-investment/"},{"title":"Amazon's Canton AI Data Center Brings Dust, Noise and ...","url":"https://www.mississippifreepress.org/amazons-canton-data-center-promises-prosperity-for-neighbors-its-bringing-dust-noise-and-pollution-fears/"}],"runId":"srun_c0e944bd89584b546c25a8471a76071f","classifiedAt":"2026-07-02T22:55:55.826Z"},"1608":{"community_note":"Local residents raised questions about electric and water usage, which Compass addressed in a public forum; no organized opposition or litigation was found.","water_impact":"low","ai_evidence":"Sources describe a hyperscale campus with Mississippi Power supplying approximately 500 MW, and Corderill LLC as a tenant investing at least $100 million; there are no site-specific announcements of GPU superclusters or AI training/inference deployments.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day figure was reported; the campus uses a closed-loop cooling system that won't have a continuous draw on local water resources.","grid_note":"Mississippi Power will supply approximately 500 MW to the campus under a PSC-approved special contract, and the state and utility extended a coal unit’s life to help meet rising data-center demand.","citations":[{"title":"Compass addresses concerns over data center electric, ...","url":"https://meridianstar.com/2026/05/08/compass-addresses-concerns-over-data-center-electric-water-usage/"},{"title":"Compass addresses concerns over data center electric, ...","url":"https://meridianstar.com/2026/05/08/compass-addresses-concerns-over-data-center-electric-water-usage/"},{"title":"Compass project generates $10 billion investment in ...","url":"https://www.compassdatacenters.com/news/compass-10b-investment-lauderdale-county-mississippi/"},{"title":"Compass Datacenters breaks ground on $10bn campus in ...","url":"https://www.datacenterdynamics.com/en/news/compass-datacenters-breaks-ground-on-10bn-campus-in-meridian-mississippi/"},{"title":"Technology company Corderill investing at least $100 ...","url":"https://mississippi.org/news/technology-company-corderill-investing-at-least-100-million-in-meridian/"}],"runId":"srun_c0e944bd89584b54267dc5b6beca1578","classifiedAt":"2026-07-02T22:55:55.826Z"},"1622":{"community_note":"Residents and advocates opposed Lambda/Project Blitz over Port KC incentives and transparency, leading the developer to withdraw its Port KC bond application in June 2026 amid related legal disputes.","water_impact":"unknown","ai_evidence":"Lambda announced a 100MW 'AI Factory' with more than 10,000 NVIDIA GPUs, and reporting indicates an initial 24 MW launch phase with headroom to scale above 100 MW.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No site-specific gallons/day disclosed; the property listing notes 114,000-gallon thermal chilled-water storage and underground water storage, while regional reporting quantifies other KC data centers’ water use (e.g., Meta up to 9.5M gpd), not this site.","grid_note":"Planned load launches around 24 MW with potential to exceed 100 MW; local reporting described a dispute over Evergy’s near‑term power availability as Port KC bonds were withdrawn, and Evergy discussed a new large‑customer rate for data centers.","citations":[{"title":"Northland AI data center withdraws bond application with ...","url":"https://www.kshb.com/news/local-news/data-centers/northland-ai-data-center-withdraws-bond-application-with-port-kc"},{"title":"Lambda AI factory seeks Port KC incentives amid opposition","url":"https://www.bizjournals.com/kansascity/news/2026/05/29/project-blitz-port-kc-data-center-ai-incentives.html"},{"title":"Developer withdraws Port KC request for data center project","url":"https://www.kansascity.com/news/local/article316024513.html"},{"title":"Kansas City Data Center - Lincoln Property Company","url":"https://lpc.com/properties/properties-search/KansasCityDataCenter/"},{"title":"KC data centers could use millions of gallons of water per ...","url":"https://www.kshb.com/news/local-news/kansas-city-data-centers-could-use-millions-of-gallons-of-water-per-day-records-show"}],"runId":"srun_c0e944bd89584b54e0d5dfd9d2431e4d","classifiedAt":"2026-07-02T22:55:55.826Z"},"1629":{"community_note":"Missouri Coalition for the Environment flagged Patmos’ 100 MW AI data center in Kansas City, but organized petitions and opposition focus on a separate Independence project; no lawsuits or zoning fights specific to 1601 McGee were found.","water_impact":"unknown","ai_evidence":"Nebius confirms it colocates in the Patmos-owned Kansas City facility and cites “about 35 thousand GPUs — NVIDIA Blackwells and [H200s],” while Patmos describes 1601 McGee as a 100 MW AI/ML site with liquid/immersion cooling [1], [2].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Primary cooling uses Kansas City’s district chilled-water supply, with large chilled-water piping visible from the retrofit; no site-specific gallons/day or discharge data reported.","grid_note":"Marketed at 100 MW with 35 MW of GPU/HPC/AI capacity reported; Evergy offers a Special High-Load Factor Market Rate for large customers; no public, site‑specific evidence of transmission upgrades or ratepayer impacts found.","citations":[{"title":"Second, smaller data center set for arrival in Independence","url":"https://www.kansascity.com/news/local/article316286007.html"},{"title":"The lawsuit alleges residents have lost their ability to use ...","url":"https://www.facebook.com/wwmtnews/posts/the-lawsuit-alleges-residents-have-lost-their-ability-to-use-and-enjoy-their-pro/1457007383131613/"},{"title":"Company behind second Independence data center isn't","url":"https://www.facebook.com/kansascitystar/posts/company-behind-second-independence-data-center-isnt-new-to-kc-what-is-patmosfoun/1043183161565876/"},{"title":"AI and Data Centers in Kansas City","url":"https://moenvironment.org/blog/ai-and-data-centers-in-kansas-city/"},{"title":"NBIS Kansas City Data Center: Inside Nebius Urban AI ...","url":"https://northwiseproject.com/nbis-kansas-city-data-center/"}],"runId":"srun_c0e944bd89584b549b2df968776c37d2","classifiedAt":"2026-07-02T22:55:55.826Z"},"1630":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"Reports state 26 MW of capacity with zero water used for cooling at 3420 N Arlington Ave; no site-specific aquifer, drought, or discharge concerns were identified.","grid_note":"The facility is listed at 26 MW and served in Evergy territory, with Evergy offering special high-load rate structures for large customers.","citations":[{"title":"Edged U.S. | Home","url":"https://edged.us/"},{"title":"Kansas City","url":"https://edged.us/kansas-city"},{"title":"Edged Data Centers Celebrates Grand Opening of New ...","url":"https://edckc.com/edged-data-center/"},{"title":"Edged Kansas City - AI infrastructure intelligence","url":"https://mlq.ai/data-centers/usa/missouri/kansas-city/edged-mci1/"},{"title":"Edged Data Centers Celebrates Grand Opening of New ...","url":"https://missouripartnership.com/edged-data-centers-celebrates-grand-opening-of-new-state-of-the-art-sustainable-data-center-in-kansas-city/"}],"runId":"srun_c0e944bd89584b54558612bb381e5cc3","classifiedAt":"2026-07-02T22:55:55.826Z"},"1706":{"community_note":"Residents raised concerns about the 72-foot height, noise, and landscaping; the project received preliminary approval from the Chaska City Council on Oct. 21, 2024 [1][2].","water_impact":"moderate","ai_evidence":"No public reporting confirms GPU superclusters or named AI tenants; CloudHQ markets the MSP campus for up to 200 MW of critical IT load [1], and trade press described a 180 MW data center campus without AI-specific deployments [2].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Chaska expects CloudHQ to draw about 1.5 million gallons per day at its peak from the city's groundwater, with lower use at other times [1].","grid_note":"Marketed for up to 200 MW of critical IT load, with reporting referencing a ~300 MW substation to serve the campus [1][2].","citations":[{"title":"Chaska Planning Commission Reviews Cloud HQ's 72-Foot ...","url":"https://thelocallens.org/chaska-planning-commission-reviews-cloud-hqs-72-foot-data-center-amid-height-noise-and-landscaping-concerns/"},{"title":"Despite Resident Objections, Data Center Gains ...","url":"https://cclocalnews.org/2024/10/29/despite-resident-objections-data-center-gains-preliminary-ok/"},{"title":"How much water will data centers in Minnesota consume?","url":"https://www.startribune.com/latest-twist-in-minnesota-data-center-debate-how-much-water-they-will-consume/601324675"},{"title":"Water is Precious","url":"https://cloudhq.com/water-is-precious/"},{"title":"MSP Campus","url":"https://cloudhq.com/campus/msp-campus/"}],"runId":"srun_c0e944bd89584b540fde2cca39731374","classifiedAt":"2026-07-02T22:55:55.826Z"},"1712":{"community_note":"No organized local opposition identified; Anne Arundel County lists a 'SANDY FARM PHASE II' data center addition application for 7665 Sandy Farm Rd that is proceeding through review.","water_impact":"unknown","ai_evidence":"Hyperscale powered-shell leased for cloud/computing use with public trackers attributing an Amazon/Amazon Data Services facility at ~17.8 MW (10–25 MW range); no site-specific signals of GPU superclusters or AI-dense retrofits.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No site-specific gallons/day or cooling type reported; in Maryland, any water‑cooled data center must obtain an MDE withdrawal permit with limits.","grid_note":"Capacity is cited at ~17.8 MW (10–25 MW range); no facility‑specific BGE upgrade filings surfaced; Maryland’s new Utility RELIEF Act requires data centers to pay for grid upgrades.","citations":[{"title":"Subdivision Applications","url":"https://www.aacounty.org/planning-and-zoning/development/development-activity/subdivision-applications"},{"title":"Data Centers","url":"https://mde.maryland.gov/datacenters"},{"title":"7665 Sandy Farm Road in Baltimore | GI Partners","url":"https://www.datacentermap.com/usa/maryland/baltimore/7665-sandy-farm-road/"},{"title":"Baltimore Data Centers - 15 Facilities from 12 Operators","url":"https://www.datacentermap.com/usa/maryland/baltimore/"},{"title":"Amazon - Severn, MD","url":"https://www.datacenter.fyi/public-record/amazon-e0dfa5ab"}],"runId":"srun_c0e944bd89584b54ca36461d77e5e349","classifiedAt":"2026-07-02T22:55:56.133Z"},"1713":{"community_note":"Howard County enacted a temporary moratorium and task force on new data centers backed by groups like CCAN and residents; local outlets note a data center on South Eternal Rings Drive and another under construction, with the pause stretching into November 2027.","water_impact":"unknown","ai_evidence":"Described as a hyperscale powered-shell, sole-tenant/single-user facility with no disclosed AI tenant, GPU clusters, or liquid-cooling retrofits.","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No facility-specific water data found; Maryland notes that any data center requiring water for cooling must obtain a state permit with defined withdrawal limits.","grid_note":"No published MW load or BGE/PJM upgrade details were found for this site; public listings show sole-tenant, purpose-built characteristics but omit power capacity.","citations":[{"title":"Howard County Approves Data Center Moratorium and ...","url":"https://ccanactionfund.org/howard-county-approves-data-center-moratorium-and-task-force-legislation/"},{"title":"Howard County temporarily halts data center development","url":"https://www.thebanner.com/politics-power/local-government/howard-county-data-center-development-suspended-7VP3IZDJBZHKLK6MF6YR2SIVR4/"},{"title":"Howard County Council approves data center ban","url":"https://www.baltimoresun.com/2026/06/01/howard-county-council-approves-pause-on-new-data-centers/"},{"title":"Data center developments put on hold in Howard County","url":"https://streetcarsuburbs.news/data-center-developments-put-on-hold-in-howard-county/"},{"title":"Data Centers","url":"https://mde.maryland.gov/datacenters"}],"runId":"srun_c0e944bd89584b54848e63ac9d9f2146","classifiedAt":"2026-07-02T22:55:56.133Z"},"1718":{"community_note":"Countywide opposition culminated in Howard County’s CB31-2026 moratorium (passed 6/1/2026; effective 8/4/2026), advanced by advocacy groups and residents; no site-specific lawsuit was found.","water_impact":"unknown","ai_evidence":"A May 17, 2024 county application describes a Microsoft data center at 8201 Dorsey Run Rd with no AI/GPU or liquid-cooling references, and a project listing identifies it as a 50–100 MW Microsoft data center.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No facility-specific cooling-water consumption or source/discharge figures were found in available filings.","grid_note":"Listed at 50–100 MW; no project-specific offsite transmission/generation or rate-case filings identified; statewide consumer advocate warns data-center load is driving ratepayer costs.","citations":[{"title":"Legislation Details for CB31-2026","url":"https://apps.howardcountymd.gov/olis/LegislationDetail/15036/CB31-2026"},{"title":"Data center developments put on hold in Howard County","url":"https://streetcarsuburbs.news/data-center-developments-put-on-hold-in-howard-county/"},{"title":"Howard County Approves Data Center Moratorium and ...","url":"https://ccanactionfund.org/howard-county-approves-data-center-moratorium-and-task-force-legislation/"},{"title":"Annapolis Junction","url":"https://www.aacounty.org/sites/default/files/2024-06/24.095v%20app.pdf"},{"title":"Annapolis Junction","url":"https://www.aacounty.org/sites/default/files/2024-06/24.095v%20app.pdf"}],"runId":"srun_c0e944bd89584b543ee67dfff3b31877","classifiedAt":"2026-07-02T22:55:56.133Z"},"1729":{"community_note":"Following a packed meeting and a six‑month moratorium by the Township Board, the developer withdrew its rezoning/text‑amendment applications in Dec 2025 amid local concerns, leaving the Meta‑linked Howell Township project paused/withdrawn.","water_impact":"moderate","ai_evidence":"Linked to Meta and described as a large hyperscale campus, but with no disclosed GPU clusters, AI tenants, or liquid‑cooling/AI workload specifics.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Project FAQ cites MHOG water system capacity of 12 MGD with 4.5 MGD peak demand, leaving roughly 7 MGD excess.","grid_note":"The energy FAQ states, “Yes, DTE has ample power to support a data center.”","citations":[{"title":"Data Center Moratorium Enacted In Howell Township","url":"https://www.whmi.com/news/article/49159"},{"title":"Developer pulls rezoning request for proposed AI data ...","url":"https://www.clickondetroit.com/news/local/2025/12/08/developer-pulls-rezoning-request-for-proposed-ai-data-center-in-howell-township/"},{"title":"Water Impact","url":"https://howelldatacenter.com/water"},{"title":"Meta reportedly behind $1bn data center in Howell County ...","url":"https://www.datacenterdynamics.com/en/news/meta-reportedly-the-company-behind-1bn-data-center-in-howell-county-michigan/"},{"title":"Meta Howell Township Data Center, Michigan","url":"https://poweredbywho.com/projects/meta-howell-township-data-center-1a2d1d63"}],"runId":"srun_c0e944bd89584b54f93e970e96521940","classifiedAt":"2026-07-02T22:55:56.133Z"},"1731":{"community_note":"Residents organized meetings to oppose Microsoft’s Dorr data center over perceived impacts, and the township approved a 12‑month moratorium on data centers in March 2026.","water_impact":"unknown","ai_evidence":"Local and industry reports describe a proposed Microsoft hyperscale/AI data center campus in Dorr Township, but none name specific GPU superclusters or AI tenants; thus it appears positioned for AI alongside broader cloud workloads.","grid_impact":"unknown","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No site-specific water-usage figures were reported; residents fear large water use and potential impacts on costs and resources.","grid_note":"A campus envelope up to 120 MW is cited, but no Dorr-specific transmission/substation upgrades or rate-case filings were identified; residents expressed concern about electricity use and rates.","citations":[{"title":"Pushback against Microsoft's proposed data center in Dorr ...","url":"https://wwmt.com/news/local/save-pure-michigan-dorr-township-residents-hold-meeting-to-stop-data-center-microsoft-allegan-county-ai-artificial-intelligence-western-michigan"},{"title":"Dorr Twp. approves 12-month moratorium on data centers","url":"https://wilcoxnewspapers.com/dorr-twp-approves-12-month-moratorium-on-data-centers/"},{"title":"Proposed Microsoft data center in Allegan County draws ...","url":"https://www.wgvunews.org/news/2025-12-23/proposed-microsoft-data-center-in-allegan-county-draws-concern-from-residents"},{"title":"Dorr Township residents to voice concerns over proposed ...","url":"https://wwmt.com/news/local/dorr-township-ai-artificial-intelligence-data-center-environmental-water-noise-electricity-residents-protest-meeting-technology-west-michigan"},{"title":"Microsoft plans data center campuses in Dorr and Lowell ...","url":"https://www.datacenterdynamics.com/en/news/microsoft-plans-data-centers-in-dorr-and-lowell-townships-applies-for-property-rezoning-in-gaines-townships/"}],"runId":"srun_c0e944bd89584b54b396b1513f292e45","classifiedAt":"2026-07-02T22:55:56.133Z"},"1733":{"community_note":"Organized opposition has emerged (e.g., No Data Center in Lyon Township), with dozens speaking against the proposal at a June 2026 planning meeting; the township passed a six‑month moratorium on new data‑center applications that is reported as unlikely to affect Project Flex’s preliminary approvals.","water_impact":"low","ai_evidence":"Media report says Anthropic is in talks for the Lyon Township data center, suggesting AI workloads, while the project’s own materials do not name a tenant or detail GPU clusters [1][2].","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Expected average water use is less than 1.5 million gallons per year, with a claim of 99% less water than older data centers.","grid_note":"Requires a new DTE Energy electrical substation with battery backup; DTE will serve the site, but total MW load has not been disclosed.","citations":[{"title":"Lyon Township residents pack planning meeting to oppose ...","url":"https://www.wxyz.com/news/data-centers/lyon-township-residents-pack-planning-meeting-to-oppose-proposed-data-center-project"},{"title":"Lyon Twp Board Enacts Six-Month Moratorium on New ...","url":"https://www.whmi.com/news/article/lyon-twp-board-enacts-six-month-moratorium-on-new-data-center-projects"},{"title":"No Data Center in Lyon Township: No Project Flex","url":"https://nodatacenterlyon.org/"},{"title":"Project Flex FAQs","url":"https://cms2.revize.com/revize/lyontownship/Temporary/2025-12-18%20Data%20Center%20FAQs.pdf?t=202512182133510&t=202512182133510"},{"title":"Verrus energy exec talks Lyon Twp. data center issues ...","url":"https://www.hometownlife.com/story/news/2026/01/22/lyon-township-verrus-data-center/88300527007/"}],"runId":"srun_c0e944bd89584b546deecae01aae06ca","classifiedAt":"2026-07-02T22:55:56.133Z"},"1736":{"community_note":"Organized opposition groups challenged the annexation/rezoning over environmental and quality‑of‑life concerns; repeal petitions fell short in March 2026 and a Wildwood Ranch resident filed suit against the city, leaving opposition active but the zoning decision in place.","water_impact":"unknown","ai_evidence":"Listings portray the site as a potential AI/hyperscale campus (~200 MW) with the tenant undisclosed; no confirmed AI GPU deployments or named operators have been reported.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No site‑specific cooling water use or source‑stress analysis has been publicly reported as of July 2026.","grid_note":"Listed at about 200 MW; no publicly available interconnection study, upgrade scope, or rate case details identified yet.","citations":[{"title":"Officials in Joplin, Missouri, greenlight rezoning request for ...","url":"https://www.datacenterdynamics.com/en/news/officials-in-joplin-missouri-greenlight-rezoning-request-for-potential-data-center/"},{"title":"Petitions to repeal annexation and rezoning fall short","url":"https://www.fourstateshomepage.com/news/local/petitions-to-repeal-annexation-and-rezoning-fall-short/"},{"title":"Residents rally against data center in Joplin, Missouri","url":"https://www.fourstateshomepage.com/news/local/joplin-group-opposes-data-center/"},{"title":"Lawsuit filed against city over data center zoning","url":"https://www.yahoo.com/news/articles/lawsuit-filed-against-city-over-035900065.html"},{"title":"Frequently Asked Questions - CivicPlus.CMS.FAQ","url":"https://www.joplinmo.org/FAQ.aspx?QID=502"}],"runId":"srun_c0e944bd89584b542846e433de9c2c4b","classifiedAt":"2026-07-02T22:55:56.133Z"},"1740":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"Uses ThermalWorks waterless cooling that consumes zero water for cooling; no reported drought, aquifer, or discharge concerns for this site.","grid_note":"26 MW critical-load facility; regional large-load rate plans aim to recover incremental costs and protect other customers, with reports of up to 20% higher rates for large users.","citations":[{"title":"Edged Kansas City Data Center in Kansas City MO (26 MW)","url":"https://www.datacentermap.com/usa/missouri/kansas-city-mo/edged-kansas-city/"},{"title":"Edged Data Centers Celebrates Grand Opening of New ...","url":"https://www.edged.es/news/new-sustainable-data-center-in-kansas-city"},{"title":"Lawsuit delays $12B data center in Kansas City as ...","url":"https://kansasreflector.com/2025/11/07/lawsuit-delays-12b-data-center-in-kansas-city-as-community-environmental-group-voice-concerns/"},{"title":"Kansas City","url":"https://edged.us/kansas-city"},{"title":"How will KC's data center boom impact electric bills? ...","url":"https://www.kshb.com/news/local-news/kansas/johnson-county/how-will-kcs-data-center-boom-impact-electric-bills-evergy-discusses-new-load-rate-for-large-customers"}],"runId":"srun_c0e944bd89584b54e29efe4243ab0c4c","classifiedAt":"2026-07-02T22:55:56.133Z"},"1744":{"community_note":"No organized Ridgeland-specific opposition or litigation was found; the city adopted zoning/noise/generator standards for data centers in April 2026 [6], while reported dust/noise complaints are tied to AWS’s separate Canton campus, not 1626 County Line Rd [7].","water_impact":"moderate","ai_evidence":"A state press report says Amazon already has an “artificial intelligence data processing center in Ridgeland,” and the broader expansion supports generative-AI/cloud infrastructure, but no public details confirm GPU training superclusters at this site [1].","grid_impact":"high","ai_class":"ai-inference","community_pushback":"none-found","water_note":"Ridgeland supply only, about 93 million gallons per year for cooling at the AWS Ridgeland data center [9].","grid_note":"Entergy says its agreement with Amazon will benefit ratepayers in the long term, though the public may never be able to verify the details [5].","citations":[{"title":"Another city to consider zoning ordinance changes ...","url":"https://www.wlbt.com/2026/06/02/another-city-consider-zoning-ordinance-changes-tackle-data-centers/"},{"title":"Amazon's Canton AI Data Center Brings Dust, Noise and ...","url":"https://www.mississippifreepress.org/amazons-canton-data-center-promises-prosperity-for-neighbors-its-bringing-dust-noise-and-pollution-fears/"},{"title":"Where do Amazon's data centers in Mississippi stand?","url":"https://mississippitoday.org/2026/06/09/amazon-data-centers-mississippi/"},{"title":"Amazon Is Expanding Data Centers in Central Mississippi ...","url":"https://www.mississippifreepress.org/amazon-is-expanding-data-centers-in-central-mississippi-governor-announces/"},{"title":"AWS: Good for Mississippi, great for Entergy customers","url":"https://www.entergy.com/blog/aws-good-for-mississippi-great-for-entergy-customers"}],"runId":"srun_c0e944bd89584b549cf71b955598ce51","classifiedAt":"2026-07-02T22:55:56.133Z"},"1747":{"community_note":"No organized opposition specific to 12901 Plantside Dr. was found; opposition reported in Louisville targets a separate proposed West Louisville hyperscale project.","water_impact":"unknown","ai_evidence":"Listed as an enterprise facility with ~1 MW critical IT, and no mention of GPU/AI tenants. A 200 MW development plan references Kentucky but does not indicate active AI workloads at 12901 Plantside Dr.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Eaton indicates a 74°F operating target to reduce cooling-related water consumption but publishes no gallons/day or water-source details for this site.","grid_note":"Reported specs: up to 1 MW critical IT load with dual LG&E utility feeds and dual 2 MW generators.","citations":[{"title":"West Louisville data center approved despite opposition","url":"https://www.lpm.org/news/2026-03-05/west-louisville-data-center-approved-despite-opposition"},{"title":"Eaton Project Bluegrass","url":"https://iveymechanical.com/projects/eaton-project-bluegrass/"},{"title":"Louisville Enterprise Data Center | Aphorio Carter (1 MW)","url":"https://www.datacentermap.com/usa/kentucky/louisville/louisville-enterprise-data-center/"},{"title":"365 Data Centers and Carter Funds to develop 200MW of ...","url":"https://www.datacenterdynamics.com/en/news/365-data-centers-and-carter-funds-to-develop-200mw-of-data-centers-in-the-us/"},{"title":"Aphorio Carter Acquires Two Enterprise Data Centers For ...","url":"https://carterfunds.com/aphorio-carter-acquires-two-enterprise-data-centers-for-35m-in-kentucky/"}],"runId":"srun_c0e944bd89584b54574f3524be1ce94e","classifiedAt":"2026-07-02T22:55:56.133Z"},"1748":{"community_note":"No facility-specific organized opposition or litigation was found; a Kentucky PSC case shows an Aphorio Carter public comment but no 70 Kingbrook–specific dispute [6].","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"","grid_note":"Reported critical IT load is 1 MW; no site-specific utility upgrade or rate-case actions were identified for 70 Kingbrook, and the noted PSC docket appears systemwide rather than facility-specific.","citations":[{"title":"View Public Comments for: 2025-00045","url":"https://psc.ky.gov/Case/ViewCaseFilings/2025-00045/Public"},{"title":"Aphorio Carter acquires two enterprise data centers in ...","url":"https://www.datacenterdynamics.com/en/news/aphorio-carter-acquires-two-enterprise-data-centers-in-kentucky-for-35m/"},{"title":"365 Data Centers and Aphorio Carter Launch ~200 MW AI- ...","url":"https://365datacenters.com/365-data-centers-and-aphorio-carter-launch-200-mw-ai-ready-data-center-pipeline/"},{"title":"Aphorio Carter: Simpsonville, KY Data Center","url":"https://baxtel.com/data-center/aphorio-carter-simpsonville-ky"},{"title":"365 Data Centers and Aphorio Carter Ignite 200 MW AI ...","url":"https://datacenterpost.com/365-data-centers-and-aphorio-carter-ignite-200-mw-ai-data-center-boom-across-u-s-markets/"}],"runId":"srun_c0e944bd89584b5411a74f77d5fbe06f","classifiedAt":"2026-07-02T22:55:56.133Z"},"1758":{"community_note":"Residents and community advocates in West Louisville opposed the Camp Ground Road hyperscale campus over pollution, water/electricity demand, and transparency, but the Planning Commission approved it in March 2026 while Metro officials later weighed a moratorium and new regulations.","water_impact":"moderate","ai_evidence":"Project materials say the 400 MW campus addresses both cloud and AI/high-density computing, and local coverage notes prospective hyperscaler tenants (Google, Amazon, Microsoft), but no public confirmation of a specific AI tenant or GPU supercluster is available.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No gallons/day figure reported; materials cite the Ohio River’s substantial daily flow supporting cooling for high-density computing, while residents have raised concerns about water demand.","grid_note":"Planned ~400 MW campus with up to 525 MW utility power and first 130 MW targeted for Q4 2026, alongside an LG&E $28.4 million electric-infrastructure upgrade.","citations":[{"title":"West Louisville data center approved despite opposition","url":"https://www.lpm.org/news/2026-03-05/west-louisville-data-center-approved-despite-opposition"},{"title":"Louisville weighs moratorium as data center concerns grow","url":"https://spectrumnews1.com/ky/louisville/news/2026/06/03/data-centers-moratorium"},{"title":"PowerHouse Data Centers and Poe Companies Partner to ...","url":"https://www.americanrepartners.com/news/powerhouse-data-centers-and-poe-companies-partner-to-develop-kentuckys-first-hyperscale-data-center-campus"},{"title":"Louisville's first hyperscale data center: for the better, or ...","url":"https://www.louisvillecardinal.com/2025/11/louisvilles-first-hyperscale-data-center-for-the-better-or-worse/"},{"title":"Louisville residents push back against approved 150-acre ...","url":"https://www.wdrb.com/news/louisville-residents-push-back-against-approved-150-acre-data-center-on-camp-ground-road/article_c08bf854-9de5-4ce8-aed8-ecc601cfe4a3.html"}],"runId":"srun_c0e944bd89584b54cbff6886745820c8","classifiedAt":"2026-07-02T22:55:56.133Z"},"1764":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"CyrusOne states “No water consumption for cooling” and only “Minimal water usage for humidification and maintenance” at CIN6; no local water-supply or discharge controversies were found.","grid_note":"About 4 MW IT capacity; served under Duke Energy Kentucky arrangements evidenced by a PSC contracts directory entry, with no reporting of grid strain, new generation/transmission, or ratepayer cost shifting.","citations":[{"title":"Florence, KY: CIN6 - Data centers","url":"https://www.cyrusone.com/data-centers/north-america/florence-ky"},{"title":"AI Data Centers","url":"https://www.cyrusone.com/solutions/ai-data-centers"},{"title":"CyrusOne Kentucky Data Center","url":"https://baxtel.com/data-center/cyrusone-kentucky"},{"title":"CIN6 Florence - CyrusOne","url":"https://www.ocolo.io/colocation/cyrusone/cin6-florence/"},{"title":"CyrusOne CIN6 - Florence KY","url":"https://www.datacentermap.com/usa/kentucky/florence-ky/cyrusone-kentucky-florence/"}],"runId":"srun_c0e944bd89584b54865782c959f57f7d","classifiedAt":"2026-07-02T22:55:56.133Z"},"1769":{"community_note":"No Calvert City–specific organized opposition, lawsuits, zoning fights, moratoria, or noise/air-quality complaints were found; discussion around CoreWeave’s acquisition of Core Scientific involved shareholder matters, not local community pushback.","water_impact":"unknown","ai_evidence":"Core Scientific announced it will deliver about 200 MW of infrastructure to host CoreWeave’s HPC operations and later expanded CoreWeave’s contracted HPC load to ~590 MW across six Core Scientific sites; Calvert City is listed as a future colocation site with significant billable power, but no Calvert-specific GPU deployment has been disclosed.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No disclosures were found on cooling type, gallons/day, water source, drought/aquifer stress, or discharge for Calvert City.","grid_note":"Approx. 150 MW campus in Calvert City, served locally by Jackson Purchase Energy Cooperative in TVA territory; no public evidence here of rate cases, curtailments, or major transmission upgrades.","citations":[{"title":"Kentucky Data Center | Scalable High-Density Facility","url":"https://corescientific.com/high-density-data-centers/calvert-city-ky/"},{"title":"Two air permits in process for local Core Scientific data ...","url":"https://daltoncitizen.com/2026/05/30/two-air-permits-in-process-for-local-core-scientific-data-center-sites/"},{"title":"Waste Discharge Requirements Program","url":"https://www.waterboards.ca.gov/water_issues/programs/waste_discharge_requirements/"},{"title":"Data center water usage and cooling system details","url":"https://www.facebook.com/groups/4494029284161154/posts/4549609201936495/"},{"title":"Core Scientific Calvert City Data Center | 1035 Shar-Cal Rd","url":"https://www.datacentermap.com/usa/kentucky/calvert-city/core-scientific-calvert-city/"}],"runId":"srun_c0e944bd89584b5440af9c78a6d20aa2","classifiedAt":"2026-07-02T22:55:56.133Z"},"1774":{"community_note":"Boyd County residents have organized and voiced opposition at raucous public meetings over NDAs/transparency, water use, grid/rate impacts, noise, and environmental risks; no project-specific lawsuits or moratoriums were found as of 2026-07-02.","water_impact":"unknown","ai_evidence":"Company materials present Muskie as a hyperscale AI/HPC campus expected to support >1 GW over time; no named GPU deployments or AI tenants were disclosed in the cited reporting.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Reps said a closed-loop cooling system would minimize water use, but no gallons/day or source/discharge specifics were provided; residents nonetheless flagged overconsumption risks.","grid_note":"Planned load is 'more than 1 GW' with a Kentucky Power interconnection and statements it will pay the full, standard industrial rate; residents and reports highlight grid/rate concerns.","citations":[{"title":"'Starting it off shady.' Residents question NDAs, protections ...","url":"https://kentuckylantern.com/2026/06/02/starting-it-off-shady-residents-question-ndas-protections-for-proposed-boyd-co-data-center/"},{"title":"TeraWulf lays out data center project to skeptical Boyd ...","url":"https://www.weku.org/the-commonwealth/2026-06-18/terawulf-lays-out-data-center-project-to-skeptical-boyd-county-audience"},{"title":"Data center company addresses public concerns","url":"https://www.wowktv.com/news/local/data-center-company-addresses-public-concerns-during-boyd-county-town-hall/"},{"title":"Neighbors ask questions and address concerns in data ...","url":"https://www.wsaz.com/2026/06/02/neighbors-ask-questions-address-concerns-data-center-town-hall/"},{"title":"TeraWulf lays out data center project to skeptical Boyd ...","url":"https://www.weku.org/the-commonwealth/2026-06-18/terawulf-lays-out-data-center-project-to-skeptical-boyd-county-audience"}],"runId":"srun_c0e944bd89584b54fb07b9ab3edad053","classifiedAt":"2026-07-02T22:55:56.133Z"},"1775":{"community_note":"Active opposition comes from the “Stop Data Centers in Hancock County” group and the Save Hancock County moratorium effort, while local reporting shows residents pressing for answers on impacts; no Hawesville-specific lawsuit was identified in the cited sources [7][6][5].","water_impact":"unknown","ai_evidence":"The former Century Aluminum site is being redeveloped as an AI/high-performance computing campus, and company materials describe high-density AI/HPC campuses with Hawesville listed as a large-scale HPC site with ~480 MW of immediate grid-connected power [1][2][3].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Residents are pressing for answers on potential drinking-water impacts, and community posts indicate water-withdrawal permits for the Hawesville data center are being issued, but no official daily withdrawal or discharge figures are cited in these materials [5][10].","grid_note":"Approximately 480 MW of immediate grid-connected power is cited for the Hawesville campus, and a Kentucky PSC case (2026-00115) is active for the service arrangement [3][8].","citations":[{"title":"Stop Data Centers in Hancock County","url":"https://www.facebook.com/p/Stop-Data-Centers-in-Hancock-County-61588379616097/"},{"title":"Save Hancock County","url":"https://savehancockcounty.org/"},{"title":"Citizens continue to press for answers on Hawesville data ...","url":"https://www.hancockclarion.com/2026/05/13/citizens-continue-to-press-for-answers-on-hawesville-data-centers-water-use/"},{"title":"Citizens continue to press for answers on Hawesville data ...","url":"https://www.hancockclarion.com/2026/05/13/citizens-continue-to-press-for-answers-on-hawesville-data-centers-water-use/"},{"title":"Data center water withdrawal permits issued in Hawesville, ...","url":"https://www.facebook.com/groups/581365083343270/posts/1500864431393326/"}],"runId":"srun_c0e944bd89584b54b55fd3dabada1364","classifiedAt":"2026-07-02T22:55:56.133Z"},"1776":{"community_note":"We Are Mason County is leading organized opposition over secrecy/NDAs, farmland conversion, flooding/noise and broader impacts; after county approvals, the group moved toward litigation and reported filing a complaint.","water_impact":"low","ai_evidence":"Local and regional outlets describe the approved campus as tied to an \"undisclosed artificial intelligence\" company and as a hyperscale AI development, with posts noting structures designed to house GPU clusters—evidence of AI-focused workloads, though not confirming training supercluster specifics.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No gallons/day figure is published; reporting cites service from local utilities (City of Maysville/Western Mason Water District), six water tanks, and a closed-loop liquid cooling approach minimizing consumptive use during normal operations.","grid_note":"Estimated at 1.2–2.2 GW: reporting says 2.2 GW would nearly double EKPC’s generation, and PSC/utility filings note customer-funded transmission/substations and a data-center tariff intended to protect existing co-op members.","citations":[{"title":"Grassroots organization announces plans to file suit ...","url":"https://www.weku.org/the-commonwealth/2026-03-27/grassroots-organization-announces-plans-to-file-suit-against-mason-county-data-center-proposal"},{"title":"We Are Mason County KY | People Over Profit","url":"https://wearemasoncountyky.org/"},{"title":"Maysville rezones 2080 acres for data center campus in KY","url":"https://www.kentucky.com/news/business/article315925551.html"},{"title":"Zoning request made public for hyperscale data center ...","url":"https://www.maysville-online.com/news/214292/zoning-request-made-public-for-hyperscale-data-center-project-in-mason-county"},{"title":"Data Center Zoning Public Information Page","url":"https://www.cityofmaysvilleky.gov/departments/codes_department/data_center.php"}],"runId":"srun_c0e944bd89584b546fb7ed0d701679b9","classifiedAt":"2026-07-02T22:55:56.133Z"},"1777":{"community_note":"Organized opposition and litigation: residents and parties have filed lawsuits (including a developer suit against Simpson County) while the project secured preliminary plan approval and continues through permitting.","water_impact":"low","ai_evidence":"Project pages describe a next-generation data storage & service center with liquid/closed-loop cooling, but no public evidence of GPU superclusters, named AI tenants, or workload disclosures was found.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Developer materials say the campus will use closed-loop liquid cooling; no public gallons/day figure or aquifer/discharge issues are cited in the sources reviewed.","grid_note":"No MW load figure is disclosed in the sources cited; developer materials describe self-powering with on-site infrastructure, and local reporting centers on planning approvals rather than utility upgrades or rate cases.","citations":[{"title":"Data center developer sues Simpson County government ...","url":"https://www.lpm.org/news/2026-01-28/data-center-developer-sues-simpson-county-government-over-land-use-ordinance"},{"title":"Second lawsuit filed over proposed data center in Simpson ...","url":"https://www.wkyufm.org/news/2026-04-14/second-lawsuit-filed-over-proposed-data-center-in-simpson-county"},{"title":"Data center preliminary development plan gets approval ...","url":"https://bgdailynews.com/2026/03/04/data-center-preliminary-development-plan-gets-approval-from-franklin-planning-zoning/"},{"title":"TenKeyDataCenter — The Future of Data Infrastructure","url":"https://tenkeydatacenter.com/"},{"title":"Cooling Without the Drain: How Closed-Loop Systems Cut ...","url":"https://blog.vantage-dc.com/2026/04/22/cooling-without-the-drain-how-closed-loop-systems-cut-day-to-day-water-use/"}],"runId":"srun_c0e944bd89584b542a1006bc13376b16","classifiedAt":"2026-07-02T22:55:56.133Z"},"1794":{"community_note":"Opposition groups are focused on the separate Bonner/Krambu proposal over water/energy impacts; no organized pushback is reported for MIS1 at 110 E Broadway.","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No MIS1-specific cooling-water data were found; county water-stress discussion centers on the separate Bonner proposal rather than the existing downtown Missoula site.","grid_note":"No MIS1-specific MW load or utility-upgrade data were found; separate reporting describes Vision Net’s statewide edge model (including Missoula) as reducing grid impacts and AI latency.","citations":[{"title":"MOD Mission Critical | MOD PaaSPort™","url":"https://modmc.net/"},{"title":"Vision Net Opens the Doors on its Newest Data Center","url":"https://vision.net/vision-net-opens-the-doors-on-its-newest-data-center/"},{"title":"Rack-Scale Liquid Cooling Solutions","url":"https://www.supermicro.com/en/solutions/liquid-cooling"},{"title":"Great Falls-based Vision Net utilizes edge data centers to ...","url":"https://www.krtv.com/news/great-falls-news/great-falls-based-vision-net-utilizes-edge-data-centers-to-reduce-grid-impacts-and-improve-ai-latency"},{"title":"CoreSite Delivers Customized Liquid Cooling System to ...","url":"https://www.coresite.com/blog/coresite-delivers-customized-liquid-cooling-system-to-support-gpuaas-and-enterprise-ai"}],"runId":"srun_c0e944bd89584b54e46820ef073b2927","classifiedAt":"2026-07-02T22:55:56.133Z"},"1797":{"community_note":"Local outlets report housing/rent pressure and complaints about construction-related road damage around the Ellendale campus, with no Ellendale-specific lawsuit documented in the cited coverage [7][8].","water_impact":"low","ai_evidence":"CoreWeave leased 250 MW at Ellendale under a long-term AI data center agreement, with Phase 1 at Polaris Forge 1 reaching ready-for-service; campus design and BASX cooling target liquid-cooled, high‑density AI/HPC workloads across a three‑building, 400‑MW campus [1][2][4][3].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Cooling uses a closed-loop, waterless direct‑to‑chip/liquid system with BASX free‑cooling chillers claiming “zero water use,” and no cited reports flag aquifer or discharge concerns [4][5].","grid_note":"Energized on‑site main substation with MDU service; ELN01 at 180 MW within a three‑building, 400‑MW campus, and company materials note $5.4M in customer credits tied to service [9][10][3][11][1].","citations":[{"title":"North Dakota town serves as an example of the promise ...","url":"https://southdakotasearchlight.com/2026/01/30/north-dakota-town-serves-as-an-example-of-the-promise-and-perils-of-data-centers-for-south-dakota/"},{"title":"Applied Digital responds to concerns over road damage in ...","url":"https://kfgo.com/2026/04/21/applied-digital-responds-to-concerns-over-road-damage-in-south-central-north-dakota/"},{"title":"BASX Powers Advanced Cooling Innovation for Applied ...","url":"https://www.prnewswire.com/news-releases/basx-powers-advanced-cooling-innovation-for-applied-digitals-purpose-built-ai-data-center-campus-302494791.html"},{"title":"$2.7 Billion in Data Center Savings","url":"https://ir.applieddigital.com/news-events/press-releases/detail/124/2-7-billion-in-data-center-savings-new-applied-digital"},{"title":"Why Modern AI Data Centers are Harnessing the Power ...","url":"https://www.applieddigital.com/insights/why-modern-ai-data-centers-are-harnessing-the-power-of-liquid-cooling"}],"runId":"srun_c0e944bd89584b549ec03a1e150be730","classifiedAt":"2026-07-02T22:55:56.133Z"},"1801":{"community_note":"No organized opposition or lawsuits were found; city and business leaders are encouraging more data centers while planning siting to avoid noise/residential conflicts [1].","water_impact":"unknown","ai_evidence":"Local coverage says Grand Forks data centers focus on cryptocurrency, while corporate disclosures detail GPU/HPC buildouts (e.g., Muskogee powering NVIDIA GPUs) and CoreWeave capacity commitments without naming Grand Forks as an active GPU site [1][2][3][4].","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No site-specific gallons/day, water source, withdrawal permits, aquifer/drought concerns, or discharge data were found in available facility pages, filings, or local reporting.","grid_note":"Approx. 100 MW load served via Nodak Electric Cooperative in a development partnership context, with reduced franchise fees for high-load customers; no documented grid strain or ratepayer cost cases found [5][6].","citations":[{"title":"City, business leaders want more data centers in Grand ...","url":"https://www.grandforksherald.com/news/local/city-business-leaders-want-more-data-centers-in-grand-forks-what-does-that-mean"},{"title":"Core Scientific: High-Density Data Centers at Scale","url":"https://corescientific.com/"},{"title":"Grand Forks, North Dakota Data Center (Grand Forks 1)","url":"https://corescientific.com/high-density-data-centers/grand-forks-nd/"},{"title":"Tech meets oil patch → Micro data centers are coming to ...","url":"https://www.instagram.com/reel/DP9igAggSjH/"},{"title":"Core Scientific Grand Forks Data Center | 5601 11th Ave S","url":"https://www.datacentermap.com/usa/north-dakota/grand-forks/core-scientific-grand-forks/"}],"runId":"srun_c0e944bd89584b545918544162352d55","classifiedAt":"2026-07-02T22:55:56.432Z"},"1803":{"community_note":"No organized Jamestown/JMS01 opposition was found; local attention focused on the regional JETx line, which Otter Tail said was planned before Applied’s projects and is a reliability upgrade.","water_impact":"low","ai_evidence":"A 5MW standalone HPC/GPU facility was built adjacent to the 100MW Jamestown site, with an integrated systems test at Jamestown linked to a contract worth up to $180 million over 24 months, and financing disclosures state the Jamestown HPC campus will house GPUs.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No Jamestown-specific gallons/day or discharge data were found; Applied says its liquid-cooling is closed-loop and 'consumes around 22% less water than an average household,' and reporting in ND notes the company uses closed-loop systems at ND AI sites.","grid_note":"5MW HPC building sits next to the original 100MW Jamestown hosting facility; the site previously saw a substation-related partial outage; the regional JETx 345‑kV upgrade was planned before Applied’s projects.","citations":[{"title":"JETx project was in planning stages before Applied ...","url":"https://www.jamestownsun.com/news/local/jetx-project-was-in-planning-stages-before-applied-digitals-projects-otter-tail-power-official-says"},{"title":"1 Testimony of Jason Weiers, Otter Tail Power Company, in ...","url":"https://ndlegis.gov/assembly/69-2025/testimony/HNATRES-1258-20250123-30943-F-WEIERS_JASON.pdf"},{"title":"Why Modern AI Data Centers are Harnessing the Power ...","url":"https://www.applieddigital.com/insights/why-modern-ai-data-centers-are-harnessing-the-power-of-liquid-cooling"},{"title":"BASX Powers Advanced Cooling Innovation for Applied ...","url":"https://www.prnewswire.com/news-releases/basx-powers-advanced-cooling-innovation-for-applied-digitals-purpose-built-ai-data-center-campus-302494791.html"},{"title":"Company announces plan for $3 billion data center ...","url":"https://northdakotamonitor.com/2025/08/18/company-announces-plan-for-data-center-north-of-fargo/"}],"runId":"srun_c0e944bd89584b54137071f02b891e3a","classifiedAt":"2026-07-02T22:55:56.432Z"},"1804":{"community_note":"","water_impact":"unknown","ai_evidence":"Teton’s materials reference AI and colocation and the Williams County one‑pager notes liquid‑cooled servers, indicating AI‑capable infrastructure but without disclosed GPU tenant/model or a confirmed training supercluster.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No gallons/day or water source disclosed; available materials only state the facility will use liquid‑cooled servers.","grid_note":"100 MW total load with a 30 MW initial phase reported; located near Tioga in Dry Fork Township.","citations":[{"title":"Williams County Commissioners give go-ahead for another ...","url":"https://www.kfyrtv.com/2025/02/18/williams-county-commissioners-give-go-ahead-another-data-center-company-apply-conditional-use-permit/"},{"title":"Teton Digital gets go-ahead for 100MW data center in ...","url":"https://www.datacenterdynamics.com/en/news/teton-digital-gets-go-ahead-for-100mw-data-center-in-north-dakota/"},{"title":"Trinity 1","url":"https://williamsnd.civicweb.net/document/177085"},{"title":"Trinity 1","url":"https://williamsnd.civicweb.net/document/177085/Teton%20Digital%20-%20Dry%20Fork%20Data%20Center%20One%20Pager.pdf?handle=38AD276E6C4D4AB3898036255FFED493"},{"title":"Teton Digital","url":"https://www.linkedin.com/company/teton-digital"}],"runId":"srun_c0e944bd89584b54cdc88b231c90a97b","classifiedAt":"2026-07-02T22:55:56.432Z"},"1805":{"community_note":"Nearby residents and county officials opposed Atlas Power over persistent fan noise since April 2023, with 2026 settlements to affected residents and subsequent protests demanding transparency/regulation [1][2][3].","water_impact":"low","ai_evidence":"","grid_impact":"high","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"No public gallons/day or source-stress data were found; reporting ties cooling to fan/air systems rather than water-based cooling [1][2].","grid_note":"Target load up to 700 MW [1]; Williston peak ~50 MW and MWEC peak ~550 MW [2]; analysis flags need for new 230 kV transmission and a 345 kV Pioneer–Judson line [3].","citations":[{"title":"Williams County Update Regarding Atlas Power Data Center","url":"https://www.williamsnd.com/williams-county-update-regarding-atlas-power/"},{"title":"Settlement agreements going out to residents by data ...","url":"https://www.kfyrtv.com/2026/03/13/settlement-agreements-going-out-residents-by-data-center-next-williston/"},{"title":"Williston protesters demand more transparency, regulation ...","url":"https://www.willistonherald.com/news/local/williston-protesters-demand-more-transparency-regulation-surrounding-data-centers"},{"title":"Atlas Power Willinston - Williston","url":"https://www.datacentermap.com/usa/north-dakota/williston/atlas-power-willinston/"},{"title":"Atlas Power data center environmental noise complaints","url":"https://invc.com/noise-control/atlas-power-data-center-environmental-noise-complaints/"}],"runId":"srun_c0e944bd89584b548820a5521c44381c","classifiedAt":"2026-07-02T22:55:56.432Z"},"1842":{"community_note":"Some council concern: Oklahoma City council members raised favoritism concerns when amending the data‑center moratorium to allow certain facilities; the measure passed and no site‑specific lawsuits were found.","water_impact":"low","ai_evidence":"Cerebras announced the Oklahoma City site would house over 300 CS‑3 systems, and separately demonstrated training a 1‑trillion‑parameter model on a single CS‑3 system [1], [7].","grid_impact":"low","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No public gallons/day figures were found; the site uses closed‑loop direct‑to‑chip liquid cooling, and Cerebras says its closed‑loop cooling minimizes water use and relies on outside air except on the hottest days.","grid_note":"Reported at 10 MW with no documented site‑specific grid upgrades; OG&E’s proposed large‑load agreement applies at 75 MW or more.","citations":[{"title":"new datacenter in Oklahoma City","url":"https://www.cerebras.ai/blog/okc"},{"title":"Cerebras Oklahoma Data Center in Oklahoma City (10 MW)","url":"https://www.datacentermap.com/usa/oklahoma/oklahoma-city/scale-datacenter/"},{"title":"As data centers boom in Oklahoma, so does water demand","url":"https://www.readfrontier.org/stories/as-data-centers-boom-in-oklahoma-so-does-water-demand/"},{"title":"As data centers eye Oklahoma communities, residents and ...","url":"https://www.kosu.org/energy-environment/2025-11-18/as-data-centers-eye-oklahoma-communities-residents-and-officials-weigh-in-on-water-concerns"},{"title":"Cerebras opens 10MW data center in Oklahoma City - DCD","url":"https://www.datacenterdynamics.com/en/news/cerebras-opens-10mw-data-center-in-oklahoma-city/"}],"runId":"srun_c0e944bd89584b544278be8555d7b121","classifiedAt":"2026-07-02T22:55:56.432Z"},"1843":{"community_note":"Oklahoma City imposed a data center moratorium in April 2026 and later limited it to sites over 75 MW amid concerns over utilities and infrastructure; no CloudBurst-specific lawsuit or campaign was found.","water_impact":"unknown","ai_evidence":"CloudBurst markets its platform as 'AI-ready hyperscale' and lists the OKC campus as a 200 MW site with a 30 MW first phase targeted for Q4 2026, emphasizing high-density and behind-the-meter features; no public AI tenant or GPU cluster has been confirmed.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No CloudBurst OKC DC1 gallons/day or source data were found; statewide reporting notes the Pryor data center used more than 1.1 billion gallons in one year, indicating large potential cooling demand.","grid_note":"Campus planned at 200 MW with high-density capabilities in Oklahoma City; OG&E highlights customer protections for new data centers, but no CloudBurst-specific interconnection or upgrade docket is cited.","citations":[{"title":"Oklahoma City leaders narrow data center moratorium after ...","url":"https://okcfox.com/news/local/oklahoma-city-leaders-narrow-data-center-moratorium-after-debate"},{"title":"Oklahoma City amended its data center moratorium. What ...","url":"https://www.oklahoman.com/story/news/local/oklahoma-city/2026/05/26/data-centers-okc-moratorium-amended-what-is-allowed-now/90175396007/"},{"title":"As Oklahoma data centers boom, so does demand for water","url":"https://www.oklahoman.com/story/business/economy/2026/02/24/data-centers-oklahoma-boom-water-demand/88823799007/"},{"title":"CloudBurst Data Centers: Home","url":"https://cloudburstdc.com/"},{"title":"Oklahoma City","url":"https://cloudburstdc.com/oklahoma-city/"}],"runId":"srun_c0e944bd89584b54fcd0d834fee7317e","classifiedAt":"2026-07-02T22:55:56.432Z"},"1859":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific water consumption data is published; at ~2.5 MW the cooling load is small, and no permits or local drought/aquifer complaints are linked to 12151 E. State Farm Blvd.","grid_note":"Approx. 2.5 MW redundant utility connections and two 2.5 MW diesel gensets; Oklahoma rate cases and grid strain have been linked to much larger new data centers, not this small existing load.","citations":[{"title":"Tulsa - State Farm Data Center","url":"https://www.tierpoint.com/data-centers/oklahoma/tulsa-state-farm/"},{"title":"Compass Datacenters: Tulsa Data Center","url":"https://www.datacenters.com/compass-tulsa"},{"title":"TierPoint: Tulsa - State Farm (TL2)","url":"https://www.ocolo.io/colocation/tierpoint/tulsa-state-farm-tl2/"},{"title":"Tierpoint Tulsa - State Farm","url":"https://cleanview.co/data-centers/oklahoma/1213/tierpoint-tulsa---state-farm"},{"title":"TierPoint Tulsa-State Farm Data Center","url":"https://baxtel.com/data-center/tierpoint-tulsa-state-farm"}],"runId":"srun_c0e944bd89584b54b728f267418372bf","classifiedAt":"2026-07-02T22:59:28.132Z"},"1863":{"community_note":"Residents opposed aspects of Project Clydesdale over energy, water, and environmental impacts during public hearings; the Tulsa County Commissioners unanimously approved the project and it proceeded to groundbreaking.","water_impact":"high","ai_evidence":"Approved as a multi-building hyperscale data center campus with large phase-by-phase investment, but no public disclosure of AI GPU clusters, AI tenants, or liquid-cooling deployments.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Projected cooling water demand is reported at roughly 6.1–7 million gallons per day.","grid_note":"No public MW figure; PSO implemented a temporary $11 residential rate increase while debate continues over whether Project Clydesdale will affect customers’ power bills.","citations":[{"title":"Tulsa County Board of commissioners vote to approve ...","url":"https://www.fox23.com/news/tulsa-county-board-of-commissioners-vote-to-approve-project-clydesdale/article_07726adb-5615-4cdc-99d3-14bc0359cbad.html"},{"title":"Tulsa County Commissioners unanimously pass Project ...","url":"https://www.publicradiotulsa.org/local-regional/2025-09-29/tulsa-county-commissioners-unanimously-pass-project-clydesdale"},{"title":"Neighbors of new Tulsa data center offered 'preblast ...","url":"https://www.kosu.org/energy-environment/2025-12-02/neighbors-of-new-tulsa-data-center-offered-preblast-inspections-but-not-everyone-got-the-same-offer"},{"title":"Legislative interim study eyes impact of data centers","url":"https://www.southwestledger.news/news/legislative-interim-study-eyes-impact-data-centers"},{"title":"Owasso Data Center may bring jobs but raises ...","url":"https://ktul.com/news/local/owasso-data-center-may-bring-jobs-but-raises-environmental-concerns-in-tulsa-county-sperry-gallons-of-water-millions-wastewater-sewage-system-community-economic-impacts"}],"runId":"srun_c0e944bd89584b5471810f967ca2c598","classifiedAt":"2026-07-02T22:55:56.432Z"},"1864":{"community_note":"Polaris sued Muskogee over annexation and related treatment; on Sept. 8–9, 2025 the city rescinded the annexation to restart the process while litigation continued.","water_impact":"moderate","ai_evidence":"A 70 MW Muskogee facility is leased to AI cloud firm CoreWeave and tied to 500 MW of contracted HPC IT load, while the Polaris acquisition adds a 440 MW grid connection for campus-scale AI expansion.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Utility records show Polaris used about 150 million gallons from July 1, 2024 to June 30, 2025; a local report describes 'millions of gallons of water per day,' with no specific aquifer or discharge issues cited.","grid_note":"Polaris/CORE’s Muskogee site has 440 MW contracted with OG&E and load studies underway toward ~1.5 GW campus scale; it is OG&E’s largest local customer, and OG&E has proposed large-load tariffs to protect existing ratepayers.","citations":[{"title":"Polaris Technologies files lawsuit against Muskogee over ...","url":"https://www.kjrh.com/news/local-news/polaris-technologies-files-lawsuit-against-muskogee-over-annexation"},{"title":"in the district court of muskogee county state of oklahoma","url":"https://ewscripps.brightspotcdn.com/a1/f4/0599fdce45e0a850d96d2549795d/46944690-polaris-technoligies-lawsuit.pdf"},{"title":"City of Muskogee tries a third time to annex site of Polaris ...","url":"https://okenergytoday.com/2025/09/city-of-muskogee-tries-a-third-time-to-annex-site-of-polaris-technologies-data-center/"},{"title":"Muskogee to restart annexation process after Polaris lawsuit","url":"https://www.kjrh.com/news/local-news/muskogee-may-restart-annexation-process-after-polaris-lawsuit"},{"title":"As data centers boom in Oklahoma, so does water demand","url":"https://www.readfrontier.org/stories/as-data-centers-boom-in-oklahoma-so-does-water-demand/"}],"runId":"srun_c0e944bd89584b542bd929b921a8f82d","classifiedAt":"2026-07-02T22:55:56.432Z"},"1865":{"community_note":"An HOA sued over alleged construction runoff causing pond pollution and wildlife loss, while city approvals advanced; no moratorium or case resolution reported.","water_impact":"high","ai_evidence":"Google describes the Oklahoma program as cloud and AI infrastructure, and local officials say the facilities will meet demand for AI-powered Google services; no public confirmation of a GPU training supercluster at this site.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Supply is from Kaw Lake; Stillwater can withdraw up to 50 MGD but currently uses ~7–14 MGD, and officials flagged the complex’s potentially massive water needs; DEQ also issued a fine related to construction runoff.","grid_note":"Estimated at 110 MW for Building 1 by 2027; OG&E penned an agreement to power three Google data centers, and large-load tariffs are before regulators to protect ratepayers.","citations":[{"title":"Stillwater HOA sues Google over data center, citing pond ...","url":"https://okcfox.com/news/local/stillwater-hoa-sues-google-over-data-center-citing-pond-pollution-and-wildlife-loss"},{"title":"Stillwater HOA sues Google over alleged data center ...","url":"https://www.news9.com/story/68a87d4cd79483d4597c5395/stillwater-homeowner-association-sues-google-data-center-construction"},{"title":"Google Data Center Plans Advance as ...","url":"https://www.thestillwegian.news/google-data-center-plans-advance-as-planning-commission-oks-202-acre-preliminary-plat/"},{"title":"Payne County commissioner raises water concerns over ...","url":"https://kfor.com/news/local/payne-county-commissioner-raises-water-concerns-over-planned-google-data-center-complex-in-stillwater/"},{"title":"As data centers boom in Oklahoma, so does water demand","url":"https://www.readfrontier.org/stories/as-data-centers-boom-in-oklahoma-so-does-water-demand/"}],"runId":"srun_c0e944bd89584b54e631430836d0c532","classifiedAt":"2026-07-02T22:55:56.432Z"},"1866":{"community_note":"Organized opposition continues (lawsuit over annexation and tribal water/sovereignty concerns) even as the City approved rezoning in Feb. 2026.","water_impact":"unknown","ai_evidence":"Google is identified as the end user for Project Spring and the City approved rezoning for a Google-backed campus, while Google also announced a $9B Oklahoma investment in cloud and AI infrastructure; no source confirms GPU/TPU clusters or AI-specific deployments at this site.","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day figure is publicly reported; community and project materials highlight questions about effects on Skiatook Lake and local supplies, with nearby areas reporting outages/quality issues that amplify concern.","grid_note":"Power will be supplied by PSO with extensive reviews; PSO filed a $2.4B rate review for grid investments, and proposed HB 2992 would require data centers to pay infrastructure costs.","citations":[{"title":"Proposed Sand Springs Data Center raises water and ...","url":"https://osagenews.org/proposed-sand-springs-data-center-raises-water-and-sovereignty-concerns/"},{"title":"Project Spring data center lawsuit moved to Tulsa County","url":"https://www.kjrh.com/news/local-news/project-spring-data-center-lawsuit-moved-to-tulsa-county"},{"title":"Google: Project Spring Data Center","url":"https://baxtel.com/data-center/google-project-spring"},{"title":"Project Spring: Home","url":"https://www.projectspringok.com/"},{"title":"Proposed Sand Springs data center sparks concerns ...","url":"https://www.newson6.com/tulsa-oklahoma-news/proposed-sand-springs-data-center-sparks-concerns-prompts-2-community-meetings"}],"runId":"srun_c0e944bd89584b54a0895cdbf4ef70a3","classifiedAt":"2026-07-02T22:55:56.432Z"},"1883":{"community_note":"Residents raised concerns at public meetings while the project received planning approval and a borough data‑center ordinance was adopted; separate litigation targets pollution from the legacy Stronghold Panther Creek power plant, not the data center.","water_impact":"low","ai_evidence":"Announced T5 partnership to develop an advanced AI/HPC campus at Panther Creek and $300M project financing for Phase 1 with YE‑2026 energization, with 350 MW secured via PJM; no confirmed live GPU tenant/cluster disclosed yet.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Closed‑loop/non‑evaporative cooling estimated at ~3,000 gallons/day with the initial fill trucked in by external suppliers.","grid_note":"Expanding from ~80 MW toward a 350 MW PJM‑secured campus, with $300M Phase 1 financing and energization targeted by YE‑2026.","citations":[{"title":"Residents voice concerns over proposed data center in ...","url":"https://www.wnep.com/article/news/local/carbon-county/nesquehoning-residents-voice-concerns-over-proposed-data-center-carbon-county-bitfarms-ltd-bitcoin/523-571bdbff-9045-4abc-9eef-5299cbdfcfc4"},{"title":"Bitfarms Wins Local Approval to Advance Pennsylvania AI ...","url":"https://www.theenergymag.com/news/2026-02-25/bitfarms-wins-local-approval-to-advance-pennsylvania-ai-data-center-project"},{"title":"Data Center Ordinance","url":"https://nesquehoning.org/wp-content/uploads/2026/03/Data-Center-Ordinance-Mar26.pdf"},{"title":"Environmental group sues cryptocurrency plant and Gov. ...","url":"https://www.alleghenyfront.org/pennsylvania-stronghold-digital-mining-cryptocurrency-lawsuit/"},{"title":"Local officials greenlight Bitfarms Panther Creek AI data ...","url":"https://finance.yahoo.com/news/local-officials-greenlight-bitfarms-panther-142555915.html"}],"runId":"srun_c0e944bd89584b545ae176aa79c87ad4","classifiedAt":"2026-07-02T22:55:56.432Z"},"1887":{"community_note":"No Alerify-specific organized opposition, lawsuit, zoning fight, noise/air-quality complaint, or moratorium campaign was found; statewide moratorium discussions aren’t tied to this facility.","water_impact":"low","ai_evidence":"Alerify announced a Jan 27, 2026 partnership with Zadara to deliver Private/Sovereign AI Edge Cloud in Central PA on NVIDIA-powered infrastructure, and its Private AI page promotes Private AI Models on secure Private AI Servers at Alerify Harrisburg.","grid_impact":"low","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No facility-specific water-consumption or discharge figures were reported; the operator says it relies on advanced air-cooling systems (non-evaporative).","grid_note":"Enterprise-scale load at 2330 Vartan Way in a 68,830 sq ft building with on-site solar offsetting almost 50% of energy; no public reporting of new transmission/utility upgrades or ratepayer impacts.","citations":[{"title":"Newly Formed Corporation, Alerify Purchases Datacenter ...","url":"https://www.prnewswire.com/news-releases/newly-formed-corporation-alerify-purchases-datacenter-from-elevated-msp-302210101.html"},{"title":"Pennsylvania communities could get a 180-day pause on ...","url":"https://www.abc27.com/pennsylvania-politics/pennsylvania-communities-could-get-a-180-day-pause-on-data-centers/"},{"title":"News | Alerify: Your Data. Our Duty. Business Continuity & ...","url":"https://www.alerify.com/news"},{"title":"A Grounded Perspective on Data Center Growth in ...","url":"https://www.alerify.com/post/a-grounded-perspective-on-data-center-growth-in-pennsylvania"},{"title":"Alerify Partners with Zadara to Bring Private AI to Central PA","url":"https://www.alerify.com/post/alerify-partners-with-zadara-to-bring-private-ai-to-central-pa"}],"runId":"srun_c0e944bd89584b541539907da23fc469","classifiedAt":"2026-07-02T22:55:56.432Z"},"1888":{"community_note":"Residents and local groups opposed the 216 Greenfield Road AI data center over zoning and resource impacts; a judge ruled for the developers, blocking a residents’ zoning appeal in Dec. 2025, and City Council tabled AI data‑center zoning changes on June 24, 2026.","water_impact":"low","ai_evidence":"CoreWeave announced a 100 MW (expandable to 300 MW) AI facility in Lancaster to build and run next‑generation AI models, and its AI data centers feature high‑performance GPU clusters with liquid cooling.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Municipal use is capped at 20,000 gallons/day per campus in the draft CBA, and Lancaster’s supply is roughly 60% Susquehanna River and 40% Conestoga River.","grid_note":"Planned at 100 MW with potential to 300 MW in PPL territory, amid a data‑center pipeline rising to 14.4 GW by 2034, with PPL facility upgrades and a new large‑load tariff for 50+ MW sites.","citations":[{"title":"Lancaster City Council postpones vote on zoning changes ...","url":"https://www.wgal.com/article/lancaster-city-council-hold-special-meeting-data-center-zoning/71713745"},{"title":"Lancaster city data center developers win suit to block ...","url":"https://lancasteronline.com/news/local/lancaster-city-data-center-developers-win-suit-to-block-residents-zoning-appeal/article_70a011c5-7cf2-4b77-9167-df7d2268bb19.html"},{"title":"Residents push back against proposed $6B data center in ...","url":"https://lancasteronline.com/news/regional/residents-push-back-against-proposed-6b-data-center-in-lancaster-city/article_640500c2-4f80-418f-a368-9d4596ecbfeb.html"},{"title":"COMMUNITY BENEFITS AGREEMENT","url":"https://www.cityoflancasterpa.gov/wp-content/uploads/2025/11/Lancaster-CBA-Draft.pdf"},{"title":"AI Data Center Liquid Cooling | CoreWeave Video","url":"https://www.coreweave.com/resources/videos/coreweave-ai-data-centers-closed-loop-cooling-at-scale"}],"runId":"srun_c0e944bd89584b54cf91adccd128cb66","classifiedAt":"2026-07-02T22:55:56.432Z"},"1889":{"community_note":"Organized opposition led by Lancaster Stands Up and residents has focused on noise, energy and community impacts, while the city advanced a data-center zoning ordinance and a tentative Community Benefits Agreement.","water_impact":"low","ai_evidence":"GPU cloud provider CoreWeave is named as the sole tenant at 1375 Harrisburg Pike and announced a multi‑billion‑dollar AI data center in Lancaster with large-scale IT capacity.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Less than 20,000 gallons/day on average from Lancaster’s municipal supply, with no municipal water used for cooling reported for the facility.","grid_note":"Initial 100 MW with potential expansion toward 300 MW; PPL is upgrading facilities to serve the site, and PPL’s data‑center tariff and pipeline growth (including 10‑year agreements to protect other customers) indicate significant grid planning implications.","citations":[{"title":"Lancaster residents voice opposition to $6 billion AI Data ...","url":"https://www.wgal.com/article/lancaster-ai-data-centers-controversy/65629331"},{"title":"Lancaster Stands Up hosting data center public forum","url":"https://lancasteronline.com/news/local/lancaster-stands-up-hosting-data-center-public-forum/article_3f993224-9401-4064-bc27-3374a2623dec.html"},{"title":"Lancaster proposes zoning rules for AI data centers","url":"https://www.fox43.com/article/news/local/lancaster-county/lancaster-data-center-zoning-energy-water-heat-electricity/521-f2f90caf-8fa7-4b8f-9a98-866b3f37b5e0"},{"title":"Lancaster City Council to vote on benefits agreement for AI ...","url":"https://www.wgal.com/article/lancaster-ai-data-centers-community-benefits-agreement/69476798"},{"title":"Records show proposed Lancaster city data centers' water ...","url":"https://www.witf.org/2025/09/27/data-centers-water-allotment-to-be-80-less-than-former-printing-plants-in-lancaster-city/"}],"runId":"srun_c0e944bd89584b5489e9c79f3bb5a1d7","classifiedAt":"2026-07-02T22:55:56.432Z"},"1890":{"community_note":"Residents in southern Venango County have organized and packed local meetings to press officials on data‑center zoning and related impacts, with community organizing to oppose the project ongoing [1][2].","water_impact":"moderate","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"No cooling‑water volume was reported for the air‑cooled facility, but the co‑located Scrubgrass Generating Plant holds an NPDES permit at 2151 Lisbon Road and faces a mandated coal‑ash removal by September 2026, signaling water/groundwater exposure [1][2].","grid_note":"An ~85 MW on‑site plant currently powers mining operations, while conceptual load studies with FirstEnergy at 250, 500, and 750 MW outline prospective expansion pathways [1][2].","citations":[{"title":"Around 40 southern Venango County residents packed ...","url":"https://www.facebook.com/DerrickNewsHerald/posts/around-40-southern-venango-county-residents-packed-into-room-100-of-the-courthou/1784885965843348/"},{"title":"How to stop a data center in Venango County, PA, and ...","url":"https://www.facebook.com/groups/2350406885413177/posts/2470083300112201/"},{"title":"NPDES PUBLIC NOTICE","url":"https://files.dep.state.pa.us/water/Wastewater%20Management/EDMRPortalFiles/Permits/PA0103713.3.Final.9-24-2012_23161_v1.pdf"},{"title":"Scrubgrass Cryptomining Facility to Expedite Removal of ...","url":"https://earthjustice.org/press/2025/scrubgrass-cryptomining-facility-to-expedite-removal-of-toxic-coal-ash-mountain"},{"title":"KEEL Scrubgrass Site Analysis: Power, Permitting, and AI ...","url":"https://northwiseproject.com/keel-scrubgrass-site-analysis/"}],"runId":"srun_c0e944bd89584b544441e16e4aff5960","classifiedAt":"2026-07-02T22:55:56.432Z"},"1891":{"community_note":"","water_impact":"low","ai_evidence":"The operator signed a 20MW lease with an unnamed AI customer to deploy Nvidia GPUs [1], and a prior AI/HPC colocation deal referenced deploying NVIDIA GPUs, including H100s [2]. The Midland campus itself is documented as a 120MW bitcoin/digital-asset facility [3], so we classify it as mixed rather than a dedicated AI-training supercluster.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"PA DEP’s NPDES fact sheet for the Midland facility notes: “No water usage or discharges are associated with this operation” for the portion leased for bitcoin mining [1].","grid_note":"Midland is 120 MW and backed by a 5‑year PPA with Energy Harbor for 100% carbon‑free energy, with a Voltus partnership to deliver up to 100 MW to PJM demand response [1][2].","citations":[{"title":"Mawson Infrastructure Group Inc. Announces Community ...","url":"https://www.businesswire.com/news/home/20220222005085/en/Mawson-Infrastructure-Group-Inc.-Announces-Community-Engagement-Program-in-Beaver-County-Pennsylvania-USA"},{"title":"A Beaver County bitcoin mine is hiring — no training needed","url":"https://www.wtae.com/article/beaver-county-bitcoin-mine/41782925"},{"title":"npdes permit fact sheet individual industrial waste (iw) and iw ...","url":"https://files.dep.state.pa.us/water/wastewater%20management/EDMRPortalFiles/Permits/PA0005754_FACT_SHEET_20231120_DRAFT_V2.pdf"},{"title":"Mawson Infrastructure Group signs 20MW lease with AI ...","url":"https://www.datacenterdynamics.com/en/news/mawson-infrastructure-group-signs-20mw-lease-with-ai-customer/"},{"title":"Mawson inks multi-million AI/HPC colocation deal","url":"https://ng.investing.com/news/company-news/mawson-inks-multimillion-aihpc-colocation-deal-93CH-1489967"}],"runId":"srun_c0e944bd89584b54fe99fb3164064fa5","classifiedAt":"2026-07-02T22:55:56.432Z"},"1900":{"community_note":"Protect PT and local residents have organized meetings over noise, environmental/health, and transparency concerns, and the township enacted a temporary pause while working on local regulation of data centers.","water_impact":"unknown","ai_evidence":"TensorWave is deploying capacity at TECfusions’ Pennsylvania site to extend its AMD training cluster, built on direct liquid cooling and high-density designs; TECfusions markets the campus as AI infrastructure.","grid_impact":"high","ai_class":"ai-training","community_pushback":"active-opposition","water_note":"No gallons/day figure was reported; coverage notes community questions on environmental impacts while project materials reference direct liquid cooling, with no site-specific water-withdrawal or discharge details found.","grid_note":"Marketed to 3 GW with dual-utility/microgrid design, and reporting says on-site natural gas generation from existing wells is planned to lessen local grid burden.","citations":[{"title":"Upper Burrell community meeting on data centers ordinance","url":"https://www.facebook.com/ProtectPT/posts/join-us-for-the-start-of-our-monthly-upper-burrell-community-meetings-learn-more/1517946867029551/"},{"title":"Upper Burrell data center town hall scheduled for May","url":"https://triblive.com/local/valley-news-dispatch/upper-burrell-data-center-town-hall-scheduled-for-may/"},{"title":"Community opposition, local regulation of data centers ...","url":"https://triblive.com/local/valley-news-dispatch/community-opposition-local-regulation-of-data-centers-coming-together-in-upper-burrell/"},{"title":"Upper Burrell puts temporary pause on new data center ...","url":"https://triblive.com/local/valley-news-dispatch/upper-burrell-puts-temporary-pause-on-new-data-center-developments/"},{"title":"TensorWave Expands with TECfusions, Splitting 20 MW ...","url":"https://tecfusions.com/tensorwave-expands-with-tecfusions-splitting-20-mw-across-arizona-and-pennsylvania-locations/"}],"runId":"srun_c0e944bd89584b54b8f21480885ac7aa","classifiedAt":"2026-07-02T22:55:56.432Z"},"1907":{"community_note":"No organized, facility-specific pushback was found; county-wide guardrails for data-center projects were adopted by Bernalillo County to address water, energy, community engagement, and pollution concerns and are not specific to this site.","water_impact":"unknown","ai_evidence":"Listings describe the site as a colocation/hosting facility (not AI-specific), with no confirmed GPU superclusters or AI tenants disclosed [3][4][6].","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No gallons/day or water sourcing/discharge information is published; listings note CRAC-based cooling (air-cooled) rather than water-use figures [2].","grid_note":"Operator materials cite 2x PNM utility feeds for 2 MW and 3x UPS available for 450 kW at 725 6th Street NW [1].","citations":[{"title":"Data Center Project Guardrails Resolution Approved by ...","url":"https://www.bernco.gov/blog/2026/02/11/data-center-project-guardrails-resolution-approved-by-bernalillo-county-commission/"},{"title":"Oso Grande","url":"https://www.osogrande.com/"},{"title":"Oso Grande Technologies,: ABQ1 (Oso Grande Data Center)","url":"https://www.datacenters.com/oso-grande-technologies-abq1-oso-grande"},{"title":"Oso Grande Technologies - Albuquerque","url":"https://www.datacentermap.com/usa/new-mexico/albuquerque/oso-secure/"},{"title":"Albuquerque Data Centers - 18 Facilities from 5 Operators","url":"https://www.datacentermap.com/usa/new-mexico/albuquerque/"}],"runId":"srun_c0e944bd89584b54734a2e53960fd86b","classifiedAt":"2026-07-02T22:55:56.432Z"},"1916":{"community_note":"Residents and local groups sought a 12‑month moratorium over water/power/land‑use concerns; the City Council rejected the moratorium and the Planning Commission later failed to endorse related zoning amendments.","water_impact":"moderate","ai_evidence":"Listed as an Azure facility in the West Central US region, but Microsoft’s H100 GPUs are noted as available in East US2 and West Europe and model availability varies by region, with no public disclosure of Cheyenne‑specific GPU superclusters.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Local officials report the Cheyenne data‑center fleet uses about 200 acre‑feet/year (~1.48% of city use), while Microsoft pledges to minimize and replenish its water use amid growing drought‑related scrutiny.","grid_note":"Served under Black Hills Energy’s Large Power Contract Service structure approved by state regulators, with ratepayer protections and extensive permitted backup generation (128 diesel units) to mitigate constraints.","citations":[{"title":"Cheyenne City Council rejects data center moratorium","url":"https://capcity.news/community/city/2026/05/27/cheyenne-city-council-rejects-data-center-moratorium/"},{"title":"Microsoft presents data center expansion plans to the public","url":"https://www.wyomingnews.com/news/local_news/microsoft-presents-data-center-expansion-plans-to-the-public/article_3707713e-3e24-41d0-9ba4-897adf85728b.html"},{"title":"Microsoft's data center plans fail to get Planning ...","url":"https://capcity.news/community/city/2026/06/05/microsofts-data-center-plans-fail-to-get-planning-commission-endorsement-monday/"},{"title":"Amid growing concern, data center developers insist they ...","url":"https://capcity.news/wyoming/2026/05/20/amid-growing-concern-data-center-developers-insist-they-wont-stress-wyoming-water/"},{"title":"Microsoft announces intent to expand datacenter ...","url":"https://news.microsoft.com/source/2026/04/14/microsoft-announces-intent-to-expand-datacenter-operations-in-cheyenne-accelerating-innovation-and-economic-growth/"}],"runId":"srun_c0e944bd89584b542da2482297f1d1ec","classifiedAt":"2026-07-02T22:55:56.432Z"},"1919":{"community_note":"Neighbors near the Natrona/Converse line have raised quality‑of‑life and transparency concerns, and Natrona County commissioners took no action on an industrial‑park fast‑track; no lawsuit or moratorium specific to the Casper site was found as of 2026‑07‑02 [1][2].","water_impact":"moderate","ai_evidence":"A 2025 partnership release says the Casper project is “designed to meet accelerating demand for AI compute capacity,” featuring high‑density, liquid‑cooled data halls [5], while a major network partner calls the facilities “AI‑ready” [6] and a facility listing dubs it an “AI Factory” with multi‑GW scale [7].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Prometheus cites a proprietary closed‑loop, “non‑consumptive” liquid‑cooling approach and presented water‑saving tech to a Wyoming committee; no specific cooling gallons/day were disclosed [8][9][10].","grid_note":"Plans call for substantial on‑site natural‑gas generation with carbon‑removal credits, and materials describe a 1.2 GW initial scale with room to grow [11][12].","citations":[{"title":"Too quiet on the data center front, neighbors say","url":"https://oilcity.news/community/county-community/2026/05/16/too-quiet-on-the-data-center-front-neighbors-say/"},{"title":"Natrona County takes no action on industrial park plan ...","url":"https://oilcity.news/community/county-community/county/2026/06/16/natrona-county-takes-no-action-on-industrial-park-plan-for-prometheus-data-center-project/"},{"title":"Prometheus Hyperscale, Spiritus, and Casper Carbon ...","url":"https://www.prometheushyperscale.com/news/ph-spiritus-casper-carbon-capture-announce-strategic-partnership"},{"title":"Microsoft, Prometheus Hyperscale pitch water-saving tech ...","url":"https://oilcity.news/government/state/2026/05/08/microsoft-prometheus-hyperscale-pitch-water-saving-tech-to-wyoming-committee/"},{"title":"Large data center proposed near Casper","url":"https://oilcity.news/business-feature-2/2026/05/01/large-data-center-proposed-near-casper/"}],"runId":"srun_c0e944bd89584b54e7fa65f52d396071","classifiedAt":"2026-07-02T22:55:56.722Z"},"1936":{"community_note":"Rock County Neighbors for Responsible Development/No Beloit Data Center is pushing an 18‑month moratorium citing water and power concerns, with opposition described as growing and organized.","water_impact":"unknown","ai_evidence":"Reported as a Meta-linked pre-development data center in Beloit with no site-specific GPU cluster or AI workload deployment announced; one outlet characterizes the plan as AI-optimized but without confirmed hardware tenants.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day disclosed; reporting says a closed-loop cooling system could use about 50% less water than current designs and water/sewer studies are part of pre-development work.","grid_note":"Local reporting indicates potential demand in the hundreds of MW; the site is in Alliant Energy territory, where numerous large-load data center proposals are being managed via utility programs and planning.","citations":[{"title":"Citizens push back on possible data center in Town of Beloit","url":"https://www.wuwm.com/citizens-push-back-on-possible-data-center-in-town-of-beloit"},{"title":"In Rock County, data center opposition is growing ...","url":"https://www.gazettextra.com/news/in-rock-county-data-center-opposition-is-growing-becoming-more-organized/article_135a5225-a4a8-45b2-924a-8707ad1202da.html"},{"title":"Town of Beloit has pre-development agreement with ...","url":"https://www.wpr.org/news/town-of-beloit-pre-development-agreement-develop-data-center"},{"title":"Meta signs pre-development agreement for data center in ...","url":"https://www.datacenterdynamics.com/en/news/meta-signs-pre-development-agreement-for-data-center-in-beloit-wisconsin/"},{"title":"Meta Beloit Data Center | W B R Townline Rd & I-39 ALT","url":"https://www.datacentermap.com/usa/wisconsin/beloit/meta-beloit/"}],"runId":"srun_c0e944bd89584b54a2527f44f68eb26e","classifiedAt":"2026-07-02T22:55:56.722Z"},"1940":{"community_note":"Active opposition exists: the No Data Center Ahwatukee group and dozens of nearby residents protested the project, while City records show the project received approval.","water_impact":"unknown","ai_evidence":"Menlo markets MD-PHX1 as a hyperscale campus with 257MW+ utility capacity and a dedicated on-site substation, and listings describe it as high-density compute ready, but there is no named AI tenant or disclosed GPU cluster.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day or source disclosures were found; local reporting notes residents raised high water-use concerns.","grid_note":"Utility design supports 257MW+ total capacity with up to 180MW critical IT load and a dedicated on-site substation.","citations":[{"title":"No Data Center Ahwatukee: Home","url":"https://www.nodatacenterahwatukee.com/"},{"title":"Ahwatukee Foothills Village Planning Committee hearing ...","url":"https://www.ahwatukee.com/news/ahwatukee-foothills-village-planning-committee-hearing-heats-up-over-data-center/article_ab9f6692-99d6-4260-8ccb-eb88fdc6ed1a.html"},{"title":"Minutes City Council Formal Meeting","url":"https://www.phoenix.gov/cityclerksite/City%20Council%20Meeting%20Files/3-20-24%20Formal%20Minutes-FINAL(V2).pdf"},{"title":"Resistance to this data hub in Phoenix is futile. Here's why","url":"https://www.azcentral.com/story/news/local/ahwatukee/2026/04/23/resistance-to-southeast-phoenix-data-hub-is-futile/89536779007/"},{"title":"Report details Arizona data centers' challenges","url":"https://www.ahwatukee.com/news/report-details-arizona-data-centers-challenges/article_e2328d1b-d171-4d16-9912-872dd4fac9e0.html"}],"runId":"srun_c0e944bd89584b545caa99171179f8cf","classifiedAt":"2026-07-02T22:55:56.722Z"},"1943":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No gallons/day or source/discharge details are published for this address; the operator specifies N+2 CRAC air cooling for edge sites and this location totals only 360 sq ft, suggesting minimal process-water use.","grid_note":"No public MW load or utility-upgrade records were found for this address; with only 360 sq ft of space, the grid profile is minimal versus hyperscale campuses.","citations":[{"title":"Community Files Lawsuit Over Stokes County Data Center ...","url":"https://southerncoalition.org/community-groups-residents-file-lawsuit-over-stokes-county-data-center-rezoning/"},{"title":"An attorney representing DC Blox said at a Thursday night ...","url":"https://www.facebook.com/WSMVTV/posts/an-attorney-representing-dc-blox-said-at-a-thursday-night-metro-planning-commiss/1505869358236203/"},{"title":"Contact Us","url":"https://www.americantower.com/contact"},{"title":"Residents Sue Georgia County Over Data Center Plans","url":"https://www.govtech.com/products/residents-sue-georgia-county-over-data-center-plans"},{"title":"American Tower Data Center in Atlanta, Georgia","url":"https://www.datacenters.com/american-tower-edge-atlanta"}],"runId":"srun_c0e944bd89584b541702b2e6343fc228","classifiedAt":"2026-07-02T22:55:56.722Z"},"1947":{"community_note":"Residents organized protests and urged Marietta City Council to halt the Bells Ferry Road data center, while the city stated no site-development or building permits have been issued as of June 2026 [1][2].","water_impact":"unknown","ai_evidence":"Project listings describe a ~347,200 sq ft, up to 108 MW hyperscale campus with two buildings, but no reporting identifies AI tenants or GPU supercluster deployments [1][2].","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No facility-specific gallons/day, source, or discharge details were found; the city noted the site was rezoned and that no construction permits had been issued as of June 2026 [1].","grid_note":"Listed around 108 MW with zoning approval for a new campus near 1751 Bells Ferry Road; a substantial prospective load that remains pre-permit/interconnection [1].","citations":[{"title":"Citizens urge Marietta City Council to scuttle data center","url":"https://eastcobbnews.com/citizens-urge-marietta-city-council-to-scuttle-data-center/"},{"title":"City - Facts Regarding Property at 1751 Bells Ferry Road ...","url":"https://www.facebook.com/CityofMariettaGA/photos/facts-regarding-property-at-1751-bells-ferry-roadthe-city-of-marietta-and-mariet/1415089463987569/"},{"title":"Facts Regarding Property Located at 1751 Bells Ferry Road","url":"https://www.mariettaga.gov/m/newsflash/Home/Detail/5520"},{"title":"Grindcap: Marietta Campus Data Center","url":"https://baxtel.com/data-center/grindcap-marietta-campus"},{"title":"108MW data center campus granted zoning approval outside Atlanta, Georgia - DCD","url":"https://www.datacenterdynamics.com/en/news/108mw-data-center-campus-granted-zoning-approval-outside-atlanta-georgia/"}],"runId":"srun_c0e944bd89584b54d15acca959a45f1d","classifiedAt":"2026-07-02T22:55:56.722Z"},"1949":{"community_note":"No Scott-specific organized opposition or legal/zoning fights were found; Nebraska moratorium coverage referenced other counties, not this Omaha facility [7].","water_impact":"unknown","ai_evidence":"Scott offers GPU‑as‑a‑Service for AI/ML workloads, scaling from one to hundreds of GPUs, and uses VAST + NVIDIA for its GPU services [1][2]; Omaha business reporting highlights Scott’s significant AI infrastructure, with NSRI and NCITE located at the Scott Technology Center campus [3][8][9].","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"Materials indicate chilled‑water cooling with an independent on‑site well; no public gallons/day, aquifer stress, or discharge details were found [4].","grid_note":"OPPD‑served facility with two medium‑voltage feeds and up to ~9,000 kW critical IT load on a ~20‑MW Tier III campus; standby generators provide backup [5][6].","citations":[{"title":"A Nebraska county just banned new data centers for up to ...","url":"https://nebraskapublicmedia.org/en/news/news-articles/a-nebraska-county-just-banned-new-data-centers-for-up-to-a-year-more-could-follow/"},{"title":"Scott Data Center – Infrastructure Built on Trust - Scott Data","url":"https://www.scottdatacenter.com/"},{"title":"Scott Data Center","url":"https://www.linkedin.com/company/scott-data"},{"title":"Google proposes Nebraska data center requiring more ...","url":"https://flatwaterfreepress.org/google-proposes-nebraska-data-center-requiring-more-power-than-all-of-lincoln/"},{"title":"Scott Data Center in Omaha | 6805 Pine St. (20 MW)","url":"https://www.datacentermap.com/usa/nebraska/omaha/scott-data-center/"}],"runId":"srun_c0e944bd89584b548bb2e618f70b7dc2","classifiedAt":"2026-07-02T22:55:56.723Z"},"1951":{"community_note":"No site-specific opposition at 11110 State St was found; regionally, residents and advocates have criticized OPPD’s delayed North Omaha Station coal transition linked in reporting to data‑center demand, and the transition vote was delayed.","water_impact":"unknown","ai_evidence":"Google’s Omaha site lead describes deploying and maintaining platforms including “AI and machine learning,” indicating AI workloads operate at the campus; no public evidence confirms this building hosts dedicated training superclusters.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No site-specific gallons/day were found; Google partnered with Omaha’s Metropolitan Utilities District on leak detection projected to save up to 1 billion gallons per year as part of efforts to reduce data‑center water use.","grid_note":"Building 1 is listed at 87 MW and operational in 2024, while OPPD reports historic load growth of ~100 MW/year requiring added capacity and reliability actions.","citations":[{"title":"How Google and Meta data centers are keeping coal alive ...","url":"https://www.washingtonpost.com/business/2024/10/08/google-meta-omaha-data-centers/"},{"title":"Power Demand from Data Centers Keeping Coal-Fired ...","url":"https://www.powermag.com/power-demand-from-data-centers-keeping-coal-fired-plants-online/"},{"title":"OPPD delays vote on North Omaha power plant transition ...","url":"https://nebraskaexaminer.com/2025/10/29/oppd-delays-vote-on-north-omaha-power-plant-transition-from-coal-to-natural-gas/"},{"title":"Water and energy use is growing as data centers are built ...","url":"https://nebraskapublicmedia.org/en/news/news-articles/water-and-energy-use-is-growing-as-data-centers-are-built-across-the-midwest-and-great-plains/"},{"title":"Advancing responsible water use at our data centers","url":"https://datacenters.google/water/"}],"runId":"srun_c0e944bd89584b54460b03cbf6cc8f73","classifiedAt":"2026-07-02T22:59:28.513Z"},"1957":{"community_note":"Residents and public‑interest groups opposed the diesel‑generator expansion on air/noise and water grounds, but IDEM approved additional generators in April 2026 and a statewide moratorium push is ongoing [1][2][3].","water_impact":"moderate","ai_evidence":"Coverage of the site’s launch says it will support Google Maps, Gemini AI, and Google Cloud customers, indicating AI workloads but not dedicated training superclusters [4].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Uses city water with evaporative cooling in a system averaging 37 MGD vs. 72 MGD capacity, with a Google‑funded project projected to save 182 million gallons/year [8][9][10].","grid_note":"Demand‑response with I&M was approved, and the site’s backup fleet totals 179 diesel generators capable of 527.52 MW [5][7].","citations":[{"title":"IDEM approves request to install additional backup diesel ...","url":"https://www.wane.com/top-stories/idem-approves-request-to-install-additional-backup-diesel-generators-at-google-data-center-in-fort-wayne/"},{"title":"Fort Wayne residents are getting a Google data center, but ...","url":"https://www.wfyi.org/public-affairs/2025-12-16/googles-data-center-what-the-build-could-mean-for-fort-wayne"},{"title":"27 Public Interest Organizations Call on Indiana Local ...","url":"https://www.citact.org/news/27-public-interest-organizations-call-indiana-local-governments-enact-data-center-moratorium"},{"title":"Google Data Center | Engage Fort Wayne","url":"https://engage.cityoffortwayne.org/data-center"},{"title":"Geologist: More studies needed to ensure data centers use ...","url":"https://www.wane.com/top-stories/geologist-more-studies-needed-to-ensure-data-centers-use-water-responsibly/"}],"runId":"srun_c0e944bd89584b5400631dba7852cb84","classifiedAt":"2026-07-02T22:55:56.723Z"},"1970":{"community_note":"Residents, including petition organizer LaPlante, mounted active opposition over water/sewer, environmental, and blasting issues via a 275+ signature petition and hearing testimony, but the project was approved and later broke ground.","water_impact":"high","ai_evidence":"Announced and approved as a multi-building, phased hyperscale data center campus, with no public confirmation of GPU superclusters or AI-tenant deployments.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Projected demand is very large: ~6.1–7.0 million gallons/day of water and ~2.0 million gallons/day of wastewater, with City of Tulsa water/sewer coordination noted.","grid_note":"On-site electrical substations are planned, and reporting ties the project into grid-strengthening efforts and residential bill-impact debates.","citations":[{"title":"Tulsa, Okla., Tables Zoning Vote for New Data Center - GovTech","url":"https://www.govtech.com/products/tulsa-okla-tables-zoning-vote-for-new-data-center"},{"title":"Tulsa approves Project Clydesdale data center ...","url":"https://ktul.com/news/local/tulsa-approves-project-clydesdale-data-center-despite-residents-environmental-concerns"},{"title":"Neighbors of new Tulsa data center offered 'preblast ...","url":"https://www.kosu.org/energy-environment/2025-12-02/neighbors-of-new-tulsa-data-center-offered-preblast-inspections-but-not-everyone-got-the-same-offer"},{"title":"Tulsa County Board of commissioners vote to approve ...","url":"https://www.fox23.com/news/tulsa-county-board-of-commissioners-vote-to-approve-project-clydesdale/article_07726adb-5615-4cdc-99d3-14bc0359cbad.html"},{"title":"City of Owasso, OK","url":"https://www.facebook.com/CityOfOwasso/posts/today-state-and-local-officials-broke-ground-on-project-clydesdale-a-data-center/1226771082814635/"}],"runId":"srun_c0e944bd89584b54babb376d287db919","classifiedAt":"2026-07-02T22:55:56.723Z"},"1971":{"community_note":"Local groups (e.g., Protect Sand Springs Alliance and conservation nonprofit Land Legacy) opposed Project Spring over secrecy and land-use concerns via lawsuits and recall efforts; approvals proceeded while the recall failed for lack of verified signatures and litigation continued into spring 2026.","water_impact":"low","ai_evidence":"Google tied the Oklahoma expansion to cloud and AI infrastructure, and a project listing for Project Spring mentions GPUs among planned equipment, while local reporting confirms Google as end-user but notes few technical details were provided.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Developers said the campus would use dry/non-evaporative cooling, minimizing process water, while Osage Nation raised water/sovereignty concerns and the project FAQ addresses Skiatook Lake levels.","grid_note":"Served by PSO within the SPP footprint, the campus is described as a massive 827-acre build—implying substantial new load even though specific substation/transmission upgrade filings weren’t cited.","citations":[{"title":"Sand Springs, Oklahoma, to consider \"Project ...","url":"https://www.datacenterdynamics.com/en/news/sand-springs-oklahoma-to-consider-project-spring-data-center-proposal/"},{"title":"Oklahoma city council members welcomed a Google data ...","url":"https://www.nbcnews.com/news/us-news/oklahoma-city-council-members-welcomed-google-data-center-now-face-rec-rcna264726"},{"title":"Project Spring data center lawsuit moved to Tulsa County","url":"https://www.kjrh.com/news/local-news/project-spring-data-center-lawsuit-moved-to-tulsa-county"},{"title":"Recall effort for entire Sand Springs City Council fails due ...","url":"https://www.fox23.com/news/recall-effort-for-entire-sand-springs-city-council-fails-due-to-lack-of-signatures-city/article_2dbfdaf7-f682-480f-9940-a6ec82e50ff9.html"},{"title":"As data centers boom in Oklahoma, so does water demand","url":"https://www.readfrontier.org/stories/as-data-centers-boom-in-oklahoma-so-does-water-demand/"}],"runId":"srun_c0e944bd89584b54751350dcca425576","classifiedAt":"2026-07-02T22:55:56.723Z"},"1974":{"community_note":"Savannah’s mayor and city leaders have publicly opposed new data centers over environmental and cost concerns, but no Seimitsu‑specific opposition or legal action was found [3][4].","water_impact":"unknown","ai_evidence":"Seimitsu’s 1523 Bull Street site is presented as a hardened colocation/interconnection facility serving multiple backbone carriers with lit WAVE/IP Transit and a meet‑me‑room, with no mention of GPU clusters or AI tenants [1]; a March 2026 release describes integrating Duos Edge AI nodes into Seimitsu’s fiber backbone across Georgia but does not identify 1523 Bull Street as a deployment site [2].","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No facility‑specific cooling method or water‑use disclosures (e.g., gallons/day, source, discharge) were found for 1523 Bull Street.","grid_note":"","citations":[{"title":"Augusta data center could use wastewater for cooling","url":"https://www.wrdw.com/2026/05/11/qts-data-center-project-raises-questions-about-savannah-river-water-use/"},{"title":"DATA CENTER FACT SHEET","url":"https://psc.ga.gov/site/downloads/datacenterfactsheet.pdf"},{"title":"Network Design and Commercial Infrastructure - Savannah ...","url":"https://www.seimitsu.com/datacenter-1"},{"title":"How Much Water Does a Data Center Use?","url":"https://airsysnorthamerica.com/how-much-water-does-a-data-center-use/"},{"title":"Data Centers & Your Georgia Power Bill | FAQs & Updates","url":"https://www.georgiapower.com/data-centers.html"}],"runId":"srun_c0e944bd89584b542f6b6a8f76c1b747","classifiedAt":"2026-07-02T22:55:56.723Z"},"1975":{"community_note":"No organized opposition specific to Dalton 1 & 2; the only noted action was an EPD air-permit public comment, while rezoning fights and noise concerns cited locally apply to the separate Dalton 4/Old Tilton Road project.","water_impact":"unknown","ai_evidence":"Reports cite Nvidia DGX hardware at Dalton 1 and list Dalton 1 & 2 as a DGX‑Ready AI facility, indicating active AI/HPC capability without clarity on whether workloads are solely training or inference.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No public gallons/day, source, or discharge details were found for Dalton 1 & 2.","grid_note":"Initial load was cited at 20–35 MW and the campus is profiled at 50 MW capacity, with Dalton Utilities sourcing power and coordinating needs with data‑center customers.","citations":[{"title":"Two air permits in process for local Core Scientific data ...","url":"https://daltoncitizen.com/2026/05/30/two-air-permits-in-process-for-local-core-scientific-data-center-sites/"},{"title":"Core Scientific: Dalton 4 Data Center","url":"https://baxtel.com/data-center/core-scientific-dalton-4"},{"title":"WATCH: Construction continues on an AI data center campus ...","url":"https://www.facebook.com/wtvcnewschannel9/videos/watch-construction-continues-on-an-ai-data-center-campus-in-dalton-nearly-a-year/3773298206146681/"},{"title":"High-Density Data Center in Dalton Georgia (Dalton 1 & 2)","url":"https://corescientific.com/high-density-data-centers/dalton-ga-dnn1-2/"},{"title":"Core Scientific: Dalton 2 Data Center","url":"https://www.datacenters.com/core-scientific-dalton-2"}],"runId":"srun_c0e944bd89584b54e9c3847ecd594290","classifiedAt":"2026-07-02T22:59:28.513Z"},"1987":{"community_note":"No organized opposition specific to 365 CO1 was found; Aurora leaders have been engaging residents on broader data center water/energy impacts and potential moratoriums.","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No site-specific water-use or discharge data was found for 3431 N Windsor; regional reporting says data centers are about 0.25% of Aurora’s annual demand and discusses utility tap processes in Colorado.","grid_note":"Existing ~8 MW colocation facility; Xcel is pursuing a special tariff for new high-demand data centers to shield other customers from added costs, with no public CO1-specific upgrade or curtailment filings noted.","citations":[{"title":"Community engagement sought on Aurora data center ...","url":"https://sentinelcolorado.com/metro/community-engagement-sought-on-aurora-data-center-concerns/"},{"title":"As Drought Deepens, Colorado Still Has No Rules For ...","url":"https://rockymountainvoice.com/2026/04/06/as-drought-deepens-colorado-still-has-no-rules-for-data-center-water-use/"},{"title":"Data centers are coming to Colorado. Can the parched ...","url":"https://watereducationcolorado.org/fresh-water-news/data-centers-are-coming-to-colorado-can-the-parched-state-handle-their-big-water-needs/"},{"title":"365 Data Centers in Aurora, Colorado","url":"https://www.datacenters.com/365-co1-aurora"},{"title":"Xcel releases new plan to charge data centers for its power","url":"https://www.cpr.org/2026/04/07/xcel-colorado-data-center-power-prices/"}],"runId":"srun_c0e944bd89584b54a41b9e213777e1f5","classifiedAt":"2026-07-02T22:55:56.723Z"},"1988":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific gallons/day, source, aquifer/drought, or discharge data was found; statewide coverage warns that Colorado’s data center boom could “drain already-stretched water resources,” without tying it to this site [1].","grid_note":"Expedient lists 1.6MW critical IT load for its Denver data center; no facility-specific utility upgrade, curtailment, or rate-case filings were found [1].","citations":[{"title":"Expedient Centennial Data Center in Denver (1.6 MW)","url":"https://www.datacentermap.com/usa/colorado/denver/expedient-centennial/"},{"title":"Xcel Energy to power new Google data center in Minnesota","url":"https://newsroom.xcelenergy.com/news/xcel-energy-to-power-new-google-data-center-in-minnesota"},{"title":"Could data center boom threaten Colorado's water supply ...","url":"https://www.denverpost.com/2025/06/05/data-centers-colorado-water-power/"},{"title":"Centennial Data Center","url":"https://expedient.com/uploads/exp__sell_sheet-dc_denver-1.pdf"},{"title":"Denver Data Center","url":"https://expedient.com/data-centers/denver/"}],"runId":"srun_c0e944bd89584b545e73bb90d8eaaeda","classifiedAt":"2026-07-02T22:55:56.723Z"},"1998":{"community_note":"No organized opposition found; the only notable event is a Nov. 9, 2022 generator fire at 7059 S Potomac St reported as an incident, with no ongoing campaign.","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"A facility listing notes water-linked cooling elements, including “water pumps underground HDPE condenser water ‘B’ loop piping,” but provides no gallons/day or water-source data.","grid_note":"Listed at 2.7 MW IT load with no published, site-specific utility upgrades or curtailments identified.","citations":[{"title":"Large plume of smoke seen during generator fire at ...","url":"https://www.cbsnews.com/colorado/news/generator-fire-centennial-potomac-street-large-plume-smoke/"},{"title":"Comcast Centennial Data Center","url":"https://baxtel.com/data-center/comcast-centennial"},{"title":"Could a new Denver data center use up to ...","url":"https://coloradosun.com/2026/06/29/denver-data-center-contoversy/"},{"title":"Data Centers and Water Use in the Potomac River Basin","url":"https://www.potomacriver.org/focus-areas/water-resources-and-drinking-water/water-resources/planning/data-centers-and-water-use-in-the-potomac-river-basin/"},{"title":"Data center water use not sustainable in increasingly dry ...","url":"https://coloradonewsline.com/2026/04/08/data-center-water-use/"}],"runId":"srun_c0e944bd89584b5418cbd543d8ee9f5b","classifiedAt":"2026-07-02T22:55:56.723Z"},"2001":{"community_note":"No site-specific opposition found; 2026 pushback in Colorado Springs centered on the unrelated Raeden/Project Taurus data center at the former Intel/Garden of the Gods site, which had administrative approval and an appeal window.","water_impact":"unknown","ai_evidence":"Facility listings describe a general colocation site at 102 S Tejon with no disclosed GPU clusters or AI deployments.","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No public gallons/day, source, or discharge details were found for 102 S Tejon in facility listings.","grid_note":"No public MW load found; listings only note diverse utility feeds, on-site generation, and N+1 redundancy.","citations":[{"title":"What's ahead in long process after data center gains first ...","url":"https://gazette.com/2026/06/16/whats-ahead-in-long-process-after-data-center-gains-first-approval-in-colorado-springs/"},{"title":"Colorado Springs administratively approves data center on ...","url":"https://gazette.com/2026/06/12/colorado-springs-administratively-approves-data-center-on-garden-of-the-gods-road/"},{"title":"The Colorado Springs Planning Department approved ...","url":"https://www.facebook.com/FOX21NewsColorado/posts/the-colorado-springs-planning-department-approved-project-taurus-moving-forward-/1426407366186409/"},{"title":"Colorado Springs Colocation Data Center","url":"https://www.hivelocity.net/products/colocation/colorado-springs/"},{"title":"Data102 - Colorado Springs Data Center (COS02)","url":"https://cloudandcolocation.com/datacenters/data102-colorado-springs-data-center-cos02/"}],"runId":"srun_c0e944bd89584b54d323ef325d1d52fc","classifiedAt":"2026-07-02T22:55:56.723Z"},"2005":{"community_note":"After public comment, the Linn County Board of Supervisors imposed an 18‑month moratorium on new data‑center rezonings in unincorporated areas through Jan. 1, 2028; the measure is now in effect.","water_impact":"low","ai_evidence":"Materials describe a large hyperscale data center campus in Cedar Rapids; no public disclosures identified of GPU superclusters, liquid-cooling deployments, or named AI tenants for CDR1 DC1.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"QTS cites water‑free closed‑loop cooling that would “conserve approximately 4 billion gallons of water annually,” local reporting says the facility “requires no net new water for cooling,” and construction dewatering led to “unpermitted wells” with a $20k penalty that were “not permanent and do not connect to the city's aquifer.”","grid_note":"QTS plans a temporary power plant to support testing at the campus until permanent utility service, and Alliant Energy’s CEO said Cedar Rapids data centers helped enable a five‑year rate freeze.","citations":[{"title":"Despite putting ordinance in place, Linn County passes ...","url":"https://www.kcrg.com/2026/07/01/despite-putting-ordinance-place-linn-county-passes-data-center-moratorium/"},{"title":"Linn County data center moratorium approved","url":"https://corridorbusiness.com/linn-county-data-center-moratorium-approved-how-the-board-got-to-2-1-and-what-happens-next/"},{"title":"Linn County Passes Temporary Data Center Moratorium ...","url":"https://www.linncountyiowa.gov/CivicAlerts.aspx?AID=4488"},{"title":"KCRG-TV9","url":"https://www.facebook.com/kcrgtv9/posts/after-three-hours-of-public-comment-and-discussion-the-linn-county-board-of-supe/1572857410873226/"},{"title":"Company behind Cedar Rapids data center used nearly 30 ...","url":"https://www.kcrg.com/2026/05/11/company-behind-an-iowa-data-center-is-facing-violations-georgia-this-isnt-first-time-its-broken-regulation/"}],"runId":"srun_c0e944bd89584b548d7c08e595bdf681","classifiedAt":"2026-07-02T22:59:28.513Z"},"2009":{"community_note":"Howard County approved a temporary moratorium on new data centers in June 2026, and the South Eternal Rings Drive facility is identified as the county’s only existing data center.","water_impact":"unknown","ai_evidence":"Public materials characterize this as a hyperscale powered shell with a sole tenant, and the owner’s acquisition notice provides no AI-specific disclosures (e.g., GPU clusters or liquid-cooling retrofits).","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No site-specific water consumption or cooling-water source is published; regional authorities are studying data-center water use in the Potomac River Basin.","grid_note":"No MW capacity is published for this facility; statewide reporting links data center growth to grid strain and higher electricity costs in Maryland.","citations":[{"title":"Howard County Council approves data center ban","url":"https://www.baltimoresun.com/2026/06/01/howard-county-council-approves-pause-on-new-data-centers/"},{"title":"Data Centers and Water Use in the Potomac River Basin","url":"https://www.potomacriver.org/focus-areas/water-resources-and-drinking-water/water-resources/planning/data-centers-and-water-use-in-the-potomac-river-basin/"},{"title":"9800 South Eternal Rings Drive - Specs","url":"https://www.datacentermap.com/usa/maryland/baltimore/9800-south-eternal-rings-drive/specs/"},{"title":"GI Partners Acquires Two Baltimore-Area Data Centers","url":"https://www.gipartners.com/news/gi-partners-acquires-two-baltimore-area-data-centers"},{"title":"As data centers multiply, Maryland's power grid struggles to ...","url":"https://marylandreporter.com/2026/03/04/as-data-centers-multiply-marylands-power-grid-struggles-to-keep-up/"}],"runId":"srun_c0e944bd89584b5447d4225484e5e65e","classifiedAt":"2026-07-02T22:59:28.513Z"},"2010":{"community_note":"Organized environmental and civic groups are pushing to pause/condition the Dickerson project over water and power concerns, with a countywide 6‑month permit moratorium in effect and conditional‑use hearings set for Sept. 10–11, 2026.","water_impact":"moderate","ai_evidence":"Atmosphere markets the Dickerson site as “AI & Cloud Ready,” supporting high‑density AI/ML workloads with liquid cooling, and positions its campuses for AI, cloud, and enterprise computing.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"MDE application MO2025S001/01 by Atmosphere DC Dickerson LLC seeks an annual average 200,000 gpd Potomac River surface‑water withdrawal for data‑center cooling; local reporting notes plans to use Potomac water for cooling.","grid_note":"Planned capacity is cited at 300 MW, and Maryland’s consumer advocate warns PJM may shift about $2B of data‑center‑driven transmission costs to state ratepayers.","citations":[{"title":"Delay, ban or welcome data centers: Montgomery County ...","url":"https://wtop.com/montgomery-county/2026/06/delay-ban-or-welcome-data-centers-montgomery-county-council-hears-from-residents/"},{"title":"CU 24-13(a)(A),Atmosphere Dickerson Property Owner ...","url":"https://www.montgomerycountymd.gov/office-zoning-administrative-hearings/hearings/cu-24-13aaatmosphere-dickerson-property-owner-llc-conditional-use-holder-terra-energy-llc"},{"title":"Environmental Leaders Demand 100% Clean Power for ...","url":"https://ccanactionfund.org/environmental-leaders-demand-100-clean-power-for-proposed-dickerson-data-center-in-montgomery-county/"},{"title":"Support a Two Year Moratorium for Data Center Permitting","url":"https://www.mocoalliance.org/news/three-competing-visions-for-data-centers-in-moco"},{"title":"September 1, 2025 The Water and Science Administration ...","url":"https://mde.maryland.gov/programs/water/water_supply/Documents/SubscriptionList-2025-09-01.pdf"}],"runId":"srun_c0e944bd89584b54022c3c0764e4895f","classifiedAt":"2026-07-02T22:55:56.723Z"},"2011":{"community_note":"Public Citizen and environmental groups, joined by local residents, have opposed the Morgantown sale and related county zoning over energy, water, noise, and market impacts; protests and FERC review remain ongoing.","water_impact":"unknown","ai_evidence":"TeraWulf and its engineering partner describe the Morgantown redevelopment as a high-density AI/HPC campus, with reporting citing a goal to support up to 1 GW of data center load; local coverage says the site will support high-performance computing and artificial intelligence.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No project-specific cooling method or gallons/day are disclosed; the legacy Morgantown site discharged under an NPDES permit to the Potomac/Pasquahanza Creek, and regional reporting notes data centers’ increasing water use in the Chesapeake Bay watershed.","grid_note":"Planned around up to ~1 GW of data center load, with PJM’s market monitor urging FERC in EC26-58 to prevent removing Morgantown units from the PJM market to serve data center load.","citations":[{"title":"united states of america","url":"https://www.citizen.org/wp-content/uploads/TeraWulfMorgantown.pdf"},{"title":"FERC urged to reject TeraWulf's power plant purchase due ...","url":"https://www.utilitydive.com/news/ferc-terawulf-morgantown-power-plant-google/816582/"},{"title":"Charles County Planning Commission Recommends ...","url":"https://ccanactionfund.org/charles-county-planning-commission-recommends-rejecting-data-center-zoning-amendment-in-unanimous-vote/"},{"title":"Environmental Review of the Air Pollution Control Project ...","url":"https://msa.maryland.gov/megafile/msa/speccol/sc5300/sc5339/000113/011000/011385/unrestricted/20090274e-001.pdf"},{"title":"As data centers multiply in the Chesapeake region, water ...","url":"https://www.bayjournal.com/news/pollution/as-data-centers-multiply-in-the-chesapeake-region-water-use-increases-too/article_ebcb4891-d6d6-4b42-8bb5-14bf61981531.html"}],"runId":"srun_c0e944bd89584b54bc8459f6cc246638","classifiedAt":"2026-07-02T22:55:56.723Z"},"2031":{"community_note":"No Boyers/WPA-1-specific organized opposition, lawsuits, or zoning fights were found; statewide reporting on Pennsylvania data-center opposition did not mention Iron Mountain/Boyers [1].","water_impact":"low","ai_evidence":"Iron Mountain announced a 2.4 MW, 10-year WPA-1 lease with a leading hyperscale enterprise software provider, and trade press reported a DCSA colocation contract at the Boyers site; no sources identify GPU/AI deployments at WPA-1 [1][2].","grid_impact":"low","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No gallons/day figure was found; DOE notes a 35-acre water reservoir at the underground Boyers site, while Iron Mountain describes an innovative cooling system utilizing a 100-acre underground reservoir [1][2].","grid_note":"15.5 MW facility; searches found no PJM/PUC filings, interconnection disputes, or required new transmission/generation tied to WPA-1 [1].","citations":[{"title":"Pennsylvania data centers face community opposition","url":"https://www.spotlightpa.org/news/2025/10/pennsylvania-data-centers-community-opposition-ai-development-environment/"},{"title":"Iron Mountain Data Centers: Geothermal Cooling System","url":"https://betterbuildingssolutioncenter.energy.gov/showcase-projects/iron-mountain-data-centers-geothermal-cooling-system"},{"title":"Underground Pennsylvania Data Center","url":"https://www.ironmountain.com/data-centers/locations/pennsylvania-data-center"},{"title":"Iron Mountain Signs 2.4 Megawatt Lease with Fortune 100 ...","url":"https://investors.ironmountain.com/news/news-details/2021/Iron-Mountain-Signs-2.4-Megawatt-Lease-with-Fortune-100-Technology-Customer-At-Western-Pennsylvania-Data-Center/default.aspx"},{"title":"US Defense Counterintelligence and Security Agency ...","url":"https://www.datacenterdynamics.com/en/news/us-defense-counterintelligence-and-security-agency-awards-iron-mountain-colocation-contract/"}],"runId":"srun_c0e944bd89584b5476dc739991f09e0d","classifiedAt":"2026-07-02T22:55:57.006Z"},"2034":{"community_note":"Shippingport Borough enacted Ordinance 240 regulating data centers/cryptomining, and a local op-ed criticized potential health/financial impacts; no lawsuits specific to Standard Power identified.","water_impact":"unknown","ai_evidence":"","grid_impact":"high","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No facility-specific gallons/day, cooling design, water source, or discharge permit found; the nearby Beaver Valley nuclear plant holds the NPDES/cooling-water permit (for the power station, not the data center).","grid_note":"A 10-year deal envisions 200–300 MW via a direct interconnection to the Beaver Valley nuclear plant; no public evidence of completed interconnection upgrades or ratepayer impacts.","citations":[{"title":"ORDINANCE No","url":"https://shippingportpa.com/wp-content/uploads/2025/04/Ordinance-240.pdf"},{"title":"Elan Justice Pavlinich: Shippingport data centers will be ...","url":"https://triblive.com/opinion/elan-justice-pavlinich-shippingport-data-centers-will-be-financial-health-burdens-on-beaver-county-residents/"},{"title":"Standard Power Beaver County facility - Global Energy Monitor","url":"https://www.gem.wiki/Standard_Power_Beaver_County_facility"},{"title":"Beaver Valley nuclear power to fuel new data center","url":"https://www.facebook.com/groups/920175504993620/posts/1702022843475545/"},{"title":"Standard Power to build massive blockchain ...","url":"https://www.datacenterdynamics.com/en/news/standard-power-to-build-massive-blockchain-data-center-at-pennsylvania-nuclear-power-station/"}],"runId":"srun_c0e944bd89584b5431348d28feeae692","classifiedAt":"2026-07-02T22:55:57.006Z"},"2036":{"community_note":"Residents and local groups have mounted petitions and public pressure over water, power, fit and environmental concerns, and county leaders advanced a nine‑month moratorium on new data centers while noting vested‑rights exemptions are possible.","water_impact":"moderate","ai_evidence":"No public disclosures indicate AI training clusters or named AI tenants at York I; materials describe a hyperscale campus amid general AI-driven demand rather than site‑specific AI workloads.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day figure reported; materials describe closed‑loop cooling with zero or reduced water use, residents flagged drought concerns, and federal permitting applied to site waters.","grid_note":"Duke Energy will upgrade transmission lines while QTS pays for all new power infrastructure, with posts citing about $51.5 million for new transmission infrastructure reimbursed to Duke.","citations":[{"title":"York County considers nine-month data center moratorium","url":"https://www.heraldonline.com/news/business/article315909645.html"},{"title":"Renewed concerns over QTS Data Center project in York ...","url":"https://www.wcnc.com/article/tech/science/environment/data-center-concerns-york-county-sc-2-11-2026/275-1d5a7101-2b38-43fe-b5ef-9032464e5f8b"},{"title":"York County weighs 9-month moratorium on new data ...","url":"https://www.wbtv.com/2026/06/17/york-county-weighs-9-month-moratorium-new-data-centers-what-we-know/"},{"title":"York I - QTS Data Centers","url":"https://www.ocolo.io/colocation/qts-data-centers/york-i/"},{"title":"Data Centers | York, SC","url":"https://www.yorkcountygov.com/1313/Data-Centers"}],"runId":"srun_c0e944bd89584b54eb8ca6fbaefdbc03","classifiedAt":"2026-07-02T22:55:57.006Z"},"2037":{"community_note":"Residents have organized and spoken out over potential noise, light, and environmental impacts, and county leaders considered a nine‑month moratorium on new data centers, while the QTS campus continues moving forward.","water_impact":"low","ai_evidence":"No public evidence of GPU superclusters, AI-training clusters, or named AI tenants; QTS and state materials frame this as a large wholesale/hyperscale data center campus investment without AI-specific disclosures.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Zero cooling water via closed‑loop/air‑cooled design, with municipal/non‑cooling uses only; the project is undergoing federal and state environmental permitting for discharges.","grid_note":"Duke Energy will handle most transmission line upgrades while York Electric Cooperative serves as the retail supplier, with YEC indicating the large, consistent load can help minimize future rate increases.","citations":[{"title":"People in York County share concerns around new data ...","url":"https://www.wbtv.com/2026/02/11/residents-share-concerns-new-data-center-being-built-york-county/"},{"title":"Renewed concerns over QTS Data Center project in York ...","url":"https://www.wcnc.com/article/tech/science/environment/data-center-concerns-york-county-sc-2-11-2026/275-1d5a7101-2b38-43fe-b5ef-9032464e5f8b"},{"title":"York County considers nine-month data center moratorium","url":"https://www.heraldonline.com/news/business/article315909645.html"},{"title":"QTS Data Centers establishing first South Carolina operations ...","url":"https://governor.sc.gov/news/2023-09/qts-data-centers-establishing-first-south-carolina-operations-york-county"},{"title":"Data Centers | York, SC","url":"https://www.yorkcountygov.com/1313/Data-Centers"}],"runId":"srun_c0e944bd89584b54a5e4c08aa9e7a0b4","classifiedAt":"2026-07-02T22:55:57.006Z"},"2049":{"community_note":"","water_impact":"moderate","ai_evidence":"Frontier is an AMD MI250X GPU–accelerated DOE Office of Science user facility, and ORNL reports using Frontier to train AI models (e.g., magnetic turbulence), confirming active AI training alongside broader HPC.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"Warm‑water direct liquid cooling with cooling towers (≈130,000‑gal system volume) and high‑flow pumps (up to ~10,000 gpm); no published consumptive gallons/day or source‑stress/discharge issues found.","grid_note":"About 40 MW power/cooling infrastructure with a dedicated ~2.5‑mile distribution line; TVA supplies ORNL’s electricity; no Frontier‑specific rate or curtailment issues reported.","citations":[{"title":"Oak Ridge National Laboratory launches the Next- ...","url":"https://www.ornl.gov/news/oak-ridge-national-laboratory-launches-next-generation-data-centers-institute"},{"title":"Frontier - Oak Ridge Leadership Computing Facility","url":"https://www.olcf.ornl.gov/olcf-resources/compute-systems/frontier/"},{"title":"Frontier (supercomputer)","url":"https://en.wikipedia.org/wiki/Frontier_(supercomputer)"},{"title":"ORNL institute to address power demand from AI data ...","url":"https://www.innovationnewsnetwork.com/ornl-institute-to-address-power-demand-from-ai-data-centres/67121/"},{"title":"Frontier: Designing the Electrical Infrastructure for a ...","url":"https://www.exascaleproject.org/designing-the-electrical-infrastructure-for-a-supercomputer-with-unprecedented-power-demands/"}],"runId":"srun_c0e944bd89584b54603cda5df7f99609","classifiedAt":"2026-07-02T22:55:57.006Z"},"2055":{"community_note":"Residents have raised noise concerns about a nearby CloudHQ data center in Loudoun County; no LC3-specific lawsuit or organized opposition found.","water_impact":"moderate","ai_evidence":"Public facility listings show a 96 MW hyperscale build with no disclosed GPU superclusters, AI tenants, or liquid-cooling retrofits.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No LC3-specific gallons/day disclosed; many Ashburn data centers obtain water from Loudoun Water.","grid_note":"96 MW facility in Ashburn amid Dominion’s plan for 8–9 miles of new transmission to serve local data center load.","citations":[{"title":"Neighbors raise concerns about noisy data center in ...","url":"https://www.nbcwashington.com/news/local/northern-virginia/neighbors-raise-concerns-about-noisy-data-center-in-loudoun/4080249/"},{"title":"Data Centers and Water Use in the Potomac River Basin","url":"https://www.potomacriver.org/focus-areas/water-resources-and-drinking-water/water-resources/planning/data-centers-and-water-use-in-the-potomac-river-basin/"},{"title":"Reclaimed Water Program","url":"https://www.loudounwater.org/commercial-customers/reclaimed-water-program"},{"title":"CloudHQ LC3 Data Center in Ashburn | 44631 Waxpool Rd","url":"https://www.datacentermap.com/usa/virginia/ashburn/cloudhq-lc3/"},{"title":"Data Centers in Virginia - JLARC","url":"https://jlarc.virginia.gov/landing-2024-data-centers-in-virginia.asp"}],"runId":"srun_c0e944bd89584b541a94f7ec0dbc9986","classifiedAt":"2026-07-02T22:59:28.792Z"},"2056":{"community_note":"Nearby residents have filed a class-action over a persistent low-frequency hum from cooling equipment, and a Milwaukee nonprofit sued Racine to disclose projected water use; Microsoft says it is investigating and adding mitigations.","water_impact":"low","ai_evidence":"Microsoft calls Fairwater the world’s most powerful AI datacenter and says the campus is purpose-built for AI to train and run new AI models, supporting Microsoft AI/OpenAI/Copilot workloads.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Supplied by the City of Racine from Lake Michigan, reported usage ranges from about 2.8 million gallons/year in early operation to roughly 8 million gallons/year, within Racine’s approved Great Lakes diversion.","grid_note":"First phase load was reported around 450 MW under We Energies, with regulators adopting a tariff under which data centers are expected to pay the full cost of new bespoke generation.","citations":[{"title":"What's that sound? It's Mount Pleasant's new AI data center","url":"https://www.wisn.com/article/whats-that-sound-its-mount-pleasants-new-ai-data-center/70850595"},{"title":"Microsoft data center; Milwaukee nonprofit sues Racine ...","url":"https://www.fox6now.com/news/microsoft-data-center-milwaukee-nonprofit-sues-racine-over-water-records"},{"title":"Microsoft doesn't expect its data centers will trigger review ...","url":"https://www.wpr.org/news/microsoft-data-centers-great-lakes-compact"},{"title":"Microsoft to use 2.8 million gallons of Lake Michigan water ...","url":"https://www.jsonline.com/story/money/business/2025/09/17/microsoft-project-to-use-2-8-million-gallons-of-lake-michigan-water/86199455007/"},{"title":"Made in Wisconsin: The world's most powerful AI datacenter","url":"https://blogs.microsoft.com/on-the-issues/2025/09/18/made-in-wisconsin-the-worlds-most-powerful-ai-datacenter/"}],"runId":"srun_c0e944bd89584b54d4ed11bf70079437","classifiedAt":"2026-07-02T22:55:57.006Z"},"2064":{"community_note":"No organized local opposition specific to 368 Plain Hill Rd was found; related disputes involved Groton/NE Edge and a separate Gotspace legal action, with no tie to this Norwich site.","water_impact":"unknown","ai_evidence":"Listed as a planned 32 MW data center at 368 Plain Hill Rd with an announced Plain Hill Road build, but no named AI tenant, GPU deployment, or liquid-cooling design was found.","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No facility water-use figures disclosed; NPU supplies water from the Deep River and Stony Brook reservoirs, and a recent Water Supply Watch noted ~230 days of supply remaining.","grid_note":"Planned 32 MW load; NPU has issued peak-demand conservation alerts during heat events, and no public, project-specific interconnection or upgrade filings were found.","citations":[{"title":"Groton CT blocks large scale data center projects ...","url":"https://www.datacenterdynamics.com/en/news/groton-ct-blocks-large-scale-data-center-projects-thwarting-ne-edge/"},{"title":"Gotspace Data Partners File $30 Billion Dollar Legal Action ...","url":"https://www.businesswire.com/news/home/20230103005173/en/Gotspace-Data-Partners-File-%2430-Billion-Dollar-Legal-Action-to-Develop-Connecticut-Digital-Campus"},{"title":"Water | Norwich Public Utilities, CT","url":"https://norwichpublicutilities.com/188/Water"},{"title":"NPU issues Water Supply Watch, encourages ...","url":"https://www.norwichpublicutilities.com/m/newsflash/Home/Detail/96"},{"title":"Gotspace Norwich - Building 2 Data Center (32 MW)","url":"https://www.datacentermap.com/usa/connecticut/norwich/gotspace-norwich-building-2/"}],"runId":"srun_c0e944bd89584b548f452b4ee8b9b180","classifiedAt":"2026-07-02T22:55:57.006Z"},"2065":{"community_note":"No Norwich/Plain Hill Rd–specific organized opposition found; other CT towns sought to block Gotspace/NE Edge proposals, but not tied to this site.","water_impact":"unknown","ai_evidence":"Planned 32 MW facility is listed at 388 Plain Hill Rd and sized at 156,836 sq ft, with no public disclosures of GPU clusters, AI tenants, or liquid-cooling for this site.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No gallons/day or source reported for this site; service would come from Norwich Public Utilities’ municipal water/wastewater systems.","grid_note":"Planned 32 MW 24/7 load (~280,320 MWh/yr) is roughly on par with Norwich Public Utilities’ 2023 retail sales (276,305 MWh); no public interconnection or upgrade details identified.","citations":[{"title":"Connecticut towns look to derail proposed ...","url":"https://www.datacenterdynamics.com/en/news/connecticut-towns-look-to-derail-proposed-data-center-projects/"},{"title":"Facing Budget Squeeze, Bozrah to Decide on Approving a ...","url":"https://ctexaminer.com/2022/08/11/facing-budget-squeeze-bozrah-to-decide-on-approving-a-hyperscale-data-center/"},{"title":"Public Utilities | Norwich, CT - Official Website","url":"https://www.norwichct.gov/272/Public-Utilities"},{"title":"Gotspace Norwich - Building 3 Data Center (32 MW)","url":"https://www.datacentermap.com/usa/connecticut/norwich/gotspace-norwich-building-3/"},{"title":"Gotspace Norwich - Building 3 - US Data Centers Inventory ...","url":"https://www.aterio.io/insights/us-data-centers/dc/gotspace-data-partners-23000-ct"}],"runId":"srun_c0e944bd89584b54499d4511b7368f85","classifiedAt":"2026-07-02T22:55:57.006Z"},"2066":{"community_note":"No organized Griswold-specific opposition was found; reporting of pushback targeted other towns (Wallingford, Bozrah), while this site remains a planned project.","water_impact":"moderate","ai_evidence":"Described in town records as 'Hyperscale Data Centers' with a planned Building 1 at 29 Barber Rd; no public evidence of GPU superclusters or AI-specific deployments.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"A water line and tower project in Griswold moved to bidding with construction slated for summer 2024; no gallons/day or discharge details for this facility were found.","grid_note":"Campus specs list 32 MW per building and the site is served by Jewett City DPU; no public reporting on grid upgrades, ratepayer costs, or curtailment for this project was found.","citations":[{"title":"Connecticut towns look to derail proposed ...","url":"https://www.datacenterdynamics.com/en/news/connecticut-towns-look-to-derail-proposed-data-center-projects/"},{"title":"Connecticut towns plan to stop data center development ...","url":"https://baxtel.com/news/connecticut-towns-plan-to-stop-data-center-development-projects"},{"title":"Griswold water, sewer project to start after $8 million from CT","url":"https://www.norwichbulletin.com/story/news/local/2024/03/01/route-164-griswold-ct-water-infrastructure-project-money/72808082007/"},{"title":"Public Utilities","url":"https://jewettcity.org/resources/public-utilities/"},{"title":"Town of Griswold","url":"https://cms8.revize.com/revize/griswoldct/Document%20center/Agenda%20&%20Minutes/Agenda/Minutes/Planning%20and%20Zoning%20Commission/2021/pzc-4-12-21-rmm.pdf"}],"runId":"srun_c0e944bd89584b5403f55ea0dc40960a","classifiedAt":"2026-07-02T22:55:57.006Z"},"2072":{"community_note":"No organized opposition or lawsuits surfaced; approvals and groundbreaking proceeded, with scattered resident concern voiced on social media.","water_impact":"unknown","ai_evidence":"Materials describe a hyperscale campus (up to 300 MW via an on-site substation; 84 MW per building), but do not name GPU clusters, AI tenants, or liquid-cooling deployments.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"","grid_note":"84 MW building within a ~252 MW campus (marketed up to 300 MW); ComEd will deliver a new on-site substation and extend high-voltage lines.","citations":[{"title":"CloudHQ data center project in Mount Prospect breaks ...","url":"https://www.chicagobusiness.com/commercial-real-estate/cloudhq-data-center-project-mount-prospect-breaks-ground/"},{"title":"Cloud HQ coming to Mount Prospect, IL","url":"https://www.facebook.com/groups/1372138079822433/posts/2787111544991739/"},{"title":"ORD Campus","url":"https://cloudhq.com/campus/ord-campus/"},{"title":"Cloud HQ - Data Center | Village of Mount ...","url":"https://www.mountprospect.org/services/community-information-and-fact-check-portal/cloud-hq-data-center"},{"title":"ORD Campus","url":"https://cloudhq.com/campus/ord-campus/"}],"runId":"srun_c0e944bd89584b54be4d78736ebd848b","classifiedAt":"2026-07-02T22:55:57.006Z"},"2077":{"community_note":"No Compass-specific organized opposition was found; 2026 pushback targeted a separate Karis Critical/H.E. Holdings rezoning at Higgins/IL‑59 that faced a Plan Commission rejection and was withdrawn, while Compass’s 3333 Beverly Rd campus had prior approvals.","water_impact":"low","ai_evidence":"Described as a five-building hyperscale campus with no public disclosures of GPU superclusters or AI tenants at 3333 Beverly Rd, and Microsoft’s separate Lakewood Blvd campus indicates the Compass site is not the Microsoft AI build.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Reported to use water-free cooling; no gallons/day or source-stress/discharge details were published.","grid_note":"200 MW campus with a new onsite ComEd substation slated for mid‑2026 energization; no project‑specific rate case identified, though data‑center growth is cited as pressuring ComEd bills.","citations":[{"title":"Third Hoffman Estates data center faces opposition ...","url":"https://wgntv.com/news/northwest-suburbs/third-hoffman-estates-data-center-faces-opposition-from-nearby-residents/"},{"title":"Possible data center in Hoffman Estates draws resident ...","url":"https://www.nbcchicago.com/news/local/residents-push-back-against-possible-idea-for-third-data-center-in-hoffman-estates/3943344/"},{"title":"Developer withdraws rezoning request for controversial ...","url":"https://capitolnewsillinois.com/news/developer-withdraws-rezoning-request-for-controversial-data-center-in-hoffman-estates/"},{"title":"Agendas & Minutes - Hoffman Estates, IL - CivicClerk","url":"https://hoffmanestatesil.portal.civicclerk.com/event/1250/files/report/806"},{"title":"Compass Datacenters ready to build on cleared Sears ...","url":"https://www.dailyherald.com/20250906/business/compass-datacenters-ready-to-build-on-cleared-sears-headquarters-site-in-hoffman-estates/"}],"runId":"srun_c0e944bd89584b5478a592022207e80c","classifiedAt":"2026-07-02T22:55:57.006Z"},"2081":{"community_note":"No organized resident opposition surfaced; city officials raised concerns over securing power, and Hammond announced the development agreement expired after June 30, 2026 milestones were not met.","water_impact":"unknown","ai_evidence":"The city approved a development agreement for a multibillion-dollar data center while sector listings describe a 180 MW CoreWeave build at Digital Crossroads as one of the largest AI infrastructure investments; CoreWeave positions itself as an AI-native GPU cloud provider.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Digital Crossroad cites closed-loop cooling that utilizes nearby Lake Michigan, and earlier reporting says the facility uses Lake Michigan water to cool at least half of the site; no gallons/day were found for the CoreWeave expansion.","grid_note":"Planned as a 180 MW load contingent on a dedicated NIPSCO/GenCo arrangement intended to shield existing ratepayers; Hammond later announced the development agreement expired after June 30, 2026 milestones were not met.","citations":[{"title":"Hammond mayor: 'No confidence' in data center moving ...","url":"https://www.insideindianabusiness.com/articles/hammond-mayor-no-confidence-in-data-center-moving-forward"},{"title":"Data Center Development Agreement Expires","url":"https://www.gohammond.com/hammond-announces-expiration-of-data-center-development-agreement/"},{"title":"Digital Crossroads data center expansion dead in Hammond","url":"https://nwitimes.com/news/local/government-politics/article_adf3aef9-1115-4acb-8376-157fa2132266.html"},{"title":"Indiana Data Center | Chicagoland Data Center","url":"https://digitalcrossroad.com/data-centers/indiana-data-center/"},{"title":"Data centers in the Region raise water and power concerns","url":"https://nwitimes.com/news/local/business/article_01c60fd6-b472-4a0a-8010-02b797410bd0.html"}],"runId":"srun_c0e944bd89584b5432fdafd5d4636a91","classifiedAt":"2026-07-02T22:55:57.006Z"},"2087":{"community_note":"Residents in Warren Township/Irvington are actively opposing the project over noise and water/energy consumption; a hearing examiner recommended approval and the Metropolitan Development Commission is scheduled to meet July 15, 2026.","water_impact":"low","ai_evidence":"DC BLOX says it optimizes facilities for AI-driven workloads, indicating capability for AI use, and the Indianapolis site is a wholesale/hyperscale-ready campus; no reporting identified a named GPU supercluster or AI-training tenant.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Closed-loop cooling with a one-time system fill, and ongoing use characterized as no more than a typical commercial building.","grid_note":"Developer pledges to pay 100% of utility costs and enroll in AES Indiana’s green-power program; public reporting highlights energy-use concerns but does not detail specific grid upgrades.","citations":[{"title":"Residents push back on a $2 billion data center proposal ...","url":"https://www.wfyi.org/wfyi-news/2026-05-22/dc-blox-data-center-indianapolis-warren-township-residents"},{"title":"Indianapolis data center clears first hurdle despite Irvington ...","url":"https://www.wfyi.org/wfyi-news/2026-06-12/dc-blox-data-center-warren-township-approval-hearing-examiner"},{"title":"Metropolitan Development Commission (July 15, 2026)","url":"https://indianapolis-in.municodemeetings.com/bc-mdc-hearing-examiner/page/metropolitan-development-commission-july-15-2026"},{"title":"DC BLOX Thunderbird Data Center in Indianapolis","url":"https://www.dcblox.com/indianapolisdatacenter/"},{"title":"PLAN OF OPERATION v.5.21.2026","url":"https://www.dcblox.com/wp-content/uploads/2026/05/DC-BLOX-Indy-Plan-of-Operation-5.21.26.pdf"}],"runId":"srun_c0e944bd89584b54ed55c9644f7a8e0e","classifiedAt":"2026-07-02T22:59:28.792Z"},"2088":{"community_note":"Local residents (including Protect Decatur Township) opposed the project over impacts like noise and diesel generators; zoning was approved Mar 18, 2026, residents sued to overturn it, and Sabey filed a motion to dismiss in June with no final court outcome yet.","water_impact":"low","ai_evidence":"No named AI tenant, GPU cluster, or training supercomputer has been announced for the Camby campus; it is planned as a ~250MW wholesale development.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Municipal water only (no aquifer use) with closed-loop, air-cooled systems; Sabey estimates 200,000–300,000 gallons per year for ongoing operations (Citizens will‑serve and project commitments; WRTV hearing coverage; Fox59).","grid_note":"AES Indiana expects to serve up to 250 MW over a five‑year ramp; the developer will pay all costs for the new substation, and Sabey states existing customer rates are not expected to be negatively impacted.","citations":[{"title":"Sabey Data Centers files motion to dismiss resident's legal ...","url":"https://mirrorindy.org/sabey-data-centers-files-motion-to-dismiss-residents-legal-challenge/"},{"title":"Decatur Township residents sue to block $4B data center","url":"https://www.wfyi.org/wfyi-news/2026-04-20/decatur-township-residents-sue-to-block-sabey-data-center"},{"title":"Sabey Data Centers prevails despite outcry from southsiders","url":"https://mirrorindy.org/sabey-data-centers-decatur-downship-indianapolis-john-dillon-josh-bain/"},{"title":"Decatur-Technology-Park-Updated-Commitments-2025-CVR ...","url":"https://sabeydecaturdatacenter.com/Decatur-Technology-Park-Updated-Commitments-2025-CVR-856.pdf"},{"title":"Packed hearing held for proposed Sabey data center in ...","url":"https://www.wrtv.com/news/local-news/in-your-community/east-side-indy/packed-hearing-held-for-proposed-sabey-data-center-in-decatur-township"}],"runId":"srun_c0e944bd89584b54a7ade3375d6794af","classifiedAt":"2026-07-02T22:55:57.006Z"},"2090":{"community_note":"Residents and advocates have opposed Project Maize over transparency, air-quality, and the plan for 70 diesel backup generators; IDEM held a Dec. 9, 2025 public meeting on the air permit while the project moved forward.","water_impact":"unknown","ai_evidence":"Google confirmed acquisition of the Michigan City data center project, and the official site describes it as a Google data center; no official source found mentions GPUs/TPUs or AI-specific workloads.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day figure published; the city says it has “ample” water to supply the data center with no extra taxpayer cost.","grid_note":"NIPSCO signed a deal to supply power to the $832 million Michigan City data center; no project-specific MW figure has been publicly reported.","citations":[{"title":"IDEM holds public meeting concerning air permit request ...","url":"https://www.abc57.com/news/idem-holds-public-meeting-concerning-air-permit-request-from-michigan-city-data-center"},{"title":"Michigan City residents want to halt Project Maize ...","url":"https://www.facebook.com/posttrib/posts/michigan-city-residents-want-to-halt-project-maize-construction/1471953548111584/"},{"title":"Google data center construction underway in Michigan City","url":"https://wsbt.com/news/local/breaking-google-confirms-data-center-in-michigan-city-project-oyal-road-project-maize-underway-challenges-site-statement-michigan-city-laporte-county-indiana"},{"title":"Google confirms plans for data center in Michigan City","url":"https://www.wndu.com/2026/04/16/google-confirms-acquisition-michigan-city-data-center-site/"},{"title":"Michigan City Data Center","url":"https://www.michigancitydatacenter.com/"}],"runId":"srun_c0e944bd89584b546205fcc6e5718808","classifiedAt":"2026-07-02T22:59:28.792Z"},"2091":{"community_note":"Active opposition: Hobart residents have sued to block rezoning and a fill/construction permit for the AWS/Hobart Devco campus, with litigation ongoing into early 2026 over zoning/permit approvals and related impacts.","water_impact":"low","ai_evidence":"AWS is investing in Northern Indiana data center campuses and one is already “powering Anthropic's AI model training,” indicating regional AI workloads; no Hobart Building 5–specific GPU or liquid-cooling deployment has been disclosed.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Estimated cooling use is about 14 million gallons per year, and opponents have raised nearby private-well concerns; no quantified aquifer, drought, or discharge impacts were documented in the cited sources.","grid_note":"Regional service plans call for roughly 3 GW of new supply (2.6 GW gas, 400 MW storage plus transmission) and about $7B of investment to serve an approximately 2.4 GW Amazon data center load, with the Hobart substation cost the responsibility of the data center.","citations":[{"title":"Hobart residents sue to block city's data center plan","url":"https://www.chicagotribune.com/2025/12/10/hobart-residents-sue-to-block-citys-data-center-plan/"},{"title":"Hobart city officials sued by residents over rezoning for ...","url":"https://www.theindianalawyer.com/articles/hobart-city-officials-sued-by-residents-over-zoning-of-new-amazon-data-center"},{"title":"Lawsuit seeks to block Amazon data center permit in ...","url":"https://www.fox32chicago.com/news/lawsuit-seeks-block-amazon-data-center-permit-hobart-ind"},{"title":"AWS - Hobart, IN: Home","url":"https://hobart.nwidatafacts.com/"},{"title":"Hobart Indiana Data Center Opposition | Lawsuits, Zoning ...","url":"https://hobartdatacenters.org/"}],"runId":"srun_c0e944bd89584b541c5e16890a45b13d","classifiedAt":"2026-07-02T22:59:28.792Z"},"2100":{"community_note":"Local opposition over environmental/transparency and public-cost concerns culminated in the Lewiston City Council rejecting the Bates Mill No. 3 AI data center on Dec. 16, 2025.","water_impact":"unknown","ai_evidence":"The proposal was described as an AI data/technology center and Tier III AI data center, with the developer highlighting high‑density power and advanced liquid cooling.","grid_impact":"unknown","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No gallons/day were disclosed; a project representative said cooling water would be recycled, and Lake Auburn supplies drinking water to Lewiston/Auburn.","grid_note":"A 24‑MW first phase was proposed and developers floated a 20–24‑MW natural‑gas co‑generation unit, but the project was rejected before any utility approvals or upgrades advanced.","citations":[{"title":"Lewiston City Council shoots down data center proposal | Maine Public","url":"http://mainepublic.org/business-and-economy/2025-12-17/lewiston-city-council-shoots-down-data-center-proposal"},{"title":"The secretive plan for a Maine data center collapsed in 6 days","url":"http://themainemonitor.org/secretive-plan-lewiston-data-center"},{"title":"Lewiston says 'no' to proposed AI data and technology ...","url":"https://mainebiz.biz/article/lewiston-says-no-to-proposed-ai-data-and-technology-center-for-bates-mill/"},{"title":"Lewiston weighs data center proposal for vacant Bates Mill 3","url":"https://www.newscentermaine.com/article/news/local/lewiston-weighs-data-center-proposal-vacant-bates-mill-3/97-0c0ed476-73ee-4e84-b1f4-ef3de260989c"},{"title":"Lake Auburn | Environmental Studies","url":"https://www.bates.edu/environmental-studies/photos/water-quality-in-lake-auburn/lake-auburn/"}],"runId":"srun_c0e944bd89584b54d6b630383c8193e2","classifiedAt":"2026-07-02T22:55:57.006Z"},"2101":{"community_note":"Organized opposition includes MEIC/Earthjustice and allied groups intervening in PSC tariff proceedings over ratepayer protections, alongside local calls for a three-year moratorium and concerns about on-site gas power and impacts, with the complaint and tariff cases still in process.","water_impact":"unknown","ai_evidence":"Marketed for AI and hyperscale use on a 5,000+ acre energy/digital campus, reflecting hyperscaler AI demand trends, but with no disclosed AI tenant or GPU supercluster deployments.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No gallons/day figure is published; reporting and panels note communities are assessing potential water supply and treatment impacts.","grid_note":"KTVQ reported the site’s proposed capacity could be ~10x NorthWestern’s Montana load, while BSDI says it will pay for added capacity, and broader coverage notes large-load tariff scrutiny for multi-DC growth.","citations":[{"title":"Groups Seek Intervention in NorthWestern Energy Data ...","url":"https://earthjustice.org/press/2026/groups-seek-intervention-in-northwestern-energy-data-center-tariff-proceeding"},{"title":"Proposed 5000-Acre AI data center near Broadview raises ...","url":"https://www.kulr8.com/news/proposed-5-000-acre-ai-data-center-near-broadview-raises-questions-from-residents/article_18781d68-ebc4-4d32-845c-38fe62de9e9c.html"},{"title":"Billings Dems adopt position on moratorium with data centers","url":"https://billingsgazette.com/news/local/government-politics/article_ae1efa0d-1afc-4372-ba04-242d733e31ba.html"},{"title":"NorthWestern tells PSC to throw out data center complaint","url":"https://dailymontanan.com/2026/03/17/northwestern-tells-psc-to-throw-out-data-center-complaint/"},{"title":"As AI investors eye Montana for new data centers ...","url":"https://montanafreepress.org/2026/02/12/as-ai-investors-eye-montana-for-new-data-centers-communities-brace-for-water-impacts/"}],"runId":"srun_c0e944bd89584b54910e4deba8c0b913","classifiedAt":"2026-07-02T22:55:57.006Z"},"2107":{"community_note":"Neighbors filed a federal class-action lawsuit over nonstop noise, and a critical town hall underscored ongoing local opposition as construction proceeds.","water_impact":"moderate","ai_evidence":"Nebius is taking pre‑orders for NVIDIA GB200 NVL72 and HGX B200 clusters in its 300MW New Jersey region and has a multi‑billion‑dollar deal to provide dedicated capacity to Microsoft from the Vineland site, indicating both training and cloud AI workloads.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"The facility is reported to require up to 20 million gallons of water per year, with residents expressing concern about risks to local water resources.","grid_note":"A 300MW campus with on‑site power generation to lessen reliance on the local grid.","citations":[{"title":"This nonstop 'humming' coming from an AI data center has ...","url":"https://www.nj.com/business/2026/05/this-nonstop-humming-coming-from-an-ai-data-center-has-pushed-nj-neighbors-to-sue.html"},{"title":"Noise from Vineland, New Jersey, data center prevents ...","url":"https://www.cbsnews.com/philadelphia/news/vineland-new-jersey-data-one-center-noise/"},{"title":"A Town Hall Too Late – Vineland Data Center","url":"https://pinelandsalliance.org/dataone-vineland-town-hall/"},{"title":"Vineland residents push back against AI data center","url":"https://whyy.org/articles/data-center-artificial-intelligence-vineland-new-jersey/"},{"title":"NJ neighbors furious as giant AI data center hums 24/7","url":"https://nj1015.com/vineland-nj-data-center-concerns/"}],"runId":"srun_c0e944bd89584b544b66679abb9c8ba4","classifiedAt":"2026-07-02T23:02:28.731Z"},"2114":{"community_note":"No facility-specific opposition found; regionally, Reno extended a citywide moratorium into 2027 over water/power concerns and Sparks voted to draft a data‑center ordinance, but neither action is specific to Colovore RN01.","water_impact":"unknown","ai_evidence":"Vendor materials position RN01 as ultra-high‑density, liquid‑cooled Edge AI colocation validated for NVIDIA DGX and supporting GPU clusters and AI workloads, with 16 MW reported fully committed before delivery.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No RN01 gallons/day or source/discharge details were found; vendor materials note liquid-cooled architecture, while regional studies/reporting flag rising data-center water demand in Nevada and the broader American West.","grid_note":"RN01’s load is cited at 16–20 MW (16 MW fully committed; 20 MW listed), while NV Energy projects major Northern Nevada capital spend and statewide upgrades/new generation due to data-center growth.","citations":[{"title":"Reno extends its data center moratorium into 2027. Here's ...","url":"https://thenevadaindependent.com/article/reno-extends-its-data-center-moratorium-into-2027-heres-what-happens-next"},{"title":"City of Sparks votes to begin drafting ordinance on data ...","url":"https://mynews4.com/news/local/city-of-sparks-votes-to-begin-drafting-ordinance-on-data-centers"},{"title":"Data Centers","url":"https://www.colovore.com/data-center"},{"title":"Data Center Water and Electricity Consumption in Nevada","url":"https://www.dri.edu/datacenters/"},{"title":"AI data center water use collides with drought in the West","url":"https://qz.com/data-center-water-use-drought-american-west-051326"}],"runId":"srun_c0e944bd89584b5405be814d873ba1f9","classifiedAt":"2026-07-02T22:55:57.283Z"},"2119":{"community_note":"No facility-specific opposition was found for Csquare LAS12 at 7365 S. Lindell, but Clark County approved a Switch southwest Las Vegas expansion after residents raised concerns (water/energy/impacts); approval occurred in mid‑June 2026.","water_impact":"moderate","ai_evidence":"","grid_impact":"high","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No facility-specific gallons/day reported; Switch cites closed-circuit cooling and conservation, and Nevada research coverage notes data-center water use varies by cooling method and facility size.","grid_note":"Host building is listed at 50 MW and Nevada data centers used 22% of state generation capacity in 2024; NV Energy faces 3–4 GW of requests and a proposed tariff would make large-load customers cover added costs.","citations":[{"title":"Clark County approves Switch data center items in ...","url":"https://www.fox5vegas.com/2026/06/18/clark-county-approves-switch-data-center-project-southwest-valley-after-public-opposition/"},{"title":"Las Vegas data center expansion approved as officials ...","url":"https://nevadacurrent.com/2026/06/18/las-vegas-data-center-expansion-approved-as-officials-ponder-need-for-future-regulations/"},{"title":"Switch wins Las Vegas expansion approval even as data ...","url":"https://lasvegassun.com/news/2026/jun/23/switch-wins-las-vegas-expansion-approval-even-as-d/"},{"title":"Green Datacenter | Data Center Services - Switch","url":"https://www.switch.com/sustainability/"},{"title":"Las Vegas data center research explores impact of state's ...","url":"https://www.8newsnow.com/news/las-vegas-data-center-research-explores-impact-of-states-60-facilities/"}],"runId":"srun_c0e944bd89584b54c0169afc8a5b8656","classifiedAt":"2026-07-02T22:55:57.283Z"},"2122":{"community_note":"Neighbors raised concerns during planning for two Microsoft substations in Silver Springs; the county later approved a second Microsoft substation at 1200 W US Highway 50 on a 4–1 vote, indicating some local dissent [1][2].","water_impact":"unknown","ai_evidence":"","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No site-specific data on gallons/day, water source, or discharge was found for the Silver Springs facility.","grid_note":"Two Microsoft-related substations advanced/approved—Nighthawk and a second at 1200 W US Highway 50—with county actions recorded; Microsoft also proposed a Nevada Ratepayer Protection Tariff to cover data center-driven grid costs; no site-specific MW disclosed [1][2][3].","citations":[{"title":"Planning commission recommends approval of two ...","url":"https://citizenportal.ai/articles/7417886/nevada/lyon-county/planning-commission-recommends-approval-of-two-microsoft-substations-in-silver-springs-amid-neighbor-concerns"},{"title":"March 5, 2026 Board of County Commissioners Meeting ...","url":"https://www.lyon-county.org/CivicAlerts.aspx?AID=390"},{"title":"Microsoft Silver Springs - Reno","url":"https://www.datacentermap.com/usa/nevada/reno/microsoft-silver-springs/"},{"title":"NV Energy believes it will need 50% more ...","url":"https://www.facebook.com/ThisIsReno/posts/nv-energy-believes-it-will-need-50-more-energy-than-it-projected-needing-just-tw/1338498768297020/"},{"title":"The data center boom in the desert","url":"https://www.technologyreview.com/2025/05/20/1116287/ai-data-centers-nevada-water-reno-computing-environmental-impact/"}],"runId":"srun_c0e944bd89584b547a6eb4afbf366567","classifiedAt":"2026-07-02T22:59:29.121Z"},"2123":{"community_note":"No organized opposition specific to Fernley was identified; Reno has a temporary moratorium on new data center applications, while Victory Logistics District is a master‑planned industrial park and the Microsoft project is listed as proposed/in permitting.","water_impact":"unknown","ai_evidence":"Microsoft purchased 300.7 acres at Victory Logistics District in April 2025, but no Fernley-specific disclosure confirms AI GPU clusters, AI training/inference workloads, or liquid-cooling deployments.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No Fernley-site water volumes are disclosed; regional coverage flags Northern Nevada water-rights and Pyramid Lake concerns, and statewide research notes 5,900+ MW of planned data center capacity that will consume considerable resources.","grid_note":"No Fernley MW disclosed; VLD/NV Energy are upgrading the Eagle substation, VLD has considered on‑site natural gas generation to enable early projects, and Microsoft filed a Nevada Ratepayer Protection Tariff addressing large‑load grid costs.","citations":[{"title":"Reno City Council extends data center moratorium ...","url":"https://nevadacurrent.com/2026/06/03/reno-city-council-extends-data-center-moratorium-promises-effort-is-not-political/"},{"title":"Victory Logistics District: Transforming Northern Nevada's ...","url":"https://www.naiop.org/research-and-publications/magazine/2024/summer-2024/development-ownership/victory-logistics-district-transforming-northern-nevadas-desert-into-a-thriving-industrial-center"},{"title":"Microsoft Fernley Data Center, Nevada","url":"https://poweredbywho.com/projects/microsoft-fernley-data-center-5e4adb1b"},{"title":"Microsoft purchases 300 acres in Fernley at Victory ...","url":"https://www.nnbw.com/news/2025/apr/16/microsoft-fernley-lyon-county-victory-logistics-district-land-buy/"},{"title":"Victory Logistics District: Reno | Northern Nevada Master ...","url":"https://victorylogisticsdistrict.com/"}],"runId":"srun_c0e944bd89584b5434c6ce5ea41798f0","classifiedAt":"2026-07-02T22:55:57.283Z"},"2124":{"community_note":"A local “Say NO to Data Centers” group is organizing against large-scale data centers in Silver Springs amid neighbor concerns, while Lyon County approved the Sapphire/Silver Springs Technology Park development agreement by Ordinance No. 641, so approvals remain in place [6][8][7].","water_impact":"unknown","ai_evidence":"Marketed as a large-scale, master-planned hyperscale campus; Tract lists “Sapphire. 1063 acres 700 MW” and notes an existing development agreement, but no tenant or GPU supercluster has been publicly announced [1][2][11].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No Sapphire-specific cooling water volumes or source details are publicly disclosed; the county agenda references a development agreement for the Silver Springs Technology Park but does not state water-use figures [9].","grid_note":"Tract lists Sapphire at 700 MW under utility study, and reporting indicates Nevada data centers could drive 64% of statewide demand by 2046, prompting billions in new generation and grid upgrades [2][3].","citations":[{"title":"Opposition to large-scale data centers in Silver Springs, ...","url":"https://www.facebook.com/groups/saynotodatacenters/posts/1582963940301772/"},{"title":"Planning commission recommends approval of two ...","url":"https://citizenportal.ai/articles/7417886/nevada/lyon-county/planning-commission-recommends-approval-of-two-microsoft-substations-in-silver-springs-amid-neighbor-concerns"},{"title":"BILL NO. 25-03 ORDINANCE NO. 641","url":"https://codelibrary.amlegal.com/codes/lyoncountynv/latest/lyoncounty_nv/0-0-0-17726"},{"title":"lyon county planning commission - tuesday, april 08, 2025 ...","url":"https://www.lyon-county.org/AgendaCenter/ViewFile/Agenda/_04082025-1801"},{"title":"Tract: Sapphire Data Center","url":"https://www.datacenters.com/tract-sapphire"}],"runId":"srun_c0e944bd89584b54ef1ee801c0a1e995","classifiedAt":"2026-07-02T22:55:57.283Z"},"2125":{"community_note":"No organized opposition or litigation specific to the Jet.AI Moapa project was found; the campus is still a planned development.","water_impact":"unknown","ai_evidence":"Listings and company materials describe a planned 50 MW AI and high‑density compute campus by Jet.AI in Moapa via a JV with Choo Choo Express; no evidence yet of deployed GPUs or tenants.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No gallons/day or cooling details are disclosed; materials only note access to water infrastructure, and the nearby former Reid Gardner plant had historical groundwater contamination unrelated to this planned data center.","grid_note":"Planned 50 MW load near transmission/substation and the 220 MW Reid Gardner BESS; no interconnection details published, while NV Energy cites 22 GW of data‑center interest and ~6 GW of agreements that may necessitate upgrades and raise cost‑shift concerns.","citations":[{"title":"Jet.AI, CCE form JV to develop 50MW data center in Clark ...","url":"https://www.datacenterdynamics.com/en/news/jetai-cce-form-jv-to-develop-50mw-data-center-in-clark-county-nevada/"},{"title":"Jet.AI Inc. JV for 50MW Data Center Campus in Moapa, ...","url":"https://finance.yahoo.com/news/jet-ai-inc-jv-50mw-141500798.html"},{"title":"Jet.AI Inc. JV for 50MW Data Center Campus in Moapa, ...","url":"https://www.nasdaq.com/press-release/jetai-inc-jv-50mw-data-center-campus-moapa-nevada-2025-12-23"},{"title":"AI data center water use collides with drought in the West","url":"https://qz.com/data-center-water-use-drought-american-west-051326"},{"title":"Jet.AI: Jet.AI Moapa Data Center Campus","url":"https://www.datacenters.com/jet-ai-jet-ai-moapa-campus"}],"runId":"srun_c0e944bd89584b54a97705b09cda9efa","classifiedAt":"2026-07-02T22:59:29.121Z"},"2126":{"community_note":"Boulder City residents opposed the project over public land use, water/drought, and utility-bill/energy-strain concerns; the Planning Commission voted to deny/cancel the proposal in May 2026, with no City Council action reported in the cited sources.","water_impact":"moderate","ai_evidence":"Media and listings describe the proposal as a 150–170 MW high-density ‘AI data center campus’ and ‘hyperscale/AI-ready,’ without identified GPU superclusters or named AI tenants.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Boulder City states TS2 would seek up to 500,000 gallons/day of City-treated wastewater for construction dust control, while residents have raised drought and environmental concerns.","grid_note":"Planned capacity is up to 170 MW, and residents raised energy-strain and utility-bill concerns; no ratepayer charge mechanism is confirmed in the cited reporting.","citations":[{"title":"Boulder City residents oppose proposed data center","url":"https://www.fox5vegas.com/2026/04/02/boulder-city-residents-oppose-proposed-data-center/"},{"title":"Boulder City rejects controversial AI data center proposal - KTNV","url":"https://www.ktnv.com/news/boulder-city-planning-commission-rejects-ai-data-center-proposal-after-hours-of-public-opposition"},{"title":"TS2 Data Center Proposal | Boulder City, NV","url":"https://www.bcnv.org/1174/TS2-Data-Center-Proposal"},{"title":"Boulder City residents oppose proposed data center","url":"https://www.fox5vegas.com/2026/04/02/boulder-city-residents-oppose-proposed-data-center/"},{"title":"170MW data center campus proposed in Boulder, Nevada","url":"https://www.datacenterdynamics.com/en/news/170mw-data-center-campus-proposed-in-boulder-nevada/"}],"runId":"srun_c0e944bd89584b5463cf1f636cfe72bb","classifiedAt":"2026-07-02T22:55:57.283Z"},"2130":{"community_note":"No organized opposition or complaints were found; the site operates within the existing Airpark South industrial complex with other tenants, and no disputes or zoning fights were identified.","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific cooling-water usage or source reporting was found for this site.","grid_note":"No published MW load or Duke Energy upgrade details were found for this site.","citations":[{"title":"Airpark South | 496 Gallimore Dairy Rd ...","url":"https://www.cbre.com/properties/properties-for-lease/industrial/details/US-SMPL-94262/airpark-south-496-gallimore-dairy-rd-496-gallimore-dairy-road-greensboro-nc-27409"},{"title":"496 Gallimore Dairy Rd Greensboro, NC 27409 - Industrial Property ...","url":"https://www.showcase.com/496-gallimore-dairy-rd-greensboro-nc-27409/39709227/"},{"title":"Driving directions to Vertical Supply Group, 496 Gallimore ...","url":"https://www.waze.com/live-map/directions/us/nc/greensboro/vertical-supply-group?to=place.ChIJyTGo-qwZU4gRn9NKbiCaGV0"},{"title":"Lumen: Greensboro 2 Data Center","url":"https://www.datacenters.com/lumen-greensboro-2"},{"title":"tw telecom - Greensboro Data Center","url":"https://cloudandcolocation.com/datacenters/tw-telecom-greensboro-data-center/"}],"runId":"srun_c0e944bd89584b541e273912a21f745c","classifiedAt":"2026-07-02T22:55:57.283Z"},"2133":{"community_note":"A 2007 lawsuit challenged state/local incentives for Google’s Lenoir project, but recent 2024 incentive approvals for expansion passed locally with no current organized opposition campaign.","water_impact":"moderate","ai_evidence":"A 2026 expansion announcement says the Lenoir campus is being expanded to address “surging demand for AI and cloud computing services.”","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Reported use was 336.8M gallons in 2023, and Google says it will contribute $6.8M to ensure adequate water flow for expansion.","grid_note":"A 61 MW solar project under Duke Energy’s Green Source Rider meets a portion of the Lenoir data center’s demand.","citations":[{"title":"Lawsuit Challenges Google N.C. Incentives","url":"https://www.datacenterknowledge.com/regulations/lawsuit-challenges-google-n-c-incentives"},{"title":"Caldwell County and City of Lenoir approve economic ...","url":"https://www.cityoflenoir.com/CivicAlerts.aspx?AID=498"},{"title":"Google's data centers use as much water as 41 golf courses ...","url":"https://qz.com/google-data-center-consume-water-energy-climate-change-1851760734/slides/6"},{"title":"Google Plans $1 Billion Expansion of North Carolina Data ...","url":"https://news.constructconnect.com/google-plans-1-billion-expansion-of-north-carolina-data-center-campus"},{"title":"Google Partners with Duke Energy to Power Data Center ...","url":"https://www.energytrend.com/news/20151125-9808.html"}],"runId":"srun_c0e944bd89584b54d87f52c5c1fba8e1","classifiedAt":"2026-07-02T22:59:29.121Z"},"2134":{"community_note":"NC regulators held a public comment period on an air permit for Tapaha Dynamics at the Lenoir site; beyond scattered resident concerns, no organized opposition or litigation specific to this expansion was found.","water_impact":"moderate","ai_evidence":"Google announced a two‑year, $1B expansion of its owner‑operated Lenoir data center, which trade coverage says is to address surging AI and cloud‑computing demand.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Reportedly 336.8M gallons in 2023 (~0.92M gpd), supplied by the City of Lenoir’s Lake Rhodhiss (Catawba River) system with a 12 MGD treatment plant.","grid_note":"NCDEQ’s Tapaha Dynamics permit review says the Lenoir facility requires substantial dependable electric power and includes diesel emergency generators, consistent with a large hyperscale load profile.","citations":[{"title":"Intent to Issue an Air Quality Permit to Tapaha Dynamics, LLC","url":"https://www.deq.nc.gov/news/events/public-comment-period-intent-issue-air-quality-permit-tapaha-dynamics-llc"},{"title":"Lenoir - DWR :: Local Water Supply Planning","url":"https://www.ncwater.org/wudc/app/lwsp/report.php?pwsid=01-14-010&year=2023"},{"title":"Water Treatment Plant Upgrades","url":"https://www.mcgillassociates.com/case-study/water-treatment-plant-upgrades/"},{"title":"Google Announces New, Two-Year $1 Billion Investment in ...","url":"https://cityoflenoir.com/CivicAlerts.aspx?AID=594"},{"title":"Google Plans $1 Billion Expansion of North Carolina Data ...","url":"https://news.constructconnect.com/google-plans-1-billion-expansion-of-north-carolina-data-center-campus"}],"runId":"srun_c0e944bd89584b5492d76c7440d3863e","classifiedAt":"2026-07-02T22:55:57.283Z"},"2135":{"community_note":"No Marble-specific lawsuit or organized opposition was found; local reporting notes the site's AI/HPC shift and utilities while a local post highlights closed-loop cooling and municipal water use.","water_impact":"low","ai_evidence":"Core Scientific is pivoting the Marble facility to AI/HPC and hosts CoreWeave’s NVIDIA GPU infrastructure for HPC/AI under multi‑site agreements (e.g., ~200 MW and 70 MW conversions, and 120 MW), confirming GPU-driven AI workloads at this campus.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Water service comes from the Marble Community Water System and cooling is described as closed-loop; no gallons/day or discharge data were reported.","grid_note":"Roughly 103–104 MW energized/installed capacity at 155 Palmer Ln with ~250,000 sq ft footprint and a Duke Energy service agreement publicly on file; no Marble‑specific ratepayer or new‑transmission evidence was located.","citations":[{"title":"Local plant turns to AI to expand","url":"https://www.cherokeescout.com/local-newsletter/local-plant-turns-ai-expand"},{"title":"Cherokee - Core Scientific, which operates a data ...","url":"https://www.facebook.com/CherokeeScoutnews/photos/core-scientific-which-operates-a-data-processing-plant-in-marble-is-being-acquir/1316797237113381/"},{"title":"Local plant turns to AI to expand","url":"https://www.cherokeescout.com/local-newsletter/local-plant-turns-ai-expand"},{"title":"Cherokee - Core Scientific, which operates a data ...","url":"https://www.facebook.com/CherokeeScoutnews/photos/core-scientific-which-operates-a-data-processing-plant-in-marble-is-being-acquir/1316797237113381/"},{"title":"Local plant turns to AI to expand","url":"https://www.cherokeescout.com/local-newsletter/local-plant-turns-ai-expand"}],"runId":"srun_c0e944bd89584b544d2f862720f0a27f","classifiedAt":"2026-07-02T22:55:57.283Z"},"2141":{"community_note":"No facility-specific opposition was identified; Cleveland advanced a three-month citywide pause on new data centers to study infrastructure and community impacts, with the measure headed to a full council vote.","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"some-concern","water_note":"Air‑cooled precision HVAC is listed for this site and no gallons/day or discharge/source-stress data were found; regional coverage notes Cleveland hosts roughly 25 data centers but does not quantify water use for this facility.","grid_note":"Listed utility capacity is 2 × 1.3 MW with no reported transmission/generation upgrades, while council advanced a three‑month moratorium to study infrastructure and grid impacts.","citations":[{"title":"Cleveland pumps the brakes on data centers","url":"https://www.axios.com/local/cleveland/2026/06/29/cleveland-data-center-moratorium"},{"title":"City of Cleveland looks to pass data center moratorium","url":"https://spectrumnews1.com/oh/columbus/news/2026/06/25/city-of-cleveland-looks-to-pass-data-center-moratorium"},{"title":"Cleveland data center moratorium heads for a council vote ...","url":"https://signalcleveland.org/cleveland-data-center-moratorium-city-council/"},{"title":"Lumen: Cleveland 1 Data Center","url":"https://www.datacenters.com/lumen-cleveland-1"},{"title":"Lumen Cleveland 1 - 4000 Chester Ave","url":"https://www.datacentermap.com/usa/ohio/cleveland/level3-cleveland1/"}],"runId":"srun_c0e944bd89584b540787a3d6ecd465d8","classifiedAt":"2026-07-02T22:55:57.283Z"},"2143":{"community_note":"Local officials backed the project (groundbreaking) and a $58.7M state grant for the Conesville Industrial Park, with no facility-specific lawsuits or organized opposition reported to date.","water_impact":"low","ai_evidence":"Aligned labels CMH-02 a 'mega-scale AI campus' and its Northeast Ohio page calls the facilities 'AI-ready' for high-density needs, with DCD coverage showing a multi-building design; however, no named GPU tenant or deployed supercluster is confirmed [4][5][6].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"Aligned says CMH-02, a redevelopment of the demolished coal plant site, “utilizes far less water than the plant did”; no gallons/day figure or site-specific discharge issues were identified [7].","grid_note":"Large-load campus in PJM with legacy plant infrastructure; AEP Ohio’s data center tariff was adopted and interconnection moratoria lifted to manage big data-center loads and ratepayer risk [8][9][10].","citations":[{"title":"Aligned Data Centers builds new facility in Conesville ...","url":"https://www.coshoctontribune.com/story/news/local/coshocton-county/2025/10/02/aligned-data-centers-builds-new-facility-in-conesville-industrial-park/86333676007/"},{"title":"Coshocton Port Authority Secures $58.7 Million from Ohio ...","url":"https://frontier-companies.com/coshocton-port-authority-secures-58-7-million-from-ohio-department-of-development-for-site-redevelopment-at-the-conesville-industrial-park/"},{"title":"Scalable and Adaptive Data Centers in Northeast Ohio","url":"https://aligneddc.com/northeast-ohio-data-centers/"},{"title":"Powering AI at Scale: CMH-02 Data Center Breaks Ground","url":"https://aligneddc.com/video-resources/cmh-02-data-center-breaks-ground/"},{"title":"Aligned Data Centers: Adaptive Data Centers for Growth","url":"https://aligneddc.com/"}],"runId":"srun_c0e944bd89584b54c1dfbe79f0ea856d","classifiedAt":"2026-07-02T22:59:29.121Z"},"2149":{"community_note":"No organized opposition was identified in Greenville; County Council approved the expansion and incentives, and economic-development agencies issued supportive statements.","water_impact":"unknown","ai_evidence":"Releases state the Greenville expansion increases capacity from 2.5 MW to 12.5 MW and adds 88,000 sq ft of high‑density space “engineered for AI,” targeting data‑intensive workloads, without naming specific GPU clusters or tenants.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No site‑specific gallons/day or source reported; the facility page lists “350 tons of N+1 cooling,” and a company blog cites a 70% water‑usage reduction without tying it to Greenville.","grid_note":"Capacity increases by 10 MW (from 2.5 MW to 12.5 MW); reporting notes County approval of the expansion and prior electrical build‑out, with no public utility upgrade or rate‑impact filings cited.","citations":[{"title":"DartPoints announces 10MW data center expansion in ...","url":"https://www.datacenterdynamics.com/en/news/dartpoints-announces-10mw-data-center-expansion-in-south-carolina/"},{"title":"Greenville County approves economic incentives for 3 ...","url":"https://greenvillejournal.com/community/greenville-county-approves-economic-incentives-for-3-projects-county-council-notes/"},{"title":"DartPoints expands Greenville County operations","url":"https://www.sccommerce.com/news/dartpoints-expands-greenville-county-operations"},{"title":"Greenville SC Data Center","url":"https://dartpoints.com/locations/gsp01-greenville-sc/"},{"title":"Green Data Centers - Earth Day 2024","url":"https://dartpoints.com/blog/green-data-centers-earth-day-2024/"}],"runId":"srun_c0e944bd89584b547c37d4c8cbe62172","classifiedAt":"2026-07-02T22:55:57.284Z"},"2154":{"community_note":"Organized opposition from SELC and the Coastal Conservation League to Google’s Berkeley County groundwater withdrawals led to an agreement limiting aquifer use.","water_impact":"high","ai_evidence":"Public statements link South Carolina investments, including the Berkeley expansion, to Google Cloud and AI growth, but there is no verifiable disclosure of a GPU/TPU supercluster or confirmed AI training/inference cluster at this site.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"In 2022, the Berkeley County campus used about 1.8 million gallons per day (≈662 million gallons/year) and the state approved a separate groundwater permit of up to 549 million gallons/year.","grid_note":"Reports describe a load upwards of hundreds of MW and a resulting rate dispute over how Google’s campus should be billed by Santee Cooper.","citations":[{"title":"Google agrees to limit groundwater use from S.C. aquifer","url":"https://www.selc.org/news/google-agrees-to-limit-groundwater-use-from-s-c-aquifer/"},{"title":"Google Groundwater Permit","url":"https://coastalconservationleague.org/projects/google-groundwater-permit/"},{"title":"Why Google can't endlessly recycle water to cool servers","url":"https://www.postandcourier.com/rising-waters/google-water-cooling-data-center-servers/article_405cf9ee-e6c6-11ee-9616-bb4073594830.html"},{"title":"Google permit to triple its freshwater use upsets S.C. ...","url":"https://www.selc.org/news/google-permit-to-triple-its-freshwater-use-upsets-sc-neighbors/"},{"title":"Google grows South Carolina footprint with new Dorchester ...","url":"https://governor.sc.gov/news/2024-09/google-grows-south-carolina-footprint-new-dorchester-county-operations-expansion"}],"runId":"srun_c0e944bd89584b54368ff31bf3635a63","classifiedAt":"2026-07-02T22:59:29.121Z"},"2155":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No public reporting found on cooling water use, source, or discharge for this facility.","grid_note":"No public MW load or utility-upgrade details were found; listings only mention conventional UPS/standby diesel within an office-building setting.","citations":[{"title":"Lumen: Columbia 3 Data Center","url":"https://www.datacenters.com/lumen-columbia-3"},{"title":"A pitched debate over data centers in South Carolina is off ...","url":"https://www.postandcourier.com/politics/south-carolina-data-centers-legislature-davis/article_83ddab2d-20d2-40e7-9688-04e37b27556f.html"},{"title":"Lumen: Columbia 3 Data Center","url":"https://www.datacenters.com/lumen-columbia-3"},{"title":"tw telecom - Columbia Data Center # 1","url":"https://cloudandcolocation.com/datacenters/tw-telecom-columbia-data-center-1/"},{"title":"Lumen Columbia Data Center in Columbia SC | 1401 Main St","url":"https://www.datacentermap.com/usa/south-carolina/columbia-sc/twtc-columbia/"}],"runId":"srun_c0e944bd89584b54f0e8096a3f697494","classifiedAt":"2026-07-02T22:55:57.284Z"},"2159":{"community_note":"Residents questioned transparency around the 300 Jones Road data center and, on June 22, 2026, County Council took its first vote to impose a one-year moratorium on new data center applications using a legal mechanism to pause them [1][2].","water_impact":"unknown","ai_evidence":"The operator markets LightHouse sites as purpose‑built for next‑generation, high‑density AI workloads with liquid‑cooled architectures, and coverage describes a multi‑GW pipeline targeting hyperscale, AI and cloud customers; no named GPU tenant or Spartanburg‑specific deployment is confirmed [1][2].","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No project‑specific water use, source, or discharge data is public for 300 Jones Road; a 460,000 gpd figure cited locally pertains to the separate NorthMark/Valara project, while LightHouse materials reference closed‑loop/liquid‑cooled AI architectures [1][2].","grid_note":"The buyer obtained rights to an initial 60 MW of Duke Energy electrical service at 300 Jones Road, and local reporting discusses the proposal’s scale, but no public filings detail specific new transmission or ratepayer cost allocation [1][2].","citations":[{"title":"Spartanburg County leaders say they only recently learned ...","url":"https://www.foxcarolina.com/2026/06/18/spartanburg-county-leaders-say-they-only-recently-learned-proposed-data-center-some-residents-arent-buying-it/"},{"title":"Spartanburg County Council votes for data center moratorium","url":"https://www.postandcourier.com/spartanburg/news/spartanburg-county-data-center-moratorium-vote/article_e0eba019-fc7a-45ef-bc5d-46cb02e56a3f.html"},{"title":"Spartanburg data center to use 460K gallons of water per day","url":"https://www.postandcourier.com/spartanburg/news/spartanburg-northmark-data-center-water-use/article_a561843e-a832-45c7-ab24-2af7906fcefa.html"},{"title":"LightHouse Data Centers and Wharton Digital Launch ...","url":"https://finance.yahoo.com/news/lighthouse-data-centers-wharton-digital-143900121.html"},{"title":"LightHouse Data Centers launches, plans 2GW pipeline","url":"https://www.datacenterdynamics.com/en/news/lighthouse-data-centers-launches-plans-2gw-pipeline/"}],"runId":"srun_c0e944bd89584b54ab4027bdefe838a9","classifiedAt":"2026-07-02T22:55:57.284Z"},"2160":{"community_note":"Knoxville’s mayor and a county commissioner are pursuing a moratorium/guardrails on new data centers, and a 2024 records lawsuit targets TVA/Bitdeer incentive details; actions focus on oversight and potential ratepayer/resource impacts.","water_impact":"unknown","ai_evidence":"Company updates state Knoxville’s Phase 1 AI data center conversion design work has begun with design docs and a building-permit application submitted, targeting completion by Q4 2026, and a 6-K notes a 10 MW Knoxville AI conversion; Bitdeer also reports GPU-based AI Cloud revenue elsewhere, indicating a crypto-to-AI Cloud transition path for this site.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No site-specific gallons/day, cooling-system type, or discharge figures were found for this facility; data center water-use disclosures are often limited.","grid_note":"Very large KUB load: reporting places the site around 86 MW, accounting for 9.4% of KUB electric sales in 2023, with ~$113M in 2020–2025 KUB charges and nearly 20% offset by TVA credits.","citations":[{"title":"Knoxville Mayor Indya Kincannon joins push to limit data ...","url":"https://www.knoxnews.com/story/news/local/2026/06/09/knoxville-mayor-indya-kincannon-joins-push-to-limit-data-centers/90458542007/"},{"title":"2024-04-25-Faizer-v.-Tennessee-Valley-Authority- ...","url":"https://www.rcfp.org/wp-content/uploads/2024/04/2024-04-25-Faizer-v.-Tennessee-Valley-Authority-Complaint.pdf"},{"title":"University of Tennessee professor sues TVA for records ...","url":"https://www.knoxnews.com/story/news/local/2024/10/29/university-of-tennessee-professor-sues-tva-for-cryptocurrency-records-bitcoin-bitdeer/72778459007/"},{"title":"Data centers consume massive amounts of water","url":"https://theconversation.com/data-centers-consume-massive-amounts-of-water-companies-rarely-tell-the-public-exactly-how-much-262901"},{"title":"Data center water consumption lacks transparency","url":"https://finance-commerce.com/2025/08/ai-data-centers-water-use/"}],"runId":"srun_c0e944bd89584b546598420c4632ae26","classifiedAt":"2026-07-02T22:55:57.284Z"},"2164":{"community_note":"No WA1-specific lawsuits or zoning fights were found; Ecology’s Riker/WA1 air permit drew public comment and a health impact assessment, while regional outlets note growing concern about water and power strain from Quincy’s data center boom (operating status confirmed).","water_impact":"low","ai_evidence":"Coverage confirms WA13 completion brought the campus to 89MW, but no WA1-specific AI tenant or GPU supercluster has been announced; Vantage’s DGX-Ready program shows it can host high-density GPU clusters but does not confirm such deployments at Quincy.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Vantage says its air-cooled chillers use a closed-loop system that “needs no ongoing water source,” and EPA notes that using less potable water for data center cooling reduces extraction from the underlying aquifer.","grid_note":"An 89MW campus operating in Quincy faces Grant PUD load-growth caps (Mar 25, 2025) until substation/transmission upgrades are finished, with QTEP targeting ~300MW to ~650MW of available transmission.","citations":[{"title":"Updating the air permit for the Vantage data center in Quincy","url":"https://ecology.wa.gov/es-es/about-us/who-we-are/news/2017/jun-08-updating-the-air-permit-for-the-vantage-dat"},{"title":"Comment period extended on Vantage Data Center","url":"https://columbiabasinherald.com/news/2012/dec/27/comment-period-extended-on-vantage-data-2/"},{"title":"Washington's hydropower has created a data center boom. ...","url":"https://www.opb.org/article/2025/08/20/some-are-concerned-about-the-future-of-washington-s-data-center-boom/"},{"title":"Vantage Data Centers: Quincy Data Center Campus","url":"https://www.datacenters.com/vantage-quincy-campus-building-3"},{"title":"Sustainability","url":"https://vantage-dc.com/features/sustainability/"}],"runId":"srun_c0e944bd89584b541ff0585f1f528117","classifiedAt":"2026-07-02T22:55:57.284Z"},"2165":{"community_note":"Permit comments cited noise impacts on Sabey’s Quincy air permit, and Ecology finalized the permit in 2026 [1].","water_impact":"moderate","ai_evidence":"No named AI/GPU tenant or cluster tied specifically to SDC Quincy; Sabey markets the campus as multi-tenant colocation and highlights portfolio AI/liquid-cooling readiness rather than Quincy-specific AI deployments [1][2][3].","grid_impact":"high","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No Sabey-specific gallons/day found; Quincy’s reuse saved over 260 million gallons of potable water originally reserved for Microsoft’s data centers, and the city is in dry Eastern Washington and relies on aquifers [1][2].","grid_note":"A 123 MW campus on Grant PUD; the utility imposed load-growth limits and advanced a 120 MW solar PPA and Quincy-area transmission expansion, with large-load costs under Schedule 17 [1][2][3][4].","citations":[{"title":"Sabey Data Center Properties Project","url":"https://apps.ecology.wa.gov/publications/documents/2602004.pdf"},{"title":"Water Reuse Case Study: Quincy, Washington","url":"https://www.epa.gov/waterreuse/water-reuse-case-study-quincy-washington"},{"title":"Partnering with the City of Quincy to open Washington's ...","url":"https://local.microsoft.com/blog/partnering-with-the-city-of-quincy-to-open-washingtons-first-industrial-water-reuse-center/"},{"title":"Future Harvests: How Quincy became a data center ...","url":"https://www.yakimaherald.com/news/topics/future_harvests/future-harvests-how-quincy-became-a-data-center-boomtown/article_9306f58b-5d0c-4ff0-9025-b17d923867a0.html"},{"title":"SDC Quincy","url":"https://sabeydatacenters.com/locations/quincy-data-center"}],"runId":"srun_c0e944bd89584b54da4876ae618bab20","classifiedAt":"2026-07-02T22:55:57.284Z"},"2192":{"community_note":"No organized opposition or zoning/noise complaints were identified for HOU5; the site’s diesel emergency generators are authorized under TCEQ Permit by Rule 106.511 [3][4].","water_impact":"unknown","ai_evidence":"No HOU5-specific reports of GPU superclusters or AI tenants; the site is marketed as high‑density/HPC‑capable [1], while a company‑wide NVIDIA DGX‑Ready certification does not identify HOU5 [2].","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No HOU5 water-use figures are disclosed; the operator says it began tracking water consumption in 2022, with no site-level breakdown [5].","grid_note":"HOU5 lists 5.25 MW critical IT load and 100% renewable energy; no ERCOT/CenterPoint/PUCT filings surfaced for new transmission/generation or rate impacts tied to this site [1].","citations":[{"title":"Texas Commission on Environmental Quality - Texas.gov","url":"https://www.tceq.texas.gov/assets/public/permitting/air/reports/applications/37072-ac.pdf"},{"title":"Air PBR 106.511: Portable and Emergency Engines and ...","url":"https://www.tceq.texas.gov/permitting/air/permitbyrule/subchapter-w/portable_power.html"},{"title":"Data Center Design and The Evolution of AI - DataBank","url":"https://www.databank.com/resources/videos/data-center-design-and-the-evolution-of-ai/"},{"title":"(HOU5) 4201 Southwest Freeway - Houston Data Centers","url":"https://www.databank.com/data-centers/houston/4201-southwest-freeway/"},{"title":"DataBank Achieves NVIDIA DGX-Ready Data Center ...","url":"https://www.databank.com/resources/press-releases/databank-achieves-nvidia-dgx-ready-data-center-program-certification/"}],"runId":"srun_c0e944bd89584b5494a08cf16812dd65","classifiedAt":"2026-07-02T22:55:57.574Z"},"2196":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"Texas 1 uses a concurrently maintainable chilled‑water system with dual, independent water feeds; no facility‑specific gallons/day, water source, WUE, drought/aquifer, or discharge data were found.","grid_note":"Texas 1 is a 24 MW site with independent substations/dual power feeds; records show a rate‑discrimination challenge against Austin Energy, with no evidence of required new generation/transmission or curtailment.","citations":[{"title":"Data Foundry Wins Landmark Appeal Against City of ...","url":"https://www.datafoundry.com/data-foundry-wins-landmark-appeal-against-city-of-austin/"},{"title":"DATA FOUNDRY INC v. CITY OF AUSTIN (2021)","url":"https://caselaw.findlaw.com/court/tx-supreme-court/2120610.html"},{"title":"Texas 1 Data Center","url":"https://www.datafoundry.com/data-centers/data-foundry-01/"},{"title":"Data Centers Are Growing in Texas, But Big Questions ...","url":"https://news.utexas.edu/2026/05/06/data-centers-are-growing-in-texas-but-big-questions-remain-about-water-use/"},{"title":"Data Foundry: Premier Colocation Data Centers in Austin and ...","url":"https://www.datafoundry.com/"}],"runId":"srun_c0e944bd89584b544ef8ab409e350d6a","classifiedAt":"2026-07-02T22:59:29.394Z"},"2198":{"community_note":"Residents, prompted by Commissioner David Glass’s town halls with EdgeConneX, have raised concerns over water, infrastructure, and rapid expansion; no lawsuits or moratorium specific to AUS01 were identified.","water_impact":"unknown","ai_evidence":"No named AI tenant or GPU supercluster has been announced; the operator markets AUS01 and its platform as capable of high‑density, AI GPU‑based deployments.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Aqua WSC says it executed a Large Volume Service Agreement with DFW33220N, LLC (EdgeConneX) to provide potable water service to the site.","grid_note":"Phase one is 96MW and the area is served by Bluebonnet Electric Cooperative.","citations":[{"title":"Town halls set for 3 Cedar Creek data centers spanning ...","url":"https://communityimpact.com/austin/bastrop-cedar-creek/development/2026/06/09/town-halls-set-for-3-cedar-creek-data-centers-spanning-nearly-1500-acres/"},{"title":"Bastrop County neighbors push back on data centers - Austin","url":"https://www.kvue.com/article/news/local/bastrop-county-texas-neighbors-push-back-data-centers/269-c60e3931-7b2e-4656-ae6b-c2140895f8e0"},{"title":"EdgeConneX Austin Data Center | Colocation & Connectivity","url":"https://www.edgeconnex.com/locations/americas/austin-texas/"},{"title":"$1.4B data center in Austin-area to break ground this summer","url":"https://www.mysanantonio.com/business/article/1-billion-dollar-data-center-texas-22278504.php"},{"title":"EdgeConneX plans second data center campus in Bastrop ...","url":"https://communityimpact.com/bastrop-cedar-creek/government/edgeconnex-plans-second-data-center-campus-in-bastrop-county/"}],"runId":"srun_c0e944bd89584b540950c193745bf82b","classifiedAt":"2026-07-02T22:59:29.394Z"},"2199":{"community_note":"No organized opposition specific to Project Raptor; Hutto City Council approved a specific-use permit on Dec. 5, 2024 for a data center on Innovation Boulevard, while 2026 pushback and the withdrawal pertained to a different Zydeco proposal at 450 Ed Schmidt Blvd.","water_impact":"unknown","ai_evidence":"Reports describe a planned liquid-cooled, high-density facility, and Colovore markets 'Edge AI Colocation' with '5-600+ kW' racks and support for 'real-time AI workloads,' indicating AI-serving/inference use without any disclosed Hutto training supercluster.","grid_impact":"unknown","ai_class":"ai-inference","community_pushback":"none-found","water_note":"No gallons-per-day or source/discharge data were reported for Project Raptor; the facility is described as liquid-cooled.","grid_note":"No Project Raptor-specific MW load or interconnection/transmission upgrade details were reported in available coverage.","citations":[{"title":"Zydeco Development withdraws zoning request for data ...","url":"https://communityimpact.com/austin/pflugerville-hutto/government/2026/04/22/zydeco-development-withdraws-zoning-request-for-data-center-in-hutto/"},{"title":"ordinance no. o-2024-076","url":"https://www.huttotx.gov/Archive/ViewFile/Item/311"},{"title":"Zydeco Development withdraws rezone request for ...","url":"http://www.huttotx.gov/m/newsflash/Home/Detail/424"},{"title":"Data center developer withdraws rezoning request in Hutto","url":"https://www.kut.org/energy-environment/2026-04-20/hutto-tx-zydeco-data-center-rezoning-request"},{"title":"Colovore plans data center in Austin, Texas - DCD","url":"https://www.datacenterdynamics.com/en/news/colovore-plans-data-center-in-austin-texas/"}],"runId":"srun_c0e944bd89584b54c3a8dfe2aa24c22c","classifiedAt":"2026-07-02T22:59:29.394Z"},"2202":{"community_note":"San Antonio leaders are moving to set zoning/resource-use rules for data centers, but there is no SAT4-specific lawsuit or organized opposition to date.","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No gallons/day figure is published for SAT4; CyrusOne states the SAT2–SAT4 campus uses 'Water‑Free Cooling' with 'Minimal water usage for humidification and maintenance' and a closed‑loop chilled water system.","grid_note":"The SAT2–SAT4 campus is listed at 36 MW IT capacity, and CPS Energy is launching initiatives to manage rapid large‑load demand from data centers; no SAT4‑specific transmission or rate-case details were identified.","citations":[{"title":"San Antonio has over 20 data centers and more on the way","url":"https://sanantonioreport.org/risk-opportunity-san-antonio-water-electricity-data-centers/"},{"title":"Mapping the dozens of data centers in San Antonio","url":"https://www.ksat.com/news/local/2025/11/11/mapping-the-dozens-of-data-centers-in-san-antonio-city-council-to-consider-first-request-for-center-policy-planning/"},{"title":"Data Center Campus -- San Antonio: SAT2-SAT4","url":"https://www.cyrusone.com/data-centers/north-america/san-antonio-sat2-sat4"},{"title":"CyrusOne SAT4 - San Antonio","url":"https://www.datacentermap.com/usa/texas/san-antonio/cyrusone-sat4-san-antonio/"},{"title":"CPS Energy pilot targets Texas data center power demand","url":"https://www.expressnews.com/business/article/cps-energy-data-centers-ercot-texas-electric-grid-22186021.php"}],"runId":"srun_c0e944bd89584b547e00fa35bcddb731","classifiedAt":"2026-07-02T22:55:57.574Z"},"2203":{"community_note":"No CloudHQ‑specific lawsuit or organized neighborhood campaign was found; regional advocates (Greater Edwards Aquifer Alliance) raised aquifer/water concerns and San Antonio officials announced work on a policy framework for data‑center growth [3][4].","water_impact":"high","ai_evidence":"CloudHQ describes the SAT campus as five planned, fully customizable data centers with up to 600 MW of critical IT load, and public listings for SAT‑1 present general facility details without identifying an AI/GPU tenant or supercluster [1][8].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"At full 600‑MW campus build‑out, the tracker indicates multi‑million‑gallon‑per‑day cooling demand, and regional advocates warn about risks to the Edwards Aquifer in the San Antonio area [2][3].","grid_note":"SAT‑1 is planned at 96 MW within a campus up to 600 MW, and CPS Energy reports unprecedented large‑load growth from data centers while rolling out a large‑load program that could include customer‑owned generation for major users [2][1][6][7].","citations":[{"title":"Greater Edwards Aquifer Alliance report sounds the alarm ...","url":"https://www.tpr.org/news/2026-04-29/greater-edwards-aquifer-authority-report-sounds-the-alarm-over-proposed-data-centers-in-texas"},{"title":"District 10 Councilmember Calls for Framework For Data ...","url":"https://www.sa.gov/Directory/News-Releases/District-10-Councilmember-Calls-for-Responsible-Framework-For-Data-Center-Growth"},{"title":"CloudHQ SAT Campus - Central Texas Data Center Tracker","url":"https://centexdatacenters.org/tracker/cloudhq-san-antonio"},{"title":"Greater Edwards Aquifer Alliance report sounds the alarm ...","url":"https://www.tpr.org/news/2026-04-29/greater-edwards-aquifer-authority-report-sounds-the-alarm-over-proposed-data-centers-in-texas"},{"title":"SAT Campus","url":"https://cloudhq.com/campus/sat-campus/"}],"runId":"srun_c0e944bd89584b5438591084f3faebae","classifiedAt":"2026-07-02T22:55:57.574Z"},"2207":{"community_note":"","water_impact":"unknown","ai_evidence":"Press and vendor materials describe the Victoria site as a local computing hub for 37 school districts supporting AI workloads, consistent with edge AI/inference, and Duos Edge AI advertises up to 100 kW per cabinet density; no GPU supercluster or training-cluster announcement for Victoria was found [1][3].","grid_impact":"unknown","ai_class":"ai-inference","community_pushback":"none-found","water_note":"No Victoria-specific public reporting found for cooling type, gallons/day, water source, wastewater discharge, or drought/aquifer impacts.","grid_note":"At 1905 Leary Ln, the site shows 3-phase electrical service and a 125 kW natural gas generator with automatic transfer; no total MW or utility upgrade filings were found.","citations":[{"title":"Duos Edge AI to Host Victoria Edge Data Center Open House","url":"https://ir.duostechnologies.com/news-events/press-releases/detail/836/duos-edge-ai-to-host-victoria-edge-data-center-open-house"},{"title":"Duos to deploy Edge data center in Victoria, Texas - DCD","url":"https://www.datacenterdynamics.com/en/news/duos-to-deploy-edge-data-center-in-victoria-texas/"},{"title":"Duos: Victoria, TX Data Center","url":"https://baxtel.com/data-center/duos-victoria-tx"},{"title":"Duos Edge AI - Victoria EDC Data Center in San Antonio","url":"https://www.datacentermap.com/usa/texas/san-antonio/duos-edge-ai-victoria-edc/"},{"title":"REGION THREE EDUCATION SERVICE CENTER","url":"https://www.yelp.com/biz/region-three-education-service-center-victoria"}],"runId":"srun_c0e944bd89584b54f2b12ed7b05ea98f","classifiedAt":"2026-07-02T22:55:57.574Z"},"2211":{"community_note":"Oxmoor Valley residents have filed class-action and related suits to halt the Birmingham “AI Factory,” citing zoning/moratorium issues and 24/7 noise/generator exhaust impacts, with litigation active into late June 2026 [6][5][7][8].","water_impact":"low","ai_evidence":"Nebius is 'a cloud provider focused on AI workloads' offering access to GPUs, and Birmingham is presented as an 'AI Factory' designed at 300 MW—indicating GPU-centric AI compute rather than traditional colocation [2][3].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No gallons/day disclosed; reporting cites a closed-loop system expected to use about one-fourth of the former building’s water use [4].","grid_note":"Planned at 300 MW; Nebius says it will fund new Alabama Power infrastructure and has a power agreement in place, and media reports company claims that residential rates will not increase [3][1][9][4].","citations":[{"title":"Birmingham residents file class-action lawsuit over ...","url":"https://www.wvtm13.com/article/birmingham-lawsuit-oxmoor-valley-nebias-ai-data-center/71298235"},{"title":"Birmingham residents sue city, AI company over data center","url":"https://www.al.com/business/2026/06/more-birmingham-residents-sue-city-ai-company-over-data-center.html"},{"title":"Oxmoor Valley residents ask judge to halt Nebius AI factory ...","url":"https://www.wbrc.com/2026/05/13/oxmoor-valley-residents-ask-judge-halt-nebius-ai-factory-construction/"},{"title":"New Lawsuit Against Nebius Data Center Challenges ...","url":"https://birminghamwatch.org/2026/06/29/new-lawsuit-against-nebius-data-center-challenges-validity-of-regs-and-decisions/"},{"title":"'AI factory' being proposed along Lakeshore Parkway in ...","url":"https://www.wbrc.com/2026/02/11/ai-factory-being-proposed-along-lakeshore-parkway-birmingham/"}],"runId":"srun_c0e944bd89584b54ad094526f77208e8","classifiedAt":"2026-07-02T22:55:57.574Z"},"2219":{"community_note":"No Norwich/Plain Hill–specific organized opposition identified; reporting notes efforts to block or derail data center projects in other CT towns (e.g., Groton), but not this site.","water_impact":"unknown","ai_evidence":"No public evidence of AI tenants or GPU superclusters; the site is listed as a planned Gotspace facility with no AI-specific disclosures.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"NPU says customers receive water from the Deep River Reservoir (Colchester) and Stony Brook Reservoir (Montville), with reserves and interconnections; no project-specific cooling volumes were found.","grid_note":"Listed at 32 MW for 334 Plain Hill Rd; NPU’s June 2026 notice increased purchased power charges due to higher electricity/natural gas costs, not a data-center-specific upgrade or rate action.","citations":[{"title":"Connecticut towns look to derail proposed ...","url":"https://www.datacenterdynamics.com/en/news/connecticut-towns-look-to-derail-proposed-data-center-projects/"},{"title":"Groton CT blocks large scale data center projects ...","url":"https://www.datacenterdynamics.com/en/news/groton-ct-blocks-large-scale-data-center-projects-thwarting-ne-edge/"},{"title":"Gotspace Norwich Campus - Connecticut","url":"https://www.datacentermap.com/usa/connecticut/norwich/gotspace-norwich-campus/"},{"title":"Gotspace Norwich - Building 3 Data Center (32 MW)","url":"https://www.datacentermap.com/usa/connecticut/norwich/gotspace-norwich-building-3/"},{"title":"Gotspace Data Partners - 32 Data Centers - See Locations","url":"https://www.datacentermap.com/c/gotspace-data-partners/"}],"runId":"srun_c0e944bd89584b54676163695882605d","classifiedAt":"2026-07-02T22:55:57.574Z"},"2223":{"community_note":"No organized opposition identified for UA’s on-campus RDC; community efforts focus on the separate Project Blue near the Pima County Fairgrounds, where TEP’s service agreement was approved and local organizing/guardrails are underway.","water_impact":"unknown","ai_evidence":"UA HPC lists GPU nodes (e.g., Ocelote nodes with Nvidia P100 GPUs) and supports ML/DL containers, and UITS announced a fall‑2026 cluster including two 8‑GPU Nvidia H200 nodes for campus researchers.","grid_impact":"low","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"RDC uses water‑cooled racks in a 1,200 ft² room; no gallons/day, source, or discharge details are published.","grid_note":"The campus Computer Center includes a 1,750 kW backup generator, while TEP’s public proceedings concern up to 286 MW for a separate planned data center near the fairgrounds.","citations":[{"title":"Data Center ESA – Tucson Electric Power","url":"https://www.tep.com/data-center-esa/"},{"title":"Arizona regulators approve TEP deal to power ...","url":"https://news.azpm.org/p/azpmnews/2025/12/10/227598-arizona-regulators-approve-tep-deal-to-power-controversial-pima-county-data-center"},{"title":"Research Data Center - UArizona HPC Documentation","url":"https://hpcdocs.hpc.arizona.edu/resources/data_center/"},{"title":"Compute Resources","url":"https://hpcdocs.hpc.arizona.edu/resources/compute_resources/"},{"title":"Containers on HPC - UArizona HPC Documentation","url":"https://hpcdocs.hpc.arizona.edu/software/containers/containers_on_hpc/"}],"runId":"srun_c0e944bd89584b5421b979d86fefba82","classifiedAt":"2026-07-02T22:55:57.574Z"},"2227":{"community_note":"A meeting recap notes two residents objected to an IALCO/Tract rezoning and the hearing was continued to June 2, 2025, while Tract later said the Altoona campus is fully entitled after annexation, rezoning, and a development agreement.","water_impact":"moderate","ai_evidence":"No named AI tenant or GPU cluster has been announced for Altoona; Tract markets the site as a fully entitled 1GW+ technology park suitable for hyperscale and wholesale data center operators.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Water Reservation is 588k GPD; Altoona’s source is primarily the Jordan Aquifer, and Meta’s local facilities can use up to 1M GPD, with no Tract-specific cooling or discharge details published.","grid_note":"Planned load is 1,000 MW with adjacency to 345 kV transmission, and the utility’s agreements are designed to protect other customers from cost shifts tied to data centers and large new users.","citations":[{"title":"Residents object to rezoning request; Altoona council continues ...","url":"https://citizenportal.ai/articles/7764781/iowa/polk-county/altoona-city/iowa/polk-county/altoona-city/Iowa/Polk-County/Altoona-City/Residents-object-to-rezoning-request-Altoona-council-continues-IALCO-hearing-to-June-2"},{"title":"CITY OF ALTOONA COUNCIL MEETING","url":"https://cms2.revize.com/revize/altoona/Government/agendas_minutes/city%20council/2025/06-02-2025%20Agenda.pdf"},{"title":"Tract Enters the Des Moines Market with the Acquisition of ...","url":"https://www.tract.com/news/tract-enters-the-des-moines-market-with-the-acquisition-of-453-acres-following-successful-collaboration-with-the-city-of-altoona-ia/"},{"title":"Altoona - Tract","url":"https://www.tract.com/project/altoona/"},{"title":"FAQ","url":"https://www.altoona-iowa.com/departments/public_utilities/water_department/water_faq.php"}],"runId":"srun_c0e944bd89584b54dc11940ba08c77b3","classifiedAt":"2026-07-02T22:55:57.574Z"},"2229":{"community_note":"Active opposition: local group Just Transition NWI and residents objected to 70 diesel generators and related emissions/noise, while IUOE Local 150 sought to intervene in the utility case; IDEM has approved the air permit and the project continues.","water_impact":"low","ai_evidence":"The project is presented as a Google data center powering general digital services, with no public confirmation of GPU/TPU clusters or AI tenants at this facility [10][11].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day reported; local officials said the facility will use a closed-loop water system and that the city has “ample” water.","grid_note":"Power is slated to be delivered via a pooled portfolio beginning summer 2026, with NIPSCO/GenCo providing transmission and generation infrastructure, and NIPSCO has filed to serve the $832M Michigan City project.","citations":[{"title":"IDEM holds public meeting concerning air permit request ...","url":"https://www.abc57.com/news/idem-holds-public-meeting-concerning-air-permit-request-from-michigan-city-data-center"},{"title":"IDEM Public Meeting on Dirty Diesel Generator Permit for ...","url":"https://www.jtnwi.org/events/idem-public-meeting-on-dirty-diesel-generator-permit"},{"title":"Local 150 has filed an emergency petition to intervene in ...","url":"https://www.facebook.com/local150iuoe/posts/local-150-has-filed-an-emergency-petition-to-intervene-in-the-indiana-utility-re/1442372447924502/"},{"title":"IDEM approves air permit request for Michigan City data ...","url":"https://www.abc57.com/news/idem-approves-air-permit-request-for-michigan-city-data-center"},{"title":"Labor union calls for review of Google's Michigan City data ...","url":"https://www.insideindianabusiness.com/articles/labor-union-calls-for-review-of-googles-michigan-city-data-center-project"}],"runId":"srun_c0e944bd89584b549669b27a882c7b44","classifiedAt":"2026-07-02T22:59:29.394Z"},"2231":{"community_note":"Environmental advocates have voiced health/energy concerns around KCK data centers, but no Quindaro-specific lawsuit was found; the active zoning lawsuit reported locally is for a separate $12B project (Red Wolf), not Quindaro.","water_impact":"unknown","ai_evidence":"PowerTransitions describes a 200 MW, 1,524,000-sq-ft campus with liquid-cooling compatibility, marketed for generative AI and cloud workloads; no public tenant or GPU supercluster has been announced.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No gallons/day disclosed; materials cite “ample water supply” and a planned system to clean and recycle cooling water.","grid_note":"Planned ~192–200 MW critical IT within a ~300 MW campus and an on‑site 150 MW switchyard under development, a large share relative to BPU’s historically recorded 529 MW peak.","citations":[{"title":"KCK weighs data center projects amid health, energy ...","url":"https://www.kansascity.com/news/local/wyandotte-county/article316024756.html"},{"title":"Lawsuit delays $12B data center in Kansas City as ...","url":"https://kansasreflector.com/2025/11/07/lawsuit-delays-12b-data-center-in-kansas-city-as-community-environmental-group-voice-concerns/"},{"title":"PowerTransitions - Quindaro Data Center Opportunity","url":"https://wsp.cld.bz/PowerTransitions-Quindaro-Data-Center-Opportunity-Kansas-City/4/"},{"title":"KCK weighs data center projects amid health, energy ...","url":"https://www.kansascity.com/news/local/wyandotte-county/article316024756.html"},{"title":"PowerTransitions Announces Plans to Develop $2.4 Billion ...","url":"https://www.power-transitions.com/news-and-insights/quindaro-data-center-announcement"}],"runId":"srun_c0e944bd89584b5450c1c8adc4ec6ad9","classifiedAt":"2026-07-02T22:55:57.574Z"},"2232":{"community_note":"Residents including Mooringsport Mayor Tyler Gordon, Michael Craft, and Mary Blakemore challenged the City’s approval over transparency/impact concerns, but reporting says the legal challenge was resolved without derailing the project.","water_impact":"high","ai_evidence":"State announcement says Amazon’s Louisiana data center campuses will “support AI and cloud computing,” indicating AI workloads but without confirming GPU superclusters or specific training deployments.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"City documents indicated roughly 7.5 million gallons/day of water use for the proposed campus.","grid_note":"SWEPCO announced its role supporting the Amazon data center investment in Shreveport; specific MW load was not disclosed.","citations":[{"title":"Data center legal challenge resolved without derailing project","url":"https://www.fwbusiness.com/news/national/article_9f9f29dc-703d-5a15-97a7-f8b9e8d15088.html"},{"title":"Documents show proposed Shreveport data center would ...","url":"https://www.ksla.com/2025/12/12/documents-show-proposed-shreveport-data-center-would-use-75-million-gallons-water-daily/"},{"title":"Amazon Selects Louisiana for $12 Billion Data Center ...","url":"https://www.opportunitylouisiana.gov/news/amazon-selects-louisiana-for-12-billion-data-center-campuses-in-major-u-s-expansion"},{"title":"Amazon's $12B data center deal signals a new era of ...","url":"https://www.geekwire.com/2026/water-power-and-transparency-amazons-12b-data-center-deal-signals-a-new-era-of-accountability/"},{"title":"AEP building $100 million Shreveport Transmission ...","url":"https://www.swepco.com/company/news/view.aspx?releaseID=8365"}],"runId":"srun_c0e944bd89584b540b19e71cdd8c5836","classifiedAt":"2026-07-02T22:55:57.574Z"},"2235":{"community_note":"Active opposition from residents and CRDCD, alongside Castle Rock Township, has led to lawsuits over annexation/zoning and environmental impacts; motions to dismiss were denied and litigation continues.","water_impact":"high","ai_evidence":"Reports describe a 343-acre, multi-building hyperscale campus but provide no named AI tenant, GPU cluster, or liquid-cooling announcement; one article broadly labels Farmington among planned AI/hyperscale projects without specifying the workload.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Peak water demand increase is estimated at 382,000 to 2.35 million gallons/day, while Farmington’s current use is about 2.14 MGD and the project would more than double it.","grid_note":"Planned load is around 708 MW; the area is served by Dakota Electric Association (supplied by Great River Energy); no quantified project-specific rate impact was found.","citations":[{"title":"Farmington, Minn., Residents Sue to Stop Data Center Park","url":"https://www.govtech.com/infrastructure/farmington-minn-residents-sue-to-stop-data-center-park"},{"title":"Lawsuit Updates","url":"https://www.datacenterresponsibility.com/lawsuitupdates"},{"title":"Farmington city attorney outlines data center history, status","url":"https://www.hometownsource.com/sun_thisweek/community/dakota_county/farmington-city-attorney-outlines-data-center-history-status/article_78a6b31e-e4be-4fff-8e54-aadea95a4735.html"},{"title":"They Wanted a Grocery Store. They Got a 350-Acre Data ...","url":"https://www.thebrockovichreport.com/p/they-wanted-a-grocery-store-they"},{"title":"Business Item: 2025-88","url":"https://metrocouncil.org/Council-Meetings/Committees/Community-Development-Committee/2025/April-21,-2025/2025-88.aspx"}],"runId":"srun_c0e944bd89584b54c571fd4f396d2c07","classifiedAt":"2026-07-02T22:55:57.574Z"},"2239":{"community_note":"","water_impact":"unknown","ai_evidence":"CCAST is an academic HPC facility with GPU resources (more than 13,000 CPU cores and ~100 GPUs; Thunder Prime has 99 Nvidia GPUs) [1][2]. NDSU’s Bison system is explicitly for AI training, fine-tuning, and inference [3].","grid_impact":"unknown","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No public CCAST/Bison disclosures found on gallons/day, cooling technology, water source, or wastewater discharge [1][2][3].","grid_note":"No CCAST-specific MW or utility upgrades identified; a news report says Xcel Energy’s requested rate increase could cost NDSU about $1 million annually, which is campus-wide and not specific to CCAST [4].","citations":[{"title":"Center for Computationally Assisted Science and ...","url":"https://www.ndsu.edu/ccast"},{"title":"NDSU awarded nearly $4 million to deploy supercomputer ...","url":"https://www.ndsu.edu/news/2025-08-28-ndsu-awarded-nearly-4-million-deploy-supercomputer-ai-research"},{"title":"CCAST 2025 Summer Workshop on AI/ML","url":"https://kb.ndsu.edu/it/151528"},{"title":"Thunder Prime Cluster - NDSU IT Knowledge Base","url":"https://kb.ndsu.edu/it/128284"},{"title":"Advanced Research Computing Training Program","url":"https://kb.ndsu.edu/it/107964"}],"runId":"srun_c0e944bd89584b547fca1bbec14335d0","classifiedAt":"2026-07-02T22:55:57.574Z"},"2240":{"community_note":"","water_impact":"low","ai_evidence":"HCC provides GPU resources (e.g., Swan) for AI/ML training and usage of frameworks such as PyTorch, and it documents current GPUs on Swan; HCC resources span PKI and Schorr, with PKI housing an HCC machine room, indicating academic AI workloads rather than hyperscale tenants.","grid_impact":"low","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No gallons/day or source/discharge details are published; the PKI machine room is documented at 160 tons of cooling.","grid_note":"Documented capacity is up to ~500 kVA UPS/genset-protected power with 160 tons of cooling; no reports of OPPD upgrades or grid strain specific to this PKI machine room.","citations":[{"title":"Office Locations | Holland Computing Center | Nebraska","url":"https://hcc.unl.edu/office-locations"},{"title":"Peter Kiewit Institute Remodel","url":"https://cdn.nebraska.edu/docs/facilities/PKI_Remodel_Statement.pdf"},{"title":"facilities.docx - Holland Computing Center","url":"https://hcc.unl.edu/docs/facilities.docx"},{"title":"HCC AI Resources | Holland Computing Center | Nebraska","url":"https://hcc.unl.edu/ai"},{"title":"Introduction to Artificial Intelligence and Machine Learning ...","url":"https://hcc.unl.edu/hcc-ai-and-ml-workshop-nov2025"}],"runId":"srun_c0e944bd89584b543a2231e190fbd2b5","classifiedAt":"2026-07-02T22:55:57.574Z"},"2242":{"community_note":"Local residents organized against the Compass Statesville/Stamey Farm project over quality-of-life and water-supply concerns; the City Council approved rezoning on Sept. 15, 2025, and the site was annexed on Oct. 20, 2025.","water_impact":"low","ai_evidence":"No public sources confirm GPUs, an AI tenant, or AI superclusters; marketing describes a hyperscale campus of up to 500 MW and ~1.34 million sq ft.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day disclosed; Compass says the campus will be air-cooled to reduce water use and pledged “no impact on the public water supply” during annexation coverage.","grid_note":"Marketed at up to 500 MW next to Duke Energy infrastructure, with Duke citing multi‑gigawatt data‑center agreements and major capital plans to meet demand; no project‑specific rate or curtailment filings found.","citations":[{"title":"Proposed Statesville data center takes next step in ...","url":"https://www.wbtv.com/2025/08/27/proposed-statesville-data-center-takes-next-step-development/"},{"title":"Statesville approves data center rezoning amid opposition","url":"https://www.wcnc.com/article/news/local/statesville-approves-controversial-data-center-proposal/275-dd66a7c5-2d9c-4964-9108-a0db12c08238"},{"title":"North Carolina City Approves Massive Data Center Despite ...","url":"https://www.governing.com/infrastructure/north-carolina-city-approves-massive-data-center-despite-local-opposition"},{"title":"Statesville data center annexed, despite company ...","url":"https://www.qcnews.com/news/u-s/north-carolina/iredell-county/statesville-data-center-annexed-despite-company-promising-it-would-not-impact-city-water/"},{"title":"Data center could come to Statesville, North Carolina - DCD","url":"https://www.datacenterdynamics.com/en/news/data-center-could-come-to-statesville-north-carolina/"}],"runId":"srun_c0e944bd89584b54f47a4c50bcff851a","classifiedAt":"2026-07-02T22:55:57.574Z"},"2260":{"community_note":"At the March 2025 opening, one attendee raised water-use concerns and organizers said the site does not use water-based cooling; no organized opposition or litigation was reported.","water_impact":"low","ai_evidence":"Press and regional statements frame the 5800 Bell site as an edge data center delivering high‑power computing for education and low‑latency services, consistent with AI inference/edge workloads; no evidence of a large GPU training cluster at this pod.","grid_impact":"low","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No gallons/day reported; sources say the Region 16 pod uses air cooling and \"no water\" for server/rack cooling, and a water-use question at opening was addressed accordingly.","grid_note":"Described as an edge deployment for schools with a $1 million build and no reported SPS/Xcel upgrades or rate cases tied to this site.","citations":[{"title":"Edge Data Center opens in Amarillo","url":"https://amarillotribune.org/2025/03/20/edge-data-center-opens-in-amarillo/"},{"title":"Duos Edge AI details expansion after county approves ...","url":"https://www.amarillo.com/story/news/2026/01/29/what-to-know-about-duos-edge-ai-and-amarillos-new-data-center/88390487007/"},{"title":"Hereford ISD partners with Dous Edge AI for free data center","url":"https://www.facebook.com/HerefordIndependentSchoolDistrict/posts/hereford-isd-is-excited-to-share-information-regarding-the-duos-edge-ai-data-cen/1478875710803736/"},{"title":"Edge Data Center opens in Amarillo","url":"https://amarillotribune.org/2025/03/20/edge-data-center-opens-in-amarillo/"},{"title":"Region 16 ESC Edge Data Center Grand Opening","url":"https://ir.duostechnologies.com/news-events/press-releases/detail/795/region-16-esc-edge-data-center-grand-opening"}],"runId":"srun_c0e944bd89584b54aed26a83d001e31b","classifiedAt":"2026-07-02T22:55:57.574Z"},"2261":{"community_note":"No organized opposition; Potter County reviewed the plan in 2025 and then voted 5-0 in Jan. 2026 to approve a lease at $18,000/year for the small downtown data center.","water_impact":"low","ai_evidence":"Operator has a GPU hosting/GPU-as-a-Service partnership with Hydra Host, while the Amarillo site is a small edge deployment with small-business-scale power draw, supporting an AI inference profile rather than training.","grid_impact":"low","ai_class":"ai-inference","community_pushback":"none-found","water_note":"Reported to use no water and rely on high-efficiency air cooling.","grid_note":"Power use is described as comparable to a small commercial business (e.g., a McDonald's) or a few average homes.","citations":[{"title":"Potter County approves lease for Duos Edge AI data center ...","url":"https://www.amarillo.com/story/news/2026/01/28/potter-county-approves-lease-for-duos-edge-ai-data-center-in-amarillo-near-santa-fe-building/88379569007/"},{"title":"Potter County, Duos Edge AI reach lease agreement on ...","url":"https://www.newschannel10.com/2026/01/27/potter-county-duos-edge-ai-reach-lease-agreement-new-data-center/"},{"title":"Potter County reviews Duos Edge AI plan for Amarillo data ...","url":"https://www.amarillo.com/story/news/2025/07/16/potter-county-reviews-duos-edge-ai-plan-for-amarillo-data-center/85194109007/"},{"title":"Duos Edge AI details expansion after county approves ...","url":"https://www.amarillo.com/story/news/2026/01/29/what-to-know-about-duos-edge-ai-and-amarillos-new-data-center/88390487007/"},{"title":"Duos Technologies Group Executes Definitive Agreement with ...","url":"https://ir.duostechnologies.com/news-events/press-releases/detail/830/duos-technologies-group-executes-definitive-agreement-with"}],"runId":"srun_c0e944bd89584b54692a80f2b37ed7bc","classifiedAt":"2026-07-02T22:55:57.574Z"},"2264":{"community_note":"Active opposition from Citizens Concerned About Wolf Hollow with Earthjustice over 24/7 noise; litigation is ongoing and MARA disputes the claims while citing mitigation.","water_impact":"low","ai_evidence":"","grid_impact":"high","ai_class":"not-ai","community_pushback":"active-opposition","water_note":"No gallons/day reported; the data center uses air/immersion cooling, while adjacent Wolf Hollow II/III use air cooling with no water intake/discharge permitting, and only older Wolf Hollow I drew from Lake Granbury.","grid_note":"Behind-the-meter with Wolf Hollow, the mine’s dedicated load has been linked to a proposed Wolf Hollow expansion (WHIII) and drew objections in the TCEQ process.","citations":[{"title":"Granbury Residents Sue Local Bitcoin Mine Over Health ...","url":"https://earthjustice.org/press/2024/granbury-residents-sue-local-bitcoin-mine-over-health-threatening-noise-pollution"},{"title":"Lawsuit filed against a North Texas bit mining company","url":"https://www.nbcdfw.com/news/local/granbury-residents-file-lawsuit-bit-mining-company-noise-pollution/3667717/"},{"title":"Crypto firm Mara sued over 'data center noise and dead ...","url":"https://www.datacenterdynamics.com/en/news/crypto-firm-mara-sued-over-data-center-noise-and-dead-chickens/"},{"title":"Nine Texas residents sue MARA, expanding Granbury ...","url":"https://blockspace.media/insight/nine-texas-residents-sue-mara-expanding-granbury-bitcoin-mine-noise-fight/"},{"title":"Wolf Hollow II Generating Station - Constellation Energy","url":"https://www.constellationenergy.com/about/locations/wolf-hollow-ii.html"}],"runId":"srun_c0e944bd89584b5423829f259cbed4c1","classifiedAt":"2026-07-02T22:55:58.313Z"},"2265":{"community_note":"Residents and town leaders have pressed for transparency and environmental answers, while the state has issued an air permit for the Gannett/Google facility and outreach events have been held.","water_impact":"moderate","ai_evidence":"State and local announcements say the new Dorchester County facilities at Winding Woods (St. George) are part of Google’s expansion to support cloud services and artificial intelligence.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Water will come via the Lake Marion Regional Water Agency (surface water), and a regional wastewater plant expansion is slated to come online in 2026.","grid_note":"All 19 South Carolina electric cooperatives adopted new rates for data centers and other major electricity users statewide.","citations":[{"title":"St. George community seeks answers and transparency ...","url":"https://abcnews4.com/news/local/google-on-schedule-to-open-two-new-data-centers-in-dorchester-county-gogle-community-environemnt-safety-health-charleston-south-carolina"},{"title":"STATEMENT OF BASIS Page 1 of 4 BAQ Air Permitting ...","url":"https://des.sc.gov/sites/des/files/Documents/BAQ/DepartmentDecisions/GannettEnterprises/StatementofBasis.pdf"},{"title":"Data Center Fact Sheet | Dorchester County, SC website","url":"https://www.dorchestercountysc.gov/business/data-center-fact-sheet"},{"title":"Dorchester securing more water to accommodate rural ...","url":"https://www.postandcourier.com/business/dorchester-google-lake-marion-data-center-water/article_11185884-a76b-11ef-ade7-8f0dcc621dc2.html"},{"title":"Google grows South Carolina footprint with new Dorchester ...","url":"https://governor.sc.gov/news/2024-09/google-grows-south-carolina-footprint-new-dorchester-county-operations-expansion"}],"runId":"srun_c0e944bd89584b54dddab59457fdea9e","classifiedAt":"2026-07-02T22:55:58.313Z"},"2268":{"community_note":"No organized opposition specific to Resilience GSP surfaced; a Greer Facebook post shows local inquiry while Spartanburg County’s moratorium targeted other data center proposals and did not cite this site.","water_impact":"unknown","ai_evidence":"Overwatch states it develops and operates 'high-density AI-ready data centers,' and the Greer site is described as a ±100,000 sq ft Tier III hardened powered shell engineered for high‑density compute; it’s listed at 400 MW at 578 Robinson Rd but with no public AI tenant or GPU cluster named.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No facility‑specific gallons/day, source, or discharge details were found in public listings for Resilience GSP.","grid_note":"Prospective 400 MW load under Duke Energy, with Duke adding 2.7 GW of contracted data centers and advancing new SC gas generation for data‑center demand; listings note dual underground 12.5 MVA circuits.","citations":[{"title":"What is Resiliance GSP data center? | Greer, SC","url":"https://www.facebook.com/groups/greenvillecountyrepublicanstrulyuncensored/posts/1427764042694746/"},{"title":"Spartanburg County votes to pause data center ...","url":"https://www.foxcarolina.com/2026/06/22/spartanburg-county-votes-pause-data-center-applications-one-year/"},{"title":"Spartanburg County Council votes for data center moratorium","url":"https://www.postandcourier.com/spartanburg/news/spartanburg-county-council-data-center-moratorium-northmark/article_ac402d07-de2f-4e55-9d28-b4dbcdb570e0.html"},{"title":"Resilience GSP in Greenville | Overwatch Capital (400 MW)","url":"https://www.datacentermap.com/usa/south-carolina/greenville/resilience-gsp/"},{"title":"Greenville Data Centers - 3 Facilities from 2 Operators","url":"https://www.datacentermap.com/usa/south-carolina/greenville/"}],"runId":"srun_c0e944bd89584b549832d3c788be399f","classifiedAt":"2026-07-02T22:59:29.674Z"},"2271":{"community_note":"Active public pushback is documented: Del. Shawn Fluharty, local officials, and residents held packed Warwood/Wheeling town halls over transparency and reduced local control under HB 2014; no lawsuit, injunction, or moratorium was found, and the project remained under discussion.","water_impact":"low","ai_evidence":"The operator markets GPU data centers designed for AI workloads, but local reporting says the Warwood project’s primary purpose is manufacturing modular components for AI data centers, with no disclosed tenants or training clusters.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Officials said the plan is to draw river water for closed-loop cooling with no discharge to the river; no gallons/day figure or drought/aquifer concerns were reported.","grid_note":"Public reporting describes a potential build-out to 100MW at the former Centre Foundry site; no public interconnection, transmission-upgrade, or rate-case filings were identified.","citations":[{"title":"Residents Attend Packed Town Hall on Data Center","url":"https://www.theintelligencer.net/news/top-headlines/2026/06/residents-attend-packed-town-hall-on-data-center/"},{"title":"Talks of a potential data center in Warwood are raising ...","url":"https://www.facebook.com/WTOV9/posts/talks-of-a-potential-data-center-in-warwood-are-raising-questions-about-hb-2014-/1526984736123970/"},{"title":"Warwood data center plans shrink to 50MW; company says ...","url":"https://wtov9.com/news/local/officials-say-revised-warwood-data-center-would-draw-river-water-no-discharge-or-rate-hikes-warwood-data-center-silicon-foundation-closed-loop-river-water-no-discharge-utility-rates-shawn-fluharty"},{"title":"Silicon Foundation","url":"https://silicon.foundation/"},{"title":"After a Week of Data Center Discussion in the Ohio Valley ...","url":"https://www.timesleaderonline.com/news/local-news/2026/06/after-a-week-of-data-center-discussion-in-the-ohio-valley-heres-what-we-know/"}],"runId":"srun_c0e944bd89584b54528aee365d33c9f8","classifiedAt":"2026-07-02T22:55:58.313Z"},"2284":{"community_note":"Residents raised concerns at a three-hour January 2024 hearing about very tall buildings, but Mesa Planning & Zoning cleared EdgeCore’s campus plans and a revised site plan was filed in 2026 with city review ongoing.","water_impact":"low","ai_evidence":"EdgeCore positions its facilities for the world’s largest cloud and AI companies, while PH02 is a 108 MW build with an 8.0 MW tenant fit‑out permit; no named AI tenant or GPU cluster has been publicly disclosed.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Air‑cooled, closed‑loop design with WUE below 0.01 L/kWh; no PH02‑specific gallons/day disclosed; design choice tied to Arizona’s water scarcity context.","grid_note":"At 108 MW in SRP territory, the facility represents a very large new load; SRP calls data centers its fastest‑growing segment, is planning transmission expansion for load growth, and requires large customers to pay for infrastructure upgrades.","citations":[{"title":"Mesa may get 95-foot-high data centers","url":"https://www.themesatribune.com/news/mesa-may-get-95-foot-high-data-centers/article_50d0d362-bc92-11ee-9dc4-b727bb61bf91.html"},{"title":"EdgeCore's massive data center campus in Mesa clears ...","url":"https://www.aztechcouncil.org/edgecore-data-center-mesa-planning-zoning/"},{"title":"EdgeCore Returns With Revised Mesa Data Center Plan","url":"https://realestatedaily-news.com/edgecore-returns-with-revised-mesa-data-center-plan/"},{"title":"Phoenix Data Centers","url":"https://edgecore.com/locations/phoenix-data-center"},{"title":"Responsibility: Community, Safety & Sustainability","url":"https://edgecore.com/responsibility"}],"runId":"srun_c0e944bd89584b540ce304597dd2a0cd","classifiedAt":"2026-07-02T22:55:58.313Z"},"2285":{"community_note":"No organized opposition or litigation surfaced; earlier Eastmark neighbors voiced concerns about tall industrial/data-center buildings, and the 2026 resized project was approved with a noise analysis and generator-testing limited to 9 a.m.–9 p.m.","water_impact":"low","ai_evidence":"EdgeCore describes the Mesa campus as 'AI and cloud-application ready' with capacity to support 496 MW of critical IT load and says its high-density design is a near-term solution for hyperscale AI and cloud applications; PH02 is profiled as designed for high-density computing and AI workloads.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No PH02 gallons/day reported; EdgeCore cites WUE below 0.01 L/kWh in Phoenix and the Mesa campus is described as 'water-neutral,' with Arizona data centers typically supplied by CAP/SRP or groundwater.","grid_note":"Listed at 108 MW IT with a campus marketed to 496 MW, while SRP reports data centers at 441 MW (5.1% of 2025 peak) and regulators held large-load workshops.","citations":[{"title":"Re-sized data center in Mesa sails to approval | News","url":"https://www.themesatribune.com/news/re-sized-data-center-in-mesa-sails-to-approval/article_a0ece120-74c7-476b-a64e-ff4015ee7e27.html"},{"title":"Mesa may get 95-foot-high data centers","url":"https://www.themesatribune.com/news/mesa-may-get-95-foot-high-data-centers/article_50d0d362-bc92-11ee-9dc4-b727bb61bf91.html"},{"title":"Responsibility: Community, Safety & Sustainability","url":"https://edgecore.com/responsibility"},{"title":"Edgecore Phoenix Data Center Campus","url":"https://www.dlrgroup.com/work/edgecore-phoenix-data-center-campus/"},{"title":"Are data centers depleting the Southwest's resources?","url":"https://www.apmresearchlab.org/10x/data-centers-resource"}],"runId":"srun_c0e944bd89584b54c73b22e8d6d7b852","classifiedAt":"2026-07-02T22:55:58.313Z"},"2287":{"community_note":"No organized opposition reported; coverage highlights state/local support and job creation, with no litigation or moratoriums noted.","water_impact":"unknown","ai_evidence":"The state announced Neuro.io’s $100M BrainHUB in Houma to focus on large-scale AI applications with future AI data centers [1], and Neuro.io markets sovereign AI cloud/infrastructure for inference and training [2], but no Houma-specific GPU cluster or power-density details have been published.","grid_impact":"unknown","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No public details were found on cooling type, gallons/day, source, or discharge for the BrainHUB campus.","grid_note":"No MW load, interconnection, or transmission/substation upgrade details have been publicly disclosed for the site.","citations":[{"title":"Neuro.io Announces $100 Million Innovation Campus in ...","url":"https://www.opportunitylouisiana.gov/news/neuro-io-announces-100-million-innovation-campus-in-houma-positioning-louisianas-bayou-region-at-the-forefront-of-ai-development-and-application"},{"title":"AI, video game company to build $100 million campus in ...","url":"https://www.houmatoday.com/story/business/2025/07/07/ai-video-game-company-to-build-100-million-campus-in-houma/84470602007/"},{"title":"$100M 'innovation campus' to create over 2000 new jobs in ...","url":"https://wgno.com/news/louisiana/terrebonne-parish/100m-innovation-campus-to-create-over-2000-new-jobs-in-houma/"},{"title":"neuro.io — The Deeptech Hyperscaler for Trusted Intelligence","url":"https://neuro.io/"},{"title":"Utilities","url":"https://www.tpcg.org/utilities"}],"runId":"srun_c0e944bd89584b548193393b7cb54543","classifiedAt":"2026-07-02T22:55:58.313Z"},"2290":{"community_note":"Active opposition from residents/protesters over water, power rates, noise/dust, and transparency continues, while county boards have advanced approvals/MOUs and the project is moving forward.","water_impact":"moderate","ai_evidence":"Reported as a large Azure data center campus with no public confirmation of GPU superclusters or AI-training at Granger; Microsoft highlights AI-focused datacenters in its broader fleet but does not identify Granger as one.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Reports say Microsoft will cap on-site wells, avoid the local Granger aquifer, and use Mishawaka city water/sewer; no official gallons/day figure is published, while activist claims of 3–5 MGD remain unverified.","grid_note":"Planned at up to about 1,000 MW and served by I&M; regulators approved I&M’s large‑load tariff for ≥70 MW customers with stronger cost protections as hyperscaler demand drives peak growth.","citations":[{"title":"Microsoft holds data center open house; Residents voice ...","url":"https://wsbt.com/news/local/data-center-microsoft-holds-open-house-as-protests-continue-granger-project-approved-residents-major-concerns-opposition-century-center-meeting-details-jobs-energy-use-water"},{"title":"Microsoft data center concerns spark crowded Granger ...","url":"https://www.wvpe.org/wvpe-news/2026-02-19/microsoft-data-center-concerns-spark-crowded-granger-meeting"},{"title":"St. Joseph County boards, City of Mishawaka, approve ...","url":"https://abc57.com/news/st-joseph-county-boards-city-of-mishawaka-approve-memorandum-of-understanding-for-data-center-project"},{"title":"Construction of Microsoft data center could begin in late ...","url":"https://wsbt.com/news/local/construction-microsoft-data-center-could-begin-in-late-april-or-early-may-farm-granger-mishawaka-water"},{"title":"St. Joseph County, partners approve water and sewer ...","url":"https://wsbt.com/news/local/agreement-made-local-water-war-sewer-services-microsoft-data-center-public-health-safety-improvements-officials-partnership-agreement-maps-granger-water-utility-llc-utility-regulatory-st-joseph-county-south-bend-cleveland-road-capitol-avenue-indiana"}],"runId":"srun_c0e944bd89584b543beb574abec36af4","classifiedAt":"2026-07-02T22:59:29.674Z"},"2300":{"community_note":"Sierra Club’s Toiyabe Chapter appealed the Webb Data Center approval, the Reno City Council upheld the permit in January 2025, and the Council later extended a temporary moratorium on new data centers [1][2][3].","water_impact":"low","ai_evidence":"Colovore positions its Reno facilities for ultra‑high‑density, liquid‑cooled Edge AI deployments (5–600+ kW per rack), and local coverage names Colovore as Webb’s tenant/operator [5][6].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"RGJ reported Webb’s planned use at about 2 acre‑feet per year (≈1,786 gallons/day); no aquifer or discharge issues were reported [11].","grid_note":"A 20 MW load is listed for Colovore’s RN01 facility in Reno [12].","citations":[{"title":"Sierra Club appeals against 82000 sq ft ...","url":"https://www.datacenterdynamics.com/en/news/sierra-club-appeals-against-82000-sq-ft-data-center-in-reno-nevada/"},{"title":"Reno City Council will consider a Data Center moratorium on ...","url":"https://thebarberbrief.substack.com/p/reno-city-council-will-consider-a"},{"title":"Reno City Council extends data center moratorium ...","url":"https://nevadacurrent.com/2026/06/03/reno-city-council-extends-data-center-moratorium-promises-effort-is-not-political/"},{"title":"Water & Data Centers","url":"https://tmwa.com/water-and-data-centers/"},{"title":"Reno Market","url":"https://www.colovore.com/markets/reno"}],"runId":"srun_c0e944bd89584b54f6436d9d96c07ac9","classifiedAt":"2026-07-02T22:55:58.313Z"},"2302":{"community_note":"Organized local opposition (petitions, advocacy groups, residents) over public-land use, water/energy and environmental/utility-bill concerns; the Planning Commission voted against TS2 and recommended denial, forwarding it to City Council.","water_impact":"moderate","ai_evidence":"Described as a proposed 150–170 MW high‑density AI data center campus on ~88.5 acres; no tenants or GPU deployments are named, so the AI focus is confirmed but specific workloads are unspecified.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Cooling is described as hybrid closed-loop with ultra-low or zero liquid discharge; precise daily water use and source details were not verified in the cited excerpts.","grid_note":"Planned capacity is about 150–170 MW, and residents raised energy-strain concerns; the Planning Commission recommended denial and sent the project to City Council.","citations":[{"title":"Boulder City commission vote denies AI data center ...","url":"https://www.fox5vegas.com/2026/05/21/boulder-city-commission-vote-denies-data-center-application-after-public-pushback/"},{"title":"Boulder City planning commission votes against data ...","url":"https://www.8newsnow.com/news/local-news/boulder-city-planning-commission-votes-against-data-center-proposal/"},{"title":"Boulder City rejects controversial AI data center proposal - KTNV","url":"https://www.ktnv.com/news/boulder-city-planning-commission-rejects-ai-data-center-proposal-after-hours-of-public-opposition"},{"title":"Boulder City residents oppose proposed data center","url":"https://www.fox5vegas.com/2026/04/02/boulder-city-residents-oppose-proposed-data-center/"},{"title":"Boulder City Data Center Campaign Update – Nevada","url":"https://thirdact.org/nevada/2026/06/25/boulder-city-data-center-campaign-update/"}],"runId":"srun_c0e944bd89584b54b09b882cfc8751c6","classifiedAt":"2026-07-02T22:55:58.313Z"},"2308":{"community_note":"No organized opposition specific to CyrusOne CIN2 was found; Cincinnati extended interim data center restrictions through end-2026 while studying impacts, and statewide advocates are pursuing a large–data center ban initiative (policy process ongoing).","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No public gallons/day or WUE reported for CIN2; Cincinnati’s water supply is roughly 88% Ohio River surface water and the balance from the Great Miami Buried Valley Aquifer.","grid_note":"Duke Energy introduced new rate structures for data centers in 2024; no CIN2-specific interconnection upgrades or rate-case impacts were identified.","citations":[{"title":"Interim Development Control Overlay #89 \"Data Centers ...","url":"https://www.cincinnati-oh.gov/planning/projects/active/interim-development-control-overlay-89-data-centers-and-zoning-study/"},{"title":"Cincinnati City Council votes to extend data center ...","url":"https://www.wcpo.com/cincinnati-city-council-data-center-regulations-extended"},{"title":"Ohio data center ban advocates are trying to get ...","url":"https://ohiocapitaljournal.com/2026/04/30/ohio-data-center-ban-proposal-advocates-are-trying-to-get-413000-signatures-by-july-1/"},{"title":"Water Sources & Resource Protection - GCWW","url":"https://www.cincinnati-oh.gov/water/water-quality-and-treatment/water-sources-resource-protection/"},{"title":"CyrusOne CIN2 - Cincinnati Data Center | 229 West 7th St.","url":"https://www.datacentermap.com/usa/ohio/cincinnati/cyrusone-cincinnati/"}],"runId":"srun_c0e944bd89584b546af3a67f807c4ff7","classifiedAt":"2026-07-02T22:55:58.313Z"},"2309":{"community_note":"No organized opposition, lawsuits, or zoning disputes were identified for this site; recent Mason public notices show routine agendas with no data center controversy.","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No gallons/day reported for this facility; Mason’s water is supplied by Greater Cincinnati Water Works from the Ohio River and the Great Miami Buried Valley Aquifer, and prior Shaker Creek Aquifer constraints led the city to shift to GCWW.","grid_note":"Listings indicate roughly 1.7–2.2 MW capacity and service from Duke Energy Ohio; no evidence of transmission upgrades or rate actions specific to this site.","citations":[{"title":"Mason, Ohio | Public Notices","url":"https://www.imaginemason.org/city-government/public-notices/"},{"title":"CyrusOne Data Center in Mason, OH","url":"https://www.datacenters.com/cyrusone-cin3-cincinnati-mason"},{"title":"Our Most Essential Resource - Greater Cincinnati Water Works","url":"https://wqr.mygcww.org/"},{"title":"Mason, Ohio | a reliable source of water","url":"https://www.imaginemason.org/services/utilities/water-sewer/a-reliable-source-of-water/"},{"title":"CyrusOne CIN3 - Mason Data Center in Cincinnati (1.7 MW)","url":"https://www.datacentermap.com/usa/ohio/cincinnati/cyrusone-ohio-mason/"}],"runId":"srun_c0e944bd89584b54254bbc8ed4308ec0","classifiedAt":"2026-07-02T22:55:58.313Z"},"2315":{"community_note":"Township leaders publicly supported the project while regional news noted others are pushing back on data centers, and no organized, NEO-01-specific opposition or lawsuits were identified [1][2].","water_impact":"low","ai_evidence":"Aligned markets its Northeast Ohio facilities as AI-ready, and third-party listings say NEO-01 will support cloud and Artificial Intelligence (AI) workloads [1][2].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Local reporting cites ~1,269 GPD average usage for NEO-01 and company materials describe closed-loop, waterless cooling that saves millions of gallons annually [1][2].","grid_note":"Initial scale is about 96 MW with 138 kV Ohio Edison service via two on-site transformers, and Ohio has ordered data-center pricing rules for >25 MW customers to shoulder most upgrade costs [1][2][3].","citations":[{"title":"Is a data center a blessing or a curse? Depends ...","url":"https://www.news5cleveland.com/news/local-news/one-northeast-ohio-community-is-welcoming-a-massive-data-center-others-are-pushing-back"},{"title":"How Aligned Approaches Community Partnership","url":"https://aligneddc.com/video-resources/perkins-township/"},{"title":"Protecting Regional Water Resources","url":"https://aligneddc.com/case-studies/case-study-protecting-regional-water-resources/"},{"title":"Aligned Data Centers has minimum impact plan for water ...","url":"https://www.staytunedsandusky.com/p/aligned-data-centers-has-minimum"},{"title":"Scalable and Adaptive Data Centers in Northeast Ohio","url":"https://aligneddc.com/northeast-ohio-data-centers/"}],"runId":"srun_c0e944bd89584b54dfa3dad10c5d9cc5","classifiedAt":"2026-07-02T22:55:58.313Z"},"2326":{"community_note":"Environmental groups organized by WaterWatch are opposing a Mount Hood/Dog River land transfer tied to expanding The Dalles’ water supply for Google’s data centers, while the city settled a public-records suit and agreed to disclose water use.","water_impact":"high","ai_evidence":"An AI data center directory lists Google The Dalles as an operational AI site and estimates it uses Google TPU v6e and TPU v5p accelerators, consistent with AI training/inference infrastructure on campus [1].","grid_impact":"unknown","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"About 550 million gallons/year (~40% of the city total) in 2025, with the city pursuing a Mount Hood/Dog River land transfer to expand supply for the data centers.","grid_note":"Served by Northern Wasco County PUD; specific MW load or grid‑upgrade details for Building 2 not found in the cited reporting.","citations":[{"title":"The Dalles settles public records lawsuit over Google's ...","url":"https://www.oregonlive.com/silicon-forest/2022/12/the-dalles-settles-public-records-lawsuit-over-googles-data-centers-will-disclose-water-use.html"},{"title":"Coalition Urges Senators Wyden and Merkley to Oppose ...","url":"https://waterwatch.org/mt-hood-dog-river-letter-wyden-coalition-statement/"},{"title":"As Google's water demands grow, The Dalles aims to pull ...","url":"https://www.opb.org/article/2026/01/15/as-googles-water-demands-grow-the-dalles-aims-to-pull-more-from-mount-hood-forest/"},{"title":"Data center water use can be a 'black box.' Google aims to ...","url":"https://www.latitudemedia.com/news/data-center-water-use-black-box-google-trying-to-change/"},{"title":"Google The Dalles | AI Data Centers","url":"https://epoch.ai/data/ai-data-centers/directory/google-the-dalles"}],"runId":"srun_c0e944bd89584b5499fbf16090e71b4a","classifiedAt":"2026-07-02T22:59:29.674Z"},"2331":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"","grid_note":"Listed at 18 MW with no Anderson-site-specific upgrades or curtailments reported; regionally, Duke Energy added 2.7 GW of new data center agreements in Q1 2026 and regulators approved new natural-gas generation in Anderson County to meet growing demand.","citations":[{"title":"AiOnX Anderson Data Center | 1649 Pearman Dairy Rd ...","url":"https://www.datacentermap.com/usa/south-carolina/anderson/gda-anderson/"},{"title":"Genesis Digital Assets","url":"https://genesisdigitalassets.com/"},{"title":"Bitcoin miner GDA opens three data centers in South ...","url":"https://www.datacenterdynamics.com/en/news/bitcoin-miner-gda-opens-three-data-centers-in-south-carolina/"},{"title":"Advancing responsible water use at our data centers","url":"https://datacenters.google/water/"},{"title":"GDC Anderson, SC Data Center","url":"https://baxtel.com/data-center/gdc-anderson-sc"}],"runId":"srun_c0e944bd89584b5454540fb34c60d1cb","classifiedAt":"2026-07-02T22:55:58.313Z"},"2332":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"Uses chilled‑water cooling; no public gallons/day, source, or discharge data disclosed.","grid_note":"60 MW facility on CenterPoint’s system; no site-specific upgrade or rate action disclosed; CenterPoint expects 8 GW of data-center load energized by 2029.","citations":[{"title":"Residents File First-of-its-Kind Class Action Against Data ...","url":"https://www.thevinelandvoice.com/news/residents-file-first-of-its-kind-class-action-against-data-center-for-noise/article_efeabfa4-81f3-407e-86c8-e71b1aeab40a.html"},{"title":"Switch Data Centers Data Center in Houston Texas","url":"https://www.datacenters.com/switch-houston-2"},{"title":"Houston 2 Data Center","url":"https://www.datafoundry.com/data-centers/houston-2/"},{"title":"Houston Data Centers","url":"https://www.datafoundry.com/data-centers/houston-data-centers/"},{"title":"Data Center Noise Pollution, Water Contamination Lawsuits","url":"https://www.classaction.org/data-center-noise-water-pollution-lawsuit"}],"runId":"srun_c0e944bd89584b540eac25c280bc2ccc","classifiedAt":"2026-07-02T22:55:58.313Z"},"2333":{"community_note":"No site-specific opposition identified; city leaders (led by Councilmember Ric Galvan) initiated a policy discussion on data-center impacts and GEAA-linked reporting raised broader aquifer concerns; status: citywide standards/public-input in progress.","water_impact":"low","ai_evidence":"Marketed as a 135-acre 'AI-Ready' hyperscale campus; listings indicate a 1.5M sq ft build targeting ~200 MW, but no disclosed GPU superclusters or AI tenant deployments.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day reported; Stream markets 'Zero water use cooling systems (WUE=0),' and SAWS recycled water has been available for data center cooling in San Antonio.","grid_note":"Local utility planning highlights data-center-driven demand; CPS may encourage large users to bring their own generation as ERCOT studies data center rules.","citations":[{"title":"District 6 Councilmember Calls for Policy on Data Center ...","url":"https://www.sa.gov/Directory/News-Releases/District-6-Councilmember-Calls-for-Policy-Discussion-on-Data-Center-Growth-and-Resource-Impact"},{"title":"Greater Edwards Aquifer Alliance report sounds the alarm ...","url":"https://www.tpr.org/news/2026-04-29/greater-edwards-aquifer-authority-report-sounds-the-alarm-over-proposed-data-centers-in-texas"},{"title":"Data Centers San Antonio | Texas Colocation","url":"https://www.streamdatacenters.com/locations/san-antonio-iii/"},{"title":"San Antonio has over 20 data centers and more on the way","url":"https://sanantonioreport.org/risk-opportunity-san-antonio-water-electricity-data-centers/"},{"title":"Data Centers in Texas: A Review and Call for Innovation ...","url":"https://aquiferalliance.org/data-centers-in-texas-a-review-and-call-for-innovation-and-regulation/"}],"runId":"srun_c0e944bd89584b54c9044015819efcd1","classifiedAt":"2026-07-02T22:55:58.313Z"},"2336":{"community_note":"No AUS2-specific organized opposition was found; Save Our Springs’ campaign targets a separate Maberry/CyrusOne rezoning in San Marcos, not 7301 Metropolis Drive [7].","water_impact":"unknown","ai_evidence":"No site-specific evidence of GPU training clusters or named AI tenants; references describe AI capability/readiness rather than deployments [3][4].","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Operator states “No water consumption for cooling” with only minimal humidification water, but a regional tracker estimates 900K–1.3M gallons/day for the MetCenter campus; no AUS2-specific metered figure or water proceeding was found [1][2].","grid_note":"Reported at ~9 MW total (Inflect) with 4.5 MW delivered (DataCenterHawk); no documented Austin Energy/ERCOT upgrades or rate impacts linked to AUS2 were found [5][6].","citations":[{"title":"Data Center Action","url":"https://www.sosalliance.org/data-center-action.html"},{"title":"Austin, TX: AUS2-AUS3 - Data centers","url":"https://www.cyrusone.com/data-centers/north-america/austin-texas"},{"title":"CyrusOne Austin Campus (MetCenter)","url":"https://centexdatacenters.org/tracker/cyrusone-austin"},{"title":"Power AI Workloads with Scalable High-Density GPU ...","url":"https://datacanopy.com/industry-focus/artificial-intelligence/"},{"title":"AI Data Centers","url":"https://www.cyrusone.com/solutions/ai-data-centers"}],"runId":"srun_c0e944bd89584b54835c5ea4ef31e5ce","classifiedAt":"2026-07-02T22:59:29.674Z"},"2337":{"community_note":"No organized opposition or AUS3-specific complaints were identified; CyrusOne’s documented noise disputes involve its Aurora, IL campus, not Austin.","water_impact":"low","ai_evidence":"Listings describe AUS3 as a 172,000 sq ft, 120,000 sq ft colocation facility with 24 MW total power; no AUS3-specific GPU cluster, AI-tenant, or AI workload announcement was found.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Operator states “No water consumption for cooling” and “Minimal water usage for humidification and maintenance”; no gallons/day or water-source details were published.","grid_note":"AUS3’s 24 MW is far smaller than the multi‑GW data‑center requests now appearing in Austin; officials warn of 'tremendous strain' and possible billing impacts from those much larger projects, with no AUS3-specific upgrades or rate cases identified.","citations":[{"title":"Aurora, IL: CHI1-CHI3 - Noise Communication","url":"https://www.cyrusone.com/data-centers/north-america/aurora-il-back-up-generator-schedule"},{"title":"Austin, TX: AUS2-AUS3 - Data centers","url":"https://www.cyrusone.com/data-centers/north-america/austin-texas"},{"title":"CyrusOne Data Center in Austin, TX","url":"https://www.datacenters.com/cyrusone-aus3-austin"},{"title":"CyrusOne: Austin III Data Center","url":"https://baxtel.com/data-center/cyrusone-austin-iii"},{"title":"Large Loads Symposium - UT Energy Institute","url":"https://energy.utexas.edu/large-loads-symposium"}],"runId":"srun_c0e944bd89584b543db474f7a6938bef","classifiedAt":"2026-07-02T22:55:58.313Z"},"2346":{"community_note":"No organized opposition or litigation identified for this site; Fairfax County adopted countywide data center zoning/noise rules in 2024, which are general rather than site-specific.","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific water-use or source data found; Fairfax documents flag potential evaporative-cooling stress regionally, and new Virginia rules will increase reporting transparency next year.","grid_note":"0.83 MW load, below Virginia’s 25 MW GS-5 large-load threshold; no site-specific grid upgrades or curtailment evidence found.","citations":[{"title":"Board of Supervisors Approves New Data Center Zoning ...","url":"https://www.fairfaxcounty.gov/news/board-supervisors-approve-new-data-center-zoning-ordinance-amendment"},{"title":"County of Fairfax, Virginia","url":"https://www.fairfaxcounty.gov/environment-energy-coordination/sites/environment-energy-coordination/files/Assets/Memorandum%2007.12.2024%20EQAC%20Data%20Center%20w%20attachment_A-1a.pdf"},{"title":"New regulations beef up data centers' required water use ...","url":"https://www.vpm.org/generalassembly/2026-06-25/virginia-data-centers-water-usage-srinivasan-yob-wortzel"},{"title":"365 Data Centers in Herndon, Virginia","url":"https://www.datacenters.com/365-va1-herndon"},{"title":"365 Data Centers Unveils AI-Enabled Platform in ...","url":"https://365datacenters.com/365-data-centers-unveils-ai-enabled-platform-in-partnership-with-robot-network/"}],"runId":"srun_c0e944bd89584b54f80c930684fca548","classifiedAt":"2026-07-02T22:55:58.314Z"},"2353":{"community_note":"No CTP-04–specific organized opposition found; county residents and some officials have raised noise/transparency concerns and lawsuits have paused another Chesterfield project—current status is scattered local concern, not active opposition to CTP-04.","water_impact":"unknown","ai_evidence":"The campus is designed to provide AI‑optimized infrastructure with 300 MW secured power, Chirisa targets hyperscale/HPC/AI customers, and a campus building (CTP‑01) is leased to CoreWeave, an AI cloud provider, though no tenant is disclosed for CTP‑04.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No CTP‑04 gallons/day were found; campus context shows liquid cooling in a related building (CTP‑01), and most Virginia data centers discharge to municipal wastewater systems.","grid_note":"Planned 100 MW facility within a campus with 300 MW secured power; Dominion says >50 MW interconnections likely require transmission extensions/new substation, and state review is tightening around Dominion’s load forecasting tied to data center growth.","citations":[{"title":"Questions remain around data centers in Chesterfield County","url":"https://www.vpm.org/news/2025-03-06/chesterfield-county-data-centers-dominion-energy-watkins-center-upper-magnolia"},{"title":"New Chesterfield data center on pause as county faces ...","url":"https://www.wric.com/news/local-news/chesterfield-county/new-chesterfield-data-center-on-pause-as-county-faces-lawsuits/"},{"title":"Chirisa Richmond Technology Park CTP-01","url":"https://www.datacentermap.com/usa/virginia/richmond/chirisa-richmond-ctp-01/"},{"title":"What's in the water? What we know and don't ...","url":"https://virginiamercury.com/2026/06/01/whats-in-the-water-what-we-know-and-dont-know-about-data-center-water-discharge-in-virginia/"},{"title":"Chirisa Technology Parks and PowerHouse ...","url":"https://www.powerhousedata.com/news/chirisa-technology-parks-and-powerhouse-data-centers-to-launch-next-generation-hyperscale-campus-in-chesterfield-county"}],"runId":"srun_c0e944bd89584b54b264a949d32dc2fd","classifiedAt":"2026-07-02T22:55:58.647Z"},"2358":{"community_note":"Local officials and residents moved to block or slow the Gotspace plan in 2021 (including talk of vetoing the WED supply deal), while the town’s “facts regarding the data center” memo set compliance terms; the facility remains planned. [1][2][3]","water_impact":"unknown","ai_evidence":"A planned 32 MW Gotspace data center is listed at 965 Northrop Rd, but the reporting and company materials reviewed do not cite AI/GPU deployments or AI tenants. [3][4][5]","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day or cooling-water source published for Building 3; separate reporting discusses a zoning change allowing data centers in a watershed zone north of town center, which relates to a different proposal. [7][8]","grid_note":"Planned ~32 MW load with a 2021 host/energy agreement approved in Wallingford and on-site generation noted for ~1%/year peak shaving plus monthly testing. [3][1][6]","citations":[{"title":"Connecticut towns look to derail proposed ...","url":"https://www.datacenterdynamics.com/en/news/connecticut-towns-look-to-derail-proposed-data-center-projects/"},{"title":"facts regarding the data center","url":"https://www.wallingfordct.gov/minutes-and-agendas/DownloadFile.aspx?FileID=7971"},{"title":"Gotspace Wallingford 1 - Building 3 Data Center (32 MW)","url":"https://www.datacentermap.com/usa/connecticut/wallingford/gotspace-wallingford-1-building-3/"},{"title":"Gotspace Wallingford 1 Campus - Connecticut","url":"https://www.datacentermap.com/usa/connecticut/wallingford/gotspace-wallingford-1-campus/"},{"title":"Gotspace Data Partners - 32 Data Centers - See Locations","url":"https://www.datacentermap.com/c/gotspace-data-partners/"}],"runId":"srun_c0e944bd89584b546cbcc7f8789e0e22","classifiedAt":"2026-07-02T22:55:58.647Z"},"2366":{"community_note":"Local residents organized opposition to the Carter Grove rezoning for Switch’s campus, but the Cartersville City Council approved it unanimously on Nov. 2, 2023.","water_impact":"unknown","ai_evidence":"No public disclosure identifies GPU superclusters or named AI tenants at KEEP 2.0; Switch describes the Atlanta Keep campus as up to 150 MW with multi-gigawatt expansion and markets AI‑ready cooling up to 2 MW per rack.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day disclosed; Cartersville sources municipal water from Lake Allatoona, and Switch says its proprietary water processing enables reuse and eliminates chemicals in cooling.","grid_note":"Up to 150 MW campus capacity is marketed, and Georgia utilities report 11 GW of large-load projects under contract with nearly all new demand coming from data centers, implying substantial grid upgrades and new generation needs.","citations":[{"title":"As data centers grow larger, so does pushback across ...","url":"https://www.ajc.com/news/2025/06/as-data-centers-grow-larger-so-does-pushback-across-georgia/"},{"title":"Cartersville approves rezoning for Switch to build data ...","url":"https://www.daily-tribune.com/news/cartersville-approves-rezoning-for-switch-to-build-data-center-campus/article_f8ff705d-9ac7-5180-b4fb-e1daeffcfba9.html"},{"title":"Carter Grove/ Switch Zoning. 10/10/2023 05:30 PM","url":"https://meetings.municode.com/adaHtmlDocument/index?cc=CVIILLEGA&me=b58e831ed92648fa9166bfd997eba875&ip=true"},{"title":"Green Datacenter | Data Center Services - Switch","url":"https://www.switch.com/sustainability/"},{"title":"Water Department","url":"https://www.cartersvillega.gov/247/Water-Department"}],"runId":"srun_c0e944bd89584b542714e22be05a01d3","classifiedAt":"2026-07-02T22:55:58.647Z"},"2367":{"community_note":"No Project Indo–specific organized opposition or lawsuits were found; local pushback has targeted separate proposals near Adairsville/Barnsley Gardens and in Stilesboro, with those proceedings occurring separately.","water_impact":"unknown","ai_evidence":"Reports describe a planned 200 MW, ~1.1M sq ft campus at 218 Industrial Park Road but do not cite GPU superclusters or AI tenant deployments; DataBank’s DGX‑Ready certification is companywide, not Cartersville‑specific.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No Indo-specific water-use figures disclosed; Cartersville’s municipal water is drawn from Lake Allatoona.","grid_note":"Planned at 200 MW and served by the municipal Cartersville Electric System (supplied via MEAG Power); no Indo‑specific rate cases or grid‑upgrade filings were located.","citations":[{"title":"Backlash over proposed data center near Adairsville","url":"https://www.fox5atlanta.com/news/backlash-over-proposed-data-center-near-adairsville"},{"title":"Bartow Planning Commission recommends approval for ...","url":"https://www.datacenterdynamics.com/en/news/bartow-planning-commission-recommends-approval-for-data-center-in-stilesboro-georgia/"},{"title":"Water Department","url":"https://www.cartersvillega.gov/247/Water-Department"},{"title":"DataBank files for 200MW data center campus near Atlanta","url":"https://www.irecruit.co/insights/databank-files-200mw-data-center-campus-atlanta"},{"title":"DataBank Cartersville Campus","url":"https://www.datacentermap.com/usa/georgia/atlanta/databank-cartersville-campus/"}],"runId":"srun_c0e944bd89584b54e16cf85a9e4cbfe4","classifiedAt":"2026-07-02T22:55:58.647Z"},"2368":{"community_note":"South Fulton residents and Black-led advocacy groups have organized against the broader local data-center boom—prompting city town halls and a data-center ordinance over water bills, infrastructure, noise/light, and transparency concerns—while no Westlake-specific lawsuit was identified.","water_impact":"low","ai_evidence":"Public listings state GA21/GA22 is under construction and not yet commissioned or leased, with no leaseable power, and no site-specific AI tenant or GPU cluster disclosures were found.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Air-cooled, closed-loop chillers requiring “near zero water recharge,” with no facility-specific aquifer, drought, or discharge issues reported.","grid_note":"Georgia Power’s expansion plans have jumped from a 400 MW seven‑year need estimate in 2022 to proposals near 10 GW, with ~80% to serve data centers and litigation contesting the buildout.","citations":[{"title":"City of South Fulton Hosts Town Hall to Educate Public on ...","url":"http://www.cityofsouthfultonga.gov/m/newsflash/Home/Detail/777"},{"title":"South Fulton residents ask questions, share concerns ...","url":"https://www.11alive.com/article/news/local/south-fulton-residents-ask-questions-share-concerns-about-rise-in-data-centers-at-town-hall-meeting/85-ae51f1b2-010d-42a7-bc8c-9fa304b51dea"},{"title":"Black Community Fights Georgia's Data Center Boom","url":"https://atlanta.capitalbnews.org/black-community-in-south-fulton-fight-georgias-data-center-boom/"},{"title":"Cooling","url":"https://vantage-dc.com/features/cooling/"},{"title":"Black Community Fights Georgia's Data Center Boom","url":"https://atlanta.capitalbnews.org/black-community-in-south-fulton-fight-georgias-data-center-boom/"}],"runId":"srun_c0e944bd89584b549bc5168d316f4139","classifiedAt":"2026-07-02T22:55:58.647Z"},"2369":{"community_note":"Lawrence residents and advocates urged a citywide moratorium over water, electricity, and noise concerns, and commissioners showed interest in studying a moratorium; no site-specific opposition to Euphemystic’s micro-facility is reported.","water_impact":"low","ai_evidence":"DataCenterMap lists the Room 123A KU Innovation Park site as an AI micro-datacenter designed to support pilot AI workloads and proof-of-concept, including secure AI inference, and the operator’s AI Lab page focuses on short proof sprints before scale; specs list only 0.01 MW fully built-out power, not indicative of a training supercluster.","grid_impact":"low","ai_class":"ai-inference","community_pushback":"active-opposition","water_note":"No gallons/day are reported; with a 250 sq ft footprint and 0.01 MW fully built-out power, no facility-specific aquifer/drought or discharge concerns were identified.","grid_note":"Listed capacity is 0.01 MW with no reported utility upgrades; Kansas’ large-load plan applies to facilities over 75 MW, and Evergy says smaller data centers haven’t impacted customer bills.","citations":[{"title":"Lawrence community members urge city commission to ...","url":"https://lawrencekstimes.com/2026/06/09/community-pushes-data-ctr-moratorium/"},{"title":"Lawrence City Commission interested in a moratorium on ...","url":"https://www2.ljworld.com/news/city-government/2026/jun/09/lawrence-city-commission-interested-in-a-moratorium-on-data-center-development/"},{"title":"Euphemystic Ventures AI micro-datacenter - Specs","url":"https://www.datacentermap.com/usa/kansas/lawrence/euphemystic-ventures-ai-micro-datacenter/specs/"},{"title":"Micro data center launches in Lawrence","url":"https://www.kctv5.com/2026/04/10/micro-data-center-launches-lawrence/"},{"title":"Euphemystic Ventures AI micro-datacenter","url":"https://www.datacentermap.com/usa/kansas/lawrence/euphemystic-ventures-ai-micro-datacenter/"}],"runId":"srun_c0e944bd89584b54561d2d3c9ec04896","classifiedAt":"2026-07-02T22:55:58.647Z"},"2371":{"community_note":"Environmental and consumer groups (e.g., Union of Concerned Scientists and Sierra/Earthjustice) are opposing Entergy’s Meta-related gas buildout and ratepayer risks, and the Louisiana PSC voted to fast‑track a seven‑plant package toward a final vote.","water_impact":"high","ai_evidence":"Described as an artificial‑intelligence‑optimized campus, with Meta stating Hyperion will supply its new AI lab with up to 5 GW of compute—consistent with GPU training superclusters.","grid_impact":"high","ai_class":"ai-training","community_pushback":"active-opposition","water_note":"Registered for up to ~23 million gallons/day (~8.4 billion gallons/year) for cooling; the builder says it’s designed to use less water than the site does today and aims to restore more than it consumes.","grid_note":"Entergy announced new generation and robust transmission plans to serve the campus and then sought fast‑tracked approval for seven additional gas plants in 2026.","citations":[{"title":"What's Next After Louisiana's Gas Plant Approval for Meta ...","url":"https://blog.ucs.org/paul-arbaje/whats-next-after-louisianas-gas-plant-approval-for-meta-data-center/"},{"title":"Louisiana approves new gas power plants for Meta data ...","url":"https://www.facebook.com/WBRZNews2/posts/the-state-public-service-commission-voted-4-1-to-fast-track-entergy-and-metas-ap/1430829085753968/"},{"title":"In Rural Louisiana, Meta's New Data Center Promises ...","url":"https://www.sierraclub.org/sierra/rural-louisiana-meta-s-new-data-center-promises-growth-what-cost"},{"title":"Meta details water needs for Louisiana AI data center","url":"https://www.nola.com/news/environment/meta-louisiana-data-center-water-ai/article_d27dea17-d571-453c-b5a5-0deb571ea272.html"},{"title":"We're monitoring the air and water around Meta's data ...","url":"https://www.wwno.org/public-health/2026-04-13/were-monitoring-the-air-and-water-around-metas-data-center-in-louisiana-heres-why"}],"runId":"srun_c0e944bd89584b5410754b6fa9189fa7","classifiedAt":"2026-07-02T22:59:29.948Z"},"2372":{"community_note":"West Feliciana Parish approved the rezoning, and the Alliance for Affordable Energy is actively campaigning against data-center-related ratepayer/grid-risk cost shifts that include Hut 8’s River Bend; approvals remain in place and advocacy continues.","water_impact":"moderate","ai_evidence":"Hut 8 signed a 15‑year, 245 MW AI data center lease at River Bend, with Entergy/LED citing 330 MW utility capacity supporting 245 MW IT load for Fluidstack, and WSJ reporting the build is for Anthropic.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Developer will fund a new water well and roughly eight miles of water main, and the facility uses a closed-loop recirculating cooling system to minimize water consumption; no gallons/day disclosed.","grid_note":"Entergy Louisiana will provide 330 MW of initial utility capacity to support 245 MW of critical IT load, with operations targeted for Q2 2027.","citations":[{"title":"Zoning Change Enables $2.5B Data Center Build in Louisiana","url":"https://www.govtech.com/artificial-intelligence/zoning-change-enables-2-5b-data-center-build-in-louisiana"},{"title":"Louisiana Deserves Better Than Blank Checks for Data ...","url":"https://www.all4energy.org/take-action/la-deserves-better-than-blank-checks-for-data-centers/"},{"title":"Hut 8 River Bend Campus - Baton Rouge","url":"https://www.datacentermap.com/usa/louisiana/baton-rouge/hut-8-river-bend-campus/"},{"title":"Hut 8 Commits $16 Million to Expand Water Infrastructure ...","url":"https://www.prnewswire.com/news-releases/hut-8-commits-16-million-to-expand-water-infrastructure-in-west-feliciana-parish-302775525.html"},{"title":"Hut 8 promises $16M water upgrades near Baton Rouge","url":"https://technical.ly/entrepreneurship/hut-8-water-upgrades-west-feliciana/"}],"runId":"srun_c0e944bd89584b54cacd619e76ab79b0","classifiedAt":"2026-07-02T22:59:29.948Z"},"2379":{"community_note":"Kings Mountain approved a six‑month moratorium on new data‑center projects in Feb. 2026 amid community concerns over resources and utility costs, and officials were weighing an extension in late June 2026.","water_impact":"unknown","ai_evidence":"T5 reports it built a liquid‑cooled facility in Charlotte, NC, for a quant trading firm using dense GPU clusters, and T5 @ Charlotte II is marketed 'From AI to liquid cooling.'","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No facility‑specific gallons/day or source/discharge details were found; the campus is marketed with liquid‑cooling capability.","grid_note":"Listings cite an on‑site 180 MW Duke Energy substation with dual 100 kV circuits, and Duke’s data‑center pipeline is 15.4 GW with ~14 GW of new capacity planned by 2031.","citations":[{"title":"Kings Mountain leaders pause potential data center ...","url":"https://www.qcnews.com/news/u-s/north-carolina/kings-mountain/kings-mountain-leaders-pause-potential-data-center-projects-amid-community-concerns/"},{"title":"Kings Mountain weighs extending data center moratorium","url":"https://www.shelbystar.com/story/news/local/2026/06/27/kings-mountain-nc-weighs-data-center-moratorium-extension/90699513007/"},{"title":"Robert C. Wagman, Mayor 2. Invocation - Cloudfront.net","url":"https://www.cityofkm.com/AgendaCenter/ViewFile/Agenda/_02242026-934"},{"title":"Data centre of the month: T5 Data Centers, T5 @ Charlotte II","url":"https://capacityglobal.com/news/data-centre-of-the-month-t5-data-centers-charlotte/"},{"title":"AI Infrastructure Challenges: Scaling with Liquid Cooling","url":"https://t5datacenters.com/resources/ai-infrastructure-challenges-scaling-with-liquid-cooling/"}],"runId":"srun_c0e944bd89584b5485257fc12f7f28d5","classifiedAt":"2026-07-02T22:55:58.647Z"},"2385":{"community_note":"Residents organized a petition and Ironton City Council continued a city moratorium on AI data centers in response to the nearby Strata Expanse project; no lawsuits were reported.","water_impact":"low","ai_evidence":"Strata and RAVEL, with Supermicro, announced their first AI Center of Excellence, and listings describe liquid- and air-cooled AI clusters at the Ironton site.","grid_impact":"low","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No gallons/day disclosed; the company touts closed-loop liquid immersion cooling and a local briefing described geothermal cooling with no process water beyond ordinary domestic use.","grid_note":"Public reporting says the facility will use on-site generation (natural gas, geothermal, hydrogen, storage, solar) and limit grid dependence; no utility-upgrade or rate-case evidence was found.","citations":[{"title":"Data center project in Lawrence County, Ohio, sparks calls for moratorium in neighboring city - DCD","url":"http://datacenterdynamics.com/en/news/data-center-project-in-lawrence-county-ohio-sparks-calls-for-moratorium-in-neighboring-city"},{"title":"CITY COUNCIL MEETING MINUTES 2-12-26","url":"https://irontonohio.org/city-council-meeting-minutes-2-12-26/"},{"title":"Petition · Stop the AI data centers in Lawrence County, Ohio","url":"https://www.change.org/p/stop-the-ai-data-centers-in-lawrence-county-ohio"},{"title":"Strata Expanse | Gray Space as a Service | Strata Expanse","url":"https://strataexpanse.com/"},{"title":"Lawrence County hears pitch for Strata Expanse data center ...","url":"https://citizenportal.ai/articles/7445783/Ohio/Lawrence-County/Lawrence-County-hears-pitch-for-Strata-Expanse-data-center-emphasizing-local-contractors-and-grid-backup"}],"runId":"srun_c0e944bd89584b543f7d9a7033ac54ba","classifiedAt":"2026-07-02T22:55:58.647Z"},"2386":{"community_note":"Residents and officials in Niles/Weathersfield mounted organized opposition over water, noise, and quality‑of‑life impacts; Niles halted annexation action and adopted a 180‑day moratorium on data‑center permits while debates continue [3][4][5][6][7].","water_impact":"moderate","ai_evidence":"Bitdeer lists Niles as a 300 MW grid‑interconnected development targeting Q4 2028 [1], previously saying it would be suitable for Bitcoin mining with infrastructure designed for easy conversion into an AI data center [2], while Bitdeer AI Cloud advertises NVIDIA GPU capacity broadly [14][15] without a Niles‑specific GPU deployment.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"A Bitdeer representative said the site expects to use less than 500,000 gallons/day [10], with cooling handled using water [11]; no permit details or source‑stress findings are cited.","grid_note":"Planned 300 MW load with FirstEnergy’s Niles Transmission Project extending a 345 kV line to a new substation and adding a new 138 kV line [1][8].","citations":[{"title":"Niles OKs data center moratorium | News, Sports, Jobs","url":"https://www.tribtoday.com/news/local-news/2026/05/niles-oks-data-center-moratorium/"},{"title":"STEVEN MIENTKIEWICZ","url":"https://thecityofniles.com/wp-content/uploads/2026/04/Bitdeer_annexation.pdf"},{"title":"Trumbull County halts data center plans with moratorium","url":"https://www.mahoningmatters.com/news/local/article315592156.html"},{"title":"AI company makes case for data center in Niles, but some ...","url":"https://www.wkbn.com/news/local-news/niles-news/ai-company-makes-case-for-data-center-in-niles-but-some-arent-so-sure/"},{"title":"Niles residents, councilmen raise concerns over proposed ...","url":"https://www.wfmj.com/news/local-news/niles/niles-residents-councilmen-raise-concerns-over-proposed-data-center/article_6e8c333c-ad37-48cb-aa22-a3119c6d3afb.html"}],"runId":"srun_c0e944bd89584b54f9d5b0a34b74b1fb","classifiedAt":"2026-07-02T22:55:58.647Z"},"2390":{"community_note":"Residents and State Rep. Jamie Walsh raised concerns over water protection, traffic, and property buyout choices; after an earlier delay, the Salem Twp. Planning Commission recommended conditional approval, and no litigation or formal opposition group was reported.","water_impact":"low","ai_evidence":"The project is described by Pennsylvania’s Office of Transformation & Opportunity as a 1,700+ acre campus designed to meet demand for data center and AI infrastructure, and other sources call it a 'data center and AI infrastructure campus' and an 'A.I. Data Center Project' in permitting notices.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"QTS touts water-free cooling that “eliminated the need for water,” while DEP is accepting comments on stormwater permits for the SNA North LLC/QTS A.I. Data Center Project in Salem Township.","grid_note":"Served by PPL, with a PPL–Blackstone joint venture to build natural gas generation in Pennsylvania in support of data center development and indications of new PPL transmission lines and a substation.","citations":[{"title":"QTS submits new site, road plans for data center campus in ...","url":"https://www.citizensvoice.com/2026/03/27/qts-submits-new-site-road-plans-for-data-center-campus-in-salem-twp/"},{"title":"Salem Twp. planners delay data center vote, hear ...","url":"https://www.citizensvoice.com/2026/04/24/salem-twp-planners-delay-data-center-vote-hear-residents-concerns/"},{"title":"Salem Twp. Planning Commission recommends ...","url":"https://www.timesleader.com/news/1743798/salem-twp-planning-commission-recommends-conditional-approval-of-data-center-master-plan"},{"title":"New Salem Twp. data center developer touts experience ...","url":"https://www.citizensvoice.com/2026/03/18/new-salem-twp-data-center-developer-touts-experience-environmental-edge/"},{"title":"DEP Accepting Comments On Stormwater Permit For SNA ...","url":"http://paenvironmentdaily.blogspot.com/2026/04/dep-accepting-comments-on-stormwater.html"}],"runId":"srun_c0e944bd89584b54b42dced223fb939c","classifiedAt":"2026-07-02T22:55:58.647Z"},"2391":{"community_note":"Upper Macungie’s zoning hearing board rejected Air Products’ data center appeal amid planning concerns over missing information; a written decision starts a 30‑day appeal window.","water_impact":"unknown","ai_evidence":"Reports cover a proposed 2.6M‑sq‑ft data center campus at Air Products’ former HQ site with no identified AI tenant, GPU/NVIDIA deployment, or liquid-cooling/rack‑density details.","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Planning officials said the 2.6M‑sq‑ft proposal was missing vital information, and no public gallons‑per‑day cooling water figures were identified.","grid_note":"No published MW load or transmission/substation upgrade details were identified; planners reported the submission lacked vital information.","citations":[{"title":"Upper Macungie zoners reject appeal for massive data ...","url":"https://www.wfmz.com/news/area/lehighvalley/lehigh-county/western-lehigh-county/upper-macungie-zoners-reject-appeal-for-massive-data-center-campus-on-former-air-products-site/article_c531b72e-e928-4562-bcbf-3dbc7e9ce3e8.html"},{"title":"LVPC: 2.6 million-square-foot Upper Macungie data center ...","url":"https://www.lehighvalleynews.com/parkland/lvpc-2-6-million-square-foot-upper-macungie-data-center-proposal-is-missing-vital-information"},{"title":"Wonderful news! UPDATE: At tonight's Upper Macungie ...","url":"https://www.facebook.com/WhatsgoingonintheLehighValley/videos/wonderful-newsupdate-at-tonights-upper-macungie-township-zoning-hearing-board-me/4469441486626250/"},{"title":"Like 'spaghetti on the wall': LVPC finds Air Products' data ...","url":"https://www.wfmz.com/news/area/lehighvalley/lehigh-county/western-lehigh-county/like-spaghetti-on-the-wall-lvpc-finds-air-products-data-center-plans-lacking/article_6ef5e836-0002-445b-9e52-67f272b8c393.html"},{"title":"2.6 million sq ft data center campus proposed in ...","url":"https://www.datacenterdynamics.com/en/news/26-million-sq-ft-data-center-campus-proposed-in-pennsylvania/"}],"runId":"srun_c0e944bd89584b546e85e505aa3f92a1","classifiedAt":"2026-07-02T22:55:58.647Z"},"2398":{"community_note":"","water_impact":"unknown","ai_evidence":"Core Scientific announced an 8-year contract to provide CoreWeave up to 16 MW of infrastructure for AI/HPC and specialized GPU cloud compute at its Austin facility; the site is marketed to \"power your AI and high-density workloads\" in Austin.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No facility-specific water-use figures or permits were found; Austin is under Conservation Stage water-use restrictions, and recent analyses project data centers could reach 3–9% of Texas’ total water use by 2040.","grid_note":"Lease load is up to 16 MW for CoreWeave at this site; the grid operator for 3301 Hibbetts Rd is Austin Energy.","citations":[{"title":"Core Scientific to Provide CoreWeave up to 16 MW of Data ...","url":"https://investors.corescientific.com/news-events/press-releases/detail/9/core-scientific-to-provide-coreweave-up-to-16-mw-of-data-center-infrastructure-to-support-ai-and-hpc-workloads-in-long-term-hosting-contract-with-potential-revenue-of-more-than-100-million"},{"title":"Core Scientific to Provide Approximately 200 MW of ...","url":"https://investors.corescientific.com/news-events/press-releases/detail/74/core-scientific-to-provide-approximately-200-mw-of-infrastructure-to-host-coreweaves-high-performance-computing-services-capturing-significant-ai-compute-opportunity"},{"title":"Document","url":"https://www.sec.gov/Archives/edgar/data/1839341/000162828024009396/finalcorzcoreweaverelease0.htm"},{"title":"CoreWeave Austin (Core Scientific)","url":"https://centexdatacenters.org/tracker/coreweave-austin"},{"title":"Core Scientific Announces New Contract with CoreWeave for ...","url":"https://investors.corescientific.com/news-events/press-releases/detail/78/core-scientific-announces-new-contract-with-coreweave-for-delivery-of-approximately-70-mw-of-additional-infrastructure-to-host-high-performance-computing-operations"}],"runId":"srun_c0e944bd89584b5428de03b44aced2fe","classifiedAt":"2026-07-02T22:55:58.647Z"},"2399":{"community_note":"No organized opposition specific to Garden City/Glasscock County was found; by contrast, Granbury/Hood County residents are suing over alleged health‑threatening noise, and that case is ongoing [1], [2].","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"none-found","water_note":"","grid_note":"200 MW load adjacent to and interconnected with a wind farm; no facility‑specific ratepayer or transmission‑upgrade actions identified.","citations":[{"title":"Granbury Residents Sue Local Bitcoin Mine Over Health ...","url":"https://earthjustice.org/press/2024/granbury-residents-sue-local-bitcoin-mine-over-health-threatening-noise-pollution"},{"title":"Noise from crypto mine pushes Texas neighbors to start a ...","url":"https://www.texastribune.org/2025/10/09/texas-hood-county-crypto-noise-incorporate-city/"},{"title":"Fort Worth could ban cryptocurrency mining. Data centers ...","url":"https://fortworthreport.org/2026/06/03/fort-worth-could-ban-cryptocurrency-mining-data-centers-might-be-here-to-stay/"},{"title":"Granbury Residents Sue Local Bitcoin Mine Over Health ...","url":"https://earthjustice.org/press/2024/granbury-residents-sue-local-bitcoin-mine-over-health-threatening-noise-pollution"},{"title":"Marathon Digital: Garden City TX Data Center","url":"https://baxtel.com/data-center/marathon-digital-garden-city-tx"}],"runId":"srun_c0e944bd89584b54e33619e78262fa3f","classifiedAt":"2026-07-02T22:55:58.647Z"},"2401":{"community_note":"No organized opposition or lawsuits were identified; the project is being marketed as a 64-acre, 100MW data center campus and reported by industry press without noted community disputes.","water_impact":"unknown","ai_evidence":"Marketed as a 64-acre, up to 100MW build-to-suit campus, but no named AI tenant or GPU cluster announcement; an industry listing says the facility has not yet been commissioned or leased.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No facility-specific cooling water use, source, or discharge details were reported in available materials.","grid_note":"Onsite substation expandable to 100 MW in Oncor territory; regionally, 59 GW of data center load is seeking to connect to Oncor, with no project-specific upgrade or rate case identified.","citations":[{"title":"Atlantic Station, DFW Data Center","url":"https://www.skyboxdatacenters.com/locations/atlantic-station"},{"title":"Prologis Atlantic Station - Availability","url":"https://www.prologis.com/park/prologis-atlantic-station/availability"},{"title":"Skybox offering 100MW build-to-suit campus in Plano, Texas","url":"https://www.datacenterdynamics.com/en/news/skybox-offering-100mw-build-to-suit-campus-in-plano-texas/"},{"title":"Atlantic Station, DFW Data Center","url":"https://www.skyboxdatacenters.com/locations/atlantic-station"},{"title":"Atlantic Station Brochure","url":"https://www.skyboxdatacenters.com/images/Atlantic-Station-Brochure-2.pdf"}],"runId":"srun_c0e944bd89584b549d8e341697bae918","classifiedAt":"2026-07-02T22:55:58.647Z"},"2403":{"community_note":"Local groups and residents appealed the county’s approval over issues including noise and environmental impacts; the hearing examiner approved the conditional-use permit and the appeal was filed, with no later litigation located.","water_impact":"moderate","ai_evidence":"A data-center listing states Merkle Standard plans to deploy an initial 72 MW GPU cluster at its liquid-cooled Washington facility, while current operations include water-cooled ASICs with Hashbranch for Bitcoin.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No gallons/day figure is disclosed; the Ecology facility record lists permits at 422767 Highway 20 and the site operates water-cooled (“hydro”) ASICs.","grid_note":"100 MW scale with a direct power contract from the local PUD for the former mill site, and the prior paper mill used up to 85 MW.","citations":[{"title":"Crypto mine in Usk gets conditional use permit from Pend ...","url":"https://www.spokesman.com/stories/2022/jun/01/crypto-mine-in-usk-gets-conditional-use-permit-fro/"},{"title":"This tiny Eastern WA town could become a bitcoin mining ...","url":"https://www.cascadepbs.org/news/2022/11/tiny-eastern-wa-town-could-become-bitcoin-mining-hub/"},{"title":"Paris - Facility Summary","url":"https://apps.ecology.wa.gov/paris/FacilitySummary.aspx?FacilityId=92628392"},{"title":"HASHBRANCH AND MERKLE STANDARD DEPLOY ...","url":"https://www.thedefiant.io/news/blockchains/hashbranch-and-merkle-standard-deploy-massive-1-3-exahash-bitcoin-mining-operation"},{"title":"Merkle Standard: Washington - Crypto Mining Data Center","url":"https://baxtel.com/data-center/merkle-standard-washington"}],"runId":"srun_c0e944bd89584b5457e65239714f36ad","classifiedAt":"2026-07-02T22:55:58.647Z"},"2407":{"community_note":"Local opposition targets Amazon’s proposed Walla Walla County data center, with no PocketiNet-specific complaints or actions reported.","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"City water comes primarily from the Mill Creek Watershed plus deep basalt wells; no PocketiNet-specific gallons/day, permits, or discharge records were found.","grid_note":"No PocketiNet-specific MW load or utility-upgrade filings were found; the area is served by Pacific Power, with no documented rate or infrastructure impacts tied to this site.","citations":[{"title":"Amazon's Data Center Project Raises Concerns in Walla ...","url":"https://whitmanwire.com/news/2026/02/27/amazons-data-center-project-raises-concerns-in-walla-walla/"},{"title":"Anti-data center group forms to oppose Amazon ...","url":"https://www.union-bulletin.com/news/local/governments/anti-data-center-group-forms-to-oppose-amazon-development-in-walla-walla-county/article_5fec6335-261e-4a0f-ae61-a4133d286ff9.html"},{"title":"Water","url":"https://www.wallawallawa.gov/government/public-works/water"},{"title":"PocketiNet Walla Walla Data Center | 45 Terminal Loop Rd","url":"https://www.datacentermap.com/usa/washington/walla-walla/pocketinet-walla-walla/"},{"title":"Our Story","url":"https://pocketinet.com/our-story/"}],"runId":"srun_c0e944bd89584b54123e6888380c95b2","classifiedAt":"2026-07-02T22:55:58.647Z"},"2409":{"community_note":"Active organized opposition: residents and groups rallied and spoke against the project at hearings and via a direct-legislation petition, and the City Council unanimously let the Viridian LOI expire on June 22, 2026 as the site shifted into planning [1][2][3][4].","water_impact":"unknown","ai_evidence":"Reports describe a hyperscale campus requiring up to 800 MW but identify no tenant or GPU deployments, and the city allowed the developer’s LOI to expire [1][2].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No project-specific gallons/day or cooling design have been reported; the utility director says the city has ample water and sewer capacity, while separate coverage notes concerns about water and noise [1][2].","grid_note":"Discussed at up to 800 MW with reliability questions flagged regionally, while the utility states existing customers will not pay for growth of large new users and upgrades must precede new loads [1][2][3].","citations":[{"title":"Janesville moves forward with data center plans for ...","url":"https://www.wpr.org/news/janesville-data-center-abandoned-gm-site"},{"title":"Proposed data center petition going to referendum in ...","url":"https://www.wmtv15news.com/2026/02/10/janesville-city-council-unanimously-passes-legislation-petition-connection-former-gmjatco-site/"},{"title":"Janesville will allow Letter of Intent with Viridian to expire","url":"https://www.gazettextra.com/news/janesville-will-allow-letter-of-intent-with-viridian-to-expire/article_2defc8db-69ef-4ea9-9385-6786a09432d4.html"},{"title":"City of Janesville: City 'not proceeding with a purchase ...","url":"http://www.gazettextra.com/news/city-of-janesville-city-not-proceeding-with-a-purchase-agreement-for-viridian-data-center/article_18e152f2-caf9-4ced-aa0e-3665eb78446d.html"},{"title":"Janesville utility director: City has ample water, sewer ...","url":"https://www.gazettextra.com/news/local/janesville-utility-director-city-has-ample-water-sewer-capacity-for-a-data-center/article_67f2e141-3272-4749-b676-d56d7e81ad77.html"}],"runId":"srun_c0e944bd89584b54cc96875b0476b723","classifiedAt":"2026-07-02T22:59:29.948Z"},"2412":{"community_note":"No organized opposition specific to CGI Phoenix was found; recent Arizona pushback focused on the separate La Osa project in Pinal County, which was scaled back after community opposition.","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific gallons/day, source, or discharge data were found; CGI identifies Phoenix as its largest company‑owned enterprise data center and notes achieving 100% renewable electricity across its data centers.","grid_note":"No public MW or interconnection data were found; the site is described as benefiting from Arizona’s stable power grid.","citations":[{"title":"Largest proposed data center in Arizona to be scaled back ...","url":"https://www.kjzz.org/fronteras-desk/2026-05-28/largest-proposed-data-center-in-arizona-to-be-scaled-back-80-after-opposition"},{"title":"CGI: Phoenix Data Center","url":"https://www.datacenters.com/cgi-phoenix"},{"title":"Achieving 100% renewable electricity in all our data ...","url":"https://www.cgi.com/en/article/esg/achieving-100-renewable-electricity-all-our-datacenters-by-2023"},{"title":"Achieving 100% renewable electricity in all our data ...","url":"https://www.cgi.com/en/article/esg/achieving-100-renewable-electricity-all-our-datacenters-by-2023"},{"title":"CGI: Phoenix Data Center","url":"https://www.datacenters.com/cgi-phoenix"}],"runId":"srun_c0e944bd89584b5486ee9d2ac7edc754","classifiedAt":"2026-07-02T22:55:58.647Z"},"2413":{"community_note":"Residents organized referendum petitions challenging the rezoning and litigation ensued; a Pima County judge upheld Marana’s rejection of the petitions so no ballot vote will occur, and the governor vetoed a related bill that would have weakened referendums.","water_impact":"low","ai_evidence":"Rezoning approvals describe a 600-acre hyperscale data center campus, but no public evidence of GPU superclusters, AI tenants, or AI workload commitments was found.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Town policy prohibits using drinking water for data center cooling and requires developers to secure their own cooling water source; no discharge issues were cited.","grid_note":"Luckett North would be powered by Trico, and Trico says it plans to direct assign all costs (including power supply), limiting general ratepayer exposure while significant new interconnection is likely.","citations":[{"title":"No ballot vote for Marana data center after court backs ...","url":"https://news.azpm.org/p/azpmnews/2026/5/4/229588-no-ballot-vote-for-marana-data-center-after-court-backs-town-clerks-decision"},{"title":"Arizona governor vetoes bill that would weaken ...","url":"https://azluminaria.org/2026/07/01/arizona-governor-vetoes-bill-that-would-weaken-referendums-and-empower-data-centers/"},{"title":"Marana residents submit petitions to put data center project ...","url":"https://news.azpm.org/s/102689-marana-residents-submit-petitions-to-put-data-center-project-to-a-vote/"},{"title":"Marana's data center ordinance","url":"https://www.kgun9.com/news/community-inspired-journalism/marana/maranas-data-center-ordinance"},{"title":"Town Clarifies Data Center Review Process and ...","url":"https://www.maranaaz.gov/Newsroom-Entries/2026/Town-Clarifies-Data-Center-Review-Process-and-Development-StandardsNew-page"}],"runId":"srun_c0e944bd89584b544146bbfd7fc640e9","classifiedAt":"2026-07-02T22:59:30.281Z"},"2414":{"community_note":"Some residents raised concerns during Weld County hearings on data-center rules (e.g., noise and siting), but commissioners approved an ordinance allowing data centers in industrial zones; no Cielo-specific lawsuit or moratorium campaign surfaced.","water_impact":"unknown","ai_evidence":"Public listings show a planned 750 MW campus in Hudson, CO, but no named AI tenants or GPU/NVIDIA deployments have been reported for this site.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No site-specific water consumption, cooling method, or source has been reported; only that the planned campus totals 750 MW.","grid_note":"Planned capacity is 750 MW; no public record of specific utility upgrades, new generation/transmission, curtailment plans, or rate cases for this project.","citations":[{"title":"Weld County Government","url":"https://www.facebook.com/WeldCountyGovernment/posts/after-approximately-three-hours-of-public-comment-regarding-the-addition-of-data/1301600525483713/"},{"title":"Weld County Commissioners approve addition of data ...","url":"https://www.weld.gov/Newsroom/2026-News/Weld-County-Commissioners-approve-addition-of-data-centers-to-code"},{"title":"Weld County approves ordinance allowing data centers in ...","url":"https://www.9news.com/article/tech/personal-tech/weld-county-ordinance-data-centers/73-5eae7015-0268-452d-b563-31e56b9ea39a"},{"title":"Weld commissioners approve industrial zoning for data ...","url":"https://www.greeleytribune.com/2026/04/07/weld-data-center-vote/"},{"title":"Data Centers in Colorado – Local Governments Take the ...","url":"https://www.spencerfane.com/insight/data-centers-in-colorado-local-governments-take-the-lead-in-regulating-siting/"}],"runId":"srun_c0e944bd89584b54fb9ed64cc5c70be6","classifiedAt":"2026-07-02T22:55:58.930Z"},"2415":{"community_note":"Elk Grove Village hosted a May 20, 2026 Data Center Town Hall, but no lawsuit, moratorium, or organized campaign specifically targeting STACK CHI01B was found.","water_impact":"low","ai_evidence":"No public evidence confirms CHI01B hosts GPU superclusters or named AI tenants; materials describe a 24 MW facility with standard air-cooled infrastructure, while STACK’s NVIDIA DGX‑Ready participation is company-wide rather than CHI01B‑specific.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"CHI01B lists N+1 air-cooled chillers with integral free-cooling and no gallons/day or source/discharge details were found.","grid_note":"Within a 40 MW campus, CHI01B’s 24 MW is a material load, and regional reports say data centers are contributing to higher energy costs in Chicago’s ComEd territory; no CHI01B-specific curtailment or dedicated transmission upgrades were identified.","citations":[{"title":"Data Center Town Hall Meeting | Agendas & Public Meetings","url":"https://www.elkgrove.org/Home/Components/Calendar/Event/9496/61"},{"title":"Mayor Touts Data Center Benefits At Well-Attended Elk ...","url":"https://www.journal-topics.com/articles/mayor-touts-data-center-benefits-at-well-attended-elk-grove-town-hall/"},{"title":"CHI01BScale For The Future","url":"https://www.stackinfra.com/wp-content/uploads/2020/11/CHI01B_032923.pdf"},{"title":"STACK CHI01B Data Center","url":"https://baxtel.com/data-center/stack-chi01b"},{"title":"CHI01BScale For The Future","url":"https://www.stackinfra.com/wp-content/uploads/2020/11/CHI01B_032923.pdf"}],"runId":"srun_c0e944bd89584b54b5f6ec1f66a07d57","classifiedAt":"2026-07-02T22:55:58.930Z"},"2416":{"community_note":"Residents have questioned further data center expansion over issues like power use and impacts, while village officials defend the industry; no CHI02-specific lawsuits or zoning fights surfaced.","water_impact":"low","ai_evidence":"STACK describes CHI02 as a 36MW facility designed/optimized for AI, ML, and cloud workloads, but no named GPU tenant or training supercluster has been publicly announced.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No gallons/day reported for CHI02; Elk Grove’s supply is Lake Michigan water, and air-cooled designs generally minimize on-site water use compared to evaporative cooling.","grid_note":"36MW on ComEd; no CHI02-specific upgrade disclosed, while ComEd’s TSA scrutiny and a 260MW substation for a nearby campus indicate regional grid build-out pressure.","citations":[{"title":"CHI02","url":"https://www.stackinfra.com/locations/americas/chicago/chi02/"},{"title":"Stream DC gains approval for data center zoning request ...","url":"https://www.datacenterdynamics.com/en/news/stream-dc-gains-approval-for-data-center-zoning-request-in-elk-grove-illinois/"},{"title":"Constant noise from T5 data center in Elk Grove Village","url":"https://www.facebook.com/groups/950649317430139/posts/1011759011319169/"},{"title":"STACK Infrastructure CHI02 Data Center, Illinois","url":"https://poweredbywho.com/projects/stack-infrastructure-chi02-9ba66cee"},{"title":"Elk Grove Village residents question future of data center ...","url":"https://www.fox32chicago.com/news/elk-grove-village-residents-question-future-data-center-expansion"}],"runId":"srun_c0e944bd89584b54704f0aeef9966ce0","classifiedAt":"2026-07-02T22:55:58.930Z"},"2425":{"community_note":"No organized opposition or litigation identified; a full building permit has been issued and construction can proceed.","water_impact":"unknown","ai_evidence":"Press and company materials say the facility is designed for AI model training and inferencing with AI-optimized GPU clusters and rack densities up to 200 kW.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"Hybrid air and liquid cooling is specified; no gallons/day, water-source, or discharge details are publicly reported.","grid_note":"20 MW supply power with direct dual-line service from a nearby ComEd substation and seven backup generators; designed IT load is 11.67 MW.","citations":[{"title":"Full building permit issued for AI data center project","url":"https://chicago.urbanize.city/post/full-building-permit-issued-ai-data-center-project"},{"title":"Chicago Issues Full Building Permit for AI-Ready Data ...","url":"https://www.optionpremier.com/blogs/2026/2/17/chicago-issues-full-building-permit-for-ai-ready-data-center-at-2538-s-wabash"},{"title":"Our Facility | HydraVault Data Center","url":"https://www.hydravault.com/facility"},{"title":"New firm announces plans for 20MW liquid-cooled data ...","url":"https://www.datacenterdynamics.com/en/news/new-firm-announces-plans-for-20mw-liquid-cooled-data-center-in-chicago/"},{"title":"HydraVault Secures Construction Permit for Downtown ...","url":"https://www.hydravault.com/press/hydravault-secures-construction-permit"}],"runId":"srun_c0e944bd89584b542aa720b1f65c5b25","classifiedAt":"2026-07-02T22:55:58.930Z"},"2428":{"community_note":"Council Bluffs’ mayor proposed a 12‑month pause on new data centers to review infrastructure, but the City Council rejected the moratorium in June 2026; no OCB1‑specific opposition or litigation surfaced.","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"OCB1 lists CRAH-based air cooling and has no reported cooling-water draw or discharge issues, with no drought/aquifer controversies identified.","grid_note":"18 MW IT load and powered via MidAmerican’s green‑tariff arrangement; no OCB1‑specific grid‑upgrade or rate‑case disputes identified.","citations":[{"title":"Council Bluffs mayor's push to pause new data center ...","url":"https://www.3newsnow.com/council-bluffs/council-bluffs-mayors-push-to-pause-new-data-center-construction-rejected-by-city-council"},{"title":"Council Bluffs, IA: OCB1","url":"https://www.cyrusone.com/data-centers/north-america/council-bluffs-ia"},{"title":"Harnessing the Wind and Sun: Council Bluffs Data Center ...","url":"https://www.cyrusone.com/resources/blogs/harnessing-the-wind-and-sun-council-bluffs-data-center-now-powered-by-100-renewable-electricity"},{"title":"Council Bluffs, IA: OCB1","url":"https://www.cyrusone.com/data-centers/north-america/council-bluffs-ia"},{"title":"update-data-center-hopes-salix-ia","url":"https://www.facebook.com/ktiv4/posts/midamerican-energy-provides-update-on-data-center-hopes-in-salix-iaread-more-/1631424148806183/"}],"runId":"srun_c0e944bd89584b54e4ff3f002881812a","classifiedAt":"2026-07-02T22:55:58.930Z"},"2454":{"community_note":"Akron officials are moving to require conditional-use approval for future data centers, reflecting growing local scrutiny, with no Viking-specific lawsuits or organized opposition identified to date.","water_impact":"unknown","ai_evidence":"Signal Akron describes the site as a “crypto-mining and AI data center,” and Viking’s own materials say it is “Powering the future of AI and crypto.”","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No facility-specific water-use or cooling figures were found; Akron proposes a new review process for future data centers, and Ohio EPA is considering a general wastewater permit for data centers statewide.","grid_note":"Atlantic Energy was selected to serve Viking’s 150 MW, 380,000 sq ft Akron facility; FirstEnergy expects peak load to grow 45% by 2035 on data center development, and Ohio regulators have said data centers—not Ohioans—must pay grid-upgrade costs.","citations":[{"title":"City of Akron Proposes New Review Process for Data ...","url":"https://www.akronohio.gov/news_detail_T17_R468.php"},{"title":"Future data centers in Akron may face new review process","url":"https://signalakron.org/future-data-centers-in-akron-may-face-new-review-process/"},{"title":"Akron officials work toward legislation to guide data centers ...","url":"https://www.beaconjournal.com/story/news/local/2026/06/25/akron-officials-work-toward-legislation-to-guide-data-centers-future/90612866007/"},{"title":"Ohio EPA Draft Permit Would Allow Data Centers to ...","url":"https://www.thedriller.com/articles/93859-ohio-epa-draft-permit-would-allow-data-centers-to-discharge-wastewater-into-rivers"},{"title":"Ohio EPA to review data center wastewater permit for river ...","url":"https://www.ohio.edu/sustainability/reporting/ohio-epa-review-data-center-wastewater-permit-river-disposal"}],"runId":"srun_c0e944bd89584b549f5755d3d5b443eb","classifiedAt":"2026-07-02T22:55:58.930Z"},"2464":{"community_note":"A Change.org petition opposes the Dauphin Highlands data center plan and local TV coverage notes community concerns (e.g., water use), while county/press updates confirm the sale closed and the course will shut in October 2026 [1][2][3].","water_impact":"unknown","ai_evidence":"Coverage confirms a planned data center redevelopment at Dauphin Highlands, and the developer markets “powered land for hyperscalers” and a vision for “powering the AI era,” but no Harrisburg-specific AI tenant, GPU deployment, or liquid-cooling spec has been reported [1][2][3].","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No site-specific water usage or permits disclosed; regional guidance notes data centers may require withdrawal/consumptive-use approvals, and local coverage lists water consumption among community concerns [1][2].","grid_note":"No site-specific MW/load disclosure; the utility’s 'advanced' Pennsylvania data center pipeline totals 28.3 GW, not tied to this site [1].","citations":[{"title":"Stop Data Center Development at Dauphin Highlands Golf ...","url":"https://www.change.org/p/stop-data-center-development-at-dauphin-highlands-golf-course"},{"title":"Inside a Dauphin County data center: What happens ...","url":"https://www.fox43.com/article/news/local/dauphin-county/inside-dauphin-county-data-center-servers-powering-digital-world/521-f84f0841-d8da-4459-bc9f-e275d8637b54"},{"title":"Dauphin Highlands Golf Course sold to Harrisburg I LLC","url":"https://www.wgal.com/article/dauphin-highlands-golf-course-close-permanently-october/71605474"},{"title":"Data Centers & Water Use","url":"https://www.srbc.gov/regulatory/data-centers/"},{"title":"Inside a Dauphin County data center: What happens ...","url":"https://www.fox43.com/article/news/local/dauphin-county/inside-dauphin-county-data-center-servers-powering-digital-world/521-f84f0841-d8da-4459-bc9f-e275d8637b54"}],"runId":"srun_c0e944bd89584b5459af73a2343e326c","classifiedAt":"2026-07-02T22:59:30.281Z"},"2469":{"community_note":"No IAD-03-specific opposition or permit fight was found; regionally, Loudoun County ended by-right approvals in March 2025 and limits generator testing hours, reflecting heightened scrutiny of data centers.","water_impact":"low","ai_evidence":"Aligned promotes Northern Virginia as “Fully Adaptive, AI-Ready” and is an NVIDIA DGX-Ready Data Center Partner, but no public announcements verify GPU superclusters or AI tenants at IAD-03 specifically.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No IAD-03 gallons/day published; Aligned says its closed-loop, waterless cooling achieves near‑zero outside water and saves tens of millions of gallons annually, and NOVA’s data center water demand is a growing but not crisis‑level concern.","grid_note":"IAD-03 is a 72 MW Sterling campus; Dominion Energy Virginia and PJM report multi‑GW data‑center billing demand concentrated in the region and advocacy summaries cite about $28.3B in transmission capital needs.","citations":[{"title":"Loudoun County, Virginia, Eliminates By-Right Data Center ...","url":"https://www.hklaw.com/en/insights/publications/2025/04/loudoun-county-virginia-eliminates-by-right-data-center-development"},{"title":"Zoning Ordinance - 4.06.02 Data Centers","url":"https://online.encodeplus.com/regs/loudouncounty-va-zo/doc-viewer.aspx?secid=859"},{"title":"Data Center Standards & Locations","url":"https://www.loudoun.gov/5990/Data-Center-Standards-Locations"},{"title":"State Data Center Legislation Faces Local Zoning Battles","url":"https://www.multistate.us/insider/2026/1/15/state-data-center-legislation-faces-local-zoning-battles"},{"title":"Advanced Data Center Cooling","url":"https://aligneddc.com/cooling-innovation/"}],"runId":"srun_c0e944bd89584b5414078e750cf412f1","classifiedAt":"2026-07-02T22:55:58.930Z"},"2470":{"community_note":"Sterling residents organized with local groups to oppose Vantage VA2’s gas-turbine/diesel-generator operations over noise/air impacts and lack of public hearings; opposition is active with outreach events but no lawsuit cited [1].","water_impact":"low","ai_evidence":"No public disclosures tie VA21/VA2 to a specific AI GPU cluster or tenant; VA2 is a 96 MW wholesale campus with up to 300W/SF, and Vantage targets hyperscalers/cloud customers rather than advertising an AI supercluster at this site [10][11].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Uses a closed-loop, air-cooled chiller approach that minimizes water use; no VA21/VA2 gallons-per-day or source/aquifer issues were found in public materials [9].","grid_note":"Part of a 96 MW, three-building campus in Sterling, with state reporting pointing to added gas plants and transmission to meet rising data center demand [5][6].","citations":[{"title":"Climate group informs residents on data center impact","url":"https://www.dcnewsnow.com/news/local-news/virginia/loudoun-county/after-virginia-approved-a-gas-powered-data-center-without-public-input-residents-turned-to-a-local-environmental-group-for-answers/"},{"title":"Ashburn I, Virginia Data Center Campus","url":"https://vantage-dc.com/data-center-locations/north-america/ashburn-i-virginia/"},{"title":"The surging demand for data is guzzling Virginia's water | Grist","url":"https://grist.org/technology/surging-demand-data-guzzling-water-ai/"},{"title":"ASHBURN II DATA CENTER CAMPUS OVERVIEW","url":"https://vantage-dc.com/wp-content/uploads/2023/06/VDC_DataSheet_VA2_EN.pdf"},{"title":"Vantage Data Centers - Flexible and Scalable Data Centers","url":"https://vantage-dc.com/"}],"runId":"srun_c0e944bd89584b54ce5fa4c463c4afee","classifiedAt":"2026-07-02T22:55:58.930Z"},"2475":{"community_note":"Local resident groups opposed the project over impacts and transparency, and later coverage described the NE Edge–Waterford data center as defeated/resolved.","water_impact":"low","ai_evidence":"Described as a proposed hyperscale campus, with no announced GPU clusters or AI-specific tenants.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Developers highlighted minimal water usage, with no gallons-per-day figure reported.","grid_note":"Planned ~300 MW behind-the-meter supply from Millstone, with the CT Siting Council denying the initial petition without prejudice.","citations":[{"title":"Tale of a defeated data center in CT","url":"https://ctmirror.org/2026/04/15/tale-of-a-defeated-ct-data-center/"},{"title":"Millstone nuclear plant would power proposed CT data ...","url":"https://ctmirror.org/2024/01/19/millstone-power-plant-ct-data-center-nuclear/"},{"title":"Tale of a defeated data center in CT","url":"https://ctmirror.org/2026/04/15/tale-of-a-defeated-ct-data-center/"},{"title":"Waterford, CT rejects proposed data center","url":"https://www.facebook.com/groups/saynotodatacenters/posts/1504011211530379/"},{"title":"NE Edge Proposes 1.5M Square Foot Data Center at ...","url":"https://ctexaminer.com/2023/02/16/ne-edge-proposes-1-5m-square-foot-data-center-at-millstone/"}],"runId":"srun_c0e944bd89584b5488b7c29712dce54f","classifiedAt":"2026-07-02T22:55:58.930Z"},"2477":{"community_note":"Residents have raised concerns about continued data-center expansion in Elk Grove Village (power, water, utility bills), but there is no organized opposition or litigation specific to STACK CHI01A and village leadership remains supportive.","water_impact":"unknown","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"Elk Grove Village buys Lake Michigan water via JAWA; no CHI01A gallon/day figures are published, while Illinois reporting notes some data centers can use up to 5 million gallons per day.","grid_note":"Existing facility is ~13MW/221,000 sq ft adjacent to expansion, and ComEd is constructing a 260MW substation in Elk Grove Village to serve area data-center load; no CHI01A-specific interconnection or curtailment noted.","citations":[{"title":"Elk Grove Village residents question future of data center ...","url":"https://www.fox32chicago.com/news/elk-grove-village-residents-question-future-data-center-expansion"},{"title":"'Data center capital' of the Midwest expands as Pritzker ...","url":"https://www.nbcchicago.com/news/local/data-center-capital-of-the-midwest-expands-as-pritzker-calls-for-regulations/3952720/"},{"title":"Water / Sewer","url":"https://www.elkgrove.org/government/finance-department/water-sewer"},{"title":"Illinois data centers are using millions of gallons ...","url":"https://www.cbsnews.com/chicago/news/illinois-data-centers-residential-water-better-alternatives/"},{"title":"Cyxtera rejects lease at Stack-owned data center in Elk ...","url":"https://www.datacenterdynamics.com/en/news/cyxtera-rejects-lease-at-stack-owned-data-center-in-the-elk-grove-illinois/"}],"runId":"srun_c0e944bd89584b54430fd9668087a2a8","classifiedAt":"2026-07-02T22:59:30.281Z"},"2480":{"community_note":"No facility-specific organized opposition was found for Edged ATL01-02; statewide debates focus on power/costs, while DeKalb County’s moratorium fight was elsewhere and not tied to this site.","water_impact":"low","ai_evidence":"Campus announcement: a 42 MW third building is custom-built for AI training and inference; reports say all three Atlanta data centers are leased, and the campus markets AI-driven, high-density capabilities.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"Campus reports WUE 0.00 and zero water for cooling using a ThermalWorks waterless system; no gallons/day, aquifer, or discharge data were published.","grid_note":"ATL01-02 has access to 100 MW at 1760 Thomas St NW within a roughly 168 MW campus footprint.","citations":[{"title":"Outrage over surge of data centers in Georgia inspires ...","url":"https://georgiarecorder.com/2026/01/20/outrage-over-surge-of-data-centers-in-georgia-inspires-wave-of-bipartisan-bills/"},{"title":"Atlanta","url":"https://edged.us/atlanta"},{"title":"Edged US 'Tops Out' Ultra-Efficient 42 MW Data Center ...","url":"https://www.edged.es/news/edged-us-tops-out-ultra---efficient-42-mw-data-center-optimized-for-ai-inference-at-scale-at-its-atlanta-campus"},{"title":"Edged tops out 42MW Atlanta data centre built for AI","url":"https://datacenter.news/story/edged-tops-out-42mw-atlanta-data-centre-built-for-ai"},{"title":"PowerSecure powers the Edged platform's new ...","url":"https://powersecure.com/blog/powersecure-powers-edged-energys-new-sustainable-data-center-in-atlanta"}],"runId":"srun_c0e944bd89584b54fd67f729db50b49d","classifiedAt":"2026-07-02T22:55:58.930Z"},"2481":{"community_note":"Palmetto officials enacted a zoning rewrite to exclude data centers after community concern; the ban passed unanimously on Feb. 3, 2026, and no T5-specific lawsuit was found.","water_impact":"unknown","ai_evidence":"The T5 @ Atlanta IV site advertises 'advanced AI capabilities,' a 200 MW design accommodating high power densities and liquid cooling; no named tenant or GPU supercluster has been publicly disclosed.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"","grid_note":"An onsite electrical substation is expected to be operational by 2026 for the ATL IV campus.","citations":[{"title":"Palmetto City Council approves rewritten industrial zoning ...","url":"https://www.wabe.org/palmetto-city-council-approves-rewritten-industrial-zoning-code-to-ban-exclude-data-centers/"},{"title":"AI Infrastructure Challenges: Power and Cooling in High- ...","url":"https://t5datacenters.com/resources/ai-infrastructure-challenges-power-and-cooling-in-high-density-data-centers/"},{"title":"T5 @ Atlanta IV","url":"https://t5datacenters.com/locations/t5-atlanta-iv/"},{"title":"DATA CENTER FACT SHEET","url":"https://psc.ga.gov/site/downloads/datacenterfactsheet.pdf"},{"title":"T5 Finalizes Land Acquisition in Atlanta to Support a 300 ...","url":"https://www.prnewswire.com/news-releases/t5-finalizes-land-acquisition-in-atlanta-to-support-a-300-mw-data-center-campus-302232913.html"}],"runId":"srun_c0e944bd89584b54b7c00d980653fa42","classifiedAt":"2026-07-02T22:55:58.930Z"},"2482":{"community_note":"Residents and advocates in Newton/Morgan counties have organized around water-quality/pressure concerns; EPA Region 4 has fielded questions but not launched a formal investigation, and Meta says an independent groundwater study found no impact.","water_impact":"high","ai_evidence":"No public, facility-specific disclosures of GPU superclusters or AI-training/inference deployments; materials describe a Meta hyperscale data center with a 970,000‑sq‑ft initial building and standard utility arrangements.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Reported draw is roughly 10% of Newton County’s daily water use (~500,000 gallons/day), with resident muddy/dry-well complaints and Meta stating an independent groundwater study found no impact.","grid_note":"Served by Walton EMC; three solar facilities totaling 560 MW AC are contracted to supply the campus, and hyperscalers are required to pay for needed transmission/substation upgrades.","citations":[{"title":"AOC presses EPA over Morgan County drinking water ...","url":"https://www.cbsnews.com/atlanta/news/aoc-presses-epa-over-morgan-county-drinking-water-concerns-tied-to-georgia-data-center-development/"},{"title":"UPDATE: Meta says an independent groundwater study ...","url":"https://www.facebook.com/CBSNewsAtlanta/posts/update-meta-says-an-independent-groundwater-study-found-its-georgia-data-center-/1506226341517279/"},{"title":"Their Water Taps Ran Dry When Meta Built Next Door","url":"https://www.nytimes.com/2025/07/14/technology/meta-data-center-water.html"},{"title":"AI Uses More Water Than Entire Cities","url":"https://www.sentinelearth.com/post/data-centers-now-drink-more-water-than-entire-cities"},{"title":"Data center accused of muddying Georgia county's ...","url":"https://www.newsnationnow.com/us-news/southeast/meta-data-center-georgia-muddy-water/"}],"runId":"srun_c0e944bd89584b547218284b1aa613f3","classifiedAt":"2026-07-02T22:59:30.281Z"},"2483":{"community_note":"Active opposition and litigation: after a 3–2 rezoning approval, residents (and an organized Stop Project Sail campaign) have challenged the project in court, with a lawsuit filed in May 2026 to block/overturn the approval [1][2][3][4].","water_impact":"moderate","ai_evidence":"Reports describe Project Sail as a 900 MW, multi-building hyperscale campus, with no public disclosures of GPU superclusters or confirmed AI tenants [1][2][3].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Reported peak water use up to 6 million gallons/day (about one-quarter of county capacity), potentially making Project Sail the county’s largest water customer [1][2].","grid_note":"Approximately 900 MW load; developer says existing power lines suffice without new transmission across Coweta, while Georgia Power’s 2025 IRP adds generation and transmission to meet statewide load growth [1][2][3].","citations":[{"title":"Commissioners approve Project Sail data center in split 3-2 ...","url":"https://www.times-herald.com/news/full-sail-ahead-commissioners-approve-project-sail-data-center-in-split-3-2-vote/article_479686a7-f485-47bd-9db1-7624cec24351.html"},{"title":"Coweta County issues moratorium to pause data center ...","url":"https://www.ajc.com/news/business/coweta-county-issues-moratorium-to-pause-data-center-projects/2J464ISZIVB4VMFSBXZXNVHZXE/"},{"title":"Residents sue county government, developer over $17B ...","url":"https://www.wsbtv.com/news/local/residents-sue-county-government-developer-over-17b-data-center-construction/FJP7PCHLCNCYBGQ6HGGQJWABSE/"},{"title":"Stop Project Sail","url":"https://stopsail.com/"},{"title":"Coweta County Project Sail Data Center FAQ","url":"https://www.chattahoochee.org/wp-content/uploads/2025/09/Project-Sail-Fact-Sheet-September-2025.pdf"}],"runId":"srun_c0e944bd89584b542c70463a1e2a3b04","classifiedAt":"2026-07-02T22:55:58.930Z"},"2484":{"community_note":"Some concern but no Gregory-specific lawsuit or organized opposition was verified: officials opposed closing Gregory Road over detours and the project remained in annexation/rezoning/DRI review.","water_impact":"moderate","ai_evidence":"Plans describe a ~1.41 million sq ft multi‑building campus, but no tenant or GPU/AI cluster has been confirmed; listings show 'Unknown Company' for the site.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Estimated average demand is 1.08 MGD from NCWSA with an on-site wastewater treatment facility for cooling discharge; NCWSA’s Cornish Creek WTP is being expanded to 39.5 MGD.","grid_note":"Up to 360 MW with a dedicated substation/switchyard; Georgia PSC expanded generation plans and adopted rules to prevent cost‑shifting to ratepayers.","citations":[{"title":"DRI #4428 – Gregory Road Data Center – City of Covington","url":"https://negrc.org/uploads/sites/4/2025/05/DRI4428.FinalReport.pdf"},{"title":"Data center proposed for Gregory Road, developers seek ...","url":"https://www.covnews.com/news/data-center-proposed-gregory-road-developers-seek-annexation-city-covington/"},{"title":"DRI #4428 – Gregory Road Data Center – City of Covington","url":"https://negrc.org/uploads/sites/4/2025/05/DRI4428.FinalReport.pdf"},{"title":"Water & Sewerage Authority, and the ...","url":"https://cityofcovington.org/ckeditorfiles/files/2025_Water_OneWaterResourcesAnalysis2024.pdf"},{"title":"Plans filed for 1.4 million sq ft data center campus outside ...","url":"https://www.datacenterdynamics.com/en/news/plans-filed-for-14-million-sq-ft-data-center-campus-outside-atlanta-georgia/"}],"runId":"srun_c0e944bd89584b54e6c85ced5615c099","classifiedAt":"2026-07-02T22:59:30.281Z"},"2485":{"community_note":"Residents and local groups have pushed back over new data centers in Covington—culminating in a city moratorium—and posts in community groups reference annexation meetings tied to the site.","water_impact":"high","ai_evidence":"The DRI notes “there does not appear to be a specific end user at this time,” and no GPU/AI or liquid-cooling indicators are cited; publicly reported plans describe a ~1.41M sq ft multi-building campus consistent with hyperscale scale, not confirmed AI.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Estimated demand is 1.08 MGD supplied by the Newton County Water & Sewerage Authority, with the campus adjacent to Lake Varner and proposing cooling towers with on‑site treatment for discharge.","grid_note":"An on‑site substation and switchyard are planned; while MW for this campus isn’t disclosed, nearby AWS Covington is 65 MW and lawmakers have debated data center ratepayer bills, implying substantial new load and network upgrades.","citations":[{"title":"City of Covington imposes moratorium on new data center ...","url":"https://www.covnews.com/news/cities/city-covington-imposes-moratorium-new-data-center-requests/"},{"title":"Another data center could be on its way to the local area. ...","url":"https://www.facebook.com/covnews/posts/another-data-center-could-be-on-its-way-to-the-local-areastory/1188048533331361/"},{"title":"Data Center Development in Covington, Georgia","url":"https://www.facebook.com/groups/2075621972838482/posts/2414336605633682/"},{"title":"DRI #4428 – Gregory Road Data Center – City of Covington","url":"https://negrc.org/uploads/sites/4/2025/05/DRI4428.FinalReport.pdf"},{"title":"DRI #4428 – Gregory Road Data Center – City of Covington","url":"https://negrc.org/uploads/sites/4/2025/05/DRI4428.FinalReport.pdf"}],"runId":"srun_c0e944bd89584b54a1207b5c2d8eb0f6","classifiedAt":"2026-07-02T22:59:30.281Z"},"2486":{"community_note":"Residents in Maysville have actively opposed the data center at council meetings, citing process/transparency concerns, after the project was approved and expanded in January 2025; opposition activity continued into 2026.","water_impact":"unknown","ai_evidence":"Ardent lists GA1 – Maysville at 96 MW IT, while Northern Data’s project is covered as a 120 MW AI/HPC data center in Maysville; third-party listings note liquid cooling.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No site-specific gallons/day, water source or discharge information was found; listings only indicate liquid cooling.","grid_note":"Large load—96 MW IT per Ardent and 120 MW planned per industry reporting; no public evidence was found on the serving utility, required transmission upgrades or rate cases.","citations":[{"title":"Citizens fight back as Maysville cancels special meeting ...","url":"https://accessnorthga.com/news/citizens-fight-back-as-maysville-cancels-special-meeting-regarding-data-center"},{"title":"Maysville citizens speak out against data center at council ...","url":"https://accessnorthga.com/news/maysville-citizens-speak-out-against-data-center-at-council-meeting"},{"title":"Maysville citizens again speak out about data center plans","url":"https://www.mainstreetnews.com/jackson/news/maysville-citizens-again-speak-out-about-data-center-plans/article_51c39ab8-1b27-4af3-9ce0-19db8a780ab4.html"},{"title":"Planning and Zoning Board Public Hearing","url":"http://cityofmaysvillega.org/?p=5890"},{"title":"Ardent Georgia","url":"https://mlq.ai/data-centers/usa/georgia/maysville/ardent-ga1/"}],"runId":"srun_c0e944bd89584b545b78910fcacc70c7","classifiedAt":"2026-07-02T22:59:30.281Z"},"2487":{"community_note":"Conserve Henry and allied local groups are campaigning to block data centers in Henry County, including the Hampton project, while the Hampton City Council approved a conditional-use permit for the 133-acre Henderson Farms site.","water_impact":"unknown","ai_evidence":"Reports confirm a planned 133-acre hyperscale data center campus with three large buildings, but there are no disclosures of AI training clusters, AI inference deployments, or GPU-specific infrastructure for this facility.","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No facility-specific water consumption or discharge data was found for Henderson Farms; the 3.5 MGD NPDES permit GA0050350 applies to Equinix AT10x at 1000 Site Parkway, a separate Hampton site from the McDonough St/GA‑20 Henderson Farms campus.","grid_note":"No verified MW load or rate impacts were found; a local report states Southeast Property Holdings will manage power supply negotiations.","citations":[{"title":"Data Center Approved to Locate off Georgia 20 in Hampton","url":"https://henryga.news/2025/03/28/data-center-approved-to-locate-off-georgia-20-in-hampton/"},{"title":"133-acre data center approved in Hampton, Georgia - DCD","url":"https://www.datacenterdynamics.com/en/news/133-acre-data-center-approved-in-hampton-georgia/"},{"title":"🚫🚫BAN DATA CENTERS IN HENRY COUNTY🚫🚫","url":"https://www.facebook.com/conservehenry/posts/ban-data-centers-in-henry-county/122285008094196445/"},{"title":"📣HAMPTON, GEORGIA DATA CENTERS & CONSERVE ...","url":"https://www.facebook.com/conservehenry/posts/hampton-georgia-data-centers-conserve-henry-in-the-news-thank-you-the-atlanta-jo/122274652286196445/"},{"title":"Data Center Approved to Locate off Georgia 20 in Hampton","url":"https://henryga.news/2025/03/28/data-center-approved-to-locate-off-georgia-20-in-hampton/"}],"runId":"srun_c0e944bd89584b5415d0affe5a6f4210","classifiedAt":"2026-07-02T22:59:30.281Z"},"2488":{"community_note":"Residents and groups (e.g., Conserve Henry/Georgians United Against Data Centers) raised concerns as Hampton advanced several data center proposals; the Henderson Farms CUP was approved [1] while the city moved to restrict new requests via a moratorium push [2] and the AJC profiled the controversy [3].","water_impact":"unknown","ai_evidence":"No site-specific GPU cluster, AI tenant announcement, or liquid-cooling deployment is reported; sources describe a 133-acre development approved by Hampton officials with multiple ~195,000-sf buildings and an on-site substation [6][5].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Regional reporting says Griffin agreed to sell treated water to Hampton in part for a new data center [12], and an official noted, “Five million times 365 days is 1.7 billion gallons of water a year!” [11]; no site-specific usage for Henderson Farms is disclosed.","grid_note":"Plans include an on-site electrical substation at the Henderson Farms campus [5], and a separate 240 MW Equinix xScale campus is planned in Hampton, signaling major regional load growth [10].","citations":[{"title":"Data Center Approved to Locate off Georgia 20 in Hampton","url":"https://henryga.news/2025/03/28/data-center-approved-to-locate-off-georgia-20-in-hampton/"},{"title":"Hampton City Council Voting on Data Center Zoning ...","url":"https://www.change.org/p/citizens-opposed-to-data-centers-in-henry-county-ga/u/34290738"},{"title":"This Georgia town learns what comes with a data center. ...","url":"https://www.ajc.com/business/2026/03/metro-atlanta-cities-question-how-many-data-centers-are-too-many/"},{"title":"Dutton unhappy with City of Griffin selling water to ...","url":"https://www.griffindailynews.com/news/dutton-unhappy-with-city-of-griffin-selling-water-to-hampton-for-new-data-center/article_fddb1d5c-26b3-5d35-8573-5546d66c30f1.html"},{"title":"Molena reservoir, Flint River to supply Hampton data center","url":"https://pikecountygeorgia.com/molena-reservoir-flint-river-to-supply-hampton-data-center/"}],"runId":"srun_c0e944bd89584b54d028c5a1567f4a75","classifiedAt":"2026-07-02T22:59:30.572Z"},"2489":{"community_note":"Residents and activists in Union City/South Fulton are organizing against proposed local data centers over water, electricity, and neighborhood impacts; coverage shows mobilization, and no lawsuit specifically naming The Crossings was identified.","water_impact":"unknown","ai_evidence":"Trade coverage says B9 Union City Owner LLC/Link Logistics filed a DRI for a proposed campus in Union City, and listings describe a planned 231-acre, up-to-five-building, ~1.56M sq ft development; no public details identify AI tenants, GPU clusters, or liquid-cooling design.","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No site-specific cooling-water figures were found; Union City purchases water from Atlanta’s Bureau of Water sourced from the Chattahoochee River, and residents have raised water-use concerns.","grid_note":"No MW/substation/transmission details were found for this site; it is listed as Proposed, and broader Georgia coverage highlights concerns about electricity prices for existing customers amid data center growth.","citations":[{"title":"Union City residents push back against proposed data center","url":"https://www.fox5atlanta.com/news/union-city-residents-push-back-against-proposed-data-center"},{"title":"Black Community Fights Georgia's Data Center Boom","url":"https://atlanta.capitalbnews.org/black-community-in-south-fulton-fight-georgias-data-center-boom/"},{"title":"Understanding Data Centers","url":"https://www.unioncityga.gov/Explore-UC/Understanding-Data-Centers"},{"title":"Water and Sewer","url":"https://www.unioncityga.gov/Departments/Public-Services/Water-and-Sewer"},{"title":"Union City residents push back against proposed data center","url":"https://www.fox5atlanta.com/news/union-city-residents-push-back-against-proposed-data-center"}],"runId":"srun_c0e944bd89584b548a80e01031787b5a","classifiedAt":"2026-07-02T22:55:59.285Z"},"2490":{"community_note":"Forest Park officials and residents pressed for scrutiny over zoning, infrastructure capacity, and environmental impacts, and Clayton County enacted a countywide moratorium on new data centers in response to resident concerns; no litigation located [4][5].","water_impact":"unknown","ai_evidence":"Reports describe a two-building, ~1.9 million sq ft, ~200 MW Digital Realty campus at Fort Gillem, with no named AI tenant, GPU supercluster, or DLC-specific deployment disclosed [1][2].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Georgia EPD posted a Section 401 Water Quality Certification public notice for the Fort Gillem Data Center; no cooling-water volumes, sources, or discharge quantities were disclosed [3].","grid_note":"Georgia Power’s IRP outlines more than 1,000 miles of new transmission over the next decade, signaling substantial system build-out amid data-center-driven load growth [7].","citations":[{"title":"CITY COUNCIL REGULAR SESSION AGENDA","url":"https://mccmeetings.blob.core.usgovcloudapi.net/forestpark-pubu/MEET-Packet-35ada9a2c2374b9bb7051f462ab6fed0.pdf"},{"title":"Clayton County Board of Commissioners Approves ...","url":"https://www.claytoncountyga.gov/news/clayton-county-board-of-commissioners-approves-moratorium-on-new-data-centers-in-clayton-county/"},{"title":"Watershed Protection Branch Public Announcements","url":"https://epd.georgia.gov/watershed-protection-branch-public-announcements"},{"title":"Digital Realty files to develop two-building campus outside ...","url":"https://www.datacenterdynamics.com/en/news/digital-realty-files-to-develop-two-building-campus-outside-atlanta-georgia/"},{"title":"Former Army Depot Near Atlanta Could House Massive ...","url":"https://www.govtech.com/products/former-army-depot-near-atlanta-could-house-massive-data-center"}],"runId":"srun_c0e944bd89584b5444d8fec347190fdb","classifiedAt":"2026-07-02T22:55:59.285Z"},"2491":{"community_note":"Residents and environmental advocates have filed lawsuits against Spalding County over the Wallace Jackson campus approvals, challenging zoning and environmental (watershed/wetlands) aspects, with litigation pending [1][2].","water_impact":"low","ai_evidence":"Listings and news reports describe a proposed ~5 million sq ft campus on ~189–190 acres with large planned capacity, but no named AI tenants or GPU deployments have been publicly announced as of mid‑2026 [1][2][3].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"County officials state the site must use a closed‑loop system that recycles water and avoids evaporative cooling, while lawsuits reflect environmental/watershed concerns [1][2].","grid_note":"Planned as a multi‑building campus of roughly 5 million sq ft, with listings indicating very large capacity (reported up to 300 MW), representing a substantial new load on the regional grid [1][2].","citations":[{"title":"Lawsuits filed against Spalding County following approval ...","url":"https://www.griffindailynews.com/news/lawsuits-filed-against-spalding-county-following-approval-of-3rd-data-center/article_034a1944-6762-5450-8366-10c43d2903c3.html"},{"title":"Data Centers vs. Multifamily: How Georgia's Growth ...","url":"https://www.matthews.com/insights/data-center-multifamily-georgia-growth"},{"title":"Third data center campus in Spalding County approved by ...","url":"https://www.griffindailynews.com/news/third-data-center-campus-in-spalding-county-approved-by-commissioners/article_91d412f7-5468-5848-905b-74870208616c.html"},{"title":"Lawsuits filed against Spalding County following approval ...","url":"https://www.griffindailynews.com/news/lawsuits-filed-against-spalding-county-following-approval-of-3rd-data-center/article_034a1944-6762-5450-8366-10c43d2903c3.html"},{"title":"Wallace Jackson Data Center Campus — Spalding, Georgia","url":"https://cleanview.co/data-centers/georgia/2105/wallace-jackson-data-center-campus"}],"runId":"srun_c0e944bd89584b54ff3114b212f1577c","classifiedAt":"2026-07-02T23:02:29.541Z"},"2492":{"community_note":"Local residents filed lawsuits against Spalding County over the January 2026 approval of the Wallace Jackson data center, amid hearing testimony highlighting water-system risks and a county condition for closed-loop cooling.","water_impact":"moderate","ai_evidence":"Reports describe a multi‑million‑sq‑ft, $3.9B planned campus, but there are no disclosed AI tenants, GPU training clusters, or AI‑specific cooling/power‑density details.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day or source data were disclosed publicly; county conditions require a closed‑loop cooling system, and reporting notes 12,000–28,000 gallons of glycol per building stored on rooftops.","grid_note":"No official MW figure disclosed; a third‑party listing shows 450 MW planned for a Spalding County data center campus, while project filings describe nearly 5 million sq ft at full build-out.","citations":[{"title":"Lawsuits filed against Spalding County following approval ...","url":"https://www.griffindailynews.com/news/lawsuits-filed-against-spalding-county-following-approval-of-3rd-data-center/article_034a1944-6762-5450-8366-10c43d2903c3.html"},{"title":"Data centers could bring high tax revenue to Spalding ...","url":"https://www.griffindailynews.com/news/data-centers-could-bring-high-tax-revenue-to-spalding-county/article_fe0871d7-695d-5ea7-924f-d89b2aeb6b33.html"},{"title":"$3.9bn data center approved for construction in Spalding ...","url":"https://www.datacenterdynamics.com/en/news/39bn-data-center-approved-for-construction-in-spalding-county-georgia/"},{"title":"Third data center campus in Spalding County approved by ...","url":"https://www.griffindailynews.com/news/third-data-center-campus-in-spalding-county-approved-by-commissioners/article_91d412f7-5468-5848-905b-74870208616c.html"},{"title":"Third data center campus in Spalding County approved by ...","url":"https://www.griffindailynews.com/news/third-data-center-campus-in-spalding-county-approved-by-commissioners/article_91d412f7-5468-5848-905b-74870208616c.html"}],"runId":"srun_c0e944bd89584b54b989336562a0ad01","classifiedAt":"2026-07-02T22:55:59.285Z"},"2494":{"community_note":"Residents have voiced concerns at packed city meetings about noise, water-use caps, and tax incentives, but the campus remains an active project with no confirmed lawsuit.","water_impact":"low","ai_evidence":"The developer announced a “Hyperscale Kansas Data Center Campus” at De Soto [4], and the City lists the Beale Infrastructure Data Center Campus as an active project [1]; there are no public disclosures confirming GPU superclusters, liquid cooling, or AI‑specific tenants.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"For the first phase, the City estimates about 15,000–20,000 gallons/day of water use; no specific aquifer, drought, or discharge concerns were documented in city materials reviewed.","grid_note":"Utility is Evergy; Evergy lists De Soto transmission/substation upgrades, and the developer says the campus will have on‑site substations plus a new public Evergy substation with protections against cost shifting to other ratepayers.","citations":[{"title":"A packed city council meeting in De Soto highlighted ...","url":"https://www.facebook.com/kmbc9/posts/a-packed-city-council-meeting-in-de-soto-highlighted-growing-opposition-to-two-p/1454853433353271/"},{"title":"De Soto residents push back on new data center plans","url":"https://www.kansascity.com/news/local/community/johnson-county/article316022277.html"},{"title":"Data Centers","url":"https://www.desotoks.us/465/Data-Centers"},{"title":"Beale Data Center","url":"https://www.desotoks.us/496/Beale-Data-Center"},{"title":"Beale Infrastructure Announces Hyperscale Kansas Data Center Campus, Advancing $3 Billion Infrastructure Investment - Beale Infrastructure","url":"http://bealeinfra.com/wp-content/uploads/2026/04/De-Soto-Data-Center-Announcement.pdf"}],"runId":"srun_c0e944bd89584b5473e149d4c78146de","classifiedAt":"2026-07-02T22:55:59.285Z"},"2495":{"community_note":"Public scrutiny in West Des Moines focuses on water/energy use and construction impacts, but no Ginger East–specific lawsuit or moratorium was found and construction/approvals continue.","water_impact":"moderate","ai_evidence":"Project Ginger East (1475 SE Maffitt Lake Ct) is listed and updated as an Azure data center under construction without AI/GPU specifics, whereas Microsoft separately states West Des Moines hosts an Azure supercomputer for OpenAI training not linked to Building 1.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Microsoft’s West Des Moines data centers used 68.5 million gallons in 2024 (about 2.62% of system use) with evaporative cooling; recent lawn-watering restrictions were linked to nitrate treatment capacity, not data centers.","grid_note":"Planned campus capacity is up to 444 MW, and the utility says customer agreements protect other customers from cost shifts tied to new large energy users.","citations":[{"title":"Ginger East datacenter construction update","url":"https://local.microsoft.com/blog/ginger-east-datacenter-construction-update/"},{"title":"Energy, water use under close watch as data centers ...","url":"https://www.businessrecord.com/energy-water-use-under-close-watch-as-data-centers-expand-in-iowa/"},{"title":"Microsoft to build sixth West Des Moines data center in 2025","url":"https://www.weareiowa.com/article/tech/new-microsoft-data-center-west-des-moines-jobs-construction-environmental-impact/524-0d8f0a15-c73f-4986-9f70-aae1ec351cea"},{"title":"Data Centers and Water Usage | WDMWW","url":"https://www.wdmww.com/data-centers-your-water.aspx"},{"title":"Microsoft built 5 data center campuses in this Iowa city. ...","url":"https://www.wpr.org/news/microsoft-data-center-iowa-wisconsin-expect"}],"runId":"srun_c0e944bd89584b542e39678726c386df","classifiedAt":"2026-07-02T22:55:59.285Z"},"2500":{"community_note":"Active opposition by the Independence GUARD Alliance and nearby residents over transparency, tax breaks, and utility impacts; despite city approval, Nebius has broken ground and opponents have retained attorneys and held town halls.","water_impact":"low","ai_evidence":"Company and partner materials describe a gigawatt-scale “AI factory” and confirm Nebius’ NVIDIA GPU-focused cloud for AI training and inference, with the first Independence building sized at ~200 MW within a planned ~1.2 GW AI campus.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"A community post citing city information estimates roughly 400,000–635,000 gallons/year at full buildout for a closed-loop chilled-water system; no specific aquifer or drought-stress issues were identified in the reviewed materials.","grid_note":"Up to ~1.2 GW campus with connection to IPL and city-approved phase one of a new power facility; residents sought assurances the city wouldn’t be on the hook for costs.","citations":[{"title":"Nebius breaks ground on AI data center in Independence","url":"https://www.kshb.com/news/local-news/missouri/jackson-county/nebius-breaks-ground-on-45-acre-ai-data-center-in-independence-amid-community-opposition"},{"title":"Independence neighbors lawyer up as AI data center ...","url":"https://www.kansascity.com/news/local/jackson-county/article315967498.html"},{"title":"Data Center FAQs | City of Independence, MO","url":"https://www.independencemo.gov/data-center-faqs"},{"title":"Data center impacting independence, MO water supply","url":"https://www.facebook.com/groups/IndepMo/posts/4167850650134115/"},{"title":"Nebius breaks ground on gigawatt-scale AI factory in ...","url":"https://nebius.com/newsroom/nebius-breaks-ground-on-gigawatt-scale-ai-factory-in-independence-missouri"}],"runId":"srun_c0e944bd89584b54e8918276ee1f11b8","classifiedAt":"2026-07-02T22:55:59.285Z"},"2506":{"community_note":"Two Springfield residents are campaigning to ban mega‑data centers in Ohio over illness, noise, and water contamination concerns; the effort is ongoing.","water_impact":"unknown","ai_evidence":"5C markets CMH01 within a purpose‑built AI infrastructure stack that includes compute clusters and liquid‑cooling capabilities, while Vultr announced a $1B Springfield data‑center investment and is rolling out advanced GPUs for its AI cloud—evidence of AI workloads at the site.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"The City’s FAQ confirms water use for the 5C facility is addressed, and any discharges would fall under Ohio EPA’s general NPDES framework for data centers; no publicly verified gallons/day figure was found.","grid_note":"ATSI proposes a 138‑kV transmission line tap to a new substation for the 5C campus, and CMH01 is marketed at 200 MW power capacity.","citations":[{"title":"2 Springfield residents aim to ban mega-data centers in Ohio","url":"https://www.springfieldnewssun.com/tncms/asset/editorial/4972b86b-b170-570d-81e4-aa359b6bc67d"},{"title":"5C Data Center FAQs | City of Springfield Ohio Official Website","url":"https://springfieldohio.gov/5c-data-center-faqs/"},{"title":"Wastewater and Stormwater Discharges from Data Centers","url":"https://epa.ohio.gov/divisions-and-offices/surface-water/permitting/wastewater-discharges-from-data-centers--general-permit"},{"title":"Crusoe data center to come to Springfield, expected ...","url":"https://www.springfieldnewssun.com/news/crusoe-data-center-to-come-to-springfield-expected-to-create-20-jobs/article_80ee7151-1807-56ce-aeb5-f3d511ea5f9d.html"},{"title":"Vultr's AI Cloud Ambitions Aim High","url":"https://www.futuriom.com/articles/news/vultrs-ai-cloud-ambitions-aim-high/2025/06"}],"runId":"srun_c0e944bd89584b54a2e99819ca6eeb8d","classifiedAt":"2026-07-02T22:55:59.285Z"},"2510":{"community_note":"No organized, facility-specific opposition was found; coverage focused on an open house, while separate water concerns centered on an unconfirmed Sinton project.","water_impact":"low","ai_evidence":"Operator and trade press describe the 717 N. Tancahua facility as an 'AI-ready' 450kW modular edge site that supports AI workloads; no evidence indicates a GPU training supercluster or named AI training tenant at this address, and later GPU financing was not site-specific.","grid_impact":"low","ai_class":"ai-inference","community_pushback":"none-found","water_note":"Local coverage quotes that the facility uses “zero water,” with no gallons/day, source withdrawal, or discharge permits reported for this address.","grid_note":"About 0.45 MW IT load with no reported utility upgrades, new generation/transmission, or ratepayer impacts tied to this site.","citations":[{"title":"Duos Edge AI to Host Corpus Christi Edge Data Center Open ...","url":"https://ir.duostechnologies.com/news-events/press-releases/detail/835/duos-edge-ai-to-host-corpus-christi-edge-data-center-open"},{"title":"Duos Edge AI opens Corpus Christi's first data center May 12","url":"https://www.caller.com/story/money/business/local/2026/05/12/corpus-christi-ai-data-center-duos-edge-uptown-tancahua/90041887007/"},{"title":"Corpus Christi leaders believe data center plans may be ...","url":"https://texasstandard.org/stories/corpus-christi-water-crisis-data-centers/"},{"title":"Corpus Christi's first AI edge data center opens with 'zero' ...","url":"https://www.yahoo.com/news/articles/corpus-christis-first-ai-edge-193826620.html"},{"title":"Duos Edge AI opens Corpus Christi's first data center May 12","url":"https://www.caller.com/story/money/business/local/2026/05/12/corpus-christi-ai-data-center-duos-edge-uptown-tancahua/90041887007/"}],"runId":"srun_c0e944bd89584b545d41b6a8a85be412","classifiedAt":"2026-07-02T22:55:59.285Z"},"2511":{"community_note":"Coverage shows Duos hosting open houses and ribbon cuttings with school/civic stakeholders in Dumas, and no reports of organized opposition or litigation at this site [1][2][3].","water_impact":"low","ai_evidence":"The Dumas facility is reported as an Edge data center for a school district—aligned with real-time/inference use—while Duos secured financing for 2,304 NVIDIA B300 GPUs across its platform; no source links a training supercluster to Dumas [4][6].","grid_impact":"low","ai_class":"ai-inference","community_pushback":"none-found","water_note":"No gallons/day reported for this edge site; Dumas enacted Stage 2 mandatory water restrictions amid drought and the area relies on the Ogallala aquifer, with local messaging noting closed-loop/recirculating cooling reduces water consumption [10][9][8].","grid_note":"Edge-scale footprint with 100 kW+ per cabinet design and no public reports of local grid strain, new transmission, or rate impacts [7][11].","citations":[{"title":"Duos Edge AI to Host Dumas Edge Data Center Open House","url":"https://ir.duostechnologies.com/news-events/press-releases/detail/843/duos-edge-ai-to-host-dumas-edge-data-center-open-house"},{"title":"Duos Edge AI showcases new Edge Data Center in Dumas","url":"https://www.myhighplains.com/news/local-news/moore-county/duos-edge-ai-showcases-new-edge-data-center-in-dumas/"},{"title":"Analytical Study of the Ogallala Aquifer in Moore County, ...","url":"http://www.twdb.texas.gov/publications/reports/numbered_reports/doc/r252/r252.pdf"},{"title":"Drought Contingency Plan","url":"https://www.dumastx.gov/news_detail_T5_R69.php"},{"title":"Duos Edge launches data center for schools in Dumas ...","url":"https://www.datacenterdynamics.com/en/news/duos-edge-launches-data-center-for-schools-in-dumas-texas/"}],"runId":"srun_c0e944bd89584b541799cd7b0ec1fd83","classifiedAt":"2026-07-02T22:55:59.285Z"},"2512":{"community_note":"No organized opposition was identified; local coverage and district communications highlight ribbon cuttings and an open house, and the facility is operating.","water_impact":"low","ai_evidence":"Company and trade reports say the Hereford deployment enables the district and surrounding community to leverage AI-enabled applications, consistent with edge AI/inference rather than training clusters.","grid_impact":"unknown","ai_class":"ai-inference","community_pushback":"none-found","water_note":"No gallons/day disclosed; the district quotes the operator that the unit uses no water to cool racks/servers and trade coverage says it is air-cooled.","grid_note":"No MW or utility-upgrade details were reported; trade coverage states the site runs on on-grid power.","citations":[{"title":"Duos Edge AI opens new data centers in Dumas, Hereford","url":"https://www.amarillo.com/story/news/2026/06/25/duos-edge-ai-opens-two-data-centers-in-texas-panhandle/90696351007/"},{"title":"Hereford ISD","url":"https://www.herefordisd.net/live_feeds/12488285"},{"title":"Hereford ISD partners with Dous Edge AI for free data center","url":"https://www.facebook.com/HerefordIndependentSchoolDistrict/posts/hereford-isd-is-excited-to-share-information-regarding-the-duos-edge-ai-data-cen/1478875710803736/"},{"title":"Duos Edge AI to Host Hereford Edge Data Center Open ...","url":"https://datacenterpost.com/duos-edge-ai-to-host-hereford-edge-data-center-open-house/"},{"title":"Duos Edge AI Brings another Edge Data Center to Rural Texas","url":"https://ir.duostechnologies.com/news-events/press-releases/detail/823/duos-edge-ai-brings-another-edge-data-center-to-rural-texas"}],"runId":"srun_c0e944bd89584b54d1f1eb0ab86ca334","classifiedAt":"2026-07-02T22:55:59.285Z"},"2513":{"community_note":"No organized opposition surfaced; Plano City Council unanimously approved CoreWeave’s tax-rebate agreement on July 24, 2023, documenting the company’s occupancy and $1.6B improvements commitment.","water_impact":"unknown","ai_evidence":"CoreWeave announced a new Plano, Texas data center to expand access to high-performance GPUs [1], and describes its AI data centers as delivering high-performance GPU clusters and liquid cooling built for AI speed and reliability [2].","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No gallons/day or discharge details were found for this site; Plano is served by NTMWD drawing from Lavon, Bois d’Arc, Lake Texoma and reuse supplies, with conservation/drought plans in place [8][9].","grid_note":"The campus lists 13+ MW available with dual 25 kV utility feeds from two diverse substations and Oncor service [5].","citations":[{"title":"city council agenda memo - Coversheet","url":"https://plano.novusagenda.com/agendapublic/CoverSheet.aspx?ItemID=8487&MeetingID=3420"},{"title":"CoreWeave Expands Into Plano Data Center With Promise ...","url":"https://dallas.urbanize.city/post/coreweave-expands-plano-data-center-promise-16bn-improvements"},{"title":"Water System | North Texas Municipal Water District, TX","url":"https://www.ntmwd.com/310/Water-System"},{"title":"Water Conservation Plan & Water Resource and ...","url":"https://ntmwd.com/448/Water-Conservation-and-Drought-Plans"},{"title":"CoreWeave Opens New Texas Data Center to Expand ...","url":"https://www.prnewswire.com/news-releases/coreweave-opens-new-texas-data-center-to-expand-access-to-high-performance-gpus-301884897.html"}],"runId":"srun_c0e944bd89584b548c4a01ddf6eaa689","classifiedAt":"2026-07-02T22:55:59.285Z"},"2515":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No gallons/day figure was found; reporting shows KyotoCooling water‑free indirect air cooling at the Allen facility and no noted aquifer, drought, or discharge concerns.","grid_note":"Public listings place capacity around 3.5–4 MW with 2 MW-class backup generators and no reported utility upgrades, rate cases, or curtailment tied to this site.","citations":[{"title":"Dallas-Allen Data Center","url":"https://www.tierpoint.com/data-centers/texas/dallas-allen/"},{"title":"Allen Township Supervisors look at adding data center use ...","url":"https://homenewspa.com/2026/05/07/allen-township-supervisors-look-at-adding-data-center-use-to-zoning-ordinance/"},{"title":"O'Brien Law Firm sues Compass Datacenters, LLC over ...","url":"https://texasemployees.com/obrien-law-firm-sues-compass-datacenters-llc-200k-unpaid-commissions/"},{"title":"Developers navigate realities of data center opposition","url":"https://finance-commerce.com/2026/05/data-center-projects-community-opposition/"},{"title":"Tierpoint Dallas-Allen","url":"https://www.datacentermap.com/usa/texas/dallas/tierpoint-dallas-allen/"}],"runId":"srun_c0e944bd89584b5446a21c6c4cb30906","classifiedAt":"2026-07-02T22:59:30.573Z"},"2520":{"community_note":"Illinois EPA’s EJ/Title VI review says outreach letters were sent and no inquiries were received; no Wood Dale–specific organized opposition or litigation surfaced.","water_impact":"unknown","ai_evidence":"Illinois EPA’s review links CHI6 demand to “AI technology” together with internet services and cloud storage; no public evidence indicates GPU supercluster training deployments.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No facility-specific water consumption/source data found; CyrusOne generally prefers closed-loop chilling with energy‑efficient electrical chillers.","grid_note":"Initial IT load 18 MW; ComEd-related SUE work spanned a 3‑mile route; air permit covers 42×2,250 kW plus 2×1,250 kW diesel emergency generators.","citations":[{"title":"1 Environmental Justice/Title VI Review CyrusOne CHI6 ...","url":"https://epa.illinois.gov/content/dam/soi/en/web/epa/topics/environmental-justice/documents/ira/ira-analyses/cyrusone-ejtitlevi-review-memo.pdf"},{"title":"Cooling Efficiencies in Data Centers – One size doesn't fit all","url":"https://www.cyrusone.com/resources/blogs/cooling-efficiencies-in-data-centers-one-size-doesnt-fit-all"},{"title":"1 Environmental Justice/Title VI Review CyrusOne CHI6 ...","url":"https://epa.illinois.gov/content/dam/soi/en/web/epa/topics/environmental-justice/documents/ira/ira-analyses/cyrusone-ejtitlevi-review-memo.pdf"},{"title":"CyrusOne Celebrates Wood Dale Topping Out Ceremony","url":"https://www.cyrusone.com/resources/press-releases/cyrusone-celebrates-wood-dale-topping-out-ceremony"},{"title":"ComEd – CyrusOne Data Center","url":"https://gsg-consultants.com/project/comed-cyrusone-data-center/"}],"runId":"srun_c0e944bd89584b5400fa3a3f23fe4eb7","classifiedAt":"2026-07-02T22:55:59.285Z"},"2525":{"community_note":"Residents voiced concerns at public hearings, but McDuffie County approved the data center (4–1); no organized opposition or lawsuits reported.","water_impact":"low","ai_evidence":"Described as a six-building, ~1.5 million sq ft, ~400 MW hyperscale campus, with no public announcements of GPU clusters or AI tenants.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Estimated at 30,000 gallons/day (~1% of McDuffie County’s 3,000,000 gpd capacity) per the developer.","grid_note":"Planned load ~400 MW; a regional review noted insufficient current energy supply to serve the project, prompting utility planning for upgrades.","citations":[{"title":"McDuffie County moves forward with Project Azalea","url":"https://www.wrdw.com/video/2026/03/18/mcduffie-county-moves-forward-with-project-azalea/"},{"title":"McDuffie County holds another meeting on Project Azalea ...","url":"https://www.wjbf.com/news/mcduffie-county-holds-another-meeting-on-project-azalea-on-march-17/"},{"title":"A public hearing is be held for citizen input on the Project ...","url":"https://www.facebook.com/wrdwtv/posts/happeningnow-a-public-hearing-is-be-held-for-citizen-input-on-the-project-azalea/1345284077645466/"},{"title":"Proposed Data Center in McDuffie County, GA - Project Azalea","url":"https://www.project-azalea.com/about"},{"title":"Proposed Data Center in McDuffie County, GA - Project Azalea","url":"https://www.project-azalea.com/faqs"}],"runId":"srun_c0e944bd89584b54bb5250ce4565ca00","classifiedAt":"2026-07-02T22:55:59.285Z"},"2526":{"community_note":"Residents, including at least one who publicly “raised alarm,” objected over siting and impacts while the High Falls Road rezoning was recommended for approval; no lawsuits identified to date.","water_impact":"low","ai_evidence":"Public reporting describes a planned 2.55m-sf data center campus filed by Montana Property Group with limited details; no AI tenant or GPU deployment has been announced.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Closed-loop cooling with recycling is planned via the local authority, and no project-specific gallons/day or aquifer/drought red flags were publicly documented.","grid_note":"Projected load ~275 MW (≈2.75x the city’s typical purchases), with discussions of developer-funded substation/transmission and protections against ratepayer exposure if usage falls.","citations":[{"title":"Spalding County resident raises alarm about a proposed ...","url":"https://www.griffindailynews.com/news/spalding-county-resident-raises-alarm-about-a-proposed-data-center-on-high-falls-road/article_ec6873d9-ad5a-5327-b940-fbec3e36b16c.html"},{"title":"Proposed data center on High Falls Road recommended ...","url":"https://www.griffindailynews.com/news/proposed-data-center-on-high-falls-road-recommended-for-approval-by-planning-commission/article_e1950818-c89c-5af3-bcaf-c36cffc07da2.html"},{"title":"Land rezoning for Georgia data center recommended ...","url":"https://www.datacenterdynamics.com/en/news/land-rezoning-for-georgia-data-center-recommended-for-approval/"},{"title":"Third data center campus in Spalding County approved by ...","url":"https://www.griffindailynews.com/news/third-data-center-campus-in-spalding-county-approved-by-commissioners/article_91d412f7-5468-5848-905b-74870208616c.html"},{"title":"Plans filed for 2.55 million sq ft data center campus outside ...","url":"https://www.datacenterdynamics.com/en/news/plans-filed-for-255-million-sq-ft-data-center-campus-outside-atlanta/"}],"runId":"srun_c0e944bd89584b5475aa6e91f6d21f05","classifiedAt":"2026-07-02T22:55:59.285Z"},"2527":{"community_note":"Neighbors organized a Change.org campaign against the Hickman Property data center over water, bills, noise, and environmental impacts, and commissioners denied the rezoning 4–1 on Dec. 2, 2025.","water_impact":"unknown","ai_evidence":"Reports outline a 6.2 million-sf campus proposed by East Village Dothan, but no public materials identify an AI tenant, GPU training cluster, or liquid-cooling retrofit for this site.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No confirmed cooling-water gallons/day were found in public reporting; a local post claims “there isn’t enough water to sustain,” referencing WSA and a possible reservoir.","grid_note":"No MW was disclosed in public reporting; the 6.2M-sf, multi-building proposal implies a very large load, but the rezoning was denied 4–1 so no utility upgrades have been approved.","citations":[{"title":"Stop the Hickman Property data center in Villa Rica, GA!","url":"https://www.change.org/p/stop-the-hickman-property-data-center-in-villa-rica-ga"},{"title":"Joint BOC/P&Z 12/2/2025 • BOC Agenda Citizen Portal • CivicClerk","url":"https://douglascountyga.portal.civicclerk.com/event/1183/files"},{"title":"County rejects rezoning request for data center","url":"https://www.facebook.com/douglascountysentinel/posts/douglas-county-officials-rejected-plans-last-week-for-a-data-center-campus-along/1467762618683103/"},{"title":"Proposed Data Center Development in Douglas County, ...","url":"https://www.facebook.com/groups/2968948950034398/posts/3820376011558350/"},{"title":"2025 Hickman Property DRI 4422","url":"http://documents.atlantaregional.com/Land%20Use/Reviews/ID6518/2025%20Hickman%20Property%20DRI%204422%20-%20Final%20Report.pdf"}],"runId":"srun_c0e944bd89584b5430028520d173938a","classifiedAt":"2026-07-02T22:59:30.573Z"},"2529":{"community_note":"Maysville residents, including a Change.org petition led by Carissa Martin, oppose the Industrial Drive/Meeks Road data center over notice, water, grid/rate, noise and health concerns; hearings were held in early Jan 2025 and a later special Q&A meeting was canceled.","water_impact":"unknown","ai_evidence":"Northern Data/Ardent plan a 63-acre, 120MW (expandable to 180MW) facility in Maysville focused on AI/HPC workloads, with Ardent materials advertising GB200 readiness and 150+ kW/cabinet densities.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No facility-specific water withdrawal or discharge figures were found; materials reference liquid cooling and residents raise environmental concerns, but no quantified usage is documented.","grid_note":"Planned load is 120 MW with capacity to 180 MW; statewide, regulators cite rapidly rising new-generation needs tied to data centers, and the utility provides FAQs on rate and reliability impacts.","citations":[{"title":"Planning and Zoning Board Public Hearing","url":"http://cityofmaysvillega.org/?p=5890"},{"title":"Citizens fight back as Maysville cancels special meeting ...","url":"https://accessnorthga.com/news/citizens-fight-back-as-maysville-cancels-special-meeting-regarding-data-center"},{"title":"A data center could be coming to Maysville, Georgia and ...","url":"https://www.facebook.com/GPBNews/videos/a-data-center-could-be-coming-to-maysville-georgia-and-residents-are-not-happy-t/4522397634713680/"},{"title":"Petition · Halt the Maysville data center development","url":"https://www.change.org/p/halt-the-maysville-data-center-development"},{"title":"Ardent Georgia","url":"https://mlq.ai/data-centers/usa/georgia/maysville/ardent-ga1/"}],"runId":"srun_c0e944bd89584b54ea5aa3f3dd76890b","classifiedAt":"2026-07-02T22:55:59.285Z"},"2530":{"community_note":"Coweta County residents oppose the project and, after commissioners approved the rezoning in a 3–2 vote on April 7, 2026, they filed a Superior Court appeal in May 2026 challenging that decision.","water_impact":"high","ai_evidence":"Public sources describe a planned 900 MW hyperscale campus, with no verified announcements of GPU superclusters, AI training clusters, or AI inference tenants.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Reporting estimates daily use on the order of millions of gallons—framed as about six Newnan water towers per day (~6 MGD)—with concerns about system strain and watershed impacts raised locally.","grid_note":"Georgia regulators approved Georgia Power’s 2025 plan with generation and transmission investments to serve growing load, reflecting the scale of integrating large data centers like this 900 MW campus.","citations":[{"title":"Commissioners approve Project Sail data center in split 3-2 ...","url":"https://www.times-herald.com/news/full-sail-ahead-commissioners-approve-project-sail-data-center-in-split-3-2-vote/article_479686a7-f485-47bd-9db1-7624cec24351.html"},{"title":"Coweta residents file appeal to reverse Project Sail zoning ...","url":"https://www.times-herald.com/data_center/coweta-residents-file-appeal-to-reverse-project-sail-zoning-decision/article_819c2d7f-7539-4562-84d7-19026b64a832.html"},{"title":"Study warns Project Sail could strain water system, pollute ...","url":"https://www.times-herald.com/news/study-warns-project-sail-could-strain-water-system-pollute-rivers/article_cb92b345-6ea6-4380-af03-56d389573d6c.html"},{"title":"Project Sail could be largest water consumer in Coweta","url":"https://www.times-herald.com/news/project-sail-could-be-largest-water-consumer-in-coweta/article_bd980626-8c6c-45e5-ae00-e661457bc28a.html"},{"title":"Prologis: Project Sail Data Center","url":"https://baxtel.com/data-center/prologis-project-sail"}],"runId":"srun_c0e944bd89584b54a4b2b98222be4f8c","classifiedAt":"2026-07-02T22:55:59.286Z"},"2538":{"community_note":"Goodyear advanced an ordinance to limit and schedule data center generator testing due to noise near residences; this reflects general city-level concern rather than organized opposition to Compass Goodyear – Building 1 specifically [1].","water_impact":"unknown","ai_evidence":"Compass positions the Goodyear campus for cloud/hyperscale customers (212 MW in Goodyear), and initial phases delivered 72 MW across the first two buildings; no named AI/GPU tenant or supercluster has been publicly disclosed for Building 1 [4][5].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No Building 1 gallons figure is published; Compass describes using waterless airside cooling designs, while a separate Microsoft Goodyear estimate put usage at around 56 million gallons/year—so Building 1’s specific water use remains unverified [2][3].","grid_note":"Campus-scale load is large—212 MW on a 225-acre site with an adjacent Compass-owned 230kV substation—and regional reporting says data centers already use about 350 MW from APS, underscoring significant planning and rate impacts [8][9][10].","citations":[{"title":"Goodyear moves to set rules for data centers as industry ...","url":"https://www.yourvalley.net/litchfield-park-independent/stories/goodyear-moves-to-set-rules-for-data-centers-as-industry-expands,669232"},{"title":"Phoenix - Goodyear — Maricopa, Arizona","url":"https://cleanview.co/data-centers/arizona/847/phoenix---goodyear"},{"title":"Compass Begins Construction of Two Data Centers in ...","url":"https://www.compassdatacenters.com/news/compass-datacenters-begins-construction-of-first-two-data-centers-on-phoenix-campus/"},{"title":"Data Centers","url":"https://www.aps.com/en/Utility/Company-wide-Events-and-Messages/Data_Centers_How_Were_Protecting_Customers_While_Planning-for_Big_Energy_Needs"},{"title":"Data centers pushing Phoenix area's power grid to the limit","url":"https://www.azfamily.com/2025/07/10/data-centers-pushing-phoenix-areas-power-grid-limit/"}],"runId":"srun_c0e944bd89584b545f0ad45535f45c11","classifiedAt":"2026-07-02T22:55:59.697Z"},"2539":{"community_note":"No organized opposition specific to STACK PHX01C; Avondale meetings on a separate Prime/Hermosa Ranch data center drew resident concerns about height, noise, water/energy use, and land use, but approvals moved forward.","water_impact":"unknown","ai_evidence":"STACK promotes PHX01 as a 225MW campus for cloud and AI, and it’s in the NVIDIA DGX‑Ready program, but no named AI tenant or PHX01C‑specific GPU cluster has been publicly confirmed.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No PHX01C gallons/day reported; Avondale is among Valley cities that have adopted ordinances capping industrial water use and requiring mitigation [9].","grid_note":"225MW hyperscale campus in APS territory; APS has sought ~45% higher rates and stricter terms for extra‑large users like data centers; no PHX01C‑specific interconnection upgrade identified.","citations":[{"title":"A new data center is headed to Avondale. What you need ...","url":"https://www.12news.com/article/money/avondale-arizona-first-prime-data-center/75-aa998b8d-4faa-494e-92e8-7c68ee1e69ac"},{"title":"Large-Volume Water User Ordinances ...","url":"https://morrisoninstitute.asu.edu/sites/g/files/litvpz841/files/2025-09/Large-Volume%20Water%20User%20Ordinances%20090525_revised2.pdf"},{"title":"Arizona's water is drying up. That won't stop its data center rush.","url":"https://grist.org/technology/arizona-water-data-centers-semiconducters/"},{"title":"Data Centers in Phoenix, Arizona","url":"https://www.stackinfra.com/locations/americas/phoenix/"},{"title":"STACK Offers AI Hosting with NVIDIA DGX Program","url":"https://www.stackinfra.com/about/news-press/press-releases/stack-infrastructure-provides-a-path-for-customers-to-leverage-ai-in-the-data-center-with-the-nvidia-dgx-ready-program/"}],"runId":"srun_c0e944bd89584b541962f2e41c061d8e","classifiedAt":"2026-07-02T22:55:59.697Z"},"2540":{"community_note":"Active opposition from Stop Project Baccara and environmental groups centers on air/noise/water and siting; despite this, the ACC approved the CEC 5-0 (Feb 4, 2026) and the county approved a key permit in May 2026.","water_impact":"moderate","ai_evidence":"No publicly verifiable GPU supercluster, AI tenant, or AI-training/inference deployment has been announced; reporting describes two data centers with an on-site 700MW plant, and Takanock markets power solutions for “AI data centers,” but without named AI clusters or tenants.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Opponents estimate nearly 59 million gallons of water per year for cooling the 18 gas turbines, highlighting scarcity concerns in the area.","grid_note":"A 700MW on-site natural-gas plant is planned to power two data centers on the 160-acre campus, with advocacy materials citing 18 gas turbines.","citations":[{"title":"Ignoring Community Concerns, Arizona Corporation ...","url":"https://www.sierraclub.org/press-releases/2026/02/ignoring-community-concerns-arizona-corporation-commission-approves-new"},{"title":"Vice Chair Walden Releases Statement on Project Baccara","url":"https://azcc.gov/Rachel-Walden/news/2026/02/06/vice-chair-walden-releases-statement-on-project-baccara"},{"title":"Maricopa County approves permit for Project Baccara data ...","url":"https://www.bizjournals.com/phoenix/news/2026/05/07/maricopa-county-project-baccara-data-center.html"},{"title":"Stop Project Baccara, Protect Surprise, AZ","url":"https://stopbaccara.com/"},{"title":"Stop Project Baccara on the southern border of Surprise, ...","url":"https://www.change.org/p/stop-project-baccara-on-the-southern-border-of-surprise-az-in-maricopa-county"}],"runId":"srun_c0e944bd89584b54d3bb08b70d2f332f","classifiedAt":"2026-07-02T22:55:59.697Z"},"2541":{"community_note":"Organized opposition by residents, Stop Project Baccara, and the Sierra Club centers on air, noise/health, and water impacts, but regulators advanced the project—ACC approved a CEC and local approvals proceeded despite 225 opposition letters and thousands of petition signatures.","water_impact":"unknown","ai_evidence":"Planned as a significant two-building campus on 160 acres with on-site natural gas generation, and Takanock markets its platform as power for AI/digital infrastructure; no project-specific GPU, AI tenant, or liquid-cooling commitments were found.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No official figure found; an opposition petition estimates nearly 59 million gallons/year (~162,000 gpd) to cool 18 gas turbines, but the project’s specific water source and discharge plans are not confirmed.","grid_note":"On-site natural-gas generation for the campus received an ACC CEC, and a substation connection to the APS transmission system has been referenced.","citations":[{"title":"Vice Chair Walden Releases Statement on Project Baccara","url":"https://azcc.gov/Rachel-Walden/news/2026/02/06/vice-chair-walden-releases-statement-on-project-baccara"},{"title":"Ignoring Community Concerns, Arizona Corporation ...","url":"https://www.sierraclub.org/press-releases/2026/02/ignoring-community-concerns-arizona-corporation-commission-approves-new"},{"title":"Data center approved despite 225 opposition letters","url":"https://ktar.com/arizona-business/data-center-approved-opposition/5846075/"},{"title":"Stop Project Baccara, Protect Surprise, AZ","url":"https://stopbaccara.com/"},{"title":"Stop Project Baccara on the southern border of Surprise, ...","url":"https://www.change.org/p/stop-project-baccara-on-the-southern-border-of-surprise-az-in-maricopa-county"}],"runId":"srun_c0e944bd89584b548e132746749ab588","classifiedAt":"2026-07-02T22:59:30.853Z"},"2542":{"community_note":"County staff reported no known opposition and one support letter; the Planning & Zoning Commission approved the case 9–0.","water_impact":"moderate","ai_evidence":"Reports describe a planned 2.25 million sq ft campus at 491st Avenue and Thomas Road, but the operator is undisclosed and there are no confirmed AI GPU/tenant announcements.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"County documents cite a private water campus with a production well and groundwater rights of about 1,920 acre‑feet/year (10‑year rolling average) and up to 3,840 acre‑feet in a single year (~1.7–3.4 million gallons/day averaged), with no project‑specific cooling‑water figure disclosed.","grid_note":"No MW load disclosed; APS is the utility and the plan includes a ~26‑acre switchyard, while APS says large data centers operate near peak 24/7 and require planning to protect reliability and affordability.","citations":[{"title":"Fetched web page","url":"https://mccobagenda.databankcloud.com/AgendaOnline/Documents/DownloadFileBytes/02.03%20CPA250009%20Z250027%20BOS%20REPORT.PDF.pdf?documentType=1&meetingId=4622&itemId=264342&publishId=145477&isSection=False&isAttachment=True"},{"title":"PLANNING AND ZONING COMMISSION","url":"https://www.maricopa.gov/AgendaCenter/ViewFile/Minutes/_01082026-3545"},{"title":"Fetched web page","url":"https://mccobagenda.databankcloud.com/AgendaOnline/Documents/DownloadFileBytes/02.03%20CPA250009%20Z250027%20BOS%20REPORT.PDF.pdf?documentType=1&meetingId=4622&itemId=264342&publishId=145477&isSection=False&isAttachment=True"},{"title":"2.25 million sq ft data center campus proposed outside ...","url":"https://www.datacenterdynamics.com/en/news/225-million-sq-ft-data-center-campus-proposed-outside-phoenix-arizona/"},{"title":"Maricopa County Board Approves Rezoning for 638-Acre ...","url":"https://azbex.com/planning-development/maricopa-county-board-approves-rezoning-for-638-acre-data-center-solar-site/"}],"runId":"srun_c0e944bd89584b54486b3d099349f3bd","classifiedAt":"2026-07-02T22:55:59.697Z"},"2547":{"community_note":"Active pushback by residents gathering petition signatures led to the Sanford City Council enacting a 91-day emergency moratorium on data center development on May 19, 2026, pausing the project while concerns are reviewed.","water_impact":"moderate","ai_evidence":"Local press called it an “AI data center,” but there is no public confirmation of GPU clusters, named AI tenants, or power-dense liquid-cooling deployments; developers were still selecting a partner and expected a lengthy financing/permitting timeline.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No official consumption figure is published in the cited materials; residents have raised concerns about water usage and environmental impact.","grid_note":"Developers propose pairing the campus with a 300-megawatt hydrogen fuel cell power plant.","citations":[{"title":"Data Center Opponents Gather Petition Signatures","url":"https://sanfordspringvalenews.com/data-center-opponents-gather-petition-signatures/"},{"title":"Sanford imposes emergency data center moratorium ...","url":"https://www.pressherald.com/2026/05/19/sanford-imposes-emergency-data-center-moratorium-halting-mousam-river-project/"},{"title":"ai data center proposed for small town sanford, ME","url":"https://www.facebook.com/groups/405526816271757/posts/3388565087967900/"},{"title":"Sanford AI data center proposal faces pushback, possible ...","url":"https://www.seacoastonline.com/story/news/local/york-star/2026/02/26/sanford-maine-ai-data-center-proposal-faces-pushback-possible-moratorium/88839489007/"},{"title":"Sanford data center could bring $2 billion investment","url":"https://www.facebook.com/SanfordSpringvaleNews/posts/new-post-sanford-springvale-news-all-rights-reserved-data-center-could-pump-2-bi/1597692225194356/"}],"runId":"srun_c0e944bd89584b5402c35bb88a1c8e62","classifiedAt":"2026-07-02T22:55:59.697Z"},"2569":{"community_note":"No organized opposition or litigation was found for NYM10/Cervalis Stamford; public records and listings show routine colo/property information with no dispute or complaint activity noted.","water_impact":"unknown","ai_evidence":"Public descriptions characterize the Stamford (Cervalis) site as enterprise colocation and work-area recovery rather than an AI cluster, with no NYM10-specific announcements of GPU deployments or AI tenants.","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Specs list 1,200 tons of cooling capacity but do not report gallons/day or identify a water source or discharge permitting for NYM10.","grid_note":"Listed at 4.0 MW IT load; no filings or reports identified of Eversource upgrades or rate impacts tied to NYM10.","citations":[{"title":"CyrusOne NYM10 | 10 Riverbend Drive South, Stamford","url":"https://datacenterhawk.com/marketplace/providers/cyrusone/10-riverbend-drive-south/nym10"},{"title":"Stamford Zoning Board OKs residential uses in River Bend ...","url":"https://www.stamfordadvocate.com/news/article/stamford-river-bend-senior-housing-19806989.php"},{"title":"10 Riverbend Drive South, Stamford, Connecticut 06907","url":"https://www.urbanum.app/explorer/building/10-riverbend-drive-south-stamford-connecticut-374587"},{"title":"CyrusOne NYM10 - Stamford - Specs","url":"https://www.datacentermap.com/usa/connecticut/stamford/stamford-data-center/specs/"},{"title":"Cervalis - Stamford Data Center","url":"https://cloudandcolocation.com/datacenters/cervalis-stamford-data-center/"}],"runId":"srun_c0e944bd89584b54bd1b766b6977f593","classifiedAt":"2026-07-02T22:59:30.853Z"},"2571":{"community_note":"Local residents and advocacy groups (e.g., Third Act Illinois) opposed the project over impacts such as grid/rates, water, and farmland loss; after being tabled in March, the County Board approved it on April 7, 2026.","water_impact":"low","ai_evidence":"No public evidence of GPU deployments, AI tenants, or liquid-cooling retrofits; filings and trade press describe a planned ~600 MW, multi-building campus.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Closed-loop air-cooled design with no ongoing large cooling withdrawals; initial water may be trucked, with supply tied to Apple Creek Water Cooperative (Waverly Lake).","grid_note":"Approx. 636 MW load at buildout; served by local cooperative (RECC) which is fielding project-related questions, indicating significant grid planning/upgrade needs.","citations":[{"title":"Sangamon County Board approves a controversial data ...","url":"https://www.nprillinois.org/sangamon-county/2026-04-07/sangamon-county-board-approves-a-controversial-data-center-project"},{"title":"Illinois: Letter to Sangamon County Board RE: Data Centers","url":"https://thirdact.org/illinois/2026/04/06/letter-to-sangamon-board/"},{"title":"County Board votes to table data center proposal","url":"https://www.illinoistimes.com/news/county-board-votes-to-table-data-center-proposal/"},{"title":"Sangamon County Community FAQ","url":"https://www.cyrusone.com/sangamon-county-community-faq"},{"title":"CyrusOne speaks out as county data center vote looms","url":"https://www.newschannel20.com/news/local/cyrusone-speaks-out-as-county-data-center-vote-looms/article_ee322e42-2751-48ca-b754-e4a2a55ef9ab.html"}],"runId":"srun_c0e944bd89584b5477738c1ad796ff24","classifiedAt":"2026-07-02T22:55:59.697Z"},"2573":{"community_note":"Douglas County commissioners imposed a 90-day moratorium on new data center applications in March 2025 to study impacts, signaling organized local pushback rather than FTY101-specific litigation.","water_impact":"unknown","ai_evidence":"DCD reports the Douglasville project filed as FTY101 with four 245,000‑sq‑ft buildings for East US 3, and Microsoft says its next‑generation datacenter design launched in August 2024 “optimizes AI workloads.”","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No FTY101-specific gallons/day or source data were found; Microsoft says East US 3 has water conservation and replenishment “top of mind” and that its next‑generation design launched in August 2024 consumes zero water for cooling.","grid_note":"Listed at 300 MW; Georgia PSC cites data centers in statewide load growth from 6,600 MW (2023) to 8,500 MW two years later, and Georgia Power says data centers pay rates designed to cover full cost of service.","citations":[{"title":"Douglas County imposes 90-day halt on data centers","url":"https://www.fox5atlanta.com/news/douglas-county-data-centers-moratorium"},{"title":"Douglas County, Georgia enacts data center moratorium","url":"https://www.bizjournals.com/atlanta/news/2025/03/21/douglas-county-data-center-moratorium.html"},{"title":"Future-Ready Cloud: Microsoft's U.S. Infrastructure ...","url":"https://azure.microsoft.com/en-us/blog/microsofts-commitment-to-supporting-cloud-infrastructure-demand-in-the-united-states/"},{"title":"Next-generation datacenters consume zero water for cooling","url":"https://www.microsoft.com/en-us/microsoft-cloud/blog/2024/12/09/sustainable-by-design-next-generation-datacenters-consume-zero-water-for-cooling/"},{"title":"Microsoft aiming to build 1 million sq ft ...","url":"https://www.datacenterdynamics.com/en/news/microsoft-aiming-to-build-1-million-sq-ft-data-center-in-douglasville-ga-for-east-us-3/"}],"runId":"srun_c0e944bd89584b5431cbaacda6032a79","classifiedAt":"2026-07-02T22:55:59.697Z"},"2578":{"community_note":"Some concern: the mayor sought a one-year moratorium to study zoning and water/wastewater capacity but the City Council rejected it, and residents have opposed a MidAmerican transmission-line upgrade tied to a new data center.","water_impact":"high","ai_evidence":"Google Cloud lists GPUs and TPUs in the Council Bluffs us-central1-a zone, indicating AI training and inference capacity is hosted from this campus/zone; there is no building-specific disclosure tying those accelerators to Southlands Building 6.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Council Bluffs campus-scale use is about 1.3B gallons in 2024 (~3.7 MGD), with water supplied primarily from the Missouri River and the Missouri River alluvium.","grid_note":"A MidAmerican 6.5-mile transmission upgrade is needed for a new Council Bluffs data center, large-user agreements are designed to avoid shifting costs to other customers, Google announced a 615‑MW nuclear PPA to support Iowa cloud/AI operations, and the Council Bluffs site uses 38 diesel backup generators.","citations":[{"title":"Council Bluffs City Council rejects data center moratorium","url":"https://www.radioiowa.com/2026/06/18/council-bluffs-city-council-rejects-data-center-moratorium/"},{"title":"Council Bluffs council denies proposed moratorium on new ...","url":"https://www.kmaland.com/news/council-bluffs-council-denies-proposed-moratorium-on-new-data-centers/article_57610dda-a991-41c5-99a5-d4bd772cd936.html"},{"title":"Council Bluffs mayor's push to pause new data center ...","url":"https://www.3newsnow.com/council-bluffs/council-bluffs-mayors-push-to-pause-new-data-center-construction-rejected-by-city-council"},{"title":"MidAmerican Energy transmission line proposal sparks ...","url":"https://www.wowt.com/2026/06/25/midamerican-energy-transmission-line-proposal-sparks-neighborhood-opposition/"},{"title":"Data Centers and Water Use","url":"https://www.nasuca.org/wp-content/uploads/2025/02/2025-06-10-NASUCA-Data-Centers-Final-Schneider.pdf"}],"runId":"srun_c0e944bd89584b54ec23c17c313be2d6","classifiedAt":"2026-07-02T22:55:59.697Z"},"2580":{"community_note":"Environmental groups including Montgomery Countryside Alliance and CCAN oppose the Dickerson campus over water and clean-power/air impacts; Montgomery County enacted a six-month pause on data-center permitting in June 2026.","water_impact":"moderate","ai_evidence":"Atmosphere positions the Dickerson campus and its platform for AI/ML and cloud workloads, but there are no public disclosures of a named AI tenant or an active GPU supercluster at this site.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Cooling water would come from the Potomac River, and the project says its systems operate at a fraction of the former plant’s historic demand; advocates have highlighted prior higher-withdrawal figures in earlier filings.","grid_note":"Planned load is 360 MW with diesel backup generation noted, and Montgomery County imposed a six‑month permitting pause in June 2026.","citations":[{"title":"Dickerson Data Centers - How Much Water, How ...","url":"https://www.mocoalliance.org/news/dickerson-data-centers-how-much-water-how-much-power-how-much-diesel"},{"title":"Environmental Leaders Demand 100% Clean Power for ...","url":"https://ccanactionfund.org/environmental-leaders-demand-100-clean-power-for-proposed-dickerson-data-center-in-montgomery-county/"},{"title":"Montgomery County Executive Marc Elrich Signs ...","url":"https://www.montgomerycountymd.gov/news/montgomery-county-executive-marc-elrich-signs-executive-order-temporarily-pause-data-center-permitting"},{"title":"Delay, ban or welcome data centers: Montgomery County ...","url":"https://wtop.com/montgomery-county/2026/06/delay-ban-or-welcome-data-centers-montgomery-county-council-hears-from-residents/"},{"title":"Dickerson Data Centers - How Much Water, How ...","url":"https://www.mocoalliance.org/news/dickerson-data-centers-how-much-water-how-much-power-how-much-diesel"}],"runId":"srun_c0e944bd89584b54a67bdf2fbd9e58e7","classifiedAt":"2026-07-02T22:55:59.697Z"},"2584":{"community_note":"Residents organized a petition over environmental impacts and potential utility-bill increases; the effort continued through fall 2025 with residents urging officials for assurances.","water_impact":"moderate","ai_evidence":"Company and city materials describe the project as an AI-ready, hyperscale campus that can support cloud computing and AI technologies, with 116 MW slated for 2027 but no named AI tenants or disclosed GPU superclusters.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day disclosed; materials emphasize 'efficient cooling' and 'rainwater recapture,' while residents raise environmental (incl. water) concerns.","grid_note":"Phase 1 is 116 MW delivering in 2027; Entergy highlights data-center agreements and a 'Fair Share Plus' pledge tied to customer savings and strong commission oversight.","citations":[{"title":"Brandon's $6 billion data center project sparks ...","url":"https://www.wapt.com/article/brandon-data-center-project-petition-environmental-concerns/65973230"},{"title":"Brandon residents want answers, guarantees about data ...","url":"https://mississippitoday.org/2025/09/03/data-center-petition-brandon-mississippi-environment-pollution-energy/"},{"title":"Multi-billion-dollar data center being built in Brandon, but ...","url":"https://www.supertalk.fm/multi-billion-dollar-data-center-being-built-in-brandon-but-residents-still-want-answers/"},{"title":"AVAIO Digital to Build New AI-Ready $6 Billion Data ...","url":"https://www.prnewswire.com/news-releases/avaio-digital-to-build-new-ai-ready-6-billion-data-center-hub-in-brandon-mississippi-302533141.html"},{"title":"Brandon residents want answers, guarantees about data ...","url":"https://mississippitoday.org/2025/09/03/data-center-petition-brandon-mississippi-environment-pollution-energy/"}],"runId":"srun_c0e944bd89584b5460d3f5dee16ce070","classifiedAt":"2026-07-02T22:55:59.697Z"},"2587":{"community_note":"No organized opposition or litigation was found; local coverage depicts the site as a long-standing TV/satellite facility and dispels rumors.","water_impact":"unknown","ai_evidence":"Public sources characterize the site as a broadcast/satellite teleport and transmission/fiber hub, with no mention of GPU clusters, liquid-cooling retrofits, or AI tenant deployments.","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific cooling-water data was found; Minnesota requires a permit for users withdrawing more than 10,000 gallons/day or 1 million gallons/year [1].","grid_note":"No public MW load or utility-upgrade details were found; a directory lists the site as a data center without disclosing power specifics [1].","citations":[{"title":"It's not CIA or FBI, it's TV | News","url":"https://www.presspubs.com/quad/news/it-s-not-cia-or-fbi-it-s-tv/article_5311f1a0-8339-11e1-bcfb-001a4bcf887a.html"},{"title":"Minneapolis Video Content Delivery Solutions","url":"http://encompass.tv/minneapolis/"},{"title":"It's not CIA or FBI, it's TV | News","url":"https://www.presspubs.com/quad/news/it-s-not-cia-or-fbi-it-s-tv/article_5311f1a0-8339-11e1-bcfb-001a4bcf887a.html"},{"title":"Lino Lakes Teleport, Minneapolis, MN","url":"https://clui.org/content/communication-satellite-earth-stations-usa/lino-lakes-teleport-minneapolis-mn"},{"title":"Encompass Digital Media: Your Video Content Delivered","url":"https://encompass.tv/"}],"runId":"srun_c0e944bd89584b541b2c138146c26c15","classifiedAt":"2026-07-02T22:55:59.697Z"},"2594":{"community_note":"Organized opposition and litigation led by SCSJ and SELC over rezoning and impacts succeeded in getting the January 2026 approval voided; the county rebooted the process and ELS indicated it would resubmit.","water_impact":"unknown","ai_evidence":"The project is described as a proposed 1,800-acre large-scale campus near Duke’s Belews Creek, but no tenants or GPU/supercluster deployments are disclosed in the cited sources.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day disclosed; the proposed campus sits along the Dan River and local reporting highlights public concerns about the project.","grid_note":"Large proposed campus near Duke Energy’s Belews Creek; Duke reports 2.7 GW of contracted data centers in Q1 2026 and plans ~14 GW of new capacity by 2031.","citations":[{"title":"Community Groups, Residents File Lawsuit Over Stokes ...","url":"https://www.selc.org/press-release/community-groups-residents-file-lawsuit-over-stokes-county-data-center-rezoning/"},{"title":"Stokes County Walks Back Data Center Rezoning | SCSJ","url":"https://southerncoalition.org/stokes-county-walks-back-data-center-rezoning-creating-opportunity-for-better-process/"},{"title":"Statement from the Stokes County Board of Commissioners","url":"https://www.co.stokes.nc.us/news_detail_T1_R140.php"},{"title":"County reboots process for AI data center despite push back","url":"https://spectrumlocalnews.com/nc/charlotte/news/2026/04/16/stokes-county-data-center-lawsuit"},{"title":"Stokes County planning board presses pause on data ...","url":"https://myfox8.com/news/north-carolina/stokes/stokes-county-planning-board-presses-pause-on-data-center-amendments/"}],"runId":"srun_c0e944bd89584b54d5842e30b252407a","classifiedAt":"2026-07-02T22:55:59.697Z"},"2595":{"community_note":"Active opposition from No Data Center Rural Hall/residents; the Planning Board recommended denial, Rural Hall’s council later reversed to support after annexation talks, and final approval rests with the Forsyth County Commissioners [1][2][3][4].","water_impact":"unknown","ai_evidence":"Reported as a proposed hyperscale data center and discussed in the context of AI-driven data growth, with a 99 MW capacity agreement, but no public evidence of GPU superclusters, liquid cooling deployments, or named AI tenants [1][2].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No gallons/day reported; a developer representative told the Planning Board the facility would \"minimize water\" use, but sourcing and discharge details are not disclosed [1].","grid_note":"Reported 99 MW electric capacity agreement and inclusion of a power substation; no documented transmission upgrades or rate case impacts identified [1][2].","citations":[{"title":"Planning Board recommends denying rezoning for ...","url":"https://www.wfdd.org/politics-government/2026-06-11/planning-board-recommends-denying-rezoning-for-proposed-rural-hall-data-center"},{"title":"Planning Board recommends denying rezoning for ...","url":"https://www.wunc.org/2026-06-11/planning-board-recommends-denying-rezoning-for-proposed-rural-hall-data-center"},{"title":"Rural Hall town leaders reverse course on data center ...","url":"https://myfox8.com/news/north-carolina/forsyth/rural-hall-town-leaders-convene-for-data-center-discussion-residents-return-to-voice-opposition/"},{"title":"Support Project Iron Spur | Forsyth County Petition F-1669","url":"http://supportironspur.com/"},{"title":"Help Stop the Proposed Data Center in Rural Hall, NC","url":"https://www.ruralhallinfo.com/"}],"runId":"srun_c0e944bd89584b548fdc44e3c3a7183b","classifiedAt":"2026-07-02T22:55:59.697Z"},"2602":{"community_note":"No organized opposition has been reported; local Facebook posts note the 500-acre FM 987 project and behind-the-meter power, and the campus remains planned.","water_impact":"unknown","ai_evidence":"Press and directory listings describe TX-1 as an 'AI-ready'/'AI-focused' liquid-cooled campus in Terrell, TX, positioned for AI/HPC workloads, without naming specific GPU superclusters or tenants.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No gallons/day figure or water-source/discharge documentation was found for TX-1; sources only note liquid-cooled infrastructure and provide no Texas-specific aquifer/drought concerns.","grid_note":"Listed at 200 MW leveraging an existing 200MW grid-tied substation, with a hybrid bridge/back-up gas-plus-battery model planned for up to 300 MW.","citations":[{"title":"Prometheus Hyperscale AI data center in Kaufman County","url":"https://www.facebook.com/groups/669979166452016/posts/27181342121555693/"},{"title":"Prometheus hyperscale data center campus in Dallas","url":"https://www.facebook.com/groups/reformdallas/posts/3983314868634938/"},{"title":"Prometheus Hyperscale details plans for Dallas ...","url":"https://www.datacenterdynamics.com/en/news/prometheus-hyperscale-details-plans-for-dallas-data-center-campus/"},{"title":"ENGIE Collaborates with Prometheus Hyperscale to Co- ...","url":"https://www.prnewswire.com/news-releases/engie-collaborates-with-prometheus-hyperscale-to-co-develop-next-generation-ai-ready-data-centers-in-texas-302543202.html"},{"title":"Prometheus Hyperscale: Dallas 3 Data Center","url":"https://baxtel.com/data-center/prometheus-hyperscale-dallas-3"}],"runId":"srun_c0e944bd89584b544a346292836702dc","classifiedAt":"2026-07-02T22:55:59.697Z"},"2603":{"community_note":"Residents have organized around town halls and questioned water use and taxes, while Bosque County approved a reinvestment zone and 30% tax abatement for the project; no DFW10-specific lawsuit or moratorium is evident at this time.","water_impact":"low","ai_evidence":"CyrusOne promotes AI-ready Intelliscale facilities designed for GPU hardware, and DCD reports a 210MW energy deal for the DFW10 campus adjacent to Calpine’s Thad Hill plant; no named tenants or GPU superclusters are disclosed.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Reports indicate no evaporative cooling with closed-loop process water, limited domestic use from Middle Trinity wells, and process water/wastewater trucking, though residents continue to raise aquifer and Lake Whitney concerns.","grid_note":"Phase 1 (190 MW) plus Phase 2 (210 MW) comprise a 400 MW supply arrangement adjacent to Calpine’s Thad Hill Energy Center; no project-specific rate case was identified.","citations":[{"title":"Town hall questions on Lake Whitney data center echo ...","url":"https://wacobridge.org/2026/01/14/town-hall-questions-on-lake-whitney-data-center-echo-mclennan-county-debate/"},{"title":"Commissioners Court Regular Session November 12, 2024","url":"https://www.bosquecounty.gov/AgendaCenter/ViewFile/ArchivedMinutes/_11122024-188"},{"title":"CyrusOne's DFW10 data center water usage and sourcing","url":"https://www.facebook.com/61573760201709/posts/regardless-where-you-stand-on-the-lake-whitney-water-reallocation-study-i-want-f/122152257632792006/"},{"title":"About Us — Middle Trinity Groundwater Conservation District","url":"https://www.middletrinitygcd.org/about-us"},{"title":"CyrusOne signs 210MW energy deal with Calpine for ...","url":"https://www.datacenterdynamics.com/en/news/cyrusone-signs-210mw-energy-deal-with-calpine-for-texas-data-center-campus/"}],"runId":"srun_c0e944bd89584b54048c7945d3184961","classifiedAt":"2026-07-02T22:59:30.853Z"},"2604":{"community_note":"No organized local opposition identified; unrelated noise complaints surfaced in Mitchell County and a separate Michigan lawsuit against “Odessa Partners,” with no Odessa, TX case found.","water_impact":"unknown","ai_evidence":"","grid_impact":"high","ai_class":"not-ai","community_pushback":"none-found","water_note":"No public site-specific data on gallons/day, source, or wastewater/discharge was found in filings reviewed.","grid_note":"207 MW load under a Luminant PPA running through July 2027; no identified filings on new transmission or ratepayer impacts.","citations":[{"title":"Cipher mining data facility in Mitchell County","url":"https://www.facebook.com/groups/524310685801391/posts/1339422234290228/"},{"title":"Legal battle underway over bitcoin mine in eastern UP","url":"https://www.wcmu.org/local-regional-news/2025-07-16/legal-battle-underway-over-bitcoin-mine-in-eastern-up"},{"title":"ARTICLE 8-2: NOISE - City of Odessa, TX - eCode360","url":"https://ecode360.com/39842916"},{"title":"WATER USE REQUIREMENTS FOR DATA CENTERS IN ...","url":"https://compass.beg.utexas.edu/files/publications/Water_Requirements_for_DC_White_Paper.pdf"},{"title":"10-K","url":"https://www.sec.gov/Archives/edgar/data/1819989/000095017023007793/cifr-20221231.htm"}],"runId":"srun_c0e944bd89584b54bee497f442cc76be","classifiedAt":"2026-07-02T22:55:59.697Z"},"2609":{"community_note":"No organized, site‑specific opposition found; countywide concerns over noise/design led Fairfax County to adopt stricter data center zoning rules in Sept. 2024, which remain in effect.","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No facility-specific water use found; regionally, Washington Metropolitan Area data centers consumed about 4 MGD in 2025 and could reach 16 MGD by 2035 (not attributed to this site).","grid_note":"No facility-specific Dominion upgrade record found; the site lists 15,535 sq ft of raised floor, consistent with a modest power footprint.","citations":[{"title":"Board of Supervisors Approves New Data Center Zoning ...","url":"https://www.fairfaxcounty.gov/news/board-supervisors-approve-new-data-center-zoning-ordinance-amendment"},{"title":"Lumen McLean 1 Data Center","url":"https://baxtel.com/data-center/lumen-mclean-1"},{"title":"Lumen: McLean 1 Data Center","url":"https://www.datacenters.com/lumen-mclean-1"},{"title":"Lumen McLean Data Center in Vienna","url":"https://www.datacentermap.com/usa/virginia/vienna-virginia/level3-mclean1/"},{"title":"Service Locations","url":"https://www.cogentco.com/en/network/service-locations?action=search&page=4&continent=&country=&state=VA&metro=&city=&site_type=DC"}],"runId":"srun_c0e944bd89584b54793cada7238cbaff","classifiedAt":"2026-07-02T22:55:59.697Z"},"2616":{"community_note":"Residents voiced opposition during rezoning hearings; commissioners approved two data center buildings and a substation with extra conditions in February 2025.","water_impact":"unknown","ai_evidence":"Reports describe a large data center campus by Trammell Crow/TC Atlanta at 2912 Post Road, but they do not name AI/GPU tenants or specify AI training/inference deployments.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"ARC DRI materials for Douglas Waldrop (DRI 4192) are posted and the TIS notes a “25' UNDISTURBED STATE WATER BUFFER,” but no gallons/day or cooling method are disclosed in the accessible summaries we reviewed.","grid_note":"County and news records show the project includes a dedicated utility substation, and in 2025 the PSC revised Georgia Power’s pricing rules for large-load customers such as data centers; no site-specific MW figure is publicly cited in these sources.","citations":[{"title":"Douglas County commissioners approve data center plans ...","url":"https://www.wsbtv.com/news/local/douglas-county/douglas-county-commissioners-approve-data-center-plans-with-extra-conditions/RO3Q45MUOZDFJPMPXLXJWGZIEQ/"},{"title":"Douglas County residents split on proposed new data center","url":"https://www.wsbradio.com/news/local/douglas-county-residents-split-proposed-new-data-center/3DRIF2BOOBAHRNI6LVHHELY7KU/"},{"title":"2024 Douglas Waldrop DRI 4192","url":"http://documents.atlantaregional.com/Land%20Use/Reviews/ID5450/2024%20Douglas%20Waldrop%20DRI%204192%20-%20Final%20Report.pdf"},{"title":"DRI #4192 DOUGLAS WALDROP DATA CENTER ...","url":"http://documents.atlantaregional.com/Land%20Use/Reviews/ID5450/2024%20Douglas%20Waldrop%20DRI%204192%20-%20TIS.pdf"},{"title":"Seven-building data center campus proposed outside ...","url":"https://www.datacenterdynamics.com/en/news/seven-building-data-center-campus-proposed-outside-atlanta-georgia/"}],"runId":"srun_c0e944bd89584b543394c85614615658","classifiedAt":"2026-07-02T22:55:59.697Z"},"2617":{"community_note":"More than 30 Carroll County residents filed a Superior Court petition against the City of Villa Rica and developers over annexation/rezoning for the ~400-acre Avemore data-center project, alongside a Change.org campaign citing water, grid, noise/air, traffic, wildlife, and property-value concerns, while the city approved a technology-park overlay (4–1) in Jan 2025 and the county extended a 100‑day moratorium.","water_impact":"high","ai_evidence":"No verifiable AI-training or inference deployments are named for Avemore; public materials describe a planned technology/data-center park with up to seven large buildings and first operation circa 2028, without GPU cluster or tenant announcements.","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Projected water demand is 1,150,000 gpd in 2026 rising to 8,337,500 gpd by 2031 (sewer 379,500 to 2,751,375 gpd), with water source/provider and cooling method not named in the city packet.","grid_note":"No project-specific MW load, electric provider, or interconnection/upgrade details are published in the city packet or reporting reviewed; the county extended a 100‑day data-center moratorium without Avemore-specific load figures.","citations":[{"title":"Data centers still stoking local anxiety","url":"https://www.times-georgian.com/news/local/data-centers-still-stoking-local-anxiety/article_9ba950f8-e04a-5a04-b6de-8075fbee8639.html"},{"title":"Carroll County Residents File Petition vs. Developer & City ...","url":"https://gradickcommunications.com/carroll-county-residents-file-petition-vs-developer-city-of-villa-rica-hope-to-stop-development-of-reported-400-acre-data-center-between-hickory-level-van-wert-road/"},{"title":"Petition · Stop the Villa Rica GA Data Center","url":"https://www.change.org/p/stop-the-villa-rica-ga-data-center"},{"title":"Data center moratorium extended | Local News","url":"https://www.times-georgian.com/news/local/data-center-moratorium-extended/article_a7d31b38-3e6a-59d0-8da4-6ac3a17a167c.html"},{"title":"PLANNING AND ZONING MEETING AGENDA","url":"https://cms2.revize.com/revize/villaricaga/Documents/Government/Boards%20and%20Committees/Planning%20and%20Zoning/2024/Agenda/PlanningandZoningCommissionPacket08-20-24031218092024PM1371.pdf"}],"runId":"srun_c0e944bd89584b54edece6f9a6c3ceed","classifiedAt":"2026-07-02T22:55:59.975Z"},"2619":{"community_note":"Town records show no one spoke at the PZ-25-34 public hearing, and later Town/press updates note resident questions but state no data‑center proposal is currently pending.","water_impact":"unknown","ai_evidence":"No public reporting identifies named AI tenants or GPU training clusters at the Florence site; EdgeCore markets its campuses as built for large cloud and AI workloads, indicating AI‑readiness rather than a confirmed AI deployment.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No gallons/day disclosed in Town materials reviewed; a planning update notes utility connections would be determined/assumed as the project moves forward, with no discharge details provided.","grid_note":"Planned at ~720 MW (ten 72‑MW buildings) with four substations, indicating major new high‑voltage infrastructure requirements.","citations":[{"title":"Community Development Department Monthly Report","url":"https://www.florenceaz.gov/wp-content/uploads/documents/DeptReport/CD/2025/10/10a.%20Community%20Development.pdf"},{"title":"Town - ℹ️ Florence Tech Park – Project Update & ...","url":"https://www.facebook.com/townofflorence/photos/%E2%84%B9%EF%B8%8F-florence-tech-park-project-update-answering-your-data-center-questionsweve-re/1400694582092437/"},{"title":"Florence says it's not currently considering a data center","url":"https://www.pinalcentral.com/florence-says-its-not-currently-considering-a-data-center/article_552cf453-0095-4302-aad8-d1c3376ad6b8.html"},{"title":"December-4-2025-Agenda-Packet-Update-PZ.pdf","url":"https://www.florenceaz.gov/wp-content/uploads/2025/08/December-4-2025-Agenda-Packet-Update-PZ.pdf"},{"title":"EdgeCore: High Density Data Center Solutions","url":"https://edgecore.com/"}],"runId":"srun_c0e944bd89584b54a844fc48bacd18f2","classifiedAt":"2026-07-02T22:59:31.149Z"},"2620":{"community_note":"No site-specific opposition identified; Buckeye residents have a petition to halt approvals over water and utility concerns, while the City says no data centers are operating, under construction, or in permitting.","water_impact":"unknown","ai_evidence":"A trade report notes ALC bought 160 acres at the northeast corner of Johnson Road and Southern Avenue, and a facility listing shows a planned ALC site at W Southern Ave & S Johnson Rd; no AI/GPU tenants or deployments are identified.","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No site-specific gallons/day or cooling design disclosed; Arizona coverage notes “Computing consumes water but zero-water solutions are at hand.”","grid_note":"No site MW/interconnection published; APS says future infrastructure needs are paid for by the data center customers who would use it, not by existing customers.","citations":[{"title":"Data Centers in Buckeye: Understanding the Facts","url":"https://www.buckeyeaz.gov/business-development/economic-development/data-centers-fact-vs-fiction"},{"title":"Halt approval of water-hungry data centers in Buckeye","url":"https://www.change.org/p/halt-approval-of-water-hungry-data-centers-in-buckeye"},{"title":"Data Centers Transforming Buckeye Community Plans","url":"https://www.circleofblue.org/2025/supply/data-centers-a-small-but-growing-factor-in-arizonas-water-budget/"},{"title":"Arizona Land buys 160 acres in Buckeye area of Phoenix ...","url":"https://www.datacenterdynamics.com/en/news/arizona-land-buys-160-acres-in-buckeye-area-of-phoenix-for-data-center-development/"},{"title":"Johnson Road and Southern Avenue Data Center in Phoenix","url":"https://www.datacentermap.com/usa/arizona/phoenix/johnson-road-and-southern-avenue/"}],"runId":"srun_c0e944bd89584b54629d1b9b9b94ebe3","classifiedAt":"2026-07-02T22:55:59.975Z"},"2624":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Chilled-water precision cooling with N+1 is specified for suites, but no gallons/day or source/aquifer details are publicly reported for 6805 Pine.","grid_note":"Listed for up to 3 MW critical load and served by OPPD; OPPD’s 2025 plan cites rising load forecasts from data centers across the system.","citations":[{"title":"Scott Twp. officials vote on preemptive data center zoning ...","url":"https://www.youtube.com/watch?v=FASb2mZj_S0"},{"title":"Scott Twp. approves zoning changes addressing data ...","url":"https://www.thetimes-tribune.com/2026/04/23/scott-twp-approves-zoning-changes-addressing-data-center-solar-farm-development/"},{"title":"Scott Data Center – Infrastructure Built on Trust - Scott Data","url":"https://www.scottdatacenter.com/"},{"title":"Lumen Omaha 1 Data Center | 6805 Pine St.","url":"https://www.datacentermap.com/usa/nebraska/omaha/lumen-omaha-1/"},{"title":"Scott Data Center in Omaha | 6805 Pine St. (20 MW)","url":"https://www.datacentermap.com/usa/nebraska/omaha/scott-data-center/"}],"runId":"srun_c0e944bd89584b541cf531eadf3dbe14","classifiedAt":"2026-07-02T22:59:31.149Z"},"2625":{"community_note":"Regional scrutiny has emerged (e.g., a county moratorium on new data centers), but Lincoln’s project was approved by the City Council in 2019 and no organized lawsuit against the Lincoln site was found to date.","water_impact":"high","ai_evidence":"Google announced the Lincoln data center as part of its Nebraska footprint, and the Nebraska data-center page emphasizes AI and machine learning activity in the state.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"A $10 million dedicated underground pipeline will carry non-contact cooling water from the Lincoln data center, funded by Google.","grid_note":"Reports indicate a potential load greater than LES’s ~800 MW summer demand, implying extraordinary new capacity needs.","citations":[{"title":"Lincoln City Council approves Nebraska data ...","url":"https://www.datacenterdynamics.com/en/news/lincoln-city-council-approves-nebraksa-data-center-for-unnamed-client/"},{"title":"Nebraskans are taking a hard look at data centers - Grist","url":"https://grist.org/energy/nebraskans-are-taking-a-hard-look-at-data-centers/"},{"title":"Construction begins on $10 million wastewater line to ...","url":"https://www.1011now.com/2026/06/04/construction-begins-10-million-wastewater-line-transport-cooling-water-lincoln-data-center-recovery-site/"},{"title":"Water and energy use is growing as data centers are built ...","url":"https://nebraskapublicmedia.org/en/news/news-articles/water-and-energy-use-is-growing-as-data-centers-are-built-across-the-midwest-and-great-plains/"},{"title":"Nebraska, USA – Google Data Center Location","url":"https://datacenters.google/locations/nebraska"}],"runId":"srun_c0e944bd89584b54d74d4f3d9d053029","classifiedAt":"2026-07-02T22:55:59.975Z"},"2631":{"community_note":"A local Facebook group is organizing against the Lewis & Clark Ranch data center proposal in West Richland over water and power concerns; no lawsuit identified to date.","water_impact":"unknown","ai_evidence":"Trammell Crow is exploring a major data center campus at Lewis & Clark Ranch; the cited materials do not confirm GPU deployments, AI tenants, or liquid-cooling specs.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Local reporting states the Port would provide water for drinking and bathroom use, with no disclosed cooling-water plan.","grid_note":"A proposed 912 MW campus is listed as developed by Benton Rural Electric Association in Benton, WA, indicating significant utility coordination and upgrades.","citations":[{"title":"West Richland data center expansion concerns","url":"https://www.facebook.com/groups/885009351019938/posts/961927773328095/"},{"title":"Lewis and Clark Ranch Subarea Plan and Planned Action","url":"https://www.westrichland.org/DocumentCenter/View/1167/Scoping-Summary-Lewis-Clark-Ranch--May-9-PDF"},{"title":"Trammell Crow Company Data Centers and Colocation","url":"https://baxtel.com/data-centers/trammell-crow-company"},{"title":"West Richland Data Center Campus (L0621)","url":"https://www.interconnection.fyi/project/bpa-l0621"},{"title":"West Richland Data Center Campus","url":"https://www.interconnection.fyi/data-center/project/west-richland-data-center-campus-50f7f3e3"}],"runId":"srun_c0e944bd89584b5491a56a8c55fbf7a6","classifiedAt":"2026-07-02T22:55:59.975Z"},"2632":{"community_note":"Tri-City Herald’s editorial board urged stronger safeguards on the Atlas Agro data-center land option, while Richland’s City Council approved the option on Dec. 2, 2025.","water_impact":"unknown","ai_evidence":"Local reporting describes the project as an “AI data center,” but coverage also notes Atlas Agro did not indicate possible customers and provides no public details on GPU clusters or workloads.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"","grid_note":"Reports cite a ~350 MW data-center campus alongside a new 1,200 MW BPA intertie to serve the project.","citations":[{"title":"Richland must demand stronger safeguards from Atlas Agro","url":"https://www.tri-cityherald.com/opinion/editorials/article312608969.html"},{"title":"Richland OKs option agreement for Atlas Agro data center","url":"https://www.tricitiesbusinessnews.com/articles/richland-oks-option-agreement-for-atlas-agro-data-center"},{"title":"Richland OKs option agreement for Atlas Agro data center","url":"https://www.tricitiesbusinessnews.com/articles/richland-oks-option-agreement-for-atlas-agro-data-center"},{"title":"Atlas Agro receives extension for billion-dollar green ...","url":"https://www.applevalleynewsnow.com/news/atlas-agro-receives-extension-for-billion-dollar-green-fertilizer-plant-in-north-richland/article_24f4ae60-a48e-491e-b32a-9c4e46095f8d.html"},{"title":"Richland considers $500M data center to fund fertilizer","url":"https://www.tri-cityherald.com/news/politics-government/article312589925.html"}],"runId":"srun_c0e944bd89584b544bfd80df3fe1f597","classifiedAt":"2026-07-02T22:55:59.975Z"},"2633":{"community_note":"","water_impact":"unknown","ai_evidence":"The solicitation states “Initial production readiness for ~2 MW of compute is targeted for 2028, with potential future expansion to ~40 MW” and that the facility “must support mixed AI training/inference” [1]; coverage notes an AI data center for DOE research LLMs and capability for training [2][3].","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No facility-specific gallons/day, source, or discharge figures were found; procurement/guidance materials reference cooling and WUE metrics rather than quantified water use [1][2].","grid_note":"Load is targeted at ~2 MW by 2028 with potential expansion to ~40 MW [1][2].","citations":[{"title":"PNNL in Richland explores on-site federal AI data center","url":"https://www.tri-cityherald.com/news/local/pacific-northwest-national-lab/article315513483.html"},{"title":"Pacific Northwest National Lab considers building AI data ...","url":"https://www.datacenterdynamics.com/en/news/pacific-northwest-national-lab-considers-building-ai-data-center-for-doe-research-llms/"},{"title":"On-Premises Next-Gen AI Compute Data Center | Bid Banana","url":"https://bidbanana.thebidlab.com/bid/OvNnQ1jIIK9uk8lQ5P4g"},{"title":"6450-01-P","url":"https://www.energy.gov/sites/default/files/2025-04/RFI%20to%20Inform%20Public%20Bids%20to%20Construct%20AI%20Infrastructure%20%28website%20copy%29.pdf"},{"title":"Building More Efficient and Resilient AI Data Centers","url":"https://www.pnnl.gov/projects/building-more-efficient-and-resilient-ai-data-centers"}],"runId":"srun_c0e944bd89584b5406559e2ea2544da0","classifiedAt":"2026-07-02T22:55:59.975Z"},"2638":{"community_note":"Nearly 100 Maysville residents opposed the already-approved data center over notification, water/health concerns, and school proximity, with continuing public meetings.","water_impact":"unknown","ai_evidence":"Northern Data announced a Maysville, GA facility purpose-built for AI and High-Performance Computing, signaling GPU-driven AI workloads rather than traditional colo.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No gallons/day published; materials indicate liquid cooling is planned, but specific water sourcing or discharge details are not disclosed.","grid_note":"Georgia Power requested certification of ~9,900 MW of new resources statewide, but no Maysville-specific interconnection or upgrade filings were located.","citations":[{"title":"Maysville citizens speak out against data center at council ...","url":"https://accessnorthga.com/news/maysville-citizens-speak-out-against-data-center-at-council-meeting"},{"title":"Stop the data center construction in Maysville, Georgia","url":"https://www.change.org/p/stop-the-data-center-construction-in-maysville-georgia"},{"title":"Northern Data Group to Develop Best-in-Class U.S. ...","url":"https://northerndata.de/en/investor-relations/news/northern-data-group-to-develop-best-in-class-us-data-center-for-high-performance-computing"},{"title":"Data Centers & Your Georgia Power Bill | FAQs & Updates","url":"https://www.georgiapower.com/data-centers.html"},{"title":"Northern Data to develop 120MW HPC ...","url":"https://www.datacenterdynamics.com/en/news/northern-data-to-develop-120mw-hpc-data-center-in-georgia/"}],"runId":"srun_c0e944bd89584b54c0adb4717f9a63e5","classifiedAt":"2026-07-02T22:55:59.975Z"},"2663":{"community_note":"Residents near the AWS Canton campus have raised dust, noise, and pollution/air-quality concerns, but reporting shows no Canton-specific lawsuit or organized opposition to date.","water_impact":"moderate","ai_evidence":"AWS announced two Madison County data center complexes under Project Atlas, and Building 12 is listed as an AWS-operated facility, but no building-specific disclosures of GPU superclusters or AI-only workloads were found in reporting.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Local reports estimate about 83 million gallons per year for AWS in Madison County, with initial cooling water from Canton Municipal Utilities and plans to use treated recycled wastewater (“the water you flush”) for the campus.","grid_note":"Entergy tied an additional $300 million in grid upgrades to the AWS partnership and projects over $2 billion in 20‑year customer savings, while contract confidentiality has drawn scrutiny and AWS has sought over 100 additional diesel generators across its two Madison County sites.","citations":[{"title":"Amazon's Canton AI Data Center Brings Dust, Noise and ...","url":"https://www.mississippifreepress.org/amazons-canton-data-center-promises-prosperity-for-neighbors-its-bringing-dust-noise-and-pollution-fears/"},{"title":"A Mississippi subdivision struggles with the data center ...","url":"https://www.arkansasonline.com/news/2026/mar/01/a-mississippi-subdivision-struggles-with-the-data/"},{"title":"Here's how the water you flush could impact AWS in Madison","url":"https://www.wlbt.com/2026/04/30/how-water-you-flush-could-impact-aws-madison/"},{"title":"Where do Amazon's data centers in Mississippi stand?","url":"https://mississippitoday.org/2026/06/09/amazon-data-centers-mississippi/"},{"title":"AI, data centers, and water","url":"https://www.brookings.edu/articles/ai-data-centers-and-water/"}],"runId":"srun_c0e944bd89584b547b05d3c0f800c9ea","classifiedAt":"2026-07-02T22:55:59.975Z"},"2669":{"community_note":"No organized opposition identified; officials welcomed the project while a nearby resident cited noise/privacy concerns; no lawsuits or moratoria surfaced.","water_impact":"unknown","ai_evidence":"Nscale signed a 10-year, 40 MW colocation deal at the NC-1 AI data center campus [1]; WhiteFiber offers high-density AI/HPC colocation and bare-metal NVIDIA GPUs including H100/H200 with GB200/B200 coming online [2][3], indicating GPU clusters for AI workloads.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No site-specific gallons/day or source/discharge data found; the site uses liquid/direct-to-chip cooling, and statewide reporting notes AI data centers can require millions of gallons/day, but no figure is published for NC-1.","grid_note":"Utility agreement estimates 99 MW peak at 24 kV, with phased delivery (24 MW by ~Sept 1, 2025; 40 MW by ~Apr 1, 2026; 99 MW within four years).","citations":[{"title":"Former Madison manufacturing plant transformed into AI ...","url":"https://www.wxii12.com/article/rockingham-county-former-madison-manufacturing-plant-transformed-into-ai-data-center/70326122"},{"title":"the Rockingham County, North Carolina ...","url":"https://www.rockinghamcountync.gov/newsview.aspx?nid=6493"},{"title":"Direct-to-Chip Cooling for AI and HPC: Key Questions ...","url":"https://www.whitefiber.com/blog/direct-to-chip-cooling"},{"title":"AI data centers would need millions of gallons of North ...","url":"https://www.wral.com/news/local/ai-data-center-water-supply-september-2025/"},{"title":"WhiteFiber and Nscale Announce 10-Year, 40 MW ...","url":"https://www.prnewswire.com/news-releases/whitefiber-and-nscale-announce-10-year-40-mw-colocation-agreement-representing-approximately-865-million-in-total-contract-value-at-nc-1-ai-data-center-campus-302646399.html"}],"runId":"srun_c0e944bd89584b54355de913705370ab","classifiedAt":"2026-07-02T22:55:59.975Z"},"2670":{"community_note":"Some concern but no organized opposition: reporting notes defenses and skepticism around the project and that Duke began site work two weeks after the city adopted a two‑month moratorium, with no lawsuits or zoning fights reported.","water_impact":"unknown","ai_evidence":"News reports describe a two‑story GPU center for university research, and Duke operates advanced GPU resources for deep learning and HPC workloads.","grid_impact":"low","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No gallons/day figure reported; the facility will connect to Duke’s existing chilled‑water plant/one of its three chilled‑water plants.","grid_note":"Initial electrical load is 1.5 MW and the site is near a Duke electric substation, with no reporting of new transmission or generation tied to the project.","citations":[{"title":"North Carolinians Question Duke University's Planned Data ...","url":"https://www.govtech.com/education/higher-ed/north-carolinians-question-duke-universitys-planned-data-center"},{"title":"Can Duke University's small AI data center ever be ...","url":"https://www.aol.com/news/duke-university-small-durham-data-185557000.html"},{"title":"Duke construction begins for data center on campus","url":"https://spectrumlocalnews.com/nc/charlotte/news/2026/06/17/duke-university-data-center-"},{"title":"Duke starts construction on data center near Central Campus","url":"https://dukechronicle.com/article/duke-university-begins-construction-data-center-central-campus-ai-gpu-water-energy-sustainable-climate-commitment-20260601"},{"title":"Duke University begins building AI data center in Durham","url":"https://www.newsobserver.com/news/business/article315998319.html"}],"runId":"srun_c0e944bd89584b54efb60762b2bb6bac","classifiedAt":"2026-07-02T22:55:59.975Z"},"2676":{"community_note":"Active local opposition from residents and the Appomattox Data Center Watch over water use, transparency, and neighborhood impacts; protests occurred in 2026 and the project remains approved/pre-construction with no lawsuits reported.","water_impact":"unknown","ai_evidence":"AVAIO describes the site as a hyperscale campus built so \"AI and cloud workloads scale faster\" and designed for \"AI, HPC, and cloud deployments,\" but no specific AI tenants or GPU superclusters have been publicly announced as of July 2026.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No official gallons/day figure is publicly available; local coverage notes resident concerns about 'water usage' and potential impacts, but provides no verified consumption or sourcing details.","grid_note":"300 MW is confirmed from CVEC and Dominion with a long-term path to 1,000 MW baseload for the campus.","citations":[{"title":"Data Centers spark protests in Appomattox County","url":"https://www.wsls.com/news/local/2026/03/24/data-centers-spark-protests-in-appomattox-county/"},{"title":"$3B data center planned on 452 acres in Appomattox ...","url":"https://wset.com/news/local/3b-data-center-planned-on-452-acres-in-appomattox-county-sparking-community-pushback"},{"title":"Appomattox residents concerned about planned data center","url":"https://www.wdbj7.com/2026/02/24/appomattox-residents-concerned-about-planned-data-center/"},{"title":"Appomattox Data Center Watch","url":"https://www.facebook.com/groups/appomattoxdatacenterwatch/"},{"title":"$3B data center planned on 452 acres in Appomattox ...","url":"https://wset.com/news/local/3b-data-center-planned-on-452-acres-in-appomattox-county-sparking-community-pushback"}],"runId":"srun_c0e944bd89584b54aa0e22b59e167eb1","classifiedAt":"2026-07-02T22:55:59.975Z"},"2677":{"community_note":"Residents on St. Pauls Road protested over impacts after the county approved the Dahlgren West campus in 2025; no litigation specific to this project was reported.","water_impact":"low","ai_evidence":"Marketed as a 1.2GW, 10-building hyperscale data center campus (~6.8 million sq ft) with air-cooling and no public AI-tenant or GPU supercluster disclosures.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Air-cooled campus; an on-site 200,000-gallon water tower exists, and while initial potable supply may be via temporary wells, groundwater is prohibited for water-cooling of data center equipment.","grid_note":"Planned at 1,200 MW, the campus will likely need new transmission lines and substations per Dominion’s >50 MW guidance.","citations":[{"title":"'This should've happened last year:' King George residents ...","url":"https://www.fredericksburgfreepress.com/2026/06/03/this-shouldve-happened-last-year-king-george-residents-protest-already-approved-data-centers/"},{"title":"Oasis Digital Properties gets greenlight for 1.2GW ...","url":"https://www.datacenterdynamics.com/en/news/oasis-digital-properties-gets-greenlight-for-12gw-data-center-in-king-george-county-virginia/"},{"title":"Open house Wednesday to discuss new King George data ...","url":"https://www.fredericksburgfreepress.com/2024/04/17/open-house-wednesday-to-discuss-new-king-george-data-center-project/"},{"title":"King George Board of Supervisors approves 300-acre data ...","url":"https://www.fredericksburgfreepress.com/2026/02/19/king-george-board-of-supervisors-approves-300-acre-data-center-campus/"},{"title":"Oasis Digital Properties gets greenlight for 1.2GW ...","url":"https://www.datacenterdynamics.com/en/news/oasis-digital-properties-gets-greenlight-for-12gw-data-center-in-king-george-county-virginia/"}],"runId":"srun_c0e944bd89584b5464663804ea824c2e","classifiedAt":"2026-07-02T22:59:31.149Z"},"2678":{"community_note":"Local residents and civic groups mounted organized opposition to an additional AWS campus over quality-of-life and land-use concerns, prompting AWS to withdraw that third-campus plan in July 2025 while current campuses (including Lake Anna) proceed.","water_impact":"high","ai_evidence":"Public materials describe Building 7 as a hyperscale AWS facility with no disclosed GPU/Trainium cluster or AI-specific tenant, while AWS’s flagship AI training cluster (Project Rainier) is reported elsewhere, not associated with Lake Anna.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Louisa indicates AWS cooling water will initially come from on‑site wells before a pipeline supplies raw water from the Northeast Creek Reservoir, the county plans a 7 MGD allocation for two AWS campuses, and a separate Northeast Tech Campus permit allows up to 460,000 gpd of treated discharge [1][2][3][4].","grid_note":"44 MW for Building 7 within a campus of at least 420 MW; Virginia created a new rate class for 25 MW+ users and is evaluating an SMR at North Anna to serve growing data‑center demand [1][2][3][4].","citations":[{"title":"Amazon pulls Louisa County data center proposal after ...","url":"https://virginiamercury.com/2025/07/28/amazon-pulls-louisa-county-data-center-proposal-after-strong-resistance/"},{"title":"AWS withdraws plans for third data center campus in ...","url":"https://www.datacenterdynamics.com/en/news/aws-withdraws-plans-for-third-data-center-campus-in-louisa-county-virginia/"},{"title":"Amazon cancels data center in Louisa County","url":"https://virginiabusiness.com/amazon-cancels-data-center-in-louisa-county/"},{"title":"Frequently Asked Questions - CivicPlus.CMS.FAQ","url":"https://www.louisacounty.gov/Faq.aspx?QID=280"},{"title":"Lake Anna Data Center Site Will Mark One Year Anniversary","url":"https://lakeannalife.com/lake-anna-data-center-site-will-mark-one-year-anniversary/"}],"runId":"srun_c0e944bd89584b541ebe56579d84d70f","classifiedAt":"2026-07-02T22:59:31.149Z"},"2680":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"unknown","ai_class":"not-ai","community_pushback":"none-found","water_note":"","grid_note":"","citations":[{"title":"Lumen Data Center in Houston","url":"https://www.datacenters.com/lumen-houston-2"},{"title":"Lumen Houston 4 Data Center","url":"https://baxtel.com/data-center/lumen-houston-4"},{"title":"Growing opposition over data centers continues across ...","url":"https://www.facebook.com/abc13Houston/posts/growing-opposition-over-data-centers-continues-across-southeast-texas-including-/1416711473820540/"},{"title":"Lumen Houston 2 - 7060 Empire Central Dr","url":"https://www.datacentermap.com/usa/texas/houston/twtc-houston/"},{"title":"How to find and fight local data center plans in Houston","url":"https://www.facebook.com/groups/saynotodatacenters/posts/1558249972773169/"}],"runId":"srun_c0e944bd89584b54d9166da616ab4e68","classifiedAt":"2026-07-02T22:55:59.975Z"},"2688":{"community_note":"Residents voiced concerns (water, noise, electric costs) at public forums while the Village Board advanced approvals; no organized lawsuit or moratorium specific to Minooka found.","water_impact":"low","ai_evidence":"Equinix promotes AI‑ready data centers with liquid cooling and GPU access and an NVIDIA‑accelerated AI Factory across 281 data centers, but there is no public Minooka‑specific announcement of GPU superclusters or AI tenants.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Village/open-house materials say cooling water is on a closed loop, and a local clarification notes an earlier 7 MGD request was part of an initial (rejected) water‑cooled concept; no aquifer, drought, or discharge issue is documented for the approved design.","grid_note":"Buildout is reported around 700 MW and will connect to ComEd transmission lines; design timing depended on ComEd’s response, and no facility-specific rate case or curtailment was identified.","citations":[{"title":"Construction of Data Center Campus North of Minooka Will ...","url":"https://www.wcsjnews.com/news/local/construction-of-data-center-campus-north-of-minooka-will-start-in-few-weeks/article_bbcd13cf-9939-454f-b966-06d1df174f45.html"},{"title":"Data Center Open House | Minooka","url":"https://www.minooka.com/news/posts/data-center-open-house/"},{"title":"Equinix: Minooka CH8 Data Center","url":"https://baxtel.com/data-center/equinix-minooka-ch8"},{"title":"Facts and Clarifications About the Minooka Data Center Project","url":"https://www.stellforminooka.com/2025/10/15/facts-and-clarifications-about-the-minooka-data-center-project/"},{"title":"Global Data Center Solutions for Critical Infrastructure","url":"https://www.equinix.com/product-solutions/data-center"}],"runId":"srun_c0e944bd89584b54936e8be93af13edd","classifiedAt":"2026-07-02T22:55:59.975Z"},"2691":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No gallons/day or source data were reported for DEN-550; the facility page lists location and services but no cooling-water figures.","grid_note":"Listed at 2.2 MW on Inflect and 2.483 MW on a public-record listing, with no public evidence of utility upgrades or rate cases tied to this address.","citations":[{"title":"11:11 Systems DEN550: See All services with pricing","url":"https://inflect.com/building/550-east-84th-avenue-thornton/11-11-systems/datacenter/den550"},{"title":"SunGard - Denver Data Center (DEN-550)","url":"https://cloudandcolocation.com/datacenters/sungard-denver-data-center-den-550/"},{"title":"SunGard - Denver Data Center (DEN-550)","url":"https://cloudandcolocation.com/datacenters/sungard-denver-data-center-den-550/"},{"title":"Building Permits & Inspections","url":"https://www.thorntonco.gov/business-development/city-development/building-permits-inspections"},{"title":"11:11 Systems DEN550: See All services with pricing","url":"https://inflect.com/building/550-east-84th-avenue-thornton/11-11-systems/datacenter/den550"}],"runId":"srun_c0e944bd89584b544dc6a1589c07a202","classifiedAt":"2026-07-02T22:59:31.149Z"},"2694":{"community_note":"No organized opposition specific to Southwest Crossing was found in the provided public records; the project (Case No. RZPAD2024-006) is proceeding through Eloy hearings/recommendations with no documented lawsuits or protests to date.","water_impact":"moderate","ai_evidence":"Reports describe a 400MW multi-building campus in Eloy, with no confirmed GPU supercluster or AI-tenant disclosures in the sources reviewed.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"The site lies in Arizona’s Pinal AMA, where state modeling found 'significant projected unmet' groundwater supplies for Assured Water Supply purposes, indicating a water‑stressed context for new demand.","grid_note":"Planned at 400 MW, the campus would be a very large load; APS has proposed a 45% rate increase for extra‑large energy users to fund needed infrastructure for such growth.","citations":[{"title":"Case No.: RZPAD2024-006 Page 1 of 7","url":"https://civicclerk.blob.core.windows.net/stream/ELOYAZ/447a97b7-7825-4cba-b6ac-9390989ea965.pdf?skoid=4bbe46ab-1a20-44be-a870-cd3e30527573&sktid=c26badce-f52a-4b54-be8d-3d9cd095d0e4&skt=2026-05-10T08%3A03%3A59Z&ske=2026-05-11T08%3A03%3A59Z&sks=b&skv=2022-11-02&sv=2022-11-02&st=2026-05-10T19%3A50%3A45Z&se=2026-05-17T19%3A50%3A45Z&sr=b&sp=rw&sig=zFkFp%2B2RSaSJKg2HQN54t0E5ihUvlC48HVxRZz1DMjA%3D"},{"title":"Citizen Participation Report","url":"https://civicclerk.blob.core.windows.net/stream/ELOYAZ/4300efea-b6e0-4eb0-9600-d1630797483e.pdf?skoid=4bbe46ab-1a20-44be-a870-cd3e30527573&sktid=c26badce-f52a-4b54-be8d-3d9cd095d0e4&skt=2026-05-10T08%3A03%3A59Z&ske=2026-05-11T08%3A03%3A59Z&sks=b&skv=2022-11-02&sv=2022-11-02&st=2026-05-10T19%3A50%3A45Z&se=2026-05-17T19%3A50%3A45Z&sr=b&sp=rw&sig=CHEahZAtZ90x3f1VIAa4u4qLXUxt7AEcAvlr7KV2mJ8%3D"},{"title":"Planning & Zoning Commission - CivicClerk","url":"https://eloyaz.portal.civicclerk.com/event/2941/files/agenda/3725"},{"title":"Ryan Companies 2MSF Industrial Plan Pivots to $687M ...","url":"https://azbex.com/planning-development/ryan-companies-2msf-industrial-plan-pivots-to-687m-data-center/"},{"title":"Overdraft, Safe-Yield, and the Management Goals in ...","url":"https://www.azwater.gov/sites/default/files/media/ManagementGoalsReport2022_0.pdf"}],"runId":"srun_c0e944bd89584b54081ebc8bf2b8bf33","classifiedAt":"2026-07-02T23:02:29.914Z"},"2696":{"community_note":"Local residents (including a petition drive led by Josh Lillyman) raised concerns at Kearney City Council about data-center impacts such as noise and utilities at Tech oNE Crossing; officials took public comment and discussed issues, with no MARA Kearney–specific lawsuit identified.","water_impact":"unknown","ai_evidence":"","grid_impact":"high","ai_class":"not-ai","community_pushback":"some-concern","water_note":"No public gallons/day or discharge details were found for MARA Kearney; residents have raised general water/contamination concerns in council discussions of data-center growth at Tech oNE Crossing.","grid_note":"100 MW load roughly matches Kearney’s ~110 MW peak, and NPPD is building a $12.5M substation to serve the site.","citations":[{"title":"Petition circulated, residents to speak at Kearney city ...","url":"https://ruralradio.com/krvn/news/petition-circulated-residents-to-speak-at-kearney-city-council-meeting-on-data-center-concerns/"},{"title":"Data center concerns spark debate at Kearney City Council ...","url":"https://central.newschannelnebraska.com/story/285852270/data-center-concerns-spark-debate-at-kearney-city-council-meeting"},{"title":"Future data center growth in Kearney is sparking ...","url":"https://www.facebook.com/newschannelnebraska/posts/future-data-center-growth-in-kearney-is-sparking-discussion-as-city-leaders-resp/1564626782338762/"},{"title":"Compute North announces 70MW expansion of ...","url":"https://www.datacenterdynamics.com/en/news/compute-north-announces-70mw-expansion-data-center-campus-nebraska/"},{"title":"Kearney - DCD","url":"https://www.datacenterdynamics.com/en/tags/kearney/"}],"runId":"srun_c0e944bd89584b54c276dafab66833c4","classifiedAt":"2026-07-02T22:55:59.975Z"},"2699":{"community_note":"No organized opposition specific to the Duos Edge AI Lubbock EDC was found; the City of Lubbock is soliciting general public input on large-scale data centers via a July 7, 2026 meeting [1][2].","water_impact":"low","ai_evidence":"Press and industry notices for the 1634 18th St. open house say the Lubbock EDC supports connectivity and AI workloads as part of a modular edge model [1][2].","grid_impact":"low","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"Reports say the site uses no water for cooling and is cooled by air rather than cooling towers; no gallons/day or discharge issues were published [1].","grid_note":"Context: ERCOT peak demand records are in the tens of GW and LP&L customers joined ERCOT, with no reported LP&L upgrades or rate cases tied to this small EDC [1][2].","citations":[{"title":"City of Lubbock Seeks Public Input on Large-Scale Data ...","url":"https://www.mylubbock.us/CivicAlerts.aspx?AID=66"},{"title":"Public Input on Data Centers | Lubbock, TX","url":"https://www.mylubbock.us/1110/Public-Input-on-Data-Centers"},{"title":"Lubbock Duos Edge data center opens, what does it do","url":"https://www.lubbockonline.com/story/business/2026/06/01/lubbock-duos-edge-data-center-opens-what-does-it-do-isd-ai-storage-water-use-mcdonalds/90222162007/"},{"title":"Duos Edge AI Opens Two Small Data Centers in Central ...","url":"https://www.idcnova.com/html/1/59/153/5988.html"},{"title":"Duos Edge AI to Host Lubbock Edge Data Center Open ...","url":"https://www.globenewswire.com/news-release/2026/05/19/3297502/0/en/duos-edge-ai-to-host-lubbock-edge-data-center-open-house.html"}],"runId":"srun_c0e944bd89584b547ccef02db7d1d159","classifiedAt":"2026-07-02T22:56:00.253Z"},"2700":{"community_note":"Local activists and residents pressed city leaders over water and power impacts, and Harlingen enacted a 120‑day moratorium on data center applications while the proposed Eneus/RGV campus sits on county land just east of the airport [1][2][3].","water_impact":"moderate","ai_evidence":"Reporting describes a planned 2GW hyperscale campus with 16 data halls, but no public sources name GPU tenants or training-cluster deployments for this site [1][2].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Local reporting says Harlingen WaterWorks agreed to provide up to about 4.6 million gallons per day of sewer/effluent water for the proposed site [1].","grid_note":"Marketed at up to 2,000 MW total capacity, with AEP‑Texas and ERCOT studying the load and Eneus stating it had secured up to 1 GW of interconnection capacity [1][2][3].","citations":[{"title":"Following push by activists, Harlingen to study impacts of ...","url":"https://www.valleycentral.com/news/local-news/following-push-by-activists-harlingen-to-study-impacts-of-potential-data-centers-on-community/"},{"title":"Harlingen officials approve 120-day moratorium to study ...","url":"https://www.krgv.com/news/harlingen-officials-approve-120-day-moratorium-to-study-impact-of-potential-data-centers/"},{"title":"Harlingen officials visit data centers as city proposes ...","url":"https://myrgv.com/local-news/2026/03/26/harlingen-officials-visit-data-centers-as-city-proposes-moratorium/"},{"title":"Proposed Harlingen data center would use 4.6M gallons of ...","url":"https://myrgv.com/local-news/2026/01/07/proposed-harlingen-data-center-would-use-4-6m-gallons-of-sewer-water-per-day/"},{"title":"Rio Grande Valley leaders need more water to sustain ...","url":"https://www.texastribune.org/2025/05/15/texas-water-rio-grande-valley-drought/"}],"runId":"srun_c0e944bd89584b5437270f9cb1e31eb6","classifiedAt":"2026-07-02T22:56:00.253Z"},"2701":{"community_note":"No site-specific organized opposition, litigation, zoning fight, or noise/air-quality complaint was found for 365 Data Centers Herndon at 13873 Park Center Rd; Fairfax County’s 2024 zoning debates did not mention this site.","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No facility-specific gallons/day or source-stress details were reported; listings show a small colocation site (~0.80 MW, 12,000 sq ft), and a Potomac River Basin study discusses data center water use broadly without naming this address.","grid_note":"Reported at ~0.83 MW total power; no site-specific Dominion Energy upgrade or curtailment record was identified in public materials.","citations":[{"title":"13873 Park Center Rd, Herndon, VA 20171","url":"https://www.cityfeet.com/cont/listing/13873-park-center-rd-herndon-va-20171/cs4070566"},{"title":"Board approves new data center zoning regulations","url":"https://www.fairfaxtimes.com/articles/fairfax_county/board-approves-new-data-center-zoning-regulations/article_bfa9bb44-7125-11ef-b02f-a76d56eb98da.html"},{"title":"Data Centers – Adopted Zoning Ordinance Amendment","url":"https://www.fairfaxcounty.gov/planning-development/data-centers"},{"title":"Herndon - 365 Data Centers","url":"https://www.ocolo.io/colocation/365-data-centers/herndon/"},{"title":"Data Centers and Water Use in the Potomac River Basin","url":"https://www.potomacriver.org/focus-areas/water-resources-and-drinking-water/water-resources/planning/data-centers-and-water-use-in-the-potomac-river-basin/"}],"runId":"srun_c0e944bd89584b54f17f25cfddb6fa87","classifiedAt":"2026-07-02T22:56:00.253Z"},"2704":{"community_note":"No NVA05B-specific organized opposition was found; NVA05A/B advanced through rezoning, while separate county opposition and litigation target the unrelated Prince William Digital Gateway project (now halted on appeal).","water_impact":"unknown","ai_evidence":"NVA05B is shown as a 48 MW, ~340,000 SF building under construction with hyperscale characteristics and no named AI tenant or GPU cluster announcement.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No NVA05B gallons/day are disclosed; the local utility notes data center water use varies by facility size and cooling type.","grid_note":"NVA05B is listed at 48 MW and the Manassas NVA05 campus has $900M financing toward a 200 MW build, in a Dominion (PJM) zone where peak load has surged and state analysts flag data center-driven demand and potential bill impacts.","citations":[{"title":"Stack gets rezoning approval for Gainesville data center in ...","url":"https://www.datacenterdynamics.com/en/news/stack-gets-rezoning-approval-for-gainesville-data-center-in-northern-virginia/"},{"title":"Prince William Digital Gateway project halted by Virginia ...","url":"https://www.nbcwashington.com/news/local/prince-william-digital-gateway-project-halted-by-virginia-court-of-appeals/4084112/"},{"title":"Water and Wastewater Treatment Capacity FAQ","url":"https://princewilliamwater.org/our-customers/residential-customers/frequently-asked-questions/water-quality-frequently-asked-questions/water-wastewater-capacity"},{"title":"What's in the water? What we know and don't ...","url":"https://virginiamercury.com/2026/06/01/whats-in-the-water-what-we-know-and-dont-know-about-data-center-water-discharge-in-virginia/"},{"title":"STACK Infrastructure NVA05B | 9001 Freedom Center ...","url":"https://datacenterhawk.com/marketplace/providers/stack-infrastructure/9001-freedom-center-boulevard/nva05b"}],"runId":"srun_c0e944bd89584b54abd7433efc1a3650","classifiedAt":"2026-07-02T22:56:00.253Z"},"2705":{"community_note":"No organized opposition or lawsuit was found for the existing QTS Manassas DC1/Godwin Drive campus; opposition and litigation target the separate Prince William Digital Gateway, which QTS has appealed to the Virginia Supreme Court after lower-court rezoning defeats.","water_impact":"low","ai_evidence":"","grid_impact":"high","ai_class":"not-ai","community_pushback":"none-found","water_note":"No DC1-specific gallons reported; QTS says its water-free cooling 'saves more than 48 million gallons of water annually per data center' and a closed-loop site 'uses about 600,000 gallons of water annually' [1][2].","grid_note":"QTS lists the Manassas campus at '190+ MW of critical campus capacity' on a 105-acre, six-building plan, and an interconnection entry shows a 100–250 MW project at 9400 Godwin Drive with Dominion Energy [1][2].","citations":[{"title":"Legal battle over massive data center campus continues ...","url":"https://wjla.com/news/local/prince-william-county-digital-gateway-datacenter-appeal-lawsuit-rezoning-rural-farmland-manassas-battlefield-community-opposition-judges-construction-halted-developer-qts-compass-blackstone-supreme-virginia-economy-environment-landuse"},{"title":"American Battlefield Trust Urges Virginia Supreme Court to Reject Manassas Data Center Developer Appeal | American Battlefield Trust","url":"https://www.battlefields.org/news/american-battlefield-trust-urges-virginia-supreme-court-reject-manassas-data-center-developer"},{"title":"2023 Sustainability Report","url":"http://q.com/wp-content/uploads/2025/07/2023-Sustainability-Report.pdf"},{"title":"Manassas DC1 - QTS Data Centers","url":"https://www.ocolo.io/colocation/qts-data-centers/manassas-dc1/"},{"title":"QTS Data Center in Manassas Virginia","url":"https://www.datacenters.com/qts-manassas-1"}],"runId":"srun_c0e944bd89584b54662f5961ddfa4a35","classifiedAt":"2026-07-02T22:56:00.253Z"},"2706":{"community_note":"No organized opposition specific to QTS Manassas DC3 was found; regionally, opponents are actively litigating against the separate QTS/Blackstone Prince William Digital Gateway megacampus, with QTS the remaining defendant and appealing after courts halted the project.","water_impact":"low","ai_evidence":"No credible reports of GPU superclusters, AI tenants, or liquid‑cooling retrofits at DC3; the Manassas campus is ~190 MW on ~105 acres and DC3 is a 140,000‑SF facility, consistent with cloud‑hyperscale/wholesale rather than confirmed AI.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"QTS states its water‑free cooling uses zero water for operational cooling and saves more than 48 million gallons annually per data center; no DC3‑specific aquifer, drought, or discharge concerns were found.","grid_note":"Campus marketed around 190 MW with a Manassas QTS project listed at 143.391 MW, and the Virginia SCC created a new rate class for large electricity users including data centers.","citations":[{"title":"Virginia data center fight offers crucial lessons","url":"https://technical.ly/civics/digital-gateway-data-center-battle-virginia-supreme-court/"},{"title":"Legal battle over massive data center campus continues ...","url":"https://wjla.com/news/local/prince-william-county-digital-gateway-datacenter-appeal-lawsuit-rezoning-rural-farmland-manassas-battlefield-community-opposition-judges-construction-halted-developer-qts-compass-blackstone-supreme-virginia-economy-environment-landuse"},{"title":"QTS: Manassas DC4 Data Center News","url":"https://baxtel.com/news/data-centers/qts-manassas-dc4?page=4"},{"title":"Pioneering Water Efficiency and Sustainability in Data ...","url":"https://q.com/resources/pioneering-water-efficiency-and-sustainability-in-data-center-operations/"},{"title":"QTS Data Centers: Home","url":"https://q.com/"}],"runId":"srun_c0e944bd89584b54208774d09f06fc9a","classifiedAt":"2026-07-02T22:56:00.253Z"},"2707":{"community_note":"No organized opposition specific to Corscale Gainesville Crossing/Bldg 1 was found; county activism and lawsuits focus on the separate Digital Gateway mega-campus, which has been paused amid litigation [1].","water_impact":"low","ai_evidence":"The site is described as a 72 MW hyperscale facility within a large Gainesville Crossing campus, with efficiency/WUE focus and air-cooled chiller solutions, but no public sources name an AI GPU tenant or supercluster at Bldg 1 [1][2][3][4].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No gallons/day reported; materials highlight WUE and water-conservation features and the use of air-cooled chiller solutions at the 72 MW facility [1][2].","grid_note":"Bldg 1 is a 72 MW load, and Virginia’s SCC created a new large-load rate class and approved a Dominion rate hike and gas plant amid rising data center demand [1][2][3].","citations":[{"title":"Virginia data center fight offers crucial lessons","url":"https://technical.ly/civics/digital-gateway-data-center-battle-virginia-supreme-court/"},{"title":"GCDC Campus","url":"https://affiniuscapital.com/projects/gcdc/"},{"title":"Corscale Data Centers approves IST of Airedale by ...","url":"https://www.modine.com/news/corscale-data-centers-approves-ist-of-airedale-by-modine-cooling-solutions-on-72mw-gainesville-crossing-data-center/"},{"title":"Corscale is under construction on its third building at ...","url":"https://corscale.com/press-releases/corscale-is-under-construction-on-its-third-building-at-gainesville-crossing/"},{"title":"Corscale tops out 72MW Gainesville Crossing facility in ...","url":"https://www.datacenterdynamics.com/en/news/corscale-tops-out-72mw-gainesville-crossing-facility-in-northern-virginia/"}],"runId":"srun_c0e944bd89584b54dadf920314a5889b","classifiedAt":"2026-07-02T22:56:00.253Z"},"2708":{"community_note":"No Yondr/Rollins-Ford-specific lawsuit surfaced; nearby Devlin Technology Park rezonings in Bristow drew organized resident opposition and litigation, which was dismissed in 2024 and upheld for the county/developer on appeal in Sept. 2025.","water_impact":"unknown","ai_evidence":"Third-party facility pages say the Bristow campus at 12981 Rollins Ford Rd delivers cloud capacity for hyperscale clients and is 60 MW under construction; no disclosures of GPU superclusters or AI-specific tenants were found.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No facility-specific gallons/day reported; Prince William Water says data centers consumed approximately 3.8% of average daily demand and 10.1% of maximum daily demand in 2025.","grid_note":"Reported at 60 MW, and Dominion plans the Nokesville–Bristow 230‑kV transmission project “to support this demand” in Prince William County.","citations":[{"title":"Prince William County residents sue county over recently ...","url":"https://wjla.com/news/local/prince-william-county-residents-sue-data-center-plan-stanley-martin-homes-supervisors-board-county-bristow-virginia-defend-devlin-corporation-opposition-legal-trial-combat-challenge-community-technology-park"},{"title":"Judge dismisses lawsuit challenging Bristow data centers | News | princewilliamtimes.com","url":"https://www.princewilliamtimes.com/news/judge-dismisses-lawsuit-challenging-bristow-area-data-center-complex/article_aaa873e4-2480-11ef-a6ee-4756f1583bc7.html"},{"title":"Residents lose appeal in the fight against Devlin Park data ...","url":"https://www.wusa9.com/article/news/local/data/residents-lose-appeal-against-devlin-park-data-center/65-3431b7c1-e570-4da5-847d-e07d2e8480e6"},{"title":"Water and Wastewater Treatment Capacity FAQ","url":"https://princewilliamwater.org/our-customers/residential-customers/frequently-asked-questions/water-quality-frequently-asked-questions/water-wastewater-capacity"},{"title":"Yondr: Bristow Bldg 2 Data Center","url":"https://baxtel.com/data-center/yondr-bristow-bldg-2"}],"runId":"srun_c0e944bd89584b549537a8729c81213c","classifiedAt":"2026-07-02T22:59:31.436Z"},"2710":{"community_note":"No organized East Wenatchee/Pangborn opposition found; Microsoft highlights generator/HVAC noise mitigation, and local reporting focuses on fiscal impacts and approvals.","water_impact":"unknown","ai_evidence":"Listings show Microsoft Azure at 875 Urban Industrial Wy in the West US 2 region; no public EAT03-specific GPU supercluster or AI-tenant announcements were identified.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No EAT03 gallons/day were found; Microsoft says next‑generation datacenters consume zero water for cooling, but this is not confirmed for this site.","grid_note":"Douglas County PUD entered a power-delivery/interconnection arrangement with Microsoft and is replacing transmission lines to accommodate an “extremely heavy” load.","citations":[{"title":"Microsoft datacenters in Washington","url":"https://local.microsoft.com/wp-content/uploads/2025/10/Microsoft-datacenters-in-Washington.pdf"},{"title":"New report reveals fiscal impact of Microsoft's data centers","url":"https://www.wenatcheeworld.com/business/exclusive-new-report-reveals-fiscal-impact-of-microsoft-s-data-centers-in-ncw/article_e2550003-aa2b-4817-a266-136445c47881.html"},{"title":"Next-generation datacenters consume zero water for cooling","url":"https://www.microsoft.com/en-us/microsoft-cloud/blog/2024/12/09/sustainable-by-design-next-generation-datacenters-consume-zero-water-for-cooling/"},{"title":"Microsoft Azure: East Wenatchee","url":"https://www.datacenters.com/microsoft-azure-east-wenatchee"},{"title":"Microsoft East Wenatchee Campus","url":"https://www.datacentermap.com/usa/washington/wenatchee/microsoft-east-wenatchee/"}],"runId":"srun_c0e944bd89584b544f8fc7a5faf60e41","classifiedAt":"2026-07-02T22:56:00.253Z"},"2715":{"community_note":"Nearly 3,000 Chaska residents have petitioned against the data center over water-pollution and flooding concerns, while city approvals continue to move forward.","water_impact":"moderate","ai_evidence":"No confirmed AI tenants or GPU deployments have been announced; the site is presented as a carrier‑neutral hyperscale campus rather than an AI‑specific build.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Peak use is about 1.5 million gallons/day drawn from Chaska’s groundwater system.","grid_note":"Planned load up to ~200 MW, served in a municipal utility area (City of Chaska Electric); approvals remain in process.","citations":[{"title":"Chaska MN data center community concerns","url":"https://www.facebook.com/groups/1244766996510704/posts/1765024041151661/"},{"title":"How much water will data centers in Minnesota consume?","url":"https://www.startribune.com/latest-twist-in-minnesota-data-center-debate-how-much-water-they-will-consume/601324675"},{"title":"Minnesota Data Center Debate Turns to Water Consumption","url":"https://www.govtech.com/products/minnesota-data-center-debate-turns-to-water-consumption"},{"title":"CloudHQ planning 180MW data center campus in ...","url":"https://www.datacenterdynamics.com/en/news/cloudhq-planning-180mw-data-center-campus-in-minneapolis-minnesota/"},{"title":"CloudHQ MSP1 Data Center in Minneapolis (180 MW)","url":"https://www.datacentermap.com/usa/minnesota/minneapolis/cloudhq-msp1/"}],"runId":"srun_c0e944bd89584b5409e7dd1488c8761e","classifiedAt":"2026-07-02T22:59:31.436Z"},"2722":{"community_note":"Residents are actively opposing the project over environmental/cost concerns, and it remains under Conditional Use Hearing #25-04 with hearings continuing as of June 16, 2026.","water_impact":"moderate","ai_evidence":"Listing materials call it a high-density, AI-ready campus, but no public documentation of GPU superclusters or named AI tenants has been reported.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Reports cite up to 1.3 million gallons/day and service by public water, with officials noting these centers require significant water for cooling.","grid_note":"Proposed at 750 MW, with local coverage noting questions about cost and ongoing conditional-use hearings.","citations":[{"title":"Conditional Use Hearings","url":"https://www.limerickpa.org/437/Conditional-Use-Hearings"},{"title":"Hearing On 'Project Laurel' Data Center Set In Limerick ...","url":"https://patch.com/pennsylvania/limerick/hearing-project-laurel-data-center-set-limerick-crowds-expected"},{"title":"Residents denied entry to hearing as Limerick data center ...","url":"https://www.wfmz.com/news/area/southeastern-pa/upper-montgomery-county/should-i-be-concerned-residents-denied-entry-to-hearing-as-limerick-data-center-fight-intensifies/article_d1a5055f-df2b-43ab-831f-f7e92c413bb5.html"},{"title":"Concerns about Limerick data center's location and ...","url":"https://www.facebook.com/groups/909733758219927/posts/1034476432412325/"},{"title":"Conditional Use Hearings","url":"https://www.limerickpa.org/437/Conditional-Use-Hearings"}],"runId":"srun_c0e944bd89584b54c43ffb47bc37361f","classifiedAt":"2026-07-02T22:59:31.436Z"},"2723":{"community_note":"Residents organized as STOP Archbald Data Centers and others oppose Wildcat Ridge over water use, grid strain, and zoning impacts, and the project remains in Archbald’s conditional-use hearings with a sixth hearing set for July 6, 2026.","water_impact":"high","ai_evidence":"The project is publicly described as an AI data center campus, including by industry listings and trackers, but no tenants or GPU supercluster details have been disclosed.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Reported demand is roughly 598,000 gpd on average and up to 3,310,149 gpd at peak, with possible mine-water sourcing under discussion.","grid_note":"PPL is building the Archbald Mountain transmission project (new 500/230 kV substation, three 230 kV switchyards, ~8 miles of 230 kV lines) and Pennsylvania approved a tariff to shield average ratepayers from some data center costs.","citations":[{"title":"Conditional Use Applications","url":"https://www.archbaldpa.gov/departments/conditional_use_applications/index.php"},{"title":"Wildcat Ridge Data Center Campus faces major opposition ...","url":"https://www.thetimes-tribune.com/2026/03/11/wildcat-ridge-data-center-campus-faces-major-opposition-in-archbald/"},{"title":"STOP Archbald Data Centers","url":"https://stoparchbalddatacenters.notion.site/STOP-Archbald-Data-Centers-32ca4bb7caed8033b6ccc7229baaf465"},{"title":"Wildcat Ridge Data Center in Archbald to use huge ...","url":"https://www.thetimes-tribune.com/2026/01/18/wildcat-ridge-data-center-in-archbald-to-use-huge-amounts-of-power-water/"},{"title":"Archbald Council hears from data center developer eyeing ...","url":"https://www.wvia.org/news/local/2026-01-29/archbald-council-hears-from-data-center-developer-eyeing-500-acre-site-possible-mine-water-use"}],"runId":"srun_c0e944bd89584b547e9816b679636878","classifiedAt":"2026-07-02T22:56:00.253Z"},"2724":{"community_note":"Reno extended a citywide data-center moratorium until Aug. 31, 2027, and Friends of Nevada Wilderness and Basin and Range Watch are suing to halt NV Energy’s Greenlink West transmission project (status: moratorium in effect; litigation ongoing).","water_impact":"low","ai_evidence":"Vantage is building the NV1 “AI campus” and says its facilities are designed to power and cool high‑density GPU clusters, while DCD reports the first two buildings are fully leased (tenants and train vs. inference split not disclosed).","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No gallons/day disclosed; NV1 targets industry‑leading low WUE with closed‑loop cooling that continuously recycles water, and the TRIC area benefits from reclaimed water supplied via TMWRF.","grid_note":"NV12 is a 64MW building within a 224MW campus with the first two buildings fully leased, while the Greenlink West transmission line faces litigation and NV Energy is asking large wholesale customers such as data centers to help pay for construction costs.","citations":[{"title":"Reno City Council extends data center moratorium ...","url":"https://nevadacurrent.com/2026/06/03/reno-city-council-extends-data-center-moratorium-promises-effort-is-not-political/"},{"title":"Enviro groups sue to halt construction of NV Energy's ...","url":"https://thenevadaindependent.com/article/enviro-groups-sue-to-to-halt-construction-of-nv-energys-massive-transmission-line"},{"title":"Vantage Data Centers Invests $3 Billion to Deliver AI ...","url":"https://vantage-dc.com/news/vantage-data-centers-invests-3-billion-to-deliver-ai-campus-in-growing-nevada-market/"},{"title":"Cooling Without the Drain: How Closed-Loop Systems Cut ...","url":"https://blog.vantage-dc.com/2026/04/22/cooling-without-the-drain-how-closed-loop-systems-cut-day-to-day-water-use/"},{"title":"The data center boom in the desert","url":"https://www.technologyreview.com/2025/05/20/1116287/ai-data-centers-nevada-water-reno-computing-environmental-impact/"}],"runId":"srun_c0e944bd89584b5438f02cd95925534d","classifiedAt":"2026-07-02T22:56:00.253Z"},"2727":{"community_note":"","water_impact":"unknown","ai_evidence":"Marketed as suitable for hyperscale and AI computing with liquid-cooling options and up to 500 W/sq ft density, but no disclosed GPU tenant or AI cluster deployments at this site.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"Brochure describes high-efficiency air-cooled chillers and a chilled-water loop for in-row/in-rack options (including immersion), with no public data on gallons/day, water source, or discharge.","grid_note":"Planned as a 300 MW campus with a private on-site substation; first phase is 150 MW.","citations":[{"title":"Skybox breaks ground on new Lancaster data center","url":"https://www.dallasnews.com/business/energy/2024/06/21/skybox-breaks-ground-on-new-lancaster-data-center/"},{"title":"Skybox starts work at 300MW data center campus in Dallas ...","url":"https://www.datacenterdynamics.com/en/news/skybox-starts-work-at-300mw-data-center-campus-in-dallas-texas/"},{"title":"PC Dallas Brochure","url":"https://skyboxdatacenters.com/images/PC-Dallas-Brochure.pdf"},{"title":"Skybox Datacenters | Data Center Markets","url":"https://www.skyboxdatacenters.com/locations"},{"title":"PC Dallas Brochure","url":"https://skyboxdatacenters.com/images/PC-Dallas-Brochure.pdf"}],"runId":"srun_c0e944bd89584b54f3484a68079fb0d2","classifiedAt":"2026-07-02T22:56:00.253Z"},"2728":{"community_note":"No Switch-specific organized opposition was found; Protect Round Rock’s campaign targets the separate Skybox AI data center, while KXAN lists “Switch Building 1” at 150 Dell Way as an existing facility [1][2].","water_impact":"unknown","ai_evidence":"AI-ready infrastructure is advertised (hybrid liquid cooling up to 2MW per rack) and Switch hosts CoreWeave’s NVIDIA GB300 NVL72 at other Switch sites, but no public source ties a named GPU supercluster or AI tenant specifically to AUS04 [1][2][3].","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No public gallons/day figure for AUS04 was found; no specific aquifer, drought, or discharge concerns were reported in reviewed city/tracker sources [1][2].","grid_note":"Facility input load is 25 MW; public sources list the campus with 125 MW available power and Switch’s Texas ecosystem planned for 185 MW, with Oncor as the local distributor [1][2][3].","citations":[{"title":"Protect Round Rock.","url":"https://protectroundrock.org/datacenters.html"},{"title":"Round Rock reviews new data center project - Austin","url":"https://www.kxan.com/news/local/round-rock/round-rock-reviews-new-data-center-project/"},{"title":"Data Centers in Round Rock","url":"https://www.roundrocktexas.gov/city-departments/administration/data-centers-in-round-rock/"},{"title":"Switch The Rock Campus - Central Texas Data Center Tracker","url":"https://centexdatacenters.org/tracker/switch-round-rock"},{"title":"Data Centers in Round Rock","url":"https://www.roundrocktexas.gov/city-departments/administration/data-centers-in-round-rock/"}],"runId":"srun_c0e944bd89584b54ada061bb9ee81dc3","classifiedAt":"2026-07-02T22:56:00.253Z"},"2733":{"community_note":"Douglas County PUD imposed a moratorium on new data center/crypto power contracts in 2019 and later pursued steep rate changes aimed at high-density loads, signaling general community/ratepayer concern, but no organized opposition specific to the 624 Urban Industrial Way conversion was found.","water_impact":"low","ai_evidence":"Bitdeer reports that Wenatchee has begun decommissioning Bitcoin mining rigs to make room for an AI data center, is flagged “Wenatchee, WA, 13, Q4 ’26, Crypto to AI Cloud,” and that core equipment is being delivered ahead of Q4’26 energization.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"Cooling will use “a high efficiency closed loop liquid cooling system”; no gallons/day, source stress, or discharge issues were reported.","grid_note":"Approx. 13 MW load at Douglas County PUD; PUD created Rate Schedule 4 for large/high-density loads, imposed steep crypto/data-center rate hikes, and proposed cutting off high-use Bitcoin miners by 2028.","citations":[{"title":"Douglas PUD plans steep rate hikes aimed at crypto ...","url":"https://www.wenatcheeworld.com/news/local/douglas-pud-plans-steep-rate-hikes-aimed-at-crypto-miners-and-data-centers/article_1427ce72-22b6-11ea-9c61-f7f2894e7d9a.html"},{"title":"Cryptocurrency company applying for AI facility near ...","url":"https://www.wenatcheeworld.com/news/local/cryptocurrency-company-applying-for-ai-facility-near-pangborn/article_d1dd7b72-fe90-42fe-9eaa-8a035b82635e.html"},{"title":"Bitcoin Mining Data Centers","url":"https://www.bitdeer.com/datacenter"},{"title":"Bitdeer Washington Data Center in Wenatchee (13 MW)","url":"https://www.datacentermap.com/usa/washington/wenatchee/bitdeer-wenatchee-washington/"},{"title":"Bitdeer Announces February 2026 Production and Operations ...","url":"https://ir.bitdeer.com/news-releases/news-release-details/bitdeer-announces-february-2026-production-and-operations-update/"}],"runId":"srun_c0e944bd89584b5467f87fcad93a3874","classifiedAt":"2026-07-02T22:59:31.436Z"},"2741":{"community_note":"No organized opposition or lawsuits were found; the only local regulatory item surfaced was a TCEQ ownership‑change listing for SF HOUH, LLC.","water_impact":"low","ai_evidence":"Serverfarm markets HTX1 as 'AI-ready, high-density' with liquid cooling [1], and is an NVIDIA DGX Platform Partner with AI‑ready facilities that 'support both current GPU deployments and future scalability requirements' [2]. No named HTX1 GPU tenant or training supercluster has been publicly announced.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No facility-specific water-use figures were found; Serverfarm says its basis of design uses advanced water‑free air‑cooled chillers that 'completely eliminates water waste'.","grid_note":"In CenterPoint’s Houston service area, data‑center load is rising fast—CenterPoint expects to energize 8 GW of data‑center load by 2029, and Texas coverage warns the boom could strain the grid and raise energy costs.","citations":[{"title":"Change in Ownership - TCEQ Records Online - Texas.gov","url":"https://records.tceq.texas.gov/cs/idcplg?IdcService=TCEQ_EXTERNAL_SEARCH_GET_FILE&dID=8197921&Rendition=Web"},{"title":"Serverfarm Joins NVIDIA DGX-Ready Data Center ...","url":"https://www.serverfarmllc.com/press-releases/serverfarm-joins-nvidia-dgx-ready-program-to-help-enterprises/"},{"title":"United States Data Centers | AI-Ready Hyperscale ...","url":"https://www.serverfarmllc.com/united-states-data-centers/"},{"title":"HTX1 | Houston Data Center","url":"https://www.serverfarmllc.com/htx1-houston-data-center/"},{"title":"Serverfarm Houston HTX1","url":"https://mlq.ai/data-centers/usa/texas/hockley/serverfarm-htx1/"}],"runId":"srun_c0e944bd89584b542250951d51e4f649","classifiedAt":"2026-07-02T22:56:00.253Z"},"2742":{"community_note":"No organized opposition or lawsuits were identified; CTX2 appears as a standard private project filing with no complaints noted.","water_impact":"low","ai_evidence":"Serverfarm describes CTX2 as a “60MW AI-Ready Facility,” and the company is an “NVIDIA DGX Platform Partner” supporting GPU deployments; no specific AI tenant or cluster has been publicly named.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"Serverfarm says it uses closed-loop, water-free cooling that “eliminate evaporative water consumption”; no CTX2-specific gallons/day or source/discharge details were found.","grid_note":"Planned 60 MW facility in CenterPoint territory; the utility reports 3.5 GW of data center load under construction and expects 8 GW energized by 2029; no CTX2-specific upgrades or rate cases reported.","citations":[{"title":"Project Details - Texas Department of Licensing and Regulation","url":"https://www.tdlr.texas.gov/TABS/Search/Print/TABS2025014250"},{"title":"Serverfarm tops out Houston data center in Texas - DCD","url":"https://www.datacenterdynamics.com/en/news/serverfarm-tops-out-houston-data-center-in-texas/"},{"title":"Advanced Water Cooling System Infrastructure Eliminates ...","url":"https://www.serverfarmllc.com/water-free-data-center-cooling/"},{"title":"CTX2 Houston Topping Out: 60MW AI-Ready Facility ...","url":"https://www.serverfarmllc.com/blog/ctx2-tops-out-serverfarm-marks-structural-completion-of-houstons-next-60mw-ai-ready-facility/"},{"title":"United States Data Centers | AI-Ready Hyperscale ...","url":"https://www.serverfarmllc.com/united-states-data-centers/"}],"runId":"srun_c0e944bd89584b54dca8b0acdaa8a046","classifiedAt":"2026-07-02T22:56:00.253Z"},"2743":{"community_note":"No organized opposition was identified; the Irving City Council unanimously approved the development on Apr. 11, 2024, with trade press reporting the council \"gives OK\" to the Edged Energy data center [1][2].","water_impact":"low","ai_evidence":"Edged says the Irving facility “delivers 24 MW of critical capacity designed for high-density Artificial Intelligence” and promotes it as AI‑ready [3][4]; there are no public announcements of a named AI tenant or training supercluster at this address, and a CoreWeave listing refers to a separate Plano site at 1000 Coit Rd [9].","grid_impact":"moderate","ai_class":"ai-inference","community_pushback":"none-found","water_note":"Closed‑loop waterless cooling with WUE 0.00 L/kWh; no facility‑specific source or discharge issues were reported in available materials [4].","grid_note":"24 MW critical load in Irving; Oncor’s region is experiencing 59 GW of data center interconnection requests and has a $47.5B 2026–2030 capital plan, with no site‑specific upgrade disclosures identified [6][7][8].","citations":[{"title":"Edged Continues North American Expansion with New ...","url":"https://edged.us/news/edged-dallas-irving"},{"title":"Irving City Council gives OK for Edged Energy ...","url":"https://www.datacenterdynamics.com/en/news/irving-city-council-gives-ok-for-edged-energy-data-center-in-texas/"},{"title":"Dallas","url":"https://edged.us/dallas"},{"title":"Edged Data Centers Celebrates Grand Opening of New, ...","url":"https://www.edged.es/news/edged-data-centers-celebrates-grand-opening-of-new-ultra-efficient-sustainable-data-center-in-irving-texas"},{"title":"59 GW in data center load seeking to connect to Oncor's ...","url":"https://www.utilitydive.com/news/oncor-data-center-industrial-earnings-sempra/723779/"}],"runId":"srun_c0e944bd89584b549700ceffb2a8f777","classifiedAt":"2026-07-02T22:59:31.436Z"},"2745":{"community_note":"","water_impact":"unknown","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"No site-specific cooling-water consumption, water source, drought/aquifer, or discharge data was found for 811 Louisiana in facility or operator listings.","grid_note":"Listings show the site is commissioned with no leaseable power under construction, and no CenterPoint upgrade, rate case, curtailment, or new-generation requirement is tied to 811 Louisiana.","citations":[{"title":"Liquid Cooling for Data Centers: Meeting the Growing ...","url":"https://cologix.com/resources/blogs/liquid-cooling-for-data-centers-meeting-the-growing-demand-of-ai/"},{"title":"LOGIX Fiber Networks Houston 811","url":"https://inflect.com/building/811-louisiana-street-houston/alpheus-communications/datacenter/houston-811"},{"title":"LOGIX Enhances AI Connectivity for Austin Data Centers","url":"https://logix.com/press/logix-bridgepointe-technologies-partnership/"},{"title":"LOGIX Houston #2 Data Center | 811 Louisiana St","url":"https://www.datacentermap.com/usa/texas/houston/alpheus-houston/"},{"title":"Liquid cooling solutions for AI and high-density data centers","url":"https://www.se.com/us/en/work/solutions/data-centers-and-networks/liquid-cooling/"}],"runId":"srun_c0e944bd89584b545158e40e8b95ea40","classifiedAt":"2026-07-02T22:56:00.253Z"},"2749":{"community_note":"Residents and local advocates have actively opposed the project over noise, emissions and utility‑cost concerns, packing meetings and a June 2026 open house while the developer continues outreach and design changes.","water_impact":"low","ai_evidence":"Marketed as a 47-acre, up to 240 MW hyperscale AI campus at 151 Porter Street and covered as an AI‑related data center project; no tenants or GPU deployments publicly announced in the cited materials.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Coverage describes a closed‑loop chilled‑water system with rooftop mechanical chillers and no evaporative cooling; no gallons‑per‑day figure is provided in the cited reports.","grid_note":"Up to 240 MW with an interconnection study involving Duquesne Light and FirstEnergy; DLC emphasizes rate structures for data centers, and PJM lists a nearby Cheswick‑Plum baseline reliability project.","citations":[{"title":"Developers, critics speak on proposed Springdale data ...","url":"https://www.publicsource.org/springdale-data-center-debate-open-house/"},{"title":"Residents packed a meeting on a proposed Springdale ...","url":"https://www.facebook.com/wtae4/posts/residents-packed-a-meeting-on-a-proposed-springdale-data-center-raising-concerns/1462794895887317/"},{"title":"Dynamo DC, a $2 billion data center planned for ...","url":"https://www.facebook.com/PghBizTimes/posts/dynamo-dc-a-2-billion-data-center-planned-for-springdale-has-been-redesigned-to-/1536883381784368/"},{"title":"Petition to the Springdale Borough Council: Oppose the ...","url":"https://www.change.org/p/petition-to-the-springdale-borough-council-oppose-the-allegheny-dc-property-data-center"},{"title":"Lots of changes proposed to Springdale data center plan","url":"https://triblive.com/local/valley-news-dispatch/lots-of-changes-proposed-to-springdale-data-center-plan/"}],"runId":"srun_c0e944bd89584b540bb1025178809f45","classifiedAt":"2026-07-02T22:56:00.553Z"},"2750":{"community_note":"Organized opposition by residents over noise and air-quality persists; the borough approved needed variances in Dec 2025, and the redesigned project remained under community review in June 2026.","water_impact":"low","ai_evidence":"Marketed as a 240 MW hyperscale AI campus, with servers likely designed around Nvidia’s Vera Rubin platform for AI; no public confirmation of signed AI tenants or deployed GPU clusters.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Closed-loop cooling with in-house treatment and an initial municipal-water draw, with ongoing reuse and no river withdrawal reported.","grid_note":"Planned 180–240 MW IT load, with potential grid impacts and reinforcements discussed at June 2026 community meetings.","citations":[{"title":"Many Springdale residents remain strongly opposed to ...","url":"https://www.cbsnews.com/pittsburgh/news/springdale-data-center-protesters-rally/"},{"title":"Developers, critics speak on proposed Springdale data ...","url":"https://www.publicsource.org/springdale-data-center-debate-open-house/"},{"title":"Springdale council votes yes on data center amid zoning ...","url":"https://technical.ly/civics/allegheny-county-data-center-springdale-vote/"},{"title":"Springdale community discusses proposed data center ...","url":"https://www.wtae.com/article/springdale-community-proposed-data-center-plans-developer-june-2026/71551173"},{"title":"Former site of Springdale power plant could become high ...","url":"https://www.cbsnews.com/pittsburgh/news/proposed-ai-data-center-springdale/"}],"runId":"srun_c0e944bd89584b54c60919e062bfcbca","classifiedAt":"2026-07-02T22:56:00.553Z"},"2752":{"community_note":"Active local opposition: county supervisors rejected a STACK campus rezoning 4–2 (Sept. 2025), while advocates and residents fought a separate Hornbaker Road project before its narrow approval in Mar. 2026.","water_impact":"moderate","ai_evidence":"No NVA02F-specific proof of GPU superclusters or AI-focused retrofits; NVA02 is marketed as a large hyperscale campus, while AI-specific cooling is described for another STACK campus.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"No NVA02F-specific gallons/day published; county utility reports data centers used ~3.8% of average daily and 10.1% of maximum daily water demand in 2025.","grid_note":"NVA02 campus is 420MW with two dedicated 300MW onsite substations, in a region where Dominion projects data-center peak demand could reach 13.3 GW by 2038, requiring major grid buildout.","citations":[{"title":"Prince William County rejects rezoning application from ...","url":"https://www.datacenterdynamics.com/en/news/prince-william-county-rejects-rezoning-application-from-stack-infrastructure/"},{"title":"Prince William board approves Hornbaker Road data center","url":"https://www.insidenova.com/news/prince_william/prince-william-supervisors-approve-hornbaker-road-data-center-outside-overlay-district/article_96af4640-d753-4028-809c-d530ccda36c1.html"},{"title":"MORE Data Center Projects- STOP Hornbaker and MORE","url":"https://protectpwc.org/2026/02/28/13682/"},{"title":"Commercial Customers","url":"https://princewilliamwater.org/our-customers/commercial-customers"},{"title":"NVA02 – Manassas","url":"https://www.stackinfra.com/locations/americas/northern-virginia/nva02/"}],"runId":"srun_c0e944bd89584b548061373370836f4b","classifiedAt":"2026-07-02T22:56:00.553Z"},"2753":{"community_note":"Wallingford’s Town Council explored rescinding its host agreement with Gotspace amid local concerns; no current resident lawsuit or formal moratorium specific to Building 1 was found.","water_impact":"unknown","ai_evidence":"Public listings and reporting describe a planned 32 MW facility in Wallingford with no verifiable AI tenant, GPU supercluster, or AI workload announcement; as of 2024, neither Gotspace nor NE Edge had developed a data center in Connecticut.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No public data found on cooling type, gallons/day, source, or discharge for this facility.","grid_note":"Planned 32 MW load on the Wallingford Electric Division system with stated use of behind‑the‑meter generation and peak‑shaving; no public record of required new bulk transmission or rate-case impacts.","citations":[{"title":"Connecticut towns look to derail proposed ...","url":"https://www.datacenterdynamics.com/en/news/connecticut-towns-look-to-derail-proposed-data-center-projects/"},{"title":"Data center proposed by new company in Wallingford ...","url":"https://www.datacenterdynamics.com/en/news/data-center-proposed-by-new-company-in-wallingford-connecticut/"},{"title":"Gotspace Wallingford 1 - Building 3 Data Center (32 MW)","url":"https://www.datacentermap.com/usa/connecticut/wallingford/gotspace-wallingford-1-building-3/"},{"title":"Gotspace Wallingford 2 - Building 1 Data Center (32 MW)","url":"https://www.datacentermap.com/usa/connecticut/wallingford/wallingford-2-building-1/"},{"title":"Gotspace Wallingford 2 - Building 4 Data Center (32 MW)","url":"https://www.datacentermap.com/usa/connecticut/wallingford/gotspace-wallingford-2-building-4/"}],"runId":"srun_c0e944bd89584b543ab94d42c5334f4c","classifiedAt":"2026-07-02T22:59:31.741Z"},"2757":{"community_note":"Active opposition: residents and township officials (Limerick Board of Supervisors) are opposing the state land swap while CU 25-04 conditional‑use hearings continue, with reports of residents denied entry/party status.","water_impact":"moderate","ai_evidence":"Local news called it a 'Massive new AI data center' and an industry profile describes Project Laurel as 'high-density, AI-ready'; no public tenant or GPU cluster has been named.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"A community post cites up to 1.3 million gallons of water per day for cooling; no official water-source or discharge plan is documented in these citations.","grid_note":"Reported as a 750 MW campus with residents raising cost/rate concerns; the site is near the Limerick nuclear power plant.","citations":[{"title":"Conditional Use Hearings","url":"https://www.limerickpa.org/437/Conditional-Use-Hearings"},{"title":"Residents denied entry to hearing as Limerick data center ...","url":"https://www.wfmz.com/news/area/southeastern-pa/upper-montgomery-county/should-i-be-concerned-residents-denied-entry-to-hearing-as-limerick-data-center-fight-intensifies/article_d1a5055f-df2b-43ab-831f-f7e92c413bb5.html"},{"title":"Limerick Board of Supervisors vote to send a letter ...","url":"https://6abc.com/post/limerick-board-supervisors-vote-send-letter-opposing-land-swap-proposed-data-center/18440961/"},{"title":"What is the update on Project Laurel in Limerick, PA?","url":"https://www.facebook.com/groups/909733758219927/posts/985748233951812/"},{"title":"Massive new AI data center proposed for Limerick Twp.","url":"https://www.wfmz.com/news/area/southeastern-pa/upper-montgomery-county/massive-new-ai-data-center-proposed-for-limerick-twp/article_27c4563f-3362-4fc1-bb0e-41951a55faf2.html"}],"runId":"srun_c0e944bd89584b54f511689595e78551","classifiedAt":"2026-07-02T22:56:00.553Z"},"2759":{"community_note":"A resident objected to the Fairview Crossroads site during Planning Commission review, while township leaders later approved a data‑center zoning text amendment; no lawsuits or organized opposition were reported.","water_impact":"unknown","ai_evidence":"News reports describe a proposed 750,000‑sq‑ft, $500M data center advanced by a zoning text amendment, with no announced AI tenants, GPU superclusters, or liquid‑cooling specifications.","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No cooling method or water‑use figures for this proposal were reported in the cited sources; water impacts remain unspecified.","grid_note":"No MW load, interconnection, or upgrade details were disclosed; the township adopted a zoning text amendment and the project remains proposed/pending further approvals.","citations":[{"title":"York County eyes $500 million data center","url":"https://www.fox43.com/article/news/local/york-county/500-million-data-center-fairview-township-york-county/521-81526e0c-e19d-4211-adaf-d2cee8ecda8f"},{"title":"FAIRVIEW TOWNSHIP PLANNING COMMISSION","url":"https://twp.fairview.pa.us/wp-content/uploads/2025/11/Meeting-minutes-07_01_25.pdf"},{"title":"750000 sq ft data center could be built in Fairview ...","url":"https://www.datacenterdynamics.com/en/news/750000-sq-ft-data-center-could-be-built-in-fairview-township-pennsylvania/"},{"title":"750000-square-foot data center planned along Interstate 83","url":"https://www.pennlive.com/business/2025/07/750000-square-foot-data-center-planned-along-interstate-83.html"},{"title":"Will data centers have water, electricity in York County?","url":"https://www.yorkdispatch.com/story/news/local/2025/09/02/pjm-electricity-grid-windsor-fairview-township-york-county-data-center-pennsylvania/85834519007/"}],"runId":"srun_c0e944bd89584b54af698624ffcc844e","classifiedAt":"2026-07-02T22:56:00.553Z"},"2760":{"community_note":"Local residents and groups opposed the Lancaster AI data centers over impacts and process, while the city pursued a community agreement; a county court blocked a resident’s zoning appeal on procedural grounds.","water_impact":"low","ai_evidence":"CoreWeave announced a Lancaster cloud facility initially at 100 MW and expandable to 300 MW as AI infrastructure, describing it as one of the largest AI data centers in the region.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"City leaders said an agreement with the developer includes using recycled water for cooling at the Lancaster data centers.","grid_note":"PPL Electric Utilities is implementing a new large-load tariff for customers with demand of 50 MW or more at a single facility.","citations":[{"title":"Lancaster outlines new community agreement with data ...","url":"https://www.fox43.com/article/news/local/lancaster-outlines-new-community-agreement-with-data-centers-communty-lancaster-county/521-ff141d3b-7896-472f-9351-6c74a4c85bd1"},{"title":"Lancaster city data center developers win suit to block ...","url":"https://lancasteronline.com/news/local/lancaster-city-data-center-developers-win-suit-to-block-residents-zoning-appeal/article_70a011c5-7cf2-4b77-9167-df7d2268bb19.html"},{"title":"Lancaster city data centers' water allotment to be 80% less ...","url":"https://lancasteronline.com/news/local/lancaster-city-data-centers-water-allotment-to-be-80-less-than-former-printing-plants/article_c329c40c-4dca-4f64-8d80-4658323f21e2.html"},{"title":"The Data Center Dilemma in Lancaster PA","url":"https://ccblueprint.org/data-center-dilemma/"},{"title":"CoreWeave Announces Multi-Billion Dollar Commitment to ...","url":"https://investors.coreweave.com/news/news-details/2025/CoreWeave-Announces-Multi-Billion-Dollar-Commitment-to-AI-Infrastructure-in-Pennsylvania/default.aspx"}],"runId":"srun_c0e944bd89584b5469c19c77a533616f","classifiedAt":"2026-07-02T22:59:31.741Z"},"2761":{"community_note":"Lancaster Stands Up/PA Stands Up and residents oppose the project over zoning process, noise, diesel-generator air quality, water/energy and equity concerns; a court ruled in favor of developers on a resident’s zoning appeal and the city advanced a community benefits agreement, but opposition continues.","water_impact":"low","ai_evidence":"CoreWeave states its Lancaster facility has room to grow up to 300 MW and will be one of the largest AI data centers in the region.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Reported average water use for the two Lancaster data centers is less than the equivalent of 156 households, with allocations indicating less than 20,000 gallons/day on average at 1375 Harrisburg Pike and service from the municipal system.","grid_note":"Planned IT load is ~100 MW with expansion to 300 MW, and PPL has been ramping transmission and related projects to meet growing Pennsylvania data-center demand.","citations":[{"title":"PA Communities Resist AI Data Centers","url":"https://pastandsup.org/pa-communities-resist-ai-data-centers/"},{"title":"Lancaster city data center developers win suit to block ...","url":"https://lancasteronline.com/news/local/lancaster-city-data-center-developers-win-suit-to-block-residents-zoning-appeal/article_70a011c5-7cf2-4b77-9167-df7d2268bb19.html"},{"title":"Lancaster data center agreement's benefit to community ...","url":"https://lancasteronline.com/news/local/lancaster-data-center-agreement-s-benefit-to-community-questioned/article_b2654db6-c6e3-4719-8a0e-1f839c1e325e.html"},{"title":"Lancaster city data centers' water allotment to be 80% less ...","url":"https://lancasteronline.com/news/local/lancaster-city-data-centers-water-allotment-to-be-80-less-than-former-printing-plants/article_c329c40c-4dca-4f64-8d80-4658323f21e2.html"},{"title":"CoreWeave plans $6B AI data center in Lancaster","url":"https://www.fox43.com/article/tech/6-billion-ai-data-center-lancaster/521-7004cbc6-cbb1-42fb-8e73-0630543c8911"}],"runId":"srun_c0e944bd89584b542419bb8696b70dc8","classifiedAt":"2026-07-02T22:59:31.741Z"},"2762":{"community_note":"Lancaster Stands Up is actively opposing the CoreWeave Lancaster AI data center over grid, noise, air-quality and related impacts, and on June 24, 2026 the City Council tabled a data-center zoning amendment after public testimony [1][2].","water_impact":"low","ai_evidence":"CoreWeave says its Lancaster cloud facility will be one of the largest AI data centers in the region with room to grow to 300 MW, and reports note an initial 100 MW build co-developed to host CoreWeave; company materials highlight closed‑loop, direct‑to‑chip liquid cooling suitable for dense GPU AI clusters [1][2][3][4].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Water use is capped at 20,000 gallons/day per campus with closed‑loop cooling, and local officials said recycled water would be used for cooling [1][2].","grid_note":"Planned load is 100 MW with potential to 300 MW, and plans include a new PPL substation and switchyard to support the campus [1][2].","citations":[{"title":"The AI Data Center hearing has been postponed, but we ...","url":"https://www.facebook.com/lancasterstandsup/posts/the-ai-data-center-hearing-has-been-postponed-but-we-are-not-letting-up-the-pres/780039104631881/"},{"title":"Lancaster City Council postpones vote on zoning changes ...","url":"https://www.wgal.com/article/lancaster-city-council-hold-special-meeting-data-center-zoning/71713745"},{"title":"Community Benefits Agreement Summary","url":"https://www.cityoflancasterpa.gov/wp-content/uploads/2025/11/Community-Benefits-Agreement-Summary-1-1.pdf"},{"title":"Lancaster city data centers' water allotment to be 80% less ...","url":"https://lancasteronline.com/news/local/lancaster-city-data-centers-water-allotment-to-be-80-less-than-former-printing-plants/article_c329c40c-4dca-4f64-8d80-4658323f21e2.html"},{"title":"Building Pennsylvania into the Mid-Atlantic AI Hub","url":"https://www.coreweave.com/blog/building-pennsylvania-into-the-mid-atlantic-ai-hub"}],"runId":"srun_c0e944bd89584b54de71d1c923f97c7d","classifiedAt":"2026-07-02T22:56:00.553Z"},"2763":{"community_note":"Organized opposition includes a resident-filed spot-zoning appeal, petitions by Protect Cumberland County PA, and formal objections by the Appalachian Trail Conservancy over scenic and environmental impacts; legal challenges are ongoing.","water_impact":"moderate","ai_evidence":"Project materials call PAX‑1 a “new AI data hub,” and trade coverage notes plans for liquid‑cooled GPU loads, indicating AI/HPC‑oriented infrastructure.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"Developer states MTMA approved up to 400,000 gallons/day for PAX‑1; opponents have raised local concerns but no independent aquifer-stress finding was cited.","grid_note":"Planned load is 1.35 GW with expandability to 1.8 GW and a newly planned PPL 500 kV–138 kV switching station, indicating significant transmission build‑out.","citations":[{"title":"Opponents of massive Pa. data center take last best shot at ...","url":"https://www.pennlive.com/news/2026/05/data-center-opponents-fight-back-with-appeal-of-what-they-see-as-the-original-sin.html"},{"title":"Middlesex Township – PCCPA","url":"https://protectcumberlandcountypa.org/middlesex/"},{"title":"Appalachian Trail Conservancy Opposes PAX-1 Data ...","url":"https://appalachiantrail.org/news-stories/appalachian-trail-conservancy-opposes-middlesex-data-center/"},{"title":"Pennsylvania Digital 1 (PAX-1) Data Center","url":"https://pax1campus.com/"},{"title":"Data Centers and Water Use in Pennsylvania","url":"https://extension.psu.edu/data-centers-and-water-use-in-pennsylvania/"}],"runId":"srun_c0e944bd89584b5498c9ef786bd72da2","classifiedAt":"2026-07-02T22:59:31.741Z"},"2764":{"community_note":"Falls Township residents organized petitions and raised concerns over air, drinking water, health, and noise, with petitions growing from 700+ signatures to 3,800 and the township scheduling a July 14, 2026 town hall with PECO, DEP, and Amazon.","water_impact":"unknown","ai_evidence":"Falls Township announced Amazon’s intent to build a data center at Keystone Trade Center as part of multiple innovation campuses, and the Governor’s office highlighted a $20B plan to establish high-tech cloud computing/AI campuses in Pennsylvania.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No site-specific gallons/day have been published; a new regional wastewater treatment facility will be built at Keystone Trade Center, and regional reporting notes rising water-demand concerns in the Delaware River watershed.","grid_note":"FERC approved a Transmission Security Agreement between PECO Energy and Amazon Data Services for the Falls Township data center (ER25-3492), with reporting noting provisions to protect utility customers from costs and raising significant questions about grid planning.","citations":[{"title":"Falls Residents Voice Concern Over Data Center","url":"https://fallstwp.com/resources/news/article/?id=11472"},{"title":"Amazon Data Center Draws Opposition In Falls Twp.","url":"https://patch.com/pennsylvania/levittown/amazon-data-center-draws-opposition-falls-twp"},{"title":"Town Hall Meeting to Feature PECO, DEP, and Amazon","url":"https://www.fallstwp.com/resources/news/article/?id=11573"},{"title":"DEP Invites Comments On Air Permit For Amazon Data ...","url":"http://www.paenvironmentdigest.com/newsletter/default.asp?NewsletterArticleID=65314&SubjectID="},{"title":"New Sewer Plant Update – Morrisville Municipal Authority","url":"https://www.mmawatersewer.org/new-sewer-plant-update/"}],"runId":"srun_c0e944bd89584b5453220aabfd83ad53","classifiedAt":"2026-07-02T22:56:00.553Z"},"2765":{"community_note":"Organized opposition from Hazle Township officials, residents, and advocacy groups has stalled the project: land-development approval was denied and upheld in court, a six‑month moratorium was passed, and residents are contesting the related PPL power line.","water_impact":"moderate","ai_evidence":"Media and state-focused coverage refer to it as an 'A.I. data center,' while also reporting that no tenant has been publicly identified; no GPU supercluster, training cluster, or liquid-to-chip deployment has been disclosed.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Plans call for using treated wastewater for server cooling during the hottest months, with DEP reviewing a revised water-quality permit and residents raising questions at the hearing.","grid_note":"PPL proposes a 500‑kV transmission line to a new on‑site switchyard/substation, with the related line cost cited at $59.9 million and the developer offering $30 million in electric‑bill relief.","citations":[{"title":"Judge rules against Project Hazelnut data center","url":"https://www.standardspeaker.com/2026/05/28/judge-rules-against-project-hazelnut-data-center/"},{"title":"Hazle Township, PA Pauses Data Center Development for ...","url":"https://www.foodandwaterwatch.org/2026/06/09/hazle-township-pa-pauses-data-center-development-for-six-months/"},{"title":"Residents voice opposition to PPL's power line plan","url":"https://www.citizensvoice.com/2026/06/30/residents-voice-opposition-to-ppls-power-line-plan/"},{"title":"Residents raise questions as developer describes Hazle ...","url":"https://www.wvia.org/news/local/2026-02-18/residents-raise-questions-as-developer-describes-hazle-twp-data-center-plans-at-dep-hearing"},{"title":"DEP To Hold Feb. 17 Meeting/Hearing On Revised Water ...","url":"http://paenvironmentdaily.blogspot.com/2026/01/dep-to-hold-feb-17-meetinghearing-on.html"}],"runId":"srun_c0e944bd89584b540d7a20daa0707664","classifiedAt":"2026-07-02T22:59:31.741Z"},"2766":{"community_note":"","water_impact":"low","ai_evidence":"","grid_impact":"low","ai_class":"not-ai","community_pushback":"none-found","water_note":"Lumen told local media its Lancaster-area centers use little to no water in cooling; no gallons/day or source/discharge details were reported.","grid_note":"No MW figures or utility upgrades are reported for this address; local reporting says Lumen’s centers use far less electricity than AI data centers, and directories show a small 5,000‑sq‑ft colo footprint.","citations":[{"title":"Data centers were in Lancaster County years before ...","url":"https://lancasteronline.com/business/local_business/data-centers-were-in-lancaster-county-years-before-current-ai-boom/article_c5f39ae2-4af2-40a6-9a3d-91ba3d7f7b65.html"},{"title":"Data centers were in Lancaster County years before ...","url":"https://lancasteronline.com/business/local_business/data-centers-were-in-lancaster-county-years-before-current-ai-boom/article_c5f39ae2-4af2-40a6-9a3d-91ba3d7f7b65.html"},{"title":"Lumen: Lancaster 1 Data Center","url":"https://www.datacenters.com/lumen-lancaster-1"},{"title":"Data centers were in Lancaster County years before ...","url":"https://lancasteronline.com/business/local_business/data-centers-were-in-lancaster-county-years-before-current-ai-boom/article_c5f39ae2-4af2-40a6-9a3d-91ba3d7f7b65.html"},{"title":"Lumen Lancaster 1 Data Center | 1720 Hempstead Rd","url":"https://www.datacentermap.com/usa/pennsylvania/lancaster/lumen-lancaster-1/"}],"runId":"srun_c0e944bd89584b54c7d23e0d3458eab9","classifiedAt":"2026-07-02T22:56:00.553Z"},"2767":{"community_note":"No organized opposition identified; local reporting covered the sale/reuse of the former BNY Mellon facility without noting any pushback, and no lawsuits or moratoria specific to this site were found.","water_impact":"unknown","ai_evidence":"DCD reports Chirisa acquired 182 Northpointe Blvd for a 100MW redevelopment, and listings describe the project as oriented to high-density HPC/AI capacity for hyperscale users.","grid_impact":"moderate","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"No site-specific disclosures on cooling method or water usage were found; park materials only note that utilities are available, without quantifying consumption or source.","grid_note":"Planned capacity is up to 100MW at 182 Northpointe Blvd; no public reports were found of required utility upgrades, new generation/transmission, or rate-case impacts tied to this project.","citations":[{"title":"BNY sells South Buffalo data center for $5.5 million","url":"https://archive.triblive.com/local/valley-news-dispatch/bny-sells-south-buffalo-data-center-for-5-5-million/"},{"title":"RIDC Armstrong Innovation Park | Pittsburgh, PA Office","url":"https://hannacre.com/locations/pennsylvania/pittsburgh/property/ridc-armstrong-innovation-park/"},{"title":"US bank BNY sells site in Pennsylvania to Chirisa for ...","url":"https://www.datacenterdynamics.com/en/news/bny-mellon-sells-site-in-pennsylvania-to-chirisa-for-100mw-data-center-development/"},{"title":"182 Northpointe Blvd Data Center in Pittsburgh | Chirisa","url":"https://www.datacentermap.com/usa/pennsylvania/pittsburgh/182-northpointe-blvd/"},{"title":"US bank BNY sells site in Pennsylvania to Chirisa for ...","url":"https://www.datacenterdynamics.com/en/news/bny-mellon-sells-site-in-pennsylvania-to-chirisa-for-100mw-data-center-development/"}],"runId":"srun_c0e944bd89584b54822a55bcb8171616","classifiedAt":"2026-07-02T22:56:00.553Z"},"2768":{"community_note":"Protect PT and Upper Burrell residents are pressing for controls over emissions, noise/light and related impacts at TECfusions’ Keystone Connect, while the township drafts a data‑center ordinance that “does not apply to work that data center” has already performed [1][2][3].","water_impact":"low","ai_evidence":"TensorWave announced Pennsylvania capacity at TECfusions to extend its AMD training cluster using direct liquid cooling and high‑rack‑density designs [1]; TECfusions describes the New Kensington campus as supporting advanced artificial intelligence applications [2].","grid_impact":"high","ai_class":"ai-training","community_pushback":"active-opposition","water_note":"No gallons/day figure is published; the facility features direct liquid cooling and community discussions propose strict industrial wastewater discharge limits [1][2].","grid_note":"Planned to scale to roughly 3 GW, with much of the facility’s electricity to be produced on‑site via natural gas wells on the property [1][2].","citations":[{"title":"Community opposition, local regulation of data centers ...","url":"https://triblive.com/local/valley-news-dispatch/community-opposition-local-regulation-of-data-centers-coming-together-in-upper-burrell/"},{"title":"Data Centers and Fracking","url":"https://www.protectpt.org/data-center"},{"title":"Proposed data center in Upper Burrell Township raises ...","url":"https://www.facebook.com/triblive/posts/residents-in-upper-burrell-township-are-raising-new-questions-about-a-proposed-d/1345131464309559/"},{"title":"TensorWave Expands with TECfusions, Splitting 20 MW ...","url":"https://www.prnewswire.com/news-releases/tensorwave-expands-with-tecfusions-splitting-20-mw-across-arizona-and-pennsylvania-locations-302660757.html"},{"title":"Proposed data center in Upper Burrell Township raises ...","url":"https://www.facebook.com/triblive/posts/residents-in-upper-burrell-township-are-raising-new-questions-about-a-proposed-d/1345131464309559/"}],"runId":"srun_c0e944bd89584b543c8273efc5141627","classifiedAt":"2026-07-02T22:56:00.553Z"},"2770":{"community_note":"Residents raised transparency/environment concerns as the township advanced a draft data center ordinance that remains under review, with no lawsuits or organized opposition identified.","water_impact":"unknown","ai_evidence":"A ~$5B hyperscale campus was announced at Calpine’s York 2 Energy Center, with concurrent reporting tying statewide data center investments to AI initiatives, but no public details confirm GPU deployments, liquid cooling, or specific AI tenants.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No data center-specific water volume disclosed; the host power plant controls Susquehanna River withdrawal infrastructure and holds an NPDES discharge permit.","grid_note":"Planned on Calpine’s 828MW York 2 Energy Center; no project-specific Met‑Ed upgrade or rate-case details publicly identified; regional pipeline growth noted.","citations":[{"title":"Questions swirl in Peach Bottom as township advances ...","url":"https://www.fox43.com/article/news/local/york-county/questions-swirl-in-peach-bottom-as-township-advances-data-center-rules-without-formal-proposal/521-5eba4e8e-a0a6-481a-a849-bfc318e93c7d"},{"title":"Peach Bottom Township drafts ordinance protecting residents","url":"https://www.yahoo.com/news/videos/data-center-discussion-peach-bottom-230625740.html"},{"title":"Data Center Ordinance – DRAFT 5/21/26","url":"https://www.peachbottomtownship.org/2000-2"},{"title":"Consumptive Use Application Summary","url":"https://www.srbc.gov/waav/Search/getpending?projectnumber=2025-087&documenttype=Application&isabre=False"},{"title":"pa dep - npdes permit fact sheet individual industrial waste (iw ...","url":"https://files.dep.state.pa.us/Water/Wastewater%20Management/eDMRPortalFiles/Permits/PA0088781_FACT_SHEET_20251110_DRAFT_V5.pdf"}],"runId":"srun_c0e944bd89584b54f6da891e6652f030","classifiedAt":"2026-07-02T22:59:31.741Z"},"2771":{"community_note":"Residents are actively opposing the project over water and related impacts, with late-June/July public hearings marked by disruption and no final approval reported yet [1], [2].","water_impact":"moderate","ai_evidence":"AWS states its data centers support the next generation of AI innovation, but there are no site-specific announcements of GPU/Trainium clusters or liquid-cooling deployments for the Kline Township campus [4].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Local reporting says ordinary use is up to 15,000 gallons/day, with up to 100,000 gallons/day for cooling on the hottest days [9].","grid_note":"PPL has committed $6.8 billion to expand grid capacity and modernize transmission in Pennsylvania to support data center growth; site-specific MW for Kline Township hasn’t been disclosed [10].","citations":[{"title":"Kline Twp. residents push back against Amazon data center","url":"https://www.standardspeaker.com/2026/03/03/kline-twp-residents-push-back-against-amazon-data-center/"},{"title":"Police remove disorderly man from Amazon data center ...","url":"https://www.republicanherald.com/2026/07/01/police-remove-disorderly-man-from-amazon-data-center-hearing-in-kline-twp/"},{"title":"Kline Twp. residents push back against Amazon data center","url":"https://www.facebook.com/republicanherald/posts/kline-twp-residents-push-back-against-amazon-data-center-mcadoo-debbie-moskovich/1891866631754729/"},{"title":"Data Centers - AWS Sustainability","url":"https://aws.amazon.com/sustainability/data-centers/"},{"title":"PPL Electric 'advanced-stage' data center pipeline grows ...","url":"https://www.utilitydive.com/news/ppl-electric-data-center-pennsylvania-pjm/756548/"}],"runId":"srun_c0e944bd89584b54b132a741e0741055","classifiedAt":"2026-07-02T22:56:00.553Z"},"2778":{"community_note":"","water_impact":"moderate","ai_evidence":"A third‑party directory states the site is an operational AI data center hosting ~80k H100‑equivalents and using Google TPU v4/v5e/v6e [1]; Google lists the Nebraska (Papillion) data‑center location but does not specify AI workloads [2].","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"none-found","water_note":"Papillion’s direct water use was 509,895 m³ in 2023 (~134.7M gal/yr, ~369,000 gal/day) per a peer‑reviewed analysis of Google’s environmental report; no Papillion‑specific source‑stress or discharge disputes surfaced [1].","grid_note":"Buildings 2–4 list 114/116/116 MW (≥346 MW total); OPPD added Turtle Creek generation, is constructing a 23‑mile 345‑kV Cass–Turtle Creek line, and projects 6% 2026 rate hikes with 5–9% thereafter amid rising demand.","citations":[{"title":"Gage County Planning and Zoning Commission ...","url":"https://nebraskapublicmedia.org/en/news/news-articles/gage-county-planning-and-zoning-commission-approves-18-month-moratorium-on-data-centers/"},{"title":"The carbon and water footprints of data centers and what ...","url":"https://www.sciencedirect.com/science/article/pii/S2666389925002788"},{"title":"Advancing responsible water use at our data centers","url":"https://datacenters.google/water/"},{"title":"Google Papillion | AI Data Centers","url":"https://epoch.ai/data/ai-data-centers/directory/google-papillion"},{"title":"Nebraska, USA – Google Data Center Location","url":"https://datacenters.google/locations/nebraska"}],"runId":"srun_c0e944bd89584b546b8ac2f003f78d3a","classifiedAt":"2026-07-02T22:59:31.741Z"},"2786":{"community_note":"No organized opposition or permitting fights were found; a City site plan shows a proposed non-occupied micro data center at 1850 TX-351 and there are no reported complaints or lawsuits.","water_impact":"unknown","ai_evidence":"Duos’ Abilene announcement describes a carrier-neutral EDC at Region 14 ESC to support local compute and AI-driven applications, with no Abilene-specific GPU supercluster disclosed [1]; a separate Duos–Hydra Host GPU agreement references large GPU hosting but does not identify Abilene as the deployment site [3].","grid_impact":"low","ai_class":"ai-inference","community_pushback":"none-found","water_note":"No gallons/day or source disclosures were found for the Region 14 EDC; a separate news story about water questions involves a different AI data center near Hamby, not this campus.","grid_note":"No utility upgrade or rate-case reporting was found; Duos says its modular EDCs use N+1 designs with dual backup generators, consistent with small edge loads rather than grid-scale demand.","citations":[{"title":"1850 TX-351 ABILENE SITE PLAN","url":"https://abilenetx.gov/DocumentCenter/View/39247"},{"title":"Duos Edge AI Deploys Edge Data Center in Abilene, Texas","url":"https://ir.duostechnologies.com/news-events/press-releases/detail/822/duos-edge-ai-deploys-edge-data-center-in-abilene-texas"},{"title":"Duos Technologies Group Executes Definitive Agreement with ...","url":"https://ir.duostechnologies.com/news-events/press-releases/detail/830/duos-technologies-group-executes-definitive-agreement-with"},{"title":"Duos Edge AI - Abilene EDC","url":"https://www.datacentermap.com/usa/texas/abilene/duos-edge-ai-abilene-edc/"},{"title":"Duos deploys Edge data center in Abilene, Texas - DCD","url":"https://www.datacenterdynamics.com/en/news/duos-deploys-edge-data-center-in-abilene-texas/"}],"runId":"srun_c0e944bd89584b5425e2d823056bb87b","classifiedAt":"2026-07-02T22:59:31.741Z"},"2788":{"community_note":"No organized opposition targets NVA8 specifically, but Loudoun County ended by-right data center development in March 2025 and officials are urging rerouting of new data center transmission lines near Ashburn neighborhoods.","water_impact":"low","ai_evidence":"","grid_impact":"moderate","ai_class":"not-ai","community_pushback":"some-concern","water_note":"NVA8 operates as a 24 MW, ultra‑low PUE colocation site in CyrusOne’s Sterling campus where other facilities use zero‑water cooling, suggesting minimal water consumption beyond humidification.","grid_note":"On Dominion’s strained Northern Virginia system, data center requests now total ~70,000 MW—triple peak load—while the SCC approved 2026 rate hikes (~$11.24–$16/month for a typical residential bill) and a new rate class for data centers has been proposed.","citations":[{"title":"Loudoun County, Virginia, Eliminates By-Right Data Center ...","url":"https://www.hklaw.com/en/insights/publications/2025/04/loudoun-county-virginia-eliminates-by-right-data-center-development"},{"title":"Loudoun County urges action to reroute data center power ...","url":"https://www.wusa9.com/article/news/investigations/dominion-energy-data-centers-transmission-lines-loudoun-county-supervisors-school-board-state-corportation-commission/65-59830183-ee2d-49f4-bb4a-db496a66eadd"},{"title":"Sterling, VA: NVA1-NVA3 - Data centers","url":"https://www.cyrusone.com/data-centers/north-america/sterling-va-nva1-nva3"},{"title":"Sterling, VA: NVA9","url":"https://www.cyrusone.com/data-centers/north-america/sterling-virginia-nva9"},{"title":"Sterling, VA: NVA8","url":"https://www.cyrusone.com/data-centers/north-america/sterling-virginia-nva8"}],"runId":"srun_c0e944bd89584b54e03af65220ea951c","classifiedAt":"2026-07-02T23:02:30.304Z"},"2789":{"community_note":"No organized opposition specific to IAD-165 at 13600 EDS Drive was found; countywide rules were tightened after public testimony for and against data centers.","water_impact":"moderate","ai_evidence":"Listings confirm IAD-165 as an AWS hyperscale site, but no public source ties GPU superclusters or liquid cooling to 13600 EDS Drive; Trainium/Inferentia availability in us-east-1 is region-wide and not facility-specific.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No site-specific gallons/day were found; AWS reported its data centers averaged 0.03 gallons per kWh in 2025, while planners caution that cumulative growth could stress regional supplies during low flows.","grid_note":"The EDS campus is listed at 250+ MW, far above Dominion’s >50 MW threshold where transmission line extensions and new substations are most likely required.","citations":[{"title":"Data Centers – Adopted Zoning Ordinance Amendment","url":"https://www.fairfaxcounty.gov/planning-development/data-centers"},{"title":"Data Centers in Fairfax County - Rose Hill Coalition LLC","url":"https://rosehillcoalition.org/rose-hill-planning-district/data-centers-in-fairfax-county/"},{"title":"How Amazon is making its data centers more water-efficient","url":"https://www.aboutamazon.com/news/sustainability/amazon-data-center-water-usage"},{"title":"Data Centers and Water Use in the Potomac River Basin","url":"https://www.potomacriver.org/focus-areas/water-resources-and-drinking-water/water-resources/planning/data-centers-and-water-use-in-the-potomac-river-basin/"},{"title":"Amazon: IAD-165 Data Center","url":"https://baxtel.com/data-center/amazon-iad-165"}],"runId":"srun_c0e944bd89584b549a930d8543f62021","classifiedAt":"2026-07-02T22:56:00.826Z"},"2790":{"community_note":"Fauquier County adopted stricter Vint Hill data‑center rules, but exempted CyrusOne’s four‑building campus and OVH, and I found no CyrusOne‑specific lawsuit or organized opposition, so concern is general rather than project‑specific.","water_impact":"unknown","ai_evidence":"Public reports describe a planned four‑building CyrusOne campus (~981k sq ft) with Dominion grid interconnection and no disclosed GPU/AI tenant or accelerator deployment, indicating hyperscale cloud rather than confirmed AI use.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No public gallons/day or cooling water source/discharge details were found for CyrusOne Vint Hill.","grid_note":"Dominion is listed as grid operator with the project in proposed status, NOVEC bought land at Vint Hill for a substation, and Dominion’s Vint Hill Expansion Project adds 500 kV transformers and GIS, but no site‑specific MW load is published.","citations":[{"title":"Fauquier County passes zoning rules limiting large ...","url":"https://www.datacenterdynamics.com/en/news/fauquier-county-passes-zoning-rules-limiting-large-data-centers-at-vint-hill-virginia/"},{"title":"Fauquier County OKs stricter zoning rules for data centers","url":"https://www.princewilliamtimes.com/news/fauquier-supervisors-ok-zoning-changes-aimed-at-curbing-large-data-centers-at-vint-hill/article_c9353e93-e7a1-5218-b396-2dd2f6afe9c4.html"},{"title":"Vint Hill land sold for 4-building data center campus ...","url":"https://www.princewilliamtimes.com/vint-hill-land-sold-for-4-building-data-center-campus-fetches-2m-an-acre/article_df0858ae-6ec3-5b7f-8994-b79eeaa0fe45.html"},{"title":"Vint Hill Technology Campus — Fauquier, Virginia","url":"https://cleanview.co/data-centers/virginia/1725/vint-hill-technology-campus"},{"title":"Vint Hill Technology Campus (CyrusOne) Data Center","url":"https://www.interconnection.fyi/data-center/project/vint-hill-technology-campus-cyrusone-a7330e09"}],"runId":"srun_c0e944bd89584b5454eb2b341b961a7e","classifiedAt":"2026-07-02T22:56:00.826Z"},"2791":{"community_note":"Residents raised noise complaints about Revolve Labs’ existing bitcoin‑mining site, leading to nighttime fan curtailment and a later partial violation finding under state sound rules, while the city approved rezoning for the planned AI data center [1][2][3].","water_impact":"unknown","ai_evidence":"Glencoe EDA coverage notes a $50–60M planned AI data center with a client interested in Q1 2025, and regional reporting says Revolve Labs plans to shift the Glencoe site from crypto mining to an AI data center; the company markets 200+ kW racks designed for high‑density GPU clusters [4][5][6].","grid_impact":"unknown","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No site-specific water-use figures, source stress, or discharge details were reported in the cited public coverage.","grid_note":"","citations":[{"title":"Revolve Labs to address nighttime noise amid remediation work","url":"https://www.glencoenews.com/articles/featured-mcc/revolve-labs-to-address-nighttime-noise-amid-remediation-work/"},{"title":"Revolve Labs' bitcoin mining facility in partial violation of ...","url":"https://www.glencoenews.com/articles/featured-mcc/revolve-labs-bitcoin-mining-facility-in-partial-violation-of-state-sound-standards/"},{"title":"Glencoe approves rezoning request for site of Revolve ...","url":"https://www.glencoenews.com/articles/featured-mcc/glencoe-approves-rezoning-request-for-site-of-revolve-labs-planned-ai-data-center/"},{"title":"Glencoe approves rezoning request for site of Revolve ...","url":"https://www.glencoenews.com/articles/featured-mcc/glencoe-approves-rezoning-request-for-site-of-revolve-labs-planned-ai-data-center/"},{"title":"Sue Olson Mark Hueser Paul Lemke Cory Neid Yodee ...","url":"https://www.glencoemn.org/wp-content/uploads/2024/11/November-6-2024-Council-Packet.pdf"}],"runId":"srun_c0e944bd89584b540f4341673b457dbf","classifiedAt":"2026-07-02T22:56:00.826Z"},"2793":{"community_note":"Local reporting and county agendas show tax-abatement hearings around the Phase 2 expansion, but no organized opposition or litigation specific to Helios has been documented.","water_impact":"unknown","ai_evidence":"Galaxy states CoreWeave committed to the full 800 MW at Helios under a long-term agreement to deliver AI/HPC infrastructure, and trade press reports CoreWeave exercised another 260 MW at the campus.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"some-concern","water_note":"No facility-specific gallons/day or source/discharge data was found; one local post claims closed-loop cooling with 'very little local water,' but this is unverified.","grid_note":"ERCOT approved an additional 830 MW at Helios, taking total approved capacity to over 1.6 GW.","citations":[{"title":"$3.5B Permits Filed for Galaxy Helios Data Center Phase 2","url":"https://www.texomashomepage.com/news/massive-3-5-billion-expansion-planned-at-ai-data-center-in-dickens-county/"},{"title":"Agenda - Dickens County","url":"https://www.co.dickens.tx.us/upload/page/1662/Agenda%202.9.2026.pdf"},{"title":"AI and HPC Data Center - Galaxy","url":"https://www.galaxy.com/data-centers"},{"title":"The lawsuit alleges residents have lost their ability to use ...","url":"https://www.facebook.com/wwmtnews/posts/the-lawsuit-alleges-residents-have-lost-their-ability-to-use-and-enjoy-their-pro/1457007383131613/"},{"title":"Dickens County cryptocurrency facility to become data ...","url":"https://www.lubbockonline.com/story/business/2025/04/04/west-texas-helios-facility-dickens-county-leased-to-nvidia-crowdweave-ai-data-center/82709947007/"}],"runId":"srun_c0e944bd89584b54c99b5c968779ba98","classifiedAt":"2026-07-02T22:56:00.826Z"},"2798":{"community_note":"Organized opposition from residents and advocacy groups (e.g., a coalition supported by Third Act) raised concerns and packed hearings, yet the Sangamon County Board approved the permit on April 7, 2026 and the project moved into its next phase [1][2][3].","water_impact":"low","ai_evidence":"DCD reports the campus will offer up to 634 MW at buildout, while NPR Illinois says it will handle data for cloud computing, AI, and enterprise applications; there are no site-specific announcements of GPU clusters or AI training/inference deployments [7][8].","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"active-opposition","water_note":"Closed-loop air-cooled design—“no daily water usage for cooling since the system remains closed”; ongoing use is “comparable to a standard office building” after initial fill [4][6][5].","grid_note":"Full-buildout demand is cited at approximately 634–636 MW—an exceptionally large new load for the local grid; specific transmission or rate mechanisms were not detailed in the cited reports [7][3].","citations":[{"title":"Sangamon County Board approves permit for data center. ...","url":"https://www.sj-r.com/picture-gallery/news/local/2026/04/08/sangamon-county-board-approves-permit-for-data-center/89511334007/"},{"title":"Illinois: Letter to Sangamon County Board RE: Data Centers","url":"https://thirdact.org/illinois/2026/04/06/letter-to-sangamon-board/"},{"title":"Sangamon Co. IL data center project moves into next phase","url":"https://www.wandtv.com/news/illinois/cyrusone-data-center-project-moves-into-next-phase-after-land-approval/article_a8036f44-408d-4b04-9d6b-3f8ad0b056ae.html"},{"title":"Proposed CyrusOne Data Center","url":"https://sangamonil.gov/departments/a-c/county-board/proposed-cyrusone-data-center"},{"title":"Sangamon County Community FAQ","url":"https://www.cyrusone.com/sangamon-county-community-faq"}],"runId":"srun_c0e944bd89584b5483f37ab95d166f2d","classifiedAt":"2026-07-02T22:59:32.012Z"},"2800":{"community_note":"","water_impact":"unknown","ai_evidence":"Reports describe a 419‑acre, five‑building data center campus at 1401 Greene Road, with no disclosures of GPU clusters or AI tenants.","grid_impact":"unknown","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"","grid_note":"","citations":[{"title":"Project Orange And Project Labrador: North Texas' Next ...","url":"https://dallasexpress.com/realestate/project-orange-and-project-labrador-north-texas-next-big-data-center-boom/"},{"title":"RESOLUTION NO. A RESOLUTION OF THE CITY OF ...","url":"https://public.destinyhosted.com/lancadocs/2025/CCREG/20250811_2311/5020_5020_M24-49_CP_Project_Labrador_PD__Development_Agreement_Compiled.pdf"},{"title":"Large data center campus proposed in Lancaster area of ...","url":"https://www.datacenterdynamics.com/en/news/large-data-center-campus-proposed-in-lancaster-area-of-dallas-texas/"},{"title":"RESOLUTION NO. A RESOLUTION OF THE CITY OF ...","url":"https://public.destinyhosted.com/lancadocs/2025/CCREG/20250811_2311/5020_5020_M24-49_CP_Project_Labrador_PD__Development_Agreement_Compiled.pdf"},{"title":"Large data center campus proposed in Lancaster area of ...","url":"https://www.datacenterdynamics.com/en/news/large-data-center-campus-proposed-in-lancaster-area-of-dallas-texas/"}],"runId":"srun_c0e944bd89584b543e4b90082d6a8432","classifiedAt":"2026-07-02T22:56:00.826Z"},"2801":{"community_note":"","water_impact":"unknown","ai_evidence":"Planned as seven purpose-built data center buildings at 201 Sunrise Road (116 acres), each ~36 MW, with no named AI tenant, GPU supercluster, or liquid-cooling announcement identified in public listings.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"No public data on cooling-water volumes, source, or discharge for this project was found in the development agreement materials.","grid_note":"Planned multi-building campus load totals roughly 252 MW; no project-specific filings on ratepayer impacts or required new generation/transmission were identified.","citations":[{"title":"Large data center campus proposed in Lancaster area of ...","url":"https://www.datacenterdynamics.com/en/news/large-data-center-campus-proposed-in-lancaster-area-of-dallas-texas/"},{"title":"City of Lancaster, Texas Notice of Public Hearings - M24 ...","url":"https://focusdailynews.com/city-of-lancaster-texas-notice-of-public-hearings-m24-44-m24-45-z24-21-z24-22-z24-13/"},{"title":"Lancaster, Texas","url":"https://public.destinyhosted.com/lancadocs/2025/CCREG/20250811_2311/5019_5019_M24-48_CP_Project_Orange_PD__Development_Agreement_Compiled.pdf"},{"title":"Project Orange Data Center in Dallas | Unknown Company","url":"https://www.datacentermap.com/usa/texas/dallas/project-orange/"},{"title":"Dallas County, Texas Data Centers: 175 Projects Tracked","url":"https://poweredbywho.com/states/tx/counties/dallas"}],"runId":"srun_c0e944bd89584b54f8a3afdb13be4fa3","classifiedAt":"2026-07-02T22:56:00.826Z"},"2803":{"community_note":"Planning staff/commission and the Piedmont Environmental Council opposed the Arcola Grove/PowerHouse Arcola rezoning and substation over plan compatibility, height/FAR, and substation impacts; the Board of Supervisors approved LEGI-2023-0071 by a 5–4 vote.","water_impact":"unknown","ai_evidence":"In Jan 2026, PowerHouse announced a long-term lease with an unnamed hyperscaler and described Arcola as supporting AI/cloud/HPC with high-density GPU and liquid-cooled environments, but provided no details on specific GPU deployments or workloads.","grid_impact":"high","ai_class":"ai-mixed","community_pushback":"active-opposition","water_note":"No facility-specific gallons/day or water source disclosed; Virginia now requires public reporting of data center water use, and regional analysts flag growing water-demand risks during drought in Northern Virginia.","grid_note":"120 MW campus with on-site substation; Loudoun identifies major transmission upgrades/substations near Arcola, and SCC-approved Dominion revenue increases of $565.7M (2026) and $209.9M (2027) affect customer bills.","citations":[{"title":"County Planners Recommend Denial of Arcola Substation ...","url":"https://www.loudounnow.com/news/county-planners-recommend-denial-of-arcola-substation-expanded-data-center/article_e865f8b6-825c-11ef-aa50-0fdc2e5d7809.html"},{"title":"'First of its Kind' Substation Considered by Supervisors","url":"https://www.loudounnow.com/news/first-of-its-kind-substation-considered-by-supervisors/article_17f7a8ac-a402-4a7a-98fe-c2a6e3b260ff.html"},{"title":"Arcola Town Center zoning modifications nearly triple ...","url":"https://blueridgeleader.com/arcola-town-center-zoning-modifications-nearly-triple-residential-development/"},{"title":"Loudoun Updates - Summer 2025","url":"https://www.pecva.org/region/loudoun/loudoun-updates-summer-2025/"},{"title":"New Virginia law requires data center water usage be ...","url":"https://www.wvtf.org/news/2026-06-11/new-virginia-law-requires-data-center-water-usage-be-made-public"}],"runId":"srun_c0e944bd89584b54b2fbc5aa57867fd4","classifiedAt":"2026-07-02T22:56:00.826Z"},"2804":{"community_note":"Loudoun County Supervisor Laura TeKrony has publicly stated she would not support the Holyfield Farm/Gulick Mill data center proposal, which remained a proposal in April 2026.","water_impact":"unknown","ai_evidence":"Listings show a proposed two‑building data center campus on ~87 acres with an unknown operator and no public announcements of GPU clusters or AI tenants.","grid_impact":"moderate","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No facility‑specific cooling water figures were found; regionally, utilities reported roughly 899 million gallons of potable water used by Loudoun data centers in 2023.","grid_note":"No MW load disclosed; PJM approved an $11.8B transmission expansion plan that includes Dominion Energy’s Virginia utility to address growing regional loads.","citations":[{"title":"Proposed Data Center Campus in Loudoun County Faces ...","url":"https://www.idcnova.com/html/1/59/153/5558.html"},{"title":"New data center project pitched in Loudoun County","url":"https://www.bizjournals.com/washington/news/2026/04/13/loudoun-county-data-center-application.html"},{"title":"Data Center Expansion in Virginia: Closing Critical Gaps for ...","url":"https://securewater.illinois.edu/data-center-expansion-in-virginia-closing-critical-gaps-for-informed-water-planning-and-permitting/"},{"title":"20961 Gulick Mill Road For Sale","url":"https://www.cbre.com/resources/fileassets/US-SMPL-124615/f9dd9a19/88e5318d-85f4-4e36-8f4b-b63a7dd0fec4.pdf"},{"title":"Gulick Mill Campus - Building 2 Data Center in Ashburn","url":"https://www.datacentermap.com/usa/virginia/ashburn/gulick-mill-campus-building-2/"}],"runId":"srun_c0e944bd89584b546d53e37d6cedd969","classifiedAt":"2026-07-02T22:56:00.826Z"},"2805":{"community_note":"Regency neighbors are split over selling to data center developers, and the HOA president says there is currently no offer to purchase the homes, leaving the proposal unsettled.","water_impact":"unknown","ai_evidence":"Reports frame a proposed 432 MW hyperscale campus potentially for a major cloud provider; no named AI tenant, GPU supercluster, or liquid-cooling deployment has been disclosed.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No site-specific cooling or gallons/day figures have been disclosed; Northern Virginia utilities report data center water use increased by ~86% from 2019 to 2023.","grid_note":"Power delivery is described as expected in the mid-2030s, and the current rate structure spreads infrastructure costs over Dominion’s entire customer base, prompting debates over ratepayer exposure.","citations":[{"title":"Were Ashburn neighbors offered $4M each to sell for data ...","url":"https://www.nbcwashington.com/news/local/northern-virginia/were-ashburn-neighbors-offered-4m-each-to-sell-for-data-center-development/4080800/"},{"title":"Data Center Expansion in Virginia: Closing Critical Gaps for ...","url":"https://securewater.illinois.edu/data-center-expansion-in-virginia-closing-critical-gaps-for-informed-water-planning-and-permitting/"},{"title":"Major Hyperscaler-Backed 432MW Data Center Campus ...","url":"https://www.idcnova.com/html/1/59/153/5339.html"},{"title":"Regency DC Campus Ashburn Data Center","url":"https://baxtel.com/data-center/regency-dc-campus-ashburn"},{"title":"Data Center Requests | Virginia","url":"http://www.dominionenergy.com/en/Virginia/Large-Business-Services/Data-Center-Requests"}],"runId":"srun_c0e944bd89584b5427abfeccd59e5866","classifiedAt":"2026-07-02T22:56:00.827Z"},"2806":{"community_note":"Residents near White Oak have pushed back on data center expansion as officials consider confining projects to the industrial park, while Project Tropical PODs (incl. Dominion substation work) have advanced without Meta-specific litigation.","water_impact":"moderate","ai_evidence":"Owner‑operated Meta campus with no site‑specific disclosures of GPU superclusters or AI retrofits; Meta’s AI cluster announcements don’t name Henrico.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"Henrico staff estimate data centers collectively use about 0.5–1.0 MGD out of 30–40 MGD countywide; no facility-specific gallons/day were published.","grid_note":"Henrico’s December 2024 POD lists Project Tropical Phase I 'Dominion Substation Improvements,' signaling utility upgrade work tied to the campus.","citations":[{"title":"Residents push back on data center expansion near White ...","url":"https://www.wtvr.com/news/local-news/henrico-county/residents-push-back-qts-data-center-expansion-may-19-2026"},{"title":"Henrico County, Va., May Keep Data Centers to Industrial ...","url":"https://www.govtech.com/artificial-intelligence/henrico-county-va-may-keep-data-centers-to-industrial-park"},{"title":"December 2024","url":"https://henrico.gov/pdfs/planning/2024/dec24pod.pdf"},{"title":"Richmond, Henrico leaders say data centers not exempt ...","url":"https://www.wtvr.com/news/local-news/richmond-henrico-data-centers-water-conservation-july-1-2026"},{"title":"What's in the water? What we know and don't ...","url":"https://virginiamercury.com/2026/06/01/whats-in-the-water-what-we-know-and-dont-know-about-data-center-water-discharge-in-virginia/"}],"runId":"srun_c0e944bd89584b54e204149fb495a2d7","classifiedAt":"2026-07-02T22:56:00.827Z"},"2807":{"community_note":"Nearby residents have raised noise complaints about a CloudHQ data center in Loudoun County; concerns were reported by local media, but no lawsuits or formal opposition groups were identified.","water_impact":"moderate","ai_evidence":"LC1 is listed as a 144 MW, ~998,400 sq ft wholesale data center, and the LC campus description highlights hyperscale location/fiber density without any LC1-specific AI (GPU) announcements or retrofits.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"some-concern","water_note":"No LC1-specific gallons/day were found; CloudHQ states Ashburn facilities that use evaporative heat rejection will be served by grey water.","grid_note":"LC1 is a 144 MW load in a constrained market; Virginia approved a new rate class for the biggest users (including data centers), and new transmission lines have been proposed to bring more energy to data centers.","citations":[{"title":"Neighbors raise concerns about noisy data center in ...","url":"https://www.nbcwashington.com/news/local/northern-virginia/neighbors-raise-concerns-about-noisy-data-center-in-loudoun/4080249/"},{"title":"Data Centers and Water Use in the Potomac River Basin","url":"https://www.potomacriver.org/focus-areas/water-resources-and-drinking-water/water-resources/planning/data-centers-and-water-use-in-the-potomac-river-basin/"},{"title":"CloudHQ LC1 Data Center in Ashburn (144 MW)","url":"https://www.datacentermap.com/usa/virginia/ashburn/cloudhq-lc1/"},{"title":"LC Campus","url":"https://cloudhq.com/campus/lc-campus/"},{"title":"Energy demands for Northern Virginia data centers almost ...","url":"https://www.bayjournal.com/news/energy/energy-demands-for-northern-virginia-data-centers-almost-too-big-to-compute/article_d64ab388-2cb7-11ef-a753-4ffcc056f619.html"}],"runId":"srun_c0e944bd89584b549c5c326eed6eec60","classifiedAt":"2026-07-02T22:56:00.827Z"},"2810":{"community_note":"No organized site-specific opposition was found for QTS Phoenix 3/DC14; Arizona has a statewide data-center tax-incentive moratorium and general municipal questions about AI data centers, but neither names this facility.","water_impact":"low","ai_evidence":"PHX3 is a large hyperscale campus (planned ~750 MW) designed for rapid, large-scale deployments, but there are no public PHX3/DC14-specific announcements of GPU superclusters, AI tenants, or liquid-cooling retrofits; QTS’s DGX colocation certification is company-wide, not site-specific.","grid_impact":"high","ai_class":"cloud-hyperscale","community_pushback":"none-found","water_note":"QTS says its 'Freedom' standard design uses no water for cooling, implying minimal cooling-water use at PHX3/DC14; no site-specific gallons/day, source, or discharge details were found.","grid_note":"Planned for ~750 MW of critical power with a 29-acre substation; APS is updating data-center rates and planning measures to protect reliability and affordability amid surging large-load demand.","citations":[{"title":"Arizona's data center moratorium is only the beginning","url":"https://azcapitoltimes.com/news/2026/06/12/arizonas-data-center-moratorium-is-only-the-beginning/"},{"title":"AI data centers: Questions abound - Glendale Independent","url":"https://www.yourvalley.net/glendale-independent/stories/ai-data-centers-questions-abound,651798"},{"title":"Building the sustainable data centre | World Finance","url":"https://www.worldfinance.com/strategy/building-the-sustainable-data-centre"},{"title":"Phoenix 3 - Data Centers","url":"https://q.com/data-centers/phoenix-3/"},{"title":"QTS files for 750MW campus in Phoenix, Arizona - DCD","url":"https://www.datacenterdynamics.com/en/news/qts-files-for-750mw-campus-in-phoenix-arizona/"}],"runId":"srun_c0e944bd89584b5456b44831f72790a5","classifiedAt":"2026-07-02T22:56:00.827Z"}} \ No newline at end of file diff --git a/typescript-recipes/parallel-datacenter-map/public/data/datacenters.json b/typescript-recipes/parallel-datacenter-map/public/data/datacenters.json new file mode 100644 index 0000000..da22ba8 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/public/data/datacenters.json @@ -0,0 +1 @@ +[{"name":"Equinix Washington DC DC1","operator":"Equinix","owner":"Equinix","address":"21711 Filigree Court","city":"Ashburn","state":"VA","zip":"20147","lat":39.014417899601,"lng":-77.457839773122,"yearOnline":"unknown","powerMw":0,"sqft":19935,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Equinix Washington DC DC2","operator":"Equinix","owner":"Equinix","address":"21715 Filigree Court","city":"Ashburn","state":"VA","zip":"20147","lat":39.014364838419,"lng":-77.457840553437,"yearOnline":"unknown","powerMw":0,"sqft":118446,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Equinix Washington DC DC3","operator":"Equinix","owner":"Equinix","address":"44470 Chilum Place","city":"Ashburn","state":"VA","zip":"20147","lat":39.02157493887,"lng":-77.461073059525,"yearOnline":"unknown","powerMw":0,"sqft":67038,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Equinix Washington DC DC4","operator":"Equinix","owner":"Equinix","address":"21691 Filigree Court","city":"Ashburn","state":"VA","zip":"20147","lat":39.014688967936,"lng":-77.457816963603,"yearOnline":"unknown","powerMw":0,"sqft":60590,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Equinix Washington DC DC5","operator":"Equinix","owner":"Equinix","address":"21701 Filigree Court","city":"Ashburn","state":"VA","zip":"20147","lat":39.014550552557,"lng":-77.457837822335,"yearOnline":"unknown","powerMw":0,"sqft":57544,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Equinix Washington DC DC6","operator":"Equinix","owner":"Equinix","address":"21721 Filigree Court, Suite A","city":"Ashburn","state":"VA","zip":"20147","lat":39.014285246646,"lng":-77.457841723909,"yearOnline":"unknown","powerMw":0,"sqft":59374,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Equinix Washington DC DC10","operator":"Equinix","owner":"Equinix","address":"21551 Beaumeade Circle","city":"Ashburn","state":"VA","zip":"20147","lat":39.020990952735,"lng":-77.454002791156,"yearOnline":"unknown","powerMw":0,"sqft":84830,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Equinix Washington DC DC11","operator":"Equinix","owner":"Equinix","address":"21721 Filigree Court, Suite B","city":"Ashburn","state":"VA","zip":"20147","lat":39.014285246646,"lng":-77.457841723909,"yearOnline":"unknown","powerMw":0,"sqft":116831,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Equinix Washington DC DC13","operator":"Equinix","owner":"Equinix","address":"21830 Uunet Way","city":"Ashburn","state":"VA","zip":"20147","lat":39.012378139814,"lng":-77.47393877825,"yearOnline":"unknown","powerMw":0,"sqft":75003,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Equinix Washington DC DC21","operator":"Equinix","owner":"Equinix","address":"22175 Beaumeade Circle","city":"Ashburn","state":"VA","zip":"20147","lat":39.011288067041,"lng":-77.454056744699,"yearOnline":"unknown","powerMw":0,"sqft":39665,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Equinix Washington DC DC22","operator":"Equinix","owner":"Equinix","address":"22165 Beaumeade Circle","city":"Ashburn","state":"VA","zip":"20147","lat":39.011675026794,"lng":-77.453863264816,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"NTT Ashburn VA1 Data Center","operator":"NTT DATA","owner":"NTT DATA","address":"44664 Guilford Dr.","city":"Ashburn","state":"VA","zip":"20147","lat":39.021905153475,"lng":-77.455900031353,"yearOnline":"unknown","powerMw":12.6,"sqft":64723,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"NTT Ashburn VA2 Data Center","operator":"NTT DATA","owner":"NTT DATA","address":"44610 Guilford Dr.","city":"Ashburn","state":"VA","zip":"20147","lat":39.023384795325,"lng":-77.457040237082,"yearOnline":"unknown","powerMw":14,"sqft":70000,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Digital Realty 44520 Hastings Drive (ACC3)","operator":"Digital Realty","owner":"Digital Realty","address":"44520 Hastings Drive","city":"Ashburn","state":"VA","zip":"20147","lat":39.019834499026,"lng":-77.461230392785,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Digital Realty 44480 Hastings Drive (ACC4)","operator":"Digital Realty","owner":"Digital Realty","address":"44480 Hastings Drive","city":"Ashburn","state":"VA","zip":"20147","lat":39.019374929368,"lng":-77.46201033238,"yearOnline":"unknown","powerMw":0,"sqft":348000,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Digital Realty 44521 Hastings Drive (ACC5)","operator":"Digital Realty","owner":"Digital Realty","address":"44521 Hastings Drive","city":"Ashburn","state":"VA","zip":"20147","lat":39.019202582667,"lng":-77.462952851857,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Digital Realty 44461 Chilum Place (ACC6)","operator":"Digital Realty","owner":"Digital Realty","address":"44461 Chilum Place","city":"Ashburn","state":"VA","zip":"20147","lat":39.021786951681,"lng":-77.461880558155,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Digital Realty 21625 Gresham Drive (ACC7)","operator":"Digital Realty","owner":"Digital Realty","address":"21625 Gresham Drive","city":"Ashburn","state":"VA","zip":"20147","lat":39.017950359575,"lng":-77.464143563827,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Digital Realty IAD-56","operator":"Digital Realty","owner":"Digital Realty","address":"21780 Filigree Court","city":"Ashburn","state":"VA","zip":"20147","lat":39.013552044271,"lng":-77.457428015616,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"under-construction","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Digital Realty 43915 Devin Shafron Drive (Bldg A)","operator":"Digital Realty","owner":"Digital Realty","address":"43915 Devin Shafron Drive","city":"Ashburn","state":"VA","zip":"20147","lat":39.003321181896,"lng":-77.483889371622,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Digital Realty 43881 Devin Shafron Drive (IAD12/Bldg B)","operator":"Digital Realty","owner":"Digital Realty","address":"43881 Devin Shafron Drive","city":"Ashburn","state":"VA","zip":"20147","lat":39.003320392759,"lng":-77.484518037376,"yearOnline":"unknown","powerMw":0,"sqft":180000,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Digital Realty 43831 Devin Shafron Drive (Bldg C)","operator":"Digital Realty","owner":"Digital Realty","address":"43831 Devin Shafron Drive","city":"Ashburn","state":"VA","zip":"20147","lat":39.003553122167,"lng":-77.48538092918,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Digital Realty 43791 Devin Shafron Drive (Bldg D)","operator":"Digital Realty","owner":"Digital Realty","address":"43791 Devin Shafron Drive","city":"Ashburn","state":"VA","zip":"20147","lat":39.003784585979,"lng":-77.486035640948,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Digital Realty 43790 Devin Shafron Drive (Bldg E / IAD23)","operator":"Digital Realty","owner":"Digital Realty","address":"43790 Devin Shafron Drive","city":"Ashburn","state":"VA","zip":"20147","lat":39.003888890175,"lng":-77.485974577714,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Amazon AWS IAD23 / 43830 Devin Shafron Drive (Digital Realty Bldg F)","operator":"Amazon AWS","owner":"Digital Realty","address":"43830 Devin Shafron Drive","city":"Ashburn","state":"VA","zip":"20147","lat":39.003657426363,"lng":-77.485319865947,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Digital Realty 44490 Chilum Place (ACC2)","operator":"Digital Realty","owner":"Digital Realty","address":"44490 Chilum Place","city":"Ashburn","state":"VA","zip":"20147","lat":39.021125973518,"lng":-77.460120773258,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Digital Realty 21561 Beaumeade Circle","operator":"Digital Realty","owner":"Digital Realty","address":"21561 Beaumeade Circle","city":"Ashburn","state":"VA","zip":"20147","lat":39.0210421134,"lng":-77.454286219577,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"QTS Ashburn 1 ASH1 DC1","operator":"QTS","owner":"QTS","address":"22271 Broderick Drive","city":"Sterling","state":"VA","zip":"20166","lat":39.000406452073,"lng":-77.448516627291,"yearOnline":"unknown","powerMw":55,"sqft":0,"type":"wholesale","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Vantage VA32","operator":"Vantage Data Centers","owner":"Vantage Data Centers","address":"19509 Belmont Ridge Road","city":"Ashburn","state":"VA","zip":"20147","lat":39.070130133687,"lng":-77.507019748861,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"under-construction","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"CloudHQ LC4","operator":"CloudHQ","owner":"CloudHQ","address":"22210 Loudoun County Parkway","city":"Ashburn","state":"VA","zip":"20147","lat":39.007303121206,"lng":-77.471889982188,"yearOnline":"unknown","powerMw":180,"sqft":1400000,"type":"hyperscale","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"CloudHQ LC8","operator":"CloudHQ","owner":"CloudHQ","address":"22200 Loudoun County Parkway","city":"Ashburn","state":"VA","zip":"20147","lat":39.007801841974,"lng":-77.47114236136,"yearOnline":"unknown","powerMw":0,"sqft":805600,"type":"hyperscale","status":"planned","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Aligned IAD-01","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"21890 Uunet Drive","city":"Ashburn","state":"VA","zip":"20147","lat":39.01361781751,"lng":-77.469201412907,"yearOnline":"unknown","powerMw":60,"sqft":0,"type":"hyperscale","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Aligned IAD-02","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"21821 Uunet Drive","city":"Ashburn","state":"VA","zip":"20147","lat":39.011858390515,"lng":-77.47546649273,"yearOnline":"unknown","powerMw":120,"sqft":438460,"type":"hyperscale","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Sabey SDC Ashburn Building A","operator":"Sabey Data Center Properties","owner":"Sabey Data Center Properties","address":"21735-21745 Red Rum Drive","city":"Ashburn","state":"VA","zip":"20147","lat":39.015248372896,"lng":-77.476440165497,"yearOnline":"unknown","powerMw":54,"sqft":0,"type":"colocation","status":"under-construction","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"CyrusOne ABX-1 (Beaumeade Circle)","operator":"CyrusOne","owner":"CyrusOne","address":"21529 Beaumeade Circle","city":"Ashburn","state":"VA","zip":"20147","lat":39.020793325097,"lng":-77.453438017874,"yearOnline":"unknown","powerMw":45,"sqft":265000,"type":"hyperscale","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"PowerHouse Pacific","operator":"PowerHouse Data Centers","owner":"PowerHouse Data Centers","address":"22070 Broderick Drive","city":"Sterling","state":"VA","zip":"20166","lat":39.005471250239,"lng":-77.448041307172,"yearOnline":"unknown","powerMw":90,"sqft":682500,"type":"hyperscale","status":"under-construction","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"CyrusOne NVA1","operator":"CyrusOne","owner":"CyrusOne","address":"21111 Ridgetop Circle","city":"Sterling","state":"VA","zip":"20166","lat":39.024672802064,"lng":-77.413753504867,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Cologix ASH1","operator":"Cologix","owner":"Cologix","address":"21745 Beaumeade Circle","city":"Ashburn","state":"VA","zip":"20147","lat":39.017185576295,"lng":-77.457688430896,"yearOnline":"unknown","powerMw":120,"sqft":455000,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"DataBank IAD1 Ashburn Campus Data Center","operator":"DataBank","owner":"DataBank","address":"21635 Red Rum Drive","city":"Ashburn","state":"VA","zip":"20147","lat":39.01674682366,"lng":-77.481843452349,"yearOnline":"unknown","powerMw":0,"sqft":85330,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"DataBank IAD3 Ashburn Campus Data Center","operator":"DataBank","owner":"DataBank","address":"21630 Red Rum Drive","city":"Ashburn","state":"VA","zip":"20147","lat":39.016838769095,"lng":-77.482087420211,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Centersquare Ashburn WDC1","operator":"Centersquare","owner":"Centersquare","address":"21561-21571 Beaumeade Circle","city":"Ashburn","state":"VA","zip":"20147","lat":39.021052501179,"lng":-77.454573742334,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Centersquare Sterling IAD1-A / Sterling DC2","operator":"Centersquare","owner":"Centersquare","address":"45901 Nokes Boulevard","city":"Sterling","state":"VA","zip":"20166","lat":39.024107562721,"lng":-77.413809568114,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"H5 Data Centers Ashburn","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"21800 Beaumeade Circle","city":"Ashburn","state":"VA","zip":"20147","lat":39.015402010534,"lng":-77.455139166693,"yearOnline":"2024","powerMw":42,"sqft":255000,"type":"colocation","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Mapletree 21110 Ridgetop","operator":"Mapletree Redwood Data Centre Trust","owner":"Mapletree Redwood Data Centre Trust","address":"21110 Ridgetop Circle","city":"Sterling","state":"VA","zip":"20166","lat":39.024647380528,"lng":-77.41360967789,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"COPT 45771 Maries Road","operator":"COPT","owner":"Corporate Office Properties Trust","address":"45771 Maries Road","city":"Sterling","state":"VA","zip":"unknown","lat":39.02275170371,"lng":-77.41393703345,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"COPT 45761 Maries Road","operator":"COPT","owner":"Corporate Office Properties Trust","address":"45761 Maries Road","city":"Sterling","state":"VA","zip":"unknown","lat":39.022796131171,"lng":-77.414089681611,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"EdgeCore Ashburn Campus (Maries Road)","operator":"EdgeCore","owner":"EdgeCore","address":"45865 Maries Road","city":"Sterling","state":"VA","zip":"unknown","lat":39.022318546584,"lng":-77.412518971276,"yearOnline":"unknown","powerMw":0,"sqft":348000,"type":"hyperscale","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"EdgeCore Ashburn AS02 (Moran Road)","operator":"EdgeCore","owner":"EdgeCore/Penzance","address":"1501 Moran Road","city":"Sterling","state":"VA","zip":"unknown","lat":38.996205455449,"lng":-77.445030070754,"yearOnline":"unknown","powerMw":0,"sqft":260000,"type":"hyperscale","status":"planned","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"JK Land Ashburn","operator":"JK Land Holdings LLC","owner":"JK Land Holdings LLC","address":"19886 Ashburn Road","city":"Ashburn","state":"VA","zip":"unknown","lat":39.065723170438,"lng":-77.480800728112,"yearOnline":"unknown","powerMw":0,"sqft":360000,"type":"hyperscale","status":"planned","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Amazon AWS IAD - 20935 Loudoun County Parkway","operator":"Amazon AWS","owner":"Amazon AWS","address":"20935 Loudoun County Parkway","city":"Ashburn","state":"VA","zip":"20147","lat":39.03717888847,"lng":-77.449261183706,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"Oracle US Gov East","operator":"Oracle","owner":"Oracle","address":"20945 Loudoun County Parkway","city":"Ashburn","state":"VA","zip":"20147","lat":39.036492685451,"lng":-77.44887492925,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"Ashburn, VA (Loudoun County / Data Center Alley)"},{"name":"11:11 Systems Scottsdale Data Center","operator":"11:11 Systems","owner":"11:11 Systems","address":"7499 E Paradise Ln","city":"Scottsdale","state":"AZ","zip":"85260","lat":33.595514788158,"lng":-111.920469843723,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Aligned PHX-01/02/03 Data Center","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"2500 W Union Hills Drive","city":"Phoenix","state":"AZ","zip":"85027","lat":33.654769152551,"lng":-112.111874291006,"yearOnline":"2017","powerMw":180,"sqft":550000,"type":"wholesale","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Aligned PHX-04 Data Center","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"2501 S Price Rd","city":"Chandler","state":"AZ","zip":"85286","lat":33.268646220756,"lng":-111.888989621504,"yearOnline":"unknown","powerMw":0,"sqft":396343,"type":"wholesale","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Aligned PHX-07 Data Center","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"8785 N Reems Rd","city":"Waddell","state":"AZ","zip":"unknown","lat":33.562969225178,"lng":-112.393535271722,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Centersquare PHX1 Phoenix Data Center Campus","operator":"Centersquare","owner":"Iron Mountain","address":"615 North 48th Street","city":"Phoenix","state":"AZ","zip":"unknown","lat":33.45414622154,"lng":-111.978381077028,"yearOnline":"unknown","powerMw":27,"sqft":145000,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Cogent Phoenix Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"3410 E University Dr","city":"Phoenix","state":"AZ","zip":"85034","lat":33.416801367919,"lng":-112.007337816073,"yearOnline":"unknown","powerMw":0,"sqft":5914,"type":"telecom","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Cogent Data Center - Phoenix 2","operator":"Cogent Communications","owner":"Cogent Communications","address":"1530 E Roeser Rd","city":"Phoenix","state":"AZ","zip":"85040","lat":33.399691183894,"lng":-112.047297990153,"yearOnline":"unknown","powerMw":12,"sqft":24460,"type":"telecom","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Compass PHX II - Building 1","operator":"Compass Datacenters","owner":"Compass Datacenters","address":"W Peoria Ave & N El Mirage Rd","city":"El Mirage","state":"AZ","zip":"85335","lat":33.579957878223,"lng":-112.324511422668,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"under-construction","region":"Phoenix & Mesa, AZ"},{"name":"Compass PHX II - Building 3","operator":"Compass Datacenters","owner":"Compass Datacenters","address":"W Peoria Ave & N El Mirage Rd, Building 3","city":"El Mirage","state":"AZ","zip":"85335","lat":33.579957878223,"lng":-112.324511422668,"yearOnline":"unknown","powerMw":36,"sqft":0,"type":"wholesale","status":"under-construction","region":"Phoenix & Mesa, AZ"},{"name":"DataBank PHX1 Downtown Phoenix Data Center","operator":"DataBank","owner":"DataBank","address":"3110 North Central Avenue suite d151","city":"Phoenix","state":"AZ","zip":"85012","lat":33.484086834626,"lng":-112.073845283173,"yearOnline":"unknown","powerMw":0,"sqft":16200,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Digital Realty PHX10","operator":"Digital Realty","owner":"Digital Realty Trust","address":"120 East Van Buren Street","city":"Phoenix","state":"AZ","zip":"85004","lat":33.451457935422,"lng":-112.072243934948,"yearOnline":"unknown","powerMw":0,"sqft":288000,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Digital Realty PHX15","operator":"Digital Realty","owner":"Digital Realty Trust","address":"2121 South Price Road","city":"Chandler","state":"AZ","zip":"85286","lat":33.274555964868,"lng":-111.889081790913,"yearOnline":"unknown","powerMw":0,"sqft":519500,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"EdgeConneX Phoenix - EDCPHX01","operator":"EdgeConneX","owner":"EdgeConneX","address":"3011 S 52nd St","city":"Tempe","state":"AZ","zip":"unknown","lat":33.396266584649,"lng":-111.970578146011,"yearOnline":"unknown","powerMw":0,"sqft":79200,"type":"edge","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Expedient PHX1","operator":"Expedient","owner":"Expedient","address":"2475 W Townley Ave","city":"Phoenix","state":"AZ","zip":"85021","lat":33.565630517211,"lng":-112.11193107868,"yearOnline":"2021","powerMw":3.6,"sqft":46000,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Flexential Phoenix - Deer Valley Data Center","operator":"Flexential","owner":"Flexential","address":"1850 W Deer Valley Road","city":"Phoenix","state":"AZ","zip":"85027","lat":33.683909664064,"lng":-112.099299322612,"yearOnline":"unknown","powerMw":5.02,"sqft":109476,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Google Mesa Redhawk 1 / Center Beta","operator":"Google","owner":"Google / Stone Applications LLC","address":"East Elliot Road and South Sossaman Road","city":"Mesa","state":"AZ","zip":"unknown","lat":33.350439875438,"lng":-111.670580567719,"yearOnline":"unknown","powerMw":0,"sqft":288530,"type":"hyperscale","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"H5 Phoenix Data Center","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"2600 W Germann Rd","city":"Chandler","state":"AZ","zip":"85286","lat":33.276093004107,"lng":-111.884895456045,"yearOnline":"unknown","powerMw":26,"sqft":180000,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Internap Phoenix / HorizonIQ Phoenix","operator":"HorizonIQ","owner":"HorizonIQ","address":"2500 W Frye Rd","city":"Chandler","state":"AZ","zip":"unknown","lat":33.298714784821,"lng":-111.883639506143,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Iron Mountain AZP-1","operator":"Iron Mountain Data Centers","owner":"Iron Mountain","address":"615 N 48th Street","city":"Phoenix","state":"AZ","zip":"85008","lat":33.45414622154,"lng":-111.978381077028,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Iron Mountain AZP-2","operator":"Iron Mountain Data Centers","owner":"Iron Mountain","address":"4802 East Van Buren Street","city":"Phoenix","state":"AZ","zip":"85008","lat":33.451170191079,"lng":-111.978319139232,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"LexisNexis Scottsdale","operator":"LexisNexis","owner":"LexisNexis","address":"8521 E Princess Dr","city":"Scottsdale","state":"AZ","zip":"unknown","lat":33.644735588161,"lng":-111.897307935494,"yearOnline":"unknown","powerMw":24,"sqft":0,"type":"enterprise","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Liquid Web Phoenix Data Center","operator":"Liquid Web","owner":"Liquid Web","address":"3402 E University Dr","city":"Phoenix","state":"AZ","zip":"85034","lat":33.416684292717,"lng":-112.007501563157,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Lumen Phoenix 1","operator":"Lumen","owner":"Lumen","address":"811 South 16th Street","city":"Phoenix","state":"AZ","zip":"85034","lat":33.441168914163,"lng":-112.047704644769,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Lumen Phoenix 2","operator":"Lumen","owner":"Lumen","address":"17 East Virginia Avenue","city":"Phoenix","state":"AZ","zip":"unknown","lat":33.476579294667,"lng":-112.07317673015,"yearOnline":"unknown","powerMw":0,"sqft":5000,"type":"telecom","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Lumen Phoenix 3","operator":"Lumen","owner":"Lumen","address":"801 South 16th Street","city":"Phoenix","state":"AZ","zip":"unknown","lat":33.441309993427,"lng":-112.047705840346,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Menlo Digital MD-PHX1 Phoenix","operator":"Menlo Digital","owner":"Menlo Digital","address":"4801-4811 East Thistle Landing Drive","city":"Phoenix","state":"AZ","zip":"85044","lat":33.312992977218,"lng":-111.977074079146,"yearOnline":"unknown","powerMw":257,"sqft":1000000,"type":"wholesale","status":"planned","region":"Phoenix & Mesa, AZ"},{"name":"Microsoft El Mirage PHX80","operator":"Microsoft Azure","owner":"Microsoft","address":"12901 W Olive Ave","city":"El Mirage","state":"AZ","zip":"unknown","lat":33.565511169603,"lng":-112.337478831054,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"NTT Phoenix PH1 Data Center","operator":"NTT Global Data Centers","owner":"NTT Global Data Centers","address":"10256 E Elliot Rd","city":"Mesa","state":"AZ","zip":"85212","lat":33.350042541927,"lng":-111.608594837495,"yearOnline":"2022","powerMw":36,"sqft":0,"type":"wholesale","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"NTT Phoenix PH4 Data Center","operator":"NTT Global Data Centers","owner":"NTT Global Data Centers","address":"10256 E Elliot Rd., Bldg 4","city":"Mesa","state":"AZ","zip":"85212","lat":33.350042541927,"lng":-111.608594837495,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"under-construction","region":"Phoenix & Mesa, AZ"},{"name":"PhoenixNAP West University","operator":"PhoenixNAP","owner":"PhoenixNAP / RadiusDC","address":"2353 W University Dr","city":"Phoenix","state":"AZ","zip":"unknown","lat":33.423954610673,"lng":-112.031423551444,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"QTS Phoenix 2 - PHX2 DC1","operator":"QTS","owner":"QTS","address":"1200 N 40th Street","city":"Phoenix","state":"AZ","zip":"85008","lat":33.462325443037,"lng":-111.995132905682,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"QTS Phoenix 2 - PHX2 DC2","operator":"QTS","owner":"QTS","address":"1250 N 40th Street","city":"Phoenix","state":"AZ","zip":"85008","lat":33.462403325126,"lng":-111.995132077144,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"RadiusDC Phoenix I DC2 / PhoenixNAP East Elwood PHX02","operator":"RadiusDC","owner":"RadiusDC / PhoenixNAP","address":"3221 E Elwood St","city":"Phoenix","state":"AZ","zip":"85034","lat":33.416518015604,"lng":-112.011908398381,"yearOnline":"2026","powerMw":30,"sqft":530000,"type":"colocation","status":"under-construction","region":"Phoenix & Mesa, AZ"},{"name":"Raeden Phoenix Data Center","operator":"Raeden","owner":"Raeden","address":"1710 E Grant St","city":"Phoenix","state":"AZ","zip":"unknown","lat":33.441432468029,"lng":-112.045307017642,"yearOnline":"unknown","powerMw":2,"sqft":0,"type":"edge","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Stream PHXA Campus / Phoenix I-VII","operator":"Stream Data Centers","owner":"Stream Data Centers","address":"2950 S Litchfield Rd","city":"Goodyear","state":"AZ","zip":"85338","lat":33.419505407501,"lng":-112.357840994231,"yearOnline":"unknown","powerMw":280,"sqft":2000000,"type":"wholesale","status":"under-construction","region":"Phoenix & Mesa, AZ"},{"name":"US Signal AZ01 Phoenix Data Center","operator":"US Signal","owner":"US Signal","address":"1655 W Sunrise Blvd","city":"Gilbert","state":"AZ","zip":"85233","lat":33.355306846036,"lng":-111.825816902801,"yearOnline":"1998","powerMw":0.049,"sqft":1323,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Vantage AZ11","operator":"Vantage Data Centers","owner":"Vantage Data Centers","address":"45 S Bullard Avenue","city":"Goodyear","state":"AZ","zip":"85338","lat":33.449351137679,"lng":-112.375427794855,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"under-construction","region":"Phoenix & Mesa, AZ"},{"name":"Verizon 3930 Watkins","operator":"Verizon Enterprise","owner":"Verizon","address":"3930 Watkins","city":"Phoenix","state":"AZ","zip":"unknown","lat":33.423998343623,"lng":-111.997003556347,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"zColo Phoenix / CoreLink","operator":"zColo","owner":"unknown","address":"3110 N Central Avenue","city":"Phoenix","state":"AZ","zip":"85012","lat":33.484086834626,"lng":-112.073845283173,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"20435 N 26th Data Center","operator":"unknown","owner":"unknown","address":"20435 N 26th","city":"Phoenix","state":"AZ","zip":"unknown","lat":33.671140321438,"lng":-112.116598618653,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"Aligned PHX-13 - Waddell Campus Building","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"8785 N Reems Road","city":"Waddell","state":"AZ","zip":"unknown","lat":33.562969225178,"lng":-112.393535271722,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"under-construction","region":"Phoenix & Mesa, AZ"},{"name":"Digital Realty - 2055 E Technology Cir","operator":"Digital Realty","owner":"Digital Realty","address":"2055 E Technology Circle","city":"Tempe","state":"AZ","zip":"unknown","lat":33.345609954968,"lng":-111.899271237235,"yearOnline":"2007","powerMw":0,"sqft":76350,"type":"colocation","status":"operational","region":"Phoenix & Mesa, AZ"},{"name":"DataBank DFW1 - Downtown Dallas","operator":"DataBank","owner":"DataBank","address":"400 South Akard","city":"Dallas","state":"TX","zip":"75202","lat":32.778405770928,"lng":-96.798998169898,"yearOnline":"unknown","powerMw":7,"sqft":145250,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"DataBank DFW2 - North Dallas/Richardson","operator":"DataBank","owner":"DataBank","address":"904 Quality Way","city":"Richardson","state":"TX","zip":"75081","lat":32.966737497487,"lng":-96.714197626288,"yearOnline":"unknown","powerMw":4.3,"sqft":41310,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"DataBank DFW3 - Plano Data Center","operator":"DataBank","owner":"DataBank","address":"8375 Dominion Pkwy","city":"Plano","state":"TX","zip":"75024","lat":33.085201812599,"lng":-96.812384868177,"yearOnline":"unknown","powerMw":12,"sqft":72230,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"DataBank DFW4 - Dallas Empire Central","operator":"DataBank","owner":"DataBank","address":"1100 Empire Central Place","city":"Dallas","state":"TX","zip":"75247","lat":32.822853038237,"lng":-96.873611115199,"yearOnline":"unknown","powerMw":4,"sqft":35900,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"DataBank DFW5 - Dallas Infomart","operator":"DataBank","owner":"DataBank","address":"1950 North Stemmons Freeway, Suite #4006","city":"Dallas","state":"TX","zip":"75207","lat":32.801543581919,"lng":-96.823828523262,"yearOnline":"unknown","powerMw":1.3,"sqft":17320,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"DataBank DFW6 - Dallas Love Field","operator":"DataBank","owner":"DataBank","address":"8600 Harry Hines Boulevard, Suite #200","city":"Dallas","state":"TX","zip":"75207","lat":32.837367281863,"lng":-96.865476533525,"yearOnline":"unknown","powerMw":0.675,"sqft":12560,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"DataBank DFW7 - Dallas LBJ","operator":"DataBank","owner":"DataBank","address":"6606 LBJ Freeway, Suite #145","city":"Dallas","state":"TX","zip":"75240","lat":32.924431699573,"lng":-96.791726211492,"yearOnline":"unknown","powerMw":0.94,"sqft":16070,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Equinix DA1","operator":"Equinix","owner":"Equinix","address":"1950 North Stemmons Freeway, Suite 1034","city":"Dallas","state":"TX","zip":"75207","lat":32.801543581919,"lng":-96.823828523262,"yearOnline":"unknown","powerMw":0,"sqft":30354,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Equinix DA2","operator":"Equinix","owner":"Equinix","address":"1950 North Stemmons Freeway, Suite 2027","city":"Dallas","state":"TX","zip":"75207","lat":32.801543581919,"lng":-96.823828523262,"yearOnline":"unknown","powerMw":0,"sqft":24542,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Equinix DA3","operator":"Equinix","owner":"Equinix","address":"1950 North Stemmons Freeway, Suites 1039A & 2048","city":"Dallas","state":"TX","zip":"75207","lat":32.801543581919,"lng":-96.823828523262,"yearOnline":"unknown","powerMw":0,"sqft":25866,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Equinix DA4","operator":"Equinix","owner":"Equinix","address":"2323 Bryan Street, Suite 1400","city":"Dallas","state":"TX","zip":"75201","lat":32.786929610022,"lng":-96.79401789536,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Equinix DA6","operator":"Equinix","owner":"Equinix","address":"1950 North Stemmons Freeway, Suite 3050","city":"Dallas","state":"TX","zip":"75207","lat":32.801543581919,"lng":-96.823828523262,"yearOnline":"unknown","powerMw":0,"sqft":71612,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Equinix DA7","operator":"Equinix","owner":"Equinix","address":"6653 Pinecrest Dr","city":"Plano","state":"TX","zip":"75024","lat":33.062840934607,"lng":-96.809475300151,"yearOnline":"unknown","powerMw":0,"sqft":37910,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Equinix DA9","operator":"Equinix","owner":"Equinix","address":"2222 East Grauwyler Road","city":"Irving","state":"TX","zip":"unknown","lat":32.830660052664,"lng":-96.912475087068,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Equinix DA10","operator":"Equinix","owner":"Equinix","address":"1232 Alma Road","city":"Richardson","state":"TX","zip":"75081","lat":32.963480007522,"lng":-96.717178361074,"yearOnline":"unknown","powerMw":0,"sqft":12853,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Equinix DA11","operator":"Equinix","owner":"Equinix","address":"1990 North Stemmons Freeway","city":"Dallas","state":"TX","zip":"75207","lat":32.801683023303,"lng":-96.824289212658,"yearOnline":"unknown","powerMw":0,"sqft":72000,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Digital Realty DFW10","operator":"Digital Realty","owner":"Digital Realty Trust","address":"2323 Bryan Street","city":"Dallas","state":"TX","zip":"75201","lat":32.786929610022,"lng":-96.79401789536,"yearOnline":"unknown","powerMw":0,"sqft":454000,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Digital Realty DFW11","operator":"Digital Realty","owner":"Digital Realty Trust","address":"4025 Midway Rd","city":"Carrollton","state":"TX","zip":"75007","lat":33.021332206857,"lng":-96.84362028382,"yearOnline":"unknown","powerMw":0,"sqft":100600,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Digital Realty DFW12","operator":"Digital Realty","owner":"Digital Realty Trust","address":"2440 Marsh Lane","city":"Carrollton","state":"TX","zip":"75006","lat":32.979913360675,"lng":-96.85551664628,"yearOnline":"unknown","powerMw":0,"sqft":135300,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Digital Realty DFW29","operator":"Digital Realty","owner":"Digital Realty Trust","address":"950 E. Collins Boulevard","city":"Richardson","state":"TX","zip":"75081","lat":32.96790892786,"lng":-96.711389334351,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Aligned DFW-01","operator":"Aligned","owner":"Aligned","address":"2800 Summit Ave","city":"Plano","state":"TX","zip":"75074","lat":33.009776426561,"lng":-96.678415144762,"yearOnline":"unknown","powerMw":60,"sqft":375000,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Flexential Dallas - Plano","operator":"Flexential","owner":"Flexential","address":"3500 East Plano Parkway","city":"Plano","state":"TX","zip":"75074","lat":33.006959918675,"lng":-96.669644171351,"yearOnline":"unknown","powerMw":18,"sqft":261425,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Centersquare Dallas DFW3-A","operator":"Centersquare","owner":"Centersquare","address":"11830 Webb Chapel Rd., Suite 200","city":"Dallas","state":"TX","zip":"75234","lat":32.91021773245,"lng":-96.872666872294,"yearOnline":"unknown","powerMw":4.8,"sqft":61348,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Cologix DAL1","operator":"Cologix","owner":"Cologix","address":"1950 North Stemmons Freeway","city":"Dallas","state":"TX","zip":"75207","lat":32.801543581919,"lng":-96.823828523262,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"CyrusOne DFW1 - Carrollton","operator":"CyrusOne","owner":"CyrusOne","address":"1649 West Frankford Road","city":"Carrollton","state":"TX","zip":"75007","lat":32.994965147237,"lng":-96.930483914641,"yearOnline":"unknown","powerMw":90,"sqft":600000,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"CyrusOne DFW2 - Lewisville","operator":"CyrusOne","owner":"CyrusOne","address":"2501 S. State Hwy 121 Business","city":"Lewisville","state":"TX","zip":"unknown","lat":33.054389459074,"lng":-96.915198725532,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"QTS Irving","operator":"QTS Data Centers","owner":"Blackstone","address":"6431 Longhorn Drive","city":"Irving","state":"TX","zip":"unknown","lat":32.895974347996,"lng":-96.981237823225,"yearOnline":"2014","powerMw":75.2,"sqft":700000,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"NTT Dallas TX1","operator":"NTT DATA","owner":"NTT DATA","address":"2008 Lookout Drive","city":"Garland","state":"TX","zip":"75044","lat":32.982469265755,"lng":-96.659647517443,"yearOnline":"unknown","powerMw":16,"sqft":230000,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"NTT Dallas TX2","operator":"NTT DATA","owner":"NTT DATA","address":"2108 Lookout Drive","city":"Garland","state":"TX","zip":"75044","lat":32.982352682867,"lng":-96.652613746226,"yearOnline":"2024","powerMw":36,"sqft":0,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"NTT Dallas TX3","operator":"NTT DATA","owner":"NTT DATA","address":"2080 Lookout Drive","city":"Garland","state":"TX","zip":"75044","lat":32.982483930697,"lng":-96.657607266476,"yearOnline":"unknown","powerMw":36,"sqft":0,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"NTT Dallas TX4","operator":"NTT DATA","owner":"NTT DATA","address":"2060 Lookout Dr.","city":"Garland","state":"TX","zip":"75044","lat":32.982500800175,"lng":-96.654368299801,"yearOnline":"2026","powerMw":36,"sqft":127000,"type":"colocation","status":"under-construction","region":"Dallas-Fort Worth, TX"},{"name":"Prime Dallas DFW01","operator":"Prime Data Centers","owner":"Prime Data Centers","address":"1515 Round Table Dr","city":"Dallas","state":"TX","zip":"unknown","lat":32.837509927436,"lng":-96.879424269717,"yearOnline":"2023","powerMw":6,"sqft":106865,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Stream Dallas DFW-B2","operator":"Stream Data Centers","owner":"Stream Data Centers","address":"near I-45 and East Belt Line Road","city":"Wilmer","state":"TX","zip":"unknown","lat":32.591505293485,"lng":-96.678721516807,"yearOnline":"unknown","powerMw":0,"sqft":690000,"type":"wholesale","status":"under-construction","region":"Dallas-Fort Worth, TX"},{"name":"Google Midlothian Data Center","operator":"Google","owner":"Google","address":"3441 Railport Pkwy","city":"Midlothian","state":"TX","zip":"unknown","lat":32.448927895772,"lng":-97.056815922356,"yearOnline":"2019","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Verizon Dallas (Richardson)","operator":"Verizon Enterprise","owner":"Verizon Enterprise","address":"400 International Parkway","city":"Richardson","state":"TX","zip":"unknown","lat":32.953516122625,"lng":-96.708596929712,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Verizon 1300 W Mockingbird","operator":"Verizon Enterprise","owner":"Verizon Enterprise","address":"1300 W Mockingbird","city":"Dallas","state":"TX","zip":"unknown","lat":32.820583076667,"lng":-96.866676028284,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"Lumen Dallas 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"3180 Irving Blvd","city":"Dallas","state":"TX","zip":"unknown","lat":32.807780964841,"lng":-96.867232828641,"yearOnline":"unknown","powerMw":0,"sqft":125538,"type":"telecom","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"H5 Colo Dallas","operator":"H5 Colo","owner":"H5 Colo","address":"12712 Park Central Dr","city":"Dallas","state":"TX","zip":"75251","lat":32.920330667869,"lng":-96.776916690776,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"VAZATA Dallas DAA / DAL I","operator":"VAZATA","owner":"VAZATA","address":"4025 Midway Road","city":"Carrollton","state":"TX","zip":"75007","lat":33.021332206857,"lng":-96.84362028382,"yearOnline":"unknown","powerMw":0,"sqft":25000,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"LightEdge Dallas (Lewisville)","operator":"LightEdge Solutions","owner":"LightEdge Solutions","address":"2501 State Hwy 121","city":"Lewisville","state":"TX","zip":"unknown","lat":33.054389459074,"lng":-96.915198725532,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Dallas-Fort Worth, TX"},{"name":"CyrusOne SAT1","operator":"CyrusOne","owner":"CyrusOne","address":"9999 Westover Hills Boulevard","city":"San Antonio","state":"TX","zip":"78251","lat":29.46568205401,"lng":-98.687977501223,"yearOnline":"unknown","powerMw":9,"sqft":110000,"type":"colocation","status":"operational","region":"San Antonio, TX"},{"name":"CyrusOne SAT2","operator":"CyrusOne","owner":"CyrusOne","address":"9554 Westover Hills Blvd","city":"San Antonio","state":"TX","zip":"unknown","lat":29.472581015746,"lng":-98.672342362064,"yearOnline":"2015","powerMw":0,"sqft":196000,"type":"colocation","status":"operational","region":"San Antonio, TX"},{"name":"CyrusOne SAT5","operator":"CyrusOne","owner":"CyrusOne","address":"14719 Omicron Drive","city":"San Antonio","state":"TX","zip":"78245","lat":29.417060198092,"lng":-98.78874625249,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"San Antonio, TX"},{"name":"CyrusOne SAT9","operator":"CyrusOne","owner":"CyrusOne","address":"14815 Omicron Drive","city":"San Antonio","state":"TX","zip":"78245","lat":29.42021902509,"lng":-98.792300252297,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"planned","region":"San Antonio, TX"},{"name":"H5 Data Centers San Antonio - 100 Taylor","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"100 Taylor St.","city":"San Antonio","state":"TX","zip":"78205","lat":29.429372,"lng":-98.486792,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"San Antonio, TX"},{"name":"H5 Data Centers San Antonio - 323 Broadway","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"323 Broadway","city":"San Antonio","state":"TX","zip":"78205","lat":29.429161661325,"lng":-98.486728450931,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"San Antonio, TX"},{"name":"Lumen San Antonio 1","operator":"Lumen","owner":"Lumen","address":"5130 Service Center Drive","city":"San Antonio","state":"TX","zip":"unknown","lat":29.475677672711,"lng":-98.391428344011,"yearOnline":"unknown","powerMw":0,"sqft":6200,"type":"telecom","status":"operational","region":"San Antonio, TX"},{"name":"Lumen San Antonio 2","operator":"Lumen","owner":"Lumen","address":"1203 N. Frio Street","city":"San Antonio","state":"TX","zip":"unknown","lat":29.438282621658,"lng":-98.506053059675,"yearOnline":"unknown","powerMw":0,"sqft":12000,"type":"telecom","status":"operational","region":"San Antonio, TX"},{"name":"Lumen San Antonio 3","operator":"Lumen","owner":"Lumen","address":"214 E Ramsey Rd","city":"San Antonio","state":"TX","zip":"78216","lat":29.528172914474,"lng":-98.492519474311,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"San Antonio, TX"},{"name":"Vantage TX11 - San Antonio","operator":"Vantage Data Centers","owner":"Vantage Data Centers","address":"14720 Omicron Dr","city":"San Antonio","state":"TX","zip":"78245","lat":29.416681505461,"lng":-98.788564452515,"yearOnline":"2026","powerMw":32,"sqft":242667,"type":"hyperscale","status":"under-construction","region":"San Antonio, TX"},{"name":"Stream San Antonio II / SATA","operator":"Stream Data Centers","owner":"Stream Data Centers","address":"9550 Westover Hills Blvd","city":"San Antonio","state":"TX","zip":"78251","lat":29.472664089261,"lng":-98.672238520167,"yearOnline":"unknown","powerMw":10.8,"sqft":75840,"type":"wholesale","status":"operational","region":"San Antonio, TX"},{"name":"CloudHQ SAT Campus (Building 1)","operator":"CloudHQ","owner":"CloudHQ","address":"15255 Lambda Dr","city":"San Antonio","state":"TX","zip":"78245","lat":29.41681,"lng":-98.79809,"yearOnline":"2027","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"San Antonio, TX"},{"name":"Microsoft Azure South Central US-Texas / Microsoft San Antonio","operator":"Microsoft Azure","owner":"Microsoft","address":"5150 Rogers Rd","city":"San Antonio","state":"TX","zip":"unknown","lat":29.478778261529,"lng":-98.695056289901,"yearOnline":"unknown","powerMw":0,"sqft":470000,"type":"hyperscale","status":"operational","region":"San Antonio, TX"},{"name":"Microsoft 3823 Wiseman / North","operator":"Microsoft Azure","owner":"Microsoft","address":"3823 Wiseman Blvd","city":"San Antonio","state":"TX","zip":"unknown","lat":29.476901643895,"lng":-98.690168384592,"yearOnline":"2015","powerMw":0,"sqft":440000,"type":"hyperscale","status":"operational","region":"San Antonio, TX"},{"name":"Microsoft SAT14 / Wiseman Boulevard","operator":"Microsoft Azure","owner":"Microsoft","address":"3545 Wiseman Blvd","city":"San Antonio","state":"TX","zip":"78251","lat":29.473179430857,"lng":-98.681507780288,"yearOnline":"2024","powerMw":0,"sqft":259000,"type":"hyperscale","status":"operational","region":"San Antonio, TX"},{"name":"Microsoft SAT82 / Edge Point","operator":"Microsoft Azure","owner":"Microsoft","address":"2580 Farm to Market Road 471 N","city":"Castroville","state":"TX","zip":"unknown","lat":29.402244624956,"lng":-98.890217399604,"yearOnline":"2028","powerMw":0,"sqft":195670,"type":"hyperscale","status":"planned","region":"San Antonio, TX"},{"name":"Microsoft SAT90 / Core Campus","operator":"Microsoft Azure","owner":"Microsoft","address":"2995 US Hwy 90 W","city":"Castroville","state":"TX","zip":"78009","lat":29.355468937711,"lng":-98.858672725005,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"under-construction","region":"San Antonio, TX"},{"name":"Amazon AWS 7400 Potranco Rd / ALE060","operator":"Amazon AWS","owner":"Amazon AWS","address":"7400 Potranco Rd","city":"San Antonio","state":"TX","zip":"78251","lat":29.453247504985,"lng":-98.637065262659,"yearOnline":"2021","powerMw":0,"sqft":109600,"type":"hyperscale","status":"operational","region":"San Antonio, TX"},{"name":"Amazon AWS ALE061 / Park","operator":"Amazon AWS","owner":"Amazon AWS","address":"11625 Old Corpus Christi Hwy","city":"San Antonio","state":"TX","zip":"unknown","lat":29.30137834902,"lng":-98.388123637274,"yearOnline":"2023","powerMw":0,"sqft":109000,"type":"hyperscale","status":"operational","region":"San Antonio, TX"},{"name":"Rowan Project Cinco / Cinco Campus Phase 1","operator":"Rowan Digital Infrastructure","owner":"Rowan Digital Infrastructure","address":"TX-132 & Co Rd 683","city":"Lytle","state":"TX","zip":"78052","lat":29.219412060852,"lng":-98.824440305829,"yearOnline":"2026","powerMw":60,"sqft":250000,"type":"hyperscale","status":"under-construction","region":"San Antonio, TX"},{"name":"Bexar Datacenter San Antonio SAT1","operator":"Bexar Datacenter","owner":"Bexar Datacenter","address":"3463 Magic Drive","city":"San Antonio","state":"TX","zip":"78229","lat":29.502161256096,"lng":-98.557115569346,"yearOnline":"2005","powerMw":1,"sqft":0,"type":"colocation","status":"operational","region":"San Antonio, TX"},{"name":"H5 Data Centers San Antonio — 100 Taylor St (Carrier Hotel)","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"100 Taylor Street","city":"San Antonio","state":"TX","zip":"78205","lat":29.429295988349,"lng":-98.487403121319,"yearOnline":"unknown","powerMw":0,"sqft":85000,"type":"colocation","status":"operational","region":"San Antonio, TX"},{"name":"Lumen San Antonio 2 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"1203 North Frio Street","city":"San Antonio","state":"TX","zip":"unknown","lat":29.438282621658,"lng":-98.506053059675,"yearOnline":"unknown","powerMw":0,"sqft":6200,"type":"telecom","status":"operational","region":"San Antonio, TX"},{"name":"SATC Colo — San Antonio Technology Center","operator":"SATC Colo","owner":"SATC Colo","address":"3463 Magic Drive, Suite 100","city":"San Antonio","state":"TX","zip":"78229","lat":29.502161256096,"lng":-98.557115569346,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"San Antonio, TX"},{"name":"Digital Realty PDX10","operator":"Digital Realty","owner":"Digital Realty Trust","address":"3825 NW Aloclek Street","city":"Hillsboro","state":"OR","zip":"97124","lat":45.547264969157,"lng":-122.891084278931,"yearOnline":"unknown","powerMw":0,"sqft":49000,"type":"colocation","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"EdgeConneX POR01 Portland Data Center","operator":"EdgeConneX","owner":"EdgeConneX","address":"6327 NW Evergreen Pkwy, Building C, Suite C300","city":"Hillsboro","state":"OR","zip":"97124","lat":45.550950427813,"lng":-122.916020097343,"yearOnline":"unknown","powerMw":3,"sqft":39400,"type":"edge","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"STACK Infrastructure POR01A","operator":"STACK Infrastructure","owner":"STACK Infrastructure","address":"3145 NE Brookwood Pkwy","city":"Hillsboro","state":"OR","zip":"97124","lat":45.550862924301,"lng":-122.926418304057,"yearOnline":"unknown","powerMw":5,"sqft":0,"type":"colocation","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"STACK Infrastructure POR01B","operator":"STACK Infrastructure","owner":"STACK Infrastructure","address":"3155 NE Brookwood Pkwy","city":"Hillsboro","state":"OR","zip":"97124","lat":45.546347319839,"lng":-122.932049600259,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Flexential Portland - Hillsboro 1","operator":"Flexential","owner":"Flexential","address":"3935 NE Aloclek Place","city":"Hillsboro","state":"OR","zip":"97124","lat":45.547940696776,"lng":-122.890647808426,"yearOnline":"unknown","powerMw":5.3,"sqft":85388,"type":"colocation","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Flexential Portland - Hillsboro 3","operator":"Flexential","owner":"Flexential","address":"5419 NE Starr Boulevard","city":"Hillsboro","state":"OR","zip":"97124","lat":45.560578540467,"lng":-122.9361962614,"yearOnline":"2022","powerMw":36,"sqft":358000,"type":"colocation","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"QTS Hillsboro 1 DC1","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"4951 NE Huffman St","city":"Hillsboro","state":"OR","zip":"97124","lat":45.556953854889,"lng":-122.931526904814,"yearOnline":"unknown","powerMw":20,"sqft":0,"type":"wholesale","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"QTS Hillsboro 2 DC1","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"4755 NE Huffman St","city":"Hillsboro","state":"OR","zip":"97124","lat":45.556953854931,"lng":-122.931941841295,"yearOnline":"2023","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Aligned Hillsboro PDX-01","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"NE 30th Ave & NE Evergreen Rd","city":"Hillsboro","state":"OR","zip":"97124","lat":45.551145561245,"lng":-122.948283469541,"yearOnline":"unknown","powerMw":72,"sqft":480000,"type":"hyperscale","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Opus Interactive Hillsboro Datacenter","operator":"Opus Interactive","owner":"Opus Interactive","address":"8135 NE Evergreen Parkway","city":"Hillsboro","state":"OR","zip":"97124","lat":45.546368410954,"lng":-122.896749309222,"yearOnline":"unknown","powerMw":24,"sqft":345000,"type":"colocation","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"H5 Portland Data Center","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"1233 NW 12th Avenue, Suite 201","city":"Portland","state":"OR","zip":"97209","lat":45.531743761072,"lng":-122.683549578902,"yearOnline":"unknown","powerMw":0,"sqft":42000,"type":"colocation","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Digital Fortress Portland 1 (PTL)","operator":"Digital Fortress","owner":"Chirisa Investments","address":"511 SW 10th Ave, 3rd floor, Suite 300","city":"Portland","state":"OR","zip":"97205","lat":45.521254995882,"lng":-122.681515636797,"yearOnline":"unknown","powerMw":2.1,"sqft":10700,"type":"colocation","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Digital Fortress Portland 2 (PTL2)","operator":"Digital Fortress","owner":"Chirisa Investments","address":"9705 SW Sunshine Ct","city":"Beaverton","state":"OR","zip":"unknown","lat":45.476007843704,"lng":-122.777578249411,"yearOnline":"unknown","powerMw":1.2,"sqft":3500,"type":"colocation","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Digital Fortress Portland 3 (PTL3)","operator":"Digital Fortress","owner":"Chirisa Investments","address":"9610 SW Sunshine Ct","city":"Beaverton","state":"OR","zip":"unknown","lat":45.475893252263,"lng":-122.777084724232,"yearOnline":"unknown","powerMw":1.5,"sqft":6700,"type":"colocation","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Lumen Portland 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"1335 Northwest Northrup Street","city":"Portland","state":"OR","zip":"97209","lat":45.531522122663,"lng":-122.684844894766,"yearOnline":"unknown","powerMw":0,"sqft":27000,"type":"telecom","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Lumen Portland 2","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"707 SW Washington Avenue","city":"Portland","state":"OR","zip":"97205","lat":45.520760022958,"lng":-122.678985336482,"yearOnline":"unknown","powerMw":0,"sqft":4663,"type":"telecom","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Lumen Portland 3","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"14197 SW Millikan Way","city":"Beaverton","state":"OR","zip":"unknown","lat":45.493762350252,"lng":-122.823004114167,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Pittock Block / Pittock Internet Exchange","operator":"1547 Critical Systems Realty","owner":"1547 Critical Systems Realty","address":"921 SW Washington St","city":"Portland","state":"OR","zip":"97205","lat":45.521204488864,"lng":-122.680632117279,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Cogent Portland Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"2953 Northwest St. Helens Rd","city":"Portland","state":"OR","zip":"97210","lat":45.543735005429,"lng":-122.721558849752,"yearOnline":"unknown","powerMw":0,"sqft":8325,"type":"telecom","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"LightPoint / DTS-NET USA Portland Data Center","operator":"LightPoint / DTS-NET USA","owner":"unknown","address":"625 SW Stark St., Suite 500","city":"Portland","state":"OR","zip":"97205","lat":45.52120658375,"lng":-122.677778853692,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Opus Interactive Portland Datacenter","operator":"Opus Interactive","owner":"Opus Interactive","address":"1225 W Burnside Street","city":"Portland","state":"OR","zip":"unknown","lat":45.522977334978,"lng":-122.683419965469,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Sterling Communications Portland Data Center","operator":"Sterling Communications","owner":"Sterling Communications","address":"14945 SW Sequoia Parkway, Suite 110","city":"Portland","state":"OR","zip":"97224","lat":45.412206656733,"lng":-122.747008365269,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Tata Communications Hillsboro","operator":"Tata Communications","owner":"Tata Communications","address":"21101 NW Evergreen Parkway","city":"Hillsboro","state":"OR","zip":"97124","lat":45.546068957632,"lng":-122.895164906391,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Verizon Beaverton Data Center","operator":"Verizon","owner":"Verizon","address":"9000 SW Nimbus Avenue","city":"Beaverton","state":"OR","zip":"unknown","lat":45.454705753032,"lng":-122.788742033312,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"OVHcloud HIL1","operator":"OVHcloud","owner":"OVHcloud","address":"1300 NE 25th Ave","city":"Hillsboro","state":"OR","zip":"unknown","lat":45.530721841871,"lng":-122.956846175368,"yearOnline":"2018","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Digital Fortress Portland 2 (PTL2)","operator":"Digital Fortress","owner":"Digital Fortress","address":"9705 Southwest Sunshine Court","city":"Beaverton","state":"OR","zip":"unknown","lat":45.476007843704,"lng":-122.777578249411,"yearOnline":"unknown","powerMw":1.2,"sqft":0,"type":"colocation","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Digital Fortress Portland 3 (PTL3)","operator":"Digital Fortress","owner":"Digital Fortress","address":"9610 Southwest Sunshine Court","city":"Beaverton","state":"OR","zip":"unknown","lat":45.475893252263,"lng":-122.777084724232,"yearOnline":"unknown","powerMw":0,"sqft":6700,"type":"colocation","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Verizon Beaverton Data Center","operator":"Verizon","owner":"Verizon","address":"9000 Southwest Nimbus Avenue","city":"Beaverton","state":"OR","zip":"unknown","lat":45.454705753032,"lng":-122.788742033312,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Hillsboro / Portland, OR"},{"name":"Equinix SV1","operator":"Equinix","owner":"Equinix","address":"11 Great Oaks Boulevard","city":"San Jose","state":"CA","zip":"95119","lat":37.239513917322,"lng":-121.776652736397,"yearOnline":"unknown","powerMw":0,"sqft":82850,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Equinix SV2","operator":"Equinix","owner":"Equinix","address":"1350 Duane Avenue","city":"Santa Clara","state":"CA","zip":"95054","lat":37.379037866533,"lng":-121.954777399699,"yearOnline":"unknown","powerMw":0,"sqft":74971,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Equinix SV3","operator":"Equinix","owner":"Equinix","address":"1735 Lundy Avenue","city":"San Jose","state":"CA","zip":"95131","lat":37.388812092108,"lng":-121.887379321836,"yearOnline":"unknown","powerMw":0,"sqft":54487,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Equinix SV4","operator":"Equinix","owner":"Equinix","address":"255 Caspian Drive","city":"Sunnyvale","state":"CA","zip":"94089","lat":37.413491820407,"lng":-122.015030909719,"yearOnline":"unknown","powerMw":0,"sqft":67619,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Equinix SV5","operator":"Equinix","owner":"Equinix","address":"9 Great Oaks Boulevard","city":"San Jose","state":"CA","zip":"95119","lat":37.239559123387,"lng":-121.776726630908,"yearOnline":"unknown","powerMw":0,"sqft":93495,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Equinix SV8","operator":"Equinix","owner":"Equinix","address":"529 Bryant Street","city":"Palo Alto","state":"CA","zip":"94301","lat":37.44559266335,"lng":-122.160997855926,"yearOnline":"unknown","powerMw":0,"sqft":26296,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Equinix SV10","operator":"Equinix","owner":"Equinix","address":"7 Great Oaks Boulevard","city":"San Jose","state":"CA","zip":"95119","lat":37.239604329453,"lng":-121.776800525419,"yearOnline":"unknown","powerMw":0,"sqft":107919,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Equinix SV12x","operator":"Equinix","owner":"Equinix","address":"123 Great Oaks Boulevard","city":"San Jose","state":"CA","zip":"95119","lat":37.232666945954,"lng":-121.780270441917,"yearOnline":"unknown","powerMw":1.2,"sqft":113000,"type":"hyperscale","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"CoreSite SV1","operator":"CoreSite","owner":"CoreSite","address":"55 South Market Street","city":"San Jose","state":"CA","zip":"95113","lat":37.334508362922,"lng":-121.891430210365,"yearOnline":"unknown","powerMw":0,"sqft":320000,"type":"telecom","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"CoreSite SV2","operator":"CoreSite","owner":"CoreSite","address":"1656 McCarthy Boulevard","city":"Milpitas","state":"CA","zip":"95035","lat":37.405621466661,"lng":-121.917778551412,"yearOnline":"unknown","powerMw":0,"sqft":76000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"CoreSite SV3","operator":"CoreSite","owner":"CoreSite","address":"2901 Coronado Drive","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.377520352635,"lng":-121.97348579565,"yearOnline":"unknown","powerMw":0,"sqft":50000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"CoreSite SV4","operator":"CoreSite","owner":"CoreSite","address":"2972 Stender Way","city":"Santa Clara","state":"CA","zip":"95054","lat":37.376339310513,"lng":-121.970241497765,"yearOnline":"unknown","powerMw":0,"sqft":101000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"CoreSite SV7","operator":"CoreSite","owner":"CoreSite","address":"3020 Coronado Drive","city":"Santa Clara","state":"CA","zip":"95054","lat":37.375482481171,"lng":-121.973648121919,"yearOnline":"unknown","powerMw":0,"sqft":227000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"CoreSite SV8","operator":"CoreSite","owner":"CoreSite","address":"3035 Stender Way","city":"Santa Clara","state":"CA","zip":"95054","lat":37.377059760874,"lng":-121.970945299013,"yearOnline":"2019","powerMw":0,"sqft":161000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"CoreSite SV9","operator":"CoreSite","owner":"CoreSite","address":"2915 Stender Way","city":"Santa Clara","state":"CA","zip":"95054","lat":37.375267404823,"lng":-121.970102541459,"yearOnline":"2025","powerMw":0,"sqft":228000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Digital Realty SC1","operator":"Digital Realty","owner":"Digital Realty Trust","address":"2220 De La Cruz Boulevard","city":"Santa Clara","state":"CA","zip":"95050","lat":37.36266306248,"lng":-121.941580990629,"yearOnline":"unknown","powerMw":0,"sqft":360000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Digital Realty SJC10","operator":"Digital Realty","owner":"Digital Realty Trust","address":"1100 Space Park Drive","city":"Santa Clara","state":"CA","zip":"95054","lat":37.376171270864,"lng":-121.953292060707,"yearOnline":"unknown","powerMw":0,"sqft":165000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Digital Realty SJC11","operator":"Digital Realty","owner":"Digital Realty Trust","address":"3011 Lafayette Street","city":"Santa Clara","state":"CA","zip":"95054","lat":37.376625173713,"lng":-121.949142541317,"yearOnline":"unknown","powerMw":0,"sqft":90800,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Digital Realty SJC13 / 1550 Space Park","operator":"Digital Realty","owner":"Digital Realty Trust","address":"1550 Space Park Drive","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.376190760125,"lng":-121.956286685502,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Digital Realty SJC14 / Centersquare SF04","operator":"Digital Realty / Centersquare","owner":"Digital Realty Trust","address":"1500 Space Park Drive","city":"Santa Clara","state":"CA","zip":"95054","lat":37.376190760102,"lng":-121.955953754231,"yearOnline":"2008","powerMw":0,"sqft":52000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Digital Realty SJC15","operator":"Digital Realty","owner":"Digital Realty Trust","address":"1201 Comstock Street","city":"Santa Clara","state":"CA","zip":"95054","lat":37.374663938535,"lng":-121.952797976116,"yearOnline":"unknown","powerMw":2.25,"sqft":24000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Digital Realty SJC16","operator":"Digital Realty","owner":"Digital Realty Trust","address":"1525 Comstock Street","city":"Santa Clara","state":"CA","zip":"95054","lat":37.374645577985,"lng":-121.955939020413,"yearOnline":"unknown","powerMw":0,"sqft":42400,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Digital Realty SJC34","operator":"Digital Realty","owner":"Digital Realty Trust","address":"2820 Northwestern Parkway","city":"Santa Clara","state":"CA","zip":"95051","lat":37.372730335901,"lng":-121.972050494201,"yearOnline":"unknown","powerMw":0,"sqft":38000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Digital Realty SJC35","operator":"Digital Realty","owner":"Digital Realty Trust","address":"3205 Alfred Street","city":"Santa Clara","state":"CA","zip":"95054","lat":37.378948331023,"lng":-121.958532723383,"yearOnline":"unknown","powerMw":0,"sqft":66000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Digital Realty SJC37","operator":"Digital Realty","owner":"Digital Realty Trust","address":"641 Walsh Avenue","city":"Santa Clara","state":"CA","zip":"95050","lat":37.370101384549,"lng":-121.947491379053,"yearOnline":"unknown","powerMw":0,"sqft":430000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Digital Realty 3105 Alfred Road","operator":"Digital Realty","owner":"Digital Realty Trust","address":"3105 Alfred Road","city":"Santa Clara","state":"CA","zip":"95054","lat":37.37765088967,"lng":-121.958501229552,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"unknown","region":"Silicon Valley / Santa Clara, CA"},{"name":"Digital Realty 2401 Walsh Avenue","operator":"Digital Realty","owner":"Digital Realty Trust","address":"2401 Walsh Avenue","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.369494629538,"lng":-121.968740009383,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"unknown","region":"Silicon Valley / Santa Clara, CA"},{"name":"Vantage Santa Clara II CA2 Campus","operator":"Vantage Data Centers","owner":"Vantage Data Centers","address":"737 Mathew Street","city":"Santa Clara","state":"CA","zip":"95051","lat":37.363223801253,"lng":-121.947368117464,"yearOnline":"2019","powerMw":75,"sqft":541000,"type":"hyperscale","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Vantage CA21","operator":"Vantage Data Centers","owner":"Vantage Data Centers","address":"825 Mathew Street","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.363138219562,"lng":-121.948257556361,"yearOnline":"unknown","powerMw":0,"sqft":175000,"type":"hyperscale","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Vantage Santa Clara III CA3","operator":"Vantage Data Centers","owner":"Vantage Data Centers","address":"2590 Walsh Avenue","city":"Santa Clara","state":"CA","zip":"95051","lat":37.371287763176,"lng":-121.974045378415,"yearOnline":"unknown","powerMw":64,"sqft":486000,"type":"hyperscale","status":"planned","region":"Silicon Valley / Santa Clara, CA"},{"name":"QTS Santa Clara I","operator":"QTS Data Centers","owner":"Blackstone / QTS Realty Trust","address":"2807 Mission College Boulevard","city":"Santa Clara","state":"CA","zip":"95054","lat":37.392301642423,"lng":-121.976906527568,"yearOnline":"unknown","powerMw":8.6,"sqft":65000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"QTS Santa Clara II","operator":"QTS Data Centers","owner":"Blackstone / QTS Realty Trust","address":"2805 Mission College Boulevard","city":"Santa Clara","state":"CA","zip":"95054","lat":37.392315479912,"lng":-121.976865879934,"yearOnline":"unknown","powerMw":2.5,"sqft":70000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"STACK SVY01","operator":"STACK Infrastructure","owner":"STACK Infrastructure","address":"2001 Fortune Drive","city":"San Jose","state":"CA","zip":"unknown","lat":37.401091344879,"lng":-121.892949466517,"yearOnline":"2007","powerMw":9.3,"sqft":140000,"type":"wholesale","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"STACK SVY02A","operator":"STACK Infrastructure","owner":"STACK Infrastructure","address":"1200 Memorex Drive","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.362571289677,"lng":-121.949979240203,"yearOnline":"unknown","powerMw":48,"sqft":472920,"type":"wholesale","status":"under-construction","region":"Silicon Valley / Santa Clara, CA"},{"name":"Cologix SV1","operator":"Cologix","owner":"Cologix","address":"2050 Martin Avenue","city":"Santa Clara","state":"CA","zip":"95050","lat":37.366182761308,"lng":-121.960896746656,"yearOnline":"2021","powerMw":0,"sqft":134000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"EdgeConneX SVC01","operator":"EdgeConneX","owner":"EdgeConneX","address":"1600 Memorex Drive","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.363159141617,"lng":-121.954955146728,"yearOnline":"2015","powerMw":0,"sqft":19800,"type":"edge","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"NTT Silicon Valley SV1","operator":"NTT Global Data Centers","owner":"NTT Global Data Centers","address":"1160 Walsh Avenue","city":"Santa Clara","state":"CA","zip":"95050","lat":37.369698897893,"lng":-121.95250573392,"yearOnline":"2021","powerMw":16,"sqft":160000,"type":"wholesale","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Colovore SJC01","operator":"Colovore","owner":"Colovore","address":"1101 Space Park Drive","city":"Santa Clara","state":"CA","zip":"95054","lat":37.376285839038,"lng":-121.953289157914,"yearOnline":"2013","powerMw":9,"sqft":24000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Colovore SJC02","operator":"Colovore","owner":"Colovore","address":"3060 Raymond Street","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.377275527551,"lng":-121.952556864206,"yearOnline":"2025","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"H5 Silicon Valley / Element Critical Silicon Valley","operator":"H5 Data Centers / Element Critical","owner":"H5 Data Centers","address":"1360 Kifer Road","city":"Sunnyvale","state":"CA","zip":"94086","lat":37.3720753,"lng":-121.9900768,"yearOnline":"2017","powerMw":6.5,"sqft":96100,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"H5 San Jose","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"2030 Fortune Drive","city":"San Jose","state":"CA","zip":"95131","lat":37.400939655586,"lng":-121.892438386032,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Evocative SJC3","operator":"Evocative","owner":"Evocative","address":"3080 Raymond Street","city":"Santa Clara","state":"CA","zip":"95054","lat":37.37755704433,"lng":-121.952577035987,"yearOnline":"1980","powerMw":0,"sqft":15000,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Evocative SJC11","operator":"Evocative","owner":"Evocative","address":"2151 Mission College Boulevard","city":"Santa Clara","state":"CA","zip":"95054","lat":37.38856120232,"lng":-121.962733725756,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"EdgeCore Silicon Valley Campus","operator":"EdgeCore Digital Infrastructure","owner":"EdgeCore Digital Infrastructure","address":"2201 Laurelwood Road","city":"Santa Clara","state":"CA","zip":"95054","lat":37.383319660826,"lng":-121.962505855042,"yearOnline":"unknown","powerMw":72,"sqft":540000,"type":"hyperscale","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Prime Data Centers SJC02","operator":"Prime Data Centers","owner":"Prime Data Centers","address":"1111 Comstock Street","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.374681306184,"lng":-121.951929431013,"yearOnline":"unknown","powerMw":9,"sqft":123000,"type":"enterprise","status":"planned","region":"Silicon Valley / Santa Clara, CA"},{"name":"Prime Data Centers SJC03 / Martin Avenue","operator":"Prime Data Centers","owner":"Prime Data Centers","address":"2175 Martin Avenue","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.367230293128,"lng":-121.963350734393,"yearOnline":"unknown","powerMw":9,"sqft":80000,"type":"enterprise","status":"under-construction","region":"Silicon Valley / Santa Clara, CA"},{"name":"Prime Data Centers SJC04 / 1231 Comstock Data Center","operator":"Prime Data Centers","owner":"1231 Comstock Property LLC / Prime Data Centers","address":"1231 Comstock Street","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.374662154304,"lng":-121.953088809047,"yearOnline":"unknown","powerMw":0,"sqft":122000,"type":"enterprise","status":"planned","region":"Silicon Valley / Santa Clara, CA"},{"name":"Prime San Jose SJC06 / RICloud 6580 Via del Oro","operator":"Prime Data Centers / RiCloud","owner":"RiCloud / Prime Data Centers","address":"6580 Via del Oro","city":"San Jose","state":"CA","zip":"unknown","lat":37.234899995792,"lng":-121.782958339929,"yearOnline":"2021","powerMw":10,"sqft":0,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Amazon AWS SFO - 2305 Mission A / Park Beta","operator":"Amazon Web Services","owner":"Oppidan Investment Company / Amazon Web Services","address":"2305 Mission College Boulevard, Building A","city":"Santa Clara","state":"CA","zip":"95054","lat":37.388784957805,"lng":-121.965171765257,"yearOnline":"unknown","powerMw":0,"sqft":490000,"type":"hyperscale","status":"unknown","region":"Silicon Valley / Santa Clara, CA"},{"name":"Amazon Central Expressway","operator":"Amazon Web Services","owner":"Amazon Web Services","address":"960 Central Expressway","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.374196462639,"lng":-121.950829334635,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"Silicon Valley / Santa Clara, CA"},{"name":"Terra Data Center","operator":"Terra Data Center","owner":"Terra Data Center","address":"4701 North First Street","city":"San Jose","state":"CA","zip":"95134","lat":37.42486,"lng":-121.97387,"yearOnline":"unknown","powerMw":0,"sqft":295100,"type":"hyperscale","status":"planned","region":"Silicon Valley / Santa Clara, CA"},{"name":"Hurricane Electric Fremont 2","operator":"Hurricane Electric","owner":"Hurricane Electric","address":"48233 Warm Springs Boulevard","city":"Fremont","state":"CA","zip":"unknown","lat":37.471785184907,"lng":-121.919290487639,"yearOnline":"unknown","powerMw":0,"sqft":208000,"type":"telecom","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Digital Realty SJC37","operator":"Digital Realty","owner":"Digital Realty","address":"641 Walsh Street","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.370101384549,"lng":-121.947491379053,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"NTT Silicon Valley SV1 Data Center","operator":"NTT Global Data Centers","owner":"NTT Global Data Centers","address":"1160 Walsh Ave.","city":"Santa Clara","state":"CA","zip":"95050","lat":37.369698897893,"lng":-121.95250573392,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Prime Data Centers SJC04","operator":"Prime Data Centers","owner":"Prime Data Centers","address":"1231 Comstock","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.374662154304,"lng":-121.953088809047,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"planned","region":"Silicon Valley / Santa Clara, CA"},{"name":"2305 Mission College Boulevard Data Center Project","operator":"unknown","owner":"unknown","address":"2305 Mission College Boulevard","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.388784957805,"lng":-121.965171765257,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"planned","region":"Silicon Valley / Santa Clara, CA"},{"name":"Equinix SV12x","operator":"Equinix","owner":"Equinix","address":"123 Great Oaks Blvd","city":"San Jose","state":"CA","zip":"95119","lat":37.232666945954,"lng":-121.780270441917,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Silicon Valley / Santa Clara, CA"},{"name":"Iron Mountain VA-1 - Northern Virginia","operator":"Iron Mountain Data Centers","owner":"Iron Mountain Data Centers","address":"11680 Hayden Road","city":"Manassas","state":"VA","zip":"20109","lat":38.772750339621,"lng":-77.542924596694,"yearOnline":"2017","powerMw":12,"sqft":168000,"type":"colocation","status":"operational","region":"Manassas & Prince William County, VA"},{"name":"Iron Mountain VA-2 - Northern Virginia","operator":"Iron Mountain Data Centers","owner":"Iron Mountain Data Centers","address":"11660 Hayden Road","city":"Manassas","state":"VA","zip":"20109","lat":38.772932893733,"lng":-77.543198427805,"yearOnline":"unknown","powerMw":36,"sqft":221500,"type":"colocation","status":"operational","region":"Manassas & Prince William County, VA"},{"name":"Iron Mountain VA-3","operator":"Iron Mountain Data Centers","owner":"Iron Mountain Data Centers","address":"11640 Hayden Road","city":"Manassas","state":"VA","zip":"20109","lat":38.773111115844,"lng":-77.543479946722,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"planned","region":"Manassas & Prince William County, VA"},{"name":"Iron Mountain VA-4","operator":"Iron Mountain Data Centers","owner":"Iron Mountain Data Centers","address":"11600 Hayden Road","city":"Manassas","state":"VA","zip":"20109","lat":38.773462622552,"lng":-77.54404157132,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"unknown","region":"Manassas & Prince William County, VA"},{"name":"Iron Mountain VA-5","operator":"Iron Mountain Data Centers","owner":"Iron Mountain Data Centers","address":"11580 Hayden Road","city":"Manassas","state":"VA","zip":"20109","lat":38.773639302209,"lng":-77.544321673156,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"unknown","region":"Manassas & Prince William County, VA"},{"name":"Iron Mountain VA-6","operator":"Iron Mountain Data Centers","owner":"Iron Mountain Data Centers","address":"7745 Wellington Road","city":"Manassas","state":"VA","zip":"20109","lat":38.771756547198,"lng":-77.54382729742,"yearOnline":"unknown","powerMw":0,"sqft":230000,"type":"colocation","status":"unknown","region":"Manassas & Prince William County, VA"},{"name":"Iron Mountain VA-7","operator":"Iron Mountain Data Centers","owner":"Iron Mountain Data Centers","address":"8330 Bethlehem Road","city":"Manassas","state":"VA","zip":"20109","lat":38.775055057816,"lng":-77.536937911506,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"unknown","region":"Manassas & Prince William County, VA"},{"name":"QTS Manassas DC5","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"9301 Freedom Center Boulevard","city":"Manassas","state":"VA","zip":"20109","lat":38.756659810983,"lng":-77.519172027148,"yearOnline":"unknown","powerMw":42,"sqft":300000,"type":"wholesale","status":"operational","region":"Manassas & Prince William County, VA"},{"name":"QTS Manassas Expansion - 10680 University Boulevard","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"10680 University Boulevard","city":"Manassas","state":"VA","zip":"unknown","lat":38.751944906944,"lng":-77.51724281721,"yearOnline":"unknown","powerMw":0,"sqft":323526,"type":"wholesale","status":"planned","region":"Manassas & Prince William County, VA"},{"name":"CloudHQ MCC2","operator":"CloudHQ","owner":"CloudHQ","address":"10100 Harry J. Parrish Boulevard","city":"Manassas","state":"VA","zip":"20110","lat":38.724098420528,"lng":-77.50190059017,"yearOnline":"2018","powerMw":64,"sqft":341803,"type":"hyperscale","status":"operational","region":"Manassas & Prince William County, VA"},{"name":"CloudHQ MCC7","operator":"CloudHQ","owner":"CloudHQ","address":"10101 Harry J. Parrish Boulevard","city":"Manassas","state":"VA","zip":"20110","lat":38.722017934712,"lng":-77.500284872836,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"under-construction","region":"Manassas & Prince William County, VA"},{"name":"COPT DC-6 Manassas / VAZATA Manassas MAA","operator":"COPT Data Center / VAZATA","owner":"COPT Data Center","address":"9651 Hornbaker Road","city":"Manassas","state":"VA","zip":"unknown","lat":38.746360867679,"lng":-77.533563354873,"yearOnline":"2009","powerMw":16,"sqft":100000,"type":"colocation","status":"operational","region":"Manassas & Prince William County, VA"},{"name":"STACK Infrastructure NVA02B","operator":"STACK Infrastructure","owner":"STACK Infrastructure","address":"9720 Hornbaker Road","city":"Bristow","state":"VA","zip":"20109","lat":38.749445353086,"lng":-77.535862322637,"yearOnline":"unknown","powerMw":40,"sqft":0,"type":"wholesale","status":"unknown","region":"Manassas & Prince William County, VA"},{"name":"STACK Infrastructure NVA05B","operator":"STACK Infrastructure","owner":"STACK Infrastructure","address":"9001 Freedom Center Boulevard","city":"Manassas","state":"VA","zip":"20109","lat":38.763230063668,"lng":-77.514994984181,"yearOnline":"unknown","powerMw":0,"sqft":340000,"type":"wholesale","status":"operational","region":"Manassas & Prince William County, VA"},{"name":"STACK Infrastructure NVA05C","operator":"STACK Infrastructure","owner":"STACK Infrastructure","address":"8886 Wellington Road","city":"Manassas","state":"VA","zip":"20109","lat":38.761600477838,"lng":-77.511613592715,"yearOnline":"unknown","powerMw":0,"sqft":176276,"type":"wholesale","status":"planned","region":"Manassas & Prince William County, VA"},{"name":"STACK Infrastructure NVA05D","operator":"STACK Infrastructure","owner":"STACK Infrastructure","address":"8685-8695 Wellington Road","city":"Manassas","state":"VA","zip":"unknown","lat":38.764261262094,"lng":-77.518214252935,"yearOnline":"unknown","powerMw":0,"sqft":364998,"type":"wholesale","status":"under-construction","region":"Manassas & Prince William County, VA"},{"name":"Yondr Bristow Campus - Building 1","operator":"Yondr Group","owner":"Yondr Group","address":"12981 Rollins Ford Road","city":"Bristow","state":"VA","zip":"20136","lat":38.782774740411,"lng":-77.579468773402,"yearOnline":"2024","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Manassas & Prince William County, VA"},{"name":"CorScale Gainesville Crossing Building 1","operator":"CorScale","owner":"CorScale","address":"13760 University Boulevard, Building 1","city":"Gainesville","state":"VA","zip":"20155","lat":38.801733314313,"lng":-77.585811822889,"yearOnline":"2025","powerMw":72,"sqft":503000,"type":"hyperscale","status":"operational","region":"Manassas & Prince William County, VA"},{"name":"CorScale Gainesville Crossing Building 2","operator":"CorScale","owner":"CorScale","address":"13760 University Boulevard, Building 2","city":"Gainesville","state":"VA","zip":"20155","lat":38.801733314313,"lng":-77.585811822889,"yearOnline":"unknown","powerMw":72,"sqft":288000,"type":"hyperscale","status":"under-construction","region":"Manassas & Prince William County, VA"},{"name":"CorScale Gainesville Crossing Building 3","operator":"CorScale","owner":"CorScale","address":"13760 University Boulevard, Building 3","city":"Gainesville","state":"VA","zip":"20155","lat":38.801733314313,"lng":-77.585811822889,"yearOnline":"unknown","powerMw":54,"sqft":0,"type":"hyperscale","status":"under-construction","region":"Manassas & Prince William County, VA"},{"name":"CorScale Gainesville Crossing Building 4","operator":"CorScale","owner":"CorScale","address":"13760 University Boulevard, Building 4","city":"Gainesville","state":"VA","zip":"20155","lat":38.801733314313,"lng":-77.585811822889,"yearOnline":"unknown","powerMw":0,"sqft":200000,"type":"hyperscale","status":"planned","region":"Manassas & Prince William County, VA"},{"name":"CorScale Gainesville Crossing Building 5","operator":"CorScale","owner":"CorScale","address":"13760 University Boulevard, Building 5","city":"Gainesville","state":"VA","zip":"20155","lat":38.801733314313,"lng":-77.585811822889,"yearOnline":"unknown","powerMw":0,"sqft":200000,"type":"hyperscale","status":"planned","region":"Manassas & Prince William County, VA"},{"name":"Amazon AWS IAD - 9020 Freedom Building 1","operator":"Amazon Web Services","owner":"Amazon Web Services","address":"9020 Freedom Center Boulevard","city":"Manassas","state":"VA","zip":"unknown","lat":38.75982587364,"lng":-77.517191933194,"yearOnline":"unknown","powerMw":0,"sqft":202000,"type":"hyperscale","status":"operational","region":"Manassas & Prince William County, VA"},{"name":"Amazon AWS Wellington Road Building 1","operator":"Amazon Web Services","owner":"Amazon Web Services","address":"5845 Wellington Road","city":"Gainesville","state":"VA","zip":"unknown","lat":38.789856104491,"lng":-77.588198231732,"yearOnline":"unknown","powerMw":0,"sqft":435000,"type":"hyperscale","status":"planned","region":"Manassas & Prince William County, VA"},{"name":"Amazon AWS Wellington Road Building 3","operator":"Amazon Web Services","owner":"Amazon Web Services","address":"5945 Wellington Road","city":"Gainesville","state":"VA","zip":"unknown","lat":38.788810649072,"lng":-77.586463867141,"yearOnline":"unknown","powerMw":0,"sqft":375000,"type":"hyperscale","status":"planned","region":"Manassas & Prince William County, VA"},{"name":"Digital Realty 9905 Godwin Drive (IAD53)","operator":"Digital Realty","owner":"Digital Realty","address":"9905 Godwin Drive","city":"Manassas","state":"VA","zip":"20110","lat":38.740680462023,"lng":-77.506768871888,"yearOnline":"unknown","powerMw":0,"sqft":185000,"type":"wholesale","status":"planned","region":"Manassas & Prince William County, VA"},{"name":"Equinix Washington DC DC14","operator":"Equinix","owner":"Equinix","address":"7400 Infantry Ridge Road","city":"Manassas","state":"VA","zip":"20109","lat":38.803725555707,"lng":-77.514397283567,"yearOnline":"unknown","powerMw":0,"sqft":42539,"type":"colocation","status":"operational","region":"Manassas & Prince William County, VA"},{"name":"Microsoft 8008 Devlin Road","operator":"Microsoft","owner":"Microsoft","address":"8008 Devlin Road","city":"Bristow","state":"VA","zip":"20136","lat":38.781559211693,"lng":-77.566338597187,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"Manassas & Prince William County, VA"},{"name":"Microsoft 13490 University Boulevard","operator":"Microsoft","owner":"Microsoft","address":"13490 University Boulevard","city":"Gainesville","state":"VA","zip":"20136","lat":38.794201847063,"lng":-77.58915508098,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"Manassas & Prince William County, VA"},{"name":"Microsoft 5941 Wellington Road","operator":"Microsoft","owner":"Microsoft","address":"5941 Wellington Road","city":"Gainesville","state":"VA","zip":"unknown","lat":38.7888492364,"lng":-77.586527594686,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"Manassas & Prince William County, VA"},{"name":"Aligned Manassas, VA","operator":"Aligned","owner":"Aligned","address":"10920 Balls Ford Road","city":"Manassas","state":"VA","zip":"unknown","lat":38.797940875394,"lng":-77.525638701563,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"planned","region":"Manassas & Prince William County, VA"},{"name":"JK Land Comcast Center","operator":"JK Land Holdings","owner":"JK Land Holdings","address":"11101 University Boulevard","city":"Manassas","state":"VA","zip":"unknown","lat":38.754932280398,"lng":-77.52382819864,"yearOnline":"unknown","powerMw":0,"sqft":108000,"type":"enterprise","status":"planned","region":"Manassas & Prince William County, VA"},{"name":"CloudHQ MCC2","operator":"CloudHQ","owner":"CloudHQ","address":"10100 Harry J Parish Boulevard","city":"Manassas","state":"VA","zip":"unknown","lat":38.724098420528,"lng":-77.50190059017,"yearOnline":"unknown","powerMw":64,"sqft":0,"type":"hyperscale","status":"operational","region":"Manassas & Prince William County, VA"},{"name":"Corscale Gainesville Crossing - Building 1","operator":"Corscale","owner":"Corscale","address":"13760 University Blvd","city":"Gainesville","state":"VA","zip":"unknown","lat":38.801733314313,"lng":-77.585811822889,"yearOnline":"unknown","powerMw":72,"sqft":483000,"type":"hyperscale","status":"operational","region":"Manassas & Prince William County, VA"},{"name":"STACK NVA05D (Building B)","operator":"STACK Infrastructure","owner":"STACK Infrastructure","address":"9001 Freedom Center Blvd, Building B","city":"Manassas","state":"VA","zip":"unknown","lat":38.763230063668,"lng":-77.514994984181,"yearOnline":"unknown","powerMw":0,"sqft":340000,"type":"hyperscale","status":"under-construction","region":"Manassas & Prince William County, VA"},{"name":"365 Data Centers Alpharetta Data Center","operator":"365 Data Centers","owner":"365 Data Centers","address":"11650 Great Oaks Way, Alpharetta, GA 30022","city":"Alpharetta","state":"GA","zip":"30022","lat":34.043907,"lng":-84.286445,"yearOnline":"unknown","powerMw":4,"sqft":54000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"365 Data Centers Smyrna Data Center","operator":"365 Data Centers","owner":"365 Data Centers","address":"5600 United Dr. SE, Smyrna, GA 30082","city":"Smyrna","state":"GA","zip":"30082","lat":33.829874,"lng":-84.493223,"yearOnline":"unknown","powerMw":4,"sqft":107300,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"American Tower 55 Marietta","operator":"American Tower","owner":"American Tower","address":"55 Marietta Street NW, Atlanta, GA 30303","city":"Atlanta","state":"GA","zip":"30303","lat":33.754899,"lng":-84.392993,"yearOnline":"2019","powerMw":2,"sqft":62000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"American Tower SW Atlanta","operator":"American Tower","owner":"American Tower","address":"Fairburn Road Southwest, Atlanta, GA 30331","city":"Atlanta","state":"GA","zip":"30331","lat":33.73349,"lng":-84.500867,"yearOnline":"unknown","powerMw":0.3,"sqft":3000,"type":"edge","status":"operational","region":"Atlanta, GA"},{"name":"Aptum Atlanta","operator":"Aptum Technologies","owner":"Digital Colony","address":"101 Marietta Street NW, Atlanta, GA 30303","city":"Atlanta","state":"GA","zip":"30303","lat":33.75589,"lng":-84.391967,"yearOnline":"2015","powerMw":1,"sqft":45000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"AT&T Southern Bell Telephone Company Building","operator":"AT&T","owner":"AT&T","address":"Unknown, Atlanta, GA 30303","city":"Atlanta","state":"GA","zip":"30303","lat":33.759478,"lng":-84.387173,"yearOnline":"unknown","powerMw":2,"sqft":300000,"type":"telecom","status":"operational","region":"Atlanta, GA"},{"name":"Centersquare ATL1","operator":"Centersquare","owner":"Digital Realty Trust","address":"375 Riverside Parkway, Suite 100, Lithia Springs, GA 30122","city":"Lithia Springs","state":"GA","zip":"30122","lat":33.772793,"lng":-84.625641,"yearOnline":"1998","powerMw":32,"sqft":137203,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Centersquare Atlanta ATL1-A","operator":"Centersquare","owner":"Brookfield","address":"375 Riverside Parkway, Suite 150, Lithia Springs, GA 30122","city":"Lithia Springs","state":"GA","zip":"30122","lat":33.772793,"lng":-84.625641,"yearOnline":"unknown","powerMw":1.2,"sqft":86000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Cogent Atlanta 2","operator":"Cogent Communications","owner":"Cogent Communications","address":"1190 Allene Avenue SW, Atlanta, GA 30310","city":"Atlanta","state":"GA","zip":"30310","lat":33.738799,"lng":-84.417764,"yearOnline":"unknown","powerMw":0.8,"sqft":36172,"type":"telecom","status":"operational","region":"Atlanta, GA"},{"name":"Coloblox ATL1","operator":"Coloblox","owner":"Coloblox","address":"1100 Circle 75 Parkway, Atlanta, GA 30339","city":"Atlanta","state":"GA","zip":"30339","lat":33.888167,"lng":-84.461972,"yearOnline":"unknown","powerMw":1,"sqft":19752,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Coloblox ATL2","operator":"Coloblox","owner":"Coloblox","address":"900 Circle 75 Parkway, Atlanta, GA 30339","city":"Atlanta","state":"GA","zip":"30339","lat":33.889115,"lng":-84.460464,"yearOnline":"unknown","powerMw":1,"sqft":21571,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"CoreSite AT1","operator":"CoreSite","owner":"CoreSite","address":"55 Marietta St. NW, Atlanta, GA 30303","city":"Atlanta","state":"GA","zip":"30303","lat":33.754899,"lng":-84.392993,"yearOnline":"unknown","powerMw":6,"sqft":62000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"CoreSite AT2","operator":"CoreSite","owner":"CoreSite","address":"1130 Powers Ferry Place, Marietta, GA 30067","city":"Marietta","state":"GA","zip":"30067","lat":33.921194,"lng":-84.461613,"yearOnline":"unknown","powerMw":6,"sqft":67000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"DataBank ATL1 Midtown Atlanta Data Center","operator":"DataBank","owner":"DataBank","address":"760 W Peachtree St NW, Atlanta, GA 30308","city":"Atlanta","state":"GA","zip":"30308","lat":33.778341,"lng":-84.390054,"yearOnline":"unknown","powerMw":1.5,"sqft":38260,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"DataBank ATL2 Atlanta West End Data Center","operator":"DataBank","owner":"DataBank","address":"1100 White St SW, Atlanta, GA 30310","city":"Atlanta","state":"GA","zip":"30310","lat":33.736799,"lng":-84.427664,"yearOnline":"unknown","powerMw":2,"sqft":40000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"DataBank ATL3 Atlanta West End Data Center","operator":"DataBank","owner":"DataBank","address":"1150 White St SW, Atlanta, GA 30310","city":"Atlanta","state":"GA","zip":"30310","lat":33.737652,"lng":-84.427204,"yearOnline":"unknown","powerMw":2,"sqft":40000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"DataBank ATL4 South Fulton Data Center","operator":"DataBank","owner":"DataBank","address":"200 Selig Dr SW, Atlanta, GA 30336","city":"Atlanta","state":"GA","zip":"30336","lat":33.741614,"lng":-84.482436,"yearOnline":"unknown","powerMw":40,"sqft":212710,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"DataBank ATL5 Lithia Springs Campus Data Center","operator":"DataBank","owner":"DataBank","address":"4764 Bakers Ferry Rd. SW, South Fulton, GA 30336","city":"South Fulton","state":"GA","zip":"30336","lat":33.743552,"lng":-84.544574,"yearOnline":"unknown","powerMw":48,"sqft":160200,"type":"colocation","status":"under-construction","region":"Atlanta, GA"},{"name":"DataCanopy Lithia Springs (Atlanta)","operator":"DataCanopy","owner":"DataCanopy","address":"2480 Rock House Road, Lithia Springs, GA 30122","city":"Lithia Springs","state":"GA","zip":"30122","lat":33.766687,"lng":-84.59763,"yearOnline":"unknown","powerMw":8.5,"sqft":60000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"DC BLOX Atlanta West (ATL1) Hyperscale Campus","operator":"DC BLOX","owner":"DC BLOX","address":"1701 North River Road, Lithia Springs, GA 30122","city":"Lithia Springs","state":"GA","zip":"30122","lat":33.769162,"lng":-84.558172,"yearOnline":"unknown","powerMw":200,"sqft":1370000,"type":"hyperscale","status":"under-construction","region":"Atlanta, GA"},{"name":"DC BLOX Atlanta East (ATL2) Hyperscale Campus","operator":"DC BLOX","owner":"DC BLOX","address":"1726 Farmer Road, Conyers, GA 30012","city":"Conyers","state":"GA","zip":"30012","lat":33.72138,"lng":-84.002851,"yearOnline":"unknown","powerMw":154,"sqft":747787,"type":"hyperscale","status":"under-construction","region":"Atlanta, GA"},{"name":"Digital Realty ATL11","operator":"Digital Realty","owner":"Digital Realty Trust","address":"101 Aquila Way, Austell, GA 30168","city":"Austell","state":"GA","zip":"30168","lat":33.791658,"lng":-84.540348,"yearOnline":"unknown","powerMw":32,"sqft":313000,"type":"wholesale","status":"operational","region":"Atlanta, GA"},{"name":"Digital Realty ATL13","operator":"Digital Realty","owner":"Digital Realty Trust","address":"56 Marietta Street, Atlanta, GA 30303","city":"Atlanta","state":"GA","zip":"30303","lat":33.756398,"lng":-84.392728,"yearOnline":"unknown","powerMw":10,"sqft":153000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Digital Realty ATL14","operator":"Digital Realty","owner":"Digital Realty Trust","address":"250 Williams Street NW, Atlanta, GA 30303","city":"Atlanta","state":"GA","zip":"30303","lat":33.760333,"lng":-84.389402,"yearOnline":"unknown","powerMw":5,"sqft":18000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Digital Realty ATL15","operator":"Digital Realty","owner":"Digital Realty Trust","address":"Forest Park, GA 30297","city":"Forest Park","state":"GA","zip":"30297","lat":33.618855,"lng":-84.356323,"yearOnline":"unknown","powerMw":40,"sqft":300000,"type":"hyperscale","status":"planned","region":"Atlanta, GA"},{"name":"Digital Realty 10 Forsyth St NW","operator":"Digital Realty","owner":"Digital Realty Trust","address":"10 Forsyth Street NW, Atlanta, GA 30303","city":"Atlanta","state":"GA","zip":"30303","lat":33.7558,"lng":-84.390803,"yearOnline":"unknown","powerMw":20,"sqft":300000,"type":"colocation","status":"planned","region":"Atlanta, GA"},{"name":"375 Riverside - Digital Realty","operator":"Digital Realty","owner":"Digital Realty Trust","address":"375 Riverside Parkway, Lithia Springs, GA 30122","city":"Lithia Springs","state":"GA","zip":"30122","lat":33.772793,"lng":-84.625641,"yearOnline":"1998","powerMw":32,"sqft":137203,"type":"wholesale","status":"operational","region":"Atlanta, GA"},{"name":"Edged Energy Atlanta (ATL01)","operator":"Edged Energy","owner":"Edged Energy","address":"1800 Thomas Street NW, Atlanta, GA 30318","city":"Atlanta","state":"GA","zip":"30318","lat":33.803558,"lng":-84.446757,"yearOnline":"2024","powerMw":12,"sqft":200000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Edged Energy Atlanta01-02","operator":"Edged Energy","owner":"Edged Energy","address":"1986 Marietta Road, Atlanta, GA 30318","city":"Atlanta","state":"GA","zip":"30318","lat":33.806903,"lng":-84.451657,"yearOnline":"unknown","powerMw":30,"sqft":450000,"type":"colocation","status":"under-construction","region":"Atlanta, GA"},{"name":"Edged Energy Atlanta01-03","operator":"Edged Energy","owner":"Edged Energy","address":"1740 Thomas Street NW, Atlanta, GA 30318","city":"Atlanta","state":"GA","zip":"30318","lat":33.8038,"lng":-84.445076,"yearOnline":"unknown","powerMw":30,"sqft":300000,"type":"colocation","status":"planned","region":"Atlanta, GA"},{"name":"EdgeConneX Atlanta ATL01","operator":"EdgeConneX","owner":"EdgeConneX","address":"1003 Donnelly Ave SW, Atlanta, GA 30310","city":"Atlanta","state":"GA","zip":"30310","lat":33.726975,"lng":-84.418595,"yearOnline":"unknown","powerMw":2.1,"sqft":29527,"type":"edge","status":"operational","region":"Atlanta, GA"},{"name":"EdgeConneX Atlanta ATL02","operator":"EdgeConneX","owner":"EdgeConneX","address":"1101 Donnelly Avenue, Atlanta, GA 30310","city":"Atlanta","state":"GA","zip":"30310","lat":33.727921,"lng":-84.421405,"yearOnline":"2018","powerMw":14,"sqft":91980,"type":"edge","status":"operational","region":"Atlanta, GA"},{"name":"EdgeConneX Atlanta ATL11-13 Campus","operator":"EdgeConneX","owner":"EdgeConneX","address":"Unknown, Fulton County, GA","city":"Fulton County","state":"GA","zip":"unknown","lat":33.8,"lng":-84.5,"yearOnline":"unknown","powerMw":96,"sqft":300000,"type":"edge","status":"planned","region":"Atlanta, GA"},{"name":"Equinix AT1","operator":"Equinix","owner":"Equinix","address":"180 Peachtree Street NW, 2nd, 3rd and 6th Floors, Atlanta, GA 30303","city":"Atlanta","state":"GA","zip":"30303","lat":33.758611,"lng":-84.387966,"yearOnline":"unknown","powerMw":4,"sqft":80396,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Equinix AT2","operator":"Equinix","owner":"Equinix","address":"56 Marietta Street NW, Atlanta, GA 30303","city":"Atlanta","state":"GA","zip":"30303","lat":33.756398,"lng":-84.392728,"yearOnline":"unknown","powerMw":6,"sqft":60000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Equinix AT4","operator":"Equinix","owner":"Equinix","address":"450 Interstate North Parkway, Atlanta, GA 30339","city":"Atlanta","state":"GA","zip":"30339","lat":33.897216,"lng":-84.46208,"yearOnline":"unknown","powerMw":6,"sqft":66779,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Equinix AT5","operator":"Equinix","owner":"Equinix","address":"Unknown, Atlanta, GA","city":"Atlanta","state":"GA","zip":"unknown","lat":33.8,"lng":-84.4,"yearOnline":"unknown","powerMw":8,"sqft":80000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Flexential Atlanta - Norcross 1","operator":"Flexential","owner":"Flexential","address":"2775 Northwoods Pkwy, Norcross, GA 30071","city":"Norcross","state":"GA","zip":"30071","lat":33.933254,"lng":-84.197933,"yearOnline":"unknown","powerMw":1.8,"sqft":32740,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Flexential Atlanta - Norcross 2","operator":"Flexential","owner":"Flexential","address":"Norcross, GA 30071","city":"Norcross","state":"GA","zip":"30071","lat":33.94,"lng":-84.2,"yearOnline":"unknown","powerMw":4.5,"sqft":48000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Flexential Atlanta - Alpharetta","operator":"Flexential","owner":"Flexential","address":"12655 Edison Drive, Alpharetta, GA 30022","city":"Alpharetta","state":"GA","zip":"30022","lat":34.064718,"lng":-84.273606,"yearOnline":"unknown","powerMw":6,"sqft":142475,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Flexential Atlanta - Douglasville 1","operator":"Flexential","owner":"Flexential","address":"1700 N. River Road, Douglasville, GA 30122","city":"Douglasville","state":"GA","zip":"30122","lat":33.773833,"lng":-84.55638,"yearOnline":"unknown","powerMw":22.5,"sqft":205000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Flexential Atlanta - Douglasville 2","operator":"Flexential","owner":"Flexential","address":"Douglasville, GA 30122","city":"Douglasville","state":"GA","zip":"30122","lat":33.77,"lng":-84.56,"yearOnline":"unknown","powerMw":36,"sqft":358000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"GI Partners Alpharetta","operator":"GI Partners","owner":"GI Partners","address":"4905 North Point Parkway, Alpharetta, GA 30022","city":"Alpharetta","state":"GA","zip":"30022","lat":34.047866,"lng":-84.301505,"yearOnline":"unknown","powerMw":8,"sqft":185000,"type":"enterprise","status":"operational","region":"Atlanta, GA"},{"name":"H5 Atlanta Data Center","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"345 Courtland St. NE, Atlanta, GA 30308","city":"Atlanta","state":"GA","zip":"30308","lat":33.765199,"lng":-84.38365,"yearOnline":"unknown","powerMw":6,"sqft":110000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Internap Atlanta 40 Perimeter Center","operator":"HorizonIQ","owner":"HorizonIQ","address":"40 Perimeter Center, Atlanta, GA 30346","city":"Atlanta","state":"GA","zip":"30346","lat":33.925,"lng":-84.345,"yearOnline":"unknown","powerMw":2,"sqft":30000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Internap Atlanta ACS003","operator":"HorizonIQ","owner":"HorizonIQ","address":"1033 Jefferson St NW, Atlanta, GA 30318","city":"Atlanta","state":"GA","zip":"30318","lat":33.781308,"lng":-84.41987,"yearOnline":"unknown","powerMw":3,"sqft":40000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Lumen Atlanta 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"345 Courtland Street Northeast, Atlanta, GA 30308","city":"Atlanta","state":"GA","zip":"30308","lat":33.765199,"lng":-84.38365,"yearOnline":"unknown","powerMw":2,"sqft":30000,"type":"telecom","status":"operational","region":"Atlanta, GA"},{"name":"Lumen Atlanta 2","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"180 Peachtree Street Northwest, Atlanta, GA 30303","city":"Atlanta","state":"GA","zip":"30303","lat":33.758611,"lng":-84.387966,"yearOnline":"unknown","powerMw":3,"sqft":120280,"type":"telecom","status":"operational","region":"Atlanta, GA"},{"name":"Lumen Atlanta 5","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"953 Donnelly Ave SW, Atlanta, GA 30310","city":"Atlanta","state":"GA","zip":"30310","lat":33.725806,"lng":-84.424232,"yearOnline":"unknown","powerMw":2,"sqft":30000,"type":"telecom","status":"operational","region":"Atlanta, GA"},{"name":"Lumen Atlanta 6","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"874 DeKalb Avenue Northeast, Atlanta, GA 30307","city":"Atlanta","state":"GA","zip":"30307","lat":33.75898,"lng":-84.358861,"yearOnline":"unknown","powerMw":2,"sqft":30000,"type":"telecom","status":"operational","region":"Atlanta, GA"},{"name":"Lumen College Park 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"4311 Best Rd, College Park, GA 30337","city":"College Park","state":"GA","zip":"30337","lat":33.620379,"lng":-84.456777,"yearOnline":"unknown","powerMw":2,"sqft":30000,"type":"telecom","status":"operational","region":"Atlanta, GA"},{"name":"Lumen Doraville 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"Doraville, GA 30340","city":"Doraville","state":"GA","zip":"30340","lat":33.9,"lng":-84.28,"yearOnline":"unknown","powerMw":2,"sqft":30000,"type":"telecom","status":"operational","region":"Atlanta, GA"},{"name":"Mapletree 180 Peachtree","operator":"Mapletree Redwood Data Centre Trust","owner":"Mapletree Industrial Trust","address":"180 Peachtree Street NW, Atlanta, GA 30303","city":"Atlanta","state":"GA","zip":"30303","lat":33.758611,"lng":-84.387966,"yearOnline":"2017","powerMw":6,"sqft":200000,"type":"enterprise","status":"operational","region":"Atlanta, GA"},{"name":"Mapletree 1001 Windward","operator":"Mapletree Redwood Data Centre Trust","owner":"Mapletree Redwood Data Centre Trust","address":"1001 Windward, Alpharetta, GA 30005","city":"Alpharetta","state":"GA","zip":"30005","lat":34.088,"lng":-84.267,"yearOnline":"unknown","powerMw":4,"sqft":120000,"type":"enterprise","status":"operational","region":"Atlanta, GA"},{"name":"Menlo Digital Atlanta","operator":"Menlo Digital","owner":"Menlo Equities","address":"Atlanta, GA 30318","city":"Atlanta","state":"GA","zip":"30318","lat":33.78,"lng":-84.39,"yearOnline":"2025","powerMw":12,"sqft":333684,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"QTS Atlanta 1 DC2","operator":"QTS Data Centers","owner":"QTS","address":"1025 Jefferson St NW, Atlanta, GA 30318","city":"Atlanta","state":"GA","zip":"30318","lat":33.781634,"lng":-84.418978,"yearOnline":"unknown","powerMw":80,"sqft":200000,"type":"hyperscale","status":"operational","region":"Atlanta, GA"},{"name":"QTS Atlanta 1 DC3","operator":"QTS Data Centers","owner":"QTS","address":"953 Herndon St NW, Atlanta, GA 30318","city":"Atlanta","state":"GA","zip":"30318","lat":33.781722,"lng":-84.41466,"yearOnline":"unknown","powerMw":80,"sqft":200000,"type":"hyperscale","status":"operational","region":"Atlanta, GA"},{"name":"QTS Atlanta 1 DC4","operator":"QTS Data Centers","owner":"QTS","address":"1010 West Marietta St NW, Atlanta, GA 30318","city":"Atlanta","state":"GA","zip":"30318","lat":33.781422,"lng":-84.409926,"yearOnline":"unknown","powerMw":80,"sqft":200000,"type":"hyperscale","status":"operational","region":"Atlanta, GA"},{"name":"QTS Atlanta 1 Campus","operator":"QTS Data Centers","owner":"QTS","address":"Atlanta 1 campus, Atlanta, GA 30318","city":"Atlanta","state":"GA","zip":"30318","lat":33.78,"lng":-84.415,"yearOnline":"unknown","powerMw":300,"sqft":970000,"type":"hyperscale","status":"operational","region":"Atlanta, GA"},{"name":"QTS Suwanee 1 DC1","operator":"QTS Data Centers","owner":"QTS","address":"300 Satellite Blvd NW, Suwanee, GA 30024","city":"Suwanee","state":"GA","zip":"30024","lat":34.017499,"lng":-84.074586,"yearOnline":"unknown","powerMw":18,"sqft":200000,"type":"hyperscale","status":"operational","region":"Atlanta, GA"},{"name":"QTS Suwanee 1 DC2","operator":"QTS Data Centers","owner":"QTS","address":"120 Satellite Blvd NW, Suwanee, GA 30024","city":"Suwanee","state":"GA","zip":"30024","lat":34.013441,"lng":-84.083671,"yearOnline":"unknown","powerMw":24,"sqft":376900,"type":"hyperscale","status":"operational","region":"Atlanta, GA"},{"name":"QTS Fayetteville","operator":"QTS Data Centers","owner":"QTS","address":"1435 Hwy 54 W, Fayetteville, GA 30214","city":"Fayetteville","state":"GA","zip":"30214","lat":33.448287,"lng":-84.506652,"yearOnline":"2024","powerMw":100,"sqft":300000,"type":"hyperscale","status":"operational","region":"Atlanta, GA"},{"name":"QTS ATL2 East Campus","operator":"QTS Data Centers","owner":"QTS","address":"Fayetteville, GA 30214","city":"Fayetteville","state":"GA","zip":"30214","lat":33.45,"lng":-84.5,"yearOnline":"unknown","powerMw":400,"sqft":2000000,"type":"hyperscale","status":"planned","region":"Atlanta, GA"},{"name":"Southern Telecom Atlanta","operator":"Southern Telecom","owner":"Southern Company","address":"270 Peachtree Street NE, Atlanta, GA 30303","city":"Atlanta","state":"GA","zip":"30303","lat":33.760084,"lng":-84.386119,"yearOnline":"1997","powerMw":2,"sqft":50000,"type":"telecom","status":"operational","region":"Atlanta, GA"},{"name":"STACK Atlanta ATL01","operator":"STACK Infrastructure","owner":"STACK Infrastructure","address":"Alpharetta, GA 30009","city":"Alpharetta","state":"GA","zip":"30009","lat":34.07,"lng":-84.28,"yearOnline":"unknown","powerMw":30,"sqft":250000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"STACK Atlanta ATL02","operator":"STACK Infrastructure","owner":"STACK Infrastructure","address":"808 Factory Shoals Road, Lithia Springs, GA 30122","city":"Lithia Springs","state":"GA","zip":"30122","lat":33.78,"lng":-84.61,"yearOnline":"unknown","powerMw":160,"sqft":1000000,"type":"hyperscale","status":"planned","region":"Atlanta, GA"},{"name":"T5@Atlanta I","operator":"T5 Data Centers","owner":"T5 Data Centers","address":"1456 Trae Lane, Lithia Springs, GA 30122","city":"Lithia Springs","state":"GA","zip":"30122","lat":33.772967,"lng":-84.612331,"yearOnline":"unknown","powerMw":40,"sqft":200000,"type":"hyperscale","status":"operational","region":"Atlanta, GA"},{"name":"T5@Atlanta III Building 1","operator":"T5 Data Centers","owner":"T5 Data Centers","address":"Lithia Springs, GA 30122","city":"Lithia Springs","state":"GA","zip":"30122","lat":33.77,"lng":-84.61,"yearOnline":"unknown","powerMw":20,"sqft":162500,"type":"hyperscale","status":"operational","region":"Atlanta, GA"},{"name":"T5 ATL IV","operator":"T5 Data Centers","owner":"T5 Data Centers","address":"Atlanta, GA 30336","city":"Atlanta","state":"GA","zip":"30336","lat":33.74,"lng":-84.4,"yearOnline":"unknown","powerMw":200,"sqft":1320000,"type":"hyperscale","status":"planned","region":"Atlanta, GA"},{"name":"Switch Atlanta The KEEP","operator":"Switch","owner":"Switch","address":"1 Switch Way, Lithia Springs, GA 30122","city":"Lithia Springs","state":"GA","zip":"30122","lat":33.760218,"lng":-84.612255,"yearOnline":"unknown","powerMw":150,"sqft":1200000,"type":"hyperscale","status":"operational","region":"Atlanta, GA"},{"name":"Google Douglas County Data Center Campus","operator":"Google","owner":"Google","address":"Douglas County, GA 30187","city":"Douglas County","state":"GA","zip":"30187","lat":33.68,"lng":-84.74,"yearOnline":"2007","powerMw":100,"sqft":1000000,"type":"hyperscale","status":"operational","region":"Atlanta, GA"},{"name":"Google Edge Center","operator":"Google","owner":"Google","address":"Douglasville, GA 30135","city":"Douglasville","state":"GA","zip":"30135","lat":33.75,"lng":-84.74,"yearOnline":"unknown","powerMw":10,"sqft":50000,"type":"edge","status":"operational","region":"Atlanta, GA"},{"name":"Microsoft Douglasville Campus","operator":"Microsoft Azure","owner":"Microsoft","address":"1601 N River Rd, Lithia Springs, GA 30122","city":"Lithia Springs","state":"GA","zip":"30122","lat":33.769491,"lng":-84.643284,"yearOnline":"unknown","powerMw":100,"sqft":1000000,"type":"hyperscale","status":"operational","region":"Atlanta, GA"},{"name":"Microsoft Fairwater 2","operator":"Microsoft Azure","owner":"Microsoft","address":"Unknown, Atlanta metro, GA","city":"Atlanta metro","state":"GA","zip":"unknown","lat":33.7,"lng":-84.5,"yearOnline":"unknown","powerMw":300,"sqft":660000,"type":"hyperscale","status":"under-construction","region":"Atlanta, GA"},{"name":"Microsoft Union City Campus","operator":"Microsoft Azure","owner":"Microsoft","address":"Union City, GA 30291","city":"Union City","state":"GA","zip":"30291","lat":33.58,"lng":-84.54,"yearOnline":"unknown","powerMw":300,"sqft":1500000,"type":"hyperscale","status":"under-construction","region":"Atlanta, GA"},{"name":"Microsoft East Point","operator":"Microsoft Azure","owner":"Microsoft","address":"East Point, GA 30344","city":"East Point","state":"GA","zip":"30344","lat":33.68,"lng":-84.44,"yearOnline":"unknown","powerMw":150,"sqft":500000,"type":"hyperscale","status":"under-construction","region":"Atlanta, GA"},{"name":"Microsoft Palmetto Campus","operator":"Microsoft Azure","owner":"Microsoft","address":"Palmetto, GA 30268","city":"Palmetto","state":"GA","zip":"30268","lat":33.52,"lng":-84.68,"yearOnline":"unknown","powerMw":300,"sqft":1500000,"type":"hyperscale","status":"planned","region":"Atlanta, GA"},{"name":"Amazon AWS Alcovy Road Campus","operator":"Amazon AWS","owner":"Amazon AWS","address":"Unknown, Atlanta metro, GA 30014","city":"Atlanta metro","state":"GA","zip":"30014","lat":33.58,"lng":-83.86,"yearOnline":"unknown","powerMw":300,"sqft":1500000,"type":"hyperscale","status":"unknown","region":"Atlanta, GA"},{"name":"Amazon AWS Flat Rock Road Campus","operator":"Amazon AWS","owner":"Amazon AWS","address":"Unknown, Atlanta metro, GA 30122","city":"Atlanta metro","state":"GA","zip":"30122","lat":33.77,"lng":-84.57,"yearOnline":"unknown","powerMw":300,"sqft":1500000,"type":"hyperscale","status":"unknown","region":"Atlanta, GA"},{"name":"Meta Newton Campus Atlanta","operator":"Meta","owner":"Meta","address":"Newton County, GA 30014","city":"Newton County","state":"GA","zip":"30014","lat":33.6,"lng":-83.9,"yearOnline":"unknown","powerMw":300,"sqft":2000000,"type":"hyperscale","status":"operational","region":"Atlanta, GA"},{"name":"CleanSpark College Park","operator":"CleanSpark","owner":"CleanSpark","address":"College Park, GA 30337","city":"College Park","state":"GA","zip":"30337","lat":33.615773,"lng":-84.464172,"yearOnline":"unknown","powerMw":5,"sqft":50000,"type":"crypto","status":"operational","region":"Atlanta, GA"},{"name":"Fairburn Technology Center","operator":"Bohannon Road Venture LLC","owner":"Bohannon Road Venture LLC","address":"Fairburn, GA 30213","city":"Fairburn","state":"GA","zip":"30213","lat":33.57,"lng":-84.58,"yearOnline":"unknown","powerMw":120,"sqft":1190000,"type":"hyperscale","status":"planned","region":"Atlanta, GA"},{"name":"TA Realty Red Oak ATL03","operator":"TA Realty","owner":"TA Realty","address":"7170 Red Oak Road, Union City, GA 30291","city":"Union City","state":"GA","zip":"30291","lat":33.592652,"lng":-84.525785,"yearOnline":"unknown","powerMw":150,"sqft":800000,"type":"hyperscale","status":"planned","region":"Atlanta, GA"},{"name":"TA Realty Ellenwood ATL","operator":"TA Realty","owner":"TA Realty","address":"Ellenwood, GA 30294","city":"Ellenwood","state":"GA","zip":"30294","lat":33.613724,"lng":-84.287689,"yearOnline":"unknown","powerMw":150,"sqft":800000,"type":"hyperscale","status":"planned","region":"Atlanta, GA"},{"name":"Strategic Real Palmetto","operator":"Strategic Real Estate Partners","owner":"Strategic Real Estate Partners","address":"300 Johnston Circle, Palmetto, GA 30268","city":"Palmetto","state":"GA","zip":"30268","lat":33.520769,"lng":-84.665815,"yearOnline":"unknown","powerMw":200,"sqft":2100000,"type":"hyperscale","status":"planned","region":"Atlanta, GA"},{"name":"Hampton Technology Park","operator":"Hampton Technology Park Owner LLC","owner":"Hampton Technology Park Owner LLC","address":"Hampton, GA 30228","city":"Hampton","state":"GA","zip":"30228","lat":33.38706,"lng":-84.283808,"yearOnline":"unknown","powerMw":150,"sqft":800000,"type":"hyperscale","status":"planned","region":"Atlanta, GA"},{"name":"Grindcap Marietta Campus","operator":"Grind Capital Group","owner":"Grind Capital Group","address":"Marietta, GA 30060","city":"Marietta","state":"GA","zip":"30060","lat":33.95,"lng":-84.55,"yearOnline":"unknown","powerMw":60,"sqft":347200,"type":"hyperscale","status":"under-construction","region":"Atlanta, GA"},{"name":"Vantage Georgia GA2","operator":"Vantage Data Centers","owner":"Vantage Data Centers","address":"South Fulton, GA 30336","city":"South Fulton","state":"GA","zip":"30336","lat":33.7,"lng":-84.6,"yearOnline":"unknown","powerMw":100,"sqft":754220,"type":"hyperscale","status":"planned","region":"Atlanta, GA"},{"name":"ServerFarm Covington, GA","operator":"ServerFarm Realty","owner":"ServerFarm Realty","address":"Covington, GA 30014","city":"Covington","state":"GA","zip":"30014","lat":33.6,"lng":-83.85,"yearOnline":"unknown","powerMw":100,"sqft":1000000,"type":"hyperscale","status":"planned","region":"Atlanta, GA"},{"name":"Intero Systems Data Center","operator":"Intero Systems","owner":"Intero Systems","address":"1800 Phoenix Blvd, College Park, GA 30349","city":"College Park","state":"GA","zip":"30349","lat":33.616107,"lng":-84.4496,"yearOnline":"unknown","powerMw":1,"sqft":20000,"type":"enterprise","status":"unknown","region":"Atlanta, GA"},{"name":"Verizon 4000 Highland","operator":"Verizon Enterprise","owner":"Verizon Enterprise","address":"4000 Highland Parkway, Smyrna, GA 30082","city":"Smyrna","state":"GA","zip":"30082","lat":33.83803,"lng":-84.485026,"yearOnline":"unknown","powerMw":2,"sqft":30000,"type":"telecom","status":"operational","region":"Atlanta, GA"},{"name":"H5 Data Centers Atlanta","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"345 Courtland St. NE, Atlanta, GA","city":"Atlanta","state":"GA","zip":"unknown","lat":33.76460385788,"lng":-84.384043876831,"yearOnline":"unknown","powerMw":0,"sqft":110000,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"DataBank ATL2 - West End","operator":"DataBank","owner":"DataBank","address":"1100 White St SW, Atlanta, GA","city":"Atlanta","state":"GA","zip":"unknown","lat":33.733468097181,"lng":-84.423699222686,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Atlanta, GA"},{"name":"Digital Realty - 10 Forsyth Street NW (planned)","operator":"Digital Realty","owner":"Digital Realty","address":"10 Forsyth Street NW, Atlanta, GA","city":"Atlanta","state":"GA","zip":"unknown","lat":33.754994399864,"lng":-84.391758664067,"yearOnline":"unknown","powerMw":0,"sqft":300000,"type":"colocation","status":"planned","region":"Atlanta, GA"},{"name":"Digital Realty ORD10 / 350 East Cermak","operator":"Digital Realty","owner":"Digital Realty","address":"350 East Cermak Road","city":"Chicago","state":"IL","zip":"60616","lat":41.853059324473,"lng":-87.618915286339,"yearOnline":"unknown","powerMw":19.5,"sqft":1133000,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Equinix CH1","operator":"Equinix","owner":"Digital Realty","address":"350 East Cermak Road, 5th Floor","city":"Chicago","state":"IL","zip":"60616","lat":41.853059324473,"lng":-87.618915286339,"yearOnline":"unknown","powerMw":6,"sqft":143630,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Equinix CH2","operator":"Equinix","owner":"Digital Realty","address":"350 East Cermak Road, 6th Floor","city":"Chicago","state":"IL","zip":"60616","lat":41.853059324473,"lng":-87.618915286339,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Equinix CH4","operator":"Equinix","owner":"Digital Realty","address":"350 East Cermak Road, 8th Floor","city":"Chicago","state":"IL","zip":"60616","lat":41.853059324473,"lng":-87.618915286339,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Summit Chicago / formerly Deft at 350 East Cermak","operator":"Summit","owner":"Digital Realty","address":"350 East Cermak Road, Floors 1, 5, 6, 7 and 8","city":"Chicago","state":"IL","zip":"60616","lat":41.853059324473,"lng":-87.618915286339,"yearOnline":"unknown","powerMw":70,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Colocation America CHIDC1","operator":"Colocation America","owner":"Digital Realty","address":"350 E Cermak Road, Suite 8","city":"Chicago","state":"IL","zip":"60616","lat":41.853059324473,"lng":-87.618915286339,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Red Anvil Chicago Data Center","operator":"Red Anvil","owner":"Digital Realty","address":"350 E Cermak Road","city":"Chicago","state":"IL","zip":"60616","lat":41.853059324473,"lng":-87.618915286339,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"CoreSite CH1","operator":"CoreSite","owner":"CoreSite","address":"427 S. LaSalle Street","city":"Chicago","state":"IL","zip":"60605","lat":41.876532062059,"lng":-87.631681111225,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"CoreSite CH2","operator":"CoreSite","owner":"CoreSite","address":"1432 S Clinton Street","city":"Chicago","state":"IL","zip":"60607","lat":41.863320308042,"lng":-87.640654847281,"yearOnline":"2020","powerMw":18,"sqft":175000,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Netrality Chicago - 717 South Wells","operator":"Netrality","owner":"Netrality","address":"717 South Wells Street","city":"Chicago","state":"IL","zip":"60607","lat":41.873126461238,"lng":-87.633519992182,"yearOnline":"unknown","powerMw":0,"sqft":100000,"type":"telecom","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"DataBank ORD1 - Downtown Chicago Loop","operator":"DataBank","owner":"DataBank","address":"600 South Federal Street, Suites 150 and 142","city":"Chicago","state":"IL","zip":"60605","lat":41.874476586028,"lng":-87.629743960379,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"DataBank ORD2 - 840 S Canal","operator":"DataBank","owner":"DataBank","address":"840 S. Canal Street","city":"Chicago","state":"IL","zip":"60607","lat":41.870649899848,"lng":-87.639384283788,"yearOnline":"unknown","powerMw":2,"sqft":11470,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"H5 Data Centers Chicago","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"1951 W. Hastings Street","city":"Chicago","state":"IL","zip":"60608","lat":41.863996898685,"lng":-87.674971615026,"yearOnline":"unknown","powerMw":36,"sqft":0,"type":"colocation","status":"planned","region":"Chicago & Elk Grove Village, IL"},{"name":"QTS Chicago Campus / Chicago 1","operator":"QTS","owner":"QTS","address":"2800 S. Ashland Avenue","city":"Chicago","state":"IL","zip":"60608","lat":41.842192450248,"lng":-87.665912151672,"yearOnline":"2014","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"FDCServers Chicago","operator":"FDCServers","owner":"unknown","address":"141 W. Jackson Blvd., Suite 1135","city":"Chicago","state":"IL","zip":"60604","lat":41.87806885085,"lng":-87.632656297582,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Lumen Chicago 2","operator":"Lumen","owner":"Lumen","address":"900 N. Kingsbury Street","city":"Chicago","state":"IL","zip":"60610","lat":41.897901677141,"lng":-87.643368550841,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Digital Realty CH1 / 2200 Busse Road","operator":"Digital Realty","owner":"Digital Realty","address":"2200 Busse Road","city":"Elk Grove Village","state":"IL","zip":"60007","lat":41.995590226307,"lng":-87.959459887953,"yearOnline":"2008","powerMw":36.4,"sqft":485000,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Digital Realty CH2 / 2299 Busse Road","operator":"Digital Realty","owner":"Digital Realty","address":"2299 Busse Road","city":"Elk Grove Village","state":"IL","zip":"60007","lat":41.994093395685,"lng":-87.9592710243,"yearOnline":"2015","powerMw":0,"sqft":336000,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Digital Realty CH3 / 1400 East Devon Avenue","operator":"Digital Realty","owner":"Digital Realty","address":"1400 East Devon Avenue","city":"Elk Grove Village","state":"IL","zip":"60007","lat":41.993131441211,"lng":-87.96553904926,"yearOnline":"2018","powerMw":0,"sqft":305000,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Equinix CH3","operator":"Equinix","owner":"Equinix","address":"1905 Lunt Avenue","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.002059721924,"lng":-87.955301060658,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Equinix CH5","operator":"Equinix","owner":"Equinix","address":"2001 Lunt Avenue","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.002091524887,"lng":-87.953389342997,"yearOnline":"unknown","powerMw":0,"sqft":193110,"type":"colocation","status":"under-construction","region":"Chicago & Elk Grove Village, IL"},{"name":"EdgeConneX CHI01","operator":"EdgeConneX","owner":"EdgeConneX","address":"1800 Nicholas Boulevard","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.001222274725,"lng":-87.949425724147,"yearOnline":"unknown","powerMw":0,"sqft":75000,"type":"edge","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"EdgeConneX CHI02","operator":"EdgeConneX","owner":"EdgeConneX","address":"2021 Lunt Avenue","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.002098150504,"lng":-87.952991068484,"yearOnline":"unknown","powerMw":0,"sqft":40000,"type":"edge","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"EdgeConneX CHI03","operator":"EdgeConneX","owner":"EdgeConneX","address":"2055 Lunt Avenue","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.002109414053,"lng":-87.952314001813,"yearOnline":"unknown","powerMw":22.4,"sqft":167000,"type":"edge","status":"planned","region":"Chicago & Elk Grove Village, IL"},{"name":"Stream Chicago I / ORDA","operator":"Stream Data Centers","owner":"Stream Data Centers","address":"2080 Lunt Avenue","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.002232590103,"lng":-87.951799696138,"yearOnline":"2020","powerMw":31,"sqft":155189,"type":"hyperscale","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Stream Chicago II / ORDB","operator":"Stream Data Centers","owner":"Stream Data Centers","address":"1925 Busse Road","city":"Elk Grove Village","state":"IL","zip":"60007","lat":41.999176486544,"lng":-87.959338079203,"yearOnline":"2022","powerMw":32,"sqft":226000,"type":"hyperscale","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Stream Chicago III / ORDC campus","operator":"Stream Data Centers","owner":"Stream Data Centers","address":"2000 Landmeier Road","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.010551097419,"lng":-87.953358758844,"yearOnline":"unknown","powerMw":40,"sqft":2000000,"type":"hyperscale","status":"planned","region":"Chicago & Elk Grove Village, IL"},{"name":"STACK CHI01B / Chicago Data Center","operator":"STACK Infrastructure","owner":"STACK Infrastructure","address":"1441 Touhy Avenue","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.007639139925,"lng":-87.964390649037,"yearOnline":"unknown","powerMw":24,"sqft":221000,"type":"wholesale","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Iron Mountain CHI-1","operator":"Iron Mountain Data Centers","owner":"Iron Mountain Data Centers","address":"1680 Touhy Avenue","city":"Des Plaines","state":"IL","zip":"60018","lat":42.009798702442,"lng":-87.882347551073,"yearOnline":"unknown","powerMw":36,"sqft":315000,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"T5 @ Chicago II","operator":"T5 Data Centers","owner":"T5 Data Centers","address":"200 Innovation Drive","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.024108993432,"lng":-87.973947362459,"yearOnline":"unknown","powerMw":30,"sqft":170000,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Microsoft Elk Grove - Building 1","operator":"Microsoft","owner":"Microsoft","address":"Microsoft Elk Grove Technology Park, Innovation Drive & Oakton Street","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.022216141028,"lng":-87.973815134471,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"TA Realty Elk Grove Data Center Campus","operator":"TA Realty","owner":"TA Realty","address":"Elmhurst Road & Old Higgins Road","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.007168141699,"lng":-87.940245145864,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"under-construction","region":"Chicago & Elk Grove Village, IL"},{"name":"Aligned ORD-03 Data Center","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"50 NW Point Blvd.","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.032989208463,"lng":-87.981767292572,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"unknown","region":"Chicago & Elk Grove Village, IL"},{"name":"Aligned ORD-01 Data Center","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"505 Northwest Avenue","city":"Northlake","state":"IL","zip":"60164","lat":41.913969860712,"lng":-87.919288167554,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Aligned ORD-02 Data Center","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"501 Northwest Avenue","city":"Northlake","state":"IL","zip":"60164","lat":41.913914511842,"lng":-87.91928816756,"yearOnline":"unknown","powerMw":36,"sqft":228768,"type":"hyperscale","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Digital Realty ORD12","operator":"Digital Realty","owner":"Digital Realty","address":"9333 Grand Avenue","city":"Franklin Park","state":"IL","zip":"60131","lat":41.92909943148,"lng":-87.858092215442,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Digital Realty ORD13","operator":"Digital Realty","owner":"Digital Realty","address":"9355 Grand Avenue","city":"Franklin Park","state":"IL","zip":"60131","lat":41.929110491231,"lng":-87.858774629346,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Digital Realty ORD14","operator":"Digital Realty","owner":"Digital Realty","address":"9377 Grand Avenue","city":"Franklin Park","state":"IL","zip":"60131","lat":41.929142752714,"lng":-87.859459432945,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"NTT Chicago CH1","operator":"NTT Global Data Centers","owner":"NTT Global Data Centers","address":"255 Pierce Road","city":"Itasca","state":"IL","zip":"60143","lat":41.987689526432,"lng":-88.011205822198,"yearOnline":"unknown","powerMw":36,"sqft":126000,"type":"hyperscale","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Equinix CH7","operator":"Equinix","owner":"Equinix","address":"111 Plaza Drive","city":"Westmont","state":"IL","zip":"60559","lat":41.81296880507,"lng":-87.973006384301,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"SBA Edge Chicago / New Continuum","operator":"SBA Edge","owner":"SBA Edge","address":"603 Discovery Drive","city":"West Chicago","state":"IL","zip":"60185","lat":41.878112498081,"lng":-88.252749510048,"yearOnline":"unknown","powerMw":10,"sqft":80000,"type":"edge","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"DataBank ORD4 - Chicago Tri-State Data Center","operator":"DataBank","owner":"DataBank","address":"1808 Swift Drive, Suites B and C","city":"Oak Brook","state":"IL","zip":"60523","lat":41.853924720278,"lng":-87.922088187567,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Colocation America CHIDC3","operator":"Colocation America","owner":"unknown","address":"800 E Business Center Drive","city":"Mount Prospect","state":"IL","zip":"60056","lat":42.077109027758,"lng":-87.923760782463,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Colocation America CHIDC4","operator":"Colocation America","owner":"unknown","address":"1808 Swift Drive","city":"Oak Brook","state":"IL","zip":"60523","lat":41.853924720278,"lng":-87.922088187567,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"CloudHQ ORD Campus","operator":"CloudHQ","owner":"CloudHQ","address":"1200 East Algonquin Road","city":"Mount Prospect","state":"IL","zip":"60056","lat":42.034234283913,"lng":-87.956445446165,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"under-construction","region":"Chicago & Elk Grove Village, IL"},{"name":"CyrusOne CHI1 Chicago Aurora Data Center","operator":"CyrusOne","owner":"CyrusOne","address":"2905 Diehl Road","city":"Aurora","state":"IL","zip":"60502","lat":41.798071182484,"lng":-88.243410186001,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"CyrusOne CHI2 Chicago Aurora Data Center","operator":"CyrusOne","owner":"CyrusOne","address":"2805 Diehl Road","city":"Aurora","state":"IL","zip":"60502","lat":41.798076987696,"lng":-88.246874529375,"yearOnline":"unknown","powerMw":0,"sqft":428000,"type":"hyperscale","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"CyrusOne CHI5 Lombard","operator":"CyrusOne","owner":"CyrusOne","address":"1850 Springer Drive","city":"Lombard","state":"IL","zip":"unknown","lat":41.849312814346,"lng":-88.028873989953,"yearOnline":"unknown","powerMw":9,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Apotech Illinois 1","operator":"Apotech Group","owner":"Apotech Group","address":"1331 E Business Center Drive","city":"Mount Prospect","state":"IL","zip":"60056","lat":42.078626468822,"lng":-87.916416932134,"yearOnline":"unknown","powerMw":0,"sqft":32000,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"H5 Data Centers Chicago (1951 W Hastings)","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"1951 W. Hastings St.","city":"Chicago","state":"IL","zip":"unknown","lat":41.863996898685,"lng":-87.674971615026,"yearOnline":"unknown","powerMw":36,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Digital Realty 600–780 South Federal Street","operator":"Digital Realty","owner":"Digital Realty","address":"600–780 South Federal Street","city":"Chicago","state":"IL","zip":"unknown","lat":41.872634961737,"lng":-87.629690119429,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Equinix CH5","operator":"Equinix","owner":"Equinix","address":"2001 Lunt Ave","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.002091524887,"lng":-87.953389342997,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"EdgeConneX CHI03","operator":"EdgeConneX","owner":"EdgeConneX","address":"2055 Lunt Ave","city":"Elk Grove Village","state":"IL","zip":"unknown","lat":42.002109414053,"lng":-87.952314001813,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"NTT Chicago CH1 Data Center","operator":"NTT Global Data Centers","owner":"NTT Global Data Centers","address":"255 Pierce Rd","city":"Itasca","state":"IL","zip":"60143","lat":41.987689526432,"lng":-88.011205822198,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"Iron Mountain CHI-1","operator":"Iron Mountain","owner":"Iron Mountain","address":"1680 Touhy Ave","city":"Des Plaines","state":"IL","zip":"60018","lat":42.009798702442,"lng":-87.882347551073,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Chicago & Elk Grove Village, IL"},{"name":"1623 Farnam: Omaha Carrier Hotel / Omaha Edge Data Center","operator":"1623 Farnam LLC","owner":"1623 Farnam LLC","address":"1623 Farnam Street","city":"Omaha","state":"NE","zip":"68102","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":8,"sqft":75000,"type":"colocation","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"H5 Omaha Data Center Campus","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"10917 Harry Watanabe Pkwy","city":"La Vista","state":"NE","zip":"68128","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":17.3,"sqft":234500,"type":"colocation","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Lumen Premier Elite Omaha Data Center / Lumen Omaha 1","operator":"Lumen","owner":"Lumen","address":"6805 Pine Street","city":"Omaha","state":"NE","zip":"68106","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":2,"sqft":0,"type":"telecom","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Scott Data Center Omaha","operator":"Scott Data Center","owner":"unknown","address":"6825 Pine Street, Suite 141","city":"Omaha","state":"NE","zip":"68106","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":0,"sqft":110000,"type":"colocation","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"TierPoint Omaha - Bellevue Data Center","operator":"TierPoint","owner":"TierPoint","address":"1001 North Fort Crook Road","city":"Bellevue","state":"NE","zip":"68005","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":5.5,"sqft":100000,"type":"colocation","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"TierPoint Omaha - Midlands Data Center","operator":"TierPoint","owner":"TierPoint","address":"11425 South 84th Street","city":"Papillion","state":"NE","zip":"68046","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":12,"sqft":63000,"type":"colocation","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"First National Technology Solutions (FNTS) Omaha Data Center","operator":"First National Technology Solutions","owner":"First National Technology Solutions","address":"201 N 16th St","city":"Omaha","state":"NE","zip":"68197","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":4,"sqft":190000,"type":"colocation","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"LightEdge Omaha Data Center","operator":"LightEdge","owner":"LightEdge","address":"1148 American Parkway","city":"Papillion","state":"NE","zip":"68046","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":1.2,"sqft":21377,"type":"colocation","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"LoCoCoLo Omaha","operator":"Power Protection Products, Inc.","owner":"Power Protection Products, Inc.","address":"1205 S 75th St","city":"Omaha","state":"NE","zip":"68124","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Windstream Omaha","operator":"Windstream","owner":"Windstream","address":"1721 St Marys Ave","city":"Omaha","state":"NE","zip":"68102","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"IP Pathways Omaha","operator":"IP Pathways","owner":"IP Pathways","address":"5940 S 118th Circle","city":"Omaha","state":"NE","zip":"68137","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":5,"sqft":0,"type":"colocation","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Cogent Data Center - Omaha","operator":"Cogent Communications","owner":"Cogent Communications","address":"810 South 7th St","city":"Omaha","state":"NE","zip":"68108","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":2,"sqft":30361,"type":"wholesale","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"CyrusOne OCB1 - Council Bluffs","operator":"CyrusOne","owner":"CyrusOne","address":"4700 Gifford Rd.","city":"Council Bluffs","state":"IA","zip":"51501","lat":41,"lng":-95,"yearOnline":"unknown","powerMw":18,"sqft":216000,"type":"wholesale","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Connect Data Centers: Papillion, NE","operator":"Connect Data Centers","owner":"Oppidan","address":"Windsor Dr / S 158th Street area","city":"Papillion","state":"NE","zip":"unknown","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":0,"sqft":61550,"type":"wholesale","status":"planned","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Fidelity Omaha West DC","operator":"Fidelity Investments","owner":"Fidelity Investments","address":"unknown","city":"Papillion","state":"NE","zip":"unknown","lat":41,"lng":-96,"yearOnline":"2019","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Google Council Bluffs, IA Data Center","operator":"Google","owner":"Google","address":"1430 Veterans Memorial Hwy","city":"Council Bluffs","state":"IA","zip":"51501","lat":41,"lng":-95,"yearOnline":"2007","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Google Southlands - Building 1","operator":"Google","owner":"Google","address":"10420 Bunge Ave","city":"Council Bluffs","state":"IA","zip":"51503","lat":41,"lng":-95,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Google Omaha - Building 1","operator":"Google","owner":"Google","address":"11110 State St","city":"Omaha","state":"NE","zip":"68142","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Google Papillion - Building 1","operator":"Google","owner":"Google","address":"14651 Gold Coast Rd","city":"Papillion","state":"NE","zip":"68138","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Google Papillion - Building 3","operator":"Google","owner":"Google","address":"15249 Gold Coast Rd","city":"Papillion","state":"NE","zip":"68138","lat":41,"lng":-96,"yearOnline":"2023","powerMw":116,"sqft":0,"type":"hyperscale","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Google Papillion - Building 4","operator":"Google","owner":"Google","address":"14651-15249 Gold Coast Rd","city":"Papillion","state":"NE","zip":"68138","lat":41,"lng":-96,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Meta Sarpy Nebraska / Core Plaza","operator":"Meta","owner":"Meta","address":"Northwest side of Highway 50 and Capehart Road","city":"Papillion","state":"NE","zip":"68059","lat":41,"lng":-96,"yearOnline":"2019","powerMw":160,"sqft":1381000,"type":"hyperscale","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Meta Sarpy East Campus / Tower Two","operator":"Meta","owner":"Meta","address":"unknown","city":"Omaha","state":"NE","zip":"unknown","lat":41,"lng":-96,"yearOnline":"2022","powerMw":0,"sqft":740000,"type":"hyperscale","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Edged Council Bluffs - Building 1 / Project Lola","operator":"Edged Energy","owner":"Edged Energy","address":"College Rd and E Kanesville Blvd","city":"Council Bluffs","state":"IA","zip":"51503","lat":41,"lng":-95,"yearOnline":"unknown","powerMw":0,"sqft":285445,"type":"hyperscale","status":"planned","region":"Omaha & Council Bluffs, NE/IA"},{"name":"TierPoint Omaha - Bellevue Data Center","operator":"TierPoint","owner":"TierPoint","address":"1001 Fort Crook Road North","city":"Bellevue","state":"NE","zip":"unknown","lat":41.176826721019,"lng":-95.926407376352,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"TierPoint Omaha - Midlands (MID)","operator":"TierPoint","owner":"TierPoint","address":"11425 S 84th St","city":"Papillion","state":"NE","zip":"unknown","lat":41.13754377418,"lng":-96.04285788603,"yearOnline":"unknown","powerMw":12,"sqft":63000,"type":"colocation","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Cogent Omaha Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"810 S 7th Street","city":"Omaha","state":"NE","zip":"unknown","lat":41.252122881324,"lng":-95.925394344748,"yearOnline":"unknown","powerMw":0,"sqft":30361,"type":"telecom","status":"operational","region":"Omaha & Council Bluffs, NE/IA"},{"name":"Digital Realty MIA10 / 36 NE 2nd Street carrier hotel","operator":"Digital Realty","owner":"Digital Realty Trust","address":"36 NE 2nd Street","city":"Miami","state":"FL","zip":"33132","lat":25.776033067084,"lng":-80.193092312068,"yearOnline":"unknown","powerMw":1.3,"sqft":162000,"type":"colocation","status":"operational","region":"Miami, FL"},{"name":"Equinix MI1 / NAP of the Americas","operator":"Equinix","owner":"Equinix","address":"50 NE 9th Street","city":"Miami","state":"FL","zip":"33132","lat":25.782754770744,"lng":-80.1930609726,"yearOnline":"2001","powerMw":17,"sqft":750000,"type":"colocation","status":"operational","region":"Miami, FL"},{"name":"CoreSite MI1","operator":"CoreSite","owner":"CoreSite","address":"2115 NW 22nd Street","city":"Miami","state":"FL","zip":"33142","lat":25.797391683179,"lng":-80.229868941041,"yearOnline":"2006","powerMw":0,"sqft":45000,"type":"colocation","status":"operational","region":"Miami, FL"},{"name":"CoreSite MI2","operator":"CoreSite","owner":"CoreSite","address":"2100 NW 84th Avenue","city":"Doral","state":"FL","zip":"33122","lat":25.793233928197,"lng":-80.332467948801,"yearOnline":"unknown","powerMw":0,"sqft":103000,"type":"colocation","status":"operational","region":"Miami, FL"},{"name":"EdgeConneX MIA01","operator":"EdgeConneX","owner":"EdgeConneX","address":"2132 Northwest 114th Avenue","city":"Miami","state":"FL","zip":"33172","lat":25.793593985569,"lng":-80.380701060076,"yearOnline":"2015","powerMw":1,"sqft":27000,"type":"edge","status":"operational","region":"Miami, FL"},{"name":"EdgeConneX MIA02","operator":"EdgeConneX","owner":"EdgeConneX","address":"475 NE 185th Street","city":"Miami Gardens","state":"FL","zip":"33179","lat":25.945017013744,"lng":-80.191223428813,"yearOnline":"unknown","powerMw":6,"sqft":65518,"type":"edge","status":"operational","region":"Miami, FL"},{"name":"Equinix MI3 Boca Raton","operator":"Equinix","owner":"Equinix","address":"4680 Conference Way South, Suite 150","city":"Boca Raton","state":"FL","zip":"33431","lat":26.390199324563,"lng":-80.108654963766,"yearOnline":"unknown","powerMw":2,"sqft":31310,"type":"colocation","status":"operational","region":"Miami, FL"},{"name":"Equinix MI6","operator":"Equinix","owner":"Equinix","address":"1525 NW 98th Court, International Corporate Park","city":"Doral","state":"FL","zip":"33172","lat":25.787441497277,"lng":-80.355574008382,"yearOnline":"unknown","powerMw":0,"sqft":75046,"type":"colocation","status":"operational","region":"Miami, FL"},{"name":"365 Data Centers Fort Lauderdale","operator":"365 Data Centers","owner":"365 Data Centers","address":"3250 W Commercial Blvd.","city":"Fort Lauderdale","state":"FL","zip":"33309","lat":26.186211913536,"lng":-80.190341147667,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Miami, FL"},{"name":"Flexential Fort Lauderdale Data Center","operator":"Flexential","owner":"Flexential","address":"5301 NW 33rd Avenue","city":"Fort Lauderdale","state":"FL","zip":"33309","lat":26.189783619133,"lng":-80.191845862262,"yearOnline":"unknown","powerMw":3.15,"sqft":64164,"type":"colocation","status":"operational","region":"Miami, FL"},{"name":"RadiusDC Miami I","operator":"RadiusDC","owner":"RadiusDC","address":"11300 NW 25th Street","city":"Sweetwater","state":"FL","zip":"33172","lat":25.79678184497,"lng":-80.37881737691,"yearOnline":"unknown","powerMw":12,"sqft":175000,"type":"colocation","status":"operational","region":"Miami, FL"},{"name":"Iron Mountain MIA-1","operator":"Iron Mountain","owner":"Iron Mountain","address":"2925 NW 120th Terrace","city":"Miami","state":"FL","zip":"33167","lat":25.88415986431,"lng":-80.247555757503,"yearOnline":"2026","powerMw":16,"sqft":150000,"type":"colocation","status":"under-construction","region":"Miami, FL"},{"name":"Metrobloks MIA A1","operator":"Metrobloks","owner":"Metrobloks","address":"500 NW 137th Avenue","city":"Miami","state":"FL","zip":"unknown","lat":25.768923530506,"lng":-80.417195059038,"yearOnline":"unknown","powerMw":16.8,"sqft":0,"type":"colocation","status":"planned","region":"Miami, FL"},{"name":"AT&T Miami MIA1","operator":"AT&T","owner":"AT&T","address":"444 Northwest 79th Avenue","city":"Miami","state":"FL","zip":"33126","lat":25.774485205131,"lng":-80.32437087946,"yearOnline":"unknown","powerMw":7,"sqft":189003,"type":"telecom","status":"operational","region":"Miami, FL"},{"name":"Cogent 200 SE 1st","operator":"Cogent Communications","owner":"unknown","address":"200 SE 1st Street","city":"Miami","state":"FL","zip":"33131","lat":25.773347918854,"lng":-80.190120652245,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Miami, FL"},{"name":"Cogent Boca Raton Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"5050 Conference Way North","city":"Boca Raton","state":"FL","zip":"33431","lat":26.391308337457,"lng":-80.10917655524,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Miami, FL"},{"name":"Telxius Boca Raton Data Center (TBOC01)","operator":"Telxius Cable","owner":"Telxius Cable","address":"6503 West Rogers Circle","city":"Boca Raton","state":"FL","zip":"33487","lat":26.405674992078,"lng":-80.113438920913,"yearOnline":"unknown","powerMw":8,"sqft":0,"type":"telecom","status":"operational","region":"Miami, FL"},{"name":"3EX Hosting Data Center - Boca Raton","operator":"3EX Hosting","owner":"3EX Hosting","address":"6601 Park of Commerce Blvd","city":"Boca Raton","state":"FL","zip":"33487","lat":26.404426969718,"lng":-80.096945160772,"yearOnline":"unknown","powerMw":35,"sqft":0,"type":"colocation","status":"operational","region":"Miami, FL"},{"name":"Lumen Miami 1","operator":"Lumen","owner":"Lumen","address":"49 NW 5th Street","city":"Miami","state":"FL","zip":"33128","lat":25.779000768722,"lng":-80.194554123787,"yearOnline":"unknown","powerMw":0,"sqft":39450,"type":"telecom","status":"operational","region":"Miami, FL"},{"name":"Lumen Miami 4","operator":"Lumen","owner":"Lumen","address":"1109 Northwest 22nd Street","city":"Miami","state":"FL","zip":"unknown","lat":25.797871767179,"lng":-80.213426044562,"yearOnline":"unknown","powerMw":0,"sqft":100000,"type":"telecom","status":"operational","region":"Miami, FL"},{"name":"Lumen West Palm Beach 1","operator":"Lumen","owner":"Lumen","address":"410 Hampton Road","city":"West Palm Beach","state":"FL","zip":"33405","lat":26.683825500761,"lng":-80.054734511924,"yearOnline":"unknown","powerMw":0,"sqft":4897,"type":"telecom","status":"operational","region":"Miami, FL"},{"name":"Cloud South West Palm Beach","operator":"Cloud South","owner":"Cloud South","address":"424 Hampton Road","city":"West Palm Beach","state":"FL","zip":"33405","lat":26.683829017644,"lng":-80.054923837203,"yearOnline":"unknown","powerMw":1,"sqft":6300,"type":"colocation","status":"operational","region":"Miami, FL"},{"name":"iM Critical Miami Data Center","operator":"iM Critical","owner":"iM Critical","address":"100 NE 80th Terrace","city":"Miami","state":"FL","zip":"33138","lat":25.84860604038,"lng":-80.195308961119,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Miami, FL"},{"name":"Verizon Miami","operator":"Verizon Communications Inc.","owner":"Verizon Communications Inc.","address":"16563 NW 15th Ave","city":"Miami","state":"FL","zip":"33169","lat":25.925161213752,"lng":-80.225091287849,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"unknown","region":"Miami, FL"},{"name":"Aptum Miami Data Center","operator":"Aptum","owner":"Aptum","address":"2300 NW 89th Place","city":"Miami","state":"FL","zip":"unknown","lat":25.795634433271,"lng":-80.342655521219,"yearOnline":"1984","powerMw":2,"sqft":64174,"type":"colocation","status":"operational","region":"Miami, FL"},{"name":"Project Tango AI Data Center","operator":"unknown","owner":"unknown","address":"20125 Southern Blvd","city":"Loxahatchee","state":"FL","zip":"33470","lat":26.68546077393,"lng":-80.367754870384,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"Miami, FL"},{"name":"EdgeConneX MIA02","operator":"EdgeConneX","owner":"EdgeConneX","address":"475 NE 185th Street","city":"Miami","state":"FL","zip":"unknown","lat":25.945017013744,"lng":-80.191223428813,"yearOnline":"unknown","powerMw":0,"sqft":65518,"type":"edge","status":"operational","region":"Miami, FL"},{"name":"Equinix MI6","operator":"Equinix","owner":"Equinix","address":"1525 NW 98th Court","city":"Doral","state":"FL","zip":"unknown","lat":25.787441497277,"lng":-80.355574008382,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Miami, FL"},{"name":"Volico MIA1 Miami Data Center","operator":"Volico Data Centers","owner":"Volico Data Centers","address":"100 N. Biscayne Blvd.","city":"Miami","state":"FL","zip":"33132","lat":25.775330822179,"lng":-80.18783450328,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Miami, FL"},{"name":"AT&T Los Angeles 2","operator":"AT&T","owner":"AT&T","address":"600 W 7th St","city":"Los Angeles","state":"CA","zip":"90017","lat":34.04728210583,"lng":-118.256691850093,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Los Angeles, CA"},{"name":"China Telecom Los Angeles","operator":"China Telecom","owner":"Digital Realty","address":"600 West 7th Street","city":"Los Angeles","state":"CA","zip":"90017","lat":34.04728210583,"lng":-118.256691850093,"yearOnline":"unknown","powerMw":0,"sqft":6500,"type":"telecom","status":"operational","region":"Los Angeles, CA"},{"name":"Cogent Los Angeles / 530 West 6th","operator":"Cogent Communications","owner":"Cogent Communications","address":"530 West 6th Street","city":"Los Angeles","state":"CA","zip":"90014","lat":34.0483513,"lng":-118.2552,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Los Angeles, CA"},{"name":"Cogent Orange County","operator":"Cogent Communications","owner":"Cogent Communications","address":"300 S Harbor Blvd","city":"Anaheim","state":"CA","zip":"92805","lat":33.831945221683,"lng":-117.918704005546,"yearOnline":"unknown","powerMw":0,"sqft":1100,"type":"telecom","status":"operational","region":"Los Angeles, CA"},{"name":"Cogent Data Center - Pasadena","operator":"Cogent Communications","owner":"Cogent Communications","address":"2947 Bradley Street","city":"Pasadena","state":"CA","zip":"91107","lat":34.166901499462,"lng":-118.088114863298,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Los Angeles, CA"},{"name":"Cogent Data Center - La Mirada","operator":"Cogent Communications","owner":"Cogent Communications","address":"16680 Valley View Avenue","city":"La Mirada","state":"CA","zip":"90638","lat":33.879680989898,"lng":-118.028788572966,"yearOnline":"unknown","powerMw":2.2,"sqft":0,"type":"telecom","status":"operational","region":"Los Angeles, CA"},{"name":"CoreSite LA1 - One Wilshire","operator":"CoreSite","owner":"GI Partners / One Wilshire ownership","address":"624 S. Grand Ave.","city":"Los Angeles","state":"CA","zip":"90017","lat":34.047942,"lng":-118.255564,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"CoreSite LA2","operator":"CoreSite","owner":"CoreSite","address":"900 N. Alameda St.","city":"Los Angeles","state":"CA","zip":"90012","lat":34.058138493271,"lng":-118.236993590441,"yearOnline":"unknown","powerMw":0,"sqft":432000,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"CoreSite LA3","operator":"CoreSite","owner":"CoreSite","address":"200 Bauchet St.","city":"Los Angeles","state":"CA","zip":"90012","lat":34.059029536274,"lng":-118.235489572396,"yearOnline":"2020","powerMw":18,"sqft":160000,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"DataBank SNA1","operator":"DataBank","owner":"DataBank","address":"17222 Von Karman Avenue","city":"Irvine","state":"CA","zip":"92614","lat":33.691368728721,"lng":-117.840358972178,"yearOnline":"unknown","powerMw":2.64,"sqft":36720,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"DataBank LAX1 - One Wilshire","operator":"DataBank","owner":"GI Partners / One Wilshire ownership","address":"624 South Grand Avenue, Suite #2900","city":"Los Angeles","state":"CA","zip":"90017","lat":34.048148932625,"lng":-118.255721176593,"yearOnline":"unknown","powerMw":2,"sqft":18480,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"DataBank SNA2","operator":"DataBank","owner":"DataBank","address":"17400 Von Karman Avenue","city":"Irvine","state":"CA","zip":"92614","lat":33.688821672728,"lng":-117.842894526402,"yearOnline":"unknown","powerMw":8,"sqft":53150,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"DataBank LAX2 / Goodman LAX01 Vernon","operator":"DataBank","owner":"DataBank / Goodman Group joint venture","address":"3094 E. Vernon Avenue","city":"Vernon","state":"CA","zip":"90058","lat":34.005429982137,"lng":-118.218653471025,"yearOnline":"unknown","powerMw":32,"sqft":0,"type":"hyperscale","status":"under-construction","region":"Los Angeles, CA"},{"name":"Digital Realty LAX11","operator":"Digital Realty","owner":"Digital Realty","address":"200 North Nash Street","city":"El Segundo","state":"CA","zip":"90245","lat":33.918073621393,"lng":-118.387349800575,"yearOnline":"unknown","powerMw":0,"sqft":60000,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Digital Realty LAX12","operator":"Digital Realty","owner":"Digital Realty","address":"2260 East El Segundo Boulevard","city":"El Segundo","state":"CA","zip":"90245","lat":33.916297783704,"lng":-118.384828277521,"yearOnline":"unknown","powerMw":0,"sqft":132000,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Digital Realty BUR10","operator":"Digital Realty","owner":"Digital Realty","address":"3015 Winona Avenue","city":"Burbank","state":"CA","zip":"91504","lat":34.199320804136,"lng":-118.343533908367,"yearOnline":"unknown","powerMw":0,"sqft":15350,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Digital Realty Vernon Data Center","operator":"Digital Realty","owner":"Digital Realty","address":"4400-4458 Pacific Blvd.","city":"Vernon","state":"CA","zip":"unknown","lat":34.003137824968,"lng":-118.226017221632,"yearOnline":"unknown","powerMw":32,"sqft":0,"type":"wholesale","status":"planned","region":"Los Angeles, CA"},{"name":"818 West 7th / Lumen Los Angeles building","operator":"Lumen Technologies","owner":"Downtown Properties","address":"818 W 7th St","city":"Los Angeles","state":"CA","zip":"unknown","lat":34.049019774168,"lng":-118.259396448682,"yearOnline":"unknown","powerMw":0,"sqft":75031,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Equinix LA1","operator":"Equinix","owner":"Digital Realty","address":"600 W 7th Street, 6th & 7th Floors","city":"Los Angeles","state":"CA","zip":"90017","lat":34.04728210583,"lng":-118.256691850093,"yearOnline":"unknown","powerMw":0,"sqft":60719,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Equinix LA3","operator":"Equinix","owner":"Equinix","address":"1920 E Maple Ave","city":"El Segundo","state":"CA","zip":"90245","lat":33.926857388076,"lng":-118.394156437342,"yearOnline":"unknown","powerMw":0,"sqft":78318,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Equinix LA4","operator":"Equinix","owner":"Equinix","address":"445 North Douglas Street","city":"El Segundo","state":"CA","zip":"90245","lat":33.918851594913,"lng":-118.383276140953,"yearOnline":"unknown","powerMw":0,"sqft":77263,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Equinix LA7","operator":"Equinix","owner":"Equinix","address":"1501 Francisco Street","city":"Torrance","state":"CA","zip":"unknown","lat":33.850032081206,"lng":-118.303305962912,"yearOnline":"unknown","powerMw":0,"sqft":74981,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Lumen Anaheim 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"2461 West La Palma Avenue","city":"Anaheim","state":"CA","zip":"unknown","lat":33.846928447216,"lng":-117.970388387412,"yearOnline":"unknown","powerMw":0,"sqft":51149,"type":"telecom","status":"operational","region":"Los Angeles, CA"},{"name":"Lumen Tustin 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"14452 Franklin Avenue","city":"Tustin","state":"CA","zip":"92780","lat":33.716985217612,"lng":-117.807298439027,"yearOnline":"unknown","powerMw":0,"sqft":53000,"type":"telecom","status":"operational","region":"Los Angeles, CA"},{"name":"Telecom Center LA Building","operator":"Morlin Management","owner":"Morlin Management","address":"530 W 6th Street","city":"Los Angeles","state":"CA","zip":"90017","lat":34.0483513,"lng":-118.2552,"yearOnline":"unknown","powerMw":0,"sqft":300000,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"NYI Los Angeles","operator":"NYI","owner":"Thomas Properties Group","address":"800 South Hope Street","city":"Los Angeles","state":"CA","zip":"unknown","lat":34.046482749075,"lng":-118.259012621804,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"OC Online Anaheim","operator":"Orange County Online","owner":"Orange County Online","address":"300 South Harbor Boulevard, Suite 716","city":"Anaheim","state":"CA","zip":"unknown","lat":33.831945221683,"lng":-117.918704005546,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Serverfarm LAX1","operator":"Serverfarm","owner":"Serverfarm Realty","address":"444 North Nash Street","city":"El Segundo","state":"CA","zip":"90245","lat":33.921639367753,"lng":-118.387362649313,"yearOnline":"unknown","powerMw":17.3,"sqft":117500,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Telehouse 626 Wilshire","operator":"Telehouse","owner":"Telehouse","address":"626 Wilshire Blvd","city":"Los Angeles","state":"CA","zip":"unknown","lat":34.048122055838,"lng":-118.256329468013,"yearOnline":"1998","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"UnitedLayer LA4 - One Wilshire","operator":"UnitedLayer","owner":"GI Partners / One Wilshire ownership","address":"624 South Grand Avenue","city":"Los Angeles","state":"CA","zip":"unknown","lat":34.048148932625,"lng":-118.255721176593,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Verizon (818 West 7th)","operator":"Verizon Enterprise","owner":"Downtown Properties","address":"818 West 7th Street","city":"Los Angeles","state":"CA","zip":"unknown","lat":34.049019774168,"lng":-118.259396448682,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Los Angeles, CA"},{"name":"Verizon Santa Ana","operator":"Verizon Enterprise","owner":"Verizon Enterprise","address":"1928 East Deere St, 1st Floor","city":"Santa Ana","state":"CA","zip":"unknown","lat":33.704681860426,"lng":-117.848865911805,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Los Angeles, CA"},{"name":"Crown Castle 609 W 7th Street","operator":"Crown Castle","owner":"Crown Castle","address":"609 W 7th Street","city":"Los Angeles","state":"CA","zip":"unknown","lat":34.04742411154,"lng":-118.256686914832,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Los Angeles, CA"},{"name":"Evocative Redondo Beach LAX14","operator":"Evocative","owner":"Evocative","address":"3690 Redondo Beach Avenue","city":"Redondo Beach","state":"CA","zip":"unknown","lat":33.889548152763,"lng":-118.370073780639,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Evocative Los Angeles LAX10","operator":"Evocative","owner":"Digital Realty","address":"2260 E El Segundo Blvd","city":"El Segundo","state":"CA","zip":"90245","lat":33.916297783704,"lng":-118.384828277521,"yearOnline":"unknown","powerMw":0,"sqft":132000,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Prime Data Centers LAX01","operator":"Prime Data Centers","owner":"Prime Data Centers","address":"4701 S. Santa Fe","city":"Vernon","state":"CA","zip":"unknown","lat":34.001401317487,"lng":-118.230279007345,"yearOnline":"unknown","powerMw":33,"sqft":242495,"type":"hyperscale","status":"operational","region":"Los Angeles, CA"},{"name":"Alchemy LAX","operator":"QuadraNet","owner":"QuadraNet","address":"6171 West Century Boulevard, Suite L-B","city":"Los Angeles","state":"CA","zip":"unknown","lat":33.945662185657,"lng":-118.393039937239,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"QuadraNet LAX (Century)","operator":"QuadraNet","owner":"QuadraNet","address":"6171 West Century Boulevard","city":"Los Angeles","state":"CA","zip":"unknown","lat":33.945662185657,"lng":-118.393039937239,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"QuadraNet Los Angeles - Downtown HQ","operator":"QuadraNet","owner":"Morlin Management / Telecom Center LA ownership","address":"530 W 6th St","city":"Los Angeles","state":"CA","zip":"unknown","lat":34.048222463558,"lng":-118.254575303466,"yearOnline":"unknown","powerMw":0,"sqft":300000,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Centersquare Los Angeles LA2-Irvine","operator":"Centersquare","owner":"Centersquare","address":"2681 Kelvin Avenue","city":"Irvine","state":"CA","zip":"92614","lat":33.6847355,"lng":-117.8368368,"yearOnline":"unknown","powerMw":15,"sqft":150000,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Centersquare El Segundo LA1","operator":"Centersquare","owner":"Digital Realty","address":"200 N. Nash St","city":"El Segundo","state":"CA","zip":"90245","lat":33.918073621393,"lng":-118.387349800575,"yearOnline":"unknown","powerMw":0,"sqft":60000,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Centersquare Irvine OC2 / LAX3-A","operator":"Centersquare","owner":"Centersquare","address":"17836 Gillette Ave","city":"Irvine","state":"CA","zip":"92614","lat":33.686600700748,"lng":-117.850502181822,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Centersquare LAX4-A Hawthorne","operator":"Centersquare","owner":"Mapletree Redwood Data Centre Trust","address":"2301 W 120th St","city":"Hawthorne","state":"CA","zip":"unknown","lat":33.923770458227,"lng":-118.320588879627,"yearOnline":"unknown","powerMw":28,"sqft":288583,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"2301 West 120th, Hawthorne","operator":"Mapletree Redwood Data Centre Trust","owner":"Mapletree Redwood Data Centre Trust","address":"2301 West 120th Street","city":"Hawthorne","state":"CA","zip":"unknown","lat":33.923770458227,"lng":-118.320588879627,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"Los Angeles, CA"},{"name":"Edge Centres EC101 Los Angeles","operator":"Edge Centres","owner":"Shorenstein","address":"707 Wilshire Blvd","city":"Los Angeles","state":"CA","zip":"90017","lat":34.04877922982,"lng":-118.257129957267,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"Los Angeles, CA"},{"name":"West 7 Center","operator":"Rising Realty Partners","owner":"Rising Realty Partners","address":"1200 West 7th Street","city":"Los Angeles","state":"CA","zip":"90017","lat":34.051411340597,"lng":-118.265795630599,"yearOnline":"unknown","powerMw":0,"sqft":733000,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"ColoCrossing LA1","operator":"ColoCrossing","owner":"ColoCrossing","address":"1200 W 7th Street","city":"Los Angeles","state":"CA","zip":"90017","lat":34.051411340597,"lng":-118.265795630599,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"CoreSite Los Angeles (LA2)","operator":"CoreSite","owner":"CoreSite","address":"900 N. Alameda Street","city":"Los Angeles","state":"CA","zip":"unknown","lat":34.058138493271,"lng":-118.236993590441,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Crown Castle Los Angeles LA2 Data Center","operator":"Crown Castle Fiber","owner":"Crown Castle Fiber","address":"609 W 7th St","city":"Los Angeles","state":"CA","zip":"90017","lat":34.04742411154,"lng":-118.256686914832,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Equinix LA3","operator":"Equinix","owner":"Equinix","address":"1920 East Maple Avenue","city":"El Segundo","state":"CA","zip":"unknown","lat":33.926857388076,"lng":-118.394156437342,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Los Angeles, CA"},{"name":"Cologix COL1","operator":"Cologix","owner":"Cologix","address":"535 Scherers Court","city":"Columbus","state":"OH","zip":"unknown","lat":40.116503492551,"lng":-83.002222508413,"yearOnline":"unknown","powerMw":30,"sqft":44000,"type":"colocation","status":"operational","region":"Columbus & New Albany, OH"},{"name":"Cologix COL2","operator":"Cologix","owner":"Cologix","address":"555 Scherers Court","city":"Columbus","state":"OH","zip":"unknown","lat":40.11649715028,"lng":-83.002048096208,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Columbus & New Albany, OH"},{"name":"Cologix COL3 / COL3-S","operator":"Cologix","owner":"Cologix","address":"585 Scherers Court","city":"Columbus","state":"OH","zip":"43085","lat":40.116487636874,"lng":-83.0017864779,"yearOnline":"unknown","powerMw":18,"sqft":160000,"type":"colocation","status":"operational","region":"Columbus & New Albany, OH"},{"name":"Cologix Johnstown COL7","operator":"Cologix","owner":"Cologix","address":"12017 Duncan Plains Road","city":"Johnstown","state":"OH","zip":"43031","lat":40.137177382505,"lng":-82.715470336644,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"under-construction","region":"Columbus & New Albany, OH"},{"name":"Cologix Johnstown COL8","operator":"Cologix","owner":"Cologix","address":"11719 Duncan Plains Road","city":"Johnstown","state":"OH","zip":"43031","lat":40.135629263116,"lng":-82.711896041527,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"under-construction","region":"Columbus & New Albany, OH"},{"name":"Expedient CMH1 / Upper Arlington","operator":"Expedient","owner":"Expedient","address":"5000 Arlington Centre Blvd Building One","city":"Upper Arlington","state":"OH","zip":"43220","lat":40.057188158931,"lng":-83.079214621903,"yearOnline":"unknown","powerMw":1.6,"sqft":21591,"type":"colocation","status":"operational","region":"Columbus & New Albany, OH"},{"name":"Expedient CMH2 / Dublin","operator":"Expedient","owner":"Expedient","address":"5700 Innovation Drive","city":"Dublin","state":"OH","zip":"43016","lat":40.091679767084,"lng":-83.144372557642,"yearOnline":"unknown","powerMw":4.8,"sqft":29208,"type":"colocation","status":"operational","region":"Columbus & New Albany, OH"},{"name":"Expedient CMH3 / Lewis Center","operator":"Expedient","owner":"Expedient","address":"281 E. Powell Road","city":"Lewis Center","state":"OH","zip":"43035","lat":40.156951342229,"lng":-83.014315987242,"yearOnline":"unknown","powerMw":7,"sqft":102000,"type":"colocation","status":"operational","region":"Columbus & New Albany, OH"},{"name":"Centersquare Columbus CMH1 / Lewis Center Data Center Campus","operator":"Centersquare","owner":"Centersquare","address":"8180 Green Meadows Dr","city":"Lewis Center","state":"OH","zip":"unknown","lat":40.167593228072,"lng":-83.009838260665,"yearOnline":"unknown","powerMw":0,"sqft":27000,"type":"colocation","status":"operational","region":"Columbus & New Albany, OH"},{"name":"WeConnect Community Data Center / WeConnect Westerville","operator":"WeConnect","owner":"WeConnect","address":"35 Collegeview Road","city":"Westerville","state":"OH","zip":"unknown","lat":40.123663657459,"lng":-82.94397645815,"yearOnline":"2010","powerMw":3,"sqft":16000,"type":"colocation","status":"operational","region":"Columbus & New Albany, OH"},{"name":"Cogent Data Center - Columbus / 240 N 5th","operator":"Cogent Communications","owner":"Cogent Communications","address":"240 N 5th Street, Suite 210","city":"Columbus","state":"OH","zip":"43215","lat":39.96792910883,"lng":-82.995776649165,"yearOnline":"unknown","powerMw":0.1,"sqft":0,"type":"telecom","status":"operational","region":"Columbus & New Albany, OH"},{"name":"WOW! Business Columbus Datacenter / 226 N 5th","operator":"WOW! Business","owner":"WOW! Business","address":"226 N 5th Street","city":"Columbus","state":"OH","zip":"unknown","lat":39.967731843964,"lng":-82.99573760718,"yearOnline":"2013","powerMw":0,"sqft":26000,"type":"telecom","status":"operational","region":"Columbus & New Albany, OH"},{"name":"Lumen 266 North 5th","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"266 North 5th Street","city":"Columbus","state":"OH","zip":"unknown","lat":39.968295517004,"lng":-82.995849421951,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Columbus & New Albany, OH"},{"name":"Lumen 580 North 4th","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"580 North 4th Street","city":"Columbus","state":"OH","zip":"unknown","lat":39.974956606852,"lng":-82.998098165232,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Columbus & New Albany, OH"},{"name":"Crown Castle 101 E Town","operator":"Crown Castle","owner":"Crown Castle","address":"101 E Town Street","city":"Columbus","state":"OH","zip":"unknown","lat":39.959070772708,"lng":-82.997236102395,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Columbus & New Albany, OH"},{"name":"Racksquared 325 E Spring St","operator":"Racksquared Data Centers LLC","owner":"Racksquared Data Centers LLC","address":"325 E Spring Street","city":"Columbus","state":"OH","zip":"unknown","lat":39.967037860866,"lng":-82.992868239404,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Columbus & New Albany, OH"},{"name":"Racksquared 2560 Value Way","operator":"Racksquared Data Centers LLC","owner":"Racksquared Data Centers LLC","address":"2560 Value Way","city":"Columbus","state":"OH","zip":"unknown","lat":40.04454909804,"lng":-82.951989803095,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Columbus & New Albany, OH"},{"name":"180 E Broad St / Hexion Building / CENTRA CMH01","operator":"CENTRA / Deep Edge Realty","owner":"Deep Edge Realty","address":"180 E Broad St","city":"Columbus","state":"OH","zip":"43215","lat":39.962785026452,"lng":-82.996183555868,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Columbus & New Albany, OH"},{"name":"QTS New Albany 1 DC1","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"1235 Beech Rd SW","city":"New Albany","state":"OH","zip":"43054","lat":40.066757205698,"lng":-82.754460326552,"yearOnline":"unknown","powerMw":0,"sqft":442521,"type":"wholesale","status":"operational","region":"Columbus & New Albany, OH"},{"name":"QTS New Albany 1 DC2","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"1225 Beech Rd SW","city":"New Albany","state":"OH","zip":"43054","lat":40.064797903794,"lng":-82.754633362423,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"Columbus & New Albany, OH"},{"name":"CyrusOne New Albany COL-1","operator":"CyrusOne","owner":"KKR","address":"12181 Jug St.","city":"New Albany","state":"OH","zip":"unknown","lat":40.095598385207,"lng":-82.717649753904,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"under-construction","region":"Columbus & New Albany, OH"},{"name":"Edged Energy Columbus CMH01","operator":"Edged Energy","owner":"Edged Energy","address":"6385 New Albany Road East","city":"New Albany","state":"OH","zip":"unknown","lat":40.110781108783,"lng":-82.82582149436,"yearOnline":"2025","powerMw":0,"sqft":206000,"type":"hyperscale","status":"operational","region":"Columbus & New Albany, OH"},{"name":"DBT Data 2214 Harrison Rd","operator":"DBT Data","owner":"DBT Data","address":"2214 Harrison Rd","city":"Columbus","state":"OH","zip":"unknown","lat":39.970703550394,"lng":-83.063057624294,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"Columbus & New Albany, OH"},{"name":"Aligned Pataskala","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"6770 Mink Street","city":"Pataskala","state":"OH","zip":"unknown","lat":39.993092700606,"lng":-82.729376148739,"yearOnline":"unknown","powerMw":3,"sqft":102000,"type":"hyperscale","status":"planned","region":"Columbus & New Albany, OH"},{"name":"Karis Critical New Albany OH","operator":"Karis Critical","owner":"Karis Critical","address":"4500 Beech Road NW","city":"New Albany","state":"OH","zip":"unknown","lat":40.122548170938,"lng":-82.751977422467,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"Columbus & New Albany, OH"},{"name":"Amazon AWS Prime Station / 2570 Beech Road","operator":"Amazon Web Services","owner":"Amazon Web Services","address":"2570 Beech Road Northwest","city":"Johnstown","state":"OH","zip":"43031","lat":40.096480991096,"lng":-82.7538777948,"yearOnline":"2017","powerMw":0,"sqft":310000,"type":"hyperscale","status":"operational","region":"Columbus & New Albany, OH"},{"name":"Amazon AWS Central Park / Hilliard 5109 Hayden Run","operator":"Amazon Web Services","owner":"Amazon Web Services","address":"5109 Hayden Run Road","city":"Hilliard","state":"OH","zip":"unknown","lat":40.062496228935,"lng":-83.135327553106,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Columbus & New Albany, OH"},{"name":"Amazon AWS Beech/Miller Road Campus","operator":"Amazon Web Services","owner":"Amazon Web Services","address":"Beech Road and Miller Road","city":"New Albany","state":"OH","zip":"unknown","lat":40.116277215284,"lng":-82.75250286393,"yearOnline":"unknown","powerMw":0,"sqft":1250000,"type":"hyperscale","status":"planned","region":"Columbus & New Albany, OH"},{"name":"Google Hub Prime / 2565 Harrison Rd","operator":"Google","owner":"Google","address":"2565 Harrison Rd","city":"Columbus","state":"OH","zip":"unknown","lat":39.968047930488,"lng":-83.070573325309,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"Columbus & New Albany, OH"},{"name":"Microsoft South Center / 3287 Beech Rd","operator":"Microsoft Azure","owner":"Microsoft","address":"3287 Beech Rd","city":"New Albany","state":"OH","zip":"unknown","lat":40.103804132848,"lng":-82.753523444119,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"unknown","region":"Columbus & New Albany, OH"},{"name":"Cogent Data Center - Columbus","operator":"Cogent Communications, Inc.","owner":"Cogent Communications, Inc.","address":"240 N 5th St, Suite 210","city":"Columbus","state":"OH","zip":"43215","lat":39.968,"lng":-82.997,"yearOnline":"unknown","powerMw":0.1,"sqft":5400,"type":"telecom","status":"operational","region":"Columbus & New Albany, OH"},{"name":"Cologix COL4","operator":"Cologix","owner":"Cologix","address":"7500 Alta View Blvd.","city":"Columbus","state":"OH","zip":"unknown","lat":40.120990710264,"lng":-83.000006956841,"yearOnline":"2024","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Columbus & New Albany, OH"},{"name":"165 Halsey Street carrier hotel / data center building","operator":"165 Halsey Street / multi-tenant carrier hotel","owner":"Tishman Real Estate","address":"165 Halsey Street","city":"Newark","state":"NJ","zip":"07102","lat":40.736834246626,"lng":-74.173357610718,"yearOnline":"unknown","powerMw":80,"sqft":1200000,"type":"telecom","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Equinix NY2","operator":"Equinix","owner":"Equinix","address":"275 Hartz Way","city":"Secaucus","state":"NJ","zip":"07094","lat":40.775189259381,"lng":-74.075447869055,"yearOnline":"unknown","powerMw":0,"sqft":131040,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Equinix NY4","operator":"Equinix","owner":"Equinix","address":"755 Secaucus Road","city":"Secaucus","state":"NJ","zip":"07094","lat":40.778574523971,"lng":-74.069358772684,"yearOnline":"unknown","powerMw":0,"sqft":151771,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Equinix NY5","operator":"Equinix","owner":"Equinix","address":"800 Secaucus Road","city":"Secaucus","state":"NJ","zip":"07094","lat":40.779084476993,"lng":-74.070633845467,"yearOnline":"unknown","powerMw":0,"sqft":129436,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Equinix NY6","operator":"Equinix","owner":"Equinix","address":"105 Enterprise Avenue South","city":"Secaucus","state":"NJ","zip":"07094","lat":40.776391933293,"lng":-74.071891633136,"yearOnline":"unknown","powerMw":0,"sqft":16393,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Equinix NY7","operator":"Equinix","owner":"Equinix","address":"5851 West Side Avenue","city":"North Bergen","state":"NJ","zip":"07047","lat":40.782021613477,"lng":-74.039754784494,"yearOnline":"unknown","powerMw":0,"sqft":71946,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"CoreSite NY2","operator":"CoreSite","owner":"CoreSite","address":"2 Emerson Lane","city":"Secaucus","state":"NJ","zip":"07094","lat":40.785118378213,"lng":-74.064117775281,"yearOnline":"unknown","powerMw":0,"sqft":256000,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"H5 Data Centers Secaucus Data Center","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"200B Meadowlands Parkway","city":"Secaucus","state":"NJ","zip":"07094","lat":40.784740861629,"lng":-74.076232047481,"yearOnline":"unknown","powerMw":0,"sqft":38000,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Centersquare NYC3 / Secaucus EWR5","operator":"Centersquare","owner":"unknown","address":"15 Enterprise Avenue North","city":"Secaucus","state":"NJ","zip":"07094","lat":40.786033426251,"lng":-74.067905170825,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Digital Realty EWR11","operator":"Digital Realty","owner":"Digital Realty Trust","address":"3 Corporate Place","city":"Piscataway","state":"NJ","zip":"08854","lat":40.554374403482,"lng":-74.458806337476,"yearOnline":"unknown","powerMw":0,"sqft":277000,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Digital Realty EWR12","operator":"Digital Realty","owner":"Digital Realty Trust","address":"365 S. Randolphville Road","city":"Piscataway","state":"NJ","zip":"08854","lat":40.553319358972,"lng":-74.460646213086,"yearOnline":"unknown","powerMw":0,"sqft":351000,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Digital Realty EWR19","operator":"Digital Realty","owner":"Digital Realty Trust","address":"1115 Centennial Avenue","city":"Piscataway","state":"NJ","zip":"08854","lat":40.551176656472,"lng":-74.459818345963,"yearOnline":"unknown","powerMw":36,"sqft":268000,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"QTS Piscataway 1","operator":"QTS","owner":"QTS","address":"101 Possumtown Road","city":"Piscataway","state":"NJ","zip":"08854","lat":40.556868257199,"lng":-74.488837192136,"yearOnline":"unknown","powerMw":65,"sqft":0,"type":"wholesale","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"DataBank EWR2 Piscataway Data Center","operator":"DataBank","owner":"DataBank","address":"25 Corporate Place South","city":"Piscataway","state":"NJ","zip":"08854","lat":40.549647700351,"lng":-74.455354959858,"yearOnline":"unknown","powerMw":3,"sqft":22590,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"QTS Jersey City 1 DC1","operator":"QTS","owner":"QTS","address":"95 Christopher Columbus Drive, 16th Floor","city":"Jersey City","state":"NJ","zip":"07302","lat":40.719402609072,"lng":-74.042820018576,"yearOnline":"unknown","powerMw":0,"sqft":120000,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Centersquare EWR1 Jersey City","operator":"Centersquare","owner":"unknown","address":"210 Hudson Street","city":"Jersey City","state":"NJ","zip":"07302","lat":40.718824105359,"lng":-74.033905701852,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Digital Realty EWR20","operator":"Digital Realty","owner":"Digital Realty Trust","address":"100 Delawanna Avenue","city":"Clifton","state":"NJ","zip":"07014","lat":40.829525201071,"lng":-74.126669868776,"yearOnline":"unknown","powerMw":3.95,"sqft":183000,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Digital Realty EWR21","operator":"Digital Realty","owner":"Digital Realty Trust","address":"2 Peekay Drive","city":"Clifton","state":"NJ","zip":"07014","lat":40.832496802002,"lng":-74.123886981754,"yearOnline":"unknown","powerMw":0,"sqft":214900,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"365 Data Centers Carlstadt","operator":"365 Data Centers","owner":"365 Data Centers","address":"410 Commerce Boulevard","city":"Carlstadt","state":"NJ","zip":"07072","lat":40.828073575544,"lng":-74.051152510643,"yearOnline":"unknown","powerMw":18,"sqft":200000,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"11:11 Systems Carlstadt Data Center","operator":"11:11 Systems","owner":"11:11 Systems","address":"777 Central Boulevard","city":"Carlstadt","state":"NJ","zip":"07072","lat":40.828431960527,"lng":-74.045062446933,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Centersquare Weehawken EWR2-A/B","operator":"Centersquare","owner":"unknown","address":"300 J. F. Kennedy Boulevard East","city":"Weehawken","state":"NJ","zip":"07086","lat":40.761277130042,"lng":-74.026432876061,"yearOnline":"unknown","powerMw":45.7,"sqft":199110,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Centersquare Weehawken EWR2-C/D","operator":"Centersquare","owner":"unknown","address":"1919 Park Avenue","city":"Weehawken","state":"NJ","zip":"07086","lat":40.760162511361,"lng":-74.02672085496,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Iron Mountain NJE-1","operator":"Iron Mountain","owner":"Iron Mountain","address":"3003 Woodbridge Avenue","city":"Edison","state":"NJ","zip":"08837","lat":40.529931107088,"lng":-74.327943023032,"yearOnline":"unknown","powerMw":30,"sqft":830000,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"365 Data Centers NJ1 Bridgewater","operator":"365 Data Centers","owner":"365 Data Centers","address":"999 Frontier Road","city":"Bridgewater","state":"NJ","zip":"08807","lat":40.581164964722,"lng":-74.574426877368,"yearOnline":"unknown","powerMw":2.3,"sqft":25000,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Rackspace NYC1 / New York Metro Data Center","operator":"Rackspace","owner":"Rackspace","address":"125 Belmont Drive","city":"Somerset","state":"NJ","zip":"unknown","lat":40.540835531441,"lng":-74.538133535005,"yearOnline":"unknown","powerMw":2.3,"sqft":56000,"type":"enterprise","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"QTS East Windsor 1","operator":"QTS","owner":"QTS","address":"159 Princeton-Hightstown Road","city":"East Windsor","state":"NJ","zip":"08520","lat":40.282543743918,"lng":-74.557772921448,"yearOnline":"unknown","powerMw":70,"sqft":560000,"type":"wholesale","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"BT Radianz 492 River Road Data Center","operator":"BT Radianz","owner":"GI Partners","address":"492 River Road","city":"Nutley","state":"NJ","zip":"07110","lat":40.821680010869,"lng":-74.135093944472,"yearOnline":"unknown","powerMw":0,"sqft":130000,"type":"enterprise","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"ON3 Data Center","operator":"Prism Capital Partners","owner":"Prism Capital Partners","address":"Cathedral Avenue & Kingsland Street","city":"Nutley","state":"NJ","zip":"07110","lat":40.829805725897,"lng":-74.153032497275,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"planned","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Cologix NNJ2","operator":"Cologix","owner":"Cologix","address":"9 Wing Drive","city":"Cedar Knolls","state":"NJ","zip":"07927","lat":40.831628199812,"lng":-74.445747475389,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Cologix NNJ3","operator":"Cologix","owner":"Cologix","address":"200 Webro Road","city":"Parsippany","state":"NJ","zip":"07054","lat":40.857852624313,"lng":-74.418223425211,"yearOnline":"unknown","powerMw":0,"sqft":120000,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Cologix NNJ4 disaster recovery facility","operator":"Cologix","owner":"Cologix","address":"16 Wing Drive","city":"Cedar Knolls","state":"NJ","zip":"07927","lat":40.831842720113,"lng":-74.446150603133,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Whitelabel ITSolutions Data Center","operator":"Whitelabel ITSolutions","owner":"Whitelabel ITSolutions","address":"150 Atlantic Street","city":"Hackensack","state":"NJ","zip":"07601","lat":40.882837819304,"lng":-74.048862231623,"yearOnline":"unknown","powerMw":4,"sqft":18000,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Garden State Backup Hackensack HQ","operator":"Garden State Backup","owner":"Carroll-Net, Inc.","address":"905 Main Street","city":"Hackensack","state":"NJ","zip":"07601","lat":40.908151465981,"lng":-74.041657849188,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Cogent Data Center - Hackensack","operator":"Cogent","owner":"Cogent","address":"280 State Street","city":"Hackensack","state":"NJ","zip":"07601","lat":40.887185175611,"lng":-74.042877259574,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"ICE US Liquidity Center (USLC)","operator":"Intercontinental Exchange, Inc. (ICE)","owner":"Intercontinental Exchange, Inc.","address":"1700 MacArthur Boulevard","city":"Mahwah","state":"NJ","zip":"07430","lat":41.080215862793,"lng":-74.153239726464,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Digital Realty EWR12","operator":"Digital Realty","owner":"Digital Realty","address":"365 South Randolphville Road","city":"Piscataway","state":"NJ","zip":"08854","lat":40.553319358972,"lng":-74.460646213086,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"Digital Fortress Piscataway","operator":"Digital Fortress","owner":"Digital Fortress","address":"201 B Centennial Ave","city":"Piscataway","state":"NJ","zip":"unknown","lat":40.542651239806,"lng":-74.497710630763,"yearOnline":"unknown","powerMw":0,"sqft":96500,"type":"colocation","status":"operational","region":"Northern New Jersey (Secaucus/Piscataway)"},{"name":"DataBank SLC1 - Downtown Salt Lake City","operator":"DataBank","owner":"DataBank","address":"179 E Social Hall Ave Suite #200","city":"Salt Lake City","state":"UT","zip":"84111","lat":40.768287257272,"lng":-111.88599361963,"yearOnline":"unknown","powerMw":0.5,"sqft":10610,"type":"colocation","status":"operational","region":"Salt Lake City, UT"},{"name":"DataBank SLC2 - Granite Point","operator":"DataBank","owner":"DataBank","address":"14944 S Pony Express Rd","city":"Bluffdale","state":"UT","zip":"84065","lat":40.478387070588,"lng":-111.904777558684,"yearOnline":"unknown","powerMw":3.25,"sqft":43820,"type":"colocation","status":"operational","region":"Salt Lake City, UT"},{"name":"DataBank SLC3 - Granite Point","operator":"DataBank","owner":"DataBank","address":"14926 S Pony Express Rd","city":"Bluffdale","state":"UT","zip":"84065","lat":40.478801678029,"lng":-111.904491884001,"yearOnline":"unknown","powerMw":7,"sqft":55780,"type":"colocation","status":"operational","region":"Salt Lake City, UT"},{"name":"DataBank SLC4 - Granite Point","operator":"DataBank","owner":"DataBank","address":"14860 S Pony Express Rd","city":"Bluffdale","state":"UT","zip":"84065","lat":40.480314843057,"lng":-111.903437507045,"yearOnline":"unknown","powerMw":3.67,"sqft":20740,"type":"colocation","status":"operational","region":"Salt Lake City, UT"},{"name":"DataBank SLC5 - Granite Point","operator":"DataBank","owner":"DataBank","address":"14850 S Pony Express Rd","city":"Bluffdale","state":"UT","zip":"84065","lat":40.480549618299,"lng":-111.903303578319,"yearOnline":"unknown","powerMw":10,"sqft":49180,"type":"colocation","status":"operational","region":"Salt Lake City, UT"},{"name":"DataBank SLC6 - Granite Point","operator":"DataBank","owner":"DataBank","address":"14870 S Pony Express Road","city":"Bluffdale","state":"UT","zip":"84065","lat":40.480078795584,"lng":-111.903580986907,"yearOnline":"2023","powerMw":22,"sqft":88250,"type":"colocation","status":"operational","region":"Salt Lake City, UT"},{"name":"Flexential Salt Lake City - Downtown","operator":"Flexential","owner":"Flexential","address":"572 South Delong St, Suite 100","city":"Salt Lake City","state":"UT","zip":"84104","lat":40.757112176,"lng":-111.953433068759,"yearOnline":"unknown","powerMw":2.65,"sqft":44550,"type":"colocation","status":"operational","region":"Salt Lake City, UT"},{"name":"Flexential Salt Lake City - Fair Park","operator":"Flexential","owner":"Flexential","address":"118 South 1000 West","city":"Salt Lake City","state":"UT","zip":"84104","lat":40.766922695661,"lng":-111.919766408301,"yearOnline":"unknown","powerMw":0.49,"sqft":22539,"type":"colocation","status":"operational","region":"Salt Lake City, UT"},{"name":"Flexential Salt Lake City - Millcreek","operator":"Flexential","owner":"Flexential","address":"3949 South 200 East, Suite B1","city":"Salt Lake City","state":"UT","zip":"84107","lat":40.686673260122,"lng":-111.885425981333,"yearOnline":"unknown","powerMw":1.92,"sqft":36000,"type":"colocation","status":"operational","region":"Salt Lake City, UT"},{"name":"Flexential Salt Lake City - South Valley","operator":"Flexential","owner":"Flexential","address":"7202 South Campus View Drive","city":"West Jordan","state":"UT","zip":"84084","lat":40.618997137588,"lng":-111.985013971238,"yearOnline":"unknown","powerMw":1.2,"sqft":30512,"type":"colocation","status":"operational","region":"Salt Lake City, UT"},{"name":"Flexential SLC08 / Presidents","operator":"Flexential","owner":"Flexential","address":"2282 Presidents Drive","city":"Salt Lake City","state":"UT","zip":"84120","lat":40.720736574449,"lng":-111.983315388404,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Salt Lake City, UT"},{"name":"EdgeConneX SLC01","operator":"EdgeConneX","owner":"EdgeConneX","address":"2302 South Presidents Drive","city":"West Valley City","state":"UT","zip":"unknown","lat":40.720179447247,"lng":-111.98331012927,"yearOnline":"unknown","powerMw":0,"sqft":25000,"type":"edge","status":"operational","region":"Salt Lake City, UT"},{"name":"Aligned SLC-01","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"3333 W 9000 S","city":"West Jordan","state":"UT","zip":"84088","lat":40.58767480405,"lng":-111.970219638996,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"Salt Lake City, UT"},{"name":"Novva Utah Data Center / West Jordan Campus","operator":"Novva Data Centers","owner":"Novva Data Centers","address":"6477 West Wells Park Road","city":"West Jordan","state":"UT","zip":"84081","lat":40.576949699516,"lng":-112.043463773637,"yearOnline":"unknown","powerMw":200,"sqft":1500000,"type":"wholesale","status":"operational","region":"Salt Lake City, UT"},{"name":"XMission Data Center","operator":"XMission","owner":"XMission","address":"51 East 400 South","city":"Salt Lake City","state":"UT","zip":"84111","lat":40.760709258384,"lng":-111.889391590668,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Salt Lake City, UT"},{"name":"Fibernet ORM1","operator":"Fibernet","owner":"Fibernet","address":"1145 South 800 East","city":"Orem","state":"UT","zip":"84097","lat":40.276203551036,"lng":-111.675980790697,"yearOnline":"unknown","powerMw":1.5,"sqft":40000,"type":"colocation","status":"operational","region":"Salt Lake City, UT"},{"name":"Lumen Salt Lake City 2","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"5035 Harold Gatty Drive","city":"Salt Lake City","state":"UT","zip":"84116","lat":40.781294674393,"lng":-112.013282394843,"yearOnline":"unknown","powerMw":7.5,"sqft":35826,"type":"telecom","status":"operational","region":"Salt Lake City, UT"},{"name":"Lumen Salt Lake City 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"3670 West 500 South","city":"Salt Lake City","state":"UT","zip":"unknown","lat":40.758067183447,"lng":-111.979188147361,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Salt Lake City, UT"},{"name":"Lumen Salt Lake City 3","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"572 South Delong Street","city":"Salt Lake City","state":"UT","zip":"84104","lat":40.757112176,"lng":-111.953433068759,"yearOnline":"unknown","powerMw":2.4,"sqft":0,"type":"telecom","status":"operational","region":"Salt Lake City, UT"},{"name":"Lumen Ogden 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"526 West 17th Street","city":"Ogden","state":"UT","zip":"84404","lat":41.236836213672,"lng":-111.98974570755,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Salt Lake City, UT"},{"name":"Verizon SZCXUT / 8871 South Sandy","operator":"Verizon","owner":"Verizon","address":"8871 Sandy Parkway","city":"Sandy","state":"UT","zip":"84070","lat":40.590362004416,"lng":-111.904157322875,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Salt Lake City, UT"},{"name":"Senawave Salt Lake City","operator":"Senawave","owner":"Senawave","address":"3047 Parkway Boulevard","city":"West Valley City","state":"UT","zip":"unknown","lat":40.712159811576,"lng":-111.964328981252,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Salt Lake City, UT"},{"name":"Oracle West Jordan","operator":"Oracle","owner":"Oracle","address":"6136 West 10120 South","city":"West Jordan","state":"UT","zip":"unknown","lat":40.567335291658,"lng":-112.039204757731,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Salt Lake City, UT"},{"name":"eBay Topaz SLC01","operator":"eBay","owner":"eBay","address":"6614 Crimson View Drive","city":"South Jordan","state":"UT","zip":"unknown","lat":40.561789944871,"lng":-112.05259151695,"yearOnline":"2010","powerMw":7.2,"sqft":240000,"type":"enterprise","status":"operational","region":"Salt Lake City, UT"},{"name":"Edged Energy Bluffdale, UT Data Center","operator":"Edged Energy","owner":"Edged Energy","address":"600 W 14600 S","city":"Bluffdale","state":"UT","zip":"unknown","lat":40.486208582205,"lng":-111.907104051005,"yearOnline":"unknown","powerMw":0,"sqft":318000,"type":"wholesale","status":"under-construction","region":"Salt Lake City, UT"},{"name":"Aligned SLC-03 Data Center","operator":"Aligned","owner":"Aligned","address":"3333 9000 S","city":"West Jordan","state":"UT","zip":"84088","lat":40.58767480405,"lng":-111.970219638996,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"planned","region":"Salt Lake City, UT"},{"name":"EdgeConneX SLC01","operator":"EdgeConneX","owner":"EdgeConneX","address":"2302 South Presidents Drive","city":"Salt Lake City","state":"UT","zip":"unknown","lat":40.720179447247,"lng":-111.98331012927,"yearOnline":"unknown","powerMw":0,"sqft":14230,"type":"edge","status":"operational","region":"Salt Lake City, UT"},{"name":"Google Henderson Data Center 1","operator":"Google","owner":"Google","address":"560 W Warm Springs Rd","city":"Henderson","state":"NV","zip":"89011","lat":36.055559805179,"lng":-115.01029588897,"yearOnline":"2020","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Switch LAS VEGAS 2","operator":"Switch","owner":"Switch","address":"2475 S Arden St","city":"Las Vegas","state":"NV","zip":"89104","lat":36.14453686793,"lng":-115.074309870812,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Switch LAS VEGAS 3","operator":"Switch","owner":"Switch","address":"4485 E Sahara Ave","city":"Las Vegas","state":"NV","zip":"89104","lat":36.14427042047,"lng":-115.076828219409,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Switch LAS VEGAS 4","operator":"Switch","owner":"Switch","address":"4495 E Sahara Ave","city":"Las Vegas","state":"NV","zip":"89104","lat":36.144270420456,"lng":-115.076614944236,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Switch LAS VEGAS 5","operator":"Switch","owner":"Switch","address":"4489 E Sahara Ave","city":"Las Vegas","state":"NV","zip":"89104","lat":36.144270420464,"lng":-115.076742909339,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Switch LAS VEGAS 6","operator":"Switch","owner":"Switch","address":"4475 E Sahara Ave","city":"Las Vegas","state":"NV","zip":"89104","lat":36.144270420483,"lng":-115.077041494582,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Switch LAS VEGAS 7","operator":"Switch","owner":"Switch","address":"7135 S Decatur Blvd","city":"Las Vegas","state":"NV","zip":"89118","lat":36.061533280655,"lng":-115.20788188438,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Switch LAS VEGAS 9","operator":"Switch","owner":"Switch","address":"7365 Lindell Rd","city":"Las Vegas","state":"NV","zip":"89139","lat":36.055468646521,"lng":-115.216431899047,"yearOnline":"unknown","powerMw":0,"sqft":471248,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Switch LAS VEGAS 10","operator":"Switch","owner":"Switch","address":"7375 Lindell Rd","city":"Las Vegas","state":"NV","zip":"89139","lat":36.055278720876,"lng":-115.216438896325,"yearOnline":"unknown","powerMw":0,"sqft":343436,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Switch LAS VEGAS 11","operator":"Switch","owner":"Switch","address":"7380 Lindell Rd","city":"Las Vegas","state":"NV","zip":"89139","lat":36.055161353954,"lng":-115.21630141273,"yearOnline":"unknown","powerMw":0,"sqft":381881,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Switch LAS VEGAS 14","operator":"Switch","owner":"Switch","address":"5680 Badura Ave","city":"Las Vegas","state":"NV","zip":"89118","lat":36.062854655548,"lng":-115.221444363428,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Switch LAS VEGAS 15","operator":"Switch","owner":"Switch","address":"5660 Badura Ave","city":"Las Vegas","state":"NV","zip":"89118","lat":36.063372282639,"lng":-115.220362580847,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Switch Armory Building 1","operator":"Switch","owner":"Switch","address":"9380 S Decatur Blvd","city":"Enterprise","state":"NV","zip":"89139","lat":36.019235884764,"lng":-115.207774293487,"yearOnline":"unknown","powerMw":0,"sqft":217100,"type":"colocation","status":"planned","region":"Reno / Las Vegas, NV"},{"name":"Flexential Las Vegas - North","operator":"Flexential","owner":"Flexential","address":"3330 E Lone Mountain Rd","city":"North Las Vegas","state":"NV","zip":"89081","lat":36.247038851752,"lng":-115.101392331111,"yearOnline":"2013","powerMw":9,"sqft":111240,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Flexential Las Vegas - Downtown","operator":"Flexential","owner":"Flexential","address":"304 East Carson Avenue, Suite 370","city":"Las Vegas","state":"NV","zip":"89101","lat":36.168961794648,"lng":-115.143619034259,"yearOnline":"unknown","powerMw":1.37,"sqft":33135,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"EdgeConneX LAS01 / EDCLAS01","operator":"EdgeConneX","owner":"EdgeConneX","address":"1541 Pama Lane","city":"Las Vegas","state":"NV","zip":"89119","lat":36.066290704636,"lng":-115.13073665754,"yearOnline":"unknown","powerMw":1,"sqft":24400,"type":"edge","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"DataBank LAS1","operator":"DataBank","owner":"DataBank","address":"7185 Pollock Dr","city":"Las Vegas","state":"NV","zip":"89119","lat":36.059050722287,"lng":-115.145573944692,"yearOnline":"unknown","powerMw":4,"sqft":28000,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Fiberhub LAS1","operator":"Fiberhub","owner":"Fiberhub","address":"1110 Palms Airport Dr, Suite 110","city":"Las Vegas","state":"NV","zip":"89119","lat":36.065555615119,"lng":-115.139412835566,"yearOnline":"unknown","powerMw":0,"sqft":7000,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"TPx Communications Las Vegas","operator":"TPx Communications","owner":"TPx Communications","address":"1181 Grier Dr","city":"Las Vegas","state":"NV","zip":"89119","lat":36.068450584862,"lng":-115.139450819832,"yearOnline":"unknown","powerMw":0,"sqft":32326,"type":"telecom","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"ColoXchange Las Vegas","operator":"ColoXchange","owner":"ColoXchange","address":"3422 Neeham Rd","city":"Las Vegas","state":"NV","zip":"89030","lat":36.23169616734,"lng":-115.102556314061,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Verizon / ColoVegas 2240 Corporate Cir","operator":"Verizon Enterprise","owner":"Verizon Enterprise","address":"2240 Corporate Cir","city":"Henderson","state":"NV","zip":"89074","lat":36.027608017363,"lng":-115.088859852564,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"ISP.Net DC1","operator":"ISP.Net","owner":"ISP.Net","address":"2595 Fremont Street","city":"Las Vegas","state":"NV","zip":"89104","lat":36.160034138264,"lng":-115.11905230594,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Lumen Las Vegas 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"1 Aerojet Way North","city":"North Las Vegas","state":"NV","zip":"89030","lat":36.23724941224,"lng":-115.116813702039,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Lumen Las Vegas 3","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"3944 E Silvestri Ln","city":"Las Vegas","state":"NV","zip":"89120","lat":36.076703733151,"lng":-115.088251675994,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Contegix Las Vegas","operator":"Contegix","owner":"Contegix","address":"3355 S Las Vegas Blvd","city":"Las Vegas","state":"NV","zip":"89109","lat":36.12259186217,"lng":-115.171160589958,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Roller Network Reno","operator":"Roller Network","owner":"Roller Network","address":"3545 Airway Dr","city":"Reno","state":"NV","zip":"89511","lat":39.469161897731,"lng":-119.770958031526,"yearOnline":"unknown","powerMw":0.9,"sqft":0,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"CENTRA Reno RNO1","operator":"CENTRA","owner":"CENTRA","address":"200 S Virginia St, 6th Floor MMR, Suite 100","city":"Reno","state":"NV","zip":"89501","lat":39.523248906597,"lng":-119.811751259799,"yearOnline":"unknown","powerMw":0.25,"sqft":0,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Lumen Reno 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"220 Gardner Street","city":"Reno","state":"NV","zip":"unknown","lat":39.524492082531,"lng":-119.827252376449,"yearOnline":"1999","powerMw":0,"sqft":12600,"type":"telecom","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"DataBank Las Vegas – 7185 Pollock Drive","operator":"DataBank","owner":"DataBank","address":"7185 Pollock Drive","city":"Las Vegas","state":"NV","zip":"unknown","lat":36.059050722287,"lng":-115.145573944692,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"EdgeConneX Las Vegas (EDCLAS01)","operator":"EdgeConneX","owner":"EdgeConneX","address":"1541 Pama Ln","city":"Las Vegas","state":"NV","zip":"unknown","lat":36.066290704636,"lng":-115.13073665754,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"Lumen Reno 1 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"220 Gardner St","city":"Reno","state":"NV","zip":"unknown","lat":39.524492082531,"lng":-119.827252376449,"yearOnline":"unknown","powerMw":0,"sqft":12600,"type":"telecom","status":"operational","region":"Reno / Las Vegas, NV"},{"name":"365 Data Centers New York","operator":"365 Data Centers","owner":"365 Data Centers","address":"65 Broadway","city":"New York","state":"NY","zip":"10006","lat":40.70690735196,"lng":-74.012480711664,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Cogent 33 Whitehall","operator":"Cogent Communications","owner":"Cogent Communications","address":"33 Whitehall Street","city":"New York","state":"NY","zip":"unknown","lat":40.703319705423,"lng":-74.012972213098,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"New York City, NY"},{"name":"CoreSite NY1 - New York City Data Center","operator":"CoreSite","owner":"American Tower","address":"32 Avenue of the Americas","city":"New York","state":"NY","zip":"10013","lat":40.719893257979,"lng":-74.005111099082,"yearOnline":"unknown","powerMw":0,"sqft":48000,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"DataBank LGA1 - Downtown New York City Data Center","operator":"DataBank","owner":"DataBank","address":"60 Hudson Street Suite #1903","city":"New York","state":"NY","zip":"10013","lat":40.718204555965,"lng":-74.008818801947,"yearOnline":"unknown","powerMw":0.74,"sqft":23940,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"DataBank LGA2 - Downtown New York City Data Center","operator":"DataBank","owner":"DataBank","address":"111 Eighth Ave Suite #311A","city":"New York","state":"NY","zip":"10011","lat":40.740907242657,"lng":-74.001767860726,"yearOnline":"unknown","powerMw":0.68,"sqft":10200,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Digital Realty JFK10 - 111 8th Avenue","operator":"Digital Realty","owner":"Digital Realty Trust","address":"111 8th Avenue","city":"New York","state":"NY","zip":"10011","lat":40.740907242657,"lng":-74.001767860726,"yearOnline":"unknown","powerMw":0,"sqft":109600,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Digital Realty JFK12 - 60 Hudson Street","operator":"Digital Realty","owner":"Digital Realty Trust","address":"60 Hudson Street","city":"New York","state":"NY","zip":"10013","lat":40.718204555965,"lng":-74.008818801947,"yearOnline":"unknown","powerMw":0,"sqft":164000,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Equinix NY9","operator":"Equinix","owner":"Equinix","address":"111 8th Ave","city":"New York","state":"NY","zip":"10011","lat":40.740907242657,"lng":-74.001767860726,"yearOnline":"unknown","powerMw":0,"sqft":35898,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"H5 Data Centers 325 Hudson","operator":"H5 Data Centers","owner":"H5 Data Centers / DivcoWest","address":"325 Hudson Street","city":"New York","state":"NY","zip":"unknown","lat":40.726820191082,"lng":-74.007477713226,"yearOnline":"unknown","powerMw":0,"sqft":225000,"type":"telecom","status":"operational","region":"New York City, NY"},{"name":"Lumen / Level 3 150 Varick","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"150 Varick Street","city":"New York","state":"NY","zip":"10012","lat":40.726367938328,"lng":-74.005591642327,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"New York City, NY"},{"name":"Lumen 32 Old Slip","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"32 Old Slip","city":"New York","state":"NY","zip":"unknown","lat":40.703530307471,"lng":-74.007905995232,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"New York City, NY"},{"name":"Lumen New York 7 / New York 2","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"601 W 26th Street","city":"New York","state":"NY","zip":"unknown","lat":40.750863656304,"lng":-74.005659891831,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"New York City, NY"},{"name":"NYI Broad Street Connect","operator":"NYI","owner":"JEMB Realty","address":"75 Broad Street","city":"New York","state":"NY","zip":"unknown","lat":40.704434593481,"lng":-74.011489636425,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"SDC Manhattan / Intergate.Manhattan","operator":"Sabey Data Centers","owner":"Sabey Data Centers","address":"375 Pearl Street","city":"New York","state":"NY","zip":"10038","lat":40.710858713827,"lng":-74.000694282859,"yearOnline":"unknown","powerMw":18,"sqft":1000000,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Verizon 15 W 37th","operator":"Verizon","owner":"Verizon","address":"15 W 37th Street","city":"New York","state":"NY","zip":"unknown","lat":40.750608846794,"lng":-73.983646250744,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"New York City, NY"},{"name":"Citigroup 390 Greenwich","operator":"Citigroup","owner":"Citigroup","address":"390 Greenwich Street","city":"New York","state":"NY","zip":"unknown","lat":40.720818513369,"lng":-74.010134493383,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"New York City, NY"},{"name":"DataVerge Brooklyn Data Center","operator":"DataVerge","owner":"DataVerge","address":"882 3rd Avenue","city":"Brooklyn","state":"NY","zip":"unknown","lat":40.65762641856,"lng":-74.00462766643,"yearOnline":"unknown","powerMw":0,"sqft":50000,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"1025Connect Westbury Data Center","operator":"1025Connect","owner":"1025Connect","address":"1025 Old Country Road","city":"Westbury","state":"NY","zip":"11590","lat":40.755124116992,"lng":-73.557567211289,"yearOnline":"unknown","powerMw":0,"sqft":200000,"type":"telecom","status":"operational","region":"New York City, NY"},{"name":"DataBank LGA3 - Orangeburg Data Center","operator":"DataBank","owner":"DataBank","address":"2000 Corporate Dr.","city":"Orangeburg","state":"NY","zip":"10962","lat":41.037330918988,"lng":-73.987852576165,"yearOnline":"2025","powerMw":20,"sqft":110000,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"1547 1 Ramland","operator":"1547 Critical Systems Realty","owner":"1547 Critical Systems Realty","address":"1 Ramland Road","city":"Orangeburg","state":"NY","zip":"unknown","lat":41.033548786462,"lng":-73.977097843085,"yearOnline":"unknown","powerMw":24,"sqft":232000,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"TierPoint Hawthorne - New York","operator":"TierPoint","owner":"TierPoint","address":"11 Skyline Dr","city":"Hawthorne","state":"NY","zip":"10528","lat":41.090952162227,"lng":-73.813834051475,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"TierPoint Hawthorne 2 - New York","operator":"TierPoint","owner":"TierPoint","address":"17 Skyline Drive","city":"Hawthorne","state":"NY","zip":"10532","lat":41.090915331869,"lng":-73.813860220413,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Crown Castle New York NY2","operator":"Crown Castle","owner":"Crown Castle","address":"360 Hamilton Ave","city":"White Plains","state":"NY","zip":"10601","lat":41.034507406849,"lng":-73.766680210157,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"New York City, NY"},{"name":"Cohere Westchester","operator":"Cohere Communications","owner":"Cohere Communications","address":"777 Old Saw Mill River Rd","city":"Tarrytown","state":"NY","zip":"10591","lat":41.080202568333,"lng":-73.844149524698,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Equinix NY1","operator":"Equinix","owner":"Equinix","address":"165 Halsey St, 8th Floor","city":"Newark","state":"NJ","zip":"07102","lat":40.736834246626,"lng":-74.173357610718,"yearOnline":"unknown","powerMw":0,"sqft":21775,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Equinix NY3","operator":"Equinix","owner":"Equinix","address":"600 Jefferson Avenue","city":"Secaucus","state":"NJ","zip":"07094","lat":40.774156122744,"lng":-74.065886774693,"yearOnline":"unknown","powerMw":0,"sqft":250853,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Equinix NY4","operator":"Equinix","owner":"Equinix","address":"755 Secaucus Rd","city":"Secaucus","state":"NJ","zip":"07094","lat":40.778574523971,"lng":-74.069358772684,"yearOnline":"unknown","powerMw":0,"sqft":151771,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Equinix NY5","operator":"Equinix","owner":"Equinix","address":"800 Secaucus Rd","city":"Secaucus","state":"NJ","zip":"07094","lat":40.779084476993,"lng":-74.070633845467,"yearOnline":"unknown","powerMw":0,"sqft":129436,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Equinix NY7","operator":"Equinix","owner":"Equinix","address":"5851 West Side Ave","city":"North Bergen","state":"NJ","zip":"07047","lat":40.782021613477,"lng":-74.039754784494,"yearOnline":"unknown","powerMw":0,"sqft":71946,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Evocative EWR1","operator":"Evocative","owner":"Evocative","address":"1 Enterprise Avenue North","city":"Secaucus","state":"NJ","zip":"07094","lat":40.788832462458,"lng":-74.066438196412,"yearOnline":"unknown","powerMw":10,"sqft":105000,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Centersquare EWR5-A Secaucus","operator":"Centersquare","owner":"Centersquare","address":"15 Enterprise Ave N","city":"Secaucus","state":"NJ","zip":"07094","lat":40.786033426251,"lng":-74.067905170825,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Digital Realty EWR11","operator":"Digital Realty","owner":"Digital Realty Trust","address":"3 Corporate Place","city":"Piscataway Township","state":"NJ","zip":"08854","lat":40.554374403482,"lng":-74.458806337476,"yearOnline":"unknown","powerMw":0,"sqft":277000,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Digital Realty EWR12","operator":"Digital Realty","owner":"Digital Realty Trust","address":"365 S. Randolphville Road","city":"Piscataway Township","state":"NJ","zip":"08854","lat":40.553319358972,"lng":-74.460646213086,"yearOnline":"unknown","powerMw":0,"sqft":351000,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Colocation America NJDC1","operator":"Colocation America","owner":"Colocation America","address":"100 Delawanna Ave","city":"Clifton","state":"NJ","zip":"07014","lat":40.829525201071,"lng":-74.126669868776,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Iron Mountain Data Centers NJE-1","operator":"Iron Mountain","owner":"Iron Mountain","address":"3003 Woodbridge Ave","city":"Edison","state":"NJ","zip":"08837","lat":40.529931107088,"lng":-74.327943023032,"yearOnline":"unknown","powerMw":30,"sqft":830000,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"QTS Jersey City 1 DC1","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"95 Christopher Columbus Dr, 16th Floor","city":"Jersey City","state":"NJ","zip":"07302","lat":40.719402609072,"lng":-74.042820018576,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"365 Data Centers Carlstadt","operator":"365 Data Centers","owner":"365 Data Centers","address":"410 Commerce Blvd","city":"Carlstadt","state":"NJ","zip":"07072","lat":40.828073575544,"lng":-74.051152510643,"yearOnline":"unknown","powerMw":0,"sqft":200000,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"365 Data Centers Bridgewater, NJ","operator":"365 Data Centers","owner":"365 Data Centers","address":"999 Frontier Rd","city":"Bridgewater Township","state":"NJ","zip":"08807","lat":40.581164964722,"lng":-74.574426877368,"yearOnline":"unknown","powerMw":2.3,"sqft":25000,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Centersquare / Csquare New York EWR2-C,D","operator":"Centersquare","owner":"Centersquare","address":"1919 Park Ave","city":"Weehawken","state":"NJ","zip":"07086","lat":40.760162511361,"lng":-74.02672085496,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"11:11 Systems Carlstadt","operator":"11:11 Systems","owner":"11:11 Systems","address":"777 Central Blvd","city":"Carlstadt","state":"NJ","zip":"07072","lat":40.828431960527,"lng":-74.045062446933,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Telehouse New York Teleport Data Center","operator":"Telehouse","owner":"Telehouse","address":"7 Teleport Dr","city":"Staten Island","state":"NY","zip":"10311","lat":40.60620489941,"lng":-74.171125261638,"yearOnline":"unknown","powerMw":0,"sqft":162000,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"DataVerge Brooklyn Data Center","operator":"DataVerge","owner":"DataVerge","address":"882 3rd Ave","city":"Brooklyn","state":"NY","zip":"unknown","lat":40.65762641856,"lng":-74.00462766643,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"New York City, NY"},{"name":"Digital Realty SEA10 / Westin Building Exchange","operator":"Digital Realty","owner":"Digital Realty","address":"2001 Sixth Avenue","city":"Seattle","state":"WA","zip":"98121","lat":47.614387209504,"lng":-122.338437296894,"yearOnline":"unknown","powerMw":0,"sqft":400400,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Equinix SE2","operator":"Equinix","owner":"Equinix","address":"2001 Sixth Ave, #350","city":"Seattle","state":"WA","zip":"98121","lat":47.614387209504,"lng":-122.338437296894,"yearOnline":"unknown","powerMw":0,"sqft":36382,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"DataBank SEA1 - Downtown Seattle","operator":"DataBank","owner":"Digital Realty","address":"2001 6th Ave, 12th Floor, Suite 12500","city":"Seattle","state":"WA","zip":"98121","lat":47.61439,"lng":-122.33888,"yearOnline":"unknown","powerMw":0,"sqft":5300,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Equinix SE3","operator":"Equinix","owner":"Equinix","address":"2020 Fifth Avenue","city":"Seattle","state":"WA","zip":"98121","lat":47.613947133091,"lng":-122.339385054483,"yearOnline":"unknown","powerMw":0,"sqft":36457,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"1505 5th / Lumen Seattle 3","operator":"Lumen / Level 3","owner":"Colliers International","address":"1505 5th Ave","city":"Seattle","state":"WA","zip":"98101","lat":47.61073168442,"lng":-122.335725172353,"yearOnline":"1999","powerMw":0,"sqft":24000,"type":"telecom","status":"operational","region":"Seattle, WA"},{"name":"Digital Fortress Downtown Seattle (SEA)","operator":"Digital Fortress","owner":"Digital Fortress","address":"3101 Western Avenue","city":"Seattle","state":"WA","zip":"98121","lat":47.617792446967,"lng":-122.35611308372,"yearOnline":"unknown","powerMw":6,"sqft":24000,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Digital Realty 301 Virginia / 1930 3rd Avenue planned data center","operator":"Digital Realty","owner":"Clise Properties","address":"301 Virginia St / 1930 3rd Ave","city":"Seattle","state":"WA","zip":"98101","lat":47.612402800029,"lng":-122.340775677328,"yearOnline":"unknown","powerMw":0,"sqft":380000,"type":"colocation","status":"planned","region":"Seattle, WA"},{"name":"KOMO Plaza / Fisher Plaza carrier hotel","operator":"GI Property Management","owner":"GI Property Management / GI Partners","address":"140 4th Avenue North","city":"Seattle","state":"WA","zip":"98109","lat":47.619057374147,"lng":-122.34881237549,"yearOnline":"unknown","powerMw":16,"sqft":294000,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Evocative SEA1","operator":"Evocative","owner":"GI Partners","address":"140 4th Avenue North, 2nd Floor","city":"Seattle","state":"WA","zip":"98109","lat":47.619057374147,"lng":-122.34881237549,"yearOnline":"unknown","powerMw":4,"sqft":40000,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"TierPoint Seattle at KOMO Plaza","operator":"TierPoint","owner":"GI Partners","address":"140 4th Avenue North, Suites 310, 330, 360, 600","city":"Seattle","state":"WA","zip":"98109","lat":47.619057374147,"lng":-122.34881237549,"yearOnline":"2007","powerMw":2.503,"sqft":22500,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"H5 Data Centers Seattle","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"1000 Denny Way","city":"Seattle","state":"WA","zip":"98109","lat":47.61905,"lng":-122.336337,"yearOnline":"2017","powerMw":0,"sqft":293000,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Lumen Seattle at 1000 Denny Way","operator":"Lumen","owner":"H5 Data Centers","address":"1000 Denny Way, 4th Floor","city":"Seattle","state":"WA","zip":"98109","lat":47.618584510252,"lng":-122.337130853509,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Seattle, WA"},{"name":"Equinix SE4","operator":"Equinix","owner":"Equinix","address":"6906 South 204th Street","city":"Kent","state":"WA","zip":"98032","lat":47.42147461,"lng":-122.247448,"yearOnline":"1999","powerMw":12,"sqft":108336,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"EdgeConneX SEA01 / EDCSEA01","operator":"EdgeConneX","owner":"EdgeConneX","address":"3425 S 116th St, Building 6, Suite 133","city":"Tukwila","state":"WA","zip":"98168","lat":47.499153605725,"lng":-122.288848531193,"yearOnline":"2014","powerMw":4.5,"sqft":47000,"type":"edge","status":"operational","region":"Seattle, WA"},{"name":"SDC Seattle - Building A","operator":"Sabey Data Centers","owner":"Sabey Data Center Properties LLC","address":"3411 S 120th Pl","city":"Tukwila","state":"WA","zip":"98168","lat":47.49487,"lng":-122.2882,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"SDC Seattle - Building B","operator":"Sabey Data Centers","owner":"Sabey Data Center Properties LLC","address":"3311 S 120th Pl","city":"Tukwila","state":"WA","zip":"98168","lat":47.49343,"lng":-122.28884,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"SDC Seattle - Building C","operator":"Sabey Data Centers","owner":"Sabey Data Center Properties LLC","address":"3333 S 120th Pl","city":"Tukwila","state":"WA","zip":"98168","lat":47.49343,"lng":-122.28884,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"SDC Seattle - Building D","operator":"Sabey Data Centers","owner":"Sabey Data Center Properties LLC","address":"3433 S 120th Pl","city":"Tukwila","state":"WA","zip":"98168","lat":47.49343,"lng":-122.28884,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"SDC Seattle - Building E","operator":"Sabey Data Centers","owner":"Sabey Data Center Properties LLC","address":"3355 35th Ave S","city":"Tukwila","state":"WA","zip":"98168","lat":47.49343,"lng":-122.28884,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"DataBank SEA2 - SeaTac","operator":"DataBank","owner":"Sabey Data Center Properties LLC","address":"3311 South 120th Place, Suite #120","city":"Tukwila","state":"WA","zip":"98168","lat":47.49503,"lng":-122.29059,"yearOnline":"unknown","powerMw":3,"sqft":28240,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"CherryRoad SEA2","operator":"CherryRoad Technologies","owner":"Sabey Data Center Properties LLC","address":"3311 South 120th Place","city":"Tukwila","state":"WA","zip":"98168","lat":47.495427879264,"lng":-122.291342196975,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Centersquare Seattle SEA1-A","operator":"Centersquare Data Centers","owner":"Centersquare","address":"12301 Tukwila International Boulevard","city":"Tukwila","state":"WA","zip":"98168","lat":47.492315006984,"lng":-122.292564751534,"yearOnline":"unknown","powerMw":17.5,"sqft":269889,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Centersquare Seattle SEA1-B","operator":"Centersquare Data Centers","owner":"Centersquare","address":"3355 South 120th Place","city":"Tukwila","state":"WA","zip":"98168","lat":47.495421465035,"lng":-122.290623812124,"yearOnline":"unknown","powerMw":0,"sqft":80891,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Centersquare SEA2 Tukwila Data Center Campus","operator":"Centersquare Data Centers","owner":"Centersquare","address":"6101 South 180th Street","city":"Tukwila","state":"WA","zip":"98188","lat":47.441313088343,"lng":-122.258105443777,"yearOnline":"unknown","powerMw":8,"sqft":72000,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Digital Fortress South Seattle / TUK","operator":"Digital Fortress","owner":"Digital Fortress","address":"12101 Tukwila International Boulevard, Suite 410","city":"Tukwila","state":"WA","zip":"98168","lat":47.495853074052,"lng":-122.294760888402,"yearOnline":"unknown","powerMw":4,"sqft":45600,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Zayo Seattle, Washington","operator":"Zayo","owner":"Intergate.West / Sabey","address":"12201 Tukwila International Boulevard, Suite 200","city":"Tukwila","state":"WA","zip":"98168","lat":47.49413635878,"lng":-122.293584953755,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Seattle, WA"},{"name":"Wowrack Tukwila","operator":"Wowrack","owner":"Intergate.West / Sabey","address":"12201 Tukwila International Blvd, Suite 100","city":"Tukwila","state":"WA","zip":"98168","lat":47.49413635878,"lng":-122.293584953755,"yearOnline":"unknown","powerMw":0,"sqft":8000,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"ColoCrossing Seattle","operator":"ColoCrossing","owner":"Intergate.West / Sabey","address":"12201 Tukwila International Blvd","city":"Tukwila","state":"WA","zip":"98168","lat":47.49413635878,"lng":-122.293584953755,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Zenlayer SEA1 Seattle","operator":"Zenlayer","owner":"Sabey Data Center Properties LLC","address":"3433 South 120th Place","city":"Tukwila","state":"WA","zip":"98168","lat":47.495410094355,"lng":-122.289350311707,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Pacific Internet South Datacenter","operator":"Pacific Internet / WORLDLINK","owner":"Pacific Internet / WORLDLINK","address":"1300 SW 7th St, Suite 112","city":"Tukwila","state":"WA","zip":"98057","lat":47.474035727781,"lng":-122.199804984688,"yearOnline":"unknown","powerMw":1,"sqft":0,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Digital Fortress North Seattle / ByteGrid Seattle","operator":"Digital Fortress","owner":"Digital Fortress","address":"4200 194th St SW","city":"Lynnwood","state":"WA","zip":"98036","lat":47.822845502821,"lng":-122.289277406248,"yearOnline":"unknown","powerMw":6,"sqft":0,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Centersquare SEA3-A Lynnwood","operator":"Centersquare Data Centers","owner":"Centersquare","address":"17300 Highway 99","city":"Lynnwood","state":"WA","zip":"98037","lat":47.841952447048,"lng":-122.297215781198,"yearOnline":"unknown","powerMw":1.8,"sqft":21371,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Lumen Bothell / tw telecom Bothell","operator":"Lumen","owner":"Lumen","address":"22722 29th Drive SE","city":"Bothell","state":"WA","zip":"98021","lat":47.79212465016,"lng":-122.196070357345,"yearOnline":"unknown","powerMw":0.16,"sqft":0,"type":"telecom","status":"operational","region":"Seattle, WA"},{"name":"WORLDLINK Seattle Data Center #1","operator":"WORLDLINK","owner":"WORLDLINK","address":"22522 29th Dr. SE","city":"Bothell","state":"WA","zip":"98021","lat":47.794404345529,"lng":-122.196108653127,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Wowrack Bothell / Bothell Data Services","operator":"Wowrack","owner":"Bothell Data Services LLC","address":"3301 Monte Villa Pkwy","city":"Bothell","state":"WA","zip":"98021","lat":47.778177689843,"lng":-122.191248975195,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Colocation Northwest - Redmond","operator":"Colocation Northwest","owner":"Colocation Northwest","address":"2520 152nd Ave NE","city":"Redmond","state":"WA","zip":"98052","lat":47.63265521983,"lng":-122.137608608606,"yearOnline":"unknown","powerMw":0.275,"sqft":2500,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"ISOMEDIA Redmond Data Center","operator":"ISOMEDIA","owner":"ISOMEDIA","address":"2400 152nd Ave NE","city":"Redmond","state":"WA","zip":"98052","lat":47.631960764645,"lng":-122.137606746326,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Microsoft Redmond Ridge / Edge Point","operator":"Microsoft","owner":"Microsoft","address":"23050 NE 102 St","city":"Redmond","state":"WA","zip":"unknown","lat":47.689967698489,"lng":-122.033050970416,"yearOnline":"2009","powerMw":17,"sqft":57000,"type":"enterprise","status":"operational","region":"Seattle, WA"},{"name":"Colocation Northwest / ISOMEDIA Bellevue Data Center","operator":"Colocation Northwest / ISOMEDIA","owner":"Colocation Northwest","address":"15400 SE 30th Place","city":"Bellevue","state":"WA","zip":"98007","lat":47.582474558444,"lng":-122.134942080866,"yearOnline":"2018","powerMw":1,"sqft":4300,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Cogent Seattle Office & Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"32275 32nd Ave S","city":"Federal Way","state":"WA","zip":"98001","lat":47.312569594246,"lng":-122.292727334694,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Seattle, WA"},{"name":"Cogent Data Center - Tacoma","operator":"Cogent Communications","owner":"Cogent Communications","address":"2210 S 35th St","city":"Tacoma","state":"WA","zip":"98409","lat":47.228175122351,"lng":-122.466417334775,"yearOnline":"unknown","powerMw":2.3,"sqft":0,"type":"telecom","status":"operational","region":"Seattle, WA"},{"name":"Perkins Building / Colocation Northwest Tacoma / Optic Fusion","operator":"Colocation Northwest / Optic Fusion","owner":"Perkins Building owners","address":"1101 A Street, Suite 400","city":"Tacoma","state":"WA","zip":"98402","lat":47.253483557447,"lng":-122.437058840358,"yearOnline":"1907","powerMw":0.8,"sqft":88000,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"ScaleMatrix Seattle / Centeris South Hill SH1","operator":"ScaleMatrix","owner":"Centeris","address":"1023 39th Ave SE","city":"Puyallup","state":"WA","zip":"98374","lat":47.154824761578,"lng":-122.280321294395,"yearOnline":"2019","powerMw":50,"sqft":3000,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Centeris South Hill SH2","operator":"Centeris","owner":"Centeris","address":"1015 39th Ave SE","city":"Puyallup","state":"WA","zip":"98374","lat":47.154836314448,"lng":-122.280778786067,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"Seattle, WA"},{"name":"Equinix SE4 Kent Data Center","operator":"Equinix","owner":"Equinix","address":"6906 S 204th St","city":"Kent","state":"WA","zip":"98032","lat":47.419438543187,"lng":-122.248365891048,"yearOnline":"unknown","powerMw":12,"sqft":108336,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Lumen Seattle 3 / Seattle 1 Data Center","operator":"Lumen","owner":"Lumen","address":"1505 5th Avenue","city":"Seattle","state":"WA","zip":"98101","lat":47.61073168442,"lng":-122.335725172353,"yearOnline":"unknown","powerMw":999,"sqft":54898,"type":"telecom","status":"operational","region":"Seattle, WA"},{"name":"Lumen Seattle 4 Data Center","operator":"Lumen","owner":"Lumen","address":"223 Taylor Ave N","city":"Seattle","state":"WA","zip":"unknown","lat":47.620026905064,"lng":-122.346391838811,"yearOnline":"unknown","powerMw":999,"sqft":2000,"type":"telecom","status":"operational","region":"Seattle, WA"},{"name":"Verizon Seattle 1100 2nd Data Center","operator":"Verizon","owner":"Verizon","address":"1100 Second Avenue","city":"Seattle","state":"WA","zip":"unknown","lat":47.6059512544,"lng":-122.335756054978,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"telecom","status":"operational","region":"Seattle, WA"},{"name":"Centersquare Seattle SEA3-A Lynnwood Data Center","operator":"Centersquare","owner":"Centersquare","address":"17300 Hwy 99","city":"Lynnwood","state":"WA","zip":"98037","lat":47.841952447048,"lng":-122.297215781198,"yearOnline":"unknown","powerMw":1.6,"sqft":103920,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"TierPoint Seattle Data Center","operator":"TierPoint","owner":"TierPoint","address":"140 Fourth Ave N","city":"Seattle","state":"WA","zip":"98109","lat":47.619057374147,"lng":-122.34881237549,"yearOnline":"unknown","powerMw":2,"sqft":999,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Colocation Northwest Bellevue Data Center","operator":"Colocation Northwest","owner":"Colocation Northwest","address":"3181 156th Ave SE","city":"Bellevue","state":"WA","zip":"98007","lat":47.581256772438,"lng":-122.135406457168,"yearOnline":"unknown","powerMw":1,"sqft":4300,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Optic Fusion Tacoma Colocation / Perkins Building","operator":"Optic Fusion","owner":"Optic Fusion","address":"1101 A St, Suite 400","city":"Tacoma","state":"WA","zip":"unknown","lat":47.253483557447,"lng":-122.437058840358,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Bothell Data Services / Kanobe LLC Bothell Data Center","operator":"Kanobe LLC","owner":"Kanobe LLC","address":"3301 Monte Villa Parkway, Suite 125","city":"Bothell","state":"WA","zip":"98021","lat":47.778177689843,"lng":-122.191248975195,"yearOnline":"unknown","powerMw":1.5,"sqft":999,"type":"colocation","status":"operational","region":"Seattle, WA"},{"name":"Digital Realty CLT10 (113 North Myers)","operator":"Digital Realty","owner":"Digital Realty","address":"113 North Myers Street","city":"Charlotte","state":"NC","zip":"28202","lat":35.221402074623,"lng":-80.835946426923,"yearOnline":"unknown","powerMw":0,"sqft":29200,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Lumen Charlotte 2","operator":"Lumen","owner":"Lumen","address":"112 N. Myers Street","city":"Charlotte","state":"NC","zip":"28202","lat":35.221314488167,"lng":-80.83585597779,"yearOnline":"unknown","powerMw":0,"sqft":20000,"type":"telecom","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"TierPoint Charlotte – North Myers","operator":"TierPoint","owner":"Mapletree Redwood Data Centre Trust","address":"125 North Myers Street","city":"Charlotte","state":"NC","zip":"28202","lat":35.221491290993,"lng":-80.83581697572,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"CENTRA Charlotte CLT1 (Carrier Hotel)","operator":"CENTRA (Deep Edge Realty)","owner":"Deep Edge Realty","address":"701 E Trade St","city":"Charlotte","state":"NC","zip":"28202","lat":35.222094544575,"lng":-80.836970591738,"yearOnline":"unknown","powerMw":5,"sqft":0,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Digital Realty CLT12 (731 E Trade St)","operator":"Digital Realty","owner":"Digital Realty","address":"731 East Trade Street","city":"Charlotte","state":"NC","zip":"28202","lat":35.221549597453,"lng":-80.83634433268,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Digital Realty – 725 E Trade (planned)","operator":"Digital Realty","owner":"Digital Realty","address":"725 East Trade Street","city":"Charlotte","state":"NC","zip":"28202","lat":35.221570467911,"lng":-80.836367674636,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"planned","region":"Charlotte & Raleigh, NC"},{"name":"Lumen Charlotte 1 (Rose Lake)","operator":"Lumen","owner":"Lumen","address":"4021 Rose Lake Drive","city":"Charlotte","state":"NC","zip":"unknown","lat":35.178417226219,"lng":-80.927344107743,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Lumen Charlotte 4","operator":"Lumen","owner":"Lumen","address":"5001 Airport Center Pkwy","city":"Charlotte","state":"NC","zip":"28208","lat":35.221907146975,"lng":-80.920347721546,"yearOnline":"unknown","powerMw":0,"sqft":19200,"type":"telecom","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Segra Charlotte Two (DC74)","operator":"Segra","owner":"Segra","address":"3101 International Airport Drive","city":"Charlotte","state":"NC","zip":"28208","lat":35.193342788378,"lng":-80.937982290183,"yearOnline":"unknown","powerMw":2.5,"sqft":28000,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"H5 Charlotte Data Center","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"10105 David Taylor Drive","city":"Charlotte","state":"NC","zip":"28262","lat":35.333592903241,"lng":-80.76354820182,"yearOnline":"unknown","powerMw":3.3,"sqft":207000,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"H5 Charlotte Expansion (adjacent parcel)","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"Adjacent to 10105 David Taylor Drive","city":"Charlotte","state":"NC","zip":"28262","lat":35.333592903241,"lng":-80.76354820182,"yearOnline":"unknown","powerMw":20,"sqft":200000,"type":"wholesale","status":"planned","region":"Charlotte & Raleigh, NC"},{"name":"Flexential Charlotte – South","operator":"Flexential","owner":"Flexential","address":"8910 Lenox Pointe Drive","city":"Charlotte","state":"NC","zip":"unknown","lat":35.134675316339,"lng":-80.936590428255,"yearOnline":"unknown","powerMw":2.36,"sqft":66666,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"NaviSite Charlotte","operator":"NaviSite","owner":"NaviSite","address":"1612 Cross Beam Drive","city":"Charlotte","state":"NC","zip":"28217","lat":35.179705289461,"lng":-80.92637172487,"yearOnline":"2009","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"TierPoint Charlotte – Center Park","operator":"TierPoint","owner":"Mapletree Redwood Data Centre Trust","address":"1805 Center Park Drive","city":"Charlotte","state":"NC","zip":"28217","lat":35.174317145813,"lng":-80.927470995297,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Spectrum Charlotte National Data Center","operator":"Charter Communications / Spectrum","owner":"Charter Communications / Spectrum","address":"7910 Crescent Executive Dr","city":"Charlotte","state":"NC","zip":"unknown","lat":35.14370776108,"lng":-80.917484048319,"yearOnline":"unknown","powerMw":15,"sqft":178000,"type":"enterprise","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"GIGA CLT-1","operator":"GIGA Data Centers","owner":"GIGA Data Centers","address":"1035 Mecklenburg Hwy","city":"Mooresville","state":"NC","zip":"unknown","lat":35.562737276301,"lng":-80.831485214037,"yearOnline":"2019","powerMw":60,"sqft":165000,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"PowerHouse Charlotte (campus)","operator":"PowerHouse Data Centers","owner":"Town Lane / PowerHouse Data Centers JV","address":"12899 Moores Chapel Road","city":"Charlotte","state":"NC","zip":"unknown","lat":35.251900509669,"lng":-81.001455989579,"yearOnline":"unknown","powerMw":0,"sqft":2500000,"type":"hyperscale","status":"planned","region":"Charlotte & Raleigh, NC"},{"name":"QTS York County (Charlotte market)","operator":"QTS","owner":"QTS","address":"Hands Mill Highway and Campbell Road","city":"York County","state":"SC","zip":"unknown","lat":35.045903166789,"lng":-81.100198191398,"yearOnline":"unknown","powerMw":0,"sqft":5300000,"type":"hyperscale","status":"planned","region":"Charlotte & Raleigh, NC"},{"name":"Flexential Raleigh Data Center","operator":"Flexential","owner":"Mapletree Redwood Data Centre Trust","address":"5150 McCrimmon Parkway #423","city":"Morrisville","state":"NC","zip":"27560","lat":35.849010481759,"lng":-78.828751012524,"yearOnline":"unknown","powerMw":4.31,"sqft":99976,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"TierPoint Raleigh – RAL (Departure Dr.)","operator":"TierPoint","owner":"TierPoint","address":"5301 Departure Drive","city":"Raleigh","state":"NC","zip":"27615","lat":35.854410719692,"lng":-78.595786042925,"yearOnline":"unknown","powerMw":10,"sqft":0,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"LightEdge – Raleigh","operator":"LightEdge","owner":"LightEdge","address":"8020 Arco Corporate Drive Suite 310","city":"Raleigh","state":"NC","zip":"27617","lat":35.90734,"lng":-78.77814,"yearOnline":"2017","powerMw":0,"sqft":11978,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Segra Raleigh","operator":"Segra","owner":"Segra","address":"2100 Garner Station Blvd.","city":"Raleigh","state":"NC","zip":"27603","lat":35.723683286492,"lng":-78.662403268795,"yearOnline":"unknown","powerMw":6,"sqft":48600,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"American Tower RA1 – Raleigh Edge Data Center","operator":"American Tower / CoreSite","owner":"American Tower / CoreSite","address":"6011 Chapel Hill Road","city":"Raleigh","state":"NC","zip":"27607","lat":35.789192717902,"lng":-78.725314672703,"yearOnline":"unknown","powerMw":1,"sqft":0,"type":"edge","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Cisco RTP Data Center","operator":"Cisco Systems","owner":"Cisco Systems","address":"7025-1 Kit Creek Rd","city":"Morrisville","state":"NC","zip":"27709","lat":35.85558110984,"lng":-78.872617858347,"yearOnline":"unknown","powerMw":0,"sqft":19200,"type":"enterprise","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"NetActuate Cary Data Center","operator":"NetActuate","owner":"NetActuate","address":"500 Gregson Dr","city":"Cary","state":"NC","zip":"27511","lat":35.732922496954,"lng":-78.811058224228,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"CyrusOne DUR1 – Raleigh-Durham I","operator":"CyrusOne","owner":"CyrusOne","address":"2223 NE Creek Pkwy","city":"Durham","state":"NC","zip":"27713","lat":35.930622393218,"lng":-78.883852674198,"yearOnline":"unknown","powerMw":50,"sqft":420000,"type":"wholesale","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"MCNC – Research Triangle Park","operator":"MCNC","owner":"MCNC","address":"3021 East Cornwallis Road, Building 3","city":"Durham","state":"NC","zip":"27713","lat":35.903417303696,"lng":-78.857259058786,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Caronet Charlotte Data Center (Center Park)","operator":"Caronet","owner":"Caronet","address":"900 Center Park Drive","city":"Charlotte","state":"NC","zip":"28217","lat":35.173324,"lng":-80.925975,"yearOnline":"unknown","powerMw":5000,"sqft":999999999,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Caronet Charlotte Data Center (XB)","operator":"Caronet","owner":"Caronet","address":"1960 Cross Beam Drive, Suite 100","city":"Charlotte","state":"NC","zip":"28217","lat":35.178451160514,"lng":-80.931913682859,"yearOnline":"unknown","powerMw":5000,"sqft":999999999,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"1400 Cross Beam Drive Data Centre (Altos Charlotte NC)","operator":"Altos","owner":"Mapletree Industrial Trust","address":"1400 Cross Beam Drive","city":"Charlotte","state":"NC","zip":"unknown","lat":35.179637427419,"lng":-80.922837137629,"yearOnline":"unknown","powerMw":5000,"sqft":999999999,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Charlotte Colocation Center Charlotte Data Center","operator":"Charlotte Colocation Center","owner":"Charlotte Colocation Center","address":"5821 Fairview Road","city":"Charlotte","state":"NC","zip":"unknown","lat":35.151887364675,"lng":-80.842865235194,"yearOnline":"unknown","powerMw":5000,"sqft":50000,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Lumen Raleigh 2","operator":"Lumen","owner":"Lumen","address":"1918 Wake Forest Road","city":"Raleigh","state":"NC","zip":"27608","lat":35.806294658242,"lng":-78.624611256039,"yearOnline":"unknown","powerMw":5000,"sqft":8000,"type":"telecom","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Lumen Raleigh 3","operator":"Lumen","owner":"Lumen","address":"3440 Tarheel Drive","city":"Raleigh","state":"NC","zip":"unknown","lat":35.826110413649,"lng":-78.609512155157,"yearOnline":"unknown","powerMw":5000,"sqft":8000,"type":"telecom","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Segra Raleigh Data Center","operator":"Segra","owner":"Segra","address":"2100 Garner Station Boulevard","city":"Raleigh","state":"NC","zip":"27603","lat":35.723683286492,"lng":-78.662403268795,"yearOnline":"unknown","powerMw":5000,"sqft":50000,"type":"telecom","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Cogent Data Center - Raleigh","operator":"Cogent Communications","owner":"Cogent Communications","address":"608 W Hargett Street","city":"Raleigh","state":"NC","zip":"27603","lat":35.778623217569,"lng":-78.648136764779,"yearOnline":"unknown","powerMw":5000,"sqft":999999999,"type":"telecom","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Celito Data Center","operator":"Celito Communications","owner":"Celito Communications","address":"1400 Sunday Drive","city":"Raleigh","state":"NC","zip":"27607","lat":35.798878350541,"lng":-78.730737442095,"yearOnline":"unknown","powerMw":5000,"sqft":999999999,"type":"colocation","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"CyrusOne DUR1","operator":"CyrusOne","owner":"CyrusOne","address":"2223 NE Creek Parkway","city":"Durham","state":"NC","zip":"27713","lat":35.930622393218,"lng":-78.883852674198,"yearOnline":"unknown","powerMw":5000,"sqft":420000,"type":"wholesale","status":"operational","region":"Charlotte & Raleigh, NC"},{"name":"Data Suites","operator":"Data Suites","owner":"Data Suites","address":"1020 W College St","city":"Murfreesboro","state":"TN","zip":"37129","lat":35.855518870227,"lng":-86.404830987399,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Cogent Data Center - Nashville","operator":"Cogent Communications","owner":"Cogent Communications","address":"338 Woodycrest Ave","city":"Nashville","state":"TN","zip":"37210","lat":36.132140223801,"lng":-86.752261484587,"yearOnline":"unknown","powerMw":2.5,"sqft":27502,"type":"telecom","status":"operational","region":"Nashville & Memphis, TN"},{"name":"365 Nashville (NA1)","operator":"365 Data Centers","owner":"365 Data Centers","address":"147 4th Ave N, 8th Floor","city":"Nashville","state":"TN","zip":"37219","lat":36.162939610647,"lng":-86.778548821745,"yearOnline":"unknown","powerMw":0.5,"sqft":19700,"type":"colocation","status":"operational","region":"Nashville & Memphis, TN"},{"name":"H5 Data Centers Nashville","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"211 Commerce St","city":"Nashville","state":"TN","zip":"37201","lat":36.162991992299,"lng":-86.776502165639,"yearOnline":"unknown","powerMw":0,"sqft":19700,"type":"colocation","status":"operational","region":"Nashville & Memphis, TN"},{"name":"DataBank - 209 10th Ave South","operator":"DataBank","owner":"DataBank","address":"209 10th Ave South","city":"Nashville","state":"TN","zip":"37203","lat":36.155449352484,"lng":-86.782485950388,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Nashville & Memphis, TN"},{"name":"EdgeConneX Nashville (NAS01 / EDCNAS01)","operator":"EdgeConneX","owner":"EdgeConneX","address":"1841 Air Lane Dr, Building 3","city":"Nashville","state":"TN","zip":"37210","lat":36.144981521035,"lng":-86.703419562563,"yearOnline":"unknown","powerMw":0,"sqft":42500,"type":"edge","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Lumen Nashville 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"2990 Sidco Drive","city":"Nashville","state":"TN","zip":"37204","lat":36.10261744479,"lng":-86.756168201145,"yearOnline":"unknown","powerMw":0,"sqft":8456,"type":"telecom","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Lumen Nashville 2","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"2530 Perimeter Place Drive","city":"Nashville","state":"TN","zip":"37214","lat":36.147407026701,"lng":-86.681366548024,"yearOnline":"unknown","powerMw":0,"sqft":30400,"type":"telecom","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Lumen Nashville 3","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"2208 9th Avenue North","city":"Nashville","state":"TN","zip":"37208","lat":36.188601368813,"lng":-86.804129126267,"yearOnline":"unknown","powerMw":0,"sqft":40000,"type":"telecom","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Lumen Berry Hill / Nashville 4","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"708 Melrose Ave","city":"Nashville","state":"TN","zip":"0","lat":36.119800582808,"lng":-86.761692062621,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Verizon Nashville / XO Nashville","operator":"Verizon","owner":"Verizon","address":"101 Molloy Street, Suite 300","city":"Nashville","state":"TN","zip":"0","lat":36.159316715635,"lng":-86.772631567011,"yearOnline":"unknown","powerMw":4.53,"sqft":0,"type":"telecom","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Windstream Nashville","operator":"Windstream","owner":"Windstream","address":"940 3rd Ave North","city":"Nashville","state":"TN","zip":"0","lat":36.172962192447,"lng":-86.783319347667,"yearOnline":"unknown","powerMw":0,"sqft":7200,"type":"telecom","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Flexential Nashville - Brentwood","operator":"Flexential","owner":"Flexential","address":"7100 Commerce Way, Suite 25","city":"Brentwood","state":"TN","zip":"37027","lat":35.970217852222,"lng":-86.809150081936,"yearOnline":"unknown","powerMw":1.49,"sqft":19150,"type":"colocation","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Flexential Nashville - Cool Springs","operator":"Flexential","owner":"Flexential","address":"425 Duke Drive, Suite 400","city":"Franklin","state":"TN","zip":"37067","lat":35.949930589313,"lng":-86.832470827776,"yearOnline":"unknown","powerMw":3.15,"sqft":74679,"type":"colocation","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Flexential Nashville - Franklin","operator":"Flexential","owner":"Flexential","address":"4600 Carothers Parkway","city":"Franklin","state":"TN","zip":"37067","lat":35.91912418196,"lng":-86.81642720721,"yearOnline":"unknown","powerMw":6,"sqft":80000,"type":"colocation","status":"operational","region":"Nashville & Memphis, TN"},{"name":"TierPoint Nashville (NSH)","operator":"TierPoint","owner":"TierPoint","address":"311 Eddy Lane","city":"Franklin","state":"TN","zip":"37064","lat":35.924840263987,"lng":-86.856915483806,"yearOnline":"unknown","powerMw":0,"sqft":52000,"type":"colocation","status":"operational","region":"Nashville & Memphis, TN"},{"name":"The Nexus Group Nashville Data Center / Nexus Nucleus","operator":"The Nexus Group","owner":"The Nexus Group","address":"1661 Murfreesboro Rd","city":"Nashville","state":"TN","zip":"37217","lat":36.104380761172,"lng":-86.668880714817,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Evoque Nashville (Gallatin)","operator":"Evoque","owner":"Evoque","address":"1398 Gateway Dr","city":"Gallatin","state":"TN","zip":"37066","lat":36.404074337759,"lng":-86.398030642254,"yearOnline":"unknown","powerMw":12,"sqft":500000,"type":"wholesale","status":"operational","region":"Nashville & Memphis, TN"},{"name":"RadiusDC Nashville I","operator":"RadiusDC","owner":"RadiusDC","address":"2902 Brick Church Pike","city":"Nashville","state":"TN","zip":"0","lat":36.223325696697,"lng":-86.782373719911,"yearOnline":"unknown","powerMw":12,"sqft":102500,"type":"edge","status":"under-construction","region":"Nashville & Memphis, TN"},{"name":"Mapletree: 402 Franklin / AT&T Data Center","operator":"AT&T","owner":"Mapletree Redwood Data Centre Trust","address":"402 Franklin Road","city":"Brentwood","state":"TN","zip":"0","lat":36.026342744604,"lng":-86.79253152681,"yearOnline":"unknown","powerMw":10,"sqft":347515,"type":"enterprise","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Fisk Data and Technology Center / Quantum Leap Data Center","operator":"Fisk University","owner":"Fisk University","address":"Corner of 17th Ave N and Herman St, abutting Dr. D.B. Todd Jr. Blvd","city":"Nashville","state":"TN","zip":"37208","lat":36.164684164092,"lng":-86.802159959288,"yearOnline":"unknown","powerMw":30,"sqft":100000,"type":"enterprise","status":"planned","region":"Nashville & Memphis, TN"},{"name":"DataBank MEM1 - Memphis Data Center","operator":"DataBank","owner":"DataBank","address":"7620 Appling Center Drive","city":"Memphis","state":"TN","zip":"38133","lat":35.202640376911,"lng":-89.810035122526,"yearOnline":"unknown","powerMw":0.45,"sqft":0,"type":"colocation","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Expedient Memphis Data Center (in Sentinel TN-1)","operator":"Expedient Data Centers","owner":"Sentinel Data Centers","address":"3180 Players Lane","city":"Memphis","state":"TN","zip":"38125","lat":35.060964603533,"lng":-89.78629926564,"yearOnline":"unknown","powerMw":0,"sqft":35000,"type":"colocation","status":"operational","region":"Nashville & Memphis, TN"},{"name":"EdgeConneX MEM01 Memphis Data Center","operator":"EdgeConneX","owner":"EdgeConneX","address":"4005 S Mendenhall Rd, Unit #6","city":"Memphis","state":"TN","zip":"38115","lat":35.039460811362,"lng":-89.885254134317,"yearOnline":"unknown","powerMw":1,"sqft":16700,"type":"edge","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Lumen Memphis 1 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"3993 Crowfarn Drive","city":"Memphis","state":"TN","zip":"0","lat":35.029544091805,"lng":-89.931920829075,"yearOnline":"unknown","powerMw":0,"sqft":13000,"type":"telecom","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Lumen Memphis 2 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"5425 E Raines Rd","city":"Memphis","state":"TN","zip":"0","lat":35.034890870268,"lng":-89.883555820365,"yearOnline":"unknown","powerMw":0,"sqft":6216,"type":"telecom","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Verizon Memphis","operator":"Verizon","owner":"Verizon","address":"5127 Truse Rd","city":"Memphis","state":"TN","zip":"38117","lat":35.108899873414,"lng":-89.892482401933,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Cogent Edge Data Center - Memphis","operator":"Cogent Communications","owner":"Cogent Communications","address":"2632 Jackson Avenue","city":"Memphis","state":"TN","zip":"38108","lat":35.158214019693,"lng":-89.971128863308,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"Nashville & Memphis, TN"},{"name":"WorldSpice Data Center","operator":"WorldSpice Technologies","owner":"WorldSpice Technologies","address":"5050 Poplar Ave","city":"Memphis","state":"TN","zip":"38157","lat":35.112139509143,"lng":-89.893928274352,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Nashville & Memphis, TN"},{"name":"5CDC Memphis - MEM01","operator":"5C Group Inc.","owner":"5C Group Inc.","address":"4280 Getwell Rd","city":"Memphis","state":"TN","zip":"38118","lat":35.030220136873,"lng":-89.936959052417,"yearOnline":"unknown","powerMw":20,"sqft":1000000,"type":"colocation","status":"under-construction","region":"Nashville & Memphis, TN"},{"name":"Collierville Enterprise Data Center","operator":"Aphorio Carter","owner":"Aphorio Carter","address":"9 FedEx Pkwy","city":"Collierville","state":"TN","zip":"38017","lat":35.036031358625,"lng":-89.723402705507,"yearOnline":"2001","powerMw":10,"sqft":86000,"type":"enterprise","status":"operational","region":"Nashville & Memphis, TN"},{"name":"xAI Colossus 1","operator":"xAI Corp","owner":"xAI Corp","address":"3231 Paul R Lowry Road","city":"Memphis","state":"TN","zip":"38109","lat":35.060080701477,"lng":-90.152192539091,"yearOnline":"2024","powerMw":300,"sqft":785000,"type":"hyperscale","status":"operational","region":"Nashville & Memphis, TN"},{"name":"xAI Colossus 2","operator":"xAI Corp","owner":"xAI Corp","address":"5400 Tulane Rd","city":"Memphis","state":"TN","zip":"38109","lat":34.999722541672,"lng":-90.042983128385,"yearOnline":"unknown","powerMw":0,"sqft":1000000,"type":"hyperscale","status":"under-construction","region":"Nashville & Memphis, TN"},{"name":"xAI 5414 Tulane Road Expansion","operator":"xAI Corp","owner":"xAI Corp","address":"5414 Tulane Rd","city":"Memphis","state":"TN","zip":"0","lat":34.999558815995,"lng":-90.042978642762,"yearOnline":"unknown","powerMw":0,"sqft":312000,"type":"hyperscale","status":"planned","region":"Nashville & Memphis, TN"},{"name":"The STEM Practice Memphis","operator":"The STEM Practice","owner":"Golden Acquisitions","address":"1341 Sycamore View Rd","city":"Memphis","state":"TN","zip":"0","lat":35.161565793116,"lng":-89.859659748905,"yearOnline":"unknown","powerMw":9,"sqft":38500,"type":"enterprise","status":"planned","region":"Nashville & Memphis, TN"},{"name":"xAI MACROHARDRR","operator":"xAI Corp","owner":"xAI Corp","address":"2400 Stateline Rd W","city":"Southaven","state":"MS","zip":"38671","lat":34.991861641286,"lng":-90.034277800904,"yearOnline":"unknown","powerMw":2000,"sqft":810000,"type":"hyperscale","status":"planned","region":"Nashville & Memphis, TN"},{"name":"Lumen Nashville 1 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"2990 Sidco Dr","city":"Nashville","state":"TN","zip":"unknown","lat":36.10261744479,"lng":-86.756168201145,"yearOnline":"unknown","powerMw":0,"sqft":8456,"type":"colocation","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Verizon Nashville (XO)","operator":"Verizon Communications Inc.","owner":"Verizon Communications Inc.","address":"101 Molloy Street","city":"Nashville","state":"TN","zip":"unknown","lat":36.159316715635,"lng":-86.772631567011,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Nashville & Memphis, TN"},{"name":"Windstream Nashville Data Center","operator":"Windstream Communications","owner":"Windstream Communications","address":"940 N Third Avenue","city":"Nashville","state":"TN","zip":"unknown","lat":36.172962192447,"lng":-86.783319347667,"yearOnline":"unknown","powerMw":0,"sqft":7200,"type":"colocation","status":"operational","region":"Nashville & Memphis, TN"},{"name":"EdgeConneX MEM01 Memphis","operator":"EdgeConneX","owner":"EdgeConneX","address":"4005 S Mendenhall Rd #6","city":"Memphis","state":"TN","zip":"38115","lat":35.039460811362,"lng":-89.885254134317,"yearOnline":"unknown","powerMw":0,"sqft":16700,"type":"colocation","status":"operational","region":"Nashville & Memphis, TN"},{"name":"DataBank / 365 Data Centers Columbus - 251 Neilston St","operator":"DataBank / 365 Data Centers","owner":"DataBank","address":"251 Neilston St","city":"Columbus","state":"OH","zip":"43215","lat":39.968329750656,"lng":-82.994633296285,"yearOnline":"unknown","powerMw":2,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Ohio"},{"name":"Cogent Columbus 2 Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"161 East Goodale St","city":"Columbus","state":"OH","zip":"43215","lat":39.974202077048,"lng":-82.998710195171,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Ohio"},{"name":"WOW! Data Center","operator":"WOW! Business","owner":"WOW! Business","address":"226 North 5th Street","city":"Columbus","state":"OH","zip":"43215","lat":39.967731843964,"lng":-82.99573760718,"yearOnline":"unknown","powerMw":0,"sqft":26000,"type":"telecom","status":"operational","region":"the U.S. state of Ohio"},{"name":"Lumen Columbus","operator":"Lumen","owner":"Lumen","address":"226 North Fifth Street","city":"Columbus","state":"OH","zip":"unknown","lat":39.967731843964,"lng":-82.99573760718,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Ohio"},{"name":"Lumen Columbus 1","operator":"Lumen","owner":"Lumen","address":"266 North 5th St","city":"Columbus","state":"OH","zip":"unknown","lat":39.968295517004,"lng":-82.995849421951,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Ohio"},{"name":"eNET Columbus","operator":"eNET","owner":"eNET","address":"3000 E Dublin Granville Rd","city":"Columbus","state":"OH","zip":"unknown","lat":40.082049171115,"lng":-82.937024260715,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Ohio"},{"name":"Racksquared Value Way Datacenter","operator":"Racksquared","owner":"Racksquared","address":"2560 Value Way Drive","city":"Columbus","state":"OH","zip":"43224","lat":40.04454909804,"lng":-82.951989803095,"yearOnline":"unknown","powerMw":0,"sqft":256000,"type":"colocation","status":"operational","region":"the U.S. state of Ohio"},{"name":"Kyndryl Columbus","operator":"Kyndryl","owner":"Kyndryl","address":"4499 Fisher Rd","city":"Columbus","state":"OH","zip":"unknown","lat":39.970732285429,"lng":-83.11982727924,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Ohio"},{"name":"Compass Groveport AEP II","operator":"Compass Datacenters","owner":"Compass Datacenters","address":"4470 S Hamilton Rd","city":"Groveport","state":"OH","zip":"unknown","lat":39.882726297651,"lng":-82.883459459843,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"unknown","region":"the U.S. state of Ohio"},{"name":"QTS New Albany 2 DC1","operator":"QTS","owner":"QTS","address":"785 Beech Rd SW","city":"New Albany","state":"OH","zip":"43054","lat":40.07249768162,"lng":-82.753910885957,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"under-construction","region":"the U.S. state of Ohio"},{"name":"QTS New Albany 2 DC2","operator":"QTS","owner":"QTS","address":"675 Beech Rd SW","city":"New Albany","state":"OH","zip":"43054","lat":40.072882924972,"lng":-82.753877126893,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"under-construction","region":"the U.S. state of Ohio"},{"name":"Amazon AWS Prime Station / 2570 Beech Road","operator":"Amazon AWS","owner":"Amazon AWS","address":"2570 Beech Road","city":"New Albany","state":"OH","zip":"unknown","lat":40.096480991096,"lng":-82.7538777948,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Ohio"},{"name":"Amazon AWS Central Park / 5109 Hayden Run","operator":"Amazon AWS","owner":"Amazon AWS","address":"5109 Hayden Run","city":"Hilliard","state":"OH","zip":"unknown","lat":40.062496228935,"lng":-83.135327553106,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Ohio"},{"name":"Amazon AWS Center Three / 5117 Hayden Run","operator":"Amazon AWS","owner":"Amazon AWS","address":"5117 Hayden Run","city":"Hilliard","state":"OH","zip":"unknown","lat":40.062449730349,"lng":-83.135531216936,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Ohio"},{"name":"Amazon AWS Point / 5113 Hayden Run","operator":"Amazon AWS","owner":"Amazon AWS","address":"5113 Hayden Run","city":"Hilliard","state":"OH","zip":"unknown","lat":40.062472979642,"lng":-83.135429385021,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Ohio"},{"name":"Amazon AWS Edge Center / Cosgray Campus","operator":"Amazon AWS","owner":"Amazon AWS","address":"4600 Cosgray Road","city":"Hilliard","state":"OH","zip":"unknown","lat":40.050017906811,"lng":-83.180945437545,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Ohio"},{"name":"Amazon AWS Plaza / 5125 Hayden Run","operator":"Amazon AWS","owner":"Amazon AWS","address":"5125 Hayden Run","city":"Hilliard","state":"OH","zip":"unknown","lat":40.062403231763,"lng":-83.135734880765,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Ohio"},{"name":"Amazon AWS Hub / 5121 Hayden Run","operator":"Amazon AWS","owner":"Amazon AWS","address":"5121 Hayden Run","city":"Hilliard","state":"OH","zip":"unknown","lat":40.062426481056,"lng":-83.13563304885,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Ohio"},{"name":"Amazon AWS Valley One / 2540 Beech Rd","operator":"Amazon AWS","owner":"Amazon AWS","address":"2540 Beech Rd","city":"New Albany","state":"OH","zip":"unknown","lat":40.096228858253,"lng":-82.753895550652,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Ohio"},{"name":"Whitelabel IT Solutions 150 Atlantic Street","operator":"Whitelabel IT Solutions","owner":"Whitelabel IT Solutions","address":"150 Atlantic Street, Floor 2","city":"Hackensack","state":"NJ","zip":"07601","lat":40.882837819304,"lng":-74.048862231623,"yearOnline":"unknown","powerMw":0,"sqft":20000,"type":"colocation","status":"operational","region":"the U.S. state of New Jersey"},{"name":"QTS Jersey City 1","operator":"QTS","owner":"QTS","address":"95 Christopher Columbus Drive","city":"Jersey City","state":"NJ","zip":"07302","lat":40.719402609072,"lng":-74.042820018576,"yearOnline":"unknown","powerMw":0,"sqft":120000,"type":"colocation","status":"operational","region":"the U.S. state of New Jersey"},{"name":"InterServer TEB4","operator":"InterServer","owner":"InterServer","address":"200 Meadowlands Parkway","city":"Secaucus","state":"NJ","zip":"07094","lat":40.784740861629,"lng":-74.076232047481,"yearOnline":"unknown","powerMw":2.5,"sqft":48000,"type":"colocation","status":"operational","region":"the U.S. state of New Jersey"},{"name":"Digital Fortress Piscataway Data Center","operator":"Digital Fortress","owner":"Digital Fortress","address":"201B Centennial Avenue","city":"Piscataway","state":"NJ","zip":"08854","lat":40.542651239806,"lng":-74.497710630763,"yearOnline":"unknown","powerMw":0,"sqft":96000,"type":"colocation","status":"operational","region":"the U.S. state of New Jersey"},{"name":"Hammer Piscataway","operator":"Hammer Fiber","owner":"Hammer Fiber","address":"15 Corporate Place","city":"Piscataway","state":"NJ","zip":"08854","lat":40.554313393846,"lng":-74.458993942107,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of New Jersey"},{"name":"CyrusOne NYM2","operator":"CyrusOne","owner":"CyrusOne","address":"50 Madison Road","city":"Totowa","state":"NJ","zip":"07512","lat":40.906727342562,"lng":-74.24207920389,"yearOnline":"unknown","powerMw":16,"sqft":200000,"type":"wholesale","status":"operational","region":"the U.S. state of New Jersey"},{"name":"701 Union Boulevard (EWR15)","operator":"unknown","owner":"unknown","address":"701 Union Boulevard","city":"Totowa","state":"NJ","zip":"07512","lat":40.891958254822,"lng":-74.22685552012,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"unknown","status":"unknown","region":"the U.S. state of New Jersey"},{"name":"703 Union Boulevard (EWR16)","operator":"unknown","owner":"unknown","address":"703 Union Boulevard","city":"Totowa","state":"NJ","zip":"07512","lat":40.890827571343,"lng":-74.227759286272,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"unknown","status":"unknown","region":"the U.S. state of New Jersey"},{"name":"Sentinel Data Center","operator":"Sentinel Data Centers","owner":"Sentinel Data Centers","address":"201 Main Avenue","city":"Clifton","state":"NJ","zip":"07014","lat":40.832667480034,"lng":-74.14002771368,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of New Jersey"},{"name":"CyrusOne NYM1","operator":"CyrusOne","owner":"CyrusOne","address":"800 Cottontail Lane","city":"Somerset","state":"NJ","zip":"08873","lat":40.538867477546,"lng":-74.548028049833,"yearOnline":"unknown","powerMw":0,"sqft":430000,"type":"wholesale","status":"operational","region":"the U.S. state of New Jersey"},{"name":"Rackspace NYC2 New York Metro Data Center","operator":"Rackspace Technology","owner":"Rackspace Technology","address":"202-216 Campus Drive","city":"Somerset","state":"NJ","zip":"08873","lat":40.545461097419,"lng":-74.538368189507,"yearOnline":"unknown","powerMw":2,"sqft":35000,"type":"enterprise","status":"operational","region":"the U.S. state of New Jersey"},{"name":"365 Data Centers Bridgewater","operator":"365 Data Centers","owner":"365 Data Centers","address":"999 Frontier Road","city":"Bridgewater Township","state":"NJ","zip":"08807","lat":40.581164964722,"lng":-74.574426877368,"yearOnline":"unknown","powerMw":2.3,"sqft":25000,"type":"colocation","status":"operational","region":"the U.S. state of New Jersey"},{"name":"Blue Hill NJ","operator":"Blue Hill Data Services","owner":"Blue Hill Data Services","address":"3434 US-22","city":"Branchburg","state":"NJ","zip":"08876","lat":40.611923661036,"lng":-74.719524943246,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of New Jersey"},{"name":"CoreWeave Kenilworth / 11 NEST Data Center","operator":"CoreWeave","owner":"CoreWeave","address":"2000 Galloping Hill Road / 11 Nest Drive","city":"Kenilworth","state":"NJ","zip":"07033","lat":40.679052547898,"lng":-74.271689729532,"yearOnline":"unknown","powerMw":250,"sqft":0,"type":"hyperscale","status":"under-construction","region":"the U.S. state of New Jersey"},{"name":"Comcast Clinton Data Center","operator":"Comcast","owner":"Comcast","address":"92 West Main Street","city":"Clinton","state":"NJ","zip":"08809","lat":40.632468727196,"lng":-74.91909637946,"yearOnline":"unknown","powerMw":0,"sqft":2170,"type":"enterprise","status":"operational","region":"the U.S. state of New Jersey"},{"name":"Continuity Centers Princeton","operator":"American Business Continuity Centers","owner":"American Business Continuity Centers","address":"500 College Road East","city":"Princeton","state":"NJ","zip":"08540","lat":40.351576686204,"lng":-74.593736055094,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of New Jersey"},{"name":"365 Data Centers - New York 3","operator":"365 Data Centers","owner":"365 Data Centers","address":"121 Varick Street","city":"New York","state":"NY","zip":"10013","lat":40.724935032777,"lng":-74.005994309222,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of New York"},{"name":"DataBank LGA2 Downtown New York City / Eighth Avenue","operator":"DataBank","owner":"DataBank","address":"111 Eighth Avenue Suite #311A","city":"New York","state":"NY","zip":"10011","lat":40.740907242657,"lng":-74.001767860726,"yearOnline":"unknown","powerMw":0.68,"sqft":10200,"type":"colocation","status":"operational","region":"the U.S. state of New York"},{"name":"DataBank LGA3 Orangeburg Data Center","operator":"DataBank","owner":"DataBank","address":"2000 Corporate Drive","city":"Orangeburg","state":"NY","zip":"10962","lat":41.037330918988,"lng":-73.987852576165,"yearOnline":"unknown","powerMw":20,"sqft":110000,"type":"colocation","status":"operational","region":"the U.S. state of New York"},{"name":"Lumen New York 7 / 601 West 26th","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"601 West 26th Street","city":"New York","state":"NY","zip":"10001","lat":40.750863656304,"lng":-74.005659891831,"yearOnline":"unknown","powerMw":0,"sqft":73822,"type":"telecom","status":"operational","region":"the U.S. state of New York"},{"name":"Equinix NY1","operator":"Equinix","owner":"Equinix","address":"165 Halsey Street, 8th Floor","city":"Newark","state":"NJ","zip":"07102","lat":40.736834246626,"lng":-74.173357610718,"yearOnline":"unknown","powerMw":0,"sqft":21775,"type":"colocation","status":"operational","region":"the U.S. state of New Jersey"},{"name":"DataBank EWR1 Downtown Newark","operator":"DataBank","owner":"DataBank","address":"165 Halsey Street Suite 500","city":"Newark","state":"NJ","zip":"07102","lat":40.736834246626,"lng":-74.173357610718,"yearOnline":"unknown","powerMw":0.82,"sqft":34360,"type":"colocation","status":"operational","region":"the U.S. state of New Jersey"},{"name":"Colocation America NJDC1 / Clifton","operator":"Colocation America","owner":"Colocation America","address":"100 Delawanna Avenue, Suite 200","city":"Clifton","state":"NJ","zip":"07014","lat":40.829525201071,"lng":-74.126669868776,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of New Jersey"},{"name":"Open Data Centers / Hammer Piscataway","operator":"Open Data Centers","owner":"Open Data Centers","address":"15 Corporate Place South, Suite #100","city":"Piscataway","state":"NJ","zip":"08854","lat":40.549822483601,"lng":-74.454908483838,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of New Jersey"},{"name":"Digital Fortress Piscataway Data Center","operator":"Digital Fortress","owner":"Digital Fortress","address":"201 Centennial Avenue","city":"Piscataway","state":"NJ","zip":"08854","lat":40.542651239806,"lng":-74.497710630763,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of New Jersey"},{"name":"CoreWeave NEST Building 11","operator":"CoreWeave","owner":"CoreWeave","address":"2000 Galloping Hill Road","city":"Kenilworth","state":"NJ","zip":"07033","lat":40.679052547898,"lng":-74.271689729532,"yearOnline":"unknown","powerMw":0,"sqft":280000,"type":"hyperscale","status":"planned","region":"the U.S. state of New Jersey"},{"name":"CyrusOne Norwalk","operator":"CyrusOne","owner":"CyrusOne","address":"6 Norden Place","city":"Norwalk","state":"CT","zip":"06855","lat":41.111253980749,"lng":-73.397083848386,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Connecticut"},{"name":"CyrusOne Stamford","operator":"CyrusOne","owner":"CyrusOne","address":"10 Riverbend Drive South","city":"Stamford","state":"CT","zip":"06907","lat":41.082812406137,"lng":-73.519257461282,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Connecticut"},{"name":"Digital Realty proposed 727 S Grand Avenue data center","operator":"Digital Realty","owner":"GIP 7th Street LLC / Digital Realty","address":"727 S Grand Avenue","city":"Los Angeles","state":"CA","zip":"unknown","lat":34.046847144173,"lng":-118.257087901234,"yearOnline":"unknown","powerMw":0,"sqft":486000,"type":"colocation","status":"planned","region":"the U.S. state of California"},{"name":"Quinby Building / US Colo Quinby","operator":"US Colo; Colocation America","owner":"unknown","address":"650 S Grand Ave","city":"Los Angeles","state":"CA","zip":"90017","lat":34.047740877447,"lng":-118.256095027524,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"818 West 7th Street carrier/data-center building","operator":"Lumen; Verizon; Equinix LA2","owner":"Downtown Properties","address":"818 W. 7th Street","city":"Los Angeles","state":"CA","zip":"90017","lat":34.049019774168,"lng":-118.259396448682,"yearOnline":"unknown","powerMw":12,"sqft":75031,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Aptum Los Angeles","operator":"Aptum","owner":"Aptum","address":"360 E 2nd Street","city":"Los Angeles","state":"CA","zip":"unknown","lat":34.048198670512,"lng":-118.240166918609,"yearOnline":"unknown","powerMw":0,"sqft":5000,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Xfernet Los Angeles","operator":"Xfernet","owner":"unknown","address":"3250 Wilshire Blvd","city":"Los Angeles","state":"CA","zip":"90010","lat":34.061724850048,"lng":-118.293022212286,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Equinix LA4","operator":"Equinix","owner":"Equinix","address":"445 N Douglas St","city":"El Segundo","state":"CA","zip":"90245","lat":33.918851594913,"lng":-118.383276140953,"yearOnline":"unknown","powerMw":0,"sqft":77263,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Spectrum Networks El Segundo","operator":"Spectrum Networks","owner":"Spectrum Networks","address":"2345 Alaska Ave","city":"El Segundo","state":"CA","zip":"unknown","lat":33.907588463433,"lng":-118.381567265411,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Goodman LAX01 Vernon / DataBank Los Angeles","operator":"Goodman Group; DataBank partnership","owner":"Goodman Group","address":"3094 E Vernon Ave","city":"Vernon","state":"CA","zip":"90058","lat":34.005429982137,"lng":-118.218653471025,"yearOnline":"unknown","powerMw":32,"sqft":263410,"type":"wholesale","status":"under-construction","region":"the U.S. state of California"},{"name":"Lumen Anaheim 1","operator":"Lumen","owner":"Lumen","address":"2461 W. La Palma Avenue","city":"Anaheim","state":"CA","zip":"92801","lat":33.846928447216,"lng":-117.970388387412,"yearOnline":"unknown","powerMw":0,"sqft":51149,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Cogent Data Center - Anaheim 2","operator":"Cogent","owner":"Cogent","address":"1750 West Penhall Way","city":"Anaheim","state":"CA","zip":"92801","lat":33.835131855741,"lng":-117.945176548857,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Cogent Data Center - Downey","operator":"Cogent","owner":"Cogent","address":"11230 Brookshire Ave","city":"Downey","state":"CA","zip":"90241","lat":33.938080596104,"lng":-118.129666430286,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Cogent Data Center - Van Nuys","operator":"Cogent","owner":"Cogent","address":"14525 Raymer St","city":"Van Nuys","state":"CA","zip":"91405","lat":34.213160832562,"lng":-118.458362735926,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Cogent Data Center - Burbank","operator":"Cogent","owner":"Cogent","address":"100 South Flower Street","city":"Burbank","state":"CA","zip":"91502","lat":34.177653818266,"lng":-118.312040429956,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Cogent Data Center - Rialto","operator":"Cogent","owner":"Cogent","address":"282 South Sycamore Avenue","city":"Rialto","state":"CA","zip":"92376","lat":34.097101118453,"lng":-117.366069148721,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Fireline Broadband Los Angeles","operator":"Fireline Broadband","owner":"unknown","address":"5900 Wilshire Blvd","city":"Los Angeles","state":"CA","zip":"unknown","lat":34.062462028482,"lng":-118.357904581011,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Flexential Las Vegas - North Data Center","operator":"Flexential","owner":"Flexential","address":"3330 East Lone Mountain Road","city":"North Las Vegas","state":"NV","zip":"89081","lat":36.247038851752,"lng":-115.101392331111,"yearOnline":"2013","powerMw":9,"sqft":111240,"type":"colocation","status":"operational","region":"the U.S. state of Nevada"},{"name":"Lumen Las Vegas 3","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"3944 E Silvestri Lane","city":"Las Vegas","state":"NV","zip":"89120","lat":36.076703733151,"lng":-115.088251675994,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Nevada"},{"name":"Verizon - 2240 Corporate Circle","operator":"Verizon Enterprise","owner":"Verizon Enterprise","address":"2240 Corporate Circle","city":"Henderson","state":"NV","zip":"89074","lat":36.027608017363,"lng":-115.088859852564,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Nevada"},{"name":"Switch Las Vegas 7","operator":"Switch","owner":"Switch","address":"7135 S Decatur Boulevard","city":"Las Vegas","state":"NV","zip":"89118","lat":36.061533280655,"lng":-115.20788188438,"yearOnline":"2008","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Nevada"},{"name":"Switch Las Vegas 9","operator":"Switch","owner":"Switch","address":"7365 S Lindell Road","city":"Las Vegas","state":"NV","zip":"89139","lat":36.055468646521,"lng":-115.216431899047,"yearOnline":"unknown","powerMw":0,"sqft":471248,"type":"colocation","status":"operational","region":"the U.S. state of Nevada"},{"name":"Switch Las Vegas 10","operator":"Switch","owner":"Switch","address":"7375 S Lindell Road","city":"Las Vegas","state":"NV","zip":"89139","lat":36.055278720876,"lng":-115.216438896325,"yearOnline":"unknown","powerMw":0,"sqft":343436,"type":"colocation","status":"operational","region":"the U.S. state of Nevada"},{"name":"Switch Las Vegas 11","operator":"Switch","owner":"Switch","address":"7380 S Lindell Road","city":"Las Vegas","state":"NV","zip":"89139","lat":36.055161353954,"lng":-115.21630141273,"yearOnline":"unknown","powerMw":0,"sqft":381881,"type":"colocation","status":"operational","region":"the U.S. state of Nevada"},{"name":"Flexential Las Vegas - Downtown (Carson I & II)","operator":"Flexential","owner":"Flexential","address":"302 E. Carson Street","city":"Las Vegas","state":"NV","zip":"89101","lat":36.168971491091,"lng":-115.143639235177,"yearOnline":"unknown","powerMw":1.37,"sqft":33135,"type":"colocation","status":"operational","region":"the U.S. state of Nevada"},{"name":"CENTRA RNO01 / 200 S Virginia","operator":"CENTRA","owner":"CENTRA","address":"200 S Virginia Street","city":"Reno","state":"NV","zip":"unknown","lat":39.523248906597,"lng":-119.811751259799,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Nevada"},{"name":"Google Henderson Data Center","operator":"Google","owner":"Google","address":"560 W Warm Springs Road","city":"Henderson","state":"NV","zip":"89011","lat":36.055559805179,"lng":-115.01029588897,"yearOnline":"2020","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Nevada"},{"name":"DataBank SLC6 - Granite Point Data Center","operator":"DataBank","owner":"DataBank","address":"14870 Pony Express Road","city":"Bluffdale","state":"UT","zip":"84065","lat":40.483,"lng":-111.913,"yearOnline":"2023","powerMw":22,"sqft":88250,"type":"colocation","status":"operational","region":"the U.S. state of Utah"},{"name":"Flexential Salt Lake City - Millcreek Data Center","operator":"Flexential","owner":"Flexential","address":"3949 South 200 East, Suite B1","city":"Murray","state":"UT","zip":"84107","lat":40.671,"lng":-111.887,"yearOnline":"unknown","powerMw":1.92,"sqft":36000,"type":"colocation","status":"operational","region":"the U.S. state of Utah"},{"name":"Voonami Salt Lake City SLC2 Data Center","operator":"Voonami","owner":"Voonami","address":"2302 South Presidents Drive, Lincoln Bldg, Suite F","city":"West Valley City","state":"UT","zip":"84120","lat":40.723,"lng":-111.953,"yearOnline":"unknown","powerMw":0,"sqft":8000,"type":"colocation","status":"operational","region":"the U.S. state of Utah"},{"name":"Voonami Orem SLC1 Data Center","operator":"Voonami","owner":"Voonami","address":"510 East Technology Avenue Bldg C, Suite 1100","city":"Orem","state":"UT","zip":"84097","lat":40.292,"lng":-111.669,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Utah"},{"name":"WebNX Ogden OGD1 Data Center","operator":"WebNX","owner":"WebNX","address":"119 North 600 West, Bldg 3B","city":"Ogden","state":"UT","zip":"84404","lat":41.267,"lng":-111.988,"yearOnline":"unknown","powerMw":0,"sqft":100000,"type":"colocation","status":"operational","region":"the U.S. state of Utah"},{"name":"Lumen Ogden 1 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"526 W 17th Street","city":"Ogden","state":"UT","zip":"84404","lat":41.221,"lng":-111.99,"yearOnline":"unknown","powerMw":0,"sqft":20000,"type":"telecom","status":"operational","region":"the U.S. state of Utah"},{"name":"Lumen Salt Lake City 4 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"3670 W 500 S","city":"Salt Lake City","state":"UT","zip":"unknown","lat":40.738,"lng":-111.979,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Utah"},{"name":"Verizon 8871 South Sandy Data Center","operator":"Verizon Enterprise","owner":"Verizon Enterprise","address":"8871 South Sandy Parkway","city":"Sandy","state":"UT","zip":"unknown","lat":40.586,"lng":-111.906,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Utah"},{"name":"Aligned SLC-03 Data Center","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"9300 S 3200 W","city":"West Jordan","state":"UT","zip":"unknown","lat":40.594,"lng":-111.964,"yearOnline":"2022","powerMw":80,"sqft":480000,"type":"wholesale","status":"operational","region":"the U.S. state of Utah"},{"name":"Aligned SLC-05 Data Center","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"6836 W Old Bingham Hwy","city":"West Jordan","state":"UT","zip":"unknown","lat":40.578,"lng":-112.031,"yearOnline":"2025","powerMw":0,"sqft":450000,"type":"wholesale","status":"operational","region":"the U.S. state of Utah"},{"name":"Meta Eagle 2 / Park Three (Station Beta)","operator":"Meta","owner":"Meta Platforms","address":"Meta Eagle Mountain campus, 1275 North Community Circle","city":"Eagle Mountain","state":"UT","zip":"unknown","lat":40.335,"lng":-111.993,"yearOnline":"2021","powerMw":0,"sqft":470000,"type":"hyperscale","status":"operational","region":"the U.S. state of Utah"},{"name":"Meta Eagle 5 / Prime Plaza","operator":"Meta","owner":"Meta Platforms","address":"North Plaza, Meta Eagle Mountain campus","city":"Eagle Mountain","state":"UT","zip":"unknown","lat":40.335,"lng":-111.993,"yearOnline":"2022","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Utah"},{"name":"Meta Eagle 6 / Ultra (Point Two)","operator":"Meta","owner":"Meta Platforms","address":"Meta Eagle Mountain campus","city":"Eagle Mountain","state":"UT","zip":"unknown","lat":40.335,"lng":-111.993,"yearOnline":"2025","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Utah"},{"name":"Oracle West Jordan Data Center","operator":"Oracle","owner":"Oracle","address":"unknown","city":"West Jordan","state":"UT","zip":"unknown","lat":40.609,"lng":-111.939,"yearOnline":"2011","powerMw":0,"sqft":235000,"type":"enterprise","status":"operational","region":"the U.S. state of Utah"},{"name":"NSA Utah Data Center / Bumblehive","operator":"National Security Agency","owner":"National Security Agency","address":"Bluffdale / Camp Williams area","city":"Bluffdale","state":"UT","zip":"unknown","lat":40.438,"lng":-111.945,"yearOnline":"2014","powerMw":65,"sqft":1500000,"type":"enterprise","status":"operational","region":"the U.S. state of Utah"},{"name":"QTS Eagle Mountain City Campus / Salt Lake City 1","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"Eagle Mountain City campus (193-acre site)","city":"Eagle Mountain","state":"UT","zip":"unknown","lat":40.345,"lng":-112.007,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"under-construction","region":"the U.S. state of Utah"},{"name":"QTS Eagle Mountain II Data Center","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"542 E Hyperscale Wy","city":"Fairfield","state":"UT","zip":"84013","lat":40.209,"lng":-111.985,"yearOnline":"unknown","powerMw":650,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Utah"},{"name":"Tract Pony Express Technology Park","operator":"Tract","owner":"Tract","address":"E 1000 N St","city":"Eagle Mountain","state":"UT","zip":"unknown","lat":40.356,"lng":-112.012,"yearOnline":"unknown","powerMw":120,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Utah"},{"name":"Tract Pole Canyon Technology Park","operator":"Tract","owner":"Tract","address":"Pole Canyon area","city":"Eagle Mountain","state":"UT","zip":"unknown","lat":40.312,"lng":-112.111,"yearOnline":"unknown","powerMw":1700,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Utah"},{"name":"Cirrus DS View 78 Data Center Campus - Phase 1","operator":"Cirrus Data Services","owner":"Cirrus Data Services / Gardner Company","address":"983 W Center St","city":"Midvale","state":"UT","zip":"unknown","lat":40.616,"lng":-111.9,"yearOnline":"unknown","powerMw":32,"sqft":224000,"type":"hyperscale","status":"under-construction","region":"the U.S. state of Utah"},{"name":"B+F Timpanogos Provo Data Center","operator":"B+F Timpanogos Tech Center LLC","owner":"B+F Timpanogos Tech Center LLC","address":"1507 South 180 East","city":"Provo","state":"UT","zip":"84606","lat":40.217,"lng":-111.637,"yearOnline":"unknown","powerMw":5,"sqft":66000,"type":"enterprise","status":"planned","region":"the U.S. state of Utah"},{"name":"Digital Realty data center at 301 Virginia / 1930 3rd (planned)","operator":"Digital Realty","owner":"unknown","address":"301 Virginia Street / 1930 3rd Avenue","city":"Seattle","state":"WA","zip":"98101","lat":47.612402800029,"lng":-122.340775677328,"yearOnline":"unknown","powerMw":0,"sqft":58000,"type":"colocation","status":"planned","region":"the U.S. state of Washington"},{"name":"SDC Seattle East 1 (Building at 3411)","operator":"Sabey Data Centers","owner":"Sabey Data Centers","address":"3411 South 120th Place","city":"Tukwila","state":"WA","zip":"98168","lat":47.49541330147,"lng":-122.289709504132,"yearOnline":"unknown","powerMw":28,"sqft":0,"type":"wholesale","status":"operational","region":"the U.S. state of Washington"},{"name":"SDC Seattle Building C","operator":"Sabey Data Center Properties LLC","owner":"Sabey Data Center Properties LLC","address":"3333 South 120th Place","city":"Tukwila","state":"WA","zip":"98168","lat":47.49542467215,"lng":-122.290983004549,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"the U.S. state of Washington"},{"name":"Intergate.West - 12101 Tukwila International Blvd","operator":"Sabey Data Center Properties LLC","owner":"Sabey Data Center Properties LLC","address":"12101 Tukwila International Boulevard","city":"Tukwila","state":"WA","zip":"98168","lat":47.495853074052,"lng":-122.294760888402,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"the U.S. state of Washington"},{"name":"Intergate.West - 12201 Tukwila International Blvd","operator":"Sabey Data Center Properties LLC","owner":"Sabey Data Center Properties LLC","address":"12201 Tukwila International Boulevard","city":"Tukwila","state":"WA","zip":"98168","lat":47.49413635878,"lng":-122.293584953755,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"the U.S. state of Washington"},{"name":"EdgeConneX Seattle EDCSEA01","operator":"EdgeConneX","owner":"EdgeConneX","address":"3425 S 116th Street, Building 6, Suite 133","city":"Tukwila","state":"WA","zip":"98168","lat":47.499153605725,"lng":-122.288848531193,"yearOnline":"2014","powerMw":4.5,"sqft":47000,"type":"edge","status":"operational","region":"the U.S. state of Washington"},{"name":"Centersquare Seattle SEA2-A","operator":"Centersquare","owner":"Brookfield","address":"6101 S 180th Street","city":"Tukwila","state":"WA","zip":"98188","lat":47.441313088343,"lng":-122.258105443777,"yearOnline":"unknown","powerMw":2.9,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Washington"},{"name":"Pacific Internet South Datacenter","operator":"Pacific Internet","owner":"unknown","address":"1300 SW 7th Street, Suite 112","city":"Renton","state":"WA","zip":"98057","lat":47.474035727781,"lng":-122.199804984688,"yearOnline":"unknown","powerMw":1,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Washington"},{"name":"Cogent Tacoma Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"2210 South 35th Street","city":"Tacoma","state":"WA","zip":"98409","lat":47.228175122351,"lng":-122.466417334775,"yearOnline":"unknown","powerMw":2.3,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Washington"},{"name":"Centeris South Hill Campus (campus addresses include 1015–1023)","operator":"Centeris Data Centers","owner":"Centeris Data Centers","address":"1015–1023 39th Avenue SE","city":"Puyallup","state":"WA","zip":"98374","lat":47.154824761578,"lng":-122.280321294395,"yearOnline":"unknown","powerMw":24,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Washington"},{"name":"Centeris South Hill SH1","operator":"Centeris Data Centers","owner":"Centeris Data Centers","address":"1111 39th Avenue SE","city":"Puyallup","state":"WA","zip":"98374","lat":47.154711277774,"lng":-122.274930123543,"yearOnline":"unknown","powerMw":50,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Washington"},{"name":"ScaleMatrix Seattle Data Center","operator":"ScaleMatrix","owner":"unknown","address":"1023 39th Avenue SE","city":"Puyallup","state":"WA","zip":"98374","lat":47.154824761578,"lng":-122.280321294395,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Washington"},{"name":"Microsoft Redmond Ridge (Redmond Ridge 1)","operator":"Microsoft","owner":"Microsoft","address":"23050 NE 102 Street","city":"Redmond","state":"WA","zip":"98053","lat":47.689967698489,"lng":-122.033050970416,"yearOnline":"2009","powerMw":17,"sqft":57000,"type":"hyperscale","status":"operational","region":"the U.S. state of Washington"},{"name":"Colocation Northwest Redmond Data Center","operator":"Colocation Northwest","owner":"unknown","address":"2457 152nd Avenue Northeast","city":"Redmond","state":"WA","zip":"98052","lat":47.632104816603,"lng":-122.137777714512,"yearOnline":"unknown","powerMw":0,"sqft":4000,"type":"colocation","status":"operational","region":"the U.S. state of Washington"},{"name":"Colocation Northwest Bellevue Data Center","operator":"Colocation Northwest","owner":"unknown","address":"15400 Southeast 30th Place, Suite 105","city":"Bellevue","state":"WA","zip":"98007","lat":47.582474558444,"lng":-122.134942080866,"yearOnline":"unknown","powerMw":0,"sqft":7000,"type":"colocation","status":"operational","region":"the U.S. state of Washington"},{"name":"Cogent Data Center - Seattle (Auburn)","operator":"Cogent Communications, Inc.","owner":"Cogent Communications, Inc.","address":"32275 32nd Avenue S.","city":"Auburn","state":"WA","zip":"98001","lat":47.312569594246,"lng":-122.292727334694,"yearOnline":"unknown","powerMw":3,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Washington"},{"name":"Expedient CMH1 Arlington/Columbus","operator":"Expedient","owner":"Expedient","address":"5000 Arlington Centre Blvd, Building One","city":"Columbus","state":"OH","zip":"unknown","lat":40.057188158931,"lng":-83.079214621903,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Ohio"},{"name":"Cogent Columbus Office & Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"240 N 5th St, Ste 210","city":"Columbus","state":"OH","zip":"43215","lat":39.96792910883,"lng":-82.995776649165,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Ohio"},{"name":"CyrusOne New Albany COL-1","operator":"CyrusOne","owner":"CyrusOne","address":"12181 Jug St","city":"Johnstown","state":"OH","zip":"unknown","lat":40.095598385207,"lng":-82.717649753904,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"planned","region":"the U.S. state of Ohio"},{"name":"Psychz Los Angeles","operator":"Psychz Networks","owner":"Psychz Networks","address":"700 Wilshire Blvd, Suite 100 and Suite 200","city":"Los Angeles","state":"CA","zip":"90017","lat":34.048650267794,"lng":-118.257155375695,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"ColoCrossing LA1 / West 7 Center","operator":"ColoCrossing","owner":"ColoCrossing","address":"1200 W 7th St","city":"Los Angeles","state":"CA","zip":"90017","lat":34.051411340597,"lng":-118.265795630599,"yearOnline":"1983","powerMw":1.2,"sqft":733000,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Cogent Data Center - Burbank","operator":"Cogent Communications","owner":"Cogent Communications","address":"100 S Flower St","city":"Burbank","state":"CA","zip":"unknown","lat":34.177653818266,"lng":-118.312040429956,"yearOnline":"unknown","powerMw":2,"sqft":52768,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Cogent Edge Data Center - Los Angeles","operator":"Cogent Communications","owner":"Cogent Communications","address":"611 W 6th St","city":"Los Angeles","state":"CA","zip":"unknown","lat":34.04887920032,"lng":-118.255368921816,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of California"},{"name":"Centersquare LAX3 - Irvine","operator":"Centersquare","owner":"Centersquare","address":"17836 Gillette Avenue","city":"Irvine","state":"CA","zip":"unknown","lat":33.686600700748,"lng":-117.850502181822,"yearOnline":"unknown","powerMw":0,"sqft":132000,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Centersquare Los Angeles LA2 - Irvine","operator":"Centersquare","owner":"Centersquare","address":"2681 Kelvin Ave","city":"Irvine","state":"CA","zip":"unknown","lat":33.684341578359,"lng":-117.838077905085,"yearOnline":"unknown","powerMw":15,"sqft":150000,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Data Canopy - Irvine","operator":"Data Canopy","owner":"Data Canopy","address":"16842 Von Karman Avenue","city":"Irvine","state":"CA","zip":"unknown","lat":33.695412129753,"lng":-117.836344811159,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"SMS Datacenter - Irvine","operator":"SMS Datacenter","owner":"SMS Datacenter","address":"2525 Main Street, Suite 120","city":"Irvine","state":"CA","zip":"92614","lat":33.682779694974,"lng":-117.84406770552,"yearOnline":"unknown","powerMw":0,"sqft":41000,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"DigiCo Los Angeles LAX1 / 1977 Saturn Data Center","operator":"DigiCo Infrastructure REIT","owner":"HMC Capital","address":"1977 Saturn St","city":"Monterey Park","state":"CA","zip":"91755","lat":34.03947946382,"lng":-118.11507069101,"yearOnline":"unknown","powerMw":56,"sqft":218400,"type":"wholesale","status":"planned","region":"the U.S. state of California"},{"name":"EdgeConneX MIA01","operator":"EdgeConneX","owner":"unknown","address":"2132 NW 114th Avenue","city":"Miami","state":"FL","zip":"33172","lat":25.793593985569,"lng":-80.380701060076,"yearOnline":"unknown","powerMw":0,"sqft":27000,"type":"edge","status":"operational","region":"the U.S. state of Florida"},{"name":"365 Data Centers Fort Lauderdale Data Center","operator":"365 Data Centers","owner":"unknown","address":"3250 W Commercial Boulevard","city":"Fort Lauderdale","state":"FL","zip":"33309","lat":26.186211913536,"lng":-80.190341147667,"yearOnline":"unknown","powerMw":0,"sqft":11400,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Volico MIA1 Miami Data Center","operator":"Volico Data Centers","owner":"unknown","address":"100 N Biscayne Boulevard","city":"Miami","state":"FL","zip":"33131","lat":25.775330822179,"lng":-80.18783450328,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"QTS Miami 1 DC1","operator":"QTS Data Centers","owner":"QTS Realty Trust, Inc.","address":"11234 NW 20th Street","city":"Miami","state":"FL","zip":"33172","lat":25.792283684707,"lng":-80.378101639971,"yearOnline":"unknown","powerMw":2,"sqft":37000,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"AT&T Miami MIA1 Data Center","operator":"AT&T","owner":"AT&T","address":"444 NW 79th Avenue","city":"Miami","state":"FL","zip":"unknown","lat":25.774485205131,"lng":-80.32437087946,"yearOnline":"unknown","powerMw":0,"sqft":189003,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"Lumen Miami 4","operator":"Lumen","owner":"Lumen","address":"1109 NW 22nd Street","city":"Miami","state":"FL","zip":"unknown","lat":25.797871767179,"lng":-80.213426044562,"yearOnline":"unknown","powerMw":0,"sqft":100000,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"Lumen Fort Lauderdale 1","operator":"Lumen","owner":"Lumen","address":"200 NW 2nd Street","city":"Fort Lauderdale","state":"FL","zip":"33311","lat":26.12402947225,"lng":-80.145842474946,"yearOnline":"unknown","powerMw":0,"sqft":9108,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"Verizon Miami Data Center","operator":"Verizon","owner":"Verizon Communications Inc.","address":"16563 NW 15th Avenue","city":"Miami","state":"FL","zip":"33169","lat":25.925161213752,"lng":-80.225091287849,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"T-Mobile Everglades MSO","operator":"T-Mobile US, Inc.","owner":"USPP Sunrise DC LLC","address":"4850 NW 103rd Avenue","city":"Sunrise","state":"FL","zip":"33351","lat":26.184782205796,"lng":-80.287348697716,"yearOnline":"2018","powerMw":0,"sqft":35000,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"Telxius Boca Raton Data Center / TBOC01","operator":"Telxius Cable","owner":"unknown","address":"6503 W Rogers Circle","city":"Boca Raton","state":"FL","zip":"33487","lat":26.405674992078,"lng":-80.113438920913,"yearOnline":"unknown","powerMw":8,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"3EX Hosting Data Center - Boca Raton","operator":"3EX Hosting","owner":"unknown","address":"6601 Park of Commerce Boulevard","city":"Boca Raton","state":"FL","zip":"33487","lat":26.404426969718,"lng":-80.096945160772,"yearOnline":"unknown","powerMw":35,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"IFX Networks Miami / Hallandale Data Center","operator":"IFX Networks","owner":"unknown","address":"520 South Dixie Highway","city":"Hallandale Beach","state":"FL","zip":"33009","lat":25.979729513385,"lng":-80.148280974291,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"Liberty Networks Boca Raton Sub-Sea Cable Landing Station","operator":"Liberty Networks","owner":"Liberty Networks","address":"6520 W Rogers Circle","city":"Boca Raton","state":"FL","zip":"unknown","lat":26.405474353685,"lng":-80.113228322708,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"Project Tango Loxahatchee Data Center Campus","operator":"unknown","owner":"PBA Holdings","address":"20125 Southern Boulevard","city":"Loxahatchee","state":"FL","zip":"33470","lat":26.68546077393,"lng":-80.367754870384,"yearOnline":"unknown","powerMw":0,"sqft":3690000,"type":"hyperscale","status":"planned","region":"the U.S. state of Florida"},{"name":"GCI Anchorage Data Center","operator":"GCI Communication","owner":"GCI Communication","address":"6831 Arctic Blvd, Anchorage, AK 99518","city":"Anchorage","state":"AK","zip":"99518","lat":61.158818605805,"lng":-149.891996218477,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Alaska"},{"name":"AlasConnect Data Center 5 (DC5)","operator":"AlasConnect","owner":"AlasConnect","address":"3403 Minnesota Dr, Anchorage, AK 99503","city":"Anchorage","state":"AK","zip":"99503","lat":61.188879,"lng":-149.912324,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Alaska"},{"name":"Fairbanks DC1","operator":"AlasConnect","owner":"AlasConnect","address":"612 Illinois St, Fairbanks, AK 99701","city":"Fairbanks","state":"AK","zip":"99701","lat":64.851422908194,"lng":-147.718958372587,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Alaska"},{"name":"Alaska Communications – Anchorage Data Center","operator":"Alaska Communications","owner":"Alaska Communications","address":"600 East 36th Ave., Suite 100, Anchorage, AK 99503","city":"Anchorage","state":"AK","zip":"99503","lat":61.188009403546,"lng":-149.872390780761,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Alaska"},{"name":"ACS North Wire Center","operator":"Alaska Communications Systems Group, Inc.","owner":"Alaska Communications Systems Group, Inc.","address":"1309 E St, Anchorage, AK 99501","city":"Anchorage","state":"AK","zip":"99501","lat":61.208966,"lng":-149.890871,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Alaska"},{"name":"Juneau State Office Building Data Center (OIT)","operator":"State of Alaska Office of Information Technology","owner":"State of Alaska Office of Information Technology","address":"333 Willoughby Ave., 5th Fl., State Office Building, Juneau, AK","city":"Juneau","state":"AK","zip":"unknown","lat":58.29987920031,"lng":-134.410846218713,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Alaska"},{"name":"AlasConnect Fairbanks Data Center (DC1)","operator":"AlasConnect","owner":"AlasConnect","address":"612 Illinois St, Fairbanks, AK","city":"Fairbanks","state":"AK","zip":"unknown","lat":64.851422908194,"lng":-147.718958372587,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Alaska"},{"name":"State of Alaska OIT Juneau Data Center (State Office Building)","operator":"State of Alaska Office of Information Technology","owner":"State of Alaska","address":"333 Willoughby Ave., 5th Floor, State Office Building, Juneau, AK","city":"Juneau","state":"AK","zip":"unknown","lat":58.29987920031,"lng":-134.410846218713,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Alaska"},{"name":"ACS North Wire Center","operator":"Alaska Communications Systems Group, Inc.","owner":"Alaska Communications Systems Group, Inc.","address":"Anchorage, AK 99501","city":"Anchorage","state":"AK","zip":"99501","lat":61.208966,"lng":-149.890871,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Alaska"},{"name":"TierPoint Little Rock (LIT)","operator":"TierPoint","owner":"TierPoint","address":"15707 Chenal Parkway","city":"Little Rock","state":"AR","zip":"72211","lat":34.756540955216,"lng":-92.443521411254,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Arkansas"},{"name":"Mainstream Technologies Little Rock","operator":"Mainstream Technologies, Inc.","owner":"Mainstream Technologies, Inc.","address":"325 W. Capitol Ave., 2nd Floor","city":"Little Rock","state":"AR","zip":"72201","lat":34.744517225824,"lng":-92.274147563925,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Arkansas"},{"name":"Ritter Communications Data Technology Center","operator":"Ritter Communications","owner":"Ritter Communications","address":"2400 Ritter Drive","city":"Jonesboro","state":"AR","zip":"72401","lat":35.815884329284,"lng":-90.689892503991,"yearOnline":"2020","powerMw":0.75,"sqft":8882,"type":"colocation","status":"operational","region":"the U.S. state of Arkansas"},{"name":"Windstream Little Rock","operator":"Windstream","owner":"Windstream","address":"4001 N Rodney Parham Rd","city":"Little Rock","state":"AR","zip":"72212","lat":34.791169670138,"lng":-92.396833629813,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Arkansas"},{"name":"Windstream Harrison, AR","operator":"Windstream","owner":"Windstream","address":"202 Graham St","city":"Harrison","state":"AR","zip":"72601","lat":36.215630079772,"lng":-93.078547918441,"yearOnline":"unknown","powerMw":2,"sqft":34625,"type":"telecom","status":"operational","region":"the U.S. state of Arkansas"},{"name":"Brightspeed Russellville","operator":"Brightspeed","owner":"Brightspeed","address":"214 S Denver Ave","city":"Russellville","state":"AR","zip":"72801","lat":35.277779544492,"lng":-93.136709714964,"yearOnline":"2000","powerMw":0,"sqft":44650,"type":"telecom","status":"operational","region":"the U.S. state of Arkansas"},{"name":"OzarksGo Fayetteville Data Center","operator":"OzarksGo","owner":"OzarksGo","address":"3641 West Wedington Drive","city":"Fayetteville","state":"AR","zip":"72704","lat":36.078516074835,"lng":-94.212114525013,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Arkansas"},{"name":"Sollensys Little Rock","operator":"Sollensys","owner":"Sollensys","address":"208-216 Atkins Rd","city":"Little Rock","state":"AR","zip":"72211","lat":34.751860448218,"lng":-92.416012448217,"yearOnline":"unknown","powerMw":0,"sqft":5044,"type":"enterprise","status":"operational","region":"the U.S. state of Arkansas"},{"name":"DataCanopy / former Ntirety Newark Data Center","operator":"Data Canopy","owner":"Data Canopy","address":"350 Pencader Drive","city":"Newark","state":"DE","zip":"19702","lat":39.61265,"lng":-75.7614,"yearOnline":"unknown","powerMw":6,"sqft":22700,"type":"colocation","status":"operational","region":"the U.S. state of Delaware"},{"name":"DāSTOR Wilmington Data Center / Wilmington NAP","operator":"DāSTOR, LLC","owner":"DāSTOR, LLC","address":"1201 North Market Street","city":"Wilmington","state":"DE","zip":"19801","lat":39.747407978177,"lng":-75.546651980349,"yearOnline":"unknown","powerMw":0,"sqft":78000,"type":"colocation","status":"operational","region":"the U.S. state of Delaware"},{"name":"DāSTOR New Castle Delaware Data Center","operator":"DāSTOR, LLC","owner":"DāSTOR, LLC","address":"3 Boulden Circle","city":"New Castle","state":"DE","zip":"19720","lat":39.68669,"lng":-75.57422,"yearOnline":"unknown","powerMw":0,"sqft":60000,"type":"colocation","status":"operational","region":"the U.S. state of Delaware"},{"name":"Lumen Wilmington 1 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"1603 North Jessup Street","city":"Wilmington","state":"DE","zip":"19802","lat":39.74953,"lng":-75.538761,"yearOnline":"unknown","powerMw":0,"sqft":15000,"type":"telecom","status":"operational","region":"the U.S. state of Delaware"},{"name":"Crown Castle Dover Data Center","operator":"Crown Castle","owner":"Crown Castle","address":"100 Carlson Way","city":"Dover","state":"DE","zip":"19901","lat":39.21469,"lng":-75.57528,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Delaware"},{"name":"Amtrak Wilmington Unified Operations Center Tier-3 Data Center","operator":"Amtrak","owner":"Amtrak","address":"Renaissance Centre, 405 North King Street","city":"Wilmington","state":"DE","zip":"19801","lat":39.740171139609,"lng":-75.550452987711,"yearOnline":"unknown","powerMw":0,"sqft":164789,"type":"enterprise","status":"under-construction","region":"the U.S. state of Delaware"},{"name":"Starwood Digital Ventures Project Washington campus (planned 11-building campus)","operator":"Starwood Digital Ventures","owner":"New Castle Campus Development LLC","address":"825 Governor Lea Road and River Road/Hamburg Road parcels","city":"New Castle","state":"DE","zip":"19720","lat":39.597841022263,"lng":-75.630436103088,"yearOnline":"unknown","powerMw":1200,"sqft":6000000,"type":"hyperscale","status":"planned","region":"the U.S. state of Delaware"},{"name":"White Clay Center Industrial Park / The Newark Project","operator":"Verdantas","owner":"Shelbourne Global","address":"100 White Clay Center Drive","city":"Newark","state":"DE","zip":"unknown","lat":39.685094613649,"lng":-75.723671953578,"yearOnline":"unknown","powerMw":0,"sqft":847000,"type":"hyperscale","status":"planned","region":"the U.S. state of Delaware"},{"name":"Hosting.com Newark Data Center","operator":"Hosting.com","owner":"Hosting.com","address":"650 Pencader Drive","city":"Newark","state":"DE","zip":"19702","lat":39.611574201673,"lng":-75.765619742379,"yearOnline":"unknown","powerMw":3.7,"sqft":18500,"type":"colocation","status":"unknown","region":"the U.S. state of Delaware"},{"name":"William Penn Data Center","operator":"Delaware Department of Technology & Information","owner":"State of Delaware","address":"801 Silver Lake Boulevard","city":"Dover","state":"DE","zip":"19904","lat":39.17257,"lng":-75.53555,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Delaware"},{"name":"Verizon WILIDE","operator":"Verizon","owner":"Verizon","address":"222 Delaware Avenue","city":"Wilmington","state":"DE","zip":"19801","lat":39.746309458895,"lng":-75.549787488977,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Delaware"},{"name":"Trijit Data Center","operator":"Trijit Corporation","owner":"Trijit Corporation","address":"501 Silverside Road, Suite 105","city":"Wilmington","state":"DE","zip":"19809","lat":39.787483620034,"lng":-75.486509297122,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"unknown","region":"the U.S. state of Delaware"},{"name":"DC BLOX Birmingham Data Center","operator":"DC BLOX","owner":"DC BLOX","address":"433 6th Street South","city":"Birmingham","state":"AL","zip":"35233","lat":33.50145412074,"lng":-86.822287920587,"yearOnline":"2019","powerMw":5,"sqft":31000,"type":"colocation","status":"operational","region":"the U.S. state of Alabama"},{"name":"Lumen Birmingham 1","operator":"Lumen","owner":"Lumen","address":"2001 Park Place North","city":"Birmingham","state":"AL","zip":"35203","lat":33.519662563842,"lng":-86.809714216049,"yearOnline":"unknown","powerMw":0,"sqft":3408,"type":"telecom","status":"operational","region":"the U.S. state of Alabama"},{"name":"Southern Telecom Birmingham","operator":"Southern Telecom","owner":"Southern Telecom","address":"600 18th St N","city":"Birmingham","state":"AL","zip":"35203","lat":33.517913923244,"lng":-86.811870415548,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Alabama"},{"name":"Digi Power X / USDC Columbiana","operator":"Digi Power X / US Data Centers, Inc.","owner":"Digi Power X / US Data Centers, Inc.","address":"130 Industrial Pkwy","city":"Columbiana","state":"AL","zip":"35051","lat":33.182787519671,"lng":-86.618481379029,"yearOnline":"unknown","powerMw":55,"sqft":160000,"type":"wholesale","status":"planned","region":"the U.S. state of Alabama"},{"name":"DC BLOX Huntsville Data Center","operator":"DC BLOX","owner":"DC BLOX","address":"333 Diamond Drive NW","city":"Huntsville","state":"AL","zip":"35806","lat":34.709457219422,"lng":-86.692136411692,"yearOnline":"unknown","powerMw":0,"sqft":9000,"type":"colocation","status":"operational","region":"the U.S. state of Alabama"},{"name":"Simple Helix Data Center","operator":"Simple Helix","owner":"Simple Helix","address":"165 West Park Loop NW","city":"Huntsville","state":"AL","zip":"35806","lat":34.744816340398,"lng":-86.691765682048,"yearOnline":"2017","powerMw":1.1,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Alabama"},{"name":"Scipio Technologies Huntsville","operator":"Scipio Technologies","owner":"Scipio Technologies","address":"2104 West Ferry Way","city":"Huntsville","state":"AL","zip":"35801","lat":34.69992145728,"lng":-86.591932885775,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Alabama"},{"name":"Meta Huntsville - Building 1","operator":"Meta","owner":"Meta","address":"5400 Prosperity Dr NW","city":"Huntsville","state":"AL","zip":"35810","lat":34.840961128688,"lng":-86.633839781404,"yearOnline":"2021","powerMw":48,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Alabama"},{"name":"Assurance Technology, LLP Data Center","operator":"Assurance Technology, LLP","owner":"Assurance Technology, LLP","address":"316 Bel Air Blvd","city":"Mobile","state":"AL","zip":"36606","lat":30.675536378204,"lng":-88.118076008778,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Alabama"},{"name":"Lumen Mobile 1","operator":"Lumen","owner":"Lumen","address":"50 N. Lawrence St.","city":"Mobile","state":"AL","zip":"36602","lat":30.690842942215,"lng":-88.048357584854,"yearOnline":"unknown","powerMw":0,"sqft":5625,"type":"telecom","status":"operational","region":"the U.S. state of Alabama"},{"name":"Sparrow Technology Solutions 3015 McGehee Data Center","operator":"Sparrow Technology Solutions, LLC","owner":"Sparrow Technology Solutions, LLC","address":"3015 McGehee Rd","city":"Montgomery","state":"AL","zip":"36111","lat":32.337772973659,"lng":-86.260275977533,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Alabama"},{"name":"3015 McGehee Data Center (Sparrow Technology Solutions)","operator":"Sparrow Technology Solutions, LLC","owner":"Sparrow Technology Solutions, LLC","address":"3015 McGehee Road","city":"Montgomery","state":"AL","zip":"36111","lat":32.337772973659,"lng":-86.260275977533,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Alabama"},{"name":"EdgeConneX Arcata - EDCACV01","operator":"EdgeConneX","owner":"EdgeConneX","address":"1296 11th St","city":"Arcata","state":"CA","zip":"95521","lat":40.87169581157,"lng":-124.090922694001,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of California"},{"name":"Anaheim Palms Telecom Center - Bldg. 2","operator":"unknown","owner":"unknown","address":"2421 West La Palma Avenue","city":"Anaheim","state":"CA","zip":"92801","lat":33.846937447123,"lng":-117.968734699226,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Anaheim Palms Telecom Center","operator":"unknown","owner":"unknown","address":"2441 West La Palma Avenue","city":"Anaheim","state":"CA","zip":"92801","lat":33.846937447169,"lng":-117.969561603184,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Cogent Edge Data Center - Bakersfield","operator":"Cogent Communications","owner":"Cogent Communications","address":"715 Sumner Street","city":"Bakersfield","state":"CA","zip":"93305","lat":35.376787855039,"lng":-118.992630471853,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of California"},{"name":"Lumen Bakersfield 1","operator":"Lumen","owner":"Lumen","address":"2020 P. Street","city":"Bakersfield","state":"CA","zip":"93311","lat":35.377371488287,"lng":-119.011678299153,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Lumen Bakersfield 2","operator":"Lumen","owner":"Lumen","address":"1430 Truxtun Ave","city":"Bakersfield","state":"CA","zip":"93301","lat":35.373391344476,"lng":-119.017963593775,"yearOnline":"unknown","powerMw":0,"sqft":4917,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Lumen Emeryville 1","operator":"Lumen","owner":"Lumen","address":"5000 Hollis Street","city":"Emeryville","state":"CA","zip":"94608","lat":37.834913643483,"lng":-122.287161557121,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Lumen Oakland","operator":"Lumen","owner":"Lumen","address":"1313 53rd Street","city":"Emeryville","state":"CA","zip":"94608","lat":37.836155539978,"lng":-122.286996277707,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Hurricane Electric Fremont 1","operator":"Hurricane Electric","owner":"Hurricane Electric","address":"760 Mission Ct","city":"Fremont","state":"CA","zip":"94539","lat":37.490324083018,"lng":-121.930781021527,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Hurricane Electric Fremont 2","operator":"Hurricane Electric","owner":"Hurricane Electric","address":"48233 Warm Springs Blvd","city":"Fremont","state":"CA","zip":"94539","lat":37.471785184907,"lng":-121.919290487639,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"37887 Shinn Street Data Center","operator":"Valley Oak Partners","owner":"Valley Oak Partners","address":"37887 Shinn St","city":"Fremont","state":"CA","zip":"94536","lat":37.567072100815,"lng":-121.983674327761,"yearOnline":"unknown","powerMw":90,"sqft":490000,"type":"wholesale","status":"planned","region":"the U.S. state of California"},{"name":"Unwired FAT1","operator":"unWired Broadband","owner":"unWired Broadband","address":"414 Bedford","city":"Fresno","state":"CA","zip":"93711","lat":36.846070848989,"lng":-119.799309051707,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Lumen Fresno 2","operator":"Lumen","owner":"Lumen","address":"7576 N Del Mar Ave","city":"Fresno","state":"CA","zip":"93711","lat":36.847617686758,"lng":-119.795796501933,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Lumen Fresno 1","operator":"Lumen","owner":"Lumen","address":"305 W Napa Ave","city":"Fresno","state":"CA","zip":"93706","lat":36.747528559497,"lng":-119.814570546697,"yearOnline":"unknown","powerMw":0,"sqft":30000,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Cogent POP Fresno","operator":"Cogent Communications","owner":"Cogent Communications","address":"233 West Voorman Avenue","city":"Fresno","state":"CA","zip":"93706","lat":36.744051750473,"lng":-119.813773973503,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Impulse Goleta","operator":"Impulse Advanced Communications","owner":"Impulse Advanced Communications","address":"6144 Calle Real #200","city":"Goleta","state":"CA","zip":"93117","lat":34.439655173726,"lng":-119.834784284554,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"STACK SVY03A Data Center Campus","operator":"STACK Infrastructure","owner":"STACK Infrastructure","address":"26203 Production Ave","city":"Hayward","state":"CA","zip":"94545","lat":37.628199432819,"lng":-122.119521885967,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"planned","region":"the U.S. state of California"},{"name":"Lumen Hayward 1","operator":"Lumen","owner":"Lumen","address":"23965 Connecticut St","city":"Hayward","state":"CA","zip":"94545","lat":37.638462025631,"lng":-122.129483444103,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"AT&T Hayward","operator":"AT&T","owner":"AT&T","address":"221 W Winton Ave","city":"Hayward","state":"CA","zip":"94544","lat":37.658610495514,"lng":-122.096068193126,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Grupo SMS Datacenter","operator":"Grupo SMS","owner":"Grupo SMS","address":"2525 Main Street","city":"Irvine","state":"CA","zip":"92614","lat":33.682779694974,"lng":-117.84406770552,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Cogent Data Center - Livermore","operator":"Cogent Communications","owner":"Cogent Communications","address":"8851 Manning Rd","city":"Livermore","state":"CA","zip":"94551","lat":37.760937351806,"lng":-121.804356248253,"yearOnline":"unknown","powerMw":0,"sqft":9095,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"AMV Digital Media","operator":"AMV Digital Media","owner":"AMV Digital Media","address":"12950 Culver Boulevard","city":"Los Angeles","state":"CA","zip":"90066","lat":33.982852925338,"lng":-118.427372893836,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of California"},{"name":"Telehouse LA Center","operator":"Telehouse","owner":"Telehouse","address":"626 Wilshire Boulevard","city":"Los Angeles","state":"CA","zip":"90017","lat":34.048122055838,"lng":-118.256329468013,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Summit Co-Locate Meet-Me Room","operator":"Summit Co-Locate","owner":"unknown","address":"700 Wilshire Blvd","city":"Los Angeles","state":"CA","zip":"90017","lat":34.048650267794,"lng":-118.257155375695,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Cogent POP Los Osos","operator":"Cogent Communications","owner":"Cogent Communications","address":"1101 Los Olivos Ave","city":"Los Osos","state":"CA","zip":"93402","lat":35.313104122431,"lng":-120.831196998284,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"NYGC Loyalton","operator":"NewYork GreenCloud","owner":"NewYork GreenCloud","address":"100 Railroad Ave","city":"Loyalton","state":"CA","zip":"96118","lat":39.67393668648,"lng":-120.239600356607,"yearOnline":"unknown","powerMw":18,"sqft":0,"type":"wholesale","status":"planned","region":"the U.S. state of California"},{"name":"USC/ISI Colo","operator":"USC/ISI","owner":"USC/ISI","address":"4676 Admiralty Way","city":"Marina del Rey","state":"CA","zip":"90292","lat":33.980361772278,"lng":-118.440429380197,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of California"},{"name":"Quest Data Center","operator":"Quest Technology Management","owner":"Quest Technology Management","address":"4235 Forcum Avenue","city":"McClellan Park","state":"CA","zip":"95652","lat":38.646402649999,"lng":-121.405884650181,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"CoreSite SV2 - Milpitas Data Center","operator":"CoreSite","owner":"CoreSite","address":"1656 McCarthy Blvd","city":"Milpitas","state":"CA","zip":"95035","lat":37.405621466661,"lng":-121.917778551412,"yearOnline":"unknown","powerMw":0,"sqft":76000,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Modesto City Tower","operator":"Ayera Technologies","owner":"Ayera Technologies","address":"801 Tenth Street","city":"Modesto","state":"CA","zip":"unknown","lat":37.638563573357,"lng":-120.998055822178,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"T5@Silicon Valley / Apple Newark Data Center","operator":"T5 Data Centers / Apple","owner":"unknown","address":"39800 Eureka Dr","city":"Newark","state":"CA","zip":"94560","lat":37.509474768963,"lng":-122.000281410471,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of California"},{"name":"Digital Realty OAK10","operator":"Digital Realty","owner":"Digital Realty Trust","address":"720 2nd Street","city":"Oakland","state":"CA","zip":"94607","lat":37.798560718271,"lng":-122.282584224241,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Equinix SV8","operator":"Equinix","owner":"Equinix","address":"529 Bryant St","city":"Palo Alto","state":"CA","zip":"94301","lat":37.44559266335,"lng":-122.160997855926,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"iBridge Cloud Data Center","operator":"iBridge","owner":"iBridge","address":"10815 Gold Center Drive","city":"Rancho Cordova","state":"CA","zip":"95670","lat":38.590868933534,"lng":-121.283316862065,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"365 Data Centers - Rancho Cordova","operator":"365 Data Centers","owner":"365 Data Centers","address":"11085 Sun Center Dr","city":"Rancho Cordova","state":"CA","zip":"95670","lat":38.595449203313,"lng":-121.272774552,"yearOnline":"unknown","powerMw":5,"sqft":69000,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"DataCate","operator":"DataCate","owner":"DataCate","address":"2999 Gold Canal Drive","city":"Rancho Cordova","state":"CA","zip":"95670","lat":38.593909845591,"lng":-121.268464309314,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Conscious Data Centers LLC","operator":"Conscious Data Centers","owner":"Conscious Data Centers","address":"3141 Data Drive","city":"Rancho Cordova","state":"CA","zip":"95670","lat":38.587600950077,"lng":-121.282817475832,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"EdgeConneX SAC01","operator":"EdgeConneX","owner":"EdgeConneX","address":"10980 Gold Center Dr","city":"Rancho Cordova","state":"CA","zip":"95670","lat":38.592805571033,"lng":-121.277110123378,"yearOnline":"unknown","powerMw":2,"sqft":28500,"type":"edge","status":"operational","region":"the U.S. state of California"},{"name":"Sierra Morena Tower, LLC","operator":"Sierra Morena Tower, LLC","owner":"Sierra Morena Tower, LLC","address":"15040 Skyline Blvd","city":"Redwood City","state":"CA","zip":"94062","lat":37.413144420475,"lng":-122.308005749839,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"AT&T Redwood","operator":"AT&T","owner":"AT&T","address":"3175 Spring Street","city":"Redwood City","state":"CA","zip":"94063","lat":37.480477894749,"lng":-122.200801289971,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Cogent Data Center - Rialto","operator":"Cogent Communications","owner":"Cogent Communications","address":"282 S Sycamore Ave","city":"Rialto","state":"CA","zip":"92376","lat":34.097101118453,"lng":-117.366069148721,"yearOnline":"unknown","powerMw":0,"sqft":46610,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Viridio Solar Powered Data Center","operator":"Viridio","owner":"Viridio","address":"25655 Louisa Lane","city":"Romoland","state":"CA","zip":"92585","lat":33.748065866023,"lng":-117.151957175725,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Quest Technology Management Data Center","operator":"Quest Technology Management","owner":"Quest Technology Management","address":"9000 Foothills Blvd","city":"Roseville","state":"CA","zip":"95747","lat":38.788225184642,"lng":-121.313841337635,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"QTS Sacramento","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"1100 N Market Blvd","city":"Sacramento","state":"CA","zip":"95834","lat":38.647206618073,"lng":-121.484679183855,"yearOnline":"unknown","powerMw":9,"sqft":92000,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"NTT Sacramento CA1 Data Center","operator":"NTT DATA","owner":"NTT DATA","address":"1200 Striker Ave","city":"Sacramento","state":"CA","zip":"95834","lat":38.650977096385,"lng":-121.487765512704,"yearOnline":"unknown","powerMw":12.6,"sqft":85000,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"NTT Sacramento CA2 / RagingWire CA2","operator":"NTT DATA","owner":"NTT DATA","address":"1312 Striker Avenue","city":"Sacramento","state":"CA","zip":"95834","lat":38.650955344103,"lng":-121.490810864412,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"NTT Sacramento CA3","operator":"NTT DATA","owner":"NTT DATA","address":"1625 National Drive","city":"Sacramento","state":"CA","zip":"95834","lat":38.643545385543,"lng":-121.496868757273,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"770 L St","operator":"unknown","owner":"unknown","address":"770 L Street","city":"Sacramento","state":"CA","zip":"95814","lat":38.578874098381,"lng":-121.497532300704,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"TPx Sacramento","operator":"TPx Communications","owner":"TPx Communications","address":"1099 15th St","city":"Sacramento","state":"CA","zip":"95814","lat":38.577954747159,"lng":-121.48669086383,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"DataBank SAN1 - San Diego World Trade Data Center","operator":"DataBank","owner":"DataBank","address":"12270 World Trade Drive Suite #100","city":"San Diego","state":"CA","zip":"92128","lat":32.987934646544,"lng":-117.072532223197,"yearOnline":"unknown","powerMw":7.2,"sqft":55239,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"3180 University Ave MMR","operator":"unknown","owner":"unknown","address":"3180 University Ave","city":"San Diego","state":"CA","zip":"92104","lat":32.748532529128,"lng":-117.125536899776,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"EdgeConneX SAND","operator":"EdgeConneX","owner":"EdgeConneX","address":"5761 Copley Drive","city":"San Diego","state":"CA","zip":"92111","lat":32.840907235492,"lng":-117.169468957507,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of California"},{"name":"ScaleMatrix","operator":"ScaleMatrix","owner":"ScaleMatrix","address":"5775 Kearny Villa Road","city":"San Diego","state":"CA","zip":"92123","lat":32.838896972415,"lng":-117.13361699364,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"MDC San Diego","operator":"MDC Data Centers","owner":"MDC Data Centers","address":"7014 Manya Circle","city":"San Diego","state":"CA","zip":"92154","lat":32.593743322412,"lng":-117.085246057148,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Fiber Alley - 8915 Complex Drive","operator":"Fiber Alley","owner":"unknown","address":"8915 Complex Drive","city":"San Diego","state":"CA","zip":"92123","lat":32.829913527528,"lng":-117.136462114161,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Fiber Alley - 8917 Complex Drive","operator":"Fiber Alley","owner":"unknown","address":"8917 Complex Drive","city":"San Diego","state":"CA","zip":"92123","lat":32.82991797284,"lng":-117.136428218644,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Lumen San Diego 3","operator":"Lumen","owner":"Lumen","address":"8929 Aero Dr","city":"San Diego","state":"CA","zip":"92123","lat":32.809707931017,"lng":-117.136474746435,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"AIS Fiber Alley (FADC 2)","operator":"AIS","owner":"AIS","address":"8939 Complex Drive","city":"San Diego","state":"CA","zip":"92123","lat":32.829978150213,"lng":-117.136053502616,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"i2B Networks","operator":"i2B Networks","owner":"i2B Networks","address":"8971 Complex Drive","city":"San Diego","state":"CA","zip":"92123","lat":32.83007646184,"lng":-117.135523306877,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"AIS Lightwave (LWDC)","operator":"AIS","owner":"AIS","address":"9305 Lightwave Ave","city":"San Diego","state":"CA","zip":"92123","lat":32.82914792842,"lng":-117.130848211857,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"LightEdge - San Diego II","operator":"LightEdge","owner":"LightEdge","address":"9725 Scranton Rd","city":"San Diego","state":"CA","zip":"92121","lat":32.896977345599,"lng":-117.202724313601,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Cogent Data Center - San Diego 1","operator":"Cogent Communications","owner":"Cogent Communications","address":"525 B Street","city":"San Diego","state":"CA","zip":"unknown","lat":32.717754943145,"lng":-117.159921649875,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Cogent Data Center - San Diego 2","operator":"Cogent Communications","owner":"Cogent Communications","address":"9530 Towne Centre","city":"San Diego","state":"CA","zip":"unknown","lat":32.88107721763,"lng":-117.208556055704,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Cogent Data Center - San Diego 3","operator":"Cogent Communications","owner":"Cogent Communications","address":"1402 K Street","city":"San Diego","state":"CA","zip":"92101","lat":32.708428535238,"lng":-117.151784130132,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Digital Realty - 200 Paul Avenue","operator":"Digital Realty","owner":"Digital Realty Trust","address":"200 Paul Avenue","city":"San Francisco","state":"CA","zip":"94124","lat":37.722945451379,"lng":-122.397717744322,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Digital Realty - 365 Main Street","operator":"Digital Realty","owner":"Digital Realty Trust","address":"365 Main Street","city":"San Francisco","state":"CA","zip":"94105","lat":37.788616012794,"lng":-122.390815836434,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Equinix SV1","operator":"Equinix","owner":"Equinix","address":"11 Great Oaks Blvd","city":"San Jose","state":"CA","zip":"95119","lat":37.239513917322,"lng":-121.776652736397,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Equinix SV3","operator":"Equinix","owner":"Equinix","address":"1735 Lundy Ave","city":"San Jose","state":"CA","zip":"95131","lat":37.388812092108,"lng":-121.887379321836,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Equinix SV11","operator":"Equinix","owner":"Equinix","address":"5 Great Oaks Boulevard","city":"San Jose","state":"CA","zip":"95119","lat":37.239649535518,"lng":-121.77687441993,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Evocative San Jose - 534 Stockton Ave","operator":"Evocative","owner":"Evocative","address":"534 Stockton Ave","city":"San Jose","state":"CA","zip":"95126","lat":37.338295246355,"lng":-121.910745007402,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"CoreSite SV1 - San Jose Data Center","operator":"CoreSite","owner":"CoreSite","address":"55 S. Market St","city":"San Jose","state":"CA","zip":"95113","lat":37.334508362922,"lng":-121.891430210365,"yearOnline":"unknown","powerMw":0,"sqft":320000,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Goodman Innovation Centre San Jose","operator":"Goodman Group","owner":"Goodman Group","address":"350 W Trimble Rd","city":"San Jose","state":"CA","zip":"unknown","lat":37.382511618871,"lng":-121.934940945908,"yearOnline":"unknown","powerMw":0,"sqft":414000,"type":"wholesale","status":"planned","region":"the U.S. state of California"},{"name":"Impulse Santa Barbara","operator":"Impulse Advanced Communications","owner":"Impulse Advanced Communications","address":"104 W Anapamu St","city":"Santa Barbara","state":"CA","zip":"93101","lat":34.422249687158,"lng":-119.705726290593,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Evocative SJC14","operator":"Evocative","owner":"Evocative","address":"1525 Comstock St","city":"Santa Clara","state":"CA","zip":"95054","lat":37.374645577985,"lng":-121.955939020413,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"EdgeConneX SVC01","operator":"EdgeConneX","owner":"EdgeConneX","address":"1700 Richard Avenue","city":"Santa Clara","state":"CA","zip":"95050","lat":37.365374035442,"lng":-121.958174309005,"yearOnline":"2015","powerMw":0,"sqft":19800,"type":"edge","status":"operational","region":"the U.S. state of California"},{"name":"CoreSite SV5","operator":"CoreSite","owner":"CoreSite","address":"2900 Stender Way","city":"Santa Clara","state":"CA","zip":"95054","lat":37.375009892075,"lng":-121.970249811708,"yearOnline":"unknown","powerMw":0,"sqft":100000,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"QTS Santa Clara I","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"2805/2807 Mission College Blvd","city":"Santa Clara","state":"CA","zip":"95054","lat":37.392301642423,"lng":-121.976906527568,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Telehouse Santa Clara Data Center","operator":"Telehouse","owner":"Telehouse","address":"3045 Raymond Street","city":"Santa Clara","state":"CA","zip":"95054","lat":37.377023029137,"lng":-121.952408883479,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Evocative SJC3","operator":"Evocative","owner":"Evocative","address":"3080 Raymond St","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.37755704433,"lng":-121.952577035987,"yearOnline":"unknown","powerMw":0,"sqft":15000,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Prime Silicon Valley SJC02","operator":"Prime Data Centers","owner":"Prime Data Centers","address":"1111 Comstock St","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.374681306184,"lng":-121.951929431013,"yearOnline":"unknown","powerMw":9,"sqft":123000,"type":"wholesale","status":"unknown","region":"the U.S. state of California"},{"name":"Prime Silicon Valley SJC03","operator":"Prime Data Centers","owner":"Prime Data Centers","address":"2215 Martin","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.36792870201,"lng":-121.963344186732,"yearOnline":"unknown","powerMw":9,"sqft":79000,"type":"wholesale","status":"planned","region":"the U.S. state of California"},{"name":"StratCap 3205 Bassett","operator":"StratCap","owner":"StratCap","address":"3205 Bassett","city":"Santa Clara","state":"CA","zip":"unknown","lat":37.378785105034,"lng":-121.950120565417,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Cogent Data Center - Stockton","operator":"Cogent Communications","owner":"Cogent Communications","address":"3807 Coronado Ave","city":"Stockton","state":"CA","zip":"95204","lat":37.987142654504,"lng":-121.288268225398,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of California"},{"name":"Rowan Matterhorn","operator":"Rowan Digital Infrastructure","owner":"Rowan Digital Infrastructure","address":"19900 Byron Rd","city":"Tracy","state":"CA","zip":"95391","lat":37.797422920028,"lng":-121.554820356876,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"planned","region":"the U.S. state of California"},{"name":"Got.Net Santa Cruz","operator":"Got.Net","owner":"unknown","address":"303 Potrero St, Suite 40-E","city":"Santa Cruz","state":"CA","zip":"95060","lat":36.980597553312,"lng":-122.031091974716,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"H5 Data Centers San Luis Obispo","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"3610 Sacramento Dr.","city":"San Luis Obispo","state":"CA","zip":"93401","lat":35.254954288456,"lng":-120.64153550865,"yearOnline":"unknown","powerMw":0,"sqft":44000,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"China Mobile San Jose","operator":"China Mobile International","owner":"China Mobile International","address":"6320-6340 San Ignacio Ave","city":"San Jose","state":"CA","zip":"95119","lat":37.236472303841,"lng":-121.783286455271,"yearOnline":"unknown","powerMw":0,"sqft":312200,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"Lumen Bakersfield 2 Data Center","operator":"Lumen Technologies","owner":"unknown","address":"1430 Truxtun Avenue","city":"Bakersfield","state":"CA","zip":"93301","lat":35.373391344476,"lng":-119.017963593775,"yearOnline":"1987","powerMw":0,"sqft":4917,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"M5 Hosting SDTC Data Center (San Diego Technical Center)","operator":"M5 Hosting","owner":"unknown","address":"9725 Scranton Road","city":"San Diego","state":"CA","zip":"92121","lat":32.896977345599,"lng":-117.202724313601,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of California"},{"name":"5C Data Centers PHX01","operator":"5C Data Centers","owner":"5C Data Centers","address":"2802 W Palm Lane","city":"Phoenix","state":"AZ","zip":"unknown","lat":33.46963017811,"lng":-112.119398568032,"yearOnline":"unknown","powerMw":18,"sqft":0,"type":"hyperscale","status":"under-construction","region":"the U.S. state of Arizona"},{"name":"Aligned PHX08","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"3202 W Behrend Dr","city":"Phoenix","state":"AZ","zip":"85027","lat":33.665724351082,"lng":-112.131552109531,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"planned","region":"the U.S. state of Arizona"},{"name":"Aligned PHX09","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"3151 W Behrend Dr","city":"Phoenix","state":"AZ","zip":"85027","lat":33.665612955927,"lng":-112.131143139825,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"planned","region":"the U.S. state of Arizona"},{"name":"Verizon 3930 Watkins","operator":"Verizon","owner":"Verizon","address":"3930 East Watkins Street","city":"Phoenix","state":"AZ","zip":"85034","lat":33.423998343623,"lng":-111.997003556347,"yearOnline":"2015","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Arizona"},{"name":"EdgeConneX PHX01","operator":"EdgeConneX","owner":"EdgeConneX","address":"3011 S 52nd Street, Suite 107","city":"Phoenix","state":"AZ","zip":"unknown","lat":33.482928246343,"lng":-111.969465860123,"yearOnline":"unknown","powerMw":3,"sqft":80908,"type":"edge","status":"operational","region":"the U.S. state of Arizona"},{"name":"Centersquare Phoenix PHX2-A / Cyxtera PHX2","operator":"Centersquare","owner":"Centersquare","address":"2055 E Technology Cir","city":"Tempe","state":"AZ","zip":"85284","lat":33.345609954968,"lng":-111.899271237235,"yearOnline":"unknown","powerMw":6.8,"sqft":34000,"type":"colocation","status":"operational","region":"the U.S. state of Arizona"},{"name":"Centersquare PHX1 Mesa","operator":"Centersquare","owner":"Centersquare","address":"1301 West University Drive","city":"Mesa","state":"AZ","zip":"85201","lat":33.422094579617,"lng":-111.858670522809,"yearOnline":"1985","powerMw":14,"sqft":154158,"type":"colocation","status":"operational","region":"the U.S. state of Arizona"},{"name":"CyrusOne Mesa Campus","operator":"CyrusOne","owner":"CyrusOne","address":"E Elliot Rd & S Ellsworth Rd","city":"Mesa","state":"AZ","zip":"85212","lat":33.350160873675,"lng":-111.635723574612,"yearOnline":"unknown","powerMw":0,"sqft":1400000,"type":"hyperscale","status":"planned","region":"the U.S. state of Arizona"},{"name":"Google Mesa Campus","operator":"Google","owner":"Google","address":"East Elliot Road & S Sossaman Rd","city":"Mesa","state":"AZ","zip":"85212","lat":33.350439875438,"lng":-111.670580567719,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"under-construction","region":"the U.S. state of Arizona"},{"name":"Novva Mesa Data Center Campus","operator":"Novva Data Centers","owner":"Novva Data Centers","address":"S Ellsworth Rd & E Warner Rd","city":"Mesa","state":"AZ","zip":"85212","lat":33.335670875674,"lng":-111.635579575702,"yearOnline":"unknown","powerMw":300,"sqft":1500000,"type":"hyperscale","status":"operational","region":"the U.S. state of Arizona"},{"name":"NTT Phoenix PH1 Data Center","operator":"NTT DATA","owner":"NTT DATA","address":"10256 Elliot Rd","city":"Mesa","state":"AZ","zip":"85212","lat":33.350042541927,"lng":-111.608594837495,"yearOnline":"unknown","powerMw":36,"sqft":126000,"type":"colocation","status":"operational","region":"the U.S. state of Arizona"},{"name":"Compass Phoenix / Goodyear Campus","operator":"Compass Datacenters","owner":"Compass Datacenters","address":"400 South Bullard Ave","city":"Goodyear","state":"AZ","zip":"unknown","lat":33.443493778753,"lng":-112.375635699835,"yearOnline":"2022","powerMw":180,"sqft":1816000,"type":"hyperscale","status":"operational","region":"the U.S. state of Arizona"},{"name":"DCX Goodyear DCX-GYR1","operator":"DCX","owner":"DCX","address":"16422 W Commerce Dr","city":"Goodyear","state":"AZ","zip":"unknown","lat":33.410710914921,"lng":-112.412093042757,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Arizona"},{"name":"Microsoft Goodyear PHX70","operator":"Microsoft","owner":"Microsoft","address":"3785 N Citrus Rd","city":"Goodyear","state":"AZ","zip":"85395","lat":33.489853789127,"lng":-112.44408350743,"yearOnline":"2021","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Arizona"},{"name":"Stream PHXA Phoenix I-VII Campus","operator":"Stream Data Centers","owner":"Stream Data Centers","address":"2950 S. Litchfield Road","city":"Goodyear","state":"AZ","zip":"85338","lat":33.419505407501,"lng":-112.357840994231,"yearOnline":"unknown","powerMw":280,"sqft":2000000,"type":"hyperscale","status":"operational","region":"the U.S. state of Arizona"},{"name":"QTS Avondale Data Center","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"S Avondale Blvd & W Lower Buckeye Rd","city":"Avondale","state":"AZ","zip":"85353","lat":33.420693898826,"lng":-112.306286438117,"yearOnline":"unknown","powerMw":0,"sqft":1300000,"type":"hyperscale","status":"planned","region":"the U.S. state of Arizona"},{"name":"Microsoft Azure West US 3-Arizona","operator":"Microsoft Azure","owner":"Microsoft Azure","address":"12901 West Olive Avenue","city":"El Mirage","state":"AZ","zip":"85335","lat":33.565511169603,"lng":-112.337478831054,"yearOnline":"2021","powerMw":0,"sqft":244666,"type":"hyperscale","status":"operational","region":"the U.S. state of Arizona"},{"name":"MDC Nogales NOG1","operator":"MDC Data Centers","owner":"MDC Data Centers","address":"81 N Sonoita Ave","city":"Nogales","state":"AZ","zip":"85621","lat":31.335471985166,"lng":-110.943006646874,"yearOnline":"unknown","powerMw":0.2,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Arizona"},{"name":"Ark Data Centers Tucson","operator":"Ark Data Centers","owner":"Ark Data Centers","address":"1215 E Pennsylvania St","city":"Tucson","state":"AZ","zip":"85706","lat":32.171848883057,"lng":-110.95389698672,"yearOnline":"unknown","powerMw":2.072,"sqft":38000,"type":"colocation","status":"operational","region":"the U.S. state of Arizona"},{"name":"FirstDigital Tucson","operator":"FirstDigital","owner":"unknown","address":"3836 S Evans Blvd","city":"Tucson","state":"AZ","zip":"85714","lat":32.177503660888,"lng":-110.954411635531,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Arizona"},{"name":"Login DC1","operator":"Login, LLC","owner":"Login, LLC","address":"4003 East Speedway Boulevard, Ste 119","city":"Tucson","state":"AZ","zip":"85712","lat":32.236225746524,"lng":-110.907456171058,"yearOnline":"2001","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Arizona"},{"name":"Login DC2","operator":"Login, LLC","owner":"unknown","address":"1855 N 6th Ave","city":"Tucson","state":"AZ","zip":"85705","lat":32.244993803523,"lng":-110.968865248205,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Arizona"},{"name":"Lumen Tucson","operator":"Lumen","owner":"Lumen","address":"135 N. 6th Avenue","city":"Tucson","state":"AZ","zip":"85701","lat":32.22430270436,"lng":-110.968693512942,"yearOnline":"unknown","powerMw":0,"sqft":5000,"type":"telecom","status":"operational","region":"the U.S. state of Arizona"},{"name":"Simply Bits Vault","operator":"Simply Bits LLLC","owner":"unknown","address":"5225 N Sabino Canyon Rd","city":"Tucson","state":"AZ","zip":"85750","lat":32.30217742241,"lng":-110.824045594726,"yearOnline":"unknown","powerMw":0,"sqft":1000,"type":"colocation","status":"operational","region":"the U.S. state of Arizona"},{"name":"TECfusions Tucson / Tucson Tech Data Center","operator":"TECfusions","owner":"Aphorio Carter","address":"3701 E Columbia St","city":"Tucson","state":"AZ","zip":"85714","lat":32.172466817267,"lng":-110.91283692896,"yearOnline":"2004","powerMw":34.6,"sqft":213000,"type":"colocation","status":"operational","region":"the U.S. state of Arizona"},{"name":"Winsor Colocation","operator":"Winsor Consulting Group","owner":"Winsor Consulting Group","address":"3821 E Broadway Blvd","city":"Tucson","state":"AZ","zip":"85716","lat":32.221630148962,"lng":-110.911170518894,"yearOnline":"unknown","powerMw":2,"sqft":38000,"type":"colocation","status":"operational","region":"the U.S. state of Arizona"},{"name":"Flexential Phoenix - Deer Valley","operator":"Flexential","owner":"Flexential","address":"1850 W Deer Valley Rd","city":"Phoenix","state":"AZ","zip":"85027","lat":33.683909664064,"lng":-112.099299322612,"yearOnline":"unknown","powerMw":3.25,"sqft":109476,"type":"colocation","status":"operational","region":"the U.S. state of Arizona"},{"name":"ark data centers Tucson","operator":"ark data centers","owner":"ark data centers","address":"1215 East Pennsylvania Street","city":"Tucson","state":"AZ","zip":"85714","lat":32.171848883057,"lng":-110.95389698672,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Arizona"},{"name":"Waterbury Data Center (WAT)","operator":"TierPoint","owner":"TierPoint","address":"108 Bank Street, 5th Floor","city":"Waterbury","state":"CT","zip":"06702","lat":41.55438616807,"lng":-73.041037032516,"yearOnline":"unknown","powerMw":0,"sqft":3000,"type":"colocation","status":"operational","region":"the U.S. state of Connecticut"},{"name":"Omega Systems Stamford (Amnet)","operator":"Omega Systems","owner":"Omega Systems","address":"26 Fahey Street","city":"Stamford","state":"CT","zip":"06907","lat":41.091472798493,"lng":-73.517633616591,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Connecticut"},{"name":"Crown Castle Stamford 1","operator":"Crown Castle","owner":"Crown Castle","address":"1351 Washington Boulevard","city":"Stamford","state":"CT","zip":"06902","lat":41.058071957614,"lng":-73.543290464635,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Connecticut"},{"name":"Lumen Stamford","operator":"Lumen","owner":"Lumen","address":"21 Harborview Avenue","city":"Stamford","state":"CT","zip":"06902","lat":41.048939722367,"lng":-73.530330265159,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Connecticut"},{"name":"Trumbull Data Center (HVN10)","operator":"Aphorio Carter","owner":"Aphorio Carter","address":"60 & 80 Merritt Boulevard","city":"Trumbull","state":"CT","zip":"06611","lat":41.240871057074,"lng":-73.146312540288,"yearOnline":"unknown","powerMw":15,"sqft":227552,"type":"colocation","status":"operational","region":"the U.S. state of Connecticut"},{"name":"Crown Castle Hartford","operator":"Crown Castle","owner":"Crown Castle","address":"960 Main Street","city":"Hartford","state":"CT","zip":"06103","lat":41.768182854203,"lng":-72.672985503988,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Connecticut"},{"name":"NWI Networks Data Center","operator":"New Wave Industries, Inc.","owner":"New Wave Industries, Inc.","address":"135 Day Street","city":"Newington","state":"CT","zip":"06111","lat":41.719964042817,"lng":-72.731709726677,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Connecticut"},{"name":"Lumen Hartford 1","operator":"Lumen","owner":"Lumen","address":"155 Locust Street","city":"Hartford","state":"CT","zip":"06114","lat":41.745296057289,"lng":-72.664568559544,"yearOnline":"unknown","powerMw":0,"sqft":11000,"type":"telecom","status":"operational","region":"the U.S. state of Connecticut"},{"name":"CVM Data Center","operator":"CVM","owner":"CVM","address":"780 East Main Street","city":"Branford","state":"CT","zip":"06405","lat":41.307828918932,"lng":-72.751843672125,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Connecticut"},{"name":"ChimeNet Data Center","operator":"ChimeNet, Inc.","owner":"ChimeNet, Inc.","address":"110 Barnes Road","city":"Wallingford","state":"CT","zip":"06492","lat":41.485809847294,"lng":-72.801696408632,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Connecticut"},{"name":"Cloudsmart 1 Branford Data Center","operator":"Cloudsmart","owner":"Cloudsmart","address":"4 Pin Oak Drive","city":"Branford","state":"CT","zip":"06405","lat":41.297541125006,"lng":-72.760386939776,"yearOnline":"unknown","powerMw":0,"sqft":20000,"type":"colocation","status":"operational","region":"the U.S. state of Connecticut"},{"name":"Lumen New Haven","operator":"Lumen","owner":"Lumen","address":"54 Meadow Street","city":"New Haven","state":"CT","zip":"06519","lat":41.299793115851,"lng":-72.925887913027,"yearOnline":"unknown","powerMw":0,"sqft":13294,"type":"telecom","status":"operational","region":"the U.S. state of Connecticut"},{"name":"Cervalis – Connecticut Data Center","operator":"Cervalis","owner":"Cervalis","address":"4 Armstrong Road","city":"Shelton","state":"CT","zip":"06484","lat":41.266266528077,"lng":-73.129010278005,"yearOnline":"unknown","powerMw":16,"sqft":168000,"type":"colocation","status":"unknown","region":"the U.S. state of Connecticut"},{"name":"HorizonIQ Connecticut Data Center (Danbury)","operator":"HorizonIQ","owner":"HorizonIQ","address":"60 Backus Avenue","city":"Danbury","state":"CT","zip":"unknown","lat":41.369323479884,"lng":-73.492642633802,"yearOnline":"unknown","powerMw":0,"sqft":12000,"type":"colocation","status":"operational","region":"the U.S. state of Connecticut"},{"name":"HorizonIQ Danbury Data Center (Backus 70)","operator":"HorizonIQ","owner":"HorizonIQ","address":"70 Backus Avenue","city":"Danbury","state":"CT","zip":"unknown","lat":41.369160343734,"lng":-73.4927294306,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Connecticut"},{"name":"Gray Wolf: Bristol, CT","operator":"Gray Wolf Data Centers","owner":"Gray Wolf Data Centers","address":"234 Riverside Avenue #72","city":"Bristol","state":"CT","zip":"unknown","lat":41.670002613076,"lng":-72.934103879799,"yearOnline":"unknown","powerMw":3,"sqft":0,"type":"edge","status":"planned","region":"the U.S. state of Connecticut"},{"name":"Wallingford Data Center","operator":"Charter Development LLC","owner":"Charter Development LLC","address":"1181 Barnes Road","city":"Wallingford","state":"CT","zip":"unknown","lat":41.477478883928,"lng":-72.765646471964,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"planned","region":"the U.S. state of Connecticut"},{"name":"Lumen Stamford","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"21 Harborview Ave","city":"Stamford","state":"CT","zip":"unknown","lat":41.048939722367,"lng":-73.530330265159,"yearOnline":"unknown","powerMw":0,"sqft":23125,"type":"colocation","status":"operational","region":"the U.S. state of Connecticut"},{"name":"Fibertech Networks - New Haven Data Center","operator":"Fibertech Networks","owner":"Fibertech Networks","address":"55 Church St.","city":"New Haven","state":"CT","zip":"06510","lat":41.305147656824,"lng":-72.926323880024,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Connecticut"},{"name":"State of Connecticut Groton Data Center (GDC)","operator":"State of Connecticut DAS Bureau of Information Technology Solutions (BITS)","owner":"Pfizer (building/campus; leased to State of Connecticut)","address":"Pfizer campus, Building 230, off Eastern Point Road","city":"Groton","state":"CT","zip":"unknown","lat":41.34163906909,"lng":-72.078662709576,"yearOnline":"unknown","powerMw":0,"sqft":9000,"type":"enterprise","status":"operational","region":"the U.S. state of Connecticut"},{"name":"CoreSite DE1 (Denver Gas & Electric Building)","operator":"CoreSite","owner":"American Tower","address":"910 15th St","city":"Denver","state":"CO","zip":"80202","lat":39.745649819799,"lng":-104.995335623313,"yearOnline":"unknown","powerMw":0,"sqft":152000,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"CoreSite DE2","operator":"CoreSite","owner":"American Tower","address":"639 E 18th Ave","city":"Denver","state":"CO","zip":"80203","lat":39.744911826222,"lng":-104.979411471055,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"CoreSite DE3","operator":"CoreSite","owner":"American Tower","address":"4900 Race St","city":"Denver","state":"CO","zip":"80216","lat":39.785254536223,"lng":-104.96341656732,"yearOnline":"2026","powerMw":0,"sqft":180000,"type":"colocation","status":"under-construction","region":"the U.S. state of Colorado"},{"name":"Iron Mountain DEN-1","operator":"Iron Mountain","owner":"Iron Mountain","address":"4300 Brighton Blvd","city":"Denver","state":"CO","zip":"80216","lat":39.777395481621,"lng":-104.969580964097,"yearOnline":"unknown","powerMw":14,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"Equinix DE1","operator":"Equinix","owner":"Equinix","address":"9706 East Easter Avenue, Suite 160","city":"Englewood","state":"CO","zip":"80112","lat":39.587741991979,"lng":-104.876289716155,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"Equinix DE2","operator":"Equinix","owner":"Equinix","address":"335 Inverness Drive South","city":"Englewood","state":"CO","zip":"80112","lat":39.561026913302,"lng":-104.858662038733,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"EdgeConneX Denver DEN02","operator":"EdgeConneX","owner":"EdgeConneX","address":"8451 Highfield Pkwy","city":"Englewood","state":"CO","zip":"80112","lat":39.561981915686,"lng":-104.826778663824,"yearOnline":"unknown","powerMw":0,"sqft":115500,"type":"edge","status":"operational","region":"the U.S. state of Colorado"},{"name":"H5 Data Centers Denver Campus","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"5350 S Valentia Way","city":"Greenwood Village","state":"CO","zip":"unknown","lat":39.618197840261,"lng":-104.89218412139,"yearOnline":"unknown","powerMw":0,"sqft":300000,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"DataBank DEN3 - 1500 Champa","operator":"DataBank","owner":"DataBank","address":"1500 Champa Street","city":"Denver","state":"CO","zip":"unknown","lat":39.745594069833,"lng":-104.995045524395,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"Novva Colorado Springs","operator":"Novva Data Centers","owner":"Novva Data Centers","address":"650 Sybilla Lane","city":"Colorado Springs","state":"CO","zip":"80921","lat":39.0130562739,"lng":-104.816630431345,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"QTS Colorado Springs","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"311 S Rockrimmon Blvd","city":"Colorado Springs","state":"CO","zip":"80919","lat":38.922119738562,"lng":-104.842676866791,"yearOnline":"unknown","powerMw":14,"sqft":249958,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"T5@Colorado Springs","operator":"T5 Data Centers","owner":"T5 Data Centers","address":"3233 Janitell Rd","city":"Colorado Springs","state":"CO","zip":"unknown","lat":38.79658571097,"lng":-104.794483127674,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"Windstream Colorado Springs","operator":"Windstream","owner":"Windstream","address":"1780 Jet Stream Dr","city":"Colorado Springs","state":"CO","zip":"80921","lat":38.996927432193,"lng":-104.79277979835,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Colorado"},{"name":"Verizon Wireless Colorado Springs (existing)","operator":"Verizon Wireless","owner":"Verizon Wireless","address":"4323 Arrowswest Dr","city":"Colorado Springs","state":"CO","zip":"unknown","lat":38.895430211369,"lng":-104.86969641591,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Colorado"},{"name":"Verizon Wireless Colorado Springs (second data center)","operator":"Verizon Wireless","owner":"Verizon Wireless","address":"Off Garden of the Gods Rd, adjacent to 4323 Arrowswest Dr","city":"Colorado Springs","state":"CO","zip":"unknown","lat":38.895430211369,"lng":-104.86969641591,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"planned","region":"the U.S. state of Colorado"},{"name":"Lumen Denver 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"1850 Pearl Street","city":"Denver","state":"CO","zip":"unknown","lat":39.745531663304,"lng":-104.979805697867,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Colorado"},{"name":"American Tower EDC Denver","operator":"American Tower","owner":"American Tower","address":"5041 Broadway","city":"Denver","state":"CO","zip":"unknown","lat":39.788148534731,"lng":-104.987649947654,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Colorado"},{"name":"FRII Data Center","operator":"FRII","owner":"FRII","address":"3350 Eastbrook Dr","city":"Fort Collins","state":"CO","zip":"80525","lat":40.541757175083,"lng":-105.041421371946,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"CorKat Data Loveland","operator":"CorKat Data","owner":"CorKat Data","address":"451 N Railroad Ave #101, 1st Floor","city":"Loveland","state":"CO","zip":"80537","lat":40.396017357571,"lng":-105.076689441489,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"Earthnet Data Center","operator":"Earthnet","owner":"Earthnet","address":"4735 Walnut St","city":"Boulder","state":"CO","zip":"unknown","lat":40.01940155362,"lng":-105.2422776806,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"Iron Mountain DEN-1","operator":"Iron Mountain Data Centers","owner":"Iron Mountain Data Centers","address":"4300 Brighton Blvd, Denver, CO 80216","city":"Denver","state":"CO","zip":"80216","lat":39.777395481621,"lng":-104.969580964097,"yearOnline":"unknown","powerMw":14,"sqft":100,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"Equinix DE1","operator":"Equinix","owner":"Equinix","address":"9706 East Easter Avenue, Suite 160, Englewood, CO","city":"Englewood","state":"CO","zip":"unknown","lat":39.587741991979,"lng":-104.876289716155,"yearOnline":"unknown","powerMw":10,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"Equinix DE2","operator":"Equinix","owner":"Equinix","address":"335 Inverness Drive South, Englewood, CO 80112","city":"Englewood","state":"CO","zip":"80112","lat":39.561026913302,"lng":-104.858662038733,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"EdgeConneX Denver (DEN02)","operator":"EdgeConneX","owner":"EdgeConneX","address":"8451 Highfield Pkwy, Englewood, CO 80112","city":"Englewood","state":"CO","zip":"80112","lat":39.561981915686,"lng":-104.826778663824,"yearOnline":"unknown","powerMw":0,"sqft":115500,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"H5 Data Centers – Denver (DTC)","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"5350 S Valentia Way, Greenwood Village, CO","city":"Greenwood Village","state":"CO","zip":"unknown","lat":39.618197840261,"lng":-104.89218412139,"yearOnline":"unknown","powerMw":0,"sqft":300000,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"Novva Colorado Springs","operator":"Novva Data Centers","owner":"Novva Data Centers","address":"650 Sybilla Lane, Colorado Springs, CO 80921","city":"Colorado Springs","state":"CO","zip":"80921","lat":39.0130562739,"lng":-104.816630431345,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"QTS Colorado Springs","operator":"QTS Data Centers","owner":"QTS Realty Trust","address":"311 S Rockrimmon Blvd, Colorado Springs, CO 80919","city":"Colorado Springs","state":"CO","zip":"80919","lat":38.922119738562,"lng":-104.842676866791,"yearOnline":"unknown","powerMw":0,"sqft":249958,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"T5@Colorado Springs","operator":"T5 Data Centers","owner":"T5 Data Centers","address":"3233 Janitell Rd, Colorado Springs, CO","city":"Colorado Springs","state":"CO","zip":"unknown","lat":38.79658571097,"lng":-104.794483127674,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"the U.S. state of Colorado"},{"name":"Windstream Colorado Springs Data Center","operator":"Windstream","owner":"Windstream","address":"1780 Jet Stream Dr, Colorado Springs, CO 80921, USA","city":"Colorado Springs","state":"CO","zip":"80921","lat":38.996927432193,"lng":-104.79277979835,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Colorado"},{"name":"Verizon Wireless Colorado Springs Data Center","operator":"Verizon","owner":"Verizon","address":"4323 Arrowswest Drive, Colorado Springs, CO","city":"Colorado Springs","state":"CO","zip":"unknown","lat":38.895430211369,"lng":-104.86969641591,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Colorado"},{"name":"DataBank Denver – 1500 Champa Street","operator":"DataBank","owner":"DataBank","address":"1500 Champa Street, Denver, CO","city":"Denver","state":"CO","zip":"unknown","lat":39.745594069833,"lng":-104.995045524395,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"American Tower EDC Denver","operator":"American Tower","owner":"American Tower","address":"5041 Broadway, Denver, Colorado","city":"Denver","state":"CO","zip":"unknown","lat":39.788148534731,"lng":-104.987649947654,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Colorado"},{"name":"FRII Data Center – Fort Collins","operator":"FRII","owner":"FRII","address":"3350 Eastbrook Dr, Fort Collins, CO","city":"Fort Collins","state":"CO","zip":"unknown","lat":40.541757175083,"lng":-105.041421371946,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"CorKat Data – Loveland","operator":"CorKat Data","owner":"CorKat Data","address":"451 N Railroad Ave #101, 1st Floor, Loveland, CO 80537","city":"Loveland","state":"CO","zip":"80537","lat":40.396017357571,"lng":-105.076689441489,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"Earthnet Data Center – Boulder","operator":"Earthnet","owner":"Earthnet","address":"4735 Walnut St, Boulder, CO","city":"Boulder","state":"CO","zip":"unknown","lat":40.01940155362,"lng":-105.2422776806,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"QTS Aurora–Denver Campus","operator":"QTS Data Centers","owner":"QTS Realty Trust","address":"1160 N Gun Club Rd, Aurora, CO","city":"Aurora","state":"CO","zip":"unknown","lat":39.736077496798,"lng":-104.714343469518,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"planned","region":"the U.S. state of Colorado"},{"name":"DataBank DEN2 – Centennial Data Center","operator":"DataBank","owner":"DataBank","address":"6900 South Peoria Street, Centennial, CO 80112","city":"Centennial","state":"CO","zip":"80112","lat":39.591822773129,"lng":-104.848016399095,"yearOnline":"unknown","powerMw":4,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Colorado"},{"name":"CoreSite MI2","operator":"CoreSite","owner":"CoreSite","address":"2100 NW 84th Avenue","city":"Miami","state":"FL","zip":"unknown","lat":25.793233928197,"lng":-80.332467948801,"yearOnline":"unknown","powerMw":0,"sqft":103000,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Dedicated Server Store Miami Data Center","operator":"Dedicated Server Store","owner":"Dedicated Server Store","address":"1953 NW 22nd Street","city":"Miami","state":"FL","zip":"33142","lat":25.797439591847,"lng":-80.22806420957,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"ServerPronto Miami Data Center","operator":"ServerPronto","owner":"ServerPronto","address":"3109 Grand Avenue","city":"Miami","state":"FL","zip":"33133","lat":25.728091249173,"lng":-80.243694994545,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Terremark Doral Regional DC-05","operator":"Terremark","owner":"Terremark","address":"1525 NW 98th Court","city":"Miami","state":"FL","zip":"33172","lat":25.787441497277,"lng":-80.355574008382,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Cogent Doral Data Center","operator":"Cogent","owner":"Cogent","address":"3701 NW 82nd Avenue","city":"Doral","state":"FL","zip":"33166","lat":25.808313959211,"lng":-80.329264265815,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"tw telecom Fort Lauderdale/Miami Data Center","operator":"tw telecom","owner":"tw telecom","address":"100 NE 3rd Avenue","city":"Fort Lauderdale","state":"FL","zip":"33301","lat":26.123347031616,"lng":-80.140467937333,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"Project Tango","operator":"Unknown Company","owner":"PBA Holdings","address":"20125 Southern Boulevard (State Road 80)","city":"Loxahatchee","state":"FL","zip":"33470","lat":26.68546077393,"lng":-80.367754870384,"yearOnline":"unknown","powerMw":0,"sqft":3690000,"type":"hyperscale","status":"planned","region":"the U.S. state of Florida"},{"name":"Franklin Exchange Tampa Data Center","operator":"H5 Data Centers / 365 Data Centers","owner":"H5 Data Centers / 365 Data Centers","address":"655 North Franklin Street, Suite 1000","city":"Tampa","state":"FL","zip":"33602","lat":27.94959248595,"lng":-82.458712703186,"yearOnline":"unknown","powerMw":0,"sqft":27300,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"400 N Tampa Street carrier/colocation facility","operator":"OneColo / WOW! Business / Cogent","owner":"OneColo / WOW! Business / Cogent","address":"400 N Tampa Street","city":"Tampa","state":"FL","zip":"33602","lat":27.947439488095,"lng":-82.45885454261,"yearOnline":"unknown","powerMw":0,"sqft":10000,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Centersquare TPA1-A / Cyxtera Tampa Data Center","operator":"Centersquare","owner":"Centersquare","address":"9310 Florida Palm Drive","city":"Tampa","state":"FL","zip":"33619","lat":27.944686775653,"lng":-82.351354410996,"yearOnline":"unknown","powerMw":9,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Flexential West Tampa Data Center","operator":"Flexential","owner":"Flexential","address":"9417 Corporate Lake Drive","city":"Tampa","state":"FL","zip":"33634","lat":28.035397580586,"lng":-82.540798435723,"yearOnline":"unknown","powerMw":1.81,"sqft":31600,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Flexential North Tampa Data Center","operator":"Flexential","owner":"Flexential","address":"8350 Parkedge Drive","city":"Tampa","state":"FL","zip":"33637","lat":28.072009809936,"lng":-82.368600775208,"yearOnline":"unknown","powerMw":3,"sqft":60166,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Hivelocity Hosting Tampa Data Center","operator":"Hivelocity Hosting","owner":"Hivelocity Hosting","address":"8010 Woodland Center Boulevard, #700","city":"Tampa","state":"FL","zip":"33614","lat":28.020229699754,"lng":-82.524095143477,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Hivelocity TPA2 Colo Data Center","operator":"Hivelocity","owner":"Hivelocity","address":"5908 Hampton Oaks Parkway, Suite D","city":"Tampa","state":"FL","zip":"33610","lat":28.001196799416,"lng":-82.359057560088,"yearOnline":"unknown","powerMw":0,"sqft":30200,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Verizon Tampa / XO Tampa Data Center","operator":"Verizon Communications Inc.","owner":"Verizon Communications Inc.","address":"5904-A Hampton Oaks Parkway","city":"Tampa","state":"FL","zip":"33610","lat":28.00130425946,"lng":-82.35905585437,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"Ace Host Tampa Data Center","operator":"Ace Host","owner":"Ace Host","address":"203 Marion Street","city":"Tampa","state":"FL","zip":"unknown","lat":27.946872800437,"lng":-82.455567074193,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Data-Tech Tampa Data Center","operator":"Data-Tech","owner":"Data-Tech","address":"7904 Hopi Place","city":"Tampa","state":"FL","zip":"33634","lat":28.018600314701,"lng":-82.529497928305,"yearOnline":"1984","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Cologix LAK1","operator":"Cologix","owner":"Cologix","address":"2850 Interstate Drive","city":"Lakeland","state":"FL","zip":"33805","lat":28.078954411081,"lng":-81.974694282909,"yearOnline":"2013","powerMw":0,"sqft":105000,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Inland Fiber Data Center","operator":"Inland Fiber & Data","owner":"Inland Fiber & Data","address":"199 Avenue B NW","city":"Winter Haven","state":"FL","zip":"33881","lat":28.024004094995,"lng":-81.72880070107,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Flexential Jacksonville Data Center","operator":"Flexential","owner":"Flexential","address":"4905 Belfort Road, Suite 145","city":"Jacksonville","state":"FL","zip":"32256","lat":30.247126940529,"lng":-81.583765306218,"yearOnline":"unknown","powerMw":1.39,"sqft":35184,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Cologix JAX1","operator":"Cologix","owner":"Cologix","address":"421 West Church Street","city":"Jacksonville","state":"FL","zip":"32202","lat":30.331280596345,"lng":-81.662586607583,"yearOnline":"unknown","powerMw":0,"sqft":11000,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Cologix JAX2","operator":"Cologix","owner":"Cologix","address":"4800 Spring Park Road","city":"Jacksonville","state":"FL","zip":"unknown","lat":30.274223626582,"lng":-81.613999439274,"yearOnline":"unknown","powerMw":0,"sqft":125000,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"TierPoint Jacksonville Data Center","operator":"TierPoint","owner":"TierPoint","address":"8324 Baymeadows Way","city":"Jacksonville","state":"FL","zip":"32256","lat":30.220681212476,"lng":-81.585107783183,"yearOnline":"unknown","powerMw":0,"sqft":120000,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Lumen Jacksonville 1","operator":"Lumen","owner":"Lumen","address":"4814 Philips Highway","city":"Jacksonville","state":"FL","zip":"32207","lat":30.272513954888,"lng":-81.62294658295,"yearOnline":"unknown","powerMw":0,"sqft":24000,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"Lumen Jacksonville 2","operator":"Lumen","owner":"Lumen","address":"608 W Adams Street","city":"Jacksonville","state":"FL","zip":"unknown","lat":30.329343611789,"lng":-81.66503196326,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"CoreSite OR1 / Atlantic.Net Orlando Colocation","operator":"CoreSite; Atlantic.Net hosts colocation in this building","owner":"American Tower Company","address":"9701 S John Young Parkway","city":"Orlando","state":"FL","zip":"32819","lat":28.426621382048,"lng":-81.422671514856,"yearOnline":"1994","powerMw":0,"sqft":129000,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"HostDime Orlando Data Center","operator":"HostDime","owner":"HostDime","address":"440 W Kennedy Boulevard, Suite 1","city":"Orlando","state":"FL","zip":"32810","lat":28.618407342941,"lng":-81.392295654883,"yearOnline":"unknown","powerMw":0,"sqft":25000,"type":"edge","status":"operational","region":"the U.S. state of Florida"},{"name":"Colo Solutions Orlando","operator":"Colo Solutions","owner":"Colo Solutions","address":"100 West Lucerne Circle, Suite 201","city":"Orlando","state":"FL","zip":"32801","lat":28.534182958318,"lng":-81.379805466132,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Lumen Orlando 1","operator":"Lumen","owner":"Lumen","address":"380 South Lake Destiny Drive","city":"Orlando","state":"FL","zip":"32810","lat":28.615505281528,"lng":-81.388632440028,"yearOnline":"unknown","powerMw":0,"sqft":35000,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"Lumen Orlando 2","operator":"Lumen","owner":"Lumen","address":"510 W Columbia Street","city":"Orlando","state":"FL","zip":"unknown","lat":28.527419143746,"lng":-81.384851522807,"yearOnline":"unknown","powerMw":0,"sqft":7400,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"Spiderhost Orlando Data Center","operator":"Spiderhost","owner":"Spiderhost","address":"142 West Lakeview Avenue","city":"Lake Mary","state":"FL","zip":"32746","lat":28.758147898931,"lng":-81.324053043307,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"SunGard Orlando Data Center","operator":"SunGard","owner":"SunGard","address":"300 Primera Boulevard, Suite 308","city":"Lake Mary","state":"FL","zip":"32746","lat":28.760661954392,"lng":-81.357621955215,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Florida"},{"name":"Tel-Networks Data Center","operator":"Tel-NetworksUSA, LLC","owner":"Tel-NetworksUSA, LLC","address":"885 S Charles Richard Beall Boulevard","city":"DeBary","state":"FL","zip":"32713","lat":28.845494048313,"lng":-81.322056776955,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Communication Square","operator":"Communication Square","owner":"Communication Square","address":"7108 S Kanner Highway","city":"Stuart","state":"FL","zip":"34997","lat":27.118360226501,"lng":-80.253464679989,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Florida"},{"name":"Data Shelter DS1","operator":"Data Shelter, LLC","owner":"Data Shelter, LLC","address":"2299 S Rock Road","city":"Fort Pierce","state":"FL","zip":"34945","lat":27.423754449706,"lng":-80.407532978506,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"unknown","region":"the U.S. state of Florida"},{"name":"Lumen Daytona Beach 1","operator":"Lumen","owner":"Lumen","address":"111 N Segrave Street","city":"Daytona Beach","state":"FL","zip":"32114","lat":29.210539925779,"lng":-81.024200180358,"yearOnline":"unknown","powerMw":0,"sqft":10000,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"SkyLink Naples","operator":"SkyLink Data Centers","owner":"SkyLink Data Centers","address":"801 Orchid Drive","city":"Naples","state":"FL","zip":"34102","lat":26.167426819522,"lng":-81.799959870736,"yearOnline":"unknown","powerMw":1,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Lumen Fort Myers 1","operator":"Lumen","owner":"Lumen","address":"1523 Seaboard Street","city":"Fort Myers","state":"FL","zip":"33916","lat":26.649120030029,"lng":-81.854191706796,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"Lumen Fort Myers 2","operator":"Lumen","owner":"Lumen","address":"1547 Seaboard Street","city":"Fort Myers","state":"FL","zip":"33916","lat":26.648834369285,"lng":-81.854426179779,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"Satcom Direct SD Data Center","operator":"Satcom Direct","owner":"Satcom Direct","address":"8635 Holiday Springs Road","city":"Melbourne","state":"FL","zip":"32940","lat":28.260250317799,"lng":-80.695260719437,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Florida"},{"name":"ColoBarn Melbourne Data Center","operator":"ColoBarn","owner":"ColoBarn","address":"3225 Jordan Boulevard","city":"Malabar","state":"FL","zip":"32950","lat":27.983223591141,"lng":-80.557809970792,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Creative Network Innovations CNI Melbourne Data Center","operator":"Creative Network Innovations","owner":"Creative Network Innovations","address":"6905 N Wickham Road","city":"Melbourne","state":"FL","zip":"32940","lat":28.224727259746,"lng":-80.677439969337,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"EdgeConneX Tallahassee EDCTAL01","operator":"EdgeConneX","owner":"EdgeConneX","address":"1531 Commonwealth Business Drive, Units 404-408","city":"Tallahassee","state":"FL","zip":"32303","lat":30.470958612118,"lng":-84.354622577373,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Florida"},{"name":"Pavlov Media Tallahassee","operator":"Pavlov Media","owner":"Pavlov Media","address":"215 W Carolina Street","city":"Tallahassee","state":"FL","zip":"32301","lat":30.446846996682,"lng":-84.283325097173,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Lumen Tallahassee","operator":"Lumen","owner":"Lumen","address":"619 Mabry Street","city":"Tallahassee","state":"FL","zip":"32304","lat":30.43672069048,"lng":-84.328348982319,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"Lumen Tallahassee 2","operator":"Lumen","owner":"Lumen","address":"1416 S Adams Street","city":"Tallahassee","state":"FL","zip":"32304","lat":30.430242793951,"lng":-84.281940126713,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Florida"},{"name":"365 Data Centers Tampa","operator":"365 Data Centers","owner":"365 Data Centers","address":"655 North Franklin Street","city":"Tampa","state":"FL","zip":"33602","lat":27.94959248595,"lng":-82.458712703186,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"OneColo Tampa Data Center","operator":"OneColo","owner":"OneColo","address":"400 N Tampa St","city":"Tampa","state":"FL","zip":"unknown","lat":27.947439488095,"lng":-82.45885454261,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"Hivelocity Tampa 2 (TPA2)","operator":"Hivelocity","owner":"Hivelocity","address":"5908 Hampton Oaks Pkwy, Suite D","city":"Tampa","state":"FL","zip":"33610","lat":28.001196799416,"lng":-82.359057560088,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Florida"},{"name":"EdgeConneX EDCTAL01 Tallahassee","operator":"EdgeConneX","owner":"EdgeConneX","address":"1531 Commonwealth Business Dr, Units 404-408","city":"Tallahassee","state":"FL","zip":"32303","lat":30.470958612118,"lng":-84.354622577373,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Florida"},{"name":"AlohaNAP / HAII1","operator":"1547 Critical Systems Realty","owner":"1547 Critical Systems Realty and Harrison Street","address":"91-340 Farrington Hwy, Kapolei, HI 96707","city":"Kapolei","state":"HI","zip":"96707","lat":21.338546015063,"lng":-158.09215611219,"yearOnline":"2015","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Hawaii"},{"name":"Hawaiian Telcom - Endeavor Data Center","operator":"Hawaiian Telcom","owner":"Hawaiian Telcom","address":"2339 Kamehameha Highway, Honolulu, HI 96819","city":"Honolulu","state":"HI","zip":"96819","lat":21.332236074838,"lng":-157.886805522118,"yearOnline":"unknown","powerMw":0,"sqft":6500,"type":"colocation","status":"operational","region":"the U.S. state of Hawaii"},{"name":"Servpac MTP Data Center","operator":"Servpac","owner":"Servpac","address":"200 Kahelu Ave, Mililani, HI 96789","city":"Mililani","state":"HI","zip":"96789","lat":21.479944220045,"lng":-158.020246439721,"yearOnline":"2021","powerMw":0,"sqft":30000,"type":"colocation","status":"operational","region":"the U.S. state of Hawaii"},{"name":"Servpac Puahale Data Center","operator":"Servpac","owner":"Servpac","address":"1931 N King St, Honolulu, HI 96819","city":"Honolulu","state":"HI","zip":"96819","lat":21.332057990957,"lng":-157.878169378728,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Hawaii"},{"name":"Cogent Data Center - Hawaii","operator":"Cogent Communications","owner":"Cogent Communications","address":"96-1402 Waihona Place, Pearl City, HI 96782","city":"Pearl City","state":"HI","zip":"96782","lat":21.41149,"lng":-157.97477,"yearOnline":"unknown","powerMw":0.8,"sqft":10322,"type":"wholesale","status":"operational","region":"the U.S. state of Hawaii"},{"name":"University of Hawaii ITS Data Center / Information Technology Center","operator":"University of Hawaii Information Technology Services","owner":"University of Hawaii","address":"2520 Correa Road, Honolulu, HI 96822","city":"Honolulu","state":"HI","zip":"96822","lat":21.298681247507,"lng":-157.816810202601,"yearOnline":"2014","powerMw":0,"sqft":74000,"type":"enterprise","status":"operational","region":"the U.S. state of Hawaii"},{"name":"Maui High Performance Computing Center (MHPCC) DSRC","operator":"University of Hawaii / DoD High Performance Computing Modernization Program","owner":"U.S. Department of Defense / U.S. Air Force Research Laboratory","address":"550 Lipoa Parkway, Kihei, HI 96753","city":"Kihei","state":"HI","zip":"96753","lat":20.74929227073,"lng":-156.439610266824,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Hawaii"},{"name":"Cogent Data Center - Pearl City","operator":"Cogent Communications","owner":"Cogent Communications","address":"96-1402 Waihona Place, Pearl City, HI","city":"Pearl City","state":"HI","zip":"unknown","lat":21.411282704011,"lng":-157.974039688559,"yearOnline":"unknown","powerMw":0.8,"sqft":10322,"type":"colocation","status":"operational","region":"the U.S. state of Hawaii"},{"name":"State of Hawaii Kalanimoku Building Data Center","operator":"State of Hawaii","owner":"State of Hawaii","address":"Kalanimoku Building, 1151 Punchbowl Street, Honolulu, HI 96813","city":"Honolulu","state":"HI","zip":"96813","lat":21.30564,"lng":-157.85558,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"unknown","region":"the U.S. state of Hawaii"},{"name":"MHPCC DSRC (Maui High Performance Computing Center)","operator":"MHPCC DSRC","owner":"MHPCC DSRC","address":"550 Lipoa Parkway, Kihei, HI","city":"Kihei","state":"HI","zip":"unknown","lat":20.74929227073,"lng":-156.439610266824,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Hawaii"},{"name":"Cologix DSM1","operator":"Cologix","owner":"Cologix","address":"606 Walnut Street","city":"Des Moines","state":"IA","zip":"50309","lat":41.585820653182,"lng":-93.624743787798,"yearOnline":"unknown","powerMw":0.6,"sqft":4000,"type":"colocation","status":"operational","region":"the U.S. state of Iowa"},{"name":"Cologix DSM2","operator":"Cologix","owner":"Cologix","address":"1205 Technology Parkway","city":"Cedar Falls","state":"IA","zip":"50613","lat":42.473279074594,"lng":-92.458324609,"yearOnline":"unknown","powerMw":1,"sqft":24000,"type":"colocation","status":"operational","region":"the U.S. state of Iowa"},{"name":"Aureon Downtown / 616 Data Center","operator":"Aureon","owner":"Aureon","address":"616 10th Street","city":"Des Moines","state":"IA","zip":"50309","lat":41.587557390614,"lng":-93.630604751933,"yearOnline":"unknown","powerMw":1,"sqft":30000,"type":"colocation","status":"operational","region":"the U.S. state of Iowa"},{"name":"LightEdge Des Moines Data Center #1 / Altoona I","operator":"LightEdge","owner":"LightEdge","address":"1435 Northridge Circle","city":"Altoona","state":"IA","zip":"50009","lat":41.667158473289,"lng":-93.456684889804,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"colocation","status":"operational","region":"the U.S. state of Iowa"},{"name":"LightEdge Des Moines Data Center #2 / Altoona II","operator":"LightEdge","owner":"LightEdge","address":"1401 Northridge Circle","city":"Altoona","state":"IA","zip":"50009","lat":41.666161927876,"lng":-93.456659444304,"yearOnline":"unknown","powerMw":6,"sqft":48000,"type":"colocation","status":"operational","region":"the U.S. state of Iowa"},{"name":"Ark Cedar Rapids (Marion) Data Center","operator":"Ark Data Centers","owner":"Ark Data Centers","address":"5055 Rec Drive","city":"Marion","state":"IA","zip":"52302","lat":42.0537478639,"lng":-91.551869227257,"yearOnline":"unknown","powerMw":12,"sqft":19000,"type":"colocation","status":"operational","region":"the U.S. state of Iowa"},{"name":"Enseva Hiawatha Datacenter","operator":"Enseva","owner":"Enseva","address":"755 Metzger Drive","city":"Hiawatha","state":"IA","zip":"52233","lat":42.05676215588,"lng":-91.679666892415,"yearOnline":"unknown","powerMw":999,"sqft":19000,"type":"colocation","status":"operational","region":"the U.S. state of Iowa"},{"name":"Bluebird Quad Cities Data Center","operator":"Bluebird Network","owner":"Bluebird Network","address":"2701 Devils Glen Road","city":"Bettendorf","state":"IA","zip":"52722","lat":41.550022641041,"lng":-90.483510062784,"yearOnline":"unknown","powerMw":6,"sqft":57000,"type":"colocation","status":"operational","region":"the U.S. state of Iowa"},{"name":"Long Lines Data Center","operator":"Long Lines Broadband","owner":"Long Lines Broadband","address":"4647 Stone Avenue","city":"Sioux City","state":"IA","zip":"51106","lat":42.479223877575,"lng":-96.346135033499,"yearOnline":"2008","powerMw":999,"sqft":3972,"type":"colocation","status":"operational","region":"the U.S. state of Iowa"},{"name":"FiberComm 713 Nebraska St","operator":"FiberComm LC","owner":"FiberComm LC","address":"713 Nebraska Street","city":"Sioux City","state":"IA","zip":"51101","lat":42.497601763705,"lng":-96.403571291017,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"telecom","status":"operational","region":"the U.S. state of Iowa"},{"name":"SFN IA-Davenport","operator":"South Front Networks","owner":"South Front Networks","address":"2814 North Clark Street","city":"Davenport","state":"IA","zip":"52804","lat":41.548232441772,"lng":-90.620826974078,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"telecom","status":"operational","region":"the U.S. state of Iowa"},{"name":"Consolidated / Fidium Des Moines","operator":"Consolidated Communications","owner":"Consolidated Communications","address":"400 Locust Street, Suite 190","city":"Des Moines","state":"IA","zip":"50309","lat":41.587215779871,"lng":-93.622910052188,"yearOnline":"unknown","powerMw":999,"sqft":500,"type":"telecom","status":"operational","region":"the U.S. state of Iowa"},{"name":"InfoBunker","operator":"InfoBunker","owner":"InfoBunker","address":"3101 Ingersoll Avenue","city":"Des Moines","state":"IA","zip":"50312","lat":41.586229917797,"lng":-93.659388077925,"yearOnline":"unknown","powerMw":999,"sqft":65000,"type":"colocation","status":"operational","region":"the U.S. state of Iowa"},{"name":"Windstream Des Moines","operator":"Windstream","owner":"Windstream","address":"3540 SW 61st Street","city":"Des Moines","state":"IA","zip":"50321","lat":41.551783836829,"lng":-93.700044192057,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"telecom","status":"operational","region":"the U.S. state of Iowa"},{"name":"Lumen Des Moines","operator":"Lumen","owner":"Lumen","address":"4550 Carlisle Road","city":"Pleasant Hill","state":"IA","zip":"50327","lat":41.557599021087,"lng":-93.525489840934,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"edge","status":"operational","region":"the U.S. state of Iowa"},{"name":"US Signal IA01 Des Moines Data Center","operator":"US Signal","owner":"US Signal","address":"390 N Alices Road","city":"Waukee","state":"IA","zip":"50263","lat":41.621852218633,"lng":-93.85294430975,"yearOnline":"2009","powerMw":0.194,"sqft":1889,"type":"colocation","status":"operational","region":"the U.S. state of Iowa"},{"name":"IP Pathways Urbandale","operator":"IP Pathways","owner":"IP Pathways","address":"3600 109th Street","city":"Urbandale","state":"IA","zip":"50322","lat":41.627532295891,"lng":-93.767161491184,"yearOnline":"unknown","powerMw":5,"sqft":5817,"type":"colocation","status":"operational","region":"the U.S. state of Iowa"},{"name":"Heartland Technology Data Center","operator":"Heartland Technology","owner":"Heartland Technology","address":"1151 12th Street","city":"Jesup","state":"IA","zip":"50648","lat":42.470141453271,"lng":-92.054368584191,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"colocation","status":"operational","region":"the U.S. state of Iowa"},{"name":"Global Reach Ames","operator":"Global Reach Internet Productions, LLC","owner":"Global Reach Internet Productions, LLC","address":"2321 N Loop Drive, Suite 210","city":"Ames","state":"IA","zip":"50010","lat":42.001123839078,"lng":-93.633858822671,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"edge","status":"operational","region":"the U.S. state of Iowa"},{"name":"QTS Cedar Rapids Campus (Big Cedar Industrial Center)","operator":"QTS","owner":"QTS","address":"Edgewood Road SW & 76th Avenue SW","city":"Cedar Rapids","state":"IA","zip":"52404","lat":41.905738379924,"lng":-91.715249067404,"yearOnline":"unknown","powerMw":616,"sqft":1400000,"type":"hyperscale","status":"under-construction","region":"the U.S. state of Iowa"},{"name":"Microsoft Project Alluvion - Building 1","operator":"Microsoft","owner":"Microsoft","address":"550 White Crane Road, Building 1","city":"West Des Moines","state":"IA","zip":"50265","lat":41.514972737822,"lng":-93.710163837583,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"hyperscale","status":"operational","region":"the U.S. state of Iowa"},{"name":"Microsoft Project Alluvion - Building 2","operator":"Microsoft","owner":"Microsoft","address":"550 White Crane Road, Building 2","city":"West Des Moines","state":"IA","zip":"50265","lat":41.514972737822,"lng":-93.710163837583,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"hyperscale","status":"operational","region":"the U.S. state of Iowa"},{"name":"Microsoft Project Alluvion - Building 3","operator":"Microsoft","owner":"Microsoft","address":"550 White Crane Road, Building 3","city":"West Des Moines","state":"IA","zip":"50265","lat":41.514972737822,"lng":-93.710163837583,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"hyperscale","status":"operational","region":"the U.S. state of Iowa"},{"name":"Microsoft Project Alluvion - Building 4","operator":"Microsoft","owner":"Microsoft","address":"550 White Crane Road, Building 4","city":"West Des Moines","state":"IA","zip":"50265","lat":41.514972737822,"lng":-93.710163837583,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"hyperscale","status":"operational","region":"the U.S. state of Iowa"},{"name":"Microsoft Project Alluvion - Building 7","operator":"Microsoft","owner":"Microsoft","address":"550 White Crane Road, Building 7","city":"West Des Moines","state":"IA","zip":"50265","lat":41.514972737822,"lng":-93.710163837583,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"hyperscale","status":"operational","region":"the U.S. state of Iowa"},{"name":"Microsoft Project Alluvion - Building 8","operator":"Microsoft","owner":"Microsoft","address":"550 White Crane Road, Building 8","city":"West Des Moines","state":"IA","zip":"50265","lat":41.514972737822,"lng":-93.710163837583,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"hyperscale","status":"operational","region":"the U.S. state of Iowa"},{"name":"Meta Altoona - Building 1","operator":"Meta","owner":"Meta","address":"100 Share Way NW","city":"Altoona","state":"IA","zip":"50009","lat":41.66336120098,"lng":-93.512289939229,"yearOnline":"unknown","powerMw":42,"sqft":441566,"type":"hyperscale","status":"operational","region":"the U.S. state of Iowa"},{"name":"Meta Altoona - Building 6","operator":"Meta","owner":"Meta","address":"1100 Share Way NW","city":"Altoona","state":"IA","zip":"50009","lat":41.664244826027,"lng":-93.517264785639,"yearOnline":"2020","powerMw":48,"sqft":999,"type":"hyperscale","status":"operational","region":"the U.S. state of Iowa"},{"name":"Enseva Hiawatha Data Center","operator":"Enseva","owner":"Enseva","address":"755 Metzger Dr","city":"Hiawatha","state":"IA","zip":"52233","lat":42.05676215588,"lng":-91.679666892415,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Iowa"},{"name":"FiberComm Sioux City Data Center","operator":"FiberComm LC","owner":"FiberComm LC","address":"713 Nebraska St","city":"Sioux City","state":"IA","zip":"unknown","lat":42.497601763705,"lng":-96.403571291017,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Iowa"},{"name":"Consolidated Communications Des Moines Data Center","operator":"Consolidated Communications","owner":"Consolidated Communications","address":"400 Locust St","city":"Des Moines","state":"IA","zip":"unknown","lat":41.587215779871,"lng":-93.622910052188,"yearOnline":"unknown","powerMw":0,"sqft":500,"type":"telecom","status":"operational","region":"the U.S. state of Iowa"},{"name":"Windstream Des Moines Data Center","operator":"Windstream","owner":"Windstream","address":"3540 SW 61st St","city":"Des Moines","state":"IA","zip":"unknown","lat":41.551783836829,"lng":-93.700044192057,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Iowa"},{"name":"Heartland Technology Jesup Data Center","operator":"Heartland Technology","owner":"Heartland Technology","address":"1151 12th St","city":"Jesup","state":"IA","zip":"50648","lat":42.470141453271,"lng":-92.054368584191,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Iowa"},{"name":"QTS Cedar Rapids I Data Center","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"Edgewood Rd SW & 76th Ave SW","city":"Cedar Rapids","state":"IA","zip":"52404","lat":41.905738379924,"lng":-91.715249067404,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"under-construction","region":"the U.S. state of Iowa"},{"name":"Lifeline Eastgate Data Center","operator":"Lifeline Data Centers","owner":"Lifeline Data Centers","address":"401 N Shadeland Ave, Indianapolis, IN 46219","city":"Indianapolis","state":"IN","zip":"46219","lat":39.777540128402,"lng":-86.045305931083,"yearOnline":"unknown","powerMw":0,"sqft":80000,"type":"colocation","status":"operational","region":"the U.S. state of Indiana"},{"name":"Lifeline Fort Wayne Data Center","operator":"Lifeline Data Centers","owner":"Lifeline Data Centers","address":"7601 S Anthony Blvd, Fort Wayne, IN 46816","city":"Fort Wayne","state":"IN","zip":"46816","lat":41.014924115545,"lng":-85.112085221586,"yearOnline":"unknown","powerMw":0,"sqft":84000,"type":"colocation","status":"operational","region":"the U.S. state of Indiana"},{"name":"701 Indy Telcom Center","operator":"Netrality Data Centers","owner":"Netrality Data Centers","address":"701 West Henry Street, Indianapolis, IN 46225","city":"Indianapolis","state":"IN","zip":"46225","lat":39.759837992799,"lng":-86.170915708777,"yearOnline":"unknown","powerMw":0,"sqft":14500,"type":"colocation","status":"operational","region":"the U.S. state of Indiana"},{"name":"733 Indy Telcom Center","operator":"Netrality Data Centers","owner":"Netrality Data Centers","address":"733 West Henry Street, Indianapolis, IN 46225","city":"Indianapolis","state":"IN","zip":"46225","lat":39.759832559245,"lng":-86.171255986099,"yearOnline":"unknown","powerMw":0,"sqft":40000,"type":"colocation","status":"operational","region":"the U.S. state of Indiana"},{"name":"DataBank IND1","operator":"DataBank","owner":"DataBank","address":"731 West Henry Street, Indianapolis, IN 46225","city":"Indianapolis","state":"IN","zip":"46225","lat":39.759832898842,"lng":-86.171234718766,"yearOnline":"unknown","powerMw":2.1,"sqft":16950,"type":"colocation","status":"operational","region":"the U.S. state of Indiana"},{"name":"DataBank IND2","operator":"DataBank","owner":"DataBank","address":"650 West Henry Street, Indianapolis, IN 46225","city":"Indianapolis","state":"IN","zip":"46225","lat":39.759961049359,"lng":-86.170387121171,"yearOnline":"unknown","powerMw":3.75,"sqft":31080,"type":"colocation","status":"operational","region":"the U.S. state of Indiana"},{"name":"US Signal IN01 Indianapolis Data Center","operator":"US Signal","owner":"US Signal","address":"701 W Henry St, Indianapolis, IN 46225","city":"Indianapolis","state":"IN","zip":"46225","lat":39.759837992799,"lng":-86.170915708777,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Indiana"},{"name":"US Signal IN03 South Bend Data Center","operator":"US Signal","owner":"US Signal","address":"506 W South St #260, South Bend, IN 46601","city":"South Bend","state":"IN","zip":"46601","lat":41.669475811951,"lng":-86.25613150762,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Indiana"},{"name":"OTAVA Indianapolis Data Center","operator":"OTAVA","owner":"OTAVA","address":"505 West Merrill Street, Indianapolis, IN","city":"Indianapolis","state":"IN","zip":"unknown","lat":39.759127673362,"lng":-86.167551882938,"yearOnline":"unknown","powerMw":0,"sqft":44000,"type":"colocation","status":"operational","region":"the U.S. state of Indiana"},{"name":"Expedient Indianapolis Data Center","operator":"Expedient","owner":"Expedient","address":"701 Congressional Blvd, Carmel, IN 46032","city":"Carmel","state":"IN","zip":"46032","lat":39.961162543287,"lng":-86.147684525217,"yearOnline":"unknown","powerMw":4.4,"sqft":53000,"type":"colocation","status":"operational","region":"the U.S. state of Indiana"},{"name":"AT&T CO 5009 E 38th","operator":"AT&T","owner":"AT&T","address":"5009 E 38th St, Indianapolis, IN","city":"Indianapolis","state":"IN","zip":"unknown","lat":39.825448133886,"lng":-86.085168496606,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Indiana"},{"name":"Lumen Indianapolis 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"1902 S. East Street, Indianapolis, IN 46225","city":"Indianapolis","state":"IN","zip":"46225","lat":39.741541459481,"lng":-86.149486326582,"yearOnline":"unknown","powerMw":0,"sqft":20000,"type":"telecom","status":"operational","region":"the U.S. state of Indiana"},{"name":"Lumen Indianapolis 3","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"4625 W 86th St, Indianapolis, IN","city":"Indianapolis","state":"IN","zip":"unknown","lat":39.911411509221,"lng":-86.238470896856,"yearOnline":"unknown","powerMw":0,"sqft":19000,"type":"telecom","status":"operational","region":"the U.S. state of Indiana"},{"name":"Indiana University IUPUI Informatics and Communications Technology Complex Data Center","operator":"Indiana University","owner":"Indiana University","address":"535 West Michigan Street, Indianapolis, IN 46202","city":"Indianapolis","state":"IN","zip":"46202","lat":39.774272358559,"lng":-86.167384150351,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Indiana"},{"name":"Metrobloks Indianapolis IND-A1","operator":"Metrobloks","owner":"Metrobloks","address":"2505 N Sherman Dr, Indianapolis, IN","city":"Indianapolis","state":"IN","zip":"unknown","lat":39.803533903725,"lng":-86.102400243376,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"planned","region":"the U.S. state of Indiana"},{"name":"American Tower Indianapolis Edge Data Center","operator":"American Tower","owner":"ATC Watertown LLC","address":"7701 Walnut Drive, Indianapolis, IN","city":"Indianapolis","state":"IN","zip":"unknown","lat":39.895450528179,"lng":-86.207729153247,"yearOnline":"unknown","powerMw":4,"sqft":20000,"type":"edge","status":"planned","region":"the U.S. state of Indiana"},{"name":"Google Fort Wayne Data Center / Project Zodiac","operator":"Google","owner":"Google","address":"6015 Adams Center Road, Fort Wayne, IN 46816","city":"Fort Wayne","state":"IN","zip":"46816","lat":41.031166722425,"lng":-85.057769713173,"yearOnline":"unknown","powerMw":100,"sqft":360000,"type":"hyperscale","status":"under-construction","region":"the U.S. state of Indiana"},{"name":"Amazon Web Services New Carlisle / Project Rainier South Campus","operator":"Amazon Web Services","owner":"Amazon Web Services","address":"near Huckleberry Road and Gordon Road, New Carlisle, IN","city":"New Carlisle","state":"IN","zip":"unknown","lat":41.657482121831,"lng":-86.48189461135,"yearOnline":"2025","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Indiana"},{"name":"Microsoft La Porte Data Center Campus","operator":"Microsoft","owner":"Microsoft","address":"300 E Boyd Blvd, La Porte, IN 46350","city":"La Porte","state":"IN","zip":"46350","lat":41.584006751279,"lng":-86.696510919253,"yearOnline":"unknown","powerMw":0,"sqft":245000,"type":"hyperscale","status":"planned","region":"the U.S. state of Indiana"},{"name":"DartPoints CLU01 Columbus","operator":"DartPoints","owner":"DartPoints","address":"2425 Technology Blvd, Columbus, IN 47201","city":"Columbus","state":"IN","zip":"47201","lat":39.183173710024,"lng":-85.895644232789,"yearOnline":"unknown","powerMw":1.271,"sqft":86400,"type":"colocation","status":"operational","region":"the U.S. state of Indiana"},{"name":"Lumen SouthBend 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"1140 Franklin Street, South Bend, IN 46601","city":"South Bend","state":"IN","zip":"46601","lat":41.662676504612,"lng":-86.254697577984,"yearOnline":"unknown","powerMw":0,"sqft":4067,"type":"telecom","status":"operational","region":"the U.S. state of Indiana"},{"name":"OTAVA Indianapolis Data Center","operator":"OTAVA","owner":"OTAVA","address":"505 West Merrill Street, Indianapolis, Indiana","city":"Indianapolis","state":"IN","zip":"unknown","lat":39.759127673362,"lng":-86.167551882938,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Indiana"},{"name":"Digital Realty ORD11","operator":"Digital Realty","owner":"Digital Realty","address":"600 South Federal Street, Chicago, IL 60605","city":"Chicago","state":"IL","zip":"60605","lat":41.874476586028,"lng":-87.629743960379,"yearOnline":"unknown","powerMw":0,"sqft":142000,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Digital Realty ORD12","operator":"Digital Realty","owner":"Digital Realty","address":"9333 Grand Avenue, Franklin Park, IL 60131","city":"Franklin Park","state":"IL","zip":"60131","lat":41.92909943148,"lng":-87.858092215442,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Digital Realty ORD13","operator":"Digital Realty","owner":"Digital Realty","address":"9355 Grand Avenue, Franklin Park, IL 60131","city":"Franklin Park","state":"IL","zip":"60131","lat":41.929110491231,"lng":-87.858774629346,"yearOnline":"unknown","powerMw":0,"sqft":292000,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Equinix Chicago CH1","operator":"Equinix","owner":"Digital Realty","address":"350 East Cermak Road, 5th Floor, Chicago, IL 60616","city":"Chicago","state":"IL","zip":"60616","lat":41.853059324473,"lng":-87.618915286339,"yearOnline":"unknown","powerMw":3.3,"sqft":166084,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Equinix Chicago CH2","operator":"Equinix","owner":"Digital Realty","address":"350 East Cermak Road, 6th Floor, Chicago, IL 60616","city":"Chicago","state":"IL","zip":"60616","lat":41.853059324473,"lng":-87.618915286339,"yearOnline":"unknown","powerMw":2.5,"sqft":110618,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Equinix Chicago CH4","operator":"Equinix","owner":"Digital Realty","address":"350 East Cermak Road, 8th Floor, Chicago, IL 60616","city":"Chicago","state":"IL","zip":"60616","lat":41.853059324473,"lng":-87.618915286339,"yearOnline":"unknown","powerMw":2.4,"sqft":20225,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Equinix Chicago CH3","operator":"Equinix","owner":"Equinix","address":"1905 Lunt Avenue, Elk Grove Village, IL 60007","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.002059721924,"lng":-87.955301060658,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Equinix Chicago CH5","operator":"Equinix","owner":"Equinix","address":"2001 Lunt Avenue, Elk Grove Village, IL 60007","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.002091524887,"lng":-87.953389342997,"yearOnline":"unknown","powerMw":0,"sqft":193110,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Equinix Chicago CH7","operator":"Equinix","owner":"Equinix","address":"111 Plaza Drive, Westmont, IL 60559","city":"Westmont","state":"IL","zip":"60559","lat":41.81296880507,"lng":-87.973006384301,"yearOnline":"unknown","powerMw":0,"sqft":29289,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"DataBank ORD1 Downtown Chicago Loop Data Center","operator":"DataBank","owner":"DataBank","address":"600 South Federal Street, Suites 150 & 142, Chicago, IL 60605","city":"Chicago","state":"IL","zip":"60605","lat":41.874476586028,"lng":-87.629743960379,"yearOnline":"unknown","powerMw":1,"sqft":10130,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"DataBank ORD2 Downtown Chicago Metro Data Center","operator":"DataBank","owner":"DataBank","address":"840 S. Canal Street, Chicago, IL 60607","city":"Chicago","state":"IL","zip":"60607","lat":41.870649899848,"lng":-87.639384283788,"yearOnline":"unknown","powerMw":2,"sqft":11470,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"DataBank ORD3 Mount Prospect Data Center","operator":"DataBank","owner":"DataBank","address":"800 E. Business Center Drive, Mount Prospect, IL 60056","city":"Mount Prospect","state":"IL","zip":"60056","lat":42.077109027758,"lng":-87.923760782463,"yearOnline":"unknown","powerMw":2.7,"sqft":28950,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"DataBank ORD4 Chicago Tri-State Data Center","operator":"DataBank","owner":"DataBank","address":"1808 Swift Drive, Suite B & C, Oak Brook, IL 60523","city":"Oak Brook","state":"IL","zip":"60523","lat":41.853924720278,"lng":-87.922088187567,"yearOnline":"unknown","powerMw":8.75,"sqft":77510,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"CoreSite CH1","operator":"CoreSite","owner":"CoreSite","address":"427 S. LaSalle St., Chicago, IL 60605","city":"Chicago","state":"IL","zip":"60605","lat":41.876532062059,"lng":-87.631681111225,"yearOnline":"unknown","powerMw":0,"sqft":180000,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"CoreSite CH2","operator":"CoreSite","owner":"CoreSite","address":"1432 S Clinton St, Chicago, IL 60607","city":"Chicago","state":"IL","zip":"60607","lat":41.863320308042,"lng":-87.640654847281,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"365 Data Centers Downtown Chicago Data Center","operator":"365 Data Centers","owner":"365 Data Centers","address":"427 S La Salle Street, Chicago, IL 60605","city":"Chicago","state":"IL","zip":"60605","lat":41.876532062059,"lng":-87.631681111225,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Centersquare Chicago Cermak ORD1 Data Center","operator":"Centersquare","owner":"Centersquare","address":"350 East Cermak Road, Chicago, IL 60616","city":"Chicago","state":"IL","zip":"60616","lat":41.853059324473,"lng":-87.618915286339,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"H5 Data Centers Chicago","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"1951 W. Hastings St., Chicago, IL 60608","city":"Chicago","state":"IL","zip":"60608","lat":41.863996898685,"lng":-87.674971615026,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"QTS Chicago 1","operator":"QTS","owner":"QTS","address":"2800 S Ashland Ave, Chicago, IL 60608","city":"Chicago","state":"IL","zip":"60608","lat":41.842192450248,"lng":-87.665912151672,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Netrality 717 South Wells","operator":"Netrality","owner":"Netrality","address":"717 South Wells Street, Chicago, IL 60607","city":"Chicago","state":"IL","zip":"60607","lat":41.873126461238,"lng":-87.633519992182,"yearOnline":"unknown","powerMw":0,"sqft":100000,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Element Critical Chicago One","operator":"Element Critical","owner":"Element Critical","address":"711 N. Edgewood Avenue, Wood Dale, IL 60191","city":"Wood Dale","state":"IL","zip":"60191","lat":41.976439785977,"lng":-87.965335335745,"yearOnline":"unknown","powerMw":7,"sqft":151000,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"White City Colocation Chicago","operator":"White City Colocation","owner":"White City Colocation","address":"155 N. Michigan Avenue, Chicago, IL","city":"Chicago","state":"IL","zip":"unknown","lat":41.88491285404,"lng":-87.624397627279,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Colocation America Chicago DC1","operator":"Colocation America","owner":"Digital Realty","address":"350 E Cermak Road, Chicago, IL 60616","city":"Chicago","state":"IL","zip":"60616","lat":41.853059324473,"lng":-87.618915286339,"yearOnline":"unknown","powerMw":0,"sqft":1133000,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"CyrusOne CHI5","operator":"CyrusOne","owner":"CyrusOne","address":"1850 Springer Drive, Lombard, IL 60148","city":"Lombard","state":"IL","zip":"60148","lat":41.849312814346,"lng":-88.028873989953,"yearOnline":"unknown","powerMw":12,"sqft":60000,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"CyrusOne CHI2 Chicago Aurora Data Center","operator":"CyrusOne","owner":"CyrusOne","address":"2805 Diehl Rd, Aurora, IL 60502","city":"Aurora","state":"IL","zip":"60502","lat":41.798076987696,"lng":-88.246874529375,"yearOnline":"unknown","powerMw":58.4,"sqft":428000,"type":"wholesale","status":"operational","region":"the U.S. state of Illinois"},{"name":"CyrusOne Aurora CHI1-CHI3 Campus","operator":"CyrusOne","owner":"CyrusOne","address":"2705-2905 Diehl Rd., Aurora, IL 60502","city":"Aurora","state":"IL","zip":"60502","lat":41.798071182484,"lng":-88.243410186001,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"the U.S. state of Illinois"},{"name":"Edged Chicago ORD01-1","operator":"Edged","owner":"Edged","address":"2835 Bilter Road, Aurora, IL 60502","city":"Aurora","state":"IL","zip":"60502","lat":41.807012340106,"lng":-88.243316330074,"yearOnline":"2024","powerMw":24,"sqft":0,"type":"wholesale","status":"operational","region":"the U.S. state of Illinois"},{"name":"EdgeConneX Chicago CHI01","operator":"EdgeConneX","owner":"EdgeConneX","address":"1800 Nicholas Blvd, Elk Grove Village, IL","city":"Elk Grove Village","state":"IL","zip":"unknown","lat":42.001222274725,"lng":-87.949425724147,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Illinois"},{"name":"EdgeConneX Chicago CHI02","operator":"EdgeConneX","owner":"EdgeConneX","address":"2021 Lunt Ave, Elk Grove Village, IL","city":"Elk Grove Village","state":"IL","zip":"unknown","lat":42.002098150504,"lng":-87.952991068484,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"unknown","region":"the U.S. state of Illinois"},{"name":"EdgeConneX Chicago CHI03","operator":"EdgeConneX","owner":"EdgeConneX","address":"2055 Lunt Ave, Elk Grove Village, IL","city":"Elk Grove Village","state":"IL","zip":"unknown","lat":42.002109414053,"lng":-87.952314001813,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"unknown","region":"the U.S. state of Illinois"},{"name":"Stream Data Centers Chicago I","operator":"Stream Data Centers","owner":"Stream Data Centers","address":"2080 Lunt Avenue, Elk Grove Village, IL 60007","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.002232590103,"lng":-87.951799696138,"yearOnline":"unknown","powerMw":0,"sqft":126689,"type":"wholesale","status":"operational","region":"the U.S. state of Illinois"},{"name":"Stream Data Centers Chicago II","operator":"Stream Data Centers","owner":"Stream Data Centers","address":"2000 Landmeier Rd, Elk Grove Village, IL 60007","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.010551097419,"lng":-87.953358758844,"yearOnline":"2022","powerMw":32,"sqft":226724,"type":"wholesale","status":"operational","region":"the U.S. state of Illinois"},{"name":"Summit Elk Grove Village Data Center","operator":"Summit","owner":"Summit","address":"2200 Busse Road, Elk Grove Village, IL 60007","city":"Elk Grove Village","state":"IL","zip":"60007","lat":41.995590226307,"lng":-87.959459887953,"yearOnline":"unknown","powerMw":36.4,"sqft":485000,"type":"wholesale","status":"operational","region":"the U.S. state of Illinois"},{"name":"Skybox Chicago I","operator":"Skybox Datacenters","owner":"Skybox Datacenters","address":"800 E Devon Ave, Elk Grove Village, IL 60007","city":"Elk Grove Village","state":"IL","zip":"60007","lat":41.992988870744,"lng":-87.975355518395,"yearOnline":"unknown","powerMw":30,"sqft":190000,"type":"wholesale","status":"operational","region":"the U.S. state of Illinois"},{"name":"Aligned ORD-01 Data Center","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"505 Northwest Ave, Northlake, IL 60164","city":"Northlake","state":"IL","zip":"60164","lat":41.913969860712,"lng":-87.919288167554,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Illinois"},{"name":"Aligned ORD-02 Data Center","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"501 Northwest Ave, Northlake, IL 60164","city":"Northlake","state":"IL","zip":"60164","lat":41.913914511842,"lng":-87.91928816756,"yearOnline":"unknown","powerMw":36,"sqft":228768,"type":"hyperscale","status":"operational","region":"the U.S. state of Illinois"},{"name":"Aligned ORD-03 Data Center","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"50 NW Point Blvd, Elk Grove Village, IL 60007","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.032989208463,"lng":-87.981767292572,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"unknown","region":"the U.S. state of Illinois"},{"name":"Microsoft Azure North Central US-Illinois","operator":"Microsoft Azure","owner":"Microsoft","address":"601 Northwest Avenue, Northlake, IL 60164","city":"Northlake","state":"IL","zip":"60164","lat":41.921334129077,"lng":-87.919252156965,"yearOnline":"unknown","powerMw":0,"sqft":700000,"type":"hyperscale","status":"operational","region":"the U.S. state of Illinois"},{"name":"Lumen Chicago","operator":"Lumen","owner":"Lumen","address":"111 N Canal St, Suite 200, Chicago, IL 60606","city":"Chicago","state":"IL","zip":"60606","lat":41.884385930472,"lng":-87.639722542984,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Illinois"},{"name":"Lumen Chicago 2","operator":"Lumen","owner":"Lumen","address":"900 N. Kingsbury Street, Chicago, IL 60610","city":"Chicago","state":"IL","zip":"60610","lat":41.897901677141,"lng":-87.643368550841,"yearOnline":"unknown","powerMw":0,"sqft":182016,"type":"telecom","status":"operational","region":"the U.S. state of Illinois"},{"name":"Lumen Broadview 1","operator":"Lumen","owner":"Lumen","address":"2101 Roberts Drive, Broadview, IL","city":"Broadview","state":"IL","zip":"unknown","lat":41.854205283815,"lng":-87.85767792171,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Illinois"},{"name":"US Signal IL01 Chicago Data Center","operator":"US Signal","owner":"US Signal","address":"810 Jorie Blvd., Oak Brook, IL 60523","city":"Oak Brook","state":"IL","zip":"60523","lat":41.847130131877,"lng":-87.939035505871,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"SBA Edge Chicago","operator":"SBA Edge","owner":"SBA Edge","address":"603 Discovery Drive, West Chicago, IL","city":"West Chicago","state":"IL","zip":"unknown","lat":41.878112498081,"lng":-88.252749510048,"yearOnline":"unknown","powerMw":6.4,"sqft":80000,"type":"edge","status":"operational","region":"the U.S. state of Illinois"},{"name":"ColocationPLUS Rantoul 1","operator":"ColocationPLUS","owner":"ColocationPLUS","address":"101 W International Ave, Rantoul, IL","city":"Rantoul","state":"IL","zip":"unknown","lat":40.301392443119,"lng":-88.160834639506,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Pearl Technology Bloomington Data Center","operator":"Pearl Technology","owner":"Pearl Technology","address":"303 E Washington Street, Bloomington, IL","city":"Bloomington","state":"IL","zip":"unknown","lat":40.479587113788,"lng":-88.99080516679,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Oppidan Carol Stream Data Center","operator":"Oppidan","owner":"Oppidan","address":"245 Kehoe Boulevard, Carol Stream, IL","city":"Carol Stream","state":"IL","zip":"unknown","lat":41.909584463791,"lng":-88.1139211909,"yearOnline":"unknown","powerMw":0,"sqft":90000,"type":"wholesale","status":"under-construction","region":"the U.S. state of Illinois"},{"name":"Netrality 717 South Wells Chicago Data Center","operator":"Netrality Data Centers","owner":"Netrality Data Centers","address":"717 South Wells Street, Chicago, IL","city":"Chicago","state":"IL","zip":"unknown","lat":41.873126461238,"lng":-87.633519992182,"yearOnline":"unknown","powerMw":0,"sqft":100000,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Aligned ORD-03 Elk Grove Village","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"50 NW Point Blvd, Elk Grove Village, IL","city":"Elk Grove Village","state":"IL","zip":"unknown","lat":42.032989208463,"lng":-87.981767292572,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"unknown","region":"the U.S. state of Illinois"},{"name":"ColocationPLUS Champaign Data Center","operator":"ColocationPLUS","owner":"ColocationPLUS","address":"401 S Chestnut, Champaign, IL","city":"Champaign","state":"IL","zip":"unknown","lat":40.112035514666,"lng":-88.242379622106,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Illinois"},{"name":"Lumen Chicago 2 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"900 North Kingsbury Street, Chicago, IL","city":"Chicago","state":"IL","zip":"unknown","lat":41.897901677141,"lng":-87.643368550841,"yearOnline":"unknown","powerMw":0,"sqft":182016,"type":"telecom","status":"operational","region":"the U.S. state of Illinois"},{"name":"Equinix AT5","operator":"Equinix","owner":"Equinix","address":"2836 Peterson Place Northwest, Norcross, GA","city":"Norcross","state":"GA","zip":"unknown","lat":33.937938154267,"lng":-84.226120960302,"yearOnline":"unknown","powerMw":0,"sqft":40949,"type":"colocation","status":"operational","region":"the U.S. state of Georgia"},{"name":"Equinix xScale Hampton Campus (AT10x–AT12x)","operator":"Equinix","owner":"Equinix","address":"1000 Site Parkway, Hampton, GA","city":"Hampton","state":"GA","zip":"unknown","lat":33.368831189035,"lng":-84.308595209716,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"under-construction","region":"the U.S. state of Georgia"},{"name":"QTS Atlanta 1 - DC4","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"1103 Herndon St NW, Atlanta, GA 30318","city":"Atlanta","state":"GA","zip":"30318","lat":33.784690567143,"lng":-84.422324589519,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"the U.S. state of Georgia"},{"name":"Aligned ATL-01","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"1551 N River Rd., Lithia Springs, GA 30122","city":"Lithia Springs","state":"GA","zip":"30122","lat":33.725554934178,"lng":-84.616439163594,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Georgia"},{"name":"DataBank ATL2 West End","operator":"DataBank","owner":"DataBank","address":"1100 White Street Southwest, Atlanta, GA 30310","city":"Atlanta","state":"GA","zip":"30310","lat":33.733468097181,"lng":-84.423699222686,"yearOnline":"unknown","powerMw":4,"sqft":52610,"type":"colocation","status":"operational","region":"the U.S. state of Georgia"},{"name":"DataBank ATL4 South Fulton","operator":"DataBank","owner":"DataBank","address":"200 Selig Dr SW, South Fulton, GA 30336","city":"South Fulton","state":"GA","zip":"30336","lat":33.757169301894,"lng":-84.540706625542,"yearOnline":"unknown","powerMw":0,"sqft":156780,"type":"colocation","status":"operational","region":"the U.S. state of Georgia"},{"name":"DataBank ATL6 Lithia Springs (planned)","operator":"DataBank","owner":"DataBank","address":"near 4764 Bakers Ferry Rd SW, South Fulton, GA","city":"South Fulton","state":"GA","zip":"unknown","lat":33.746978169296,"lng":-84.543147974644,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"planned","region":"the U.S. state of Georgia"},{"name":"Flexential Atlanta - Norcross 1","operator":"Flexential","owner":"Flexential","address":"2775 Northwoods Parkway, Norcross, GA","city":"Norcross","state":"GA","zip":"unknown","lat":33.95523810238,"lng":-84.199036921357,"yearOnline":"unknown","powerMw":1.8,"sqft":32740,"type":"colocation","status":"operational","region":"the U.S. state of Georgia"},{"name":"Flexential Atlanta - Norcross 2","operator":"Flexential","owner":"Flexential","address":"2755 Northwoods Parkway, Norcross, GA","city":"Norcross","state":"GA","zip":"unknown","lat":33.954748331293,"lng":-84.199596298809,"yearOnline":"2028","powerMw":4.5,"sqft":48000,"type":"colocation","status":"planned","region":"the U.S. state of Georgia"},{"name":"STACK ATL02 / Factory Shoals Road Campus","operator":"STACK Infrastructure","owner":"STACK Infrastructure","address":"808 Factory Shoals Road, Lithia Springs, GA","city":"Lithia Springs","state":"GA","zip":"unknown","lat":33.763563612743,"lng":-84.597279622034,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Georgia"},{"name":"T5@Atlanta","operator":"T5 Data Centers","owner":"T5 Data Centers","address":"3200 Webb Bridge Road, Alpharetta, GA","city":"Alpharetta","state":"GA","zip":"unknown","lat":34.074798165032,"lng":-84.266063101989,"yearOnline":"unknown","powerMw":0,"sqft":54383,"type":"wholesale","status":"operational","region":"the U.S. state of Georgia"},{"name":"365 Data Centers Alpharetta","operator":"365 Data Centers","owner":"365 Data Centers","address":"11650 Great Oaks Way, Alpharetta, GA","city":"Alpharetta","state":"GA","zip":"unknown","lat":34.062609816041,"lng":-84.268132794607,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Georgia"},{"name":"Data Canopy Atlanta / Lithia Springs","operator":"Data Canopy","owner":"Data Canopy","address":"2480 Rock House Rd, Lithia Springs, GA 30122","city":"Lithia Springs","state":"GA","zip":"30122","lat":33.741343349002,"lng":-84.597431167529,"yearOnline":"unknown","powerMw":10,"sqft":79570,"type":"colocation","status":"operational","region":"the U.S. state of Georgia"},{"name":"Coloblox Marietta Data Center","operator":"Coloblox Data Centers","owner":"Coloblox Data Centers","address":"2812 Spring Rd SE, Suite 210, Atlanta, GA 30339","city":"Atlanta","state":"GA","zip":"30339","lat":33.88399853384,"lng":-84.47503140362,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Georgia"},{"name":"Lumen Atlanta 6","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"874 DeKalb Avenue Northeast, Atlanta, GA","city":"Atlanta","state":"GA","zip":"unknown","lat":33.75445505585,"lng":-84.359024686309,"yearOnline":"unknown","powerMw":0,"sqft":21658,"type":"telecom","status":"operational","region":"the U.S. state of Georgia"},{"name":"Verizon Atlanta / XO Atlanta","operator":"Verizon Communications","owner":"Verizon Communications","address":"4000 Highland Parkway SE, Smyrna, GA","city":"Smyrna","state":"GA","zip":"unknown","lat":33.828115661189,"lng":-84.503798912374,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Georgia"},{"name":"American Tower 55 Marietta","operator":"American Tower","owner":"American Tower","address":"55 Marietta Street, Atlanta, GA 30303","city":"Atlanta","state":"GA","zip":"30303","lat":33.755474368133,"lng":-84.391094043077,"yearOnline":"unknown","powerMw":0,"sqft":62000,"type":"colocation","status":"operational","region":"the U.S. state of Georgia"},{"name":"Cogent Atlanta 1","operator":"Cogent Communications","owner":"Cogent Communications","address":"55 Marietta St, Suite 950, Atlanta, GA","city":"Atlanta","state":"GA","zip":"unknown","lat":33.755474368133,"lng":-84.391094043077,"yearOnline":"unknown","powerMw":0.5,"sqft":7826,"type":"telecom","status":"operational","region":"the U.S. state of Georgia"},{"name":"DataBank ATL4 - South Fulton","operator":"DataBank","owner":"DataBank","address":"200 Selig Dr SW, Atlanta, GA","city":"Atlanta","state":"GA","zip":"unknown","lat":33.757169301894,"lng":-84.540706625542,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Georgia"},{"name":"DataBank MCI1 / South Lake KC1","operator":"DataBank","owner":"DataBank","address":"15721 College Boulevard","city":"Lenexa","state":"KS","zip":"66219","lat":38.928,"lng":-94.764,"yearOnline":"unknown","powerMw":0.75,"sqft":6000,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"DataBank MCI2 / Pine Ridge Data Center","operator":"DataBank","owner":"DataBank","address":"10605 W. 84th Terrace","city":"Overland Park","state":"KS","zip":"66214","lat":38.978,"lng":-94.709,"yearOnline":"unknown","powerMw":2,"sqft":31000,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"DataBank MCI3 / South Lake Campus Data Center","operator":"DataBank","owner":"DataBank","address":"11200 Lakeview Avenue","city":"Lenexa","state":"KS","zip":"66219","lat":38.93,"lng":-94.769,"yearOnline":"2018","powerMw":12.75,"sqft":106350,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"TierPoint Kansas City - Lenexa (LEN)","operator":"TierPoint","owner":"TierPoint","address":"14500 West 105th Street","city":"Lenexa","state":"KS","zip":"66215","lat":38.93,"lng":-94.759,"yearOnline":"unknown","powerMw":3,"sqft":58000,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"LightEdge Lenexa Data Center / Lenexa Cavern Suites","operator":"LightEdge","owner":"LightEdge","address":"17501 West 98th Street","city":"Lenexa","state":"KS","zip":"66219","lat":38.935,"lng":-94.771,"yearOnline":"unknown","powerMw":2.9,"sqft":11000,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"IONOS Lenexa Data Center","operator":"IONOS","owner":"IONOS","address":"10950 Strang Line Road","city":"Lenexa","state":"KS","zip":"66215","lat":38.936,"lng":-94.757,"yearOnline":"2007","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Kansas"},{"name":"FullControl Network Data Center","operator":"FullControl Network, Inc.","owner":"FullControl Network, Inc.","address":"14400 College Boulevard, Suite 103","city":"Lenexa","state":"KS","zip":"66215","lat":38.927,"lng":-94.76,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"Windstream Lenexa Data Center","operator":"Windstream","owner":"Windstream","address":"7945 Bond Street","city":"Lenexa","state":"KS","zip":"66214","lat":38.983,"lng":-94.719,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Kansas"},{"name":"EverFast / Consolidated Communications Lenexa Datacenter","operator":"EverFast Fiber Networks","owner":"EverFast Fiber Networks","address":"9669 Lackman Road","city":"Lenexa","state":"KS","zip":"66219","lat":38.959,"lng":-94.773,"yearOnline":"unknown","powerMw":0,"sqft":7500,"type":"telecom","status":"operational","region":"the U.S. state of Kansas"},{"name":"Arsalon Technologies Overland Park Data Center","operator":"Arsalon Technologies","owner":"DataBank","address":"10881 Lowell Avenue, Suite 160","city":"Overland Park","state":"KS","zip":"66210","lat":38.928,"lng":-94.701,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"unknown","region":"the U.S. state of Kansas"},{"name":"QTS Overland Park Data Center","operator":"QTS","owner":"QTS","address":"12851 Foster Street","city":"Overland Park","state":"KS","zip":"66213","lat":38.9,"lng":-94.648,"yearOnline":"unknown","powerMw":0,"sqft":38000,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"Netrality KC2 - 7801 Nieman Road","operator":"Netrality Data Centers","owner":"Netrality Data Centers","address":"7801 Nieman Road","city":"Shawnee","state":"KS","zip":"unknown","lat":39.013,"lng":-94.717,"yearOnline":"unknown","powerMw":0,"sqft":176000,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"C1 Kansas Data Center","operator":"C1","owner":"C1","address":"17795 W. 106th, Suite 200","city":"Olathe","state":"KS","zip":"66061","lat":38.935,"lng":-94.82,"yearOnline":"2017","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"DigiCo Kansas City KCM1","operator":"DigiCo Infrastructure REIT","owner":"DigiCo Infrastructure REIT","address":"24400 W Valley Parkway","city":"Olathe","state":"KS","zip":"66061","lat":38.959,"lng":-94.864,"yearOnline":"2016","powerMw":7.5,"sqft":192550,"type":"enterprise","status":"operational","region":"the U.S. state of Kansas"},{"name":"CenterServ Wichita Data Center","operator":"CenterServ","owner":"CenterServ","address":"801 East Douglas Avenue","city":"Wichita","state":"KS","zip":"67202","lat":37.687,"lng":-97.329,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Kansas"},{"name":"UV&S / Concergent Wichita Data Center","operator":"UV&S Technology","owner":"UV&S Technology","address":"245 N. Waco, Suite T100","city":"Wichita","state":"KS","zip":"67202","lat":37.689,"lng":-97.339,"yearOnline":"unknown","powerMw":1,"sqft":10000,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"ISG Technology Wichita Data Center","operator":"ISG Technology","owner":"ISG Technology","address":"8201 E. 34th Street Circle N., Suite 807","city":"Wichita","state":"KS","zip":"67226","lat":37.744,"lng":-97.223,"yearOnline":"2012","powerMw":0.09,"sqft":900,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"ISG Technology Topeka Data Center (former QTS Topeka)","operator":"ISG Technology","owner":"ISG Technology","address":"400 SE Jefferson Street","city":"Topeka","state":"KS","zip":"66607","lat":39.05,"lng":-95.666,"yearOnline":"2013","powerMw":0,"sqft":16350,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"UV&S Hays Data Center / Colocation Location","operator":"UV&S Technology","owner":"UV&S Technology","address":"711 E. 6th Street","city":"Hays","state":"KS","zip":"67601","lat":38.869,"lng":-99.314,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Kansas"},{"name":"UV&S Hutchinson Underground Data Center / Colocation Location","operator":"UV&S Technology","owner":"UV&S Technology","address":"3500 East Avenue G","city":"Hutchinson","state":"KS","zip":"67501","lat":38.038,"lng":-97.876,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"UV&S Manhattan Data Center / Colocation Location","operator":"UV&S Technology","owner":"UV&S Technology","address":"5106 Murray Road, Suite C","city":"Manhattan","state":"KS","zip":"66503","lat":39.226,"lng":-96.624,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Kansas"},{"name":"UV&S Salina Data Center / Colocation Location","operator":"UV&S Technology","owner":"UV&S Technology","address":"739 N. 10th Street","city":"Salina","state":"KS","zip":"67401","lat":38.857,"lng":-97.614,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Kansas"},{"name":"UV&S Topeka Data Center / Colocation Location","operator":"UV&S Technology","owner":"UV&S Technology","address":"1540 NW Gage Boulevard #6","city":"Topeka","state":"KS","zip":"66618","lat":39.084,"lng":-95.719,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Kansas"},{"name":"UV&S Wichita 33rd Street Data Center / Colocation Location","operator":"UV&S Technology","owner":"UV&S Technology","address":"707 E. 33rd Street N.","city":"Wichita","state":"KS","zip":"67219","lat":37.744,"lng":-97.323,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Kansas"},{"name":"Alcove Development Osawatomie Data Center","operator":"Alcove Development","owner":"Alcove Development","address":"Northland area, 335th Street and Osawatomie Road","city":"Osawatomie","state":"KS","zip":"unknown","lat":38.504,"lng":-94.954,"yearOnline":"unknown","powerMw":0,"sqft":600000,"type":"hyperscale","status":"planned","region":"the U.S. state of Kansas"},{"name":"IONOS Lenexa Data Center","operator":"IONOS","owner":"IONOS","address":"10950 Strang Line Rd","city":"Lenexa","state":"KS","zip":"unknown","lat":38.928643496299,"lng":-94.753192039363,"yearOnline":"2007","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"ISG Technology – Topeka Data Center","operator":"ISG Technology","owner":"ISG Technology","address":"400 SE Jefferson St.","city":"Topeka","state":"KS","zip":"66607","lat":39.052990857535,"lng":-95.666358494931,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"FullControl Network – Lenexa","operator":"FullControl Network, Inc.","owner":"FullControl Network, Inc.","address":"14400 College Blvd, Suite 103","city":"Lenexa","state":"KS","zip":"66215","lat":38.927426351391,"lng":-94.751120759409,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kansas"},{"name":"Alcove Osawatomie Data Center","operator":"Alcove","owner":"Alcove","address":"W 335th St & Osawatomie Rd","city":"Osawatomie","state":"KS","zip":"unknown","lat":38.52000213555,"lng":-94.93668602423,"yearOnline":"unknown","powerMw":150,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Kansas"},{"name":"ValorC3 Boise Data Center","operator":"ValorC3 Data Centers","owner":"ValorC3 Data Centers","address":"10215 W Emerald St","city":"Boise","state":"ID","zip":"83704","lat":43.609905075043,"lng":-116.309883533792,"yearOnline":"2000","powerMw":2,"sqft":45000,"type":"colocation","status":"operational","region":"the U.S. state of Idaho"},{"name":"ValorC3 Boise 2 Data Center","operator":"ValorC3 Data Centers","owner":"BOISE 2 DC LLC","address":"9601 W Emerald St","city":"Boise","state":"ID","zip":"unknown","lat":43.609548051867,"lng":-116.301847913929,"yearOnline":"2027","powerMw":10,"sqft":38000,"type":"colocation","status":"under-construction","region":"the U.S. state of Idaho"},{"name":"Ark Data Centers Boise 1","operator":"Ark Data Centers","owner":"Ark Data Centers","address":"2653 S Victory View Way","city":"Boise","state":"ID","zip":"unknown","lat":43.578003498411,"lng":-116.290255593913,"yearOnline":"unknown","powerMw":1,"sqft":6000,"type":"colocation","status":"operational","region":"the U.S. state of Idaho"},{"name":"Ark Data Centers Boise 2","operator":"Ark Data Centers","owner":"Ark Data Centers","address":"1450 S Eagle Flight Way","city":"Boise","state":"ID","zip":"83709","lat":43.591315075392,"lng":-116.299234225365,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Idaho"},{"name":"Centeris Boise Data Center (DataSite Boise)","operator":"Centeris","owner":"unknown","address":"9700 W Bethel Ct","city":"Boise","state":"ID","zip":"83709","lat":43.605787369863,"lng":-116.301362289412,"yearOnline":"unknown","powerMw":0,"sqft":60252,"type":"colocation","status":"operational","region":"the U.S. state of Idaho"},{"name":"Lumen Boise 1 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"2223 W Airport Way","city":"Boise","state":"ID","zip":"83702","lat":43.569148521176,"lng":-116.208706176403,"yearOnline":"unknown","powerMw":0,"sqft":2500,"type":"telecom","status":"operational","region":"the U.S. state of Idaho"},{"name":"Syringa Networks Boise","operator":"Syringa Networks","owner":"Syringa Networks","address":"3795 Development Ave","city":"Boise","state":"ID","zip":"unknown","lat":43.567709485267,"lng":-116.207500405987,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Idaho"},{"name":"Meta Kuna Data Center (Campus)","operator":"Meta","owner":"Meta","address":"6990 W Kuna-Mora Rd","city":"Kuna","state":"ID","zip":"unknown","lat":43.459105005411,"lng":-116.267481263439,"yearOnline":"unknown","powerMw":0,"sqft":960000,"type":"hyperscale","status":"under-construction","region":"the U.S. state of Idaho"},{"name":"IonSwitch CDA01","operator":"IonSwitch","owner":"IonSwitch","address":"600 W Appleway Ave","city":"Coeur d'Alene","state":"ID","zip":"unknown","lat":47.700701486112,"lng":-116.794430190441,"yearOnline":"unknown","powerMw":0,"sqft":6000,"type":"colocation","status":"operational","region":"the U.S. state of Idaho"},{"name":"Fusion Connect - Coeur d'Alene","operator":"Fusion Connect","owner":"Fusion Connect","address":"422 W Appleway Ave","city":"Coeur d'Alene","state":"ID","zip":"83815","lat":47.700692485857,"lng":-116.792011281242,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Idaho"},{"name":"Lumen Boise 1 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"2223 West Airport Way","city":"Boise","state":"ID","zip":"unknown","lat":43.569148521176,"lng":-116.208706176403,"yearOnline":"unknown","powerMw":0,"sqft":2500,"type":"telecom","status":"operational","region":"the U.S. state of Idaho"},{"name":"DartPoints Baton Rouge, LA 1 - BTR01","operator":"DartPoints","owner":"DartPoints","address":"7127 Florida Blvd, Baton Rouge, LA 70806","city":"Baton Rouge","state":"LA","zip":"70806","lat":30.451687875078,"lng":-91.116583709281,"yearOnline":"unknown","powerMw":0,"sqft":86400,"type":"colocation","status":"operational","region":"the U.S. state of Louisiana"},{"name":"DartPoints Baton Rouge, LA 2 - BTR02","operator":"DartPoints","owner":"DartPoints","address":"7139 Florida Blvd, Baton Rouge, LA 70806","city":"Baton Rouge","state":"LA","zip":"70806","lat":30.451691699747,"lng":-91.116443152497,"yearOnline":"unknown","powerMw":3,"sqft":27400,"type":"colocation","status":"operational","region":"the U.S. state of Louisiana"},{"name":"Lockstep Technology Group Data Center","operator":"Lockstep Technology Group","owner":"Lockstep Technology Group","address":"6867 Bluebonnet Blvd, Baton Rouge, LA 70810","city":"Baton Rouge","state":"LA","zip":"70810","lat":30.388390054413,"lng":-91.092872567981,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Louisiana"},{"name":"Lumen Baton Rouge 2","operator":"Lumen","owner":"Lumen","address":"9826 Burbank Dr, Baton Rouge, LA 70810","city":"Baton Rouge","state":"LA","zip":"70810","lat":30.357631143522,"lng":-91.11850822556,"yearOnline":"unknown","powerMw":0,"sqft":5000,"type":"colocation","status":"operational","region":"the U.S. state of Louisiana"},{"name":"DartPoints Shreveport, LA - SHV01","operator":"DartPoints","owner":"DartPoints","address":"601 Milam St, Shreveport, LA 71101","city":"Shreveport","state":"LA","zip":"71101","lat":32.51124340057,"lng":-93.749805686381,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Louisiana"},{"name":"Cogent Data Center - New Orleans","operator":"Cogent Communications","owner":"Cogent Communications","address":"650 Poydras St, New Orleans, LA 70130","city":"New Orleans","state":"LA","zip":"70130","lat":29.949304728598,"lng":-90.070037606635,"yearOnline":"unknown","powerMw":0,"sqft":7812,"type":"colocation","status":"operational","region":"the U.S. state of Louisiana"},{"name":"EdgeConneX SLI01 New Orleans Data Center","operator":"EdgeConneX","owner":"EdgeConneX","address":"2070 Gause Blvd E, Slidell, LA 70461","city":"Slidell","state":"LA","zip":"70461","lat":30.285742964939,"lng":-89.740194664462,"yearOnline":"unknown","powerMw":0,"sqft":26950,"type":"edge","status":"operational","region":"the U.S. state of Louisiana"},{"name":"Lumen New Orleans 2 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"1250 Poydras Street, New Orleans, LA 70113","city":"New Orleans","state":"LA","zip":"70113","lat":29.950831242325,"lng":-90.07634480403,"yearOnline":"2018","powerMw":0,"sqft":9379,"type":"colocation","status":"operational","region":"the U.S. state of Louisiana"},{"name":"FOGO Solutions - New Orleans","operator":"FOGO Solutions","owner":"FOGO Solutions","address":"935 Gravier St, 10th Floor, New Orleans, LA 70112","city":"New Orleans","state":"LA","zip":"70112","lat":29.952670911437,"lng":-90.072714378575,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Louisiana"},{"name":"Lumen Metairie 1 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"3220 Lausat Street, Metairie, LA 70001","city":"Metairie","state":"LA","zip":"70001","lat":29.972515143537,"lng":-90.157612474323,"yearOnline":"2018","powerMw":2.4,"sqft":20000,"type":"colocation","status":"operational","region":"the U.S. state of Louisiana"},{"name":"Lumen New Orleans 1","operator":"Lumen","owner":"Lumen","address":"639 Loyola Ave, New Orleans, LA 70113","city":"New Orleans","state":"LA","zip":"70113","lat":29.94913544305,"lng":-90.076412257658,"yearOnline":"unknown","powerMw":0,"sqft":6072,"type":"colocation","status":"operational","region":"the U.S. state of Louisiana"},{"name":"tw telecom - Lake Charles Data Center","operator":"tw telecom","owner":"tw telecom","address":"844 Ryan St, Lake Charles, LA 70601","city":"Lake Charles","state":"LA","zip":"70601","lat":30.228717034547,"lng":-93.21727299417,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"unknown","region":"the U.S. state of Louisiana"},{"name":"Lumen New Orleans 1 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"639 Loyola, New Orleans, LA 70113","city":"New Orleans","state":"LA","zip":"70113","lat":29.9498,"lng":-90.0758,"yearOnline":"unknown","powerMw":0,"sqft":6072,"type":"colocation","status":"operational","region":"the U.S. state of Louisiana"},{"name":"FOGO Solutions New Orleans Data Center","operator":"FOGO Solutions","owner":"FOGO Solutions","address":"935 Gravier St, New Orleans, LA","city":"New Orleans","state":"LA","zip":"unknown","lat":29.9506,"lng":-90.0744,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Louisiana"},{"name":"Lumen Baton Rouge 2 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"9826 Burbank Drive, Baton Rouge, LA","city":"Baton Rouge","state":"LA","zip":"unknown","lat":30.3549,"lng":-91.1322,"yearOnline":"unknown","powerMw":0,"sqft":5000,"type":"colocation","status":"operational","region":"the U.S. state of Louisiana"},{"name":"CyrusOne CIN6","operator":"CyrusOne","owner":"CyrusOne","address":"7190-7200 Industrial Road","city":"Florence","state":"KY","zip":"41042","lat":38.9796476707,"lng":-84.615650864258,"yearOnline":"unknown","powerMw":9,"sqft":140000,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Core Scientific Calvert City Data Center (Calvert 1, 2 & 3)","operator":"Core Scientific","owner":"Core Scientific","address":"1035 Shar-Cal Rd","city":"Calvert City","state":"KY","zip":"42029","lat":37.044898367308,"lng":-88.417799216814,"yearOnline":"unknown","powerMw":150,"sqft":999,"type":"crypto","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Lost River Data Center","operator":"BGMU Fiber","owner":"BGMU Fiber / Western Kentucky University","address":"2413 Nashville Rd","city":"Bowling Green","state":"KY","zip":"42101","lat":36.961725806959,"lng":-86.468337417218,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"TenKey Data Center - Bldg 1","operator":"TenKey LandCo, LLC","owner":"TenKey LandCo, LLC","address":"421 Steele Rd","city":"Franklin","state":"KY","zip":"42134","lat":36.664836376612,"lng":-86.567381562854,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"wholesale","status":"planned","region":"the U.S. state of Kentucky"},{"name":"KUSI Data Center","operator":"Kentucky Underground Storage","owner":"Kentucky Underground Storage","address":"3830 Highbridge Rd","city":"Wilmore","state":"KY","zip":"40390","lat":37.827635785529,"lng":-84.703243059852,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Gearheart Communications","operator":"Gearheart Communications","owner":"Gearheart Communications","address":"1003 Winchester Rd","city":"Lexington","state":"KY","zip":"40505","lat":38.04202965654,"lng":-84.467454667988,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Windstream Lexington","operator":"Windstream","owner":"Windstream","address":"151 South Martin Luther King Boulevard","city":"Lexington","state":"KY","zip":"40508","lat":38.044474820907,"lng":-84.496485592709,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"BluegrassNet Downtown Lexington","operator":"BluegrassNet","owner":"BluegrassNet","address":"535 W 2nd St","city":"Lexington","state":"KY","zip":"40508","lat":38.054086012537,"lng":-84.500856700794,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"DartPoints Lexington Data Center Campus","operator":"DartPoints","owner":"DartPoints","address":"745 W New Circle Rd","city":"Lexington","state":"KY","zip":"999","lat":38.073626567232,"lng":-84.488122086792,"yearOnline":"unknown","powerMw":70,"sqft":343000,"type":"colocation","status":"planned","region":"the U.S. state of Kentucky"},{"name":"CenterServ Lexington Data Center","operator":"CenterServ","owner":"CenterServ","address":"2333 Alexandria Drive","city":"Lexington","state":"KY","zip":"999","lat":38.019808830508,"lng":-84.551195518902,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"EnergyNet Data Center","operator":"EnergyNet","owner":"EnergyNet","address":"1820 E. 9th Street","city":"Hopkinsville","state":"KY","zip":"42240","lat":36.847220167109,"lng":-87.465859121958,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Quad State Internet PAH1","operator":"Quad State Internet LLC","owner":"Quad State Internet LLC","address":"1212 Helen St","city":"Paducah","state":"KY","zip":"42001","lat":37.094130463875,"lng":-88.63410926351,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Flexential Louisville - Downtown","operator":"Flexential","owner":"Flexential","address":"752 Barret Avenue","city":"Louisville","state":"KY","zip":"40204","lat":38.242716224845,"lng":-85.733177028262,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Flexential Louisville - East","operator":"Flexential","owner":"Flexential","address":"2101 Nelson Miller Parkway","city":"Louisville","state":"KY","zip":"40223","lat":38.275674350611,"lng":-85.507182987624,"yearOnline":"unknown","powerMw":999,"sqft":33588,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"DataCanopy Louisville","operator":"DataCanopy","owner":"DataCanopy","address":"1208 Quality Choice Place","city":"Louisville","state":"KY","zip":"40210","lat":38.237320970175,"lng":-85.773547204396,"yearOnline":"unknown","powerMw":2,"sqft":8130,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Lumen Louisville 1","operator":"Lumen","owner":"Lumen","address":"848 S. 8th Street","city":"Louisville","state":"KY","zip":"999","lat":38.243409904126,"lng":-85.765667465706,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"telecom","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Lumen Louisville 2","operator":"Lumen","owner":"Lumen","address":"715 S 7th St","city":"Louisville","state":"KY","zip":"40203","lat":38.245556154177,"lng":-85.763458371558,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"telecom","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Lumen Louisville 3","operator":"Lumen","owner":"Lumen","address":"332 W. Broadway","city":"Louisville","state":"KY","zip":"40202","lat":38.24594361814,"lng":-85.757290999318,"yearOnline":"unknown","powerMw":999,"sqft":10495,"type":"telecom","status":"operational","region":"the U.S. state of Kentucky"},{"name":"BluegrassNet Downtown Louisville","operator":"BluegrassNet","owner":"BluegrassNet","address":"800 S 4th St","city":"Louisville","state":"KY","zip":"999","lat":38.244196527418,"lng":-85.758785755437,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"IgLou Data Center","operator":"IgLou Internet Services, Inc.","owner":"IgLou Internet Services, Inc.","address":"3315 Gilmore Industrial Blvd","city":"Louisville","state":"KY","zip":"40213","lat":38.177310052664,"lng":-85.700344592065,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Louisville Enterprise Data Center","operator":"Aphorio Carter","owner":"Aphorio Carter","address":"12901 Plantside Dr","city":"Louisville","state":"KY","zip":"40299","lat":38.211234802486,"lng":-85.523368338981,"yearOnline":"2011","powerMw":1,"sqft":102500,"type":"enterprise","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Simpsonville Enterprise Data Center","operator":"Aphorio Carter","owner":"Aphorio Carter","address":"70 Kingbrook Pkwy","city":"Simpsonville","state":"KY","zip":"40067","lat":38.218144071754,"lng":-85.336730603179,"yearOnline":"2011","powerMw":1,"sqft":102500,"type":"enterprise","status":"operational","region":"the U.S. state of Kentucky"},{"name":"PowerHouse Louisville Campus","operator":"PowerHouse Data Centers","owner":"American Real Estate Partners (AREP) / Poe Companies","address":"5015 Camp Ground Rd","city":"Louisville","state":"KY","zip":"40216","lat":38.203656238065,"lng":-85.852627443483,"yearOnline":"2026","powerMw":400,"sqft":1600000,"type":"hyperscale","status":"planned","region":"the U.S. state of Kentucky"},{"name":"Mason County Campus","operator":"Unknown Company","owner":"Unknown Company","address":"3148 Big Pond Pike","city":"Maysville","state":"KY","zip":"41056","lat":38.671957038887,"lng":-83.859320860669,"yearOnline":"unknown","powerMw":999,"sqft":999,"type":"hyperscale","status":"planned","region":"the U.S. state of Kentucky"},{"name":"CENTRA Portland (PWM1) / 340 Cumberland carrier hotel","operator":"CENTRA","owner":"CENTRA","address":"340 Cumberland Ave","city":"Portland","state":"ME","zip":"04101","lat":43.65748,"lng":-70.2612,"yearOnline":"2011","powerMw":0,"sqft":52272,"type":"colocation","status":"operational","region":"the U.S. state of Maine"},{"name":"EnablesIT Data Center","operator":"EnablesIT","owner":"EnablesIT","address":"4 Industrial Parkway","city":"Brunswick","state":"ME","zip":"04011","lat":43.907371201114,"lng":-69.996893207099,"yearOnline":"2014","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Maine"},{"name":"FirstLight Bangor Data Center","operator":"FirstLight Fiber","owner":"FirstLight Fiber","address":"60 Summer St","city":"Bangor","state":"ME","zip":"04401","lat":44.797144721635,"lng":-68.771936651246,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Maine"},{"name":"Pioneer Broadband DataCenter","operator":"Pioneer Broadband","owner":"Pioneer Broadband","address":"480 Main St","city":"Presque Isle","state":"ME","zip":"04769","lat":46.681668923475,"lng":-68.015295891918,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Maine"},{"name":"DataBank BWI1 - Downtown Baltimore","operator":"DataBank","owner":"DataBank","address":"300 West Lexington Street","city":"Baltimore","state":"MD","zip":"21201","lat":39.291652966378,"lng":-76.619738877727,"yearOnline":"unknown","powerMw":2.5,"sqft":10000,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"Verizon / former XO Baltimore Data Center #2","operator":"Verizon","owner":"Verizon","address":"300 West Lexington Street, 5th floor","city":"Baltimore","state":"MD","zip":"21201","lat":39.291652966378,"lng":-76.619738877727,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Maryland"},{"name":"DataBank - 111 Market Pl (formerly zColo/Zayo)","operator":"DataBank","owner":"DataBank","address":"111 Market Place","city":"Baltimore","state":"MD","zip":"21202","lat":39.287752008737,"lng":-76.606850124489,"yearOnline":"unknown","powerMw":0,"sqft":4100,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"Crown Castle Baltimore","operator":"Crown Castle","owner":"Crown Castle","address":"111 Market Place, Suite 103","city":"Baltimore","state":"MD","zip":"21202","lat":39.287752008737,"lng":-76.606850124489,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Maryland"},{"name":"Verizon / former XO Baltimore Data Center #1","operator":"Verizon","owner":"Verizon","address":"100 S. Charles Street, 2nd floor","city":"Baltimore","state":"MD","zip":"21201","lat":39.287674865228,"lng":-76.615107322717,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Maryland"},{"name":"TierPoint Baltimore - BAL","operator":"TierPoint","owner":"TierPoint","address":"1401 Russell Street","city":"Baltimore","state":"MD","zip":"21230","lat":39.275776951529,"lng":-76.625636130534,"yearOnline":"unknown","powerMw":0,"sqft":28000,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"Expedient Baltimore Tide Point Data Center","operator":"Expedient","owner":"unknown","address":"1050 Hull Street","city":"Baltimore","state":"MD","zip":"21230","lat":39.274762758349,"lng":-76.590562307828,"yearOnline":"unknown","powerMw":1,"sqft":23083,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"Expedient Baltimore - Owings Mills / BWI1","operator":"Expedient","owner":"unknown","address":"11155 Red Run Blvd., Suite 200","city":"Owings Mills","state":"MD","zip":"21117","lat":39.4270783,"lng":-76.8117686,"yearOnline":"2013","powerMw":0.8,"sqft":22000,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"Cogent Communications Elkridge Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"6050 Race Rd","city":"Elkridge","state":"MD","zip":"21075","lat":39.204016181007,"lng":-76.711386050454,"yearOnline":"1985","powerMw":6.17,"sqft":61734,"type":"telecom","status":"operational","region":"the U.S. state of Maryland"},{"name":"AiNET CyberNAP","operator":"AiNET","owner":"unknown","address":"7900 Ritchie Hwy","city":"Glen Burnie","state":"MD","zip":"21061","lat":39.140552222989,"lng":-76.603055995139,"yearOnline":"unknown","powerMw":0,"sqft":266400,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"Comcast Nottingham","operator":"Comcast","owner":"unknown","address":"8031 Corporate Dr","city":"Nottingham","state":"MD","zip":"21236","lat":39.368675775192,"lng":-76.468098324782,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Maryland"},{"name":"Amazon AWS - 11550 Cronridge Drive","operator":"Amazon AWS","owner":"Amazon Data Services","address":"11550 Cronridge Dr","city":"Owings Mills","state":"MD","zip":"21117","lat":39.442324067374,"lng":-76.772513122656,"yearOnline":"unknown","powerMw":0,"sqft":20000,"type":"hyperscale","status":"operational","region":"the U.S. state of Maryland"},{"name":"7665 Sandy Farm Road powered-shell data center","operator":"GI Partners","owner":"GI Partners","address":"7665 Sandy Farm Rd","city":"Severn","state":"MD","zip":"21144","lat":39.148590476992,"lng":-76.684657645285,"yearOnline":"unknown","powerMw":0,"sqft":300000,"type":"wholesale","status":"under-construction","region":"the U.S. state of Maryland"},{"name":"Security Land Woodlawn Campus Data Center","operator":"Security Land and Development LP","owner":"Security Land and Development LP","address":"1500 Woodlawn Drive","city":"Woodlawn","state":"MD","zip":"unknown","lat":39.306284420851,"lng":-76.734225722352,"yearOnline":"unknown","powerMw":150,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Maryland"},{"name":"COPT DC-3","operator":"Corporate Office Properties Trust (COPT)","owner":"Corporate Office Properties Trust (COPT)","address":"2500 Riva Rd","city":"Annapolis","state":"MD","zip":"21401","lat":38.981135783138,"lng":-76.545125992813,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Maryland"},{"name":"InfraDMS BAL01","operator":"InfraDMS","owner":"unknown","address":"1 South St","city":"Baltimore","state":"MD","zip":"unknown","lat":39.289645630727,"lng":-76.610970172913,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"unknown","region":"the U.S. state of Maryland"},{"name":"DataBridge Sites / ByteGrid MDC-1","operator":"DataBridge Sites / ByteGrid","owner":"Lincoln Rackhouse / Agile Data Sites","address":"12401 Prosperity Drive","city":"Silver Spring","state":"MD","zip":"20904","lat":39.058994201626,"lng":-76.965681665201,"yearOnline":"unknown","powerMw":0,"sqft":214000,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"Atlantech Silver Spring Datacenter","operator":"Atlantech Online","owner":"unknown","address":"1010 Wayne Avenue","city":"Silver Spring","state":"MD","zip":"20910","lat":38.994508201363,"lng":-77.027146763423,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"Atlantech Rockville Datacenter","operator":"Atlantech Online","owner":"unknown","address":"1201 Seven Locks Road","city":"Rockville","state":"MD","zip":"20854","lat":39.06431,"lng":-77.16002,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"AiNET Laurel SCIF / Coloco #8","operator":"AiNET","owner":"unknown","address":"312 Laurel Ave","city":"Laurel","state":"MD","zip":"20707","lat":39.10155092622,"lng":-76.847890318855,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"tw telecom Washington Data Center","operator":"Lumen / tw telecom","owner":"unknown","address":"14405 Laurel Pl","city":"Laurel","state":"MD","zip":"20707","lat":39.08845675635,"lng":-76.860771935088,"yearOnline":"1986","powerMw":0,"sqft":0,"type":"telecom","status":"unknown","region":"the U.S. state of Maryland"},{"name":"Verizon Beltsville","operator":"Verizon Communications","owner":"unknown","address":"7020 Virginia Manor Road","city":"Beltsville","state":"MD","zip":"20705","lat":39.062360220643,"lng":-76.891668797798,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"unknown","region":"the U.S. state of Maryland"},{"name":"Recovery Point Germantown Data Center","operator":"Recovery Point Systems","owner":"Recovery Point Systems","address":"20441 Century Blvd","city":"Germantown","state":"MD","zip":"20874","lat":39.19223709329,"lng":-77.26541623357,"yearOnline":"unknown","powerMw":0,"sqft":115000,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"Aligned IAD-04","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"5601 Manor Woods Road","city":"Frederick","state":"MD","zip":"21703","lat":39.347709147176,"lng":-77.493912177734,"yearOnline":"unknown","powerMw":72,"sqft":0,"type":"hyperscale","status":"under-construction","region":"the U.S. state of Maryland"},{"name":"Rowan Bauxite II - Building 1","operator":"Rowan Digital Infrastructure","owner":"Rowan Digital Infrastructure","address":"Mountville Rd & Ballenger Creek Pike","city":"Frederick","state":"MD","zip":"21703","lat":39.321172146798,"lng":-77.488391038111,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Maryland"},{"name":"Xecunet Data Center","operator":"Xecunet, LLC","owner":"Xecunet, LLC","address":"5744-R Industry Lane","city":"Frederick","state":"MD","zip":"21704","lat":39.393657377785,"lng":-77.416651678465,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"Swift Systems Frederick Data Center I","operator":"Swift Systems, Inc.","owner":"Swift Systems, Inc.","address":"5301 Buckeystown Pike","city":"Frederick","state":"MD","zip":"21704","lat":39.377373404816,"lng":-77.409326584529,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"Swift Systems Frederick Data Center II","operator":"Swift Systems, Inc.","owner":"Swift Systems, Inc.","address":"7340 Executive Way M","city":"Frederick","state":"MD","zip":"21704","lat":39.367880241313,"lng":-77.406778430504,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"Social Security Administration National Support Center","operator":"Social Security Administration","owner":"U.S. General Services Administration","address":"8999 Bennett Creek Blvd.","city":"Urbana","state":"MD","zip":"unknown","lat":39.316722582964,"lng":-77.351526079463,"yearOnline":"2014","powerMw":6,"sqft":285000,"type":"enterprise","status":"operational","region":"the U.S. state of Maryland"},{"name":"Amazon AWS Calvert Technology Center (proposed 8-building campus)","operator":"Amazon AWS","owner":"Amazon Web Services","address":"1650 Calvert Cliffs Parkway","city":"Lusby","state":"MD","zip":"unknown","lat":38.434732596799,"lng":-76.446235553819,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Maryland"},{"name":"Markley One Summer Street","operator":"Markley Group","owner":"Markley Group","address":"1 Summer Street, Boston, MA 02110","city":"Boston","state":"MA","zip":"02110","lat":42.3532,"lng":-71.0608,"yearOnline":"1998","powerMw":30,"sqft":920000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"MicroLink Boston/Cambridge (21 Athenaeum St)","operator":"MicroLink Data Centers","owner":"MicroLink Data Centers","address":"21 Athenaeum St, Cambridge, MA 02142","city":"Cambridge","state":"MA","zip":"02142","lat":42.3662,"lng":-71.0809,"yearOnline":"2028","powerMw":40,"sqft":120000,"type":"colocation","status":"planned","region":"the U.S. state of Massachusetts"},{"name":"Crown Castle Boston (56 Roland St)","operator":"Crown Castle","owner":"Crown Castle","address":"56 Roland St, 2nd Floor, Boston, MA 02129","city":"Boston","state":"MA","zip":"02129","lat":42.3828,"lng":-71.0709,"yearOnline":"unknown","powerMw":1,"sqft":10000,"type":"telecom","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"CoreSite BO1 - Boston Data Center","operator":"CoreSite","owner":"CoreSite","address":"70 Inner Belt Road, Somerville, MA 02143","city":"Somerville","state":"MA","zip":"02143","lat":42.3778,"lng":-71.0826,"yearOnline":"unknown","powerMw":18,"sqft":273000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Evocative Boston BOS1","operator":"Evocative","owner":"Evocative","address":"50 Inner Belt Road, Somerville, MA 02143","city":"Somerville","state":"MA","zip":"02143","lat":42.3784,"lng":-71.0828,"yearOnline":"2009","powerMw":3,"sqft":46000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Expedient Boston / Medford Data Center","operator":"Expedient","owner":"Expedient","address":"1 Cabot Road, Medford, MA 02155","city":"Medford","state":"MA","zip":"02155","lat":42.4017,"lng":-71.0847,"yearOnline":"unknown","powerMw":3.2,"sqft":40000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Equinix BO1 Waltham","operator":"Equinix","owner":"Equinix","address":"74 West Street, Waltham, MA 02453","city":"Waltham","state":"MA","zip":"02453","lat":42.3755,"lng":-71.2459,"yearOnline":"unknown","powerMw":0.4,"sqft":22000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"FirstLight Waltham","operator":"FirstLight Fiber","owner":"FirstLight Fiber","address":"265 Winter Street, Waltham, MA 02451","city":"Waltham","state":"MA","zip":"02451","lat":42.3949,"lng":-71.2664,"yearOnline":"unknown","powerMw":1,"sqft":10000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Cogent Boston (Waltham) Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"300 5th Avenue, Waltham, MA 02451","city":"Waltham","state":"MA","zip":"02451","lat":42.3956,"lng":-71.2687,"yearOnline":"unknown","powerMw":0.6,"sqft":8362,"type":"telecom","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Centersquare Boston BOS1-A","operator":"Centersquare","owner":"Centersquare","address":"580 Winter St, Waltham, MA 02451","city":"Waltham","state":"MA","zip":"02451","lat":42.3955,"lng":-71.2691,"yearOnline":"unknown","powerMw":2.4,"sqft":80000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Centersquare Boston BOS1-B","operator":"Centersquare","owner":"Centersquare","address":"115 2nd Ave, Waltham, MA 02452","city":"Waltham","state":"MA","zip":"02452","lat":42.3862,"lng":-71.2437,"yearOnline":"unknown","powerMw":3.75,"sqft":100000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Centersquare Watertown (BOS4/BO1)","operator":"Centersquare","owner":"Centersquare","address":"486 Arsenal Way, Watertown, MA 02472","city":"Watertown","state":"MA","zip":"02472","lat":42.3624,"lng":-71.1531,"yearOnline":"2002","powerMw":5.4,"sqft":201590,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Equinix BO2 Boston","operator":"Equinix","owner":"Equinix","address":"41 Alexander Road, Billerica, MA 01821","city":"Billerica","state":"MA","zip":"01821","lat":42.5496,"lng":-71.2838,"yearOnline":"unknown","powerMw":6,"sqft":75735,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"EdgeConneX Boston EDCBOS01 / BOS01","operator":"EdgeConneX","owner":"EdgeConneX","address":"22 Linnell Circle, Billerica, MA 01821","city":"Billerica","state":"MA","zip":"01821","lat":42.5516,"lng":-71.2824,"yearOnline":"unknown","powerMw":4.5,"sqft":54700,"type":"edge","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"55 Middlesex Turnpike Data Center","operator":"Camber Development","owner":"Camber Development","address":"55 Middlesex Turnpike, Bedford, MA 01730","city":"Bedford","state":"MA","zip":"01730","lat":42.4841,"lng":-71.2367,"yearOnline":"2000","powerMw":10,"sqft":106000,"type":"wholesale","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Prov.net Boston North","operator":"Prov.net / IronTrust Networks","owner":"Prov.net / IronTrust Networks","address":"187 Billerica Road, Chelmsford, MA 01824","city":"Chelmsford","state":"MA","zip":"01824","lat":42.5928,"lng":-71.3118,"yearOnline":"unknown","powerMw":1,"sqft":20000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Markley Lowell","operator":"Markley Group","owner":"Markley Group","address":"1 Markley Way, Lowell, MA 01852","city":"Lowell","state":"MA","zip":"01852","lat":42.6444,"lng":-71.3019,"yearOnline":"unknown","powerMw":20,"sqft":352000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Markley 2 Tanner Street","operator":"Markley Group-affiliated entity","owner":"Markley Group-affiliated entity","address":"2 Tanner Street, Lowell, MA 01852","city":"Lowell","state":"MA","zip":"01852","lat":42.6399,"lng":-71.3111,"yearOnline":"unknown","powerMw":10,"sqft":112385,"type":"wholesale","status":"planned","region":"the U.S. state of Massachusetts"},{"name":"Markley 90 Bolt Street","operator":"Markley Group-affiliated entity","owner":"Markley Group-affiliated entity","address":"90 Bolt Street, Lowell, MA 01852","city":"Lowell","state":"MA","zip":"01852","lat":42.6407,"lng":-71.3132,"yearOnline":"unknown","powerMw":20,"sqft":200000,"type":"wholesale","status":"planned","region":"the U.S. state of Massachusetts"},{"name":"FirstLight Rockland Data Center","operator":"FirstLight Fiber","owner":"FirstLight Fiber","address":"1050 Hingham St, Rockland, MA 02370","city":"Rockland","state":"MA","zip":"02370","lat":42.1605,"lng":-70.8908,"yearOnline":"unknown","powerMw":1,"sqft":15000,"type":"telecom","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Digital Realty BOS14","operator":"Digital Realty","owner":"Digital Realty Trust","address":"128 First Avenue, Needham, MA 02494","city":"Needham","state":"MA","zip":"02494","lat":42.297,"lng":-71.2306,"yearOnline":"2000","powerMw":13,"sqft":280000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Iron Mountain BOS-1 Boston Data Center","operator":"Iron Mountain","owner":"Iron Mountain","address":"171 Bearfoot Rd, Northborough, MA 01532","city":"Northborough","state":"MA","zip":"01532","lat":42.318,"lng":-71.6288,"yearOnline":"unknown","powerMw":3.6,"sqft":22000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"TierPoint Boston-Andover Data Center","operator":"TierPoint","owner":"TierPoint","address":"15 Shattuck Road, Andover, MA 01810","city":"Andover","state":"MA","zip":"01810","lat":42.6682,"lng":-71.1715,"yearOnline":"unknown","powerMw":5,"sqft":92700,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"NaviSite Andover","operator":"NaviSite","owner":"NaviSite","address":"400 Minuteman Road, Andover, MA 01810","city":"Andover","state":"MA","zip":"01810","lat":42.6706,"lng":-71.209,"yearOnline":"unknown","powerMw":2,"sqft":50000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"TierPoint Boston-Marlborough (34 St Martin Drive)","operator":"TierPoint","owner":"Menlo Digital / Rackhouse","address":"34 St Martin Drive, Marlborough, MA 01752","city":"Marlborough","state":"MA","zip":"01752","lat":42.3234,"lng":-71.5692,"yearOnline":"2013","powerMw":11,"sqft":115000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"365 Data Centers Marlborough","operator":"365 Data Centers","owner":"365 Data Centers","address":"250 Locke Drive, Marlborough, MA 01752","city":"Marlborough","state":"MA","zip":"01752","lat":42.333,"lng":-71.579,"yearOnline":"unknown","powerMw":2.8,"sqft":64800,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Synoptek - Boston Data Center","operator":"Synoptek","owner":"Synoptek","address":"313 Boston Post Road West, Marlborough, MA 01752","city":"Marlborough","state":"MA","zip":"01752","lat":42.3421,"lng":-71.5906,"yearOnline":"unknown","powerMw":1,"sqft":20000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Mass General Brigham Data Center","operator":"Mass General Brigham","owner":"Mass General Brigham","address":"555 Forest St, Marlborough, MA 01752","city":"Marlborough","state":"MA","zip":"01752","lat":42.2982,"lng":-71.5879,"yearOnline":"unknown","powerMw":5,"sqft":80000,"type":"enterprise","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Crown Castle Worcester (MA3)","operator":"Crown Castle","owner":"Crown Castle","address":"474 Main St, Worcester, MA 01608","city":"Worcester","state":"MA","zip":"01608","lat":42.2626,"lng":-71.8027,"yearOnline":"unknown","powerMw":1,"sqft":15000,"type":"telecom","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Cogent Worcester Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"52 LaGrange St, Worcester, MA 01610","city":"Worcester","state":"MA","zip":"01610","lat":42.2533,"lng":-71.8019,"yearOnline":"unknown","powerMw":0.5,"sqft":8250,"type":"telecom","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Cogent Data Center - Springfield","operator":"Cogent Communications","owner":"Cogent Communications","address":"400 Taylor St, Springfield, MA 01105","city":"Springfield","state":"MA","zip":"01105","lat":42.0987,"lng":-72.5786,"yearOnline":"unknown","powerMw":2.3,"sqft":31473,"type":"telecom","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Crown Castle Springfield (MA1)","operator":"Crown Castle","owner":"Crown Castle","address":"1 Federal St, Springfield, MA 01105","city":"Springfield","state":"MA","zip":"01105","lat":42.1037,"lng":-72.5827,"yearOnline":"unknown","powerMw":1,"sqft":10000,"type":"telecom","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Congruity360 Data Center","operator":"Congruity360","owner":"Congruity360","address":"456 Bedford Street, Fall River, MA 02720","city":"Fall River","state":"MA","zip":"02720","lat":41.7055,"lng":-71.155,"yearOnline":"unknown","powerMw":1,"sqft":20000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"MegaNet Massachusetts Datacenter","operator":"MegaNet Communications","owner":"MegaNet Communications","address":"315 Pleasant St, Fall River, MA 02721","city":"Fall River","state":"MA","zip":"02721","lat":41.7033,"lng":-71.1515,"yearOnline":"unknown","powerMw":0.5,"sqft":10000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Fitchburg Fiber - 166 Boulder","operator":"Fitchburg Fiber","owner":"Fitchburg Fiber","address":"166 Boulder Drive, Fitchburg, MA 01420","city":"Fitchburg","state":"MA","zip":"01420","lat":42.5814,"lng":-71.7949,"yearOnline":"unknown","powerMw":0.5,"sqft":5000,"type":"telecom","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Massachusetts Green High Performance Computing Center (MGHPCC)","operator":"MGHPCC Consortium","owner":"MGHPCC Consortium","address":"100 Bigelow Street, Holyoke, MA 01040","city":"Holyoke","state":"MA","zip":"01040","lat":42.2041,"lng":-72.6036,"yearOnline":"2013","powerMw":15,"sqft":90000,"type":"enterprise","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Westfield Data Center Campus (Servistar)","operator":"Servistar Realties, LLC","owner":"Servistar Realties, LLC","address":"199 Servistar Industrial Way, Westfield, MA 01085","city":"Westfield","state":"MA","zip":"01085","lat":42.1373,"lng":-72.7486,"yearOnline":"unknown","powerMw":300,"sqft":2700000,"type":"hyperscale","status":"planned","region":"the U.S. state of Massachusetts"},{"name":"300 Bent Street Data Center (Lumen Cambridge 1)","operator":"Lumen / Lightpath","owner":"Lumen / Lightpath","address":"300 Bent Street, Cambridge, MA 02141","city":"Cambridge","state":"MA","zip":"02141","lat":42.3678,"lng":-71.0848,"yearOnline":"unknown","powerMw":1,"sqft":40000,"type":"telecom","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Verizon Boston #2 (Cambridge 89 Fulkerson)","operator":"Verizon","owner":"Verizon","address":"89 Fulkerson St, Cambridge, MA 02141","city":"Cambridge","state":"MA","zip":"02141","lat":42.3689,"lng":-71.0835,"yearOnline":"unknown","powerMw":1,"sqft":30000,"type":"telecom","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"123NET Detroit Data Center / DC1","operator":"123NET","owner":"123NET","address":"24700 Northwestern Hwy","city":"Southfield","state":"MI","zip":"48075","lat":42.47094842025,"lng":-83.238703542021,"yearOnline":"unknown","powerMw":0,"sqft":80000,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"123NET Southfield Data Center NW / DC2","operator":"123NET","owner":"123NET","address":"24275 Northwestern Hwy","city":"Southfield","state":"MI","zip":"48075","lat":42.467179479879,"lng":-83.234668656697,"yearOnline":"unknown","powerMw":0,"sqft":8000,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"123NET Southfield Data Center W / DC3","operator":"123NET","owner":"123NET","address":"24245 Northwestern Hwy","city":"Southfield","state":"MI","zip":"48075","lat":42.466994454342,"lng":-83.234393055905,"yearOnline":"unknown","powerMw":0,"sqft":8000,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"365 Data Centers DT1 / Detroit","operator":"365 Data Centers","owner":"365 Data Centers","address":"24660 Lahser Road","city":"Southfield","state":"MI","zip":"48033","lat":42.469155016356,"lng":-83.260515639918,"yearOnline":"1986","powerMw":0.609,"sqft":12000,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"EdgeConneX Detroit EDCDET01 / TelNet SFLFMI72W00","operator":"EdgeConneX / TelNet Worldwide","owner":"EdgeConneX / TelNet Worldwide","address":"21005 Lahser Road, Building 4","city":"Southfield","state":"MI","zip":"48033","lat":42.446207491087,"lng":-83.259452473076,"yearOnline":"unknown","powerMw":1.5,"sqft":39900,"type":"edge","status":"operational","region":"the U.S. state of Michigan"},{"name":"Verizon Detroit #2","operator":"Verizon Communications","owner":"Verizon Communications","address":"21555 Melrose Ave","city":"Southfield","state":"MI","zip":"48075","lat":42.447810492723,"lng":-83.255679672204,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Michigan"},{"name":"US Signal Detroit MI04 / Southfield Data Center","operator":"US Signal","owner":"US Signal","address":"21648 Melrose Ave","city":"Southfield","state":"MI","zip":"48075","lat":42.447359781994,"lng":-83.256306249172,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Lumen Detroit","operator":"Lumen","owner":"Lumen","address":"19675 West Ten Mile Road","city":"Southfield","state":"MI","zip":"48075","lat":42.472917515994,"lng":-83.237781946392,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Michigan"},{"name":"US Signal Detroit MI05 / Detroit North Data Center","operator":"US Signal","owner":"US Signal","address":"1035 W Entrance Dr","city":"Auburn Hills","state":"MI","zip":"48326","lat":42.65287916045,"lng":-83.21496004855,"yearOnline":"unknown","powerMw":4,"sqft":76000,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Cogent Troy Office & Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"3331 W Big Beaver Road","city":"Troy","state":"MI","zip":"48084","lat":42.560926544965,"lng":-83.193361046643,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Michigan"},{"name":"ManagedWay Data Center #1","operator":"ManagedWay","owner":"ManagedWay","address":"319 Executive Dr","city":"Troy","state":"MI","zip":"unknown","lat":42.537286680413,"lng":-83.099255757539,"yearOnline":"2001","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"ManagedWay Data Center #2","operator":"ManagedWay","owner":"ManagedWay","address":"600 Executive Dr","city":"Troy","state":"MI","zip":"unknown","lat":42.540052981982,"lng":-83.099228511473,"yearOnline":"2001","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Liberty Center One","operator":"Liberty Center One","owner":"Liberty Center One","address":"4815 Delemere Ave","city":"Royal Oak","state":"MI","zip":"48073","lat":42.532945554257,"lng":-83.177057972212,"yearOnline":"unknown","powerMw":0,"sqft":7800,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"IronGate Detroit / The Bunker","operator":"IronGate","owner":"IronGate","address":"28201 Van Dyke Ave","city":"Warren","state":"MI","zip":"unknown","lat":42.500119895795,"lng":-83.028159169274,"yearOnline":"unknown","powerMw":45,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Lumen Detroit 3","operator":"Lumen","owner":"Lumen","address":"1965 Porter Street","city":"Detroit","state":"MI","zip":"48216","lat":42.325512777154,"lng":-83.069661964254,"yearOnline":"unknown","powerMw":0,"sqft":12757,"type":"telecom","status":"operational","region":"the U.S. state of Michigan"},{"name":"Cogent Data Center - Detroit","operator":"Cogent Communications","owner":"Cogent Communications","address":"1320 3rd Street","city":"Detroit","state":"MI","zip":"48226","lat":42.330452797576,"lng":-83.056383133536,"yearOnline":"unknown","powerMw":4.5,"sqft":31149,"type":"telecom","status":"operational","region":"the U.S. state of Michigan"},{"name":"Detroit Clay St Data Center / Bell Canada 1545 Clay St","operator":"iTel Networks / Bell Canada","owner":"iTel Networks / Bell Canada","address":"1545 Clay Street","city":"Detroit","state":"MI","zip":"48211","lat":42.379129499931,"lng":-83.060753070596,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Michigan"},{"name":"Raeden Detroit / 615 West Lafayette Blvd","operator":"Raeden","owner":"Raeden","address":"615 West Lafayette Blvd","city":"Detroit","state":"MI","zip":"unknown","lat":42.32898859311,"lng":-83.05397261281,"yearOnline":"2022","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Michigan"},{"name":"Raeden Detroit 2 / One Campus Martius","operator":"Raeden","owner":"Raeden","address":"1050 Woodward Ave","city":"Detroit","state":"MI","zip":"unknown","lat":42.332695679242,"lng":-83.047534477833,"yearOnline":"2022","powerMw":3,"sqft":10000,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"US Signal MI03 Detroit Data Center","operator":"US Signal","owner":"US Signal","address":"9275 Haggerty Road","city":"Belleville","state":"MI","zip":"48111","lat":42.235621566693,"lng":-83.445063812243,"yearOnline":"2020","powerMw":0.146,"sqft":2362,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Otava Metro Detroit Data Center","operator":"Otava","owner":"Otava","address":"6435 North Hix Road","city":"Westland","state":"MI","zip":"unknown","lat":42.331058853662,"lng":-83.418691431763,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Liquid Web Lansing DC1","operator":"Liquid Web","owner":"Liquid Web","address":"4210 Creyts Road","city":"Lansing","state":"MI","zip":"48917","lat":42.690604892952,"lng":-84.642429162921,"yearOnline":"unknown","powerMw":13,"sqft":32000,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Liquid Web Lansing DC2","operator":"Liquid Web","owner":"Liquid Web","address":"4428 S Creyts Rd","city":"Lansing","state":"MI","zip":"48917","lat":42.688684137435,"lng":-84.642450957242,"yearOnline":"unknown","powerMw":0,"sqft":32000,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Liquid Web Lansing DC3","operator":"Liquid Web","owner":"Liquid Web","address":"2703 Ena Dr","city":"Lansing","state":"MI","zip":"48917","lat":42.705074925365,"lng":-84.667312165368,"yearOnline":"2010","powerMw":0,"sqft":90000,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"ACD.net MetroIX","operator":"ACD.net","owner":"ACD.net","address":"1800 N Grand River Ave","city":"Lansing","state":"MI","zip":"48906","lat":42.754521617875,"lng":-84.557475038132,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Michigan"},{"name":"Deep Green DG06","operator":"Deep Green","owner":"Deep Green","address":"229 S Cedar Street","city":"Lansing","state":"MI","zip":"unknown","lat":42.730151905515,"lng":-84.470482266,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"planned","region":"the U.S. state of Michigan"},{"name":"CMS Internet Mount Pleasant","operator":"CMS Internet","owner":"CMS Internet","address":"131 S Main St","city":"Mount Pleasant","state":"MI","zip":"48858","lat":43.604157662177,"lng":-84.776579822973,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Clear Rate Battle Creek POP","operator":"Clear Rate Communications","owner":"Clear Rate Communications","address":"62 Michigan Ave E","city":"Battle Creek","state":"MI","zip":"49017","lat":42.318347361993,"lng":-85.181700187676,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Michigan"},{"name":"Metronet Galesburg","operator":"Metronet","owner":"Metronet","address":"13800 E Michigan Ave","city":"Galesburg","state":"MI","zip":"49053","lat":42.281792610576,"lng":-85.36041716123,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Michigan"},{"name":"Otava Ann Arbor Data Center","operator":"Otava","owner":"Otava","address":"640 Avis Drive","city":"Ann Arbor","state":"MI","zip":"48104","lat":42.212231991263,"lng":-83.740363546327,"yearOnline":"unknown","powerMw":0,"sqft":10500,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Synergy Broadband Ann Arbor Data Center","operator":"Synergy Broadband","owner":"Synergy Broadband","address":"3131 S. State, Suite 306","city":"Ann Arbor","state":"MI","zip":"48108","lat":42.241964481872,"lng":-83.739112883283,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Velocity Data Center","operator":"Velocity Data Centers","owner":"Velocity Data Centers","address":"6163 Jackson Road","city":"Ann Arbor","state":"MI","zip":"48103","lat":42.290248169845,"lng":-83.851655383562,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Meta Howell Township Data Center","operator":"Meta","owner":"Meta","address":"W Marr Road & N Fleming Road site","city":"Howell Township","state":"MI","zip":"unknown","lat":42.665274815766,"lng":-84.01443725918,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Michigan"},{"name":"Otava Mid-Michigan Data Center","operator":"Otava","owner":"Carter Validus","address":"5225 Exchange Drive","city":"Flint","state":"MI","zip":"48507","lat":42.96922956282,"lng":-83.779369498135,"yearOnline":"unknown","powerMw":0,"sqft":32500,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Aunalytics Kalamazoo Data Center","operator":"Aunalytics","owner":"Aunalytics","address":"6395 Technology Ave","city":"Kalamazoo","state":"MI","zip":"49009","lat":42.240508892412,"lng":-85.677316134171,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Hyperscale Data Michigan","operator":"Hyperscale Data, Inc.","owner":"Ault Alliance / Hyperscale Data, Inc.","address":"415 E Prairie Ronde St","city":"Dowagiac","state":"MI","zip":"49047","lat":41.99100733899,"lng":-86.100800049157,"yearOnline":"unknown","powerMw":0,"sqft":100000,"type":"crypto","status":"operational","region":"the U.S. state of Michigan"},{"name":"Pavilion Township Data Center","operator":"Unknown Company","owner":"Unknown Company","address":"S 26th St & E N Ave site","city":"Pavilion Township","state":"MI","zip":"49048","lat":42.244875967677,"lng":-85.511825345086,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Michigan"},{"name":"Telesystem DC-2","operator":"Buckeye Telesystem","owner":"Buckeye Telesystem","address":"1240 Huber Drive","city":"Monroe","state":"MI","zip":"48162","lat":41.936385552343,"lng":-83.404937263467,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Michigan"},{"name":"Cloverleaf Frenchtown Township / Monroe Data Center Campus","operator":"Cloverleaf Infrastructure","owner":"Cloverleaf Infrastructure","address":"1500 N Dixie Hwy","city":"Monroe","state":"MI","zip":"48162","lat":41.927346365916,"lng":-83.356856149241,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Michigan"},{"name":"US Signal MI01 Grand Rapids East","operator":"US Signal","owner":"US Signal","address":"4765 Barden Ct SE","city":"Grand Rapids","state":"MI","zip":"unknown","lat":42.87690347654,"lng":-85.563698606365,"yearOnline":"unknown","powerMw":0,"sqft":40000,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"400 76th Street SW Data Center / US Signal MI02 / 123NET DC4","operator":"US Signal / 123NET","owner":"US Signal / 123NET","address":"400 76th Street SW","city":"Byron Center","state":"MI","zip":"49315","lat":42.826202163837,"lng":-85.67268596115,"yearOnline":"unknown","powerMw":0.25,"sqft":3500,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"ManagedWay Byron Data Center","operator":"ManagedWay","owner":"ManagedWay","address":"700 76th Street Southwest","city":"Byron Center","state":"MI","zip":"unknown","lat":42.826327745654,"lng":-85.682324413946,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Everstream Grand Rapids Data Center","operator":"Everstream","owner":"Everstream","address":"3950 Sparks Ave SE","city":"Grand Rapids","state":"MI","zip":"49546","lat":42.915448217734,"lng":-85.569870602089,"yearOnline":"2016","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Michigan"},{"name":"Iserv Data Center","operator":"382 Communications / Iserv","owner":"382 Communications / Iserv","address":"5222 33rd St","city":"Grand Rapids","state":"MI","zip":"49512","lat":42.903142186744,"lng":-85.539250772745,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Microsoft Azure Dorr Township Land-Bank Site","operator":"Microsoft Azure","owner":"Microsoft Azure","address":"144th Ave & 14th St site","city":"Dorr Township","state":"MI","zip":"unknown","lat":42.739443891756,"lng":-85.682766744852,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Michigan"},{"name":"511 Building / Minnesota Technology Center carrier hotel","operator":"Cologix; DataBank; Lumen; other carrier-hotel tenants","owner":"multiple/unknown","address":"511 11th Avenue South","city":"Minneapolis","state":"MN","zip":"55415","lat":44.972381860868,"lng":-93.255588816877,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"T5@Minneapolis / Cloud Capital Minneapolis CBD Data Center","operator":"T5 Data Centers","owner":"Cloud Capital / Arcapita","address":"1001 3rd Avenue South","city":"Minneapolis","state":"MN","zip":"unknown","lat":44.972138443777,"lng":-93.270543573613,"yearOnline":"unknown","powerMw":0,"sqft":330000,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"The Marq / Cogent Minneapolis Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"250 Marquette Avenue","city":"Minneapolis","state":"MN","zip":"55401","lat":44.980706737112,"lng":-93.26733137332,"yearOnline":"unknown","powerMw":0,"sqft":522656,"type":"telecom","status":"unknown","region":"the U.S. state of Minnesota"},{"name":"Lumen Minneapolis 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"222 S 9th Street","city":"Minneapolis","state":"MN","zip":"unknown","lat":44.973672278384,"lng":-93.270785255777,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Minnesota"},{"name":"CenturyLink / Lumen Minneapolis Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"600 Stinson Blvd.","city":"Minneapolis","state":"MN","zip":"55413","lat":44.996036321474,"lng":-93.227041320927,"yearOnline":"unknown","powerMw":0,"sqft":7088,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Windstream Minneapolis","operator":"Windstream","owner":"Windstream","address":"401 2nd Ave S","city":"Minneapolis","state":"MN","zip":"55401","lat":44.978547658583,"lng":-93.26704403088,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"unknown","region":"the U.S. state of Minnesota"},{"name":"Minneapolis Data Center Redevelopment Opportunity","operator":"unknown","owner":"unknown","address":"255 2nd Ave S","city":"Minneapolis","state":"MN","zip":"unknown","lat":44.980018777566,"lng":-93.265827244364,"yearOnline":"unknown","powerMw":0,"sqft":75000,"type":"wholesale","status":"planned","region":"the U.S. state of Minnesota"},{"name":"EdgeConneX MSP01 Minneapolis","operator":"EdgeConneX","owner":"EdgeConneX","address":"6875 Shady Oak Road","city":"Eden Prairie","state":"MN","zip":"55344","lat":44.878923489826,"lng":-93.405027840279,"yearOnline":"unknown","powerMw":2.5,"sqft":32738,"type":"edge","status":"operational","region":"the U.S. state of Minnesota"},{"name":"US Signal Minneapolis MN01 / OneNeck-VISI Eden Prairie","operator":"US Signal","owner":"US Signal","address":"10290 W 70th St","city":"Eden Prairie","state":"MN","zip":"55344","lat":44.876710386838,"lng":-93.407170186895,"yearOnline":"unknown","powerMw":0,"sqft":50000,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Ridgeview Data Center","operator":"Ridgeview Data Center","owner":"Ridgeview Data Center","address":"12450 Wayzata Blvd, Suite 110","city":"Minnetonka","state":"MN","zip":"55305","lat":44.971345008517,"lng":-93.436764000377,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Lumen Minnetonka 2","operator":"Lumen Technologies","owner":"Mapletree","address":"5480 Feltl Rd","city":"Minnetonka","state":"MN","zip":"unknown","lat":44.90509673498,"lng":-93.420832641925,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Minnesota"},{"name":"DataBank MSP1 West Twin Cities","operator":"DataBank","owner":"DataBank","address":"7700 France Ave S","city":"Edina","state":"MN","zip":"55435","lat":44.863358559436,"lng":-93.329015585265,"yearOnline":"unknown","powerMw":0,"sqft":26240,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"DataBank MSP2 East Twin Cities","operator":"DataBank","owner":"DataBank","address":"3255 Neil Armstrong Blvd","city":"Eagan","state":"MN","zip":"55121","lat":44.837519163599,"lng":-93.145331985724,"yearOnline":"unknown","powerMw":5,"sqft":48860,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Flexential Chaska Data Center","operator":"Flexential","owner":"Flexential","address":"3500 Lyman Blvd","city":"Chaska","state":"MN","zip":"55318","lat":44.849509869932,"lng":-93.599409247691,"yearOnline":"unknown","powerMw":9,"sqft":160838,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Stream MSPA1 / Minneapolis II","operator":"Stream Data Centers","owner":"Stream Data Centers","address":"1706 West Creek Lane","city":"Chaska","state":"MN","zip":"55318","lat":44.806067049749,"lng":-93.634758239281,"yearOnline":"2017","powerMw":4.8,"sqft":56000,"type":"enterprise","status":"operational","region":"the U.S. state of Minnesota"},{"name":"LightEdge / former Stream Minneapolis I","operator":"LightEdge","owner":"LightEdge","address":"1708 West Creek Lane","city":"Chaska","state":"MN","zip":"55318","lat":44.80614346347,"lng":-93.634759258121,"yearOnline":"2014","powerMw":7.2,"sqft":75800,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"UnitedHealth Chaska Data Center","operator":"UnitedHealth Group","owner":"UnitedHealth Group","address":"1707 W Creek Lane","city":"Chaska","state":"MN","zip":"unknown","lat":44.806068133723,"lng":-93.634596736375,"yearOnline":"2012","powerMw":0,"sqft":250000,"type":"enterprise","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Centersquare MSP1 Shakopee Campus","operator":"Centersquare","owner":"Centersquare","address":"4450 Dean Lakes Boulevard","city":"Shakopee","state":"MN","zip":"55379","lat":44.780727450367,"lng":-93.464181558197,"yearOnline":"unknown","powerMw":10,"sqft":50000,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Connect Eagan Data Center","operator":"Connect Data Centers","owner":"Oppidan","address":"550 Opperman Dr","city":"Eagan","state":"MN","zip":"55123","lat":44.827913538711,"lng":-93.110912122682,"yearOnline":"unknown","powerMw":5,"sqft":61500,"type":"colocation","status":"under-construction","region":"the U.S. state of Minnesota"},{"name":"Swervo / former Unisys Eagan Data Center Campus","operator":"Swervo Development Corp","owner":"Swervo Development Corp","address":"3199 Pilot Knob Rd","city":"Eagan","state":"MN","zip":"55121","lat":44.841136565742,"lng":-93.167325748772,"yearOnline":"unknown","powerMw":0,"sqft":39000,"type":"enterprise","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Meta Rosemount Data Center Campus","operator":"Meta Platforms","owner":"Meta Platforms","address":"County Road 42 and Blaine Avenue","city":"Rosemount","state":"MN","zip":"unknown","lat":44.738848027092,"lng":-93.054848841631,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Minnesota"},{"name":"Google Pine Island / Project Skyway","operator":"Google","owner":"Google","address":"500th Street and U.S. Highway 52","city":"Pine Island","state":"MN","zip":"55963","lat":44.224339223425,"lng":-92.650616209534,"yearOnline":"unknown","powerMw":0,"sqft":3000000,"type":"hyperscale","status":"planned","region":"the U.S. state of Minnesota"},{"name":"H5 Data Centers Minneapolis / SunGard STP-1125","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"1125 Energy Park Dr, Suite 100","city":"St. Paul","state":"MN","zip":"55108","lat":44.970584083012,"lng":-93.14719273185,"yearOnline":"unknown","powerMw":0,"sqft":17000,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"SunGard St. Paul Data Center STP-605","operator":"SunGard Availability Services","owner":"SunGard Availability Services","address":"605 N. Fairview Ave","city":"St. Paul","state":"MN","zip":"55104","lat":44.95940672499,"lng":-93.177284747333,"yearOnline":"unknown","powerMw":0,"sqft":26550,"type":"colocation","status":"unknown","region":"the U.S. state of Minnesota"},{"name":"CenterServ St. Paul Data Center","operator":"CenterServ","owner":"CenterServ","address":"445 Minnesota Street","city":"St. Paul","state":"MN","zip":"unknown","lat":44.948437026302,"lng":-93.093701804278,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"IronGate Downtown Minneapolis / MSP01","operator":"IronGate","owner":"IronGate","address":"110 N 1st St","city":"Minneapolis","state":"MN","zip":"unknown","lat":44.984746497951,"lng":-93.268072589466,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"the U.S. state of Minnesota"},{"name":"IronGate Woodbury MSP1 / Twin Cities East","operator":"IronGate","owner":"IronGate","address":"401 Bielenberg Dr","city":"Woodbury","state":"MN","zip":"55125","lat":44.947224754935,"lng":-92.953623712875,"yearOnline":"2024","powerMw":16,"sqft":85334,"type":"wholesale","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Ark Data Centers Duluth 2","operator":"Ark Data Centers","owner":"Ark Data Centers","address":"421 N. 6th Ave. East","city":"Duluth","state":"MN","zip":"55805","lat":46.79546445574,"lng":-92.09539867072,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Consolidated Communications Duluth Data Center","operator":"Consolidated Communications","owner":"Consolidated Communications","address":"21 West Superior Street, Suite 200","city":"Duluth","state":"MN","zip":"55802","lat":46.786769844984,"lng":-92.098534094516,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Google Hermantown Data Center Campus","operator":"Google","owner":"Google","address":"Midway Road and Morris Thomas Road","city":"Hermantown","state":"MN","zip":"55810","lat":46.778661680301,"lng":-92.280128773188,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Minnesota"},{"name":"Consolidated Communications Mankato Data Center","operator":"Consolidated Communications","owner":"Consolidated Communications","address":"221 E. Hickory Street","city":"Mankato","state":"MN","zip":"56001","lat":44.164757214264,"lng":-94.002990544639,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"RevNet / Integris RNDC #1 Braham Data Center","operator":"Integris / RevNet","owner":"Integris / RevNet","address":"205 SW 2nd St","city":"Braham","state":"MN","zip":"55006","lat":45.723963709969,"lng":-93.172941034929,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Paul Bunyan Communications Bemidji Data Center","operator":"Paul Bunyan Communications","owner":"Paul Bunyan Communications","address":"1831 Anne St NW","city":"Bemidji","state":"MN","zip":"56601","lat":47.505154074036,"lng":-94.907683137181,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Vaultas Alexandria","operator":"Vaultas","owner":"Vaultas","address":"720 Hawthorne St","city":"Alexandria","state":"MN","zip":"56308","lat":45.884491848302,"lng":-95.376174819669,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Vaultas St. Cloud","operator":"Vaultas","owner":"Vaultas","address":"3701 18th St S","city":"St. Cloud","state":"MN","zip":"56301","lat":45.540512051428,"lng":-94.202342095193,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Minnesota"},{"name":"702 Communications Data Center","operator":"702 Communications","owner":"702 Communications","address":"702 Main Ave","city":"Moorhead","state":"MN","zip":"56560","lat":46.873840301465,"lng":-96.769252678176,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Minnesota"},{"name":"NETDOOR Data Center","operator":"NETDOOR","owner":"NETDOOR","address":"812 N State St","city":"Jackson","state":"MS","zip":"unknown","lat":32.30889789893,"lng":-90.178523613946,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Mississippi"},{"name":"Lumen Jackson Data Center","operator":"Lumen","owner":"Lumen","address":"111 East Capitol Street","city":"Jackson","state":"MS","zip":"unknown","lat":32.300292204375,"lng":-90.188208841519,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Mississippi"},{"name":"C Spire Ridgeland","operator":"C Spire","owner":"C Spire","address":"1018 Highland Colony Pkwy","city":"Ridgeland","state":"MS","zip":"39157","lat":32.440597006446,"lng":-90.147715680209,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Mississippi"},{"name":"C Spire Hattiesburg (formerly MegaGate Broadband)","operator":"C Spire","owner":"C Spire","address":"6184 US Hwy 98","city":"Hattiesburg","state":"MS","zip":"39402","lat":31.320164806488,"lng":-89.389750052547,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Mississippi"},{"name":"C Spire Gulfport Data Center","operator":"C Spire","owner":"C Spire","address":"10394 Express Dr","city":"Gulfport","state":"MS","zip":"39503","lat":30.43807732407,"lng":-89.037627090067,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Mississippi"},{"name":"CleanSpark Wiggins","operator":"CleanSpark","owner":"CleanSpark","address":"736 Hall St","city":"Wiggins","state":"MS","zip":"39577","lat":30.849297643541,"lng":-89.142407124564,"yearOnline":"2024","powerMw":0,"sqft":10500,"type":"crypto","status":"operational","region":"the U.S. state of Mississippi"},{"name":"CleanSpark Vicksburg","operator":"CleanSpark","owner":"CleanSpark","address":"1000 Rubber Way","city":"Vicksburg","state":"MS","zip":"39180","lat":32.260422121399,"lng":-90.91937451442,"yearOnline":"2024","powerMw":0,"sqft":17500,"type":"crypto","status":"operational","region":"the U.S. state of Mississippi"},{"name":"CleanSpark Meridian","operator":"CleanSpark","owner":"CleanSpark","address":"2905 S Frontage Rd","city":"Meridian","state":"MS","zip":"39301","lat":32.348771728876,"lng":-88.707180470948,"yearOnline":"2024","powerMw":0,"sqft":5500,"type":"crypto","status":"operational","region":"the U.S. state of Mississippi"},{"name":"AWS Ridgeland","operator":"Amazon Web Services","owner":"Amazon Web Services","address":"1218 West County Line Road","city":"Ridgeland","state":"MS","zip":"unknown","lat":32.399560121582,"lng":-90.132725310768,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Mississippi"},{"name":"Compass Meridian Campus","operator":"Compass Datacenters","owner":"Compass Datacenters","address":"303 W Malone Ranch Rd","city":"Meridian","state":"MS","zip":"unknown","lat":32.394006732034,"lng":-88.628460933767,"yearOnline":"unknown","powerMw":320,"sqft":2000000,"type":"hyperscale","status":"planned","region":"the U.S. state of Mississippi"},{"name":"FirstLight Fiber FirstLight Damariscotta","operator":"FirstLight Fiber","owner":"FirstLight Fiber","address":"527 Main Street","city":"Damariscotta","state":"ME","zip":"04543","lat":44.039287848142,"lng":-69.510890225271,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Maine"},{"name":"Verizon PTLCME","operator":"Verizon","owner":"Verizon","address":"380 Cumberland Avenue","city":"Portland","state":"ME","zip":"04101","lat":43.657101266511,"lng":-70.262805636198,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Maine"},{"name":"Consolidated Communications Portland (45 Forest Ave)","operator":"Consolidated Communications","owner":"Consolidated Communications","address":"45 Forest Avenue","city":"Portland","state":"ME","zip":"04101","lat":43.66578114422,"lng":-70.276130279189,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Maine"},{"name":"FirstLight Portland facility / NNENIX Portland (9 Westland)","operator":"FirstLight Fiber / Northern New England Neutral Internet Exchange","owner":"FirstLight Fiber","address":"9 Westland Avenue","city":"Portland","state":"ME","zip":"04102","lat":43.658303459626,"lng":-70.299538832712,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Maine"},{"name":"Networkmaine / NNENIX — USM Science Building (Room 235)","operator":"Networkmaine","owner":"University of Southern Maine / University of Maine System","address":"70 Falmouth Street, Room 235","city":"Portland","state":"ME","zip":"04103","lat":43.662113579525,"lng":-70.278266403896,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Maine"},{"name":"Consolidated Communications Bangor Central Office","operator":"Consolidated Communications","owner":"Consolidated Communications","address":"59 Park Street","city":"Bangor","state":"ME","zip":"04401","lat":44.803530425522,"lng":-68.769684431025,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Maine"},{"name":"Cogent Data Center - Kansas City","operator":"Cogent Communications","owner":"Cogent Communications","address":"101 Holmes St","city":"Kansas City","state":"MO","zip":"64106","lat":39.112826765978,"lng":-94.576749178105,"yearOnline":"1984","powerMw":11,"sqft":67520,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"KC1 - 1102 Grand Kansas City Data Center","operator":"Netrality Data Centers","owner":"Netrality Data Centers","address":"1102 Grand Blvd","city":"Kansas City","state":"MO","zip":"64106","lat":39.100946893145,"lng":-94.580943673428,"yearOnline":"unknown","powerMw":0,"sqft":110000,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"LightEdge Kansas City Data Center","operator":"LightEdge Solutions","owner":"LightEdge Solutions","address":"9050 NE Underground Drive, Pillar 312","city":"Kansas City","state":"MO","zip":"64161","lat":39.158469200701,"lng":-94.472967400716,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"TierPoint Kansas City","operator":"TierPoint","owner":"TierPoint","address":"10801 N Amity Ave","city":"Kansas City","state":"MO","zip":"64153","lat":39.291745365675,"lng":-94.686465882524,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"Lumen Kansas City 1","operator":"Lumen","owner":"Lumen","address":"1100 Walnut Street","city":"Kansas City","state":"MO","zip":"64106","lat":39.101004792249,"lng":-94.58209497195,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Missouri"},{"name":"Lumen Kansas City 3","operator":"Lumen","owner":"Lumen","address":"1212 E. 19th St","city":"Kansas City","state":"MO","zip":"64108","lat":39.090041354165,"lng":-94.568802275567,"yearOnline":"unknown","powerMw":0,"sqft":50000,"type":"telecom","status":"operational","region":"the U.S. state of Missouri"},{"name":"Iron Mountain Kansas City Data Center (KCM-1)","operator":"Iron Mountain Data Centers","owner":"Iron Mountain Data Centers","address":"6301 Winchester Ave, Suite 817","city":"Kansas City","state":"MO","zip":"64133","lat":39.010830846124,"lng":-94.504569075233,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"Lincoln Rackhouse Kansas City / Airworld Data Center","operator":"Lincoln Rackhouse","owner":"Lincoln Rackhouse","address":"11155 N Airworld Dr","city":"Kansas City","state":"MO","zip":"64153","lat":39.296061859166,"lng":-94.676003723893,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"the U.S. state of Missouri"},{"name":"IP Pathways Kansas City","operator":"IP Pathways","owner":"IP Pathways","address":"324 East 11th St, Suite 500","city":"Kansas City","state":"MO","zip":"64106","lat":39.101032821634,"lng":-94.57933754699,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"Contegix Mainmark","operator":"Contegix","owner":"Contegix","address":"1627 Main St","city":"Kansas City","state":"MO","zip":"64108","lat":39.094210755497,"lng":-94.583406837716,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"Joe's Datacenter Kansas City","operator":"Joe's Datacenter","owner":"Joe's Datacenter","address":"1325 Tracy Ave","city":"Kansas City","state":"MO","zip":"64106","lat":39.097714449409,"lng":-94.567478472027,"yearOnline":"2013","powerMw":1,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"1530 Swift / NOCIX Swift Data Center","operator":"NOCIX","owner":"NOCIX","address":"1530 Swift St","city":"North Kansas City","state":"MO","zip":"64116","lat":39.136577634916,"lng":-94.577423461451,"yearOnline":"unknown","powerMw":0,"sqft":175000,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"NOCIX Clay","operator":"NOCIX","owner":"NOCIX","address":"201 E 16th Ave","city":"North Kansas City","state":"MO","zip":"64116","lat":39.137767714482,"lng":-94.578826192074,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"Holly Data Center","operator":"KC NAP","owner":"KC NAP","address":"2401 Holly St","city":"Kansas City","state":"MO","zip":"unknown","lat":39.084017058858,"lng":-94.598395850433,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Missouri"},{"name":"Patmos AI Data Center","operator":"Patmos Hosting, Inc.","owner":"Patmos Hosting, Inc.","address":"1601 McGee St","city":"Kansas City","state":"MO","zip":"64108","lat":39.095008162727,"lng":-94.579868428052,"yearOnline":"unknown","powerMw":100,"sqft":400000,"type":"colocation","status":"under-construction","region":"the U.S. state of Missouri"},{"name":"Edged Kansas City","operator":"Edged","owner":"Edged","address":"3420 N Arlington Avenue","city":"Kansas City","state":"MO","zip":"64161","lat":39.156992540785,"lng":-94.461868808292,"yearOnline":"2024","powerMw":0,"sqft":124000,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"210 North Tucker St. Louis Data Center","operator":"Netrality","owner":"Netrality","address":"210 N Tucker Blvd, Suite 1030","city":"St. Louis","state":"MO","zip":"63101","lat":38.629038996191,"lng":-90.197493365036,"yearOnline":"unknown","powerMw":12,"sqft":442000,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"H5 Data Centers St. Louis / Globe Building","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"710 N. Tucker Blvd., Suite 610","city":"St. Louis","state":"MO","zip":"63101","lat":38.632526942275,"lng":-90.196345832512,"yearOnline":"unknown","powerMw":0,"sqft":36000,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"Ascent St Louis STL1","operator":"Ascent","owner":"Ascent","address":"6400 Page Ave","city":"St. Louis","state":"MO","zip":"unknown","lat":38.672890434051,"lng":-90.299262453871,"yearOnline":"unknown","powerMw":8,"sqft":88000,"type":"wholesale","status":"operational","region":"the U.S. state of Missouri"},{"name":"Lumen St. Louis 1","operator":"Lumen","owner":"Lumen","address":"1015 Locust Street","city":"St. Louis","state":"MO","zip":"63101","lat":38.629999011172,"lng":-90.194423890464,"yearOnline":"unknown","powerMw":0,"sqft":40178,"type":"telecom","status":"operational","region":"the U.S. state of Missouri"},{"name":"TierPoint St. Louis - Olive Data Center","operator":"TierPoint","owner":"TierPoint","address":"1111 Olive St","city":"St. Louis","state":"MO","zip":"63101","lat":38.629438446576,"lng":-90.195807111387,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"TierPoint St. Louis - Millpark Data Center","operator":"TierPoint","owner":"TierPoint","address":"2315 Millpark Drive, Suite 104","city":"Maryland Heights","state":"MO","zip":"63043","lat":38.698910066263,"lng":-90.409985000508,"yearOnline":"2022","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"TierPoint St. Louis - Locust Data Center","operator":"TierPoint","owner":"TierPoint","address":"2300 Locust Street","city":"St. Louis","state":"MO","zip":"unknown","lat":38.633740426393,"lng":-90.212214424839,"yearOnline":"unknown","powerMw":8,"sqft":0,"type":"colocation","status":"under-construction","region":"the U.S. state of Missouri"},{"name":"Verizon St. Louis #2 Data Center","operator":"Verizon","owner":"Verizon","address":"2020 Westport Center Dr","city":"Maryland Heights","state":"MO","zip":"63146","lat":38.694047643379,"lng":-90.421715035013,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Missouri"},{"name":"Centersquare St. Louis STL1","operator":"Centersquare","owner":"Centersquare","address":"587 James S. McDonnell Blvd","city":"Hazelwood","state":"MO","zip":"63042","lat":38.771974748234,"lng":-90.381377743197,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"Mastercard Technology Campus Missouri","operator":"Mastercard","owner":"Mastercard","address":"2200 Mastercard Blvd","city":"O'Fallon","state":"MO","zip":"63368","lat":38.746265667086,"lng":-90.749418603152,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Missouri"},{"name":"Brightspeed Jefferson","operator":"Brightspeed","owner":"Brightspeed","address":"319 Madison St","city":"Jefferson City","state":"MO","zip":"65101","lat":38.575392540482,"lng":-92.171831744506,"yearOnline":"unknown","powerMw":0,"sqft":59010,"type":"telecom","status":"operational","region":"the U.S. state of Missouri"},{"name":"Brightspeed Columbia","operator":"Brightspeed","owner":"Brightspeed","address":"625 Cherry St","city":"Columbia","state":"MO","zip":"65201","lat":38.950573462956,"lng":-92.330487124859,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Missouri"},{"name":"Orion Data Centers","operator":"Orion Data Centers","owner":"Cybercon / Edge Centres","address":"500 E Walnut St","city":"Columbia","state":"MO","zip":"65201","lat":38.952592619348,"lng":-92.331716013167,"yearOnline":"unknown","powerMw":0.23,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"Lumen Columbia 1","operator":"Lumen","owner":"Lumen","address":"3201 Falling Leaf Ct","city":"Columbia","state":"MO","zip":"65201","lat":38.915132047797,"lng":-92.295551998226,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Missouri"},{"name":"Bluebird Underground Data Center","operator":"Bluebird Network","owner":"Bluebird Network","address":"1904 Le Compte Rd","city":"Springfield","state":"MO","zip":"65802","lat":37.230377141614,"lng":-93.21566613604,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"Sentinel Maine / Jay Androscoggin Mill Data Center","operator":"unknown","owner":"JGT2 Redevelopment","address":"300 Riley Rd","city":"Jay","state":"ME","zip":"04239","lat":44.50874,"lng":-70.24003,"yearOnline":"unknown","powerMw":82,"sqft":1000000,"type":"hyperscale","status":"unknown","region":"the U.S. state of Maine"},{"name":"1 Federal St carrier colocation facility (Crown Castle Springfield MA1 / Lumen Springfield 1)","operator":"Crown Castle / Lumen","owner":"unknown","address":"1 Federal St","city":"Springfield","state":"MA","zip":"01105","lat":42.111429777555,"lng":-72.579454093502,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Cogent Data Center - Springfield","operator":"Cogent Communications","owner":"Cogent Communications","address":"400 Taylor Street","city":"Springfield","state":"MA","zip":"01105","lat":42.112395093559,"lng":-72.583852694409,"yearOnline":"unknown","powerMw":0,"sqft":31473,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"474 Main St carrier colocation facility (Crown Castle Worcester MA3 / Lumen Worcester 1)","operator":"Crown Castle / Lumen","owner":"unknown","address":"474 Main St","city":"Worcester","state":"MA","zip":"01608","lat":42.262586788082,"lng":-71.802618172644,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Cogent Data Center - Worcester","operator":"Cogent Communications","owner":"Cogent Communications","address":"52 LaGrange St","city":"Worcester","state":"MA","zip":"01610","lat":42.254533539041,"lng":-71.808523806027,"yearOnline":"unknown","powerMw":0,"sqft":8250,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"TierPoint Boston-Marlborough Data Center","operator":"TierPoint","owner":"unknown","address":"34 St. Martin Drive","city":"Marlborough","state":"MA","zip":"01752","lat":42.313906889947,"lng":-71.581388736487,"yearOnline":"unknown","powerMw":0,"sqft":140000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"365 Data Centers Marlborough Data Center","operator":"365 Data Centers","owner":"365 Data Centers","address":"250 Locke Drive","city":"Marlborough","state":"MA","zip":"01752","lat":42.352700702459,"lng":-71.584105506349,"yearOnline":"unknown","powerMw":2.8,"sqft":64800,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Synoptek - Boston Data Center","operator":"Synoptek","owner":"Synoptek","address":"313 Boston Post Road West, Suite 190","city":"Marlborough","state":"MA","zip":"01752","lat":42.337894131778,"lng":-71.592126078449,"yearOnline":"2016","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Mass General Brigham Data Center","operator":"Mass General Brigham","owner":"Mass General Brigham","address":"555 Forest St","city":"Marlborough","state":"MA","zip":"unknown","lat":42.324820793195,"lng":-71.590866906559,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Congruity360 Data Center","operator":"Congruity360","owner":"unknown","address":"456 Bedford Street","city":"Fall River","state":"MA","zip":"02720","lat":41.70043167495,"lng":-71.146866164181,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"unknown","region":"the U.S. state of Massachusetts"},{"name":"MegaNet Massachusetts Datacenter","operator":"MegaNet Communications","owner":"unknown","address":"315 Pleasant St","city":"Fall River","state":"MA","zip":"02721","lat":41.699417839727,"lng":-71.150194168373,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Lumen Cambridge 1 / Lightpath Data Center","operator":"Lumen / Lightpath","owner":"unknown","address":"300 Bent Street","city":"Cambridge","state":"MA","zip":"02141","lat":42.367532528601,"lng":-71.085812952493,"yearOnline":"unknown","powerMw":0,"sqft":40000,"type":"telecom","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Verizon Boston #2","operator":"Verizon Communications","owner":"Verizon Communications","address":"89 Fulkerson St, 1st Floor","city":"Cambridge","state":"MA","zip":"02141","lat":42.369802596414,"lng":-71.087484498014,"yearOnline":"unknown","powerMw":0,"sqft":30400,"type":"telecom","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Fitchburg Fiber 166 Boulder","operator":"Fitchburg Fiber","owner":"unknown","address":"166 Boulder Drive","city":"Fitchburg","state":"MA","zip":"01420","lat":42.582508378413,"lng":-71.80113227858,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"unknown","region":"the U.S. state of Massachusetts"},{"name":"Codman Hill Road Data Center","operator":"unknown","owner":"unknown","address":"60 Codman Hill Road","city":"Boxborough","state":"MA","zip":"01719","lat":42.486916371001,"lng":-71.549839557226,"yearOnline":"unknown","powerMw":0,"sqft":100260,"type":"unknown","status":"unknown","region":"the U.S. state of Massachusetts"},{"name":"CoreSite BO1 - Boston Data Center","operator":"CoreSite","owner":"unknown","address":"70 Inner Belt Road","city":"Somerville","state":"MA","zip":"02143","lat":42.377124030278,"lng":-71.080769123858,"yearOnline":"unknown","powerMw":10.7,"sqft":273000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Evocative BOS1 / HorizonIQ Boston 2","operator":"Evocative / HorizonIQ","owner":"unknown","address":"50 Inner Belt Road","city":"Somerville","state":"MA","zip":"02143","lat":42.378615074317,"lng":-71.080882923468,"yearOnline":"unknown","powerMw":6,"sqft":46000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Markley One Summer Street Carrier Hotel","operator":"Markley Group","owner":"Markley Group","address":"One Summer Street","city":"Boston","state":"MA","zip":"02110","lat":42.355422315196,"lng":-71.060478238165,"yearOnline":"unknown","powerMw":30,"sqft":920000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Verizon Boston","operator":"Verizon Communications","owner":"Verizon Communications","address":"451 D Street","city":"Boston","state":"MA","zip":"02210","lat":42.345586404889,"lng":-71.042816665208,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"unknown","region":"the U.S. state of Massachusetts"},{"name":"Crown Castle Boston","operator":"Crown Castle","owner":"Crown Castle","address":"56 Roland St","city":"Boston","state":"MA","zip":"02129","lat":42.381596737123,"lng":-71.079756002562,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"unknown","region":"the U.S. state of Massachusetts"},{"name":"TierPoint Boston-Charlestown","operator":"TierPoint","owner":"TierPoint","address":"500 Rutherford Avenue","city":"Charlestown","state":"MA","zip":"02129","lat":42.383231008376,"lng":-71.073433336856,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Iron Mountain BOS-1 Boston Data Center","operator":"Iron Mountain","owner":"Iron Mountain","address":"171 Bear Foot Road","city":"Northborough","state":"MA","zip":"01532","lat":42.340879955855,"lng":-71.637056357008,"yearOnline":"unknown","powerMw":3.6,"sqft":22000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Digital Realty BOS14","operator":"Digital Realty","owner":"Digital Realty","address":"128 First Avenue","city":"Needham","state":"MA","zip":"02494","lat":42.301774698886,"lng":-71.221843470495,"yearOnline":"unknown","powerMw":30,"sqft":280000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Digital Realty BOS16","operator":"Digital Realty","owner":"Digital Realty","address":"105 Cabot Street","city":"Needham","state":"MA","zip":"02494","lat":42.302828348467,"lng":-71.221113436808,"yearOnline":"unknown","powerMw":10,"sqft":133000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Equinix BO2 Boston","operator":"Equinix","owner":"Equinix","address":"41 Alexander Road","city":"Billerica","state":"MA","zip":"01821","lat":42.552909275726,"lng":-71.217437474464,"yearOnline":"unknown","powerMw":0,"sqft":75000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"EdgeConneX EDCBOS01","operator":"EdgeConneX","owner":"EdgeConneX","address":"22 Linnell Circle","city":"Billerica","state":"MA","zip":"01821","lat":42.529934540179,"lng":-71.251006557166,"yearOnline":"unknown","powerMw":6,"sqft":54700,"type":"edge","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Prov.net / IronTrust Networks Boston North","operator":"Prov.net / IronTrust Networks","owner":"unknown","address":"187 Billerica Road","city":"Chelmsford","state":"MA","zip":"01824","lat":42.597757210533,"lng":-71.33183596064,"yearOnline":"unknown","powerMw":1,"sqft":8000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Csquare BOS1 Waltham Data Center Campus","operator":"Csquare / Centersquare","owner":"unknown","address":"580 Winter Street","city":"Waltham","state":"MA","zip":"02451","lat":42.396952529734,"lng":-71.266607505458,"yearOnline":"unknown","powerMw":16,"sqft":165968,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"115 2nd - Digital Realty","operator":"Digital Realty","owner":"Digital Realty","address":"115 Second Avenue","city":"Waltham","state":"MA","zip":"02451","lat":42.392494199375,"lng":-71.26456142977,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"600 Winter - Digital Realty / Centersquare BOS1-C","operator":"Digital Realty / Centersquare","owner":"Digital Realty","address":"600 Winter Street","city":"Waltham","state":"MA","zip":"02451","lat":42.396996564188,"lng":-71.26678419183,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"FirstLight / ColoSpace Waltham Data Center","operator":"FirstLight / ColoSpace","owner":"unknown","address":"265 Winter Street","city":"Waltham","state":"MA","zip":"02451","lat":42.398858503609,"lng":-71.25335594362,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Cogent Boston - Waltham Office & Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"100 Fifth Ave, Suite 1030","city":"Waltham","state":"MA","zip":"02451","lat":42.394522019338,"lng":-71.255969634798,"yearOnline":"unknown","powerMw":0,"sqft":8400,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Csquare BOS4-A Watertown Data Center","operator":"Csquare / Centersquare","owner":"unknown","address":"486 Arsenal Way","city":"Watertown","state":"MA","zip":"02472","lat":42.363283481866,"lng":-71.161011747536,"yearOnline":"unknown","powerMw":0,"sqft":205,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"FirstLight Rockland Data Center","operator":"FirstLight","owner":"unknown","address":"1050 Hingham St","city":"Rockland","state":"MA","zip":"02370","lat":42.164559195306,"lng":-70.897855722694,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"55 Middlesex Turnpike Data Center","operator":"Camber Development","owner":"unknown","address":"55 Middlesex Turnpike","city":"Bedford","state":"MA","zip":"01730","lat":42.498359799805,"lng":-71.281208834288,"yearOnline":"unknown","powerMw":10,"sqft":106000,"type":"colocation","status":"operational","region":"the U.S. state of Massachusetts"},{"name":"Lumen Minneapolis 1","operator":"Lumen","owner":"Lumen","address":"222 South 9th Street","city":"Minneapolis","state":"MN","zip":"unknown","lat":44.973672278384,"lng":-93.270785255777,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Lumen Minneapolis 2","operator":"Lumen","owner":"Lumen","address":"715 North 2nd Street","city":"Minneapolis","state":"MN","zip":"unknown","lat":44.988620949022,"lng":-93.276049639568,"yearOnline":"unknown","powerMw":0,"sqft":14200,"type":"telecom","status":"operational","region":"the U.S. state of Minnesota"},{"name":"CenturyLink / Lumen Minneapolis Data Center","operator":"Lumen","owner":"Lumen","address":"600 Stinson Boulevard","city":"Minneapolis","state":"MN","zip":"55413","lat":44.996036321474,"lng":-93.227041320927,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Verizon 1200 Washington","operator":"Verizon","owner":"Verizon","address":"1200 Washington Avenue North","city":"Minneapolis","state":"MN","zip":"unknown","lat":44.990975928938,"lng":-93.28088182509,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Minnesota"},{"name":"IronGate Downtown Minneapolis","operator":"IronGate Data Centers","owner":"IronGate Data Centers","address":"110 North 1st Street","city":"Minneapolis","state":"MN","zip":"unknown","lat":44.984746497951,"lng":-93.268072589466,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"unknown","region":"the U.S. state of Minnesota"},{"name":"DataBank MSP1 / West Twin Cities Data Center","operator":"DataBank","owner":"DataBank","address":"7700 France Avenue South","city":"Edina","state":"MN","zip":"55435","lat":44.863358559436,"lng":-93.329015585265,"yearOnline":"unknown","powerMw":1.35,"sqft":26240,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"DataBank MSP2 / East Twin Cities Data Center","operator":"DataBank","owner":"DataBank","address":"3255 Neil Armstrong Boulevard","city":"Eagan","state":"MN","zip":"55121","lat":44.837519163599,"lng":-93.145331985724,"yearOnline":"unknown","powerMw":5,"sqft":48860,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"DataBank 10300 6th Ave Data Center","operator":"DataBank","owner":"DataBank","address":"10300 6th Avenue North","city":"Plymouth","state":"MN","zip":"55441","lat":44.985777180233,"lng":-93.410829145407,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Flexential Minneapolis - Chaska Data Center","operator":"Flexential","owner":"Flexential","address":"3500 Lyman Boulevard","city":"Chaska","state":"MN","zip":"55318","lat":44.849509869932,"lng":-93.599409247691,"yearOnline":"unknown","powerMw":9,"sqft":160000,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"U.S. Bank Chaska Data Center / Project Cofferdam","operator":"U.S. Bank","owner":"U.S. Bank","address":"West side of Highway 212 and Engler Boulevard","city":"Chaska","state":"MN","zip":"unknown","lat":44.805288333908,"lng":-93.603249879095,"yearOnline":"2018","powerMw":0,"sqft":56000,"type":"enterprise","status":"operational","region":"the U.S. state of Minnesota"},{"name":"H5 Data Centers Minneapolis (St. Paul)","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"1125 Energy Park Drive, Suite 100","city":"Saint Paul","state":"MN","zip":"55108","lat":44.970584083012,"lng":-93.14719273185,"yearOnline":"unknown","powerMw":0,"sqft":17000,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"US Signal MN01 Minneapolis Data Center","operator":"US Signal","owner":"US Signal","address":"10290 West 70th Street","city":"Eden Prairie","state":"MN","zip":"55344","lat":44.876710386838,"lng":-93.407170186895,"yearOnline":"unknown","powerMw":0.523,"sqft":4723,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Trustwave NOC / BHI Data and Collocation Center","operator":"Trustwave Holdings","owner":"Trustwave Holdings","address":"7599 Corporate Way","city":"Eden Prairie","state":"MN","zip":"55344","lat":44.86516808832,"lng":-93.468071438079,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Lumen Minnetonka 1 Data Center","operator":"Lumen","owner":"Lumen","address":"5510 Feltl Road","city":"Minnetonka","state":"MN","zip":"unknown","lat":44.904680921327,"lng":-93.42057872615,"yearOnline":"unknown","powerMw":0,"sqft":12000,"type":"telecom","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Ridgeview Data Center / US Internet Minnetonka","operator":"Ridgeview","owner":"Ridgeview","address":"12450 Wayzata Boulevard, Suite 110","city":"Minnetonka","state":"MN","zip":"55305","lat":44.971345008517,"lng":-93.436764000377,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Ark Data Centers Duluth 2","operator":"ark data centers","owner":"ark data centers","address":"421 North 6th Avenue East","city":"Duluth","state":"MN","zip":"55805","lat":46.79546445574,"lng":-92.09539867072,"yearOnline":"unknown","powerMw":0,"sqft":12000,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Vaultas St. Cloud","operator":"Vaultas","owner":"Vaultas","address":"3701 18th Street South","city":"St. Cloud","state":"MN","zip":"56301","lat":45.540512051428,"lng":-94.202342095193,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"under-construction","region":"the U.S. state of Minnesota"},{"name":"Vaultas Alexandria","operator":"Vaultas","owner":"Vaultas","address":"720 Hawthorne Street","city":"Alexandria","state":"MN","zip":"56308","lat":45.884491848302,"lng":-95.376174819669,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"unknown","region":"the U.S. state of Minnesota"},{"name":"Integris Braham","operator":"Integris","owner":"Integris","address":"205 2nd Street SW","city":"Braham","state":"MN","zip":"55006","lat":45.723963709969,"lng":-93.172941034929,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Paul Bunyan Communications Bemidji Data Center","operator":"Paul Bunyan Communications","owner":"Paul Bunyan Communications","address":"1831 Anne Street NW","city":"Bemidji","state":"MN","zip":"56601","lat":47.505154074036,"lng":-94.907683137181,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Minnesota"},{"name":"UnitedHealth Group Elk River Data Center","operator":"UnitedHealth Group","owner":"Cristobal Ventures LLC (CloudHQ affiliate)","address":"14100 Business Center Drive NW","city":"Elk River","state":"MN","zip":"unknown","lat":45.305673688548,"lng":-93.621394565489,"yearOnline":"2007","powerMw":0,"sqft":240000,"type":"enterprise","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Target TTC Data Center","operator":"Target","owner":"Target","address":"18195 Waco Street NW","city":"Elk River","state":"MN","zip":"55330-1752","lat":45.301131915833,"lng":-93.628363446611,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Unisys Eagan Data Center / Swervo Eagan","operator":"Swervo / IronGate Data Centers","owner":"Swervo / IronGate Data Centers","address":"3199 Pilot Knob Road","city":"Eagan","state":"MN","zip":"55121","lat":44.841136565742,"lng":-93.167325748772,"yearOnline":"unknown","powerMw":0,"sqft":245000,"type":"enterprise","status":"operational","region":"the U.S. state of Minnesota"},{"name":"Connect Eagan","operator":"Connect Data Centers","owner":"Oppidan","address":"550 Opperman Drive","city":"Eagan","state":"MN","zip":"unknown","lat":44.827913538711,"lng":-93.110912122682,"yearOnline":"unknown","powerMw":5,"sqft":61500,"type":"colocation","status":"planned","region":"the U.S. state of Minnesota"},{"name":"CENTRA MSP1 / Centra Minneapolis","operator":"CENTRA","owner":"CENTRA","address":"610 Opperman Drive","city":"Eagan","state":"MN","zip":"unknown","lat":44.827891866551,"lng":-93.113387418633,"yearOnline":"unknown","powerMw":10,"sqft":150000,"type":"colocation","status":"under-construction","region":"the U.S. state of Minnesota"},{"name":"CloudHQ Chaska Data Center","operator":"CloudHQ","owner":"CloudHQ","address":"2007 Schoolmaster Drive","city":"Chaska","state":"MN","zip":"55318","lat":44.812450739107,"lng":-93.632739787757,"yearOnline":"unknown","powerMw":0,"sqft":1500000,"type":"hyperscale","status":"planned","region":"the U.S. state of Minnesota"},{"name":"IronGate Woodbury MSP1 / Twin Cities East","operator":"IronGate Data Centers","owner":"IronGate Data Centers","address":"401 Bielenberg Drive","city":"Woodbury","state":"MN","zip":"55125","lat":44.947224754935,"lng":-92.953623712875,"yearOnline":"unknown","powerMw":15,"sqft":85334,"type":"colocation","status":"operational","region":"the U.S. state of Minnesota"},{"name":"IronGate MSP2","operator":"IronGate Data Centers","owner":"IronGate Data Centers","address":"500 Bielenberg Drive","city":"Woodbury","state":"MN","zip":"55125","lat":44.941282199681,"lng":-92.954440995458,"yearOnline":"unknown","powerMw":16,"sqft":346000,"type":"colocation","status":"under-construction","region":"the U.S. state of Minnesota"},{"name":"Expedient Baltimore - Tide Point","operator":"Expedient","owner":"Expedient","address":"1050 Hull Street, Suite 150","city":"Baltimore","state":"MD","zip":"21230","lat":39.274762758349,"lng":-76.590562307828,"yearOnline":"unknown","powerMw":0,"sqft":23083,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"Comcast Nottingham Data Center","operator":"Comcast","owner":"unknown","address":"8031 Corporate Drive","city":"Nottingham","state":"MD","zip":"21236","lat":39.368675775192,"lng":-76.468098324782,"yearOnline":"unknown","powerMw":0,"sqft":66000,"type":"enterprise","status":"operational","region":"the U.S. state of Maryland"},{"name":"AiNET Glen Burnie CyberNAP","operator":"AiNET","owner":"AiNET","address":"7900 Ritchie Highway","city":"Glen Burnie","state":"MD","zip":"21061","lat":39.140552222989,"lng":-76.603055995139,"yearOnline":"unknown","powerMw":80,"sqft":360000,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"7665 Sandy Farm Road powered-shell","operator":"GI Partners","owner":"GI Partners","address":"7665 Sandy Farm Road","city":"Severn","state":"MD","zip":"21144","lat":39.148590476992,"lng":-76.684657645285,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"the U.S. state of Maryland"},{"name":"9800 South Eternal Rings Drive powered-shell","operator":"GI Partners","owner":"GI Partners","address":"9800 South Eternal Rings Drive","city":"Laurel","state":"MD","zip":"unknown","lat":39.132543505907,"lng":-76.84676201676,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"the U.S. state of Maryland"},{"name":"9100 Guilford Road enterprise data center (former CareFirst)","operator":"CareFirst (former)","owner":"unknown","address":"9100 Guilford Road","city":"Columbia","state":"MD","zip":"21046","lat":39.17002578399,"lng":-76.848247150508,"yearOnline":"unknown","powerMw":1.8,"sqft":62335,"type":"enterprise","status":"unknown","region":"the U.S. state of Maryland"},{"name":"AiNET Laurel SCIF (Coloco #8)","operator":"AiNET","owner":"AiNET","address":"312 Laurel Avenue","city":"Laurel","state":"MD","zip":"20707","lat":39.10155092622,"lng":-76.847890318855,"yearOnline":"2021","powerMw":0,"sqft":15000,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"tw telecom / Lumen Washington Data Center (Laurel)","operator":"Lumen (tw telecom)","owner":"Lumen Technologies","address":"14405 Laurel Place","city":"Laurel","state":"MD","zip":"20707","lat":39.08845675635,"lng":-76.860771935088,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Maryland"},{"name":"Recovery Point Germantown Data Center","operator":"Recovery Point Systems","owner":"Recovery Point Systems","address":"20441 Century Boulevard","city":"Germantown","state":"MD","zip":"20874","lat":39.19223709329,"lng":-77.26541623357,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Maryland"},{"name":"Microsoft Howard County data center project","operator":"Microsoft","owner":"Microsoft","address":"8201 Dorsey Run Road","city":"Annapolis Junction","state":"MD","zip":"20701","lat":39.119195728878,"lng":-76.792803480265,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Maryland"},{"name":"Liquid Web Dearborn","operator":"Liquid Web","owner":"Liquid Web","address":"22005 Outer Dr W","city":"Dearborn","state":"MI","zip":"48124","lat":42.28562,"lng":-83.23363,"yearOnline":"2006","powerMw":0.6,"sqft":7000,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Lumen Detroit 4","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"200 Galleria Officentre, 2nd Floor, Room 219","city":"Southfield","state":"MI","zip":"unknown","lat":42.496168104032,"lng":-83.293050089339,"yearOnline":"1999","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Quicken Loans Technology Center","operator":"Quicken Loans","owner":"Quicken Loans","address":"1401 Rosa Parks Boulevard","city":"Detroit","state":"MI","zip":"unknown","lat":42.325924759859,"lng":-83.068980877859,"yearOnline":"2015","powerMw":2.5,"sqft":66000,"type":"enterprise","status":"operational","region":"the U.S. state of Michigan"},{"name":"Raeden Detroit Carrier Hotel","operator":"Raeden","owner":"Raeden","address":"615 W Lafayette Blvd","city":"Detroit","state":"MI","zip":"unknown","lat":42.32898859311,"lng":-83.05397261281,"yearOnline":"2025","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Nexcess Southfield Data Center","operator":"Nexcess","owner":"Nexcess","address":"21700 Melrose Ave","city":"Southfield","state":"MI","zip":"48075","lat":42.446945204198,"lng":-83.25628663133,"yearOnline":"unknown","powerMw":3,"sqft":16000,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"EdgeConneX Detroit EDCDET01 / TelNet SFLFMI72W00","operator":"EdgeConneX / TelNet Worldwide","owner":"EdgeConneX","address":"21005 Lahser Rd, Bldg 4","city":"Southfield","state":"MI","zip":"48033","lat":42.446207491087,"lng":-83.259452473076,"yearOnline":"unknown","powerMw":1.5,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Michigan"},{"name":"Cogent Data Center - Troy","operator":"Cogent Communications","owner":"Cogent Communications","address":"3331 W Big Beaver Rd","city":"Troy","state":"MI","zip":"48084","lat":42.560926544965,"lng":-83.193361046643,"yearOnline":"unknown","powerMw":0.33,"sqft":2842,"type":"telecom","status":"operational","region":"the U.S. state of Michigan"},{"name":"ManagedWay Detroit Data Center TYM1","operator":"ManagedWay","owner":"ManagedWay","address":"319 Executive Drive","city":"Troy","state":"MI","zip":"unknown","lat":42.537286680413,"lng":-83.099255757539,"yearOnline":"unknown","powerMw":1,"sqft":20000,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"ManagedWay Detroit Data Center TYM2","operator":"ManagedWay","owner":"ManagedWay","address":"600 Executive Drive","city":"Troy","state":"MI","zip":"unknown","lat":42.540052981982,"lng":-83.099228511473,"yearOnline":"unknown","powerMw":4,"sqft":50000,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"US Signal Detroit North / MI05","operator":"US Signal","owner":"US Signal","address":"1035 West Entrance Drive","city":"Auburn Hills","state":"MI","zip":"unknown","lat":42.65287916045,"lng":-83.21496004855,"yearOnline":"2024","powerMw":4,"sqft":76000,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Meta Howell Township","operator":"Meta","owner":"Meta","address":"W Marr Rd & N Fleming Rd","city":"Howell","state":"MI","zip":"unknown","lat":42.665274815766,"lng":-84.01443725918,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Michigan"},{"name":"US Signal MI01 Grand Rapids Data Center","operator":"US Signal","owner":"US Signal","address":"4765 Barden Court","city":"Kentwood","state":"MI","zip":"49512","lat":42.87690347654,"lng":-85.563698606365,"yearOnline":"2014","powerMw":3,"sqft":3778,"type":"colocation","status":"operational","region":"the U.S. state of Michigan"},{"name":"Microsoft Dorr Township Data Center","operator":"Microsoft","owner":"Microsoft","address":"144th Ave & 14th St","city":"Dorr Township","state":"MI","zip":"49348","lat":42.739443891756,"lng":-85.682766744852,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Michigan"},{"name":"Pavilion Township Data Center","operator":"unknown","owner":"unknown","address":"S 26th St & E N Ave","city":"Pavilion Township","state":"MI","zip":"49048","lat":42.244875967677,"lng":-85.511825345086,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Michigan"},{"name":"Project Flex Campus","operator":"Verrus","owner":"Verrus / Sidewalk Infrastructure Partners","address":"Milford Rd & W New Hudson Dr","city":"New Hudson","state":"MI","zip":"48165","lat":42.507531822747,"lng":-83.615480896223,"yearOnline":"unknown","powerMw":0,"sqft":1800000,"type":"hyperscale","status":"planned","region":"the U.S. state of Michigan"},{"name":"Orion Data Centers (now Cybercon/Edge Centres)","operator":"Cybercon (Edge Centres)","owner":"Cybercon (Edge Centres)","address":"500 E Walnut Street, Suite 102","city":"Columbia","state":"MO","zip":"65201","lat":38.952592619348,"lng":-92.331716013167,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"Bluebird Underground Data Center","operator":"Bluebird Network","owner":"Bluebird Network","address":"1904 N Le Compte Ave","city":"Springfield","state":"MO","zip":"65802","lat":37.230377141614,"lng":-93.21566613604,"yearOnline":"unknown","powerMw":6,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"Wildwood Ranch Data Center","operator":"unknown","owner":"unknown","address":"W 20th St & S Central City Rd","city":"Joplin","state":"MO","zip":"64804","lat":37.070840368604,"lng":-94.583899743986,"yearOnline":"unknown","powerMw":200,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Missouri"},{"name":"Lumen Kansas City 2","operator":"Lumen","owner":"Lumen","address":"1212 East 19th Street","city":"Kansas City","state":"MO","zip":"unknown","lat":39.090041354165,"lng":-94.568802275567,"yearOnline":"unknown","powerMw":0,"sqft":50000,"type":"telecom","status":"operational","region":"the U.S. state of Missouri"},{"name":"Rackspace Kansas City (MCI1)","operator":"Rackspace","owner":"GI Partners / California State Teachers’ Retirement System DataCore fund","address":"10828 NW Airworld Drive","city":"Kansas City","state":"MO","zip":"64153","lat":39.289829050524,"lng":-94.674841280345,"yearOnline":"unknown","powerMw":1.5,"sqft":77545,"type":"enterprise","status":"operational","region":"the U.S. state of Missouri"},{"name":"2121 E 63rd St Data Center","operator":"unknown","owner":"unknown","address":"2121 E 63rd Street","city":"Kansas City","state":"MO","zip":"64132","lat":39.012701724827,"lng":-94.562562693529,"yearOnline":"unknown","powerMw":3.6,"sqft":450021,"type":"wholesale","status":"unknown","region":"the U.S. state of Missouri"},{"name":"Edged Kansas City","operator":"Edged Data Centers","owner":"Edged Data Centers","address":"3420 North Arlington Avenue","city":"Kansas City","state":"MO","zip":"unknown","lat":39.156992540785,"lng":-94.461868808292,"yearOnline":"2024","powerMw":26,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Missouri"},{"name":"210 North Tucker St. Louis Carrier Hotel","operator":"Netrality","owner":"Netrality","address":"210 North Tucker Boulevard","city":"St. Louis","state":"MO","zip":"63101","lat":38.629038996191,"lng":-90.197493365036,"yearOnline":"unknown","powerMw":0,"sqft":442837,"type":"colocation","status":"operational","region":"the U.S. state of Missouri"},{"name":"C Spire Starkville Data Center","operator":"C Spire","owner":"C Spire","address":"100 Research Blvd, Suite 105","city":"Starkville","state":"MS","zip":"39759","lat":33.470153728301,"lng":-88.790284719168,"yearOnline":"2014","powerMw":0,"sqft":23800,"type":"colocation","status":"operational","region":"the U.S. state of Mississippi"},{"name":"Mississippi e-Center","operator":"Venture Technologies","owner":"Venture Technologies","address":"1230 Raymond Road","city":"Jackson","state":"MS","zip":"39204","lat":32.284327479127,"lng":-90.243513767782,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Mississippi"},{"name":"Amazon AWS - Ridgeland Campus","operator":"Amazon Web Services","owner":"Amazon Web Services","address":"1626 County Line Rd","city":"Ridgeland","state":"MS","zip":"unknown","lat":32.399547362942,"lng":-90.120483988311,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Mississippi"},{"name":"Flexential Louisville - Downtown","operator":"Flexential","owner":"Flexential","address":"752 Barret Avenue, Louisville, KY 40204","city":"Louisville","state":"KY","zip":"40204","lat":38.241,"lng":-85.737,"yearOnline":"unknown","powerMw":3.09,"sqft":61080,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Flexential Louisville - East","operator":"Flexential","owner":"Flexential","address":"2101 Nelson Miller Parkway, Louisville, KY 40223","city":"Louisville","state":"KY","zip":"40223","lat":38.254,"lng":-85.566,"yearOnline":"unknown","powerMw":1.46,"sqft":33588,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Louisville Enterprise Data Center","operator":"Aphorio Carter","owner":"Aphorio Carter (formerly Carter Validus)","address":"12901 Plantside Dr, Louisville, KY 40299","city":"Louisville","state":"KY","zip":"40299","lat":38.217,"lng":-85.552,"yearOnline":"2011","powerMw":1,"sqft":102500,"type":"enterprise","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Simpsonville Enterprise Data Center","operator":"Aphorio Carter","owner":"Aphorio Carter (formerly Carter Validus)","address":"70 Kingbrook Pkwy, Simpsonville, KY 40067","city":"Simpsonville","state":"KY","zip":"40067","lat":38.213,"lng":-85.358,"yearOnline":"unknown","powerMw":1,"sqft":102500,"type":"enterprise","status":"operational","region":"the U.S. state of Kentucky"},{"name":"IgLou Data Center","operator":"IgLou","owner":"IgLou","address":"3315 Gilmore Industrial Blvd, Louisville, KY 40213","city":"Louisville","state":"KY","zip":"40213","lat":38.18,"lng":-85.703,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"BluegrassNet East Breckinridge","operator":"BluegrassNet","owner":"BluegrassNet","address":"321 E Breckinridge St, Louisville, KY 40203","city":"Louisville","state":"KY","zip":"40203","lat":38.236,"lng":-85.748,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"BluegrassNet Downtown Louisville","operator":"BluegrassNet","owner":"BluegrassNet","address":"800 S 4th St, Louisville, KY 40201","city":"Louisville","state":"KY","zip":"40201","lat":38.24,"lng":-85.758,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Windstream Louisville, KY","operator":"Windstream","owner":"Windstream","address":"929 Mason Avenue, Louisville, KY 40204","city":"Louisville","state":"KY","zip":"40204","lat":38.241,"lng":-85.732,"yearOnline":"unknown","powerMw":0,"sqft":3500,"type":"telecom","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Lumen Louisville 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"848 South 8th Street, Louisville, KY","city":"Louisville","state":"KY","zip":"unknown","lat":38.245,"lng":-85.765,"yearOnline":"unknown","powerMw":0,"sqft":13400,"type":"telecom","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Lumen Louisville 2","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"715 S 7th St, Louisville, KY 40203","city":"Louisville","state":"KY","zip":"40203","lat":38.245,"lng":-85.761,"yearOnline":"unknown","powerMw":0,"sqft":13400,"type":"telecom","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Lumen Louisville 3","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"332 W. Broadway, 17th Floor, Louisville, KY 40202","city":"Louisville","state":"KY","zip":"40202","lat":38.247,"lng":-85.758,"yearOnline":"unknown","powerMw":0,"sqft":10495,"type":"telecom","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Data Canopy - Louisville","operator":"Data Canopy","owner":"Data Canopy","address":"1208 Quality Choice Place, Louisville, KY 40210","city":"Louisville","state":"KY","zip":"40210","lat":38.226,"lng":-85.797,"yearOnline":"unknown","powerMw":2,"sqft":8130,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Silica Broadband","operator":"Silica Broadband","owner":"Davey Holdings LLC","address":"12935 W U.S. Hwy 42, Prospect, KY 40059","city":"Prospect","state":"KY","zip":"40059","lat":38.347,"lng":-85.616,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"PowerHouse Louisville","operator":"PowerHouse Data Centers","owner":"American Real Estate Partners / PowerHouse Data Centers","address":"Camp Ground Road, Louisville, KY","city":"Louisville","state":"KY","zip":"unknown","lat":38.198,"lng":-85.841,"yearOnline":"unknown","powerMw":400,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Kentucky"},{"name":"KUSI Data Center","operator":"Kentucky Underground Storage, Inc.","owner":"Kentucky Underground Storage, Inc.","address":"3830 Highbridge Rd, Wilmore, KY 40390","city":"Wilmore","state":"KY","zip":"40390","lat":37.825,"lng":-84.658,"yearOnline":"unknown","powerMw":0,"sqft":2300,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Gearheart Communications","operator":"Gearheart Communications","owner":"Gearheart Communications","address":"1003 Winchester Rd, Lexington, KY 40505","city":"Lexington","state":"KY","zip":"40505","lat":38.04229,"lng":-84.46727,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Windstream Lexington, KY","operator":"Windstream","owner":"Windstream","address":"151 N Martin Luther King Blvd, Lexington, KY 40507","city":"Lexington","state":"KY","zip":"40507","lat":38.045,"lng":-84.495,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Kentucky"},{"name":"BluegrassNet Downtown Lexington","operator":"BluegrassNet","owner":"BluegrassNet","address":"535 W 2nd St, Lexington, KY 40508","city":"Lexington","state":"KY","zip":"40508","lat":38.054,"lng":-84.51,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"DartPoints Lexington Data Center (former Lexmark site)","operator":"DartPoints","owner":"DartPoints","address":"745 W New Circle Rd, Lexington, KY","city":"Lexington","state":"KY","zip":"unknown","lat":38.071,"lng":-84.519,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"planned","region":"the U.S. state of Kentucky"},{"name":"CyrusOne CIN6 - Florence","operator":"CyrusOne","owner":"CyrusOne","address":"7190-7200 Industrial Road, Florence, KY 41042","city":"Florence","state":"KY","zip":"41042","lat":38.976,"lng":-84.642,"yearOnline":"unknown","powerMw":4,"sqft":143000,"type":"wholesale","status":"operational","region":"the U.S. state of Kentucky"},{"name":"CBTS Florence Data Center","operator":"CBTS","owner":"CBTS","address":"987 Central Blvd., Florence, KY 41042","city":"Florence","state":"KY","zip":"41042","lat":38.979,"lng":-84.636,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Lost River Data Center","operator":"BGMU Fiber","owner":"Bowling Green Municipal Utilities / BGMU Fiber","address":"2413 Nashville Rd, Bowling Green, KY 42101","city":"Bowling Green","state":"KY","zip":"42101","lat":36.955,"lng":-86.478,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Riot Platforms Paducah","operator":"Riot Platforms","owner":"Riot Platforms","address":"5657 Commerce Dr, Paducah, KY 42001","city":"Paducah","state":"KY","zip":"42001","lat":37.078,"lng":-88.679,"yearOnline":"unknown","powerMw":35,"sqft":0,"type":"crypto","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Quad State Internet PAH1","operator":"Quad State Internet","owner":"Quad State Internet LLC","address":"1212 Helen St, Paducah, KY 42001-2200","city":"Paducah","state":"KY","zip":"42001","lat":37.095,"lng":-88.628,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Core Scientific Calvert City (Calvert 1, 2 & 3)","operator":"Core Scientific","owner":"Core Scientific","address":"1035 Shar-Cal Rd, Calvert City, KY 42029","city":"Calvert City","state":"KY","zip":"42029","lat":37.035,"lng":-88.358,"yearOnline":"2019","powerMw":150,"sqft":60000,"type":"crypto","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Riot Platforms Calvert City (Blue Steel)","operator":"Riot Platforms","owner":"Riot Platforms","address":"1542 N Main St, Calvert City, KY 42029","city":"Calvert City","state":"KY","zip":"42029","lat":37.042,"lng":-88.353,"yearOnline":"unknown","powerMw":25,"sqft":0,"type":"crypto","status":"operational","region":"the U.S. state of Kentucky"},{"name":"EnergyNet Data Center","operator":"EnergyNet","owner":"EnergyNet","address":"1820 E. 9th Street, Hopkinsville, KY 42240","city":"Hopkinsville","state":"KY","zip":"42240","lat":36.87,"lng":-87.456,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Kentucky"},{"name":"East Kentucky Network Data Center","operator":"East Kentucky Network","owner":"East Kentucky Network","address":"101 Technology Trail, Ivel, KY 41642","city":"Ivel","state":"KY","zip":"41642","lat":37.509,"lng":-82.723,"yearOnline":"unknown","powerMw":0,"sqft":16700,"type":"telecom","status":"operational","region":"the U.S. state of Kentucky"},{"name":"Ashland Technology Complex and Data Center","operator":"Ashland Technology Complex and Data Center","owner":"Ashland Technology Complex and Data Center","address":"500 Diederich Blvd, Russell, KY 41169","city":"Russell","state":"KY","zip":"41169","lat":38.522,"lng":-82.691,"yearOnline":"unknown","powerMw":0,"sqft":189000,"type":"colocation","status":"planned","region":"the U.S. state of Kentucky"},{"name":"Muskie Data Campus","operator":"TeraWulf","owner":"TeraWulf","address":"EastPark Industrial Park, Ashland area, KY","city":"Ashland","state":"KY","zip":"unknown","lat":38.5,"lng":-82.9,"yearOnline":"unknown","powerMw":1000,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Kentucky"},{"name":"Justified Data / Hawesville AI Data Center Campus","operator":"Justified DataPower LLC","owner":"Justified DataPower LLC / Raylan Data Holdings","address":"1627 State Route 3543, Hawesville, KY","city":"Hawesville","state":"KY","zip":"unknown","lat":37.9,"lng":-86.758,"yearOnline":"unknown","powerMw":480,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Kentucky"},{"name":"Big Pond / Mason County Campus","operator":"Undisclosed Fortune 100 corporation","owner":"unknown","address":"3014 Big Pond Rd, Maysville, KY 41056","city":"Maysville","state":"KY","zip":"41056","lat":38.615,"lng":-83.821,"yearOnline":"unknown","powerMw":2200,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Kentucky"},{"name":"TenKey Data Center Campus (Gateway 65)","operator":"TenKey Data Center Campus LLC","owner":"TenKey Data Center Campus LLC","address":"421 Steele Rd, Franklin, KY 42134","city":"Franklin","state":"KY","zip":"42134","lat":36.695,"lng":-86.595,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Kentucky"},{"name":"TierPoint Sioux Falls - East Data Center","operator":"TierPoint","owner":"TierPoint","address":"700 East 54th Street North","city":"Sioux Falls","state":"SD","zip":"57104","lat":43.594735746141,"lng":-96.719263134733,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of South Dakota"},{"name":"SDN Communications La Mesa Data Center / TierPoint Sioux Falls - West","operator":"TierPoint","owner":"SDN Communications","address":"5300 North La Mesa Drive","city":"Sioux Falls","state":"SD","zip":"57107","lat":43.60695,"lng":-96.80919,"yearOnline":"2012","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of South Dakota"},{"name":"Midco Sioux Falls Data Center","operator":"Midco","owner":"Midco","address":"5401 South Solberg Avenue","city":"Sioux Falls","state":"SD","zip":"57108","lat":43.49662,"lng":-96.78596,"yearOnline":"unknown","powerMw":0,"sqft":11000,"type":"colocation","status":"operational","region":"the U.S. state of South Dakota"},{"name":"Midco Yankton Data Center","operator":"Midco","owner":"Midco","address":"2106 West City Limits Road","city":"Yankton","state":"SD","zip":"57078","lat":42.890819821507,"lng":-97.41701689348,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of South Dakota"},{"name":"FirstLight Burlington Data Center","operator":"FirstLight Fiber","owner":"FirstLight Fiber","address":"45 Krupp Drive, Williston, VT 05495","city":"Williston","state":"VT","zip":"05495","lat":44.45019,"lng":-73.12754,"yearOnline":"unknown","powerMw":0,"sqft":20000,"type":"colocation","status":"operational","region":"the U.S. state of Vermont"},{"name":"Tech Vault - South Burlington Data Center","operator":"Tech Vault, Inc.","owner":"Tech Vault, Inc.","address":"21 Gregory Drive, Suite 165, South Burlington, VT 05403","city":"South Burlington","state":"VT","zip":"05403","lat":44.45419,"lng":-73.14169,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Vermont"},{"name":"Power Shift StoweVT Data Center","operator":"Power Shift","owner":"Power Shift","address":"571 South Main Street, Stowe, VT 05672","city":"Stowe","state":"VT","zip":"05672","lat":44.458896,"lng":-72.693042,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Vermont"},{"name":"ClearBearing Inc. - Burlington Data Center","operator":"ClearBearing Inc.","owner":"ClearBearing Inc.","address":"208 Flynn Avenue, Suite 2E, Burlington, VT 05401","city":"Burlington","state":"VT","zip":"05401","lat":44.45648,"lng":-73.2181,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Vermont"},{"name":"30 Community Drive Data Center / UVM Remote Data Center","operator":"University of Vermont","owner":"unknown","address":"30 Community Drive, South Burlington, VT 05403","city":"South Burlington","state":"VT","zip":"05403","lat":44.44964,"lng":-73.14437,"yearOnline":"unknown","powerMw":0,"sqft":4897,"type":"enterprise","status":"unknown","region":"the U.S. state of Vermont"},{"name":"Opticom Bozeman","operator":"Montana Opticom","owner":"Montana Opticom","address":"144 Quail Run Rd","city":"Bozeman","state":"MT","zip":"59718","lat":45.674071794916,"lng":-111.190463244621,"yearOnline":"unknown","powerMw":0,"sqft":5000,"type":"colocation","status":"operational","region":"the U.S. state of Montana"},{"name":"Atlas Power Butte","operator":"Atlas Power Group","owner":"Atlas Power Group","address":"200 Technology Way","city":"Butte","state":"MT","zip":"59702","lat":45.930927742096,"lng":-112.518209695324,"yearOnline":"unknown","powerMw":75,"sqft":0,"type":"crypto","status":"operational","region":"the U.S. state of Montana"},{"name":"Vision Net 1030 Central Data Center","operator":"Vision Net","owner":"Vision Net","address":"1030 Central Ave","city":"Billings","state":"MT","zip":"59102","lat":45.769741843579,"lng":-108.54216954319,"yearOnline":"2022","powerMw":0,"sqft":24000,"type":"colocation","status":"operational","region":"the U.S. state of Montana"},{"name":"Vision Net Billings Fiber Hotel","operator":"Vision Net","owner":"Vision Net","address":"222 N 32nd St","city":"Billings","state":"MT","zip":"59101","lat":45.780784194325,"lng":-108.511788407939,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Montana"},{"name":"Parsec Data Center","operator":"Parsec Data Management","owner":"Parsec Data Management","address":"3470 Gabel Rd","city":"Billings","state":"MT","zip":"59102","lat":45.743879476555,"lng":-108.604739147909,"yearOnline":"unknown","powerMw":0,"sqft":9101,"type":"colocation","status":"operational","region":"the U.S. state of Montana"},{"name":"Cogent Data Center - Billings","operator":"Cogent Communications","owner":"Cogent Communications","address":"3025 Hesper Rd","city":"Billings","state":"MT","zip":"59102","lat":45.740732442545,"lng":-108.592464821762,"yearOnline":"unknown","powerMw":0,"sqft":1201,"type":"telecom","status":"operational","region":"the U.S. state of Montana"},{"name":"Vision Net Helena Data Center","operator":"Vision Net","owner":"Vision Net","address":"1084 Helena Avenue","city":"Helena","state":"MT","zip":"59601","lat":46.597374697729,"lng":-112.022845946274,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Montana"},{"name":"MIS1 - VisionNet-MSO Missoula Data Center PoP","operator":"MOD Mission Critical","owner":"Vision Net","address":"110 East Broadway Street","city":"Missoula","state":"MT","zip":"59802","lat":46.872109315328,"lng":-113.993787194905,"yearOnline":"unknown","powerMw":0,"sqft":24000,"type":"colocation","status":"operational","region":"the U.S. state of Montana"},{"name":"Aurum Capital Ventures - Bismarck","operator":"Aurum Capital Ventures","owner":"unknown","address":"3805 E Bismarck Expy","city":"Bismarck","state":"ND","zip":"unknown","lat":46.800019991852,"lng":-100.733907473751,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of North Dakota"},{"name":"DCN Bismarck Coleman Data Center","operator":"Dakota Carrier Network","owner":"Dakota Carrier Network","address":"4202 Coleman St","city":"Bismarck","state":"ND","zip":"58503","lat":46.850984430342,"lng":-100.780401697066,"yearOnline":"unknown","powerMw":0,"sqft":72000,"type":"telecom","status":"operational","region":"the U.S. state of North Dakota"},{"name":"Applied Digital ELN01","operator":"Applied Digital Corporation","owner":"Applied Digital Corporation","address":"9685 87th Ave SE","city":"Ellendale","state":"ND","zip":"58436","lat":46.021467386509,"lng":-98.568495453602,"yearOnline":"2025","powerMw":180,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of North Dakota"},{"name":"702 Communications Fargo Data Center","operator":"702 Communications","owner":"Val-Ed Joint Venture","address":"2911 Fiechtner Drive South","city":"Fargo","state":"ND","zip":"58103","lat":46.868415032214,"lng":-96.826216464061,"yearOnline":"unknown","powerMw":1.44,"sqft":7000,"type":"colocation","status":"operational","region":"the U.S. state of North Dakota"},{"name":"Consolidated Communications / Fidium Fargo Data Center","operator":"Consolidated Communications Holdings, Inc.","owner":"Consolidated Communications Holdings, Inc.","address":"3312 42nd Street South, Suite 100","city":"Fargo","state":"ND","zip":"58104","lat":46.830246332404,"lng":-96.851295021522,"yearOnline":"unknown","powerMw":0,"sqft":1700,"type":"colocation","status":"operational","region":"the U.S. state of North Dakota"},{"name":"DCN Fargo Great Plains Data Center","operator":"Dakota Carrier Network","owner":"Dakota Carrier Network","address":"3901 Great Plains Dr S","city":"Fargo","state":"ND","zip":"58104","lat":46.814192650032,"lng":-96.842501484754,"yearOnline":"unknown","powerMw":0,"sqft":23180,"type":"telecom","status":"operational","region":"the U.S. state of North Dakota"},{"name":"Core Scientific Grand Forks 1","operator":"Core Scientific","owner":"Core Scientific","address":"5601 11th Ave S","city":"Grand Forks","state":"ND","zip":"58201","lat":47.91094,"lng":-97.11246,"yearOnline":"unknown","powerMw":100,"sqft":90000,"type":"crypto","status":"operational","region":"the U.S. state of North Dakota"},{"name":"Midco Grand Forks Data Center","operator":"Midco","owner":"Midco","address":"3251 32nd Ave S","city":"Grand Forks","state":"ND","zip":"58201","lat":47.889393605989,"lng":-97.074966109255,"yearOnline":"unknown","powerMw":0,"sqft":6500,"type":"colocation","status":"operational","region":"the U.S. state of North Dakota"},{"name":"Applied Digital JMS / JMS01","operator":"Applied Digital Corporation","owner":"Applied Digital Corporation","address":"2671 Highway 20 SE","city":"Jamestown","state":"ND","zip":"58401","lat":47.029587378864,"lng":-98.679091972771,"yearOnline":"unknown","powerMw":5,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of North Dakota"},{"name":"Project Trinity","operator":"Teton Digital","owner":"Teton Digital","address":"60th St NW & 103rd Ave NW","city":"Tioga","state":"ND","zip":"unknown","lat":48.284101359689,"lng":-102.914899056618,"yearOnline":"unknown","powerMw":100,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of North Dakota"},{"name":"Atlas Power Williston","operator":"Atlas Power","owner":"Atlas Power","address":"5046 143rd Ave NW","city":"Williston","state":"ND","zip":"58801","lat":48.152541794996,"lng":-103.776713643915,"yearOnline":"unknown","powerMw":700,"sqft":0,"type":"crypto","status":"operational","region":"the U.S. state of North Dakota"},{"name":"FirstLight Manchester NH","operator":"FirstLight Fiber","owner":"FirstLight Fiber","address":"77 Sundial Avenue","city":"Manchester","state":"NH","zip":"03103","lat":42.972437390684,"lng":-71.468658573139,"yearOnline":"unknown","powerMw":0,"sqft":14400,"type":"colocation","status":"operational","region":"the U.S. state of New Hampshire"},{"name":"Fidium / Consolidated Manchester","operator":"Fidium Business / Consolidated Communications","owner":"Fidium Business / Consolidated Communications","address":"770 Elm St","city":"Manchester","state":"NH","zip":"03101","lat":42.989123639793,"lng":-71.463117535339,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of New Hampshire"},{"name":"FirstLight Bedford Data Center","operator":"FirstLight Fiber","owner":"FirstLight Fiber","address":"8 Commerce Drive","city":"Bedford","state":"NH","zip":"03110","lat":42.925100633051,"lng":-71.460983091055,"yearOnline":"unknown","powerMw":0,"sqft":7248,"type":"colocation","status":"operational","region":"the U.S. state of New Hampshire"},{"name":"Dynamic Internet Salem Data Center","operator":"Dynamic Internet","owner":"Dynamic Internet","address":"10 Delaware Drive","city":"Salem","state":"NH","zip":"03079","lat":42.764993324703,"lng":-71.242065464839,"yearOnline":"unknown","powerMw":0,"sqft":12000,"type":"colocation","status":"operational","region":"the U.S. state of New Hampshire"},{"name":"Peregrine Networks Data Center / Spectra Access","operator":"Peregrine Networks","owner":"Peregrine Networks","address":"27 Lowell Street","city":"Manchester","state":"NH","zip":"03101","lat":42.993549768068,"lng":-71.461886996338,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of New Hampshire"},{"name":"FirstLight Keene NH","operator":"FirstLight Fiber","owner":"FirstLight Fiber","address":"310 Marlboro Street","city":"Keene","state":"NH","zip":"03431","lat":42.924877576802,"lng":-72.26746310596,"yearOnline":"unknown","powerMw":0,"sqft":1500,"type":"colocation","status":"operational","region":"the U.S. state of New Hampshire"},{"name":"FirstLight Lebanon NH","operator":"FirstLight Fiber","owner":"FirstLight Fiber","address":"16 Cavendish Court","city":"Lebanon","state":"NH","zip":"03766","lat":43.678998681725,"lng":-72.259146226776,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of New Hampshire"},{"name":"SNS Littleton","operator":"Secured Network Services, Inc.","owner":"Secured Network Services, Inc.","address":"775 Industrial Park Rd","city":"Littleton","state":"NH","zip":"03561","lat":44.293263,"lng":-71.798702,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of New Hampshire"},{"name":"Fidium / Consolidated Laconia","operator":"Fidium Business / Consolidated Communications","owner":"Fidium Business / Consolidated Communications","address":"762 N Main St","city":"Laconia","state":"NH","zip":"03246","lat":43.531453,"lng":-71.47331,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of New Hampshire"},{"name":"FirstLight Portsmouth","operator":"FirstLight Fiber","owner":"FirstLight Fiber","address":"359 Corporate Dr","city":"Portsmouth","state":"NH","zip":"03801","lat":43.071497807418,"lng":-70.800407483843,"yearOnline":"unknown","powerMw":0,"sqft":8700,"type":"colocation","status":"operational","region":"the U.S. state of New Hampshire"},{"name":"Dartmouth College L31 Data Center","operator":"Dartmouth College","owner":"Dartmouth College","address":"25 N Main St, Room L31","city":"Hanover","state":"NH","zip":"unknown","lat":43.70701407513,"lng":-72.28916370722,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of New Hampshire"},{"name":"Alpha3 Cloud Providence 1","operator":"Alpha3 Cloud","owner":"Alpha3 Cloud","address":"935 Westminster Street","city":"Providence","state":"RI","zip":"02903","lat":41.817340334901,"lng":-71.424018857549,"yearOnline":"unknown","powerMw":0,"sqft":4000,"type":"colocation","status":"operational","region":"the U.S. state of Rhode Island"},{"name":"Prov.net Providence 2","operator":"Alpha3 Cloud (Prov.net)","owner":"Alpha3 Cloud","address":"1155 Westminster Street","city":"Providence","state":"RI","zip":"02909","lat":41.8173,"lng":-71.42776,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Rhode Island"},{"name":"Prov.net Providence 3","operator":"Alpha3 Cloud (Prov.net)","owner":"Alpha3 Cloud","address":"304 Carpenter Street","city":"Providence","state":"RI","zip":"02909","lat":41.817916769086,"lng":-71.42896975133,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Rhode Island"},{"name":"Crown Castle Providence (RI1)","operator":"Crown Castle Inc.","owner":"Crown Castle Inc.","address":"235 Promenade Street","city":"Providence","state":"RI","zip":"02908","lat":41.82854,"lng":-71.41934,"yearOnline":"unknown","powerMw":3,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Rhode Island"},{"name":"Crown Castle Providence","operator":"Crown Castle","owner":"Crown Castle","address":"300 Carpenter Street","city":"Providence","state":"RI","zip":"unknown","lat":41.817954080801,"lng":-71.428767024334,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Rhode Island"},{"name":"MegaNet Rhode Island Datacenter","operator":"MegaNet Communications","owner":"MegaNet Communications","address":"275 Promenade Street","city":"Providence","state":"RI","zip":"02908","lat":41.82909,"lng":-71.42107,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Rhode Island"},{"name":"Lumen Providence 1","operator":"Lumen","owner":"Lumen","address":"375 Promenade Street","city":"Providence","state":"RI","zip":"02908","lat":41.82998,"lng":-71.42429,"yearOnline":"unknown","powerMw":0.6,"sqft":10400,"type":"colocation","status":"operational","region":"the U.S. state of Rhode Island"},{"name":"Fibertech Networks – Providence Data Center","operator":"Fibertech Networks","owner":"Fibertech Networks","address":"5 Central Street","city":"Providence","state":"RI","zip":"02907","lat":41.8149587889,"lng":-71.421523407213,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"unknown","region":"the U.S. state of Rhode Island"},{"name":"Cogent Washington DC 2","operator":"Cogent Communications","owner":"Cogent Communications","address":"1050 Connecticut Ave NW","city":"Washington","state":"DC","zip":"20036","lat":38.903130269959,"lng":-77.039740962038,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"Washington, D.C."},{"name":"CoreSite DC2","operator":"CoreSite","owner":"CoreSite","address":"1099 14th St NW","city":"Washington","state":"DC","zip":"20005","lat":38.90367648202,"lng":-77.031878644909,"yearOnline":"unknown","powerMw":0,"sqft":24000,"type":"colocation","status":"operational","region":"Washington, D.C."},{"name":"1120 Vermont Avenue NW carrier/data center (Cogent DC1 / Lumen DC1 / Verizon 1120 Vermont)","operator":"Cogent Communications; Lumen Technologies; Verizon Enterprise","owner":"unknown","address":"1120 Vermont Ave NW","city":"Washington","state":"DC","zip":"20005","lat":38.904112130942,"lng":-77.032937229685,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Washington, D.C."},{"name":"Lumen Washington DC 2 / Verizon 1220 L","operator":"Lumen Technologies; Verizon Enterprise","owner":"Lumen Technologies","address":"1220 L Street NW","city":"Washington","state":"DC","zip":"20005","lat":38.903676917348,"lng":-77.028443535283,"yearOnline":"unknown","powerMw":0,"sqft":20099,"type":"telecom","status":"operational","region":"Washington, D.C."},{"name":"CoreSite DC1","operator":"CoreSite","owner":"CoreSite","address":"1275 K Street NW, Suite 700","city":"Washington","state":"DC","zip":"20005","lat":38.9028463,"lng":-77.0292336,"yearOnline":"unknown","powerMw":2.2,"sqft":25000,"type":"colocation","status":"operational","region":"Washington, D.C."},{"name":"Lumen DC4","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"1828 L St NW, Suite 550","city":"Washington","state":"DC","zip":"20036","lat":38.90368591786,"lng":-77.042213685552,"yearOnline":"unknown","powerMw":2.2,"sqft":25000,"type":"telecom","status":"operational","region":"Washington, D.C."},{"name":"DataBank - 2100 M St (Zayo Washington DC - 2100 M Street NW)","operator":"DataBank","owner":"DataBank","address":"2100 M Street NW","city":"Washington","state":"DC","zip":"20037","lat":38.905554978909,"lng":-77.046678664116,"yearOnline":"unknown","powerMw":0,"sqft":16600,"type":"colocation","status":"operational","region":"Washington, D.C."},{"name":"4301 Connecticut Avenue NW (Van Ness Center) Data Center","operator":"Verizon Enterprise; Atlantech Online","owner":"unknown","address":"4301 Connecticut Avenue NW","city":"Washington","state":"DC","zip":"20008","lat":38.944327998349,"lng":-77.063522849952,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"Washington, D.C."},{"name":"Alpha Technologies DC1 / Alpha Technologies Global Data Center","operator":"Alpha Technologies Inc.","owner":"Alpha Technologies Inc.","address":"2020 Union Carbide Dr, Building 6000","city":"South Charleston","state":"WV","zip":"25303","lat":38.353059,"lng":-81.696117,"yearOnline":"unknown","powerMw":0,"sqft":79700,"type":"colocation","status":"operational","region":"the U.S. state of West Virginia"},{"name":"Alpha Technologies Huntington Data Center","operator":"Alpha Technologies","owner":"unknown","address":"1125 6th Ave","city":"Huntington","state":"WV","zip":"unknown","lat":38.418662489822,"lng":-82.439249988335,"yearOnline":"2025","powerMw":0,"sqft":60000,"type":"colocation","status":"planned","region":"the U.S. state of West Virginia"},{"name":"Citynet Charleston","operator":"Citynet, LLC","owner":"Citynet, LLC","address":"226 Kanawha Boulevard","city":"Charleston","state":"WV","zip":"25301","lat":38.352132920478,"lng":-81.641344522707,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of West Virginia"},{"name":"Citynet Morgantown","operator":"Citynet, LLC","owner":"Citynet, LLC","address":"3600 University Ave","city":"Star City","state":"WV","zip":"26505","lat":39.659410427937,"lng":-79.989969895595,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of West Virginia"},{"name":"Pinnacle Technical Solutions Data Center","operator":"Pinnacle Technical Solutions","owner":"Pinnacle Technical Solutions","address":"4300 1st Ave","city":"Nitro","state":"WV","zip":"25143","lat":38.443209954772,"lng":-81.83186597288,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of West Virginia"},{"name":"Reliable Hosting Services","operator":"Reliable Hosting Services","owner":"Reliable Hosting Services","address":"303 N Washington St","city":"Berkeley Springs","state":"WV","zip":"25411","lat":39.63067753017,"lng":-78.225105827598,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of West Virginia"},{"name":"U.S. Coast Guard Operations Systems Center Data Center","operator":"U.S. Coast Guard","owner":"U.S. Coast Guard","address":"408 Coast Guard Dr","city":"Kearneysville","state":"WV","zip":"25430","lat":39.398360226543,"lng":-77.908987526606,"yearOnline":"2014","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of West Virginia"},{"name":"WVNET Data Center","operator":"West Virginia Network (WVNET)","owner":"West Virginia Network (WVNET)","address":"837 Chestnut Ridge Road","city":"Morgantown","state":"WV","zip":"26505","lat":39.658083585711,"lng":-79.956466625037,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of West Virginia"},{"name":"American Tower EDC Oklahoma","operator":"American Tower Corporation","owner":"American Tower Corporation","address":"1309 NE 122nd St","city":"Oklahoma City","state":"OK","zip":"73131","lat":35.594571572683,"lng":-97.489515420153,"yearOnline":"unknown","powerMw":4,"sqft":16000,"type":"edge","status":"planned","region":"the U.S. state of Oklahoma"},{"name":"Cerebras Oklahoma","operator":"Cerebras Systems","owner":"Scale Datacenters","address":"512 NW 62nd St","city":"Oklahoma City","state":"OK","zip":"73118","lat":35.535878497483,"lng":-97.521559342582,"yearOnline":"2025","powerMw":10,"sqft":82000,"type":"enterprise","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"CloudBurst Oklahoma City DC1","operator":"CloudBurst Data Centers","owner":"CloudBurst Data Centers","address":"2000 S Council Rd","city":"Oklahoma City","state":"OK","zip":"73128","lat":35.445558306867,"lng":-97.65397876435,"yearOnline":"unknown","powerMw":30,"sqft":0,"type":"wholesale","status":"under-construction","region":"the U.S. state of Oklahoma"},{"name":"Cogent Data Center - Oklahoma City","operator":"Cogent Communications","owner":"Cogent Communications","address":"630 SW 7th St","city":"Oklahoma City","state":"OK","zip":"73109","lat":35.457902511326,"lng":-97.523248874466,"yearOnline":"unknown","powerMw":0,"sqft":5294,"type":"colocation","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"Lumen Oklahoma City 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"201 E Robert S Kerr Blvd","city":"Oklahoma City","state":"OK","zip":"unknown","lat":35.469915100256,"lng":-97.516443961841,"yearOnline":"unknown","powerMw":0,"sqft":7445,"type":"telecom","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"MIDCON Oklahoma City","operator":"MIDCON Recovery Solutions","owner":"MIDCON Recovery Solutions","address":"13431 Broadway Ext","city":"Oklahoma City","state":"OK","zip":"73114","lat":35.608609737292,"lng":-97.500205596787,"yearOnline":"unknown","powerMw":1,"sqft":60000,"type":"colocation","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"RACK59 Data Center / TulsaConnect Oklahoma City DC-4","operator":"RACK59 / TulsaConnect","owner":"RACK59","address":"7725 W Reno Ave","city":"Oklahoma City","state":"OK","zip":"73127","lat":35.464479107964,"lng":-97.64888818271,"yearOnline":"unknown","powerMw":0,"sqft":30000,"type":"colocation","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"TierPoint Oklahoma City Data Center 1 (OKC)","operator":"TierPoint","owner":"TierPoint","address":"4121 Perimeter Center Place","city":"Oklahoma City","state":"OK","zip":"73112","lat":35.514186096389,"lng":-97.593689175837,"yearOnline":"unknown","powerMw":2.6,"sqft":22455,"type":"colocation","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"TierPoint Oklahoma City Data Center 2 (OK2)","operator":"TierPoint","owner":"TierPoint","address":"4114 Perimeter Center Place","city":"Oklahoma City","state":"OK","zip":"73112","lat":35.514071505009,"lng":-97.593635716407,"yearOnline":"unknown","powerMw":5,"sqft":69867,"type":"colocation","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"ValorC3 Oklahoma City Data Center","operator":"ValorC3 / Tonaquint Data Centers","owner":"Tonaquint Data Centers","address":"4442 Newcastle Rd","city":"Oklahoma City","state":"OK","zip":"unknown","lat":35.425917825945,"lng":-97.598989003009,"yearOnline":"unknown","powerMw":5,"sqft":64942,"type":"colocation","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"Windstream Oklahoma City Data Center","operator":"Windstream","owner":"Windstream","address":"825 N Broadway Ave","city":"Oklahoma City","state":"OK","zip":"73102","lat":35.475310341306,"lng":-97.514258655801,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"Cherokee Data Center","operator":"Hewlett Packard Enterprise","owner":"Hewlett Packard Enterprise","address":"7400 N Lakewood Ave","city":"Tulsa","state":"OK","zip":"74117","lat":36.261663570585,"lng":-95.907086627194,"yearOnline":"2001","powerMw":0,"sqft":430000,"type":"enterprise","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"Isocentric Networks Data Center","operator":"Isocentric Networks","owner":"Isocentric Networks","address":"100 W Fifth St","city":"Tulsa","state":"OK","zip":"74103","lat":36.150920056873,"lng":-95.991360223778,"yearOnline":"1999","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"Jackson Technical Data Center","operator":"Jackson Technical","owner":"Jackson Technical","address":"611 S Elgin Ave","city":"Tulsa","state":"OK","zip":"74120","lat":36.152029421367,"lng":-95.98472183537,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"Lumen Tulsa 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"18 W Archer St","city":"Tulsa","state":"OK","zip":"74103","lat":36.157175434403,"lng":-95.993354237919,"yearOnline":"unknown","powerMw":0,"sqft":10000,"type":"telecom","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"OCOSA Data Center / CenterServ Tulsa","operator":"OCOSA Communication / CenterServ","owner":"OCOSA Communication","address":"321 S Boston Ave","city":"Tulsa","state":"OK","zip":"74103","lat":36.153564289084,"lng":-95.989752450309,"yearOnline":"2003","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"Philcade Data Center","operator":"Kanbar Properties","owner":"Kanbar Properties","address":"501 S Boston Ave","city":"Tulsa","state":"OK","zip":"74103","lat":36.151794592424,"lng":-95.98884975273,"yearOnline":"unknown","powerMw":0,"sqft":67000,"type":"colocation","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"TierPoint Tulsa - Archer","operator":"TierPoint","owner":"TierPoint","address":"322 E Archer St","city":"Tulsa","state":"OK","zip":"74120","lat":36.15875521438,"lng":-95.988862190027,"yearOnline":"2005","powerMw":0.9,"sqft":37000,"type":"colocation","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"TierPoint Tulsa - State Farm / Compass Tulsa","operator":"TierPoint / Compass Datacenters","owner":"Compass Datacenters / TierPoint","address":"12151 E State Farm Blvd","city":"Tulsa","state":"OK","zip":"74146","lat":36.095321264149,"lng":-95.839523887098,"yearOnline":"2018","powerMw":2.4,"sqft":32000,"type":"colocation","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"Tulsa Technology Exchange","operator":"Facility Gateway Corporation","owner":"Facility Gateway Corporation","address":"509 S Boston Ave","city":"Tulsa","state":"OK","zip":"74103","lat":36.151725259287,"lng":-95.988811488697,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"110 West 7th Street / TulsaConnect Downtown (DC-5) / Windstream Tulsa","operator":"TulsaConnect / Windstream","owner":"Prescott Realty Group","address":"110 W 7th St","city":"Tulsa","state":"OK","zip":"74119","lat":36.149021863649,"lng":-95.990390876227,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"TulsaConnect East Tulsa (DC-3)","operator":"TulsaConnect","owner":"TulsaConnect","address":"4500 S 129th E Ave","city":"Tulsa","state":"OK","zip":"unknown","lat":36.093824492419,"lng":-95.833242622816,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"Project Clydesdale","operator":"Beale Infrastructure","owner":"Beale Infrastructure","address":"N Yale Ave and E 86th St N","city":"Owasso","state":"OK","zip":"unknown","lat":36.278570579271,"lng":-95.919935957306,"yearOnline":"unknown","powerMw":0,"sqft":200000,"type":"hyperscale","status":"planned","region":"the U.S. state of Oklahoma"},{"name":"Core Scientific Muskogee 2","operator":"Core Scientific","owner":"Core Scientific","address":"4800 S 24th St W","city":"Muskogee","state":"OK","zip":"unknown","lat":35.689546011082,"lng":-95.393661115716,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"planned","region":"the U.S. state of Oklahoma"},{"name":"Google Stillwater Building 1 (Campus Plus)","operator":"Google","owner":"Google","address":"N Perkins Rd and E Richmond Rd","city":"Stillwater","state":"OK","zip":"74075","lat":36.173963656785,"lng":-97.051771173819,"yearOnline":"unknown","powerMw":0,"sqft":300000,"type":"hyperscale","status":"under-construction","region":"the U.S. state of Oklahoma"},{"name":"Project Spring","operator":"Unknown Company","owner":"Unknown Company","address":"Oklahoma State Highway 97 and Rock School Rd","city":"Sand Springs","state":"OK","zip":"74063","lat":36.245329095742,"lng":-96.123623907102,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Oklahoma"},{"name":"CORE Data Center","operator":"Northeast Oklahoma Electric Cooperative","owner":"Northeast Oklahoma Electric Cooperative","address":"27039 S 4440 Rd","city":"Vinita","state":"OK","zip":"74301","lat":36.626728485571,"lng":-95.089486727444,"yearOnline":"2014","powerMw":0,"sqft":5000,"type":"enterprise","status":"operational","region":"the U.S. state of Oklahoma"},{"name":"401 North Broad Philadelphia Carrier Hotel","operator":"Netrality","owner":"Netrality","address":"401 North Broad Street, Suite 210","city":"Philadelphia","state":"PA","zip":"19108","lat":39.959615852282,"lng":-75.161873042192,"yearOnline":"unknown","powerMw":0,"sqft":1300000,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"H5 Data Centers Philadelphia","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"1500 Spring Garden Street, Suite 520","city":"Philadelphia","state":"PA","zip":"19130","lat":39.96254569622,"lng":-75.163197123782,"yearOnline":"unknown","powerMw":7.5,"sqft":72000,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"365 Data Centers Philadelphia Downtown","operator":"365 Data Centers","owner":"365 Data Centers","address":"1500 Spring Garden Street","city":"Philadelphia","state":"PA","zip":"19130","lat":39.96254569622,"lng":-75.163197123782,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"Hivelocity Philadelphia Data Center","operator":"Hivelocity","owner":"Hivelocity","address":"2401 Locust Street","city":"Philadelphia","state":"PA","zip":"19103","lat":39.950165996584,"lng":-75.179819726645,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"Lumen Philadelphia 2","operator":"Lumen","owner":"Lumen","address":"701 Market Street","city":"Philadelphia","state":"PA","zip":"19106","lat":39.951003360565,"lng":-75.152063089475,"yearOnline":"unknown","powerMw":4,"sqft":28408,"type":"telecom","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"Lumen Philadelphia 3","operator":"Lumen","owner":"Lumen","address":"3020 Market Street","city":"Philadelphia","state":"PA","zip":"19104","lat":39.954827838214,"lng":-75.183823520894,"yearOnline":"unknown","powerMw":0,"sqft":31877,"type":"telecom","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"TierPoint Philadelphia - Navy Yard","operator":"TierPoint","owner":"TierPoint","address":"4775 League Island Boulevard","city":"Philadelphia","state":"PA","zip":"19112","lat":39.892330998933,"lng":-75.166546727159,"yearOnline":"2009","powerMw":4.5,"sqft":25000,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"Flexential Philadelphia - Collegeville","operator":"Flexential","owner":"Flexential","address":"101 Troutman Road","city":"Collegeville","state":"PA","zip":"19426","lat":40.151646005293,"lng":-75.474689129328,"yearOnline":"unknown","powerMw":7.2,"sqft":203703,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"Mapletree 2000 Kubach Road Data Centre","operator":"Mapletree Redwood Data Centre Trust","owner":"Mapletree Redwood Data Centre Trust","address":"2000 Kubach Road","city":"Philadelphia","state":"PA","zip":"19116","lat":40.115601869582,"lng":-74.999145331899,"yearOnline":"unknown","powerMw":0,"sqft":124190,"type":"enterprise","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"DāSTOR 411 Swedeland","operator":"DāSTOR","owner":"DāSTOR","address":"411 Swedeland Road","city":"King of Prussia","state":"PA","zip":"19406","lat":40.076632026131,"lng":-75.334721275374,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"DāSTOR King of Prussia","operator":"DāSTOR","owner":"DāSTOR","address":"3400 Horizon Drive","city":"King of Prussia","state":"PA","zip":"19406","lat":40.087526629457,"lng":-75.33895575926,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"TierPoint Allentown - TekPark","operator":"TierPoint","owner":"TierPoint","address":"9999 Hamilton Boulevard, Building #4","city":"Breinigsville","state":"PA","zip":"18031","lat":40.543122858708,"lng":-75.659849580491,"yearOnline":"unknown","powerMw":40,"sqft":122000,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"TierPoint Bethlehem","operator":"TierPoint","owner":"TierPoint","address":"3864 Courtney Street, Suite 130","city":"Bethlehem","state":"PA","zip":"18017","lat":40.671668057929,"lng":-75.376012620324,"yearOnline":"unknown","powerMw":0,"sqft":25000,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"TierPoint Lehigh Valley","operator":"TierPoint","owner":"TierPoint","address":"3949 Schelden Circle","city":"Bethlehem","state":"PA","zip":"18017","lat":40.676153833628,"lng":-75.377664395943,"yearOnline":"unknown","powerMw":0,"sqft":28000,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"TierPoint Valley Forge","operator":"TierPoint","owner":"TierPoint","address":"1000 Adams Avenue","city":"Norristown","state":"PA","zip":"19403","lat":40.121459888563,"lng":-75.419923286681,"yearOnline":"unknown","powerMw":23,"sqft":137000,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"Bitfarms / Keel Panther Creek","operator":"Bitfarms Ltd.","owner":"Keel Infrastructure","address":"4 Dennison Road","city":"Nesquehoning","state":"PA","zip":"18240","lat":40.856464122006,"lng":-75.87635307384,"yearOnline":"unknown","powerMw":80,"sqft":0,"type":"crypto","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"Contegix Wyomissing","operator":"Contegix","owner":"Contegix","address":"One Meridian Boulevard","city":"Wyomissing","state":"PA","zip":"19610","lat":40.351366461261,"lng":-75.987598522404,"yearOnline":"unknown","powerMw":2,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"DāSTOR Reading BCC / Direct LTx Data Center","operator":"DāSTOR","owner":"DāSTOR","address":"2561 Bernville Road","city":"Reading","state":"PA","zip":"19605","lat":40.380234790639,"lng":-75.98291161688,"yearOnline":"unknown","powerMw":0,"sqft":110000,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"Omega Systems Reading","operator":"Omega Systems","owner":"Omega Systems","address":"1121 Snyder Road","city":"Reading","state":"PA","zip":"19609","lat":40.340301372196,"lng":-76.004662227453,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"Alerify Harrisburg","operator":"Alerify","owner":"Alerify","address":"2330 Vartan Way","city":"Harrisburg","state":"PA","zip":"17110","lat":40.316589176725,"lng":-76.853627260214,"yearOnline":"unknown","powerMw":1,"sqft":68830,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"CoreWeave / Chirisa Lancaster Greenfield Road Data Center","operator":"CoreWeave","owner":"Chirisa Technology Parks","address":"216 Greenfield Road","city":"Lancaster","state":"PA","zip":"17601","lat":40.048690947149,"lng":-76.25609093817,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Pennsylvania"},{"name":"Machine Investment Lancaster Data Center","operator":"Machine Investment Group","owner":"Machine Investment Group","address":"1375 Harrisburg Pike","city":"Lancaster","state":"PA","zip":"17601","lat":40.058215549645,"lng":-76.333039804579,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Pennsylvania"},{"name":"Keel Infrastructure Scrubgrass","operator":"Keel Infrastructure","owner":"Keel Infrastructure","address":"2151 Lisbon Road","city":"Kennerdell","state":"PA","zip":"16374","lat":41.268103908839,"lng":-79.810727362738,"yearOnline":"unknown","powerMw":85,"sqft":0,"type":"crypto","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"Big Digital Energy Midland","operator":"Big Digital Energy","owner":"Big Digital Energy","address":"950 Railroad Avenue","city":"Midland","state":"PA","zip":"15059","lat":40.635683307565,"lng":-80.452151292811,"yearOnline":"unknown","powerMw":120,"sqft":0,"type":"crypto","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"MSA Evergreen Heights","operator":"Management Science Associates","owner":"Management Science Associates","address":"115 Evergreen Heights Drive","city":"Pittsburgh","state":"PA","zip":"15229","lat":40.518251059454,"lng":-80.01673491048,"yearOnline":"unknown","powerMw":4,"sqft":65000,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"EdgeConneX Pittsburgh - EDCPIT01","operator":"EdgeConneX","owner":"EdgeConneX","address":"282 Corliss Street","city":"Pittsburgh","state":"PA","zip":"15220","lat":40.451752124212,"lng":-80.041901926265,"yearOnline":"unknown","powerMw":1,"sqft":14174,"type":"edge","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"H5 Data Centers Pittsburgh","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"2202 Liberty Avenue","city":"Pittsburgh","state":"PA","zip":"15222","lat":40.451703805789,"lng":-79.981504288007,"yearOnline":"unknown","powerMw":2,"sqft":30000,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"Expedient Pittsburgh South","operator":"Expedient Data Centers","owner":"Expedient Data Centers","address":"810 Parish Street","city":"Pittsburgh","state":"PA","zip":"15220","lat":40.427934619205,"lng":-80.042923113864,"yearOnline":"unknown","powerMw":0,"sqft":26000,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"Ascent Data Pittsburgh","operator":"Ascent Data","owner":"Ascent Data","address":"90 Beta Drive","city":"Pittsburgh","state":"PA","zip":"15238","lat":40.49757125324,"lng":-79.865165916263,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"322 Fourth Avenue Pittsburgh Data Center","operator":"viLogics Data Centers","owner":"viLogics Data Centers","address":"322 Fourth Avenue","city":"Pittsburgh","state":"PA","zip":"15222","lat":40.439168636207,"lng":-80.000902171349,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"DataBank PIT1 / Nova Place","operator":"DataBank","owner":"Faros Properties / DataBank","address":"100 S Commons","city":"Pittsburgh","state":"PA","zip":"15212","lat":40.450157844778,"lng":-80.006045223709,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"Expedient Pittsburgh North Shore","operator":"Expedient Data Centers","owner":"Expedient Data Centers","address":"100 S Commons, Suite 001","city":"Pittsburgh","state":"PA","zip":"15212","lat":40.450157844778,"lng":-80.006045223709,"yearOnline":"unknown","powerMw":4.2,"sqft":50700,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"TECfusions New Kensington","operator":"TECfusions","owner":"TECfusions","address":"100 Technical Drive","city":"New Kensington","state":"PA","zip":"15068","lat":40.54477643609,"lng":-79.650620542639,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"aspStation Data Center","operator":"aspStation, Inc.","owner":"aspStation, Inc.","address":"4736 Penn Avenue","city":"Pittsburgh","state":"PA","zip":"15224","lat":40.465455697715,"lng":-79.94678251706,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"Cogent Data Center - Pittsburgh","operator":"Cogent Communications","owner":"Cogent Communications","address":"3126 Liberty Avenue","city":"Pittsburgh","state":"PA","zip":"15201","lat":40.45935951777,"lng":-79.970364185211,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"201 Pendale Road Data Center","operator":"Provident Data Centers","owner":"Provident Data Centers","address":"201 Pendale Road","city":"Wampum","state":"PA","zip":"16157","lat":40.844649473721,"lng":-80.329466748722,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"planned","region":"the U.S. state of Pennsylvania"},{"name":"Centre WISP SCDC1","operator":"Centre WISP Venture Company, LLC","owner":"Centre WISP Venture Company, LLC","address":"2038 Sandy Drive","city":"State College","state":"PA","zip":"16803","lat":40.785973122484,"lng":-77.901069543841,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"the U.S. state of Pennsylvania"},{"name":"Centersquare Albuquerque ABQ1 Data Center","operator":"Centersquare","owner":"Centersquare","address":"400 Tijeras Avenue NW","city":"Albuquerque","state":"NM","zip":"87102","lat":35.0863,"lng":-106.6517,"yearOnline":"2009","powerMw":1.8,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of New Mexico"},{"name":"H5 Data Centers Albuquerque","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"505 Marquette Avenue NW","city":"Albuquerque","state":"NM","zip":"87102","lat":35.0892,"lng":-106.6528,"yearOnline":"unknown","powerMw":0,"sqft":225000,"type":"colocation","status":"operational","region":"the U.S. state of New Mexico"},{"name":"Oso Grande Technologies / OSO Secure Data Center Complex","operator":"Oso Grande Technologies","owner":"Oso Grande Technologies","address":"725 6th Street NW","city":"Albuquerque","state":"NM","zip":"87102","lat":35.092619630101,"lng":-106.652652769081,"yearOnline":"unknown","powerMw":0,"sqft":10800,"type":"colocation","status":"operational","region":"the U.S. state of New Mexico"},{"name":"Southwest Cyberport (SWCP) Albuquerque Data Center","operator":"Southwest Cyberport","owner":"Southwest Cyberport","address":"5021 Indian School Rd NE, Suite 600","city":"Albuquerque","state":"NM","zip":"87110","lat":35.101959645003,"lng":-106.589327664435,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of New Mexico"},{"name":"PRISM Technologies Data Center (formerly ServerCondo)","operator":"PRISM Technologies","owner":"PRISM Technologies","address":"219 Central Ave NW","city":"Albuquerque","state":"NM","zip":"87102","lat":35.08466,"lng":-106.65011,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of New Mexico"},{"name":"bigbyte.cc Data Center / Tech Campus","operator":"bigbyte.cc Corp","owner":"bigbyte.cc Corp","address":"123 Central Avenue NW","city":"Albuquerque","state":"NM","zip":"87102","lat":35.084811299455,"lng":-106.653003323882,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of New Mexico"},{"name":"Segra / UPN Albuquerque Data Center (former Level 3/Lumen site)","operator":"Segra / Unite Private Networks (UPN)","owner":"unknown","address":"3830 Singer Boulevard NE","city":"Albuquerque","state":"NM","zip":"87109","lat":35.14415,"lng":-106.60192,"yearOnline":"unknown","powerMw":0,"sqft":41000,"type":"telecom","status":"operational","region":"the U.S. state of New Mexico"},{"name":"Cogent Data Center - Cheyenne","operator":"Cogent Communications","owner":"Cogent Communications","address":"114 W 10th St, Cheyenne, WY 82007","city":"Cheyenne","state":"WY","zip":"82007","lat":41.127809082003,"lng":-104.810939939877,"yearOnline":"unknown","powerMw":2.49,"sqft":32860,"type":"colocation","status":"operational","region":"the U.S. state of Wyoming"},{"name":"Lunavi Cheyenne / 1547 CHWY1","operator":"Lunavi","owner":"1547 Critical Systems Realty / Harrison Street Real Estate Capital","address":"340 Progress Circle, Cheyenne, WY 82007","city":"Cheyenne","state":"WY","zip":"82007","lat":41.1296651,"lng":-104.7408848,"yearOnline":"2015","powerMw":4,"sqft":42000,"type":"colocation","status":"operational","region":"the U.S. state of Wyoming"},{"name":"MWTN - Cheyenne","operator":"Mountain West Technology Network","owner":"Mountain West Technology Network","address":"6101 Yellowstone Rd, 1st Floor, Suite 100, Cheyenne, WY 82009","city":"Cheyenne","state":"WY","zip":"82009","lat":41.174960352033,"lng":-104.828520211599,"yearOnline":"unknown","powerMw":1.4,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Wyoming"},{"name":"NCAR-Wyoming Supercomputing Center (NWSC)","operator":"NSF NCAR / UCAR","owner":"University Corporation for Atmospheric Research (UCAR) / NSF NCAR","address":"8120 Veta Drive, Cheyenne, WY 82001","city":"Cheyenne","state":"WY","zip":"82001","lat":41.1289,"lng":-104.8974,"yearOnline":"2012","powerMw":0,"sqft":170982,"type":"enterprise","status":"operational","region":"the U.S. state of Wyoming"},{"name":"Microsoft CYS - Building 1","operator":"Microsoft","owner":"Microsoft","address":"644 Logistics Dr, Cheyenne, WY 82009","city":"Cheyenne","state":"WY","zip":"82009","lat":41.125602120971,"lng":-104.896442948154,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"the U.S. state of Wyoming"},{"name":"CleanSpark Cheyenne 2","operator":"CleanSpark","owner":"CleanSpark","address":"635 Logistics Dr, Cheyenne, WY 82009","city":"Cheyenne","state":"WY","zip":"82009","lat":41.121961144347,"lng":-104.894774186162,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"crypto","status":"under-construction","region":"the U.S. state of Wyoming"},{"name":"Data Center of the Rockies","operator":"Mountain West Technologies","owner":"Mountain West Technologies","address":"851 Werner Ct, Suite 100, Casper, WY 82601","city":"Casper","state":"WY","zip":"82601","lat":42.859861103401,"lng":-106.333551896773,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Wyoming"},{"name":"Prometheus WY-2","operator":"Prometheus Hyperscale","owner":"Prometheus Hyperscale","address":"10300 Hat Six Rd, Casper, WY 82609","city":"Casper","state":"WY","zip":"82609","lat":42.73647789889,"lng":-106.118695235035,"yearOnline":"unknown","powerMw":1500,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Wyoming"},{"name":"Silver Star Communications - Afton","operator":"Silver Star Communications","owner":"Silver Star Communications","address":"455 E 1st Ave, Afton, WY 83110","city":"Afton","state":"WY","zip":"83110","lat":42.731447964092,"lng":-110.92402937266,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Wyoming"},{"name":"The Wells Building / MIWI1","operator":"1547 Critical Systems Realty","owner":"1547 Critical Systems Realty","address":"324 E Wisconsin Ave","city":"Milwaukee","state":"WI","zip":"53202","lat":43.038729701721,"lng":-87.907475042436,"yearOnline":"unknown","powerMw":0,"sqft":160000,"type":"colocation","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"Data Holdings Milwaukee Data Center","operator":"Data Holdings","owner":"Potawatomi Ventures","address":"3135 W Highland Blvd","city":"Milwaukee","state":"WI","zip":"53208","lat":43.044477672686,"lng":-87.953120940688,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"Windstream Brookfield","operator":"Windstream","owner":"Windstream","address":"13935 Bishops Drive","city":"Brookfield","state":"WI","zip":"53005","lat":43.028201031191,"lng":-88.085734911072,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"Veolia Data Center","operator":"Veolia North America","owner":"Veolia North America","address":"8450 W Forest Home Ave","city":"Greenfield","state":"WI","zip":"unknown","lat":42.957531917577,"lng":-88.018871859874,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"Lumen Brookfield","operator":"Lumen","owner":"Lumen","address":"3235 Intertech Dr","city":"Brookfield","state":"WI","zip":"unknown","lat":43.077943497005,"lng":-88.184011489471,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"Lumen Madison / HC Colo #1","operator":"Lumen","owner":"Lumen","address":"612 W Main St","city":"Madison","state":"WI","zip":"53703","lat":43.067215077196,"lng":-89.392556061834,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"Airiam Hartland","operator":"Airiam","owner":"Airiam","address":"1040 Cottonwood Ave","city":"Hartland","state":"WI","zip":"53029","lat":43.087249511401,"lng":-88.349944467818,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"ISCorp North MQN","operator":"ISCorp","owner":"ISCorp","address":"10325 N Port Washington Rd","city":"Mequon","state":"WI","zip":"53092","lat":43.205285076402,"lng":-87.924363140782,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"ISCorp South MQN","operator":"ISCorp","owner":"ISCorp","address":"10235 N Port Washington Rd","city":"Mequon","state":"WI","zip":"53092","lat":43.20256204988,"lng":-87.924366256509,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"Dane County Data Exchange I / EdgeConneX MAD01","operator":"EdgeConneX","owner":"Dane County Data Exchange","address":"4916 E Broadway","city":"Madison","state":"WI","zip":"unknown","lat":43.048074142716,"lng":-89.298255582457,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"5NINES Data Center (Network222)","operator":"5NINES","owner":"The Fiore Companies","address":"222 W Washington Ave, Suite 170","city":"Madison","state":"WI","zip":"53703","lat":43.073116457139,"lng":-89.386502485514,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"US Signal Madison WI02","operator":"US Signal Company, LLC","owner":"US Signal Company, LLC","address":"5515 Nobel Drive","city":"Fitchburg","state":"WI","zip":"unknown","lat":42.995232877823,"lng":-89.423209047414,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"UW–Madison DoIT Data Centers","operator":"University of Wisconsin–Madison DoIT","owner":"University of Wisconsin-Madison","address":"1210 W Dayton Street","city":"Madison","state":"WI","zip":"53706","lat":43.071092355453,"lng":-89.40595410459,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"WIN – Green Bay Data Center","operator":"WIN Technology","owner":"WIN Technology","address":"417 Pine St","city":"Green Bay","state":"WI","zip":"54301","lat":44.515187327569,"lng":-88.011642155452,"yearOnline":"2016","powerMw":0,"sqft":2500,"type":"colocation","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"Netsonic Wisconsin Datacenter","operator":"Netsonic","owner":"Netsonic","address":"1263 Main St, Suite 223","city":"Green Bay","state":"WI","zip":"54302","lat":44.511296527146,"lng":-87.99716719776,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"Meta Beloit","operator":"Meta","owner":"Meta","address":"W B R Townline Rd & I-39 ALT","city":"Beloit","state":"WI","zip":"unknown","lat":42.583924104735,"lng":-88.981477280297,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"the U.S. state of Wisconsin"},{"name":"Franklin Datacenter","operator":"CyberLynk Network Inc","owner":"CyberLynk Network Inc","address":"10125 S. 52nd Street","city":"Franklin","state":"WI","zip":"53132","lat":42.862184080596,"lng":-87.982234567733,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"Expedient MKE1 / Milwaukee Data Center","operator":"Expedient","owner":"Expedient","address":"4777 W Ironwood","city":"Franklin","state":"WI","zip":"53132","lat":42.863787005895,"lng":-87.977884056067,"yearOnline":"2021","powerMw":1.6,"sqft":27000,"type":"colocation","status":"operational","region":"the U.S. state of Wisconsin"},{"name":"EdgeConneX Phoenix PHX01 (EDCPHX01)","operator":"EdgeConneX","owner":"3011 South 52nd Street LLC","address":"3011 S 52nd St, Suite 107, Tempe, AZ 85282","city":"Tempe","state":"AZ","zip":"85282","lat":33.403,"lng":-111.97000000000001,"yearOnline":"unknown","powerMw":6.5,"sqft":79200,"type":"colocation","status":"operational","region":"continue:Arizona"},{"name":"MD-PHX1 (Phoenix)","operator":"Menlo Digital","owner":"Menlo Equities","address":"4801-4811 East Thistle Landing Drive, Phoenix, AZ 85044","city":"Phoenix","state":"AZ","zip":"85044","lat":33.303,"lng":-111.982,"yearOnline":"unknown","powerMw":257,"sqft":1022400,"type":"hyperscale","status":"planned","region":"continue:Arizona"},{"name":"Digital Realty IAD53 – 9905 Godwin Drive","operator":"Digital Realty","owner":"Digital Realty Trust (via Digital Second Manassas 2 LLC)","address":"9905 Godwin Drive, Manassas, VA","city":"Manassas","state":"VA","zip":"unknown","lat":38.755,"lng":-77.461,"yearOnline":"2024","powerMw":0,"sqft":185000,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Equinix DC14","operator":"Equinix","owner":"Equinix LLC","address":"7400 Infantry Ridge Road, Manassas, VA 20109","city":"Manassas","state":"VA","zip":"20109","lat":38.792,"lng":-77.517,"yearOnline":"unknown","powerMw":4,"sqft":109781,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"American Tower Edge Data Center Atlanta","operator":"American Tower Corporation","owner":"American Tower Corporation","address":"2374 Fairburn Road Southwest, Atlanta, GA 30331","city":"Atlanta","state":"GA","zip":"30331","lat":33.691,"lng":-84.517,"yearOnline":"unknown","powerMw":0,"sqft":360,"type":"colocation","status":"operational","region":"continue:Georgia"},{"name":"Cogent Data Center - Atlanta 2","operator":"Cogent Communications, Inc.","owner":"Cogent Communications","address":"1190 Allene Ave SW, Atlanta, GA 30310","city":"Atlanta","state":"GA","zip":"30310","lat":33.722191786666,"lng":-84.413379131344,"yearOnline":"unknown","powerMw":7.5,"sqft":64202,"type":"telecom","status":"operational","region":"continue:Georgia"},{"name":"CoreSite AT2 - Marietta Data Center","operator":"CoreSite","owner":"American Tower Corporation","address":"1130 Powers Ferry Place, Marietta, GA","city":"Marietta","state":"GA","zip":"unknown","lat":33.924025103,"lng":-84.482377132341,"yearOnline":"2002","powerMw":2,"sqft":67000,"type":"colocation","status":"operational","region":"continue:Georgia"},{"name":"CleanSpark College Park","operator":"CleanSpark, Inc.","owner":"CleanSpark, Inc.","address":"2380 Godby Rd, College Park, GA 30349","city":"College Park","state":"GA","zip":"30349","lat":33.616221390464,"lng":-84.466669911705,"yearOnline":"unknown","powerMw":47,"sqft":0,"type":"crypto","status":"operational","region":"continue:Georgia"},{"name":"GrindCap Marietta Campus","operator":"Grind Capital Group","owner":"James Freeman, LLC","address":"1751 Bells Ferry Road, Marietta, GA 30066","city":"Marietta","state":"GA","zip":"30066","lat":34.02,"lng":-84.536,"yearOnline":"unknown","powerMw":108,"sqft":347200,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Equinix CH3","operator":"Equinix","owner":"Equinix, Inc.","address":"905 Lunt Avenue","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.001783964255,"lng":-87.973707675379,"yearOnline":"2007","powerMw":20.65,"sqft":379662,"type":"colocation","status":"operational","region":"continue:Illinois"},{"name":"Scott Data Center","operator":"Scott Data Center","owner":"Scott Data Center","address":"6825 Pine Street, Suite 141, Omaha, NE 68106","city":"Omaha","state":"NE","zip":"68106","lat":41.243682084803,"lng":-96.017236477215,"yearOnline":"unknown","powerMw":20,"sqft":110000,"type":"colocation","status":"operational","region":"continue:Nebraska"},{"name":"LightEdge Omaha Data Center","operator":"LightEdge Solutions","owner":"GI Partners","address":"1148 American Parkway, Papillion, NE 68046","city":"Papillion","state":"NE","zip":"68046","lat":41.159511360348,"lng":-96.026013059509,"yearOnline":"2017","powerMw":1.25,"sqft":21377,"type":"colocation","status":"operational","region":"continue:Nebraska"},{"name":"Google Omaha - Building 1","operator":"Google LLC","owner":"Google LLC","address":"11110 State St, Omaha, NE, USA","city":"Omaha","state":"NE","zip":"unknown","lat":41.335727041886,"lng":-96.088470542492,"yearOnline":"2024","powerMw":0,"sqft":700000,"type":"hyperscale","status":"operational","region":"continue:Nebraska"},{"name":"TPx Communications Las Vegas Data Center","operator":"TPx Communications","owner":"Hertz Investment Group","address":"3301 N Buffalo Dr","city":"Las Vegas","state":"NV","zip":"89129","lat":36.220153056805,"lng":-115.260533648081,"yearOnline":"1998","powerMw":0,"sqft":32326,"type":"colocation","status":"operational","region":"continue:Nevada"},{"name":"Lumen Las Vegas 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"1 Aerojet Way","city":"North Las Vegas","state":"NV","zip":"89030","lat":36.22,"lng":-115.099,"yearOnline":"unknown","powerMw":3,"sqft":37500,"type":"colocation","status":"operational","region":"continue:Nevada"},{"name":"Comcast Clinton Data Center","operator":"Comcast Cable","owner":"unknown","address":"92 W. Main Street","city":"Clinton","state":"NJ","zip":"08809","lat":40.637,"lng":-74.91,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"planned","region":"continue:New Jersey"},{"name":"AT&T CO 5009 E 38th","operator":"AT&T","owner":"Indiana Bell Telephone Co Inc","address":"5009 E 38th St, Indianapolis, IN 46218","city":"Indianapolis","state":"IN","zip":"46218","lat":39.8213,"lng":-86.0907,"yearOnline":"unknown","powerMw":0,"sqft":10431,"type":"telecom","status":"operational","region":"continue:Indiana"},{"name":"Metrobloks Indianapolis IND A1","operator":"Metrobloks","owner":"Metrobloks","address":"2505 N Sherman Dr, Indianapolis, IN 46218","city":"Indianapolis","state":"IN","zip":"46218","lat":39.7957,"lng":-86.1275,"yearOnline":"2027","powerMw":72,"sqft":154000,"type":"wholesale","status":"planned","region":"continue:Indiana"},{"name":"Google Fort Wayne Data Center","operator":"Google","owner":"Google (through subsidiary Hatchworks LLC)","address":"Near East Tillman and Adams Center roads, Fort Wayne, IN","city":"Fort Wayne","state":"IN","zip":"unknown","lat":41.018662160802,"lng":-85.057640594797,"yearOnline":"2025","powerMw":1200,"sqft":0,"type":"hyperscale","status":"operational","region":"continue:Indiana"},{"name":"C1 Kansas Data Center","operator":"One C1 (C1)","owner":"One C1","address":"17795 W. 106th","city":"Olathe","state":"KS","zip":"unknown","lat":38.936293760916,"lng":-94.793210864126,"yearOnline":"unknown","powerMw":0,"sqft":34000,"type":"colocation","status":"operational","region":"continue:Kansas"},{"name":"DigiCo Kansas City KCM1","operator":"DigiCo Infrastructure REIT","owner":"DigiCo Infrastructure REIT","address":"24400 W Valley Pkwy","city":"Olathe","state":"KS","zip":"unknown","lat":38.93929779064,"lng":-94.868345064081,"yearOnline":"unknown","powerMw":7.5,"sqft":192550,"type":"colocation","status":"operational","region":"continue:Kansas"},{"name":"Fusion Connect - Coeur d Alene","operator":"Fusion Connect","owner":"OrbitCom","address":"442 W. Appleway Ave","city":"Coeur d'Alene","state":"ID","zip":"83815","lat":47.700692485884,"lng":-116.792266817877,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Idaho"},{"name":"Lockstep Technology Group Data Center","operator":"Lockstep Technology Group","owner":"Lockstep Technology Group","address":"Baton Rouge, LA (exact street address not listed)","city":"Baton Rouge","state":"LA","zip":"unknown","lat":30.451,"lng":-91.187,"yearOnline":"2007","powerMw":10,"sqft":30000,"type":"colocation","status":"operational","region":"continue:Louisiana"},{"name":"Consolidated Communications – Duluth Data Center","operator":"Consolidated Communications","owner":"Consolidated Communications","address":"21 West Superior Street, Suite 200, Duluth, MN 55802","city":"Duluth","state":"MN","zip":"55802","lat":46.783,"lng":-92.101,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Minnesota"},{"name":"PBC Bemidji Data Center","operator":"Paul Bunyan Communications","owner":"Paul Bunyan Rural Telephone Cooperative","address":"1831 Anne St. NW, Bemidji, MN 56601","city":"Bemidji","state":"MN","zip":"56601","lat":47.489,"lng":-94.898,"yearOnline":"2013","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Minnesota"},{"name":"Verizon PTLCME","operator":"Verizon","owner":"Sweetwater Partners LLC","address":"380 Cumberland Avenue, Portland, ME 04101","city":"Portland","state":"ME","zip":"04101","lat":43.656696,"lng":-70.263084,"yearOnline":"unknown","powerMw":0,"sqft":28987,"type":"telecom","status":"operational","region":"continue:Maine"},{"name":"Consolidated - 45 Forest Ave.","operator":"Consolidated Communications, Inc.","owner":"Redfern Properties","address":"45 Forest Ave","city":"Portland","state":"ME","zip":"04101","lat":43.656,"lng":-70.2638,"yearOnline":"unknown","powerMw":3,"sqft":0,"type":"colocation","status":"operational","region":"continue:Maine"},{"name":"Vaultas St. Cloud Data Center","operator":"Vaultas","owner":"Vaultas","address":"3701 18th St S, St. Cloud, MN 56301","city":"St. Cloud","state":"MN","zip":"56301","lat":45.524,"lng":-94.197,"yearOnline":"unknown","powerMw":0,"sqft":17016,"type":"edge","status":"operational","region":"continue:Minnesota"},{"name":"UnitedHealth Group Elk River Data Center","operator":"UnitedHealth Group","owner":"Cristobal Ventures LLC (CloudHQ / Cloud Capital affiliate)","address":"14100 Business Center Dr. NW, Elk River, MN","city":"Elk River","state":"MN","zip":"unknown","lat":45.318,"lng":-93.589,"yearOnline":"2007","powerMw":0,"sqft":245262,"type":"enterprise","status":"operational","region":"continue:Minnesota"},{"name":"Midco Sioux Falls Data Center","operator":"Midco Business","owner":"Midco","address":"5401 S Solberg Ave, Sioux Falls, SD","city":"Sioux Falls","state":"SD","zip":"unknown","lat":43.496778885581,"lng":-96.784490157617,"yearOnline":"unknown","powerMw":1,"sqft":11000,"type":"colocation","status":"operational","region":"continue:South Dakota"},{"name":"ClearBearing Inc. - Burlington Data Center","operator":"ClearBearing, Inc.","owner":"Farrington Properties LLC","address":"208 Flynn Ave., Suite 2E, Burlington, VT 05401","city":"Burlington","state":"VT","zip":"05401","lat":44.455646447281,"lng":-73.21843861213,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Vermont"},{"name":"Project Clydesdale","operator":"Beale Infrastructure","owner":"Beale Infrastructure (developer); Bird Creek Ranch Limited Partnership (landowner)","address":"Near the NW corner of E 76th St N and N Sheridan Rd, Owasso, OK 74055","city":"Owasso","state":"OK","zip":"74055","lat":36.264044580917,"lng":-95.901935963131,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"under-construction","region":"continue:Oklahoma"},{"name":"Project Spring","operator":"White Rose Partners","owner":"Google","address":"5615 OK-97, Sand Springs, OK 74063","city":"Sand Springs","state":"OK","zip":"74063","lat":36.081580685854,"lng":-96.119314394299,"yearOnline":"2029","powerMw":500,"sqft":932000,"type":"hyperscale","status":"planned","region":"continue:Oklahoma"},{"name":"Lumen Wilmington 1 Data Center","operator":"Lumen Technologies","owner":"Level 3 Communications LLC","address":"1603 Jessup St","city":"Wilmington","state":"DE","zip":"19802","lat":39.748387521545,"lng":-75.539257547235,"yearOnline":"unknown","powerMw":0,"sqft":15000,"type":"telecom","status":"operational","region":"continue:Delaware"},{"name":"Jones Eagle LLC crypto mine near DeWitt","operator":"Jones Eagle LLC","owner":"Jones Digital LLC","address":"690 Highway 165 N","city":"DeWitt","state":"AR","zip":"72042","lat":34.298601029324,"lng":-91.367469163251,"yearOnline":"2024","powerMw":0,"sqft":0,"type":"crypto","status":"operational","region":"continue:Arkansas"},{"name":"Seimitsu Savannah Datacenter and Colocation Facility","operator":"The Seimitsu Corporation (Seimitsu)","owner":"Seimitsu","address":"1523 Bull Street, Savannah, GA 31401","city":"Savannah","state":"GA","zip":"31401","lat":32.061209087399,"lng":-81.098734371888,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Georgia"},{"name":"Core Scientific Dalton (Dalton 1 & 2)","operator":"Core Scientific","owner":"Core Scientific, Inc. (NASDAQ: CORZ)","address":"2205 Industrial South Rd, Dalton, GA 30721","city":"Dalton","state":"GA","zip":"30721","lat":34.713505340815,"lng":-84.952185298698,"yearOnline":"2018","powerMw":50,"sqft":52000,"type":"crypto","status":"operational","region":"continue:Georgia"},{"name":"CleanSpark Vidalia","operator":"CleanSpark","owner":"CleanSpark","address":"430 Davis Rd, Vidalia, GA","city":"Vidalia","state":"GA","zip":"unknown","lat":32.232198315906,"lng":-82.362359470084,"yearOnline":"2024","powerMw":0,"sqft":0,"type":"crypto","status":"operational","region":"continue:Georgia"},{"name":"CleanSpark Dalton 2","operator":"CleanSpark","owner":"CleanSpark (land leased; facility improvements owned by CleanSpark)","address":"1850 Abutment Rd, Dalton, GA 30721","city":"Dalton","state":"GA","zip":"30721","lat":34.736451220275,"lng":-84.962706797514,"yearOnline":"2023","powerMw":0,"sqft":0,"type":"crypto","status":"operational","region":"continue:Georgia"},{"name":"Ubiquity Edge Data Center Statesboro","operator":"Ubiquity","owner":"Ubiquity","address":"695 Brannen St, Statesboro, GA 30461","city":"Statesboro","state":"GA","zip":"30461","lat":32.43431249216,"lng":-81.766517979226,"yearOnline":"2020","powerMw":0.1,"sqft":360,"type":"edge","status":"operational","region":"continue:Georgia"},{"name":"FOGO Solutions Carrollton Data Center","operator":"FOGO Solutions (Fogo Data Centers)","owner":"DC Realty, LLC","address":"340 Tom Reeve Drive, Carrollton, GA 30117","city":"Carrollton","state":"GA","zip":"30117","lat":33.558589524638,"lng":-85.090038550153,"yearOnline":"unknown","powerMw":1,"sqft":9500,"type":"colocation","status":"operational","region":"continue:Georgia"},{"name":"Kapolei Cable Landing Station (Hawaiki)","operator":"DRFortress (operates and manages the O‘ahu Hawaiki cable landing station)","owner":"Hawaiki Submarine Cable USA LLC (BW Digital)","address":"92-384 Farrington Highway, Kapolei, HI","city":"Kapolei","state":"HI","zip":"unknown","lat":21.349388772017,"lng":-158.128697947756,"yearOnline":"2018","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Hawaii"},{"name":"Makaha Cable Landing Station (AT&T)","operator":"AT&T Enterprises, LLC","owner":"AT&T Enterprises, LLC","address":"Makaha Beach Park, Waianae Coast, Oahu, HI","city":"Waianae","state":"HI","zip":"unknown","lat":21.47963,"lng":-158.222238,"yearOnline":"1964","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Hawaii"},{"name":"Hawaiian Telcom Makaha Cable Landing Station (SEA-US)","operator":"Hawaiian Telcom Services Company, Inc.","owner":"Hawaiian Telcom","address":"84-284 Farrington Highway, Waianae, HI 96792","city":"Waianae","state":"HI","zip":"96792","lat":21.47979,"lng":-158.22153,"yearOnline":"2017","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Hawaii"},{"name":"Keawaula Cable Landing Station","operator":"AT&T","owner":"AT&T","address":"Keawaula Ahupuaa / Kaena State Park, Waianae District, Oahu, HI","city":"Waianae","state":"HI","zip":"unknown","lat":21.54907,"lng":-158.238082,"yearOnline":"1985","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Hawaii"},{"name":"Spencer Beach Cable Landing Station","operator":"Hawaiian Telcom, Inc.","owner":"Hawaiian Telcom, Inc.","address":"Queen Kaahumanu Highway, Kawaihae, Hawaii Island, HI","city":"Kawaihae","state":"HI","zip":"unknown","lat":20.005111,"lng":-155.813127,"yearOnline":"2000","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Hawaii"},{"name":"Colorado Colo – Lakewood Data Center","operator":"Colorado Colo","owner":"Colorado Colo","address":"11100 West 8th Avenue, Suite 300","city":"Lakewood","state":"CO","zip":"80215","lat":39.729086126686,"lng":-105.121857809477,"yearOnline":"unknown","powerMw":2,"sqft":73360,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"CO01 Denver Data Center","operator":"US Signal Company, LLC","owner":"US Signal","address":"8675 Concord Center Drive","city":"Englewood","state":"CO","zip":"80112","lat":39.558715273711,"lng":-104.832694264365,"yearOnline":"2015","powerMw":1.6,"sqft":35000,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"365 Data Centers CO1 Aurora Data Center","operator":"365 Data Centers","owner":"365 Data Centers","address":"3431 N Windsor Drive","city":"Aurora","state":"CO","zip":"80011","lat":39.762006411381,"lng":-104.760964476113,"yearOnline":"2001","powerMw":8,"sqft":150000,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Expedient Denver Data Center","operator":"Expedient","owner":"Expedient","address":"7347 S. Revere Parkway, Building C","city":"Centennial","state":"CO","zip":"80112","lat":39.582786815496,"lng":-104.840406701463,"yearOnline":"2021","powerMw":1.6,"sqft":32000,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Csquare DEN1 – Highlands Ranch Campus","operator":"Csquare","owner":"Cyxtera Communications, LLC","address":"9180 Commerce Center Circle","city":"Highlands Ranch","state":"CO","zip":"80129","lat":39.549201124005,"lng":-105.032668998858,"yearOnline":"2000","powerMw":18.3,"sqft":98218,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Csquare DEN1-B","operator":"Csquare (Csquare Data Centers)","owner":"Brookfield Infrastructure (Brookfield Global Data Centers)","address":"9110 Commerce Center Circle","city":"Highlands Ranch","state":"CO","zip":"80129","lat":39.550157971201,"lng":-105.035009443078,"yearOnline":"unknown","powerMw":1.2,"sqft":0,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Csquare DEN2","operator":"Csquare (Centersquare Data Centers)","owner":"Mapletree Investments / Mapletree Industrial Trust (MIT)","address":"8534 Concord Center Drive","city":"Englewood","state":"CO","zip":"80112","lat":39.561596299043,"lng":-104.832545629821,"yearOnline":"2000","powerMw":3.7,"sqft":85660,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"EdgeConneX Denver (EDCDEN01)","operator":"EdgeConneX Inc.","owner":"8535 Highfield, LLC","address":"8535 Highfield Parkway, Suite 500","city":"Englewood","state":"CO","zip":"80112","lat":39.560753977544,"lng":-104.826771745354,"yearOnline":"2014","powerMw":3,"sqft":29800,"type":"edge","status":"operational","region":"continue:Colorado"},{"name":"Cogent Denver Office & Data Center","operator":"Cogent Communications","owner":"Granite Properties","address":"4643 S Ulster Street, Suite 930","city":"Denver","state":"CO","zip":"80237","lat":39.630867481479,"lng":-104.896524421916,"yearOnline":"unknown","powerMw":0.8,"sqft":9501,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Cogent Edge Data Center - Colorado Springs","operator":"Cogent Communications","owner":"Cogent Communications","address":"2535 Sinton Road","city":"Colorado Springs","state":"CO","zip":"80907","lat":38.869252789281,"lng":-104.832951568376,"yearOnline":"unknown","powerMw":0,"sqft":1296,"type":"telecom","status":"operational","region":"continue:Colorado"},{"name":"Lumen Aurora 1","operator":"Lumen Technologies","owner":"Lumen","address":"23901 E 6th Ave","city":"Aurora","state":"CO","zip":"unknown","lat":39.725609859512,"lng":-104.713875961344,"yearOnline":"unknown","powerMw":0,"sqft":300000,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Lumen Denver 5 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"14200 E Jewell Avenue","city":"Aurora","state":"CO","zip":"80012","lat":39.682051940447,"lng":-104.82337493397,"yearOnline":"2001","powerMw":0,"sqft":32900,"type":"telecom","status":"operational","region":"continue:Colorado"},{"name":"American Tower Edge Data Center – Boulder","operator":"American Tower Corporation","owner":"American Tower Corporation","address":"9110 Interlocken Loop","city":"Broomfield","state":"CO","zip":"80021","lat":39.93043769451,"lng":-105.128038501626,"yearOnline":"2020","powerMw":0.1,"sqft":360,"type":"edge","status":"operational","region":"continue:Colorado"},{"name":"Comcast Centennial Data Center","operator":"Comcast","owner":"Aphorio Carter Critical Infrastructure Fund, LLC","address":"7059 S Potomac Street","city":"Centennial","state":"CO","zip":"80112","lat":39.588741222338,"lng":-104.831381477894,"yearOnline":"unknown","powerMw":2.7,"sqft":0,"type":"telecom","status":"operational","region":"continue:Colorado"},{"name":"Springs Hosting Data Center","operator":"Springs Hosting","owner":"Springs Hosting","address":"1205 Shasta Drive","city":"Colorado Springs","state":"CO","zip":"80910","lat":38.814589187652,"lng":-104.76998933414,"yearOnline":"2008","powerMw":0,"sqft":8725,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Data Canopy - Denver","operator":"Data Canopy","owner":"Sagard Real Estate (formerly EverWest Real Estate Investors)","address":"900 S Broadway","city":"Denver","state":"CO","zip":"80209","lat":39.70020612782,"lng":-104.987403873683,"yearOnline":"unknown","powerMw":14,"sqft":41400,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Hivelocity – Colorado Springs 1","operator":"Hivelocity","owner":"Hivelocity","address":"102 South Tejon Street","city":"Colorado Springs","state":"CO","zip":"80903","lat":38.832329798392,"lng":-104.823660595736,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Pearl Technology Peoria Data Center","operator":"Pearl Technology","owner":"Pearl Technology","address":"606 NE Jefferson Street","city":"Peoria","state":"IL","zip":"61603","lat":40.69663089677,"lng":-89.58439659824,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Illinois"},{"name":"Mattoon Data Center IL","operator":"Fidium Business (formerly Consolidated Communications)","owner":"Consolidated Communications of Illinois","address":"1501 Charleston Avenue","city":"Mattoon","state":"IL","zip":"61938","lat":39.481468313091,"lng":-88.372553490348,"yearOnline":"unknown","powerMw":0,"sqft":38463,"type":"telecom","status":"operational","region":"continue:Illinois"},{"name":"National Petascale Computing Facility (NPCF)","operator":"National Center for Supercomputing Applications (NCSA)","owner":"Board of Trustees of the University of Illinois","address":"1205 W. Clark St.","city":"Urbana","state":"IL","zip":"61801","lat":40.115371897215,"lng":-88.22415876863,"yearOnline":"2010","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Illinois"},{"name":"QTS Cedar Rapids CDR1 DC1","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"6200 76th Ave SW, Unit 100","city":"Cedar Rapids","state":"IA","zip":"52228","lat":41.90559767783,"lng":-91.751083365349,"yearOnline":"2026","powerMw":0,"sqft":0,"type":"wholesale","status":"under-construction","region":"continue:Iowa"},{"name":"DataBank IND2 – Downtown Indianapolis Data Center","operator":"DataBank","owner":"LightBound, LLC","address":"6850 Guion Rd, Indianapolis, IN 46268","city":"Indianapolis","state":"IN","zip":"46268","lat":39.879633253928,"lng":-86.231679401705,"yearOnline":"unknown","powerMw":3.75,"sqft":0,"type":"colocation","status":"operational","region":"continue:Indiana"},{"name":"Lumen Cambridge 2","operator":"Lumen Technologies","owner":"RREEF America REIT II Corp. PPP (DWS)","address":"1 Main Street, Cambridge, MA 02142","city":"Cambridge","state":"MA","zip":"02142","lat":42.361974734067,"lng":-71.079750178111,"yearOnline":"unknown","powerMw":0,"sqft":15087,"type":"colocation","status":"operational","region":"continue:Massachusetts"},{"name":"Crown Castle Rockville Data Center","operator":"Crown Castle","owner":"Crown Castle","address":"100 Park Avenue","city":"Rockville","state":"MD","zip":"20850","lat":39.084,"lng":-77.153,"yearOnline":"unknown","powerMw":0,"sqft":16438,"type":"colocation","status":"operational","region":"continue:Maryland"},{"name":"9800 South Eternal Rings Drive (Emerson)","operator":"GI Partners","owner":"GI Partners","address":"9800 S Eternal Rings Dr","city":"Laurel","state":"MD","zip":"20723","lat":39.129,"lng":-76.815,"yearOnline":"unknown","powerMw":0,"sqft":110336,"type":"hyperscale","status":"operational","region":"continue:Maryland"},{"name":"Dickerson, MD Data Center","operator":"Atmosphere Data Centers","owner":"Atmosphere Dickerson Property Owner LLC; Terra Energy LLC; AGC Equity Partners (strategic investor in Atmosphere Data Centers)","address":"Dickerson, Maryland (street address not publicly disclosed)","city":"Dickerson","state":"MD","zip":"unknown","lat":39.22,"lng":-77.43,"yearOnline":"unknown","powerMw":300,"sqft":1125000,"type":"hyperscale","status":"planned","region":"continue:Maryland"},{"name":"Chesapeake Data","operator":"TeraWulf Inc.","owner":"GenOn Holdings LLC (via Morgantown Power, LLC); proposed sale to TeraWulf pending regulatory approvals","address":"Charles County, Maryland (street address not publicly disclosed)","city":"unknown","state":"MD","zip":"unknown","lat":38.59,"lng":-77.04,"yearOnline":"unknown","powerMw":1000,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Maryland"},{"name":"TierPoint Kansas City - Lenexa Data Center","operator":"TierPoint","owner":"TierPoint","address":"14500 West 105th St.","city":"Lenexa","state":"KS","zip":"unknown","lat":38.939994725751,"lng":-94.75779375746,"yearOnline":"2012","powerMw":0,"sqft":58000,"type":"colocation","status":"operational","region":"continue:Kansas"},{"name":"UV&S Technology Wichita Data Center","operator":"UV&S Technology","owner":"Delano Investment LLC","address":"245 N. Waco T100","city":"Wichita","state":"KS","zip":"67202","lat":37.688756006122,"lng":-97.342079630566,"yearOnline":"unknown","powerMw":1,"sqft":10000,"type":"colocation","status":"operational","region":"continue:Kansas"},{"name":"US Signal: Saint Paul Data Center","operator":"US Signal Company, LLC","owner":"Downtown Revival Trust / Jamie Rand","address":"180 East 5th Street, Suite 525","city":"Saint Paul","state":"MN","zip":"55101","lat":44.94833413723,"lng":-93.0887579939,"yearOnline":"2000","powerMw":0,"sqft":17000,"type":"colocation","status":"operational","region":"continue:Minnesota"},{"name":"Innova Solutions Minnesota Data Center II","operator":"Innova Solutions","owner":"North Pad Development LLC (part of MOAC Mall Holdings / Mall of America group)","address":"2131 Lindau Lane, Suite 800","city":"Bloomington","state":"MN","zip":"55425","lat":44.856756588242,"lng":-93.241395762124,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Minnesota"},{"name":"Innova Solutions Minnesota Data Center II","operator":"Innova Solutions","owner":"North Pad Development LLC","address":"2131 Lindau Lane, Suite 800, Bloomington, MN 55425","city":"Bloomington","state":"MN","zip":"55425","lat":44.853,"lng":-93.24,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Minnesota"},{"name":"Lincoln Data Centers – Sharp Building","operator":"Lincoln Data Centers","owner":"Lincoln Data Centers","address":"206 S 13th St, Suite 500","city":"Lincoln","state":"NE","zip":"68508","lat":40.812381636033,"lng":-96.702531601484,"yearOnline":"unknown","powerMw":0,"sqft":155000,"type":"colocation","status":"operational","region":"continue:Nebraska"},{"name":"Binary.net The Vault","operator":"Binary Net, LLC","owner":"Old Fed, LLC (Stonebrook Companies)","address":"134 S 13th St","city":"Lincoln","state":"NE","zip":"68508","lat":40.813187272969,"lng":-96.70252539002,"yearOnline":"unknown","powerMw":0,"sqft":64714,"type":"colocation","status":"operational","region":"continue:Nebraska"},{"name":"Windstream Lincoln Data Center","operator":"Windstream","owner":"Windstream","address":"1440 M St","city":"Lincoln","state":"NE","zip":"68508","lat":40.811446403355,"lng":-96.700552526863,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Nebraska"},{"name":"Hamilton Data Center","operator":"Hamilton Telecommunications","owner":"Hamilton Telecommunications","address":"1006 12th Street","city":"Aurora","state":"NE","zip":"68818","lat":40.866530419067,"lng":-98.002862102651,"yearOnline":"unknown","powerMw":0,"sqft":11400,"type":"colocation","status":"operational","region":"continue:Nebraska"},{"name":"NJFX Cable Landing Station Campus (New Jersey Fiber Exchange)","operator":"NJFX (New Jersey Fiber Exchange)","owner":"NJFX / NJFX Campus LLC","address":"1410 Wall Church Road","city":"Wall Township","state":"NJ","zip":"unknown","lat":40.160019636795,"lng":-74.052421333093,"yearOnline":"2016","powerMw":0,"sqft":64800,"type":"colocation","status":"operational","region":"continue:New Jersey"},{"name":"Tata Communications Wall Township Data Center","operator":"Tata Communications","owner":"Tata Communications (America) Inc.","address":"1400 Wall Church Road","city":"Wall Township","state":"NJ","zip":"07719","lat":40.160031694861,"lng":-74.052274626575,"yearOnline":"2001","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:New Jersey"},{"name":"ISG Technology – Columbia Data Center (ISG Columbia)","operator":"ISG Technology, LLC (part of the Twin Valley Family of Companies)","owner":"ISG Technology","address":"2500 N Stadium Blvd, Columbia, MO","city":"Columbia","state":"MO","zip":"unknown","lat":38.980556935039,"lng":-92.371493725424,"yearOnline":"unknown","powerMw":0,"sqft":9400,"type":"colocation","status":"operational","region":"continue:Missouri"},{"name":"Lumen Santa Teresa 1 Data Center","operator":"Lumen Technologies","owner":"Lumen","address":"175 Harrier Drive","city":"Santa Teresa","state":"NM","zip":"88008","lat":31.867196855964,"lng":-106.698475518171,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:New Mexico"},{"name":"Atterix Raton Advanced Digital Hub","operator":"Atterix LLC","owner":"Atterix LLC","address":"1235 S 2nd Street","city":"Raton","state":"NM","zip":"87740","lat":36.88114,"lng":-104.43821,"yearOnline":"unknown","powerMw":5,"sqft":40327,"type":"edge","status":"planned","region":"continue:New Mexico"},{"name":"Fibertech Networks – Rochester Data Center","operator":"Zayo Group","owner":"Fibertech Networks","address":"1 Exchange St., 9th Floor, Suite 915","city":"Rochester","state":"NY","zip":"14614","lat":43.155659327046,"lng":-77.612524939817,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:New York"},{"name":"LightEdge Raleigh Data Center","operator":"LightEdge","owner":"American Asset Corporation (AAC)","address":"8020 Arco Corporate Dr","city":"Raleigh","state":"NC","zip":"27617","lat":35.908934011994,"lng":-78.777544024782,"yearOnline":"2013","powerMw":1.5,"sqft":11978,"type":"colocation","status":"operational","region":"continue:North Carolina"},{"name":"Verizon Providence Central Office (Washington St)","operator":"Verizon (Verizon New England Inc.)","owner":"Verizon New England Inc.","address":"234 Washington Street","city":"Providence","state":"RI","zip":"02903","lat":41.821263051663,"lng":-71.417091094439,"yearOnline":"1917","powerMw":0,"sqft":168000,"type":"telecom","status":"operational","region":"continue:Rhode Island"},{"name":"50 Catamore Blvd Telecom Switch Site (CLLI: EPRVRIELCM2)","operator":"Verizon New England Inc. (uncertain)","owner":"Foxfield LLC","address":"50 Catamore Blvd","city":"East Providence","state":"RI","zip":"unknown","lat":41.802105625476,"lng":-71.343433774768,"yearOnline":"unknown","powerMw":0,"sqft":39604,"type":"telecom","status":"operational","region":"continue:Rhode Island"},{"name":"South Dakota K-12 Data Center","operator":"South Dakota K-12 Data Center","owner":"Dakota State University","address":"820 N Washington Ave, Madison, SD 57042","city":"Madison","state":"SD","zip":"57042","lat":44.012278069678,"lng":-97.10973136789,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:South Dakota"},{"name":"Western Pennsylvania data center (WPA-1)","operator":"Iron Mountain Data Centers","owner":"Iron Mountain","address":"1137 Branchton Rd","city":"Boyers","state":"PA","zip":"16020","lat":41.0913998,"lng":-79.9134953,"yearOnline":"unknown","powerMw":15.5,"sqft":330000,"type":"colocation","status":"operational","region":"continue:Pennsylvania"},{"name":"Crown Castle Philadelphia (PA2)","operator":"Zayo Group Holdings","owner":"3607 Broadway Realty Associates LLC","address":"1309 Noble St","city":"Philadelphia","state":"PA","zip":"19123","lat":39.960240500333,"lng":-75.159918329323,"yearOnline":"unknown","powerMw":4,"sqft":224000,"type":"telecom","status":"operational","region":"continue:Pennsylvania"},{"name":"Loop Internet DC2","operator":"Loop Internet, a Greenlight Networks company","owner":"Loop Internet","address":"46 E Liberty St","city":"Hanover","state":"PA","zip":"18706","lat":41.220901337616,"lng":-75.89464333604,"yearOnline":"unknown","powerMw":0,"sqft":30000,"type":"colocation","status":"operational","region":"continue:Pennsylvania"},{"name":"Standard Power: Beaver Valley Data Center","operator":"Standard Power","owner":"Standard Power","address":"281 Shippingport Rd","city":"Shippingport","state":"PA","zip":"unknown","lat":40.623046305753,"lng":-80.424398387912,"yearOnline":"unknown","powerMw":300,"sqft":0,"type":"crypto","status":"planned","region":"continue:Pennsylvania"},{"name":"DaSTOR King of Prussia I / 411 Swedeland Road Data Center","operator":"DaSTOR, LLC","owner":"MLP Ventures (via The Discovery Labs)","address":"411 Swedeland Rd","city":"King of Prussia","state":"PA","zip":"19406","lat":40.075516,"lng":-75.333015,"yearOnline":"2021","powerMw":8,"sqft":31000,"type":"colocation","status":"operational","region":"continue:Pennsylvania"},{"name":"QTS York County Data Center (York I)","operator":"QTS Data Centers","owner":"Blackstone funds (Blackstone Infrastructure Partners and BREIT) via QTS Data Centers; local parcels held by entities including QTS York II LLC.","address":"2107 Hands Mill Highway","city":"Rock Hill","state":"SC","zip":"29732","lat":34.985,"lng":-81.059,"yearOnline":"unknown","powerMw":0,"sqft":5300000,"type":"wholesale","status":"under-construction","region":"continue:South Carolina"},{"name":"QTS York II (QTS York County Campus)","operator":"QTS Data Centers","owner":"Blackstone (via QTS Realty Trust)","address":"5805 Campbell Road","city":"Unincorporated York County","state":"SC","zip":"unknown","lat":35.02,"lng":-81.085,"yearOnline":"2028","powerMw":0,"sqft":5300000,"type":"wholesale","status":"under-construction","region":"continue:South Carolina"},{"name":"Scipio Technologies Knoxville","operator":"Scipio Technologies","owner":"Scipio Technologies","address":"500 W. Summit Hill Drive","city":"Knoxville","state":"TN","zip":"37902","lat":35.966288055516,"lng":-83.921575263212,"yearOnline":"2000","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Tennessee"},{"name":"Uniti Knoxville","operator":"Uniti Group Inc.","owner":"Uniti Group Inc.","address":"2333 Lovell Rd","city":"Knoxville","state":"TN","zip":"37932","lat":35.950979085131,"lng":-84.124872461825,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Tennessee"},{"name":"Infinity Data Center","operator":"Webservio Inc.","owner":"unknown","address":"2575 Willow Point Way Suite 103","city":"Knoxville","state":"TN","zip":"37931","lat":35.958738830129,"lng":-84.138850931371,"yearOnline":"unknown","powerMw":0,"sqft":1209,"type":"colocation","status":"operational","region":"continue:Tennessee"},{"name":"CleanSpark Jellico","operator":"CleanSpark","owner":"CSRE Properties Tennessee, LLC (CleanSpark affiliate)","address":"131-181 Douglas Ln","city":"Jellico","state":"TN","zip":"37762","lat":36.542966194771,"lng":-84.153980164416,"yearOnline":"2022","powerMw":0,"sqft":0,"type":"crypto","status":"operational","region":"continue:Tennessee"},{"name":"CleanSpark New Tazewell","operator":"CleanSpark","owner":"CleanSpark","address":"3750 Tennessee-33","city":"New Tazewell","state":"TN","zip":"37825","lat":36.396597214049,"lng":-83.691679463214,"yearOnline":"2022","powerMw":20,"sqft":0,"type":"crypto","status":"operational","region":"continue:Tennessee"},{"name":"DC BLOX Chattanooga (CHA1)","operator":"DC BLOX","owner":"DC BLOX INC","address":"807 East 16th Street","city":"Chattanooga","state":"TN","zip":"37408","lat":35.031459756118,"lng":-85.297659603366,"yearOnline":"2017","powerMw":1,"sqft":8000,"type":"colocation","status":"operational","region":"continue:Tennessee"},{"name":"Airnet, by Dataprise","operator":"Dataprise","owner":"Dataprise","address":"801 Broad Street Suite 530","city":"Chattanooga","state":"TN","zip":"37402","lat":35.047032539895,"lng":-85.310658571373,"yearOnline":"2002","powerMw":0,"sqft":12765,"type":"colocation","status":"operational","region":"continue:Tennessee"},{"name":"Scipio Technologies Chattanooga","operator":"Scipio Technologies","owner":"Scipio Technologies","address":"1100 East 11th Street","city":"Chattanooga","state":"TN","zip":"37404","lat":35.037642796647,"lng":-85.293230251989,"yearOnline":"unknown","powerMw":0,"sqft":17000,"type":"colocation","status":"operational","region":"continue:Tennessee"},{"name":"MCA Chattanooga","operator":"MCA Technology Solutions / Mike Collins & Associates (a New Charter Technologies company)","owner":"MCA","address":"6048 Century Oaks Dr","city":"Chattanooga","state":"TN","zip":"37416","lat":35.077692528478,"lng":-85.183417240956,"yearOnline":"2014","powerMw":0,"sqft":2500,"type":"colocation","status":"operational","region":"continue:Tennessee"},{"name":"Aeneas Data Center","operator":"Aeneas Internet & Telephone","owner":"Aeneas Internet & Telephone","address":"300 N Cumberland St #200","city":"Jackson","state":"TN","zip":"38301","lat":35.61589106423,"lng":-88.816154287419,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Tennessee"},{"name":"Windstream Bristol, TN Data Center","operator":"Windstream","owner":"Windstream","address":"112 6th St","city":"Bristol","state":"TN","zip":"37620","lat":36.593585163502,"lng":-82.183411899872,"yearOnline":"unknown","powerMw":0,"sqft":26500,"type":"colocation","status":"operational","region":"continue:Tennessee"},{"name":"Oak Ridge Leadership Computing Facility (OLCF) – Frontier Data Center, Building 5600","operator":"Oak Ridge National Laboratory (managed by UT-Battelle LLC for DOE)","owner":"U.S. Department of Energy","address":"1 Bethel Valley Road","city":"Oak Ridge","state":"TN","zip":"37830","lat":35.982829152756,"lng":-84.223753291162,"yearOnline":"2022","powerMw":30,"sqft":15000,"type":"enterprise","status":"operational","region":"continue:Tennessee"},{"name":"Flexential SLC03 (Salt Lake City - Lindon)","operator":"Flexential","owner":"Mecca Holdings, LLC","address":"333 South 520 West","city":"Lindon","state":"UT","zip":"84042","lat":40.331342529453,"lng":-111.727571043411,"yearOnline":"unknown","powerMw":0.57,"sqft":9542,"type":"colocation","status":"operational","region":"continue:Utah"},{"name":"VELCO Data Center (Rutland Headquarters)","operator":"Vermont Electric Power Company, Inc. (VELCO)","owner":"Vermont Transco LLC","address":"366 Pinnacle Ridge Road, Rutland, VT 05701","city":"Rutland","state":"VT","zip":"05701","lat":43.661035575694,"lng":-72.992363015618,"yearOnline":"unknown","powerMw":1.6,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Vermont"},{"name":"Consolidated - 266 Main St.","operator":"Consolidated Communications","owner":"Consolidated Communications Holdings Inc.","address":"266 Main Street, Burlington, VT 05401","city":"Burlington","state":"VT","zip":"05401","lat":44.476151717334,"lng":-73.208462258671,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Vermont"},{"name":"VELCO New Haven Operations Facility","operator":"Vermont Electric Power Company (VELCO)","owner":"Vermont Transco LLC / Vermont Electric Power Company (VELCO)","address":"760 Main Street, New Haven, VT 05472","city":"New Haven","state":"VT","zip":"05472","lat":44.123466837861,"lng":-73.162672646523,"yearOnline":"2023","powerMw":0,"sqft":22000,"type":"enterprise","status":"operational","region":"continue:Vermont"},{"name":"Lumen Herndon 3 Data Center","operator":"Lumen Technologies","owner":"Level 3 Communications","address":"524 Van Buren Street","city":"Herndon","state":"VA","zip":"20170","lat":38.964955115113,"lng":-77.382876972786,"yearOnline":"2014","powerMw":0,"sqft":12000,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"CloudHQ LC3","operator":"CloudHQ","owner":"Lohrasp Ventures LLC (c/o CloudHQ LLC)","address":"44631 Waxpool Rd","city":"Ashburn","state":"VA","zip":"20147","lat":39.013245821689,"lng":-77.475172235505,"yearOnline":"unknown","powerMw":96,"sqft":585593,"type":"hyperscale","status":"under-construction","region":"continue:Virginia"},{"name":"Microsoft Fairwater Wisconsin (first Mount Pleasant datacenter)","operator":"Microsoft Corporation","owner":"Microsoft Corporation","address":"County Road H between Braun Road and County Road KR","city":"Mount Pleasant","state":"WI","zip":"unknown","lat":42.683743026109,"lng":-87.914424083548,"yearOnline":"2026","powerMw":400,"sqft":1200000,"type":"hyperscale","status":"operational","region":"continue:Wisconsin"},{"name":"Verizon Business – Advanced Data Center Washington D.C.","operator":"Verizon Business","owner":"Douglas Development Corp.","address":"1341 G Street Northwest","city":"Washington","state":"DC","zip":"20005","lat":38.89858,"lng":-77.031529,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:District of Columbia"},{"name":"Digital Realty IAH11 - 12061 North Freeway","operator":"Digital Realty","owner":"Digital Realty Trust","address":"12061 North Freeway","city":"Houston","state":"TX","zip":"unknown","lat":29.943297954194,"lng":-95.415499172214,"yearOnline":"unknown","powerMw":3.3,"sqft":30000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Omnis Data Center","operator":"Omnis Network (LLC)","owner":"Omnis Network","address":"1005 W Geneva Dr, Tempe, AZ 85282","city":"Tempe","state":"AZ","zip":"85282","lat":33.394860976347,"lng":-111.952219621719,"yearOnline":"unknown","powerMw":0.625,"sqft":15070,"type":"colocation","status":"operational","region":"continue:Arizona"},{"name":"OneNeck IT Solutions – Tempe Data Center (2710 S Roosevelt St)","operator":"OneNeck IT Solutions (acquired by US Signal on September 3, 2024; site decommissioned)","owner":"OneNeck IT Solutions","address":"2710 S Roosevelt St, Tempe, AZ 85282","city":"Tempe","state":"AZ","zip":"85282","lat":33.399956541939,"lng":-111.947884900796,"yearOnline":"2001","powerMw":0,"sqft":6000,"type":"colocation","status":"decommissioned","region":"continue:Arizona"},{"name":"Centrilogic Scottsdale, Arizona","operator":"Centrilogic","owner":"Centrilogic","address":"9316 E Raintree Dr, Scottsdale, AZ 85260","city":"Scottsdale","state":"AZ","zip":"85260","lat":33.618877145238,"lng":-111.881161935506,"yearOnline":"unknown","powerMw":0,"sqft":10843,"type":"colocation","status":"operational","region":"continue:Arizona"},{"name":"Simply Bits DC1","operator":"Simply Bits, LLC (branded Simply Bits from Ting / part of Ting Internet)","owner":"Simply Bits","address":"1300 S Park Ave, Tucson, AZ","city":"Tucson","state":"AZ","zip":"unknown","lat":32.205519706491,"lng":-110.956246502805,"yearOnline":"2004","powerMw":3,"sqft":0,"type":"colocation","status":"operational","region":"continue:Arizona"},{"name":"Corserva Connecticut","operator":"Corserva","owner":"Eldorado Holdings","address":"100 Technology Drive","city":"Trumbull","state":"CT","zip":"06611","lat":41.296370990881,"lng":-73.228710731433,"yearOnline":"2011","powerMw":0,"sqft":34000,"type":"colocation","status":"operational","region":"continue:Connecticut"},{"name":"Gotspace Norwich - Building 2","operator":"Gotspace Data Partners","owner":"Gotspace Data Partners","address":"368 Plain Hill Rd","city":"Norwich","state":"CT","zip":"06360","lat":41.587095967562,"lng":-72.102051100972,"yearOnline":"unknown","powerMw":32,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Connecticut"},{"name":"Gotspace Norwich - Building 3","operator":"Gotspace Data Partners","owner":"Gotspace Data Partners","address":"388 Plain Hill Rd","city":"Norwich","state":"CT","zip":"06360","lat":41.589060401734,"lng":-72.101712566374,"yearOnline":"unknown","powerMw":32,"sqft":156836,"type":"hyperscale","status":"planned","region":"continue:Connecticut"},{"name":"Gotspace Griswold 1 - Building 1","operator":"Gotspace Data Partners","owner":"Gotspace Data Partners","address":"29 Barber Rd, Building 1","city":"Griswold","state":"CT","zip":"06351","lat":41.586524644841,"lng":-71.976121357947,"yearOnline":"unknown","powerMw":32,"sqft":132351,"type":"hyperscale","status":"planned","region":"continue:Connecticut"},{"name":"Lumen Sacramento 1 Data Center","operator":"Lumen Technologies","owner":"Lumen","address":"1075 Triangle Court","city":"West Sacramento","state":"CA","zip":"95691","lat":38.587021272249,"lng":-121.528239048062,"yearOnline":"unknown","powerMw":0,"sqft":15000,"type":"colocation","status":"operational","region":"continue:California"},{"name":"Lumen Sacramento 2 Data Center","operator":"Lumen Technologies (Lumen)","owner":"Lumen","address":"1005 North B Street","city":"Sacramento","state":"CA","zip":"95814","lat":38.591295721525,"lng":-121.488560587825,"yearOnline":"unknown","powerMw":0,"sqft":22500,"type":"colocation","status":"operational","region":"continue:California"},{"name":"Lumen Riverside 1 Data Center","operator":"Lumen","owner":"Lumen","address":"1550 Marlborough Avenue","city":"Riverside","state":"CA","zip":"92507","lat":33.997527803833,"lng":-117.345261675393,"yearOnline":"unknown","powerMw":0,"sqft":23000,"type":"colocation","status":"operational","region":"continue:California"},{"name":"Lumen Modesto 1 Data Center","operator":"Lumen Technologies","owner":"Lumen","address":"1224 13th Street","city":"Modesto","state":"CA","zip":"unknown","lat":37.644886152815,"lng":-120.99997684251,"yearOnline":"unknown","powerMw":0,"sqft":3406,"type":"colocation","status":"operational","region":"continue:California"},{"name":"Hawaiian Telcom Makaha Cable Landing Station (HT Makaha CLS)","operator":"Hawaiian Telcom Services Company, Inc. (HTSC)","owner":"Hawaiian Telcom Services Company, Inc. (HTSC)","address":"84-284 Farrington Hwy, Waianae, HI 96792","city":"Waianae","state":"HI","zip":"96792","lat":21.47895,"lng":-158.22272,"yearOnline":"2017","powerMw":0,"sqft":1500,"type":"telecom","status":"operational","region":"continue:Hawaii"},{"name":"CloudHQ ORD1","operator":"CloudHQ","owner":"CloudHQ","address":"1200 E Algonquin Rd","city":"Des Plaines","state":"IL","zip":"60016","lat":42.03501,"lng":-87.9537,"yearOnline":"unknown","powerMw":84,"sqft":566800,"type":"hyperscale","status":"under-construction","region":"continue:Illinois"},{"name":"GigeNET Chicago","operator":"GigeNET","owner":"SRM Cos & Pearlmark","address":"545 E Algonquin Rd, Suite D","city":"Arlington Heights","state":"IL","zip":"60005","lat":42.041347616523,"lng":-87.975657577688,"yearOnline":"2006","powerMw":0,"sqft":17000,"type":"colocation","status":"operational","region":"continue:Illinois"},{"name":"Lumen Technologies Arlington Heights 1","operator":"Lumen Technologies","owner":"Seefried Industrial Properties","address":"1305 East Algonquin Road","city":"Arlington Heights","state":"IL","zip":"60005","lat":42.033136572307,"lng":-87.953870308187,"yearOnline":"unknown","powerMw":0,"sqft":57000,"type":"telecom","status":"decommissioned","region":"continue:Illinois"},{"name":"TierPoint Chicago Data Center (Polk St.)","operator":"TierPoint","owner":"Menlo Equities","address":"601 W Polk St","city":"Chicago","state":"IL","zip":"60607","lat":41.871930852446,"lng":-87.642422191465,"yearOnline":"2013","powerMw":5,"sqft":107000,"type":"colocation","status":"operational","region":"continue:Illinois"},{"name":"Former Windstream data center, 31 N Wolf Road","operator":"unknown","owner":"unknown","address":"31 N Wolf Road","city":"Wheeling","state":"IL","zip":"60090","lat":42.140086867451,"lng":-87.915641486081,"yearOnline":"unknown","powerMw":0,"sqft":3718,"type":"telecom","status":"decommissioned","region":"continue:Illinois"},{"name":"Compass Hoffman Estates data center campus","operator":"Compass Datacenters","owner":"Compass Datacenters","address":"3333 Beverly Rd","city":"Hoffman Estates","state":"IL","zip":"60179","lat":42.079981189559,"lng":-88.223524889913,"yearOnline":"2026","powerMw":0,"sqft":0,"type":"hyperscale","status":"under-construction","region":"continue:Illinois"},{"name":"tw telecom - Boise Data Center #2 (legacy/inactive)","operator":"Lumen Technologies (corporate successor to tw telecom); listing inactive at this address","owner":"tw telecom","address":"199 N Capitol Blvd","city":"Boise","state":"ID","zip":"83702","lat":43.615779650838,"lng":-116.201680126706,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"decommissioned","region":"continue:Idaho"},{"name":"CleanSpark Washington Data Center","operator":"CleanSpark, Inc.","owner":"CSRE Properties Washington, LLC","address":"197 Dixie Wood Rd, Washington, GA 30673","city":"Washington","state":"GA","zip":"30673","lat":33.705008695083,"lng":-82.752461438214,"yearOnline":"2022","powerMw":86,"sqft":0,"type":"crypto","status":"operational","region":"continue:Georgia"},{"name":"Watch Communications Data Center","operator":"Watch Communications","owner":"CWK'S LLC","address":"4631 Ohara Dr, Evansville, IN 47711","city":"Evansville","state":"IN","zip":"47711","lat":37.9886,"lng":-87.6008,"yearOnline":"unknown","powerMw":0,"sqft":20160,"type":"colocation","status":"operational","region":"continue:Indiana"},{"name":"CoreWeave at Digital Crossroad Campus","operator":"CoreWeave","owner":"Decennial Group LLC (DX Hammond JV LLC)","address":"100 Digital Crossroads Drive (adjacent), Hammond, IN 46302","city":"Hammond","state":"IN","zip":"46302","lat":41.522,"lng":-87.493,"yearOnline":"unknown","powerMw":180,"sqft":450000,"type":"hyperscale","status":"planned","region":"continue:Indiana"},{"name":"Indiana Data Center LLC – Fort Wayne","operator":"Indiana Data Center, LLC","owner":"Indiana Data Center, LLC","address":"620 W Coliseum Blvd #1298, Fort Wayne, IN 46808","city":"Fort Wayne","state":"IN","zip":"46808","lat":41.0913,"lng":-85.1494,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Indiana"},{"name":"Wintek Data Center","operator":"Wintek Business Solutions","owner":"Wintek Corporation","address":"3921 David Howarth Drive, Lafayette, IN 47905","city":"Lafayette","state":"IN","zip":"47905","lat":40.3851,"lng":-86.8635,"yearOnline":"2016","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Indiana"},{"name":"IU Bloomington Data Center","operator":"Indiana University — University Information Technology Services (UITS)","owner":"The Trustees of Indiana University","address":"2750 East Discovery Parkway, Bloomington, IN 47408","city":"Bloomington","state":"IN","zip":"47408","lat":39.1747,"lng":-86.5005,"yearOnline":"2009","powerMw":0,"sqft":82700,"type":"enterprise","status":"operational","region":"continue:Indiana"},{"name":"ORI.NET Noblesville","operator":"On-Ramp Indiana, Inc. (ORI.NET)","owner":"ORI.NET (On-Ramp Indiana)","address":"859 Conner St, Noblesville, IN","city":"Noblesville","state":"IN","zip":"unknown","lat":40.045546872065,"lng":-86.0140089443,"yearOnline":"unknown","powerMw":2,"sqft":2400,"type":"telecom","status":"operational","region":"continue:Indiana"},{"name":"Lumen Indianapolis 3 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"4625 W 86th St, Indianapolis, IN 46268","city":"Indianapolis","state":"IN","zip":"46268","lat":39.9097,"lng":-86.2308,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Indiana"},{"name":"DC BLOX Thunderbird Data Center","operator":"DC BLOX","owner":"DCB Indianapolis, LLC (DC BLOX); site within Lauth Group’s Thunderbird Commerce Center","address":"305 Fintail Dr, Indianapolis, IN 46239","city":"Indianapolis","state":"IN","zip":"46239","lat":39.7452,"lng":-86.0553,"yearOnline":"2028","powerMw":80,"sqft":420000,"type":"wholesale","status":"planned","region":"continue:Indiana"},{"name":"Decatur Technology Park","operator":"Sabey Data Centers","owner":"Sabey Data Center Properties","address":"IN-67 & Camby Rd, Camby, IN 46113","city":"Camby","state":"IN","zip":"46113","lat":39.6569,"lng":-86.3365,"yearOnline":"unknown","powerMw":250,"sqft":900000,"type":"wholesale","status":"planned","region":"continue:Indiana"},{"name":"RadiusDC Indy II","operator":"RadiusDC","owner":"Radius DC REIT III-B, LLC (RadiusDC)","address":"Smith Rd & AllPoints Pkwy Lot 18, Plainfield, IN 46123","city":"Plainfield","state":"IN","zip":"46123","lat":39.6763,"lng":-86.3696,"yearOnline":"unknown","powerMw":12,"sqft":100835,"type":"wholesale","status":"planned","region":"continue:Indiana"},{"name":"Google Michigan City (Project Maize)","operator":"Google","owner":"Google","address":"402 Royal Rd, Michigan City, IN 46360","city":"Michigan City","state":"IN","zip":"46360","lat":41.7075,"lng":-86.8746,"yearOnline":"unknown","powerMw":0,"sqft":400827,"type":"hyperscale","status":"under-construction","region":"continue:Indiana"},{"name":"Hobart Devco LLC - Building 5","operator":"Amazon Web Services (AWS)","owner":"Hobart Devco, LLC","address":"E 61st Ave & Arizona St, Hobart, IN 46342","city":"Hobart","state":"IN","zip":"46342","lat":41.5145,"lng":-87.2725,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"planned","region":"continue:Indiana"},{"name":"Scroggin Networks Monroe","operator":"Bayou Internet","owner":"Bayou Internet","address":"1109 Hudson Lane, Monroe, LA 71201","city":"Monroe","state":"LA","zip":"71201","lat":32.514839405061,"lng":-92.114267025089,"yearOnline":"1994","powerMw":0,"sqft":9540,"type":"colocation","status":"operational","region":"continue:Louisiana"},{"name":"SNS Norwood","operator":"Secured Network Services, Inc. (a Thrive company)","owner":"Secured Network Services, Inc.","address":"1500 Providence Hwy, Norwood, MA 02062","city":"Norwood","state":"MA","zip":"02062","lat":42.163567787412,"lng":-71.199118773244,"yearOnline":"unknown","powerMw":0,"sqft":1600,"type":"colocation","status":"operational","region":"continue:Massachusetts"},{"name":"JeanComputech Brockton","operator":"JeanComputech Corporation","owner":"JeanComputech Corporation","address":"37 Belmont Street, Suite C, Brockton, MA 02301","city":"Brockton","state":"MA","zip":"02301","lat":42.080473922835,"lng":-71.021455648998,"yearOnline":"2018","powerMw":2.5,"sqft":26929,"type":"colocation","status":"operational","region":"continue:Massachusetts"},{"name":"Expedient Baltimore - Owings Mills (BWI1)","operator":"Expedient","owner":"Expedient","address":"11155 Red Run Blvd., Suite 200, Owings Mills, MD 21117","city":"Owings Mills","state":"MD","zip":"21117","lat":39.428483580186,"lng":-76.811057005722,"yearOnline":"2013","powerMw":0.8,"sqft":22000,"type":"colocation","status":"operational","region":"continue:Maryland"},{"name":"OIT Data Center Operations (Maine IT)","operator":"Maine Office of Information Technology (MaineIT)","owner":"State of Maine","address":"51 Commerce Dr","city":"Augusta","state":"ME","zip":"04330","lat":44.3106,"lng":-69.7795,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Maine"},{"name":"FirstLight Regen Hut (NNENIX Location #1)","operator":"FirstLight Fiber","owner":"Antin Infrastructure Partners (corporate owner of FirstLight Fiber; deed owner unknown)","address":"9 Westland Ave","city":"Portland","state":"ME","zip":"04102","lat":43.658,"lng":-70.281,"yearOnline":"unknown","powerMw":0,"sqft":462,"type":"telecom","status":"operational","region":"continue:Maine"},{"name":"NNENIX Location #2 – USM Science Building","operator":"Networkmaine","owner":"University of Maine System","address":"70 Falmouth St, Room 235","city":"Portland","state":"ME","zip":"04103","lat":43.656,"lng":-70.262,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"continue:Maine"},{"name":"Nautilus East Millinocket","operator":"Nautilus Data Technologies","owner":"Town of East Millinocket","address":"51 Main St","city":"East Millinocket","state":"ME","zip":"04430","lat":45.6275,"lng":-68.5714,"yearOnline":"unknown","powerMw":60,"sqft":0,"type":"wholesale","status":"decommissioned","region":"continue:Maine"},{"name":"MillCompute Bates Mill No. 3 AI Data Center","operator":"MillCompute LLC","owner":"Twin Cities LLC (Bill Johnson)","address":"140 Mill St","city":"Lewiston","state":"ME","zip":"04240","lat":44.0993,"lng":-70.2115,"yearOnline":"unknown","powerMw":24,"sqft":85000,"type":"colocation","status":"planned","region":"continue:Maine"},{"name":"Big Sky Campus (Big Sky Digital Infrastructure)","operator":"Big Sky Digital Infrastructure LLC","owner":"Quantica Infrastructure LLC, backed by EnCap Investments LP (Energy Transition)","address":"16652 Montana Ave, Broadview, MT 59015","city":"Broadview","state":"MT","zip":"59015","lat":46.100438291357,"lng":-108.874384629891,"yearOnline":"2029","powerMw":1100,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Montana"},{"name":"Venyu Technology Center (Jackson) — planned project; site now Prado Lofts at Meadowbrook","operator":"None (project did not enter operation; announced operator was Venyu Solutions)","owner":"PraCon Global Investment Group (site redevelopment owner/developer)","address":"Former McRae's Department Store, Meadowbrook Road and State Street, Jackson, MS","city":"Jackson","state":"MS","zip":"unknown","lat":32.350188079597,"lng":-90.175350244772,"yearOnline":"unknown","powerMw":1.8,"sqft":67000,"type":"colocation","status":"decommissioned","region":"continue:Mississippi"},{"name":"Jaguar Communications Data Center (MetroNet Jaguar)","operator":"MetroNet","owner":"MetroNet (owned by a T‑Mobile/KKR joint venture since July 2025)","address":"213 South Oak Avenue","city":"Owatonna","state":"MN","zip":"55060","lat":44.083126,"lng":-93.22823,"yearOnline":"unknown","powerMw":3,"sqft":9633,"type":"telecom","status":"operational","region":"continue:Minnesota"},{"name":"Wikstrom Telephone Company East Grand Forks Facility","operator":"Wikstrom Telephone Company, Inc.","owner":"Wikstrom Telephone Company, Inc.","address":"232 20th St NW","city":"East Grand Forks","state":"MN","zip":"56721","lat":47.945477,"lng":-97.022654,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Minnesota"},{"name":"Nashua Data Center - Building 200","operator":"John Flatley Company","owner":"John Flatley Company","address":"200 Innovative Way, Nashua, NH 03062","city":"Nashua","state":"NH","zip":"03062","lat":42.711190782176,"lng":-71.45851320971,"yearOnline":"unknown","powerMw":3.97,"sqft":203692,"type":"wholesale","status":"operational","region":"continue:New Hampshire"},{"name":"Nashua Data Center - Building 300","operator":"John Flatley Company (operating as Nashua Data Center)","owner":"John Flatley Company","address":"300 Innovative Way, Nashua, NH 03062","city":"Nashua","state":"NH","zip":"03062","lat":42.711486227954,"lng":-71.455858338307,"yearOnline":"unknown","powerMw":9.26,"sqft":21882,"type":"wholesale","status":"operational","region":"continue:New Hampshire"},{"name":"DataOne / Nebius Vineland, NJ Data Center","operator":"DataOne (facility developer/operator); Nebius (AI cloud capacity operator)","owner":"DataOne USA LLC / DataOne Vineland LLC","address":"805 Sheridan Ave","city":"Vineland","state":"NJ","zip":"08361","lat":39.429939229909,"lng":-75.016376547992,"yearOnline":"2026","powerMw":300,"sqft":717602,"type":"hyperscale","status":"under-construction","region":"continue:New Jersey"},{"name":"Cogent Data Center - Pennsauken","operator":"Cogent Communications, Inc.","owner":"Cogent Communications, Inc.","address":"4101 Maple Ave","city":"Pennsauken","state":"NJ","zip":"08109","lat":39.948617999704,"lng":-75.06613627117,"yearOnline":"unknown","powerMw":2.3,"sqft":39601,"type":"colocation","status":"operational","region":"continue:New Jersey"},{"name":"Cogent Data Center - Franklin","operator":"Cogent Communications, Inc.","owner":"Cogent Communications, Inc.","address":"254 State Highway 23","city":"Franklin","state":"NJ","zip":"07416","lat":41.116128274599,"lng":-74.580826785409,"yearOnline":"unknown","powerMw":0,"sqft":6669,"type":"colocation","status":"operational","region":"continue:New Jersey"},{"name":"Planet Networks Data Center","operator":"Planet Networks","owner":"Planet Networks","address":"4 Park Place","city":"Newton","state":"NJ","zip":"07860","lat":41.05821363963,"lng":-74.753779097204,"yearOnline":"1999","powerMw":1,"sqft":0,"type":"colocation","status":"operational","region":"continue:New Jersey"},{"name":"Hamilton Telecommunications Aurora Data Center","operator":"Hamilton Telecommunications","owner":"Nedelco, Inc.","address":"1006 12th Street, Aurora, NE 68818","city":"Aurora","state":"NE","zip":"68818","lat":41,"lng":-98,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Nebraska"},{"name":"Sequitor Edge Kearney Data Center (TechoNE Crossing)","operator":"Sequitor Edge","owner":"Shamrock Data LLC","address":"Tech One Crossing, Kearney, NE (approx. 16-acre site)","city":"Kearney","state":"NE","zip":"unknown","lat":40,"lng":-99,"yearOnline":"2027","powerMw":0,"sqft":40000,"type":"colocation","status":"planned","region":"continue:Nebraska"},{"name":"Fortitude Mining Grand Island Data Center","operator":"Fortitude Mining","owner":"Fortitude Mining","address":"Just south of Seedling Mile Rd and Museum Dr, Grand Island, NE (exact address not listed)","city":"Grand Island","state":"NE","zip":"unknown","lat":40.930822954216,"lng":-98.310856889999,"yearOnline":"2026","powerMw":0,"sqft":0,"type":"crypto","status":"under-construction","region":"continue:Nebraska"},{"name":"Colovore RN01","operator":"Colovore","owner":"King Street Capital Management (majority owner)","address":"100 Italy Drive","city":"Sparks","state":"NV","zip":"89437","lat":39.543,"lng":-119.413,"yearOnline":"2026","powerMw":20,"sqft":0,"type":"colocation","status":"under-construction","region":"continue:Nevada"},{"name":"Connect Data Centers: Reno, NV","operator":"Connect Data Centers","owner":"Oppidan Investment Company","address":"9630 N Virginia St","city":"Reno","state":"NV","zip":"89506","lat":39.618,"lng":-119.84,"yearOnline":"2027","powerMw":5,"sqft":61500,"type":"colocation","status":"under-construction","region":"continue:Nevada"},{"name":"CC Communications Data Center","operator":"CC Communications","owner":"CC Communications","address":"50 W Williams Ave","city":"Fallon","state":"NV","zip":"89406","lat":39.47519,"lng":-118.77784,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Nevada"},{"name":"Xogenous Data Center","operator":"Xogenous, Ltd.","owner":"Xogenous","address":"1175 Fairview Drive","city":"Carson City","state":"NV","zip":"89701","lat":39.16,"lng":-119.752,"yearOnline":"2011","powerMw":0,"sqft":4000,"type":"colocation","status":"operational","region":"continue:Nevada"},{"name":"ColoXchange Las Vegas","operator":"coloXchange","owner":"COLO X LLC","address":"3422 Neeham Road","city":"North Las Vegas","state":"NV","zip":"89030","lat":36.226,"lng":-115.097,"yearOnline":"unknown","powerMw":1,"sqft":6210,"type":"colocation","status":"operational","region":"continue:Nevada"},{"name":"Csquare - Las Vegas LAS12","operator":"Csquare","owner":"Switch (portfolio company of DigitalBridge and IFM Investors)","address":"7365 South Lindell Rd","city":"Las Vegas","state":"NV","zip":"89139","lat":36.067,"lng":-115.212,"yearOnline":"2015","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Nevada"},{"name":"TBE Data Center (Thomas T. Beam Engineering Complex)","operator":"UNLV Office of Information Technology (OIT)","owner":"Board of Regents of the Nevada System of Higher Education (University of Nevada, Las Vegas)","address":"4505 S. Maryland Pkwy. (Thomas T. Beam Engineering Complex)","city":"Las Vegas","state":"NV","zip":"89154","lat":36.105,"lng":-115.141,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Nevada"},{"name":"System Computing Services (SCS) Data Center","operator":"Nevada System of Higher Education – System Computing Services (SCS)","owner":"State of Nevada / NSHE Board of Regents","address":"4300 S. Maryland Pkwy.","city":"Las Vegas","state":"NV","zip":"89119","lat":36.111100092238,"lng":-115.137560990907,"yearOnline":"1991","powerMw":0,"sqft":24833,"type":"enterprise","status":"operational","region":"continue:Nevada"},{"name":"Microsoft Silver Springs","operator":"Microsoft","owner":"Microsoft","address":"1200 W Hwy 50","city":"Silver Springs","state":"NV","zip":"89429","lat":39.412,"lng":-119.254,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Nevada"},{"name":"Microsoft Fernley","operator":"Microsoft","owner":"Microsoft","address":"Victory Logistics District, Gateway Dr","city":"Fernley","state":"NV","zip":"89408","lat":39.598,"lng":-119.179,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Nevada"},{"name":"Sapphire Technology Park","operator":"Tract","owner":"Tract Capital Management, LP","address":"Sapphire Rd & Elm St","city":"Silver Springs","state":"NV","zip":"89429","lat":39.415,"lng":-119.25,"yearOnline":"unknown","powerMw":700,"sqft":0,"type":"wholesale","status":"planned","region":"continue:Nevada"},{"name":"Jet.AI Moapa Data Center Campus","operator":"Jet.AI Inc.","owner":"Choo Choo Express LLC (planned JV land contributor)","address":"unknown","city":"Moapa","state":"NV","zip":"89025","lat":36.694,"lng":-114.677,"yearOnline":"unknown","powerMw":50,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Nevada"},{"name":"TS2 Data Center","operator":"Townsite Solar 2 LLC","owner":"Skylar Energy Resources LLC (wholly owned subsidiary of the William O. Perkins III Revocable Trust)","address":"unknown","city":"Boulder City","state":"NV","zip":"89005","lat":35.978,"lng":-114.834,"yearOnline":"unknown","powerMw":170,"sqft":0,"type":"unknown","status":"planned","region":"continue:Nevada"},{"name":"DartPoints AVL01 – Asheville, NC","operator":"DartPoints","owner":"NOVA Infrastructure (majority owner of DartPoints); Astra Capital Management (minority investor)","address":"100 Technology Dr Ste C","city":"Asheville","state":"NC","zip":"28803","lat":35.488915027671,"lng":-82.557164520893,"yearOnline":"2011","powerMw":1.5,"sqft":23000,"type":"colocation","status":"operational","region":"continue:North Carolina"},{"name":"Christ Church Greensboro (former: GTT Greensboro Data Center / One Source Greensboro)","operator":"GTT Communications","owner":"Christ Church Greensboro","address":"414 N. Church Street","city":"Greensboro","state":"NC","zip":"27401","lat":36.078520125172,"lng":-79.786813479119,"yearOnline":"unknown","powerMw":1.5,"sqft":28284,"type":"colocation","status":"decommissioned","region":"continue:North Carolina"},{"name":"Lumen Greensboro 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"201 E Creekridge Road","city":"Greensboro","state":"NC","zip":"27406","lat":36.029241970333,"lng":-79.793919704997,"yearOnline":"unknown","powerMw":0,"sqft":5394,"type":"telecom","status":"operational","region":"continue:North Carolina"},{"name":"Lumen Greensboro 2","operator":"Lumen Technologies","owner":"BCORE Timber APS Owner LLC (subsidiary of Blackstone Real Estate Income Trust)","address":"496 Gallimore Dairy Rd","city":"Greensboro","state":"NC","zip":"27409","lat":36.070643864053,"lng":-79.945280266498,"yearOnline":"1997","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:North Carolina"},{"name":"Segra Winston-Salem Data Center","operator":"Segra","owner":"Cox Communications","address":"3310 Old Lexington Road","city":"Winston-Salem","state":"NC","zip":"27107","lat":36.05619711511,"lng":-80.22558729172,"yearOnline":"2002","powerMw":6,"sqft":140000,"type":"colocation","status":"operational","region":"continue:North Carolina"},{"name":"Data Journey: Catawba County Data Center (Claremont)","operator":"Data Journey","owner":"Data Journey","address":"2436 Penny Rd","city":"Claremont","state":"NC","zip":"unknown","lat":35.702040220036,"lng":-81.157118606749,"yearOnline":"2013","powerMw":0,"sqft":47500,"type":"colocation","status":"operational","region":"continue:North Carolina"},{"name":"Google Data Center - Lenoir, North Carolina","operator":"Google","owner":"Google (Alphabet Inc.)","address":"708 Lynhaven Drive","city":"Lenoir","state":"NC","zip":"unknown","lat":35.900163309174,"lng":-81.546892498798,"yearOnline":"2007","powerMw":0,"sqft":3370000,"type":"hyperscale","status":"operational","region":"continue:North Carolina"},{"name":"Google Lenoir Data Center expansion (Lenoir, NC)","operator":"Google","owner":"Google / Tapaha Dynamics, LLC","address":"914 Virginia Street and 919 Fairview Drive","city":"Lenoir","state":"NC","zip":"unknown","lat":35.888168005522,"lng":-81.556025508733,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:North Carolina"},{"name":"Marble, North Carolina Data Center (Marble 1)","operator":"Core Scientific","owner":"Core Scientific Marble LLC","address":"155 Palmer Ln","city":"Marble","state":"NC","zip":"28905","lat":35.184985016875,"lng":-83.914089773297,"yearOnline":"unknown","powerMw":117,"sqft":250000,"type":"crypto","status":"operational","region":"continue:North Carolina"},{"name":"ITS Franklin","operator":"UNC-Chapel Hill ITS Data Center Operations (DCOPS)","owner":"University of North Carolina at Chapel Hill","address":"440 West Franklin Street","city":"Chapel Hill","state":"NC","zip":"unknown","lat":35.910726543339,"lng":-79.062228760701,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:North Carolina"},{"name":"Encore Technologies MSB1","operator":"Encore Technologies","owner":"Encore Technologies (via 4620 Wesley LLC)","address":"9333 N Springboro Pike","city":"Miamisburg","state":"OH","zip":"45342","lat":39.616585330691,"lng":-84.227259841258,"yearOnline":"2022","powerMw":3,"sqft":73632,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"LightSpeed Data Center (Medina DC1)","operator":"LightSpeed Hosting, LLC","owner":"LightSpeed Hosting","address":"387 Medina Rd, Suite 200","city":"Medina","state":"OH","zip":"44256","lat":41.136072065923,"lng":-81.701581308185,"yearOnline":"unknown","powerMw":1,"sqft":0,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"Akron Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"120 N Broadway St","city":"Akron","state":"OH","zip":"44304","lat":41.087238367477,"lng":-81.513339883187,"yearOnline":"unknown","powerMw":5,"sqft":50747,"type":"telecom","status":"operational","region":"continue:Ohio"},{"name":"Cogent Cleveland 2 Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"2650 Rockefeller Avenue","city":"Cleveland","state":"OH","zip":"44115","lat":41.485326271624,"lng":-81.674557276263,"yearOnline":"unknown","powerMw":0,"sqft":5804,"type":"telecom","status":"operational","region":"continue:Ohio"},{"name":"Lumen Cleveland 1","operator":"Lumen Technologies","owner":"Lumen","address":"4000 Chester Ave","city":"Cleveland","state":"OH","zip":"unknown","lat":41.505309075023,"lng":-81.658238859663,"yearOnline":"unknown","powerMw":2.6,"sqft":40000,"type":"telecom","status":"operational","region":"continue:Ohio"},{"name":"Fusion Connect - Cleveland Data Center","operator":"Fusion Connect","owner":"K&D Group","address":"1621 Euclid Ave, 7th floor","city":"Cleveland","state":"OH","zip":"44115","lat":41.501163146059,"lng":-81.680515615063,"yearOnline":"unknown","powerMw":1,"sqft":6000,"type":"telecom","status":"operational","region":"continue:Ohio"},{"name":"CMH-02 Data Center","operator":"Aligned Data Centers","owner":"Aligned Data Centers (corporate parent: investor group led by AIP/MGX and BlackRock’s GIP acquiring 100% equity from Macquarie, announced Oct 15, 2025)","address":"47201 County Rd 273","city":"Conesville","state":"OH","zip":"43811","lat":40.192426408798,"lng":-81.87578204825,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"under-construction","region":"continue:Ohio"},{"name":"Telesystem DC-1 Ohio Data Center","operator":"Telesystem (Buckeye Telesystem, Inc.)","owner":"Block Communications, Inc.","address":"4818 Angola Road","city":"Toledo","state":"OH","zip":"unknown","lat":41.623838266879,"lng":-83.655401001798,"yearOnline":"unknown","powerMw":1,"sqft":0,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"BlueBridge Networks Mayfield Heights Data Center","operator":"BlueBridge Networks LLC","owner":"Uhrman Building Company LLC","address":"5915 Landerbrook","city":"Mayfield Heights","state":"OH","zip":"unknown","lat":41.501525649718,"lng":-81.470894146694,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"NWPTRIEBDS0 – Newport Goodwin Street Telecom Switch Facility","operator":"Verizon New England Inc.","owner":"unknown","address":"17 Goodwin Street","city":"Newport","state":"RI","zip":"unknown","lat":41.478647345965,"lng":-71.314465875912,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Rhode Island"},{"name":"US Signal OR01 Bend Data Center","operator":"US Signal Company, LLC","owner":"US Signal Company, LLC","address":"63090 Sherman Rd.","city":"Bend","state":"OR","zip":"97701","lat":44.09057702679,"lng":-121.303082226261,"yearOnline":"2011","powerMw":2,"sqft":30000,"type":"colocation","status":"operational","region":"continue:Oregon"},{"name":"US Signal OR01 Bend Data Center","operator":"US Signal","owner":"Igneo Infrastructure Partners","address":"20845 Sockeye Place","city":"Bend","state":"OR","zip":"unknown","lat":44.086525372194,"lng":-121.282839418542,"yearOnline":"unknown","powerMw":0,"sqft":30000,"type":"colocation","status":"operational","region":"continue:Oregon"},{"name":"DartPoints Greenville, SC - GSP1","operator":"DartPoints","owner":"NOVA Infrastructure (majority investor); Astra Capital Management; Orion Infrastructure Capital (OIC)","address":"78 Global Drive, Suite 100","city":"Greenville","state":"SC","zip":"29607","lat":34.807952398472,"lng":-82.344408147664,"yearOnline":"2007","powerMw":2.5,"sqft":0,"type":"colocation","status":"operational","region":"continue:South Carolina"},{"name":"DartPoints CAE01 – Columbia, SC","operator":"DartPoints","owner":"South Carolina Research Authority (USC/Columbia Innovation Center)","address":"1000 Catawba Street, Suite 180","city":"Columbia","state":"SC","zip":"29201","lat":33.988236424066,"lng":-81.030760843373,"yearOnline":"unknown","powerMw":2,"sqft":15000,"type":"colocation","status":"operational","region":"continue:South Carolina"},{"name":"DartPoints SPA01 – Spartanburg, SC","operator":"DartPoints","owner":"NOVA Infrastructure (majority investor since April 2025)","address":"5700 N Blackstock Road","city":"Spartanburg","state":"SC","zip":"29303","lat":34.99589469731,"lng":-82.035793449551,"yearOnline":"unknown","powerMw":1.3,"sqft":21400,"type":"colocation","status":"operational","region":"continue:South Carolina"},{"name":"DC BLOX Greenville Data Center","operator":"DC BLOX","owner":"Post Road Group; Bain Capital Credit","address":"33 Global Drive","city":"Greenville","state":"SC","zip":"29607","lat":34.80455191966,"lng":-82.342676840132,"yearOnline":"2022","powerMw":3,"sqft":0,"type":"colocation","status":"operational","region":"continue:South Carolina"},{"name":"DC BLOX Myrtle Beach Cable Landing Station","operator":"DC BLOX","owner":"DC BLOX","address":"1401 Howard Avenue","city":"Myrtle Beach","state":"SC","zip":"29577","lat":33.674626709362,"lng":-78.942135218971,"yearOnline":"2023","powerMw":19,"sqft":0,"type":"telecom","status":"operational","region":"continue:South Carolina"},{"name":"Google Berkeley County Campus (Moncks Corner)","operator":"Google LLC","owner":"Google (via affiliates including Maguro Enterprises LLC and Arum Composites LLC)","address":"1669 Garrott Avenue / Mount Holly Commerce Park","city":"Moncks Corner","state":"SC","zip":"unknown","lat":33.072100776033,"lng":-80.03910501252,"yearOnline":"2008","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"continue:South Carolina"},{"name":"Lumen Columbia","operator":"Lumen Technologies","owner":"Lumen","address":"1401 Main Street","city":"Columbia","state":"SC","zip":"29203","lat":34.003974752526,"lng":-81.034814824005,"yearOnline":"unknown","powerMw":0,"sqft":25936,"type":"telecom","status":"operational","region":"continue:South Carolina"},{"name":"Segra Columbia","operator":"Segra","owner":"Cox Communications","address":"1500 Hampton Street","city":"Columbia","state":"SC","zip":"29201","lat":34.006737451068,"lng":-81.030426211051,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:South Carolina"},{"name":"ATOS Blythewood Data Center","operator":"Atos Group","owner":"Mapletree Industrial Trust","address":"10309 Wilson Blvd","city":"Blythewood","state":"SC","zip":"29016","lat":34.17891368706,"lng":-80.969427181917,"yearOnline":"unknown","powerMw":0,"sqft":64638,"type":"enterprise","status":"operational","region":"continue:South Carolina"},{"name":"Terra Nexus 771 Park Road Data Center Site","operator":"Terra Nexus Ventures","owner":"Terra Nexus Ventures / Sage Equity","address":"771 Park Road / 771 State Road S-28-331","city":"Camden","state":"SC","zip":"29020","lat":34.291527188429,"lng":-80.530455759768,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:South Carolina"},{"name":"LightHouse Data Centers 300 Jones Road (Project Lighthouse), Spartanburg","operator":"LightHouse Data Centers","owner":"300 Jones Road Associates LLC (affiliate of LightHouse Data Centers / The Lightstone Group)","address":"300 Jones Road","city":"Spartanburg","state":"SC","zip":"29307","lat":35.019168292086,"lng":-81.887440750621,"yearOnline":"unknown","powerMw":60,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:South Carolina"},{"name":"Bitdeer Tennessee Data Center","operator":"Bitdeer Technologies Group","owner":"Bitdeer Technologies Group","address":"5101 S National Dr","city":"Knoxville","state":"TN","zip":"37914","lat":35.941271893326,"lng":-83.836065860919,"yearOnline":"2020","powerMw":86,"sqft":77930,"type":"crypto","status":"operational","region":"continue:Tennessee"},{"name":"CleanSpark Lenoir City","operator":"CleanSpark, Inc.","owner":"CleanSpark, Inc.","address":"14250 Hickory Creek Rd","city":"Lenoir City","state":"TN","zip":"37771","lat":35.872991035494,"lng":-84.243377325097,"yearOnline":"2022","powerMw":20,"sqft":0,"type":"crypto","status":"operational","region":"continue:Tennessee"},{"name":"H5 Data Centers Quincy I","operator":"H5 Data Centers","owner":"H5 Data Centers (with Novacap as JV partner since 2025)","address":"1711 M St NE","city":"Quincy","state":"WA","zip":"98848","lat":47.252471,"lng":-119.819721,"yearOnline":"2009","powerMw":40,"sqft":240000,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"H5 Data Centers Quincy II","operator":"H5 Data Centers","owner":"H5 Data Centers","address":"1500 M Street NE","city":"Quincy","state":"WA","zip":"98848","lat":47.248493365046,"lng":-119.818233560006,"yearOnline":"2007","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"Quincy (WA1) Data Center Campus","operator":"Vantage Data Centers","owner":"DigitalBridge and Silver Lake","address":"2101 M Street NE","city":"Quincy","state":"WA","zip":"98848","lat":47.248500681314,"lng":-119.815393796841,"yearOnline":"2013","powerMw":89,"sqft":775000,"type":"hyperscale","status":"operational","region":"continue:Washington"},{"name":"SDC Quincy","operator":"Sabey Data Centers","owner":"Sabey Data Center Properties LLC (Sabey Corporation)","address":"2200 M St NE","city":"Quincy","state":"WA","zip":"98848","lat":47.248620102542,"lng":-119.814735423957,"yearOnline":"2011","powerMw":123,"sqft":525000,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"SDC Columbia","operator":"Sabey Data Centers","owner":"Sabey Data Center Properties LLC (backed by Sabey Corporation and National Real Estate Advisors’ National Data Center Fund; investor: Bouwinvest)","address":"4405 Grant Rd","city":"East Wenatchee","state":"WA","zip":"98802","lat":47.405925867591,"lng":-120.193242283843,"yearOnline":"unknown","powerMw":70,"sqft":438000,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"TierPoint SPO01-02 (Spokane SPO01/02)","operator":"TierPoint","owner":"TierPoint","address":"23403 E. Mission Avenue","city":"Liberty Lake","state":"WA","zip":"99019","lat":47.671350110832,"lng":-117.091010487863,"yearOnline":"unknown","powerMw":5,"sqft":32000,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"TierPoint Spokane SPO2 (also referenced as SPO03), 23017 E. Mission Avenue, Liberty Lake, WA 99019","operator":"TierPoint","owner":"LD Acquisition Company 16 LLC","address":"23017 E. Mission Avenue","city":"Liberty Lake","state":"WA","zip":"99019","lat":47.671341111328,"lng":-117.095710405225,"yearOnline":"2011","powerMw":5,"sqft":16500,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"Cogent Data Center - Spokane","operator":"Cogent Communications","owner":"Cogent Communications","address":"4725 South Spotted Rd","city":"Spokane","state":"WA","zip":"99224","lat":47.610884270621,"lng":-117.518597951914,"yearOnline":"unknown","powerMw":0,"sqft":3829,"type":"telecom","status":"operational","region":"continue:Washington"},{"name":"Yakima County Secure Data Center","operator":"Yakima County Technology Services","owner":"Yakima County","address":"128 North 2nd Street","city":"Yakima","state":"WA","zip":"98901","lat":46.604214895108,"lng":-120.505473988395,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Washington"},{"name":"Innova Solutions Spokane Data Center","operator":"Innova Solutions","owner":"CRACKER BOX, LLC","address":"304 West Pacific Avenue, Suite 210","city":"Spokane","state":"WA","zip":"unknown","lat":47.655159146346,"lng":-117.416610342663,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"Lunavi Bellingham Data Center","operator":"Lunavi","owner":"Lunavi","address":"851 Coho Way, Suite 206","city":"Bellingham","state":"WA","zip":"98225","lat":48.758899020363,"lng":-122.50321392873,"yearOnline":"unknown","powerMw":1.5,"sqft":5000,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"CSSNW Bellingham","operator":"CSS Integration & Communications, Inc. (CSS Communications/CSSNW)","owner":"CSS Communications / CSSNW","address":"1911 C St, Suite B","city":"Bellingham","state":"WA","zip":"98225","lat":48.756902836284,"lng":-122.48078469912,"yearOnline":"unknown","powerMw":3,"sqft":3155,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"SoVerNet Burlington","operator":"FirstLight Fiber","owner":"Antin Infrastructure Partners","address":"110 Cherry St., Burlington, VT 05401","city":"Burlington","state":"VT","zip":"05401","lat":44.479557,"lng":-73.213218,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Vermont"},{"name":"WIN - Eau Claire Data Center","operator":"WIN Technology","owner":"WIN Technology","address":"800 Wisconsin Street","city":"Eau Claire","state":"WI","zip":"54703","lat":44.817,"lng":-91.503,"yearOnline":"2007","powerMw":1,"sqft":4000,"type":"colocation","status":"operational","region":"continue:Wisconsin"},{"name":"New Era Technology - Appleton","operator":"New Era Technology","owner":"New Era Technology","address":"2201 E Enterprise Avenue","city":"Appleton","state":"WI","zip":"54913","lat":44.27,"lng":-88.38,"yearOnline":"unknown","powerMw":0,"sqft":66000,"type":"colocation","status":"operational","region":"continue:Wisconsin"},{"name":"New Era Technology - Milwaukee","operator":"New Era Technology","owner":"Innovation Point II LLC","address":"10400 W Innovation Drive","city":"Milwaukee","state":"WI","zip":"53226","lat":43.044,"lng":-88.048,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Wisconsin"},{"name":"HBS Little Chute","operator":"Heartland Business Systems, LLC","owner":"Heartland Business Systems","address":"1700 Stephen Street","city":"Little Chute","state":"WI","zip":"54140","lat":44.279,"lng":-88.32,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Wisconsin"},{"name":"EdgeConneX NOR01 / Norfolk Data Center","operator":"EdgeConneX","owner":"EdgeConneX","address":"3800 Village Ave, Suite C","city":"Norfolk","state":"VA","zip":"23502","lat":36.86085702994,"lng":-76.236438580513,"yearOnline":"2014","powerMw":0.75,"sqft":19619,"type":"edge","status":"operational","region":"continue:Virginia"},{"name":"NetTek Data Center","operator":"NetTek, LLC","owner":"Fair Holdings LLC","address":"2415 Almeda Ave","city":"Norfolk","state":"VA","zip":"23513","lat":36.878301269814,"lng":-76.215716673331,"yearOnline":"unknown","powerMw":0,"sqft":8000,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Globalinx Virginia Beach Data Center Campus – Phase I","operator":"Globalinx Data Centers LLC","owner":"Globalinx Data Centers","address":"1632 Corporate Landing Parkway","city":"Virginia Beach","state":"VA","zip":"unknown","lat":36.78469151531,"lng":-76.008998041316,"yearOnline":"unknown","powerMw":30,"sqft":10750,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Telxius Virginia Beach Cable Landing Station (CLS)","operator":"Telxius","owner":"Telxius","address":"1900 Corporate Landing Pkwy","city":"Virginia Beach","state":"VA","zip":"23454","lat":36.777235639419,"lng":-76.008033511909,"yearOnline":"2018","powerMw":30,"sqft":10750,"type":"telecom","status":"operational","region":"continue:Virginia"},{"name":"EdgeConneX RIC01","operator":"EdgeConneX","owner":"North Run LH LLC","address":"1450 E Parham Road, Suite 1450","city":"Richmond","state":"VA","zip":"23228","lat":37.638564822612,"lng":-77.468207790279,"yearOnline":"unknown","powerMw":1.5,"sqft":16279,"type":"edge","status":"operational","region":"continue:Virginia"},{"name":"Flexential Richmond Data Center","operator":"Flexential","owner":"Flexential","address":"8851 Park Central Dr b","city":"Richmond","state":"VA","zip":"23227","lat":37.647534855221,"lng":-77.440958916144,"yearOnline":"unknown","powerMw":2.8,"sqft":28594,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Brush Mountain Data Center","operator":"Advanced Logic Industries (ALI)","owner":"unknown","address":"2200 Kraft Dr SW, Suite 2025","city":"Blacksburg","state":"VA","zip":"24060","lat":37.1991210323,"lng":-80.407197742124,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"UVA Data Center","operator":"University of Virginia","owner":"University of Virginia","address":"2476 Old Ivy Rd - LDG DK","city":"Charlottesville","state":"VA","zip":"unknown","lat":38.049328970809,"lng":-78.523490818925,"yearOnline":"2010","powerMw":1.5,"sqft":12500,"type":"enterprise","status":"operational","region":"continue:Virginia"},{"name":"VCU Technology Operations Center","operator":"Virginia Commonwealth University Technology Services","owner":"VCU Real Estate Foundation","address":"707 West Broad Street, 3rd Floor","city":"Richmond","state":"VA","zip":"23220","lat":37.549505870522,"lng":-77.448647368478,"yearOnline":"2024","powerMw":0,"sqft":28000,"type":"enterprise","status":"operational","region":"continue:Virginia"},{"name":"Netrality Houston Data Center, 1301 Fannin","operator":"Netrality Data Centers","owner":"1301 Fannin Owner, LP (c/o Amerimar 1301 Fannin Mgmt Co., LLC); Netrality (acquired 2015); backed by Macquarie Asset Management","address":"1301 Fannin St., Suite 100","city":"Houston","state":"TX","zip":"77002","lat":29.754104123651,"lng":-95.365803045271,"yearOnline":"unknown","powerMw":26,"sqft":784143,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"DataBank HOU1 - Westway Park I Data Center","operator":"DataBank","owner":"DataBank Holdings Ltd.","address":"5150 Westway Park Blvd","city":"Houston","state":"TX","zip":"77041","lat":29.844016744878,"lng":-95.557305216928,"yearOnline":"2009","powerMw":15.6,"sqft":0,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"(HOU2) Westway Park II Data Center","operator":"DataBank","owner":"DataBank","address":"5170 Westway Park Blvd","city":"Houston","state":"TX","zip":"77041","lat":29.844463563406,"lng":-95.557301726138,"yearOnline":"unknown","powerMw":9,"sqft":160000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"DataBank HOU3 - Westway Park III Data Center","operator":"DataBank","owner":"Investor consortium including Swiss Life Asset Managers, EDF Invest, AustralianSuper, Nuveen/TIAA, TJC LP, Northleaf, IMCO, CBRE Caledon, Ardian, and DigitalBridge (~7.8%).","address":"11003 Corporate Centre Dr.","city":"Houston","state":"TX","zip":"77041","lat":29.841088314555,"lng":-95.5632430718,"yearOnline":"unknown","powerMw":6.5,"sqft":162000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"DataBank HOU5 - Houston Galleria Data Center","operator":"DataBank","owner":"DataBank","address":"4201 Southwest Freeway","city":"Houston","state":"TX","zip":"77027","lat":29.728650926659,"lng":-95.444337164216,"yearOnline":"unknown","powerMw":5.25,"sqft":112000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"TRG Datacenters HOU1","operator":"TRG Datacenters","owner":"Tallvine Partners","address":"2626 Spring Cypress Road","city":"Spring","state":"TX","zip":"77388","lat":30.066026434779,"lng":-95.455736245303,"yearOnline":"2018","powerMw":6,"sqft":45000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"FIBERTOWN Houston Data Center","operator":"FIBERTOWN","owner":"FIBERTOWN","address":"12031 North Freeway","city":"Houston","state":"TX","zip":"77067","lat":29.943088695285,"lng":-95.415423969808,"yearOnline":"2011","powerMw":6,"sqft":30000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"1001 Texas Data Center","operator":"1001 Texas","owner":"1001 Texas","address":"1001 Texas Ave","city":"Houston","state":"TX","zip":"77002","lat":29.759993216642,"lng":-95.362442948085,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Data Foundry 01 (Texas 1)","operator":"Data Foundry (a subsidiary of Switch)","owner":"DigitalBridge and IFM Investors (via Switch)","address":"4100 Smith School Road","city":"Austin","state":"TX","zip":"78744","lat":30.197766393958,"lng":-97.71301227238,"yearOnline":"unknown","powerMw":24,"sqft":130000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"SDC Austin","operator":"Sabey Data Centers","owner":"Sabey Data Center Properties LLC","address":"1300 Louis Henna Blvd","city":"Round Rock","state":"TX","zip":"78664","lat":30.48575752775,"lng":-97.650967159813,"yearOnline":"2024","powerMw":84,"sqft":603300,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"EdgeConneX AUS01","operator":"EdgeConneX","owner":"DFW33220N, LLC","address":"6752 FM535, Cedar Creek, TX 78612","city":"Cedar Creek","state":"TX","zip":"78612","lat":30.139437958002,"lng":-97.565051226859,"yearOnline":"unknown","powerMw":96,"sqft":0,"type":"hyperscale","status":"under-construction","region":"continue:Texas"},{"name":"Colovore Hutto / Project Raptor","operator":"Colovore","owner":"Velocis Hutto Innovation Phase 1, LP","address":"2351 Innovation Blvd","city":"Hutto","state":"TX","zip":"78634","lat":30.547095408563,"lng":-97.572827769315,"yearOnline":"2026","powerMw":0,"sqft":193000,"type":"colocation","status":"under-construction","region":"continue:Texas"},{"name":"Lumen Austin 2 Data Center","operator":"Lumen Technologies","owner":"Lumen","address":"1825-A Kramer Lane","city":"Austin","state":"TX","zip":"78758","lat":30.386873930732,"lng":-97.706675700779,"yearOnline":"unknown","powerMw":0,"sqft":44984,"type":"telecom","status":"operational","region":"continue:Texas"},{"name":"Lumen El Paso 1 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"501 West Overland Avenue","city":"El Paso","state":"TX","zip":"unknown","lat":31.755770727272,"lng":-106.492887539608,"yearOnline":"unknown","powerMw":0,"sqft":20000,"type":"telecom","status":"operational","region":"continue:Texas"},{"name":"CyrusOne SAT4","operator":"CyrusOne","owner":"KKR and Global Infrastructure Partners","address":"9655 Raba Drive","city":"San Antonio","state":"TX","zip":"78251","lat":29.470655083949,"lng":-98.669557665889,"yearOnline":"2017","powerMw":36,"sqft":295785,"type":"wholesale","status":"operational","region":"continue:Texas"},{"name":"CloudHQ SAT-1","operator":"CloudHQ","owner":"CloudHQ / Fateh Family Office (FFO)","address":"15355 Lambda Drive","city":"San Antonio","state":"TX","zip":"78245","lat":29.416199849696,"lng":-98.801481963585,"yearOnline":"unknown","powerMw":96,"sqft":432800,"type":"hyperscale","status":"under-construction","region":"continue:Texas"},{"name":"Connect Temple","operator":"Connect Data Centers (Oppidan)","owner":"Oppidan Investment Company","address":"2325 Eberhardt Rd","city":"Temple","state":"TX","zip":"76504","lat":31.126053978386,"lng":-97.359815756944,"yearOnline":"2026","powerMw":5,"sqft":61554,"type":"colocation","status":"under-construction","region":"continue:Texas"},{"name":"Lumen Corpus Christi 1 Data Center","operator":"Lumen Technologies (Lumen)","owner":"Lumen","address":"4901 Westway Drive","city":"Corpus Christi","state":"TX","zip":"unknown","lat":27.793499061978,"lng":-97.45202691707,"yearOnline":"unknown","powerMw":0,"sqft":4800,"type":"telecom","status":"operational","region":"continue:Texas"},{"name":"Lumen Lubbock 1 Data Center","operator":"Lumen Technologies","owner":"Lumen","address":"1502 Avenue North","city":"Lubbock","state":"TX","zip":"unknown","lat":33.581620519099,"lng":-101.851390814761,"yearOnline":"unknown","powerMw":0,"sqft":5000,"type":"telecom","status":"operational","region":"continue:Texas"},{"name":"Victoria Edge Data Center","operator":"Duos Edge AI, Inc.","owner":"Duos Edge AI, Inc.","address":"1905 Leary Ln","city":"Victoria","state":"TX","zip":"77901","lat":28.836030270807,"lng":-96.986251687265,"yearOnline":"2026","powerMw":0,"sqft":715,"type":"edge","status":"operational","region":"continue:Texas"},{"name":"AT&T Regional Data Center","operator":"AT&T South","owner":"AT&T South","address":"1876-1890 Data Drive","city":"Hoover","state":"AL","zip":"unknown","lat":33.370906340364,"lng":-86.79931383339,"yearOnline":"1976","powerMw":0,"sqft":920000,"type":"telecom","status":"operational","region":"continue:Alabama"},{"name":"C Spire Birmingham Data Center","operator":"C Spire","owner":"Telepak Networks, Inc. (C Spire affiliate)","address":"201 Summit Parkway","city":"Birmingham","state":"AL","zip":"unknown","lat":33.466317,"lng":-86.831247,"yearOnline":"unknown","powerMw":0,"sqft":31850,"type":"colocation","status":"operational","region":"continue:Alabama"},{"name":"UAB Technology Innovation Center","operator":"University of Alabama at Birmingham (UAB IT)","owner":"The Board of Trustees of The University of Alabama System / University of Alabama at Birmingham","address":"1701 9th Avenue South","city":"Birmingham","state":"AL","zip":"35205","lat":33.501325664213,"lng":-86.802301817103,"yearOnline":"2021","powerMw":0,"sqft":37500,"type":"enterprise","status":"operational","region":"continue:Alabama"},{"name":"Nebius Birmingham AI Factory (DCFL BHM01)","operator":"Nebius Group N.V.","owner":"Alabama ADC Holdings LLC (Nebius affiliate)","address":"201-260 Milan Parkway","city":"Birmingham","state":"AL","zip":"unknown","lat":33.429107022502,"lng":-86.885201603097,"yearOnline":"unknown","powerMw":300,"sqft":0,"type":"hyperscale","status":"under-construction","region":"continue:Alabama"},{"name":"Evocative Emeryville Data Center (OAK1)","operator":"Evocative","owner":"Evocative","address":"1400 65th Street","city":"Emeryville","state":"CA","zip":"94608","lat":37.846829316595,"lng":-122.291596547211,"yearOnline":"unknown","powerMw":0.6,"sqft":15042,"type":"colocation","status":"operational","region":"continue:California"},{"name":"Fortress SF1: San Francisco","operator":"Fortress Data Centers","owner":"Harvest Properties","address":"274 Brannan Street","city":"San Francisco","state":"CA","zip":"94107","lat":37.782453798702,"lng":-122.391408810473,"yearOnline":"2015","powerMw":3,"sqft":105325,"type":"colocation","status":"operational","region":"continue:California"},{"name":"Csquare SFO2-A Santa Clara Data Center","operator":"Csquare","owner":"Brookfield Infrastructure Partners","address":"4700 Old Ironsides Drive","city":"Santa Clara","state":"CA","zip":"95054","lat":37.398030678077,"lng":-121.979570852753,"yearOnline":"unknown","powerMw":6,"sqft":90139,"type":"colocation","status":"operational","region":"continue:California"},{"name":"Crown Castle Professional Park Boulevard Data Center","operator":"Zayo Group","owner":"Crown Castle","address":"20761 Professional Park Boulevard","city":"Georgetown","state":"DE","zip":"19947","lat":38.703416348622,"lng":-75.401317023253,"yearOnline":"unknown","powerMw":0,"sqft":1980,"type":"colocation","status":"operational","region":"continue:Delaware"},{"name":"St. Georges Business Park & Lighthouse Farms (Frightland site)","operator":"unknown","owner":"Parkway Gravel, Inc.","address":"309 Port Penn Road","city":"Middletown","state":"DE","zip":"19709","lat":39.5277791,"lng":-75.6474869,"yearOnline":"unknown","powerMw":0,"sqft":3241000,"type":"wholesale","status":"planned","region":"continue:Delaware"},{"name":"CAPS Shelton","operator":"Computer Alternative Processing Sites, Inc. (CAPS)","owner":"R.D. Scinto, Inc.","address":"2 Enterprise Drive","city":"Shelton","state":"CT","zip":"06484","lat":41.278692133837,"lng":-73.123284415338,"yearOnline":"1995","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Connecticut"},{"name":"SteelVault OX-1 / SteelVault Oxford Data Center","operator":"SteelVault Data Centers","owner":"SteelVault Data Centers","address":"66 Hawley Rd","city":"Oxford","state":"CT","zip":"06478","lat":41.46691068602,"lng":-73.15403407288,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Connecticut"},{"name":"Gotspace Norwich - Building 1","operator":"Gotspace Data Partners","owner":"Gotspace Data Partners","address":"334 Plain Hill Rd","city":"Norwich","state":"CT","zip":"06360","lat":41.583846574887,"lng":-72.103181244273,"yearOnline":"unknown","powerMw":32,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Connecticut"},{"name":"ColoBarn Phoenix Colocation & Data Center","operator":"ColoBarn","owner":"ColoBarn","address":"8905 S Beck Avenue, Tempe, AZ 85284","city":"Tempe","state":"AZ","zip":"85284","lat":33.332651664196,"lng":-111.958538935375,"yearOnline":"unknown","powerMw":2,"sqft":28000,"type":"colocation","status":"operational","region":"continue:Arizona"},{"name":"PhoenixNAP West University","operator":"phoenixNAP","owner":"phoenixNAP","address":"2353 W University Drive, Tempe, AZ 85281","city":"Tempe","state":"AZ","zip":"85281","lat":33.421873839884,"lng":-111.974031967877,"yearOnline":"unknown","powerMw":6.5,"sqft":100000,"type":"colocation","status":"operational","region":"continue:Arizona"},{"name":"NexusTek Phoenix Data Center","operator":"NexusTek","owner":"Rancho Sierra Vista Holdings LLC","address":"1919 W Lone Cactus Dr, Phoenix, AZ 85027","city":"Phoenix","state":"AZ","zip":"85027","lat":33.680079557172,"lng":-112.101494605645,"yearOnline":"unknown","powerMw":0,"sqft":16000,"type":"colocation","status":"operational","region":"continue:Arizona"},{"name":"Research Data Center (RDC)","operator":"University Information Technology Services (UITS), University of Arizona","owner":"University of Arizona","address":"1077 North Highland Avenue, Tucson, AZ 85721","city":"Tucson","state":"AZ","zip":"85721","lat":32.235687140075,"lng":-110.950893083969,"yearOnline":"unknown","powerMw":1.192,"sqft":1200,"type":"enterprise","status":"operational","region":"continue:Arizona"},{"name":"Phoenix Internet","operator":"Phoenix Internet (by Wi-Fiber)","owner":"Phoenix Internet","address":"2922 W Clarendon Avenue, Phoenix, AZ 85017","city":"Phoenix","state":"AZ","zip":"85017","lat":33.492292175214,"lng":-112.123017007153,"yearOnline":"unknown","powerMw":0,"sqft":14515,"type":"colocation","status":"operational","region":"continue:Arizona"},{"name":"TierPoint Newton Data Center","operator":"TierPoint","owner":"TierPoint","address":"403 West 4th St. N","city":"Newton","state":"IA","zip":"50208","lat":41.703071110191,"lng":-93.057529361474,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Iowa"},{"name":"Verizon Business - Standard DC Pleasant Hill","operator":"Verizon Business","owner":"Verizon Business / MCI","address":"4500 Carlisle Rd","city":"Pleasant Hill","state":"IA","zip":"50327","lat":41.5576338408,"lng":-93.526289725886,"yearOnline":"1990","powerMw":0,"sqft":27608,"type":"telecom","status":"operational","region":"continue:Iowa"},{"name":"Altoona Technology Park","operator":"Tract","owner":"Tract (via IALCO Polk County LLC, IALCO Polk County Two LLC, and IALCO Polk County Three LLC)","address":"NE 46th St & NE 62nd Ave","city":"Altoona","state":"IA","zip":"50009","lat":41.673106529227,"lng":-93.522336087699,"yearOnline":"unknown","powerMw":1000,"sqft":0,"type":"wholesale","status":"planned","region":"continue:Iowa"},{"name":"Windstream: Lafayette, IN Data Center","operator":"Windstream","owner":"Windstream","address":"2304 Brothers Drive, Lafayette, IN","city":"Lafayette","state":"IN","zip":"unknown","lat":40.39420751957,"lng":-86.864853179295,"yearOnline":"unknown","powerMw":0,"sqft":1500,"type":"telecom","status":"operational","region":"continue:Indiana"},{"name":"Michigan City Data Center (Project Maize)","operator":"Google","owner":"Google","address":"402 Royal Rd, Michigan City, IN","city":"Michigan City","state":"IN","zip":"unknown","lat":41.717085296979,"lng":-86.840727068621,"yearOnline":"2027 (expected)","powerMw":0,"sqft":400827,"type":"hyperscale","status":"under-construction","region":"continue:Indiana"},{"name":"Indiana Data Center (INDDC)","operator":"Indiana Data Center","owner":"Indiana Data Center, LLC","address":"620 Coliseum Blvd W #1298, Fort Wayne, IN 46808","city":"Fort Wayne","state":"IN","zip":"46808","lat":41.11793978761,"lng":-85.151379322102,"yearOnline":"2001","powerMw":0,"sqft":27062,"type":"colocation","status":"operational","region":"continue:Indiana"},{"name":"Quindaro Data Center Campus","operator":"PowerTransitions","owner":"PowerTransitions","address":"3601 N 12th Street","city":"Kansas City","state":"KS","zip":"66104-5102","lat":39.148740812576,"lng":-94.641388863452,"yearOnline":"2027","powerMw":300,"sqft":1524000,"type":"wholesale","status":"planned","region":"continue:Kansas"},{"name":"Stack: Resilient Tech Park Data Center Campus","operator":"STACK Infrastructure","owner":"STACK Infrastructure; pre-development landowner: Franks Investment Company, L.L.C.","address":"7340 Greenwood Road, Shreveport, LA","city":"Shreveport","state":"LA","zip":"unknown","lat":32.447749255941,"lng":-93.903141251538,"yearOnline":"unknown","powerMw":0,"sqft":2800000,"type":"hyperscale","status":"planned","region":"continue:Louisiana"},{"name":"Lumen Baltimore 4 Data Center","operator":"Lumen Technologies","owner":"The Cordish Companies","address":"601 East Pratt Street","city":"Baltimore","state":"MD","zip":"21202","lat":39.286684451254,"lng":-76.607721382318,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Maryland"},{"name":"Mayo Clinic Rochester – 4710 Building","operator":"Epic Hosting LLC (Epic Systems)","owner":"EPIC HOSTING LLC","address":"4710 W Circle Dr NW","city":"Rochester","state":"MN","zip":"55901","lat":44.069070996647,"lng":-92.523544753844,"yearOnline":"2012","powerMw":0,"sqft":77176,"type":"enterprise","status":"operational","region":"continue:Minnesota"},{"name":"Farmington Technology Park (also listed as Tract: Farmington Campus)","operator":"Tract","owner":"MNLCO Farmington, LLC and MNLCO Farmington Two, LLC (Tract affiliates)","address":"2830 220th St W","city":"Farmington","state":"MN","zip":"55024","lat":44.630560535786,"lng":-93.121322634691,"yearOnline":"unknown","powerMw":708,"sqft":2534200,"type":"hyperscale","status":"planned","region":"continue:Minnesota"},{"name":"L.L. Bean, Inc. Stonewood Data Center","operator":"L.L. Bean, Inc.","owner":"L.L.Bean, Inc.","address":"40 Stonewood Dr, Freeport, ME 04032","city":"Freeport","state":"ME","zip":"04032","lat":43.826135103159,"lng":-70.132344928346,"yearOnline":"unknown","powerMw":0,"sqft":18000,"type":"enterprise","status":"operational","region":"continue:Maine"},{"name":"Peregrine Networks Dover Data Center","operator":"Peregrine Networks","owner":"unknown","address":"383 Central Avenue, Dover, NH 03820","city":"Dover","state":"NH","zip":"03820","lat":43.196289,"lng":-70.873178,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:New Hampshire"},{"name":"NDUS/UND Information Technology Data Center","operator":"NDUS Core Technology Services (CTS)","owner":"North Dakota University System / University of North Dakota","address":"4349 James Ray Dr, Grand Forks, ND 58202","city":"Grand Forks","state":"ND","zip":"58202","lat":47.921424824172,"lng":-97.0907539417,"yearOnline":"2013","powerMw":0,"sqft":40000,"type":"enterprise","status":"operational","region":"continue:North Dakota"},{"name":"Center for Computationally Assisted Science and Technology (CCAST)","operator":"North Dakota State University — Center for Computationally Assisted Science and Technology (CCAST)","owner":"North Dakota State University","address":"Research 2 Building, Room 220, 1805 NDSU Research Park Drive N, Fargo, ND 58102","city":"Fargo","state":"ND","zip":"58102","lat":46.902255050101,"lng":-96.806539745877,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:North Dakota"},{"name":"Holland Computing Center – Peter Kiewit Institute (PKI) machine room","operator":"Holland Computing Center / University of Nebraska","owner":"University of Nebraska","address":"152 PKI, 1110 S 67th St","city":"Omaha","state":"NE","zip":"68182","lat":41.248186367875,"lng":-96.01560215151,"yearOnline":"unknown","powerMw":0.5,"sqft":1800,"type":"enterprise","status":"operational","region":"continue:Nebraska"},{"name":"Sandia National Laboratories Building 725 East (725E) Data Center","operator":"National Technology & Engineering Solutions of Sandia, LLC (NTESS) / Sandia National Laboratories","owner":"U.S. Department of Energy / National Nuclear Security Administration (DOE/NNSA)","address":"1515 Eubank SE","city":"Albuquerque","state":"NM","zip":"87123","lat":35.064619874133,"lng":-106.532598822567,"yearOnline":"2018","powerMw":0,"sqft":15000,"type":"enterprise","status":"operational","region":"continue:New Mexico"},{"name":"Compass Statesville Data Center","operator":"Compass Datacenters","owner":"Stamey Land Company","address":"255 Stamey Farm Road","city":"Statesville","state":"NC","zip":"28677","lat":35.777179235781,"lng":-80.970834960922,"yearOnline":"2028","powerMw":500,"sqft":1350000,"type":"hyperscale","status":"planned","region":"continue:North Carolina"},{"name":"Cogent Edge Data Center - Tulsa","operator":"Cogent Communications","owner":"Cogent Communications","address":"6800 South 65th West Avenue, Tulsa, OK 74131","city":"Tulsa","state":"OK","zip":"74131","lat":36.069894604864,"lng":-96.065488864833,"yearOnline":"unknown","powerMw":0,"sqft":3500,"type":"telecom","status":"operational","region":"continue:Oklahoma"},{"name":"Data Center West - Eugene Data Center","operator":"Data Center West, Inc.","owner":"Data Center West Inc.","address":"800 Willamette Street","city":"Eugene","state":"OR","zip":"97401","lat":44.05095936825,"lng":-123.092817963298,"yearOnline":"unknown","powerMw":0,"sqft":500,"type":"colocation","status":"operational","region":"continue:Oregon"},{"name":"Data Center West - Medford","operator":"Data Center West, Inc.","owner":"Data Center West Inc.","address":"739 Welch Drive","city":"Medford","state":"OR","zip":"97501","lat":42.331856843554,"lng":-122.880202042237,"yearOnline":"2006","powerMw":0,"sqft":2000,"type":"colocation","status":"operational","region":"continue:Oregon"},{"name":"IP Services - Eugene Datacenter","operator":"IP Services","owner":"IP Services","address":"2896 Crescent Ave, Suite #201","city":"Eugene","state":"OR","zip":"97408","lat":44.091981362572,"lng":-123.060216672242,"yearOnline":"2001","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Oregon"},{"name":"Oregon State Data Center (Enterprise Information Services Data Center Services)","operator":"State of Oregon Enterprise Information Services (EIS) Data Center Services (DCS)","owner":"State of Oregon, Department of Administrative Services (DAS)","address":"550 Airport RD SE, Suite C","city":"Salem","state":"OR","zip":"97301","lat":44.92586135556,"lng":-123.003831050393,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Oregon"},{"name":"Lumen Eugene 1","operator":"Lumen Technologies","owner":"Lumen","address":"1745 W. 5th Avenue","city":"Eugene","state":"OR","zip":"97402","lat":44.054421962018,"lng":-123.119270476757,"yearOnline":"unknown","powerMw":0,"sqft":7940,"type":"colocation","status":"operational","region":"continue:Oregon"},{"name":"Kattare Corvallis Data Center","operator":"Kattare Inc.","owner":"Kattare Inc.","address":"5010 SW Hout St","city":"Corvallis","state":"OR","zip":"unknown","lat":44.51103777255,"lng":-123.276442865671,"yearOnline":"1997","powerMw":0,"sqft":3000,"type":"colocation","status":"operational","region":"continue:Oregon"},{"name":"Verizon East Providence North Broadway Wire Center (CLLI: EPRVRINB)","operator":"Verizon New England Inc.","owner":"unknown","address":"789 N Broadway","city":"East Providence","state":"RI","zip":"unknown","lat":41.822085270571,"lng":-71.367513691742,"yearOnline":"unknown","powerMw":0,"sqft":14789,"type":"telecom","status":"operational","region":"continue:Rhode Island"},{"name":"Verizon Cranston Central Office (wire center CNTNRIPH)","operator":"Verizon New England Inc. (Verizon)","owner":"Verizon New England Inc.","address":"56 Phenix Ave","city":"Cranston","state":"RI","zip":"02920","lat":41.78175714473,"lng":-71.467582312133,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Rhode Island"},{"name":"Warren central office / wire center (CLLI WRRNRIEVDS1) — Verizon New England","operator":"Verizon New England Inc. d/b/a Verizon Rhode Island","owner":"unknown","address":"37 Everett St","city":"Warren","state":"RI","zip":"02885","lat":41.73038564062,"lng":-71.272294448105,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Rhode Island"},{"name":"North Providence Mineral Spring Wire Center (CLLI: NPRVRIMSDS1)","operator":"Verizon New England Inc. (Verizon Communications)","owner":"unknown","address":"2194 Mineral Springs Ave","city":"North Providence","state":"RI","zip":"02911","lat":41.858410010035,"lng":-71.481550800058,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Rhode Island"},{"name":"Tech Vault Vermont / Tech Vault South Burlington","operator":"Tech Vault, Inc.","owner":"Lumen Technologies","address":"102 Kimball Avenue, South Burlington, VT 05403","city":"South Burlington","state":"VT","zip":"05403","lat":44.4569675,"lng":-73.1480635,"yearOnline":"unknown","powerMw":3,"sqft":39000,"type":"telecom","status":"operational","region":"continue:Vermont"},{"name":"Technology Park (Data Center)","operator":"University of Vermont (Enterprise Technology Services / Vermont Advanced Computing Center)","owner":"Technology Park Partners, LLC","address":"30 Community Drive, South Burlington, VT","city":"South Burlington","state":"VT","zip":"unknown","lat":44.453862657743,"lng":-73.146148051654,"yearOnline":"2005","powerMw":0,"sqft":4897,"type":"enterprise","status":"operational","region":"continue:Vermont"},{"name":"DC BLOX Nashville (Grassmere Park)","operator":"DC BLOX","owner":"DC BLOX","address":"648 Grassmere Park","city":"Nashville","state":"TN","zip":"37211","lat":36.086562453356,"lng":-86.748826053545,"yearOnline":"unknown","powerMw":0,"sqft":69220,"type":"colocation","status":"planned","region":"continue:Tennessee"},{"name":"Lumen El Paso 2 Data Center","operator":"Lumen Technologies","owner":"Lumen","address":"201 West Main Drive","city":"El Paso","state":"TX","zip":"unknown","lat":31.759206155999,"lng":-106.490235616916,"yearOnline":"unknown","powerMw":0,"sqft":3810,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Lumen Harlingen 1 Data Center","operator":"Lumen Technologies","owner":"Lumen","address":"514 East Monroe Avenue","city":"Harlingen","state":"TX","zip":"unknown","lat":26.193754316563,"lng":-97.691027434472,"yearOnline":"unknown","powerMw":0,"sqft":5208,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Lumen Stratford 1 Data Center","operator":"Lumen Technologies","owner":"Lumen","address":"501 Texas Street","city":"Stratford","state":"TX","zip":"unknown","lat":36.325557088807,"lng":-102.084186919027,"yearOnline":"unknown","powerMw":0,"sqft":20000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Duos Edge AI - Amarillo EDC","operator":"Duos Edge AI, Inc.","owner":"Duos Edge AI, Inc.","address":"5800 Bell St","city":"Amarillo","state":"TX","zip":"79109","lat":35.148860325153,"lng":-101.902110555388,"yearOnline":"2025","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"continue:Texas"},{"name":"Duos Edge AI - Amarillo","operator":"Duos Edge AI, Inc.","owner":"Potter County","address":"810-814 S Tyler St","city":"Amarillo","state":"TX","zip":"79101","lat":35.205603258135,"lng":-101.838741615459,"yearOnline":"2026 (expected)","powerMw":0,"sqft":0,"type":"edge","status":"under-construction","region":"continue:Texas"},{"name":"Smartcom Telephone (MCAL1)","operator":"SmartCom Telephone, LLC","owner":"Smartcom Telephone LLC","address":"600 Ash Avenue, McAllen, TX 78501","city":"McAllen","state":"TX","zip":"78501","lat":26.203031419221,"lng":-98.225688032982,"yearOnline":"unknown","powerMw":3,"sqft":5080,"type":"telecom","status":"operational","region":"continue:Texas"},{"name":"Smartcom Telephone (MCAL2)","operator":"SmartCom Telephone, LLC","owner":"Smartcom Telephone","address":"601 Beech Avenue","city":"McAllen","state":"TX","zip":"78501","lat":26.203831782267,"lng":-98.22556574944,"yearOnline":"unknown","powerMw":3,"sqft":10480,"type":"telecom","status":"operational","region":"continue:Texas"},{"name":"MARA Granbury Data Center","operator":"MARA Holdings, Inc.","owner":"MARA Holdings, Inc.","address":"2001 Mitchell Bend Hwy","city":"Granbury","state":"TX","zip":"unknown","lat":32.343426680709,"lng":-97.732404629679,"yearOnline":"2022","powerMw":300,"sqft":0,"type":"crypto","status":"operational","region":"continue:Texas"},{"name":"Google Winding Woods Data Center (Project Evergreen)","operator":"Google","owner":"Google (via Gannett Enterprises LLC)","address":"Winding Woods Commerce Park, 4818-4928 US-78","city":"St. George","state":"SC","zip":"29477","lat":33.176010418623,"lng":-80.543265411919,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"under-construction","region":"continue:South Carolina"},{"name":"Lumen Spartanburg 1 Data Center","operator":"Lumen Technologies","owner":"Spartanburg Business Technology Center, L.P.","address":"145 North Church Street","city":"Spartanburg","state":"SC","zip":"29306","lat":34.950934896375,"lng":-81.932202680563,"yearOnline":"unknown","powerMw":1.5,"sqft":110661,"type":"telecom","status":"operational","region":"continue:South Carolina"},{"name":"Valara Holdings High Performance Compute Center (Project MOC-1)","operator":"Valara Holdings (subsidiary of NorthMark Strategies)","owner":"Valara Holdings","address":"4000 S Pine St","city":"Spartanburg","state":"SC","zip":"29302","lat":34.92677825782,"lng":-81.851470803792,"yearOnline":"2026 (expected)","powerMw":50.5,"sqft":0,"type":"enterprise","status":"under-construction","region":"continue:South Carolina"},{"name":"Resilience GSP","operator":"Overwatch Capital","owner":"PRP","address":"578 Robinson Rd","city":"Greer","state":"SC","zip":"29651","lat":34.924011292993,"lng":-82.16501694571,"yearOnline":"unknown","powerMw":400,"sqft":0,"type":"wholesale","status":"planned","region":"continue:South Carolina"},{"name":"Capital Region Readiness Center (CRRC) — VAMC Martinsburg","operator":"U.S. Department of Veterans Affairs","owner":"U.S. Department of Veterans Affairs","address":"510 Butler Avenue, Martinsburg, WV 25405-9990","city":"Martinsburg","state":"WV","zip":"25405-9990","lat":39.413781221298,"lng":-77.913357275611,"yearOnline":"unknown","powerMw":0,"sqft":66000,"type":"enterprise","status":"operational","region":"continue:West Virginia"},{"name":"NETL Computational Science & Engineering (CSE) Center","operator":"National Energy Technology Laboratory (NETL)","owner":"U.S. Department of Energy","address":"3610 Collins Ferry Road, Morgantown, WV 26505","city":"Morgantown","state":"WV","zip":"26505","lat":39.668991410082,"lng":-79.977220827739,"yearOnline":"unknown","powerMw":0,"sqft":14000,"type":"enterprise","status":"under-construction","region":"continue:West Virginia"},{"name":"Silicon Foundation West Virginia","operator":"Silicon Foundation Energy Inc.","owner":"Silicon Foundation Energy Inc.","address":"74 Warwood Avenue, Wheeling, WV 26003","city":"Wheeling","state":"WV","zip":"26003","lat":40.101341877059,"lng":-80.70300317123,"yearOnline":"unknown","powerMw":100,"sqft":60000,"type":"hyperscale","status":"planned","region":"continue:West Virginia"},{"name":"Port Edwards Data Center (Cloudnium)","operator":"Cloudnium LLC","owner":"CyberOne Data","address":"141 Market Ave","city":"Port Edwards","state":"WI","zip":"54469","lat":44.3428535802,"lng":-89.859418542994,"yearOnline":"unknown","powerMw":0.5,"sqft":4120,"type":"colocation","status":"operational","region":"continue:Wisconsin"},{"name":"Bella Mia – Lake Geneva Data Center","operator":"Bella Mia, Inc. (d/b/a Mia.net / HostDrive.com)","owner":"Peter David Volpendesta and Gail S. Volpendesta","address":"401 Host Dr.","city":"Lake Geneva","state":"WI","zip":"53147","lat":42.579521782885,"lng":-88.420488887516,"yearOnline":"unknown","powerMw":0,"sqft":4592,"type":"colocation","status":"operational","region":"continue:Wisconsin"},{"name":"ddCloud – Janesville Data Center","operator":"Data Dimensions (ddCloud), a subsidiary of One Call","owner":"ddCloud","address":"432 Midland Road","city":"Janesville","state":"WI","zip":"53546","lat":42.675032598057,"lng":-88.979812184565,"yearOnline":"2009","powerMw":0,"sqft":22000,"type":"colocation","status":"operational","region":"continue:Wisconsin"},{"name":"OFFSITE – Kenosha (Alpha & Beta datacenter)","operator":"OFFSITE LLC","owner":"OFFSITE LLC","address":"3618 7th Avenue","city":"Kenosha","state":"WI","zip":"53140","lat":42.604799942616,"lng":-87.820603408163,"yearOnline":"unknown","powerMw":5,"sqft":50000,"type":"colocation","status":"operational","region":"continue:Wisconsin"},{"name":"Ethoplex Data Center","operator":"Ethoplex, LLC","owner":"Techplex LLC","address":"N115W19150 Edison Dr","city":"Germantown","state":"WI","zip":"53022","lat":43.227564155787,"lng":-88.146922635216,"yearOnline":"unknown","powerMw":3,"sqft":13000,"type":"colocation","status":"operational","region":"continue:Wisconsin"},{"name":"Cogent Data Center - Milwaukee 2","operator":"Cogent Communications","owner":"US Sprint Communications Co.","address":"2915 S 5th Ct","city":"Milwaukee","state":"WI","zip":"unknown","lat":42.992180390809,"lng":-87.916610433738,"yearOnline":"unknown","powerMw":0,"sqft":5831,"type":"colocation","status":"operational","region":"continue:Wisconsin"},{"name":"Aventus Lakes","operator":"Aventus Data Centers","owner":"Aventus Data Centers","address":"7901 W Clinton Ave","city":"Milwaukee","state":"WI","zip":"unknown","lat":43.151613658263,"lng":-88.008947574803,"yearOnline":"2007","powerMw":0,"sqft":26432,"type":"colocation","status":"operational","region":"continue:Wisconsin"},{"name":"Massive Networks - Boulder","operator":"Massive Networks","owner":"W.W. Reynolds Companies","address":"1919 14th St","city":"Boulder","state":"CO","zip":"unknown","lat":40.017632097509,"lng":-105.277172556876,"yearOnline":"1996","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"JP Morgan Aurora Data Center","operator":"JPMorgan Chase","owner":"JPMorgan Chase Bank (JPMorgan Chase & Co.)","address":"23505 E 6th Ave","city":"Aurora","state":"CO","zip":"80018","lat":39.725609859505,"lng":-104.713779369176,"yearOnline":"2019","powerMw":24.224,"sqft":250000,"type":"enterprise","status":"operational","region":"continue:Colorado"},{"name":"TIAA: Broomfield Data Center","operator":"TIAA","owner":"Landmark Dividend","address":"11525 Main Street","city":"Broomfield","state":"CO","zip":"80020","lat":39.905741661217,"lng":-105.071839321467,"yearOnline":"unknown","powerMw":4,"sqft":92800,"type":"enterprise","status":"operational","region":"continue:Colorado"},{"name":"American Honda Motor Company Data Center","operator":"American Honda Motor Co., Inc.","owner":"American Honda Motor Co.","address":"2501 Clover Basin Drive","city":"Longmont","state":"CO","zip":"80503","lat":40.144085764942,"lng":-105.136503942627,"yearOnline":"2008","powerMw":0,"sqft":67045,"type":"enterprise","status":"operational","region":"continue:Colorado"},{"name":"Grant St Data Center (aka Thornton Data Center)","operator":"Morgan Reed Group","owner":"Morgan Reed Inc","address":"12121 Grant St","city":"Thornton","state":"CO","zip":"80241","lat":39.916100914208,"lng":-104.985226058368,"yearOnline":"unknown","powerMw":7,"sqft":267177,"type":"enterprise","status":"operational","region":"continue:Colorado"},{"name":"EdgeCore PH02","operator":"EdgeCore Digital Infrastructure","owner":"Partners Group (via EdgeCore Internet Real Estate, LLC)","address":"3856 S Everton Terrace, Mesa, AZ 85212","city":"Mesa","state":"AZ","zip":"85212","lat":33.335035,"lng":-111.613621,"yearOnline":"2026","powerMw":108,"sqft":868431,"type":"hyperscale","status":"under-construction","region":"continue:Arizona"},{"name":"EdgeCore PH02","operator":"EdgeCore Digital Infrastructure","owner":"EdgeCore Internet Real Estate, LLC","address":"3856 S Everton Terrace, Mesa, AZ","city":"Mesa","state":"AZ","zip":"unknown","lat":33.347345130838,"lng":-111.618515462128,"yearOnline":"2026","powerMw":108,"sqft":868431,"type":"wholesale","status":"under-construction","region":"continue:Arizona"},{"name":"UV&S Technology Wichita (707 E. 33rd St. N.)","operator":"UV&S Technology","owner":"UV&S Technology","address":"707 E. 33rd St. N.","city":"Wichita","state":"KS","zip":"67219","lat":37.744794296196,"lng":-97.330939843627,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Kansas"},{"name":"Neuro.io BrainHUB Innovation Campus","operator":"Neuro.io (powered by MindMaze AI)","owner":"Neuro.io","address":"3030 Barrow St, Houma, LA 70360","city":"Houma","state":"LA","zip":"70360","lat":29.577400576565,"lng":-90.725688589046,"yearOnline":"2026","powerMw":0,"sqft":53214,"type":"enterprise","status":"under-construction","region":"continue:Louisiana"},{"name":"Convalt Energy Northern Maine","operator":"Convalt Energy","owner":"Town of East Millinocket","address":"50 Main St","city":"East Millinocket","state":"ME","zip":"04430","lat":45.625310198667,"lng":-68.574870022127,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"planned","region":"continue:Maine"},{"name":"Raeden Indianapolis - 800 Oliver Ave","operator":"Raeden","owner":"Oliver Street, LLC / Paragon Realty","address":"800 Oliver Ave, Indianapolis, IN 46225","city":"Indianapolis","state":"IN","zip":"46225","lat":39.758584741959,"lng":-86.173021903776,"yearOnline":"unknown","powerMw":0.33,"sqft":10000,"type":"colocation","status":"operational","region":"continue:Indiana"},{"name":"Microsoft Granger Data Center","operator":"Microsoft","owner":"Microsoft Corporation","address":"Former St. Joe Farm property near Currant Road and Cleveland Road, Granger, St. Joseph County, IN","city":"Granger","state":"IN","zip":"unknown","lat":41.724406091287,"lng":-86.129522209876,"yearOnline":"unknown","powerMw":1000,"sqft":0,"type":"hyperscale","status":"under-construction","region":"continue:Indiana"},{"name":"Fannie Mae Urbana Technology Center","operator":"Fannie Mae","owner":"Fannie Mae","address":"9107 Bennett Creek Boulevard, Frederick, MD 21704","city":"Frederick","state":"MD","zip":"21704","lat":39.32249220233,"lng":-77.349730065932,"yearOnline":"2004","powerMw":9.8,"sqft":245000,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"Cogent Data Center - Boston (BOS3-DC)","operator":"Cogent Communications","owner":"Anchor Line Partners","address":"15 Broad Street, Suite 600, Boston, MA 02109","city":"Boston","state":"MA","zip":"02109","lat":42.358802983299,"lng":-71.054505643309,"yearOnline":"unknown","powerMw":0.6,"sqft":8400,"type":"colocation","status":"operational","region":"continue:Massachusetts"},{"name":"Windstream Kansas City","operator":"Uniti Group Inc. / Windstream","owner":"Windstream","address":"1201 Troost Ave, Kansas City, MO 64106","city":"Kansas City","state":"MO","zip":"64106","lat":39.099398601241,"lng":-94.56982007407,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Missouri"},{"name":"Lenharth Data Center","operator":"University of New Hampshire Research Computing Center","owner":"University of New Hampshire","address":"Morse Hall, Room 213, 8 College Road, Durham, NH 03824","city":"Durham","state":"NH","zip":"03824","lat":43.134564698151,"lng":-70.936317420453,"yearOnline":"unknown","powerMw":0,"sqft":2000,"type":"enterprise","status":"operational","region":"continue:New Hampshire"},{"name":"Kraken Central Site","operator":"NYDIG DFM, LLC","owner":"NYDIG DFM, LLC","address":"Section 8, Township 25 North, Range 59 East, Richland County, approximately 15.2 miles northeast of Sidney, MT","city":"Sidney","state":"MT","zip":"unknown","lat":47.934,"lng":-104.137,"yearOnline":"2021","powerMw":13,"sqft":0,"type":"crypto","status":"operational","region":"continue:Montana"},{"name":"Kennedy Pad","operator":"NYDIG DFM, LLC","owner":"NYDIG DFM, LLC","address":"Section 9, Township 25 North, Range 58 East, Richland County, approximately 10.4 miles northwest of Fairview, MT","city":"Fairview","state":"MT","zip":"unknown","lat":47.927019,"lng":-104.239333,"yearOnline":"2024","powerMw":0,"sqft":0,"type":"crypto","status":"operational","region":"continue:Montana"},{"name":"Shirley Site","operator":"NYDIG DFM, LLC","owner":"NYDIG DFM, LLC","address":"Section 25, Township 26 North, Range 58 East, Richland County, approximately 10.7 miles northwest of Fairview, MT","city":"Fairview","state":"MT","zip":"unknown","lat":47.98112,"lng":-104.17407,"yearOnline":"unknown","powerMw":3.73,"sqft":0,"type":"crypto","status":"operational","region":"continue:Montana"},{"name":"Holly Powers Site","operator":"NYDIG DFM, LLC","owner":"NYDIG DFM, LLC","address":"Section 20, Township 28 North, Range 59 East, Roosevelt County, approximately 5 miles east-northeast of Bainville, MT","city":"Bainville","state":"MT","zip":"unknown","lat":48.170558,"lng":-104.118501,"yearOnline":"unknown","powerMw":11.2,"sqft":0,"type":"crypto","status":"operational","region":"continue:Montana"},{"name":"NYDIG – Davidsen Atlas","operator":"NYDIG DFM, LLC","owner":"NYDIG DFM, LLC","address":"Section 30, Township 24 North, Range 60 East, Richland County, near Fairview, MT","city":"Fairview","state":"MT","zip":"unknown","lat":47.8076,"lng":-104.0648,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"crypto","status":"planned","region":"continue:Montana"},{"name":"Webb Data Center","operator":"Colovore","owner":"EPL VIRGINIA INVESTORS LLC","address":"9710–9730 N. Virginia St.","city":"Reno","state":"NV","zip":"unknown","lat":39.613177698611,"lng":-119.875793296362,"yearOnline":"2026","powerMw":20,"sqft":82000,"type":"unknown","status":"under-construction","region":"continue:Nevada"},{"name":"CENTRA Reno (RNO2) — Keystone Data Center","operator":"CENTRA Digital Interconnect (CENTRA)","owner":"CADC Reno 265, LLC (c/o CENTRA Digital Interconnect)","address":"265 Keystone Ave","city":"Reno","state":"NV","zip":"unknown","lat":39.525543153333,"lng":-119.826121007127,"yearOnline":"2026","powerMw":12,"sqft":91000,"type":"colocation","status":"under-construction","region":"continue:Nevada"},{"name":"TS2 Data Center (Townsite Solar 2)","operator":"Townsite Solar 2 LLC","owner":"City of Boulder City, Nevada","address":"Southwest of I-11 and US-93 (city-owned land)","city":"Boulder City","state":"NV","zip":"unknown","lat":39.255627355168,"lng":-114.86715887923,"yearOnline":"unknown","powerMw":170,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Nevada"},{"name":"US Signal: Saint Paul Data Center","operator":"US Signal","owner":"US Signal","address":"180 East 5th Street","city":"St. Paul","state":"MN","zip":"55101","lat":44.949,"lng":-93.092,"yearOnline":"2000","powerMw":0,"sqft":17000,"type":"colocation","status":"operational","region":"continue:Minnesota"},{"name":"Iron Mountain OHS-1","operator":"Iron Mountain Data Centers","owner":"Iron Mountain Inc.","address":"3366 S Tech Blvd","city":"Miamisburg","state":"OH","zip":"45342","lat":39.591651505983,"lng":-84.235327219947,"yearOnline":"2017","powerMw":1.4,"sqft":44000,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"H5 Data Centers Cleveland Data Center","operator":"H5 Data Centers","owner":"H5 Data Centers (via affiliate entity)","address":"1625 Rockwell Ave","city":"Cleveland","state":"OH","zip":"44114","lat":41.506306119324,"lng":-81.683243705656,"yearOnline":"unknown","powerMw":10,"sqft":351000,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"Ark Data Centers Canton","operator":"Ark Data Centers","owner":"Mapletree Industrial Trust","address":"4726 Hills and Dales Rd NW","city":"Canton","state":"OH","zip":"44708","lat":40.833129601289,"lng":-81.431869789013,"yearOnline":"2009","powerMw":1.5,"sqft":29960,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"Ark Data Centers Youngstown","operator":"Ark Data Centers","owner":"Ark Data Centers","address":"1343 Belmont Ave","city":"Youngstown","state":"OH","zip":"44504","lat":41.118029928191,"lng":-80.657287722954,"yearOnline":"unknown","powerMw":0,"sqft":20332,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"CyrusOne CIN2 (Cincinnati 7th Street)","operator":"CyrusOne","owner":"CyrusOne","address":"229 West 7th St","city":"Cincinnati","state":"OH","zip":"45202","lat":39.103079779681,"lng":-84.517315789624,"yearOnline":"unknown","powerMw":14,"sqft":400000,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"CyrusOne CIN3 Cincinnati Mason Data Center","operator":"CyrusOne","owner":"Maison Tech","address":"4800 Parkway Dr","city":"Mason","state":"OH","zip":"45040","lat":39.303247737028,"lng":-84.312427775498,"yearOnline":"unknown","powerMw":1.7,"sqft":80000,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"CVG01 – Cincinnati, OH","operator":"DartPoints","owner":"Time Equities Inc. (TEI Investors LLC / 302 West Third Owner LLC)","address":"302 W 3rd St UNIT 400","city":"Cincinnati","state":"OH","zip":"45202","lat":39.098007184517,"lng":-84.517282717948,"yearOnline":"2005","powerMw":4.6,"sqft":14715,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"DartPoints CMH01 – Dublin, OH","operator":"DartPoints","owner":"Argosy Real Estate Partners","address":"565 Metro Pl S Ste 300","city":"Dublin","state":"OH","zip":"43017","lat":40.093439792994,"lng":-83.129796776382,"yearOnline":"2011","powerMw":2.75,"sqft":40000,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"Flexential Cincinnati Data Center","operator":"Flexential","owner":"Flexential","address":"5307 Muhlhauser Rd","city":"West Chester","state":"OH","zip":"45011","lat":39.316346931979,"lng":-84.449674843195,"yearOnline":"2008","powerMw":3.8,"sqft":43551,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"H5 Data Centers Cincinnati II","operator":"H5 Data Centers","owner":"Legacy Investing LLC","address":"925 Dalton Ave","city":"Cincinnati","state":"OH","zip":"45203","lat":39.106025675949,"lng":-84.53642895472,"yearOnline":"unknown","powerMw":2,"sqft":107000,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"Encore Technologies BLU1","operator":"Encore Technologies","owner":"Encore Technologies","address":"11515 Grooms Rd","city":"Blue Ash","state":"OH","zip":"45242","lat":39.276921031111,"lng":-84.367257364274,"yearOnline":"unknown","powerMw":3,"sqft":80000,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"NEO-01 Data Center","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"2509 Hayes Ave","city":"Sandusky","state":"OH","zip":"44870","lat":41.430425201997,"lng":-82.716323535649,"yearOnline":"2026","powerMw":96,"sqft":0,"type":"hyperscale","status":"under-construction","region":"continue:Ohio"},{"name":"Verizon Pawtucket Central Office","operator":"Verizon New England Inc.","owner":"Verizon New England Inc.","address":"85 High Street","city":"Pawtucket","state":"RI","zip":"02860","lat":41.879011733304,"lng":-71.383818378438,"yearOnline":"1948","powerMw":0,"sqft":61056,"type":"telecom","status":"operational","region":"continue:Rhode Island"},{"name":"Verizon East Greenwich Central Office","operator":"Verizon New England Inc.","owner":"Verizon New England Inc.","address":"59 Church Street","city":"East Greenwich","state":"RI","zip":"02818","lat":41.661610259442,"lng":-71.452171738211,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Rhode Island"},{"name":"NDIT Enterprise Data Center","operator":"North Dakota Information Technology (NDIT)","owner":"State of North Dakota","address":"4201 Normandy St., Bismarck, ND 58503-1324","city":"Bismarck","state":"ND","zip":"58503-1324","lat":46.851467087299,"lng":-100.785206352253,"yearOnline":"2013","powerMw":0,"sqft":74564,"type":"enterprise","status":"operational","region":"continue:North Dakota"},{"name":"AIT.com Data Center","operator":"Advanced Internet Technologies, Inc. (AIT)","owner":"Richards Property Group LLC","address":"421 Maiden Lane","city":"Fayetteville","state":"NC","zip":"28301","lat":35.055390423265,"lng":-78.882609797669,"yearOnline":"unknown","powerMw":0,"sqft":93000,"type":"colocation","status":"decommissioned","region":"continue:North Carolina"},{"name":"SAS Institute Data Center","operator":"SAS Institute Inc.","owner":"SAS Institute Inc.","address":"SAS Campus, 100 SAS Campus Drive","city":"Cary","state":"NC","zip":"27513","lat":35.829320267266,"lng":-78.765663416007,"yearOnline":"2010","powerMw":0,"sqft":38000,"type":"enterprise","status":"operational","region":"continue:North Carolina"},{"name":"Lumen Pittsburgh 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"143 South 25th Street, Pittsburgh, PA","city":"Pittsburgh","state":"PA","zip":"unknown","lat":40.425642396487,"lng":-79.97075901784,"yearOnline":"unknown","powerMw":0,"sqft":3661,"type":"telecom","status":"operational","region":"continue:Pennsylvania"},{"name":"Lumen Pittsburgh 2","operator":"Lumen Technologies","owner":"Lumen Technologies / Hyperion Telecommunications of Pennsylvania Inc.","address":"200 Technology Drive, Pittsburgh, PA","city":"Pittsburgh","state":"PA","zip":"unknown","lat":40.430727283941,"lng":-79.960040483234,"yearOnline":"unknown","powerMw":4.5,"sqft":30966,"type":"telecom","status":"operational","region":"continue:Pennsylvania"},{"name":"Cogent Pittsburgh Data Center","operator":"Cogent Communications, Inc.","owner":"Cogent Communications","address":"3216 Liberty Ave, Pittsburgh, PA 15201","city":"Pittsburgh","state":"PA","zip":"15201","lat":40.460307332519,"lng":-79.968986800995,"yearOnline":"unknown","powerMw":0,"sqft":5880,"type":"telecom","status":"operational","region":"continue:Pennsylvania"},{"name":"DQE Butler","operator":"DQE Communications","owner":"DQE Communications","address":"238 Pillow St, Butler, PA 16001","city":"Butler","state":"PA","zip":"16001","lat":40.86043287478,"lng":-79.90725234761,"yearOnline":"unknown","powerMw":0,"sqft":1700,"type":"colocation","status":"operational","region":"continue:Pennsylvania"},{"name":"Synergy Data Center","operator":"Synergy Data Center & Services","owner":"Chaves Consulting Inc.","address":"1650 Dewey Ave","city":"Baker City","state":"OR","zip":"97814","lat":44.7805,"lng":-117.834,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Oregon"},{"name":"Google The Dalles - Building 2","operator":"Google","owner":"Google","address":"4200 Columbia Rd","city":"The Dalles","state":"OR","zip":"97058","lat":45.63132308194,"lng":-121.203182793662,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"continue:Oregon"},{"name":"OneNet's Oklahoma City Datacenter","operator":"OneNet","owner":"Oklahoma State Regents for Higher Education","address":"655 Research Parkway, Oklahoma City, OK 73104","city":"Oklahoma City","state":"OK","zip":"73104","lat":35.473119674676,"lng":-97.503177723498,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Oklahoma"},{"name":"OneNet OSU Tulsa","operator":"OneNet (a division of the Oklahoma State Regents for Higher Education)","owner":"Oklahoma State Regents for Higher Education","address":"700 N Greenwood Ave, Tulsa, OK 74106","city":"Tulsa","state":"OK","zip":"74106","lat":36.164459551666,"lng":-95.987390900896,"yearOnline":"unknown","powerMw":3,"sqft":0,"type":"colocation","status":"operational","region":"continue:Oklahoma"},{"name":"Lumen Columbia 4 Data Center","operator":"Lumen Technologies","owner":"Lumen","address":"520 Whaley St","city":"Columbia","state":"SC","zip":"29201","lat":33.984540288548,"lng":-81.037983658254,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:South Carolina"},{"name":"Ahold Information Services Data Center","operator":"Ahold Delhaize USA (formerly Ahold Information Services, Inc.)","owner":"Ahold Information Services","address":"1200 Brookfield Blvd","city":"Greenville","state":"SC","zip":"29607","lat":34.813416884547,"lng":-82.282011917175,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:South Carolina"},{"name":"AiOnX Anderson (formerly GDA Anderson)","operator":"AiOnX (via Genesis Digital Assets)","owner":"Industrial Warehouse Services, Inc.","address":"1649 Pearman Dairy Rd","city":"Anderson","state":"SC","zip":"unknown","lat":34.540025337214,"lng":-82.699913369158,"yearOnline":"2023","powerMw":18,"sqft":108000,"type":"crypto","status":"operational","region":"continue:South Carolina"},{"name":"Data Foundry Houston 2","operator":"Data Foundry (a Switch company)","owner":"Switch (owned by DigitalBridge & IFM Investors)","address":"660 Greens Pkwy","city":"Houston","state":"TX","zip":"77067","lat":29.94462814067,"lng":-95.423499198513,"yearOnline":"2015","powerMw":60,"sqft":350000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Stream San Antonio III","operator":"Stream Data Centers","owner":"Apollo-managed funds (majority owner of Stream Data Centers)","address":"11203 W Military Drive","city":"San Antonio","state":"TX","zip":"78251","lat":29.448201984515,"lng":-98.712797308913,"yearOnline":"unknown","powerMw":200,"sqft":1500000,"type":"hyperscale","status":"under-construction","region":"continue:Texas"},{"name":"LightEdge Austin I","operator":"LightEdge","owner":"LightEdge","address":"2916 Montopolis Dr., Suite 300","city":"Austin","state":"TX","zip":"78741","lat":30.214760806278,"lng":-97.710875160021,"yearOnline":"unknown","powerMw":2,"sqft":30960,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"LightEdge Austin II","operator":"LightEdge","owner":"EastGroup Properties","address":"7000-B Burleson Road, Suite 400","city":"Austin","state":"TX","zip":"78744","lat":30.199440814924,"lng":-97.707103330097,"yearOnline":"2014","powerMw":2,"sqft":42930,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"CyrusOne AUS2 Austin Data Center","operator":"CyrusOne","owner":"CyrusOne","address":"7301 Metropolis Drive","city":"Austin","state":"TX","zip":"78744","lat":30.203936675028,"lng":-97.706157799188,"yearOnline":"unknown","powerMw":9,"sqft":70000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"CyrusOne AUS3 (Austin III)","operator":"CyrusOne","owner":"CyrusOne (owned by funds managed by KKR and Global Infrastructure Partners)","address":"7100 Metropolis Drive","city":"Austin","state":"TX","zip":"78744","lat":30.20401267677,"lng":-97.706257032126,"yearOnline":"2015","powerMw":24,"sqft":172000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"MDC Laredo (LDO1)","operator":"MDC Data Centers","owner":"MDC Data Centers","address":"13619 Cabezut Dr","city":"Laredo","state":"TX","zip":"78045","lat":27.689900848482,"lng":-99.45102244275,"yearOnline":"unknown","powerMw":0.65,"sqft":8400,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Lumen Waco 1 Data Center","operator":"Lumen Technologies","owner":"Lumen","address":"1417 Air Base Rd, Waco, TX","city":"Waco","state":"TX","zip":"unknown","lat":31.612739644831,"lng":-97.093167941942,"yearOnline":"unknown","powerMw":0,"sqft":4800,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Lumen McAllen 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"906 Beech Avenue","city":"McAllen","state":"TX","zip":"unknown","lat":26.204454871639,"lng":-98.228809227052,"yearOnline":"unknown","powerMw":0,"sqft":6015,"type":"telecom","status":"operational","region":"continue:Texas"},{"name":"Segra: Charleston 500 Summers","operator":"Segra","owner":"Segra","address":"500 Summers St, Charleston, WV 25301","city":"Charleston","state":"WV","zip":"25301","lat":38.352822178725,"lng":-81.631314505965,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:West Virginia"},{"name":"Segra: Charleston 1200 Greenbrier","operator":"Segra","owner":"Cox Communications","address":"1200 Greenbrier St, Charleston, WV 25311","city":"Charleston","state":"WV","zip":"25311","lat":38.364678739008,"lng":-81.583976070046,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:West Virginia"},{"name":"CoreSite VA1 - Reston Data Center","operator":"CoreSite","owner":"American Tower Corporation (NYSE: AMT)","address":"12100 Sunrise Valley Drive","city":"Reston","state":"VA","zip":"20191","lat":38.94901082641,"lng":-77.364621365421,"yearOnline":"2008","powerMw":10,"sqft":261000,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"CoreSite VA2 - Reston Data Center","operator":"CoreSite (an American Tower company)","owner":"American Tower Corporation (parent); property owner of record: CORESITE REAL ESTATE 12100 AND SUNRISE VALLEY DRIVE LLC","address":"12098 Sunrise Valley Drive","city":"Reston","state":"VA","zip":"20191","lat":38.948949861509,"lng":-77.364494411855,"yearOnline":"unknown","powerMw":12,"sqft":188447,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"CoreSite VA3 - Virginia Data Center","operator":"CoreSite","owner":"American Tower Corporation (via CoreSite)","address":"12369 Sunrise Valley Drive","city":"Reston","state":"VA","zip":"20191","lat":38.950118011815,"lng":-77.373259654768,"yearOnline":"2019","powerMw":0,"sqft":940000,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"365 Data Centers Herndon Data Center (VA1)","operator":"365 Data Centers","owner":"BECO Management","address":"13873 Park Center Rd","city":"Herndon","state":"VA","zip":"20171","lat":38.933154820285,"lng":-77.426518136161,"yearOnline":"unknown","powerMw":0.83,"sqft":12000,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Lumen Herndon 1 Data Center","operator":"Lumen Technologies","owner":"Lumen","address":"520 Van Buren Street","city":"Herndon","state":"VA","zip":"20170","lat":38.964798153427,"lng":-77.382890845662,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"H5 Herndon Data Center","operator":"H5 Data Centers","owner":"SPRINGPARK PLACE TECHNOLOGY PARTNERS LLC","address":"480 Springpark Place","city":"Herndon","state":"VA","zip":"20170","lat":38.962616656075,"lng":-77.377797423793,"yearOnline":"unknown","powerMw":15,"sqft":53000,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"H5 Herndon Data Center","operator":"H5 Data Centers","owner":"Springpark Place Technology Partners LLC (c/o Principal Real Estate Investors, LLC)","address":"480 Springpark Pl, Herndon, VA 20170","city":"Herndon","state":"VA","zip":"20170","lat":38.963,"lng":-77.385,"yearOnline":"unknown","powerMw":15,"sqft":53000,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"DataBank IAD2 - McLean Data Center","operator":"DataBank","owner":"Mapletree Industrial Trust","address":"1764A Old Meadow Lane","city":"McLean","state":"VA","zip":"22102","lat":38.919725985534,"lng":-77.2140743955,"yearOnline":"1991","powerMw":3,"sqft":62002,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"CenterServ Chesapeake Data Center","operator":"CenterServ","owner":"Heritage Capital","address":"1545 Crossways Blvd","city":"Chesapeake","state":"VA","zip":"unknown","lat":36.779749822787,"lng":-76.239264945111,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Middletown Data Center","operator":"Middletown Data Center","owner":"Cardinal Energy Corp","address":"8209 Valley Pike","city":"Middletown","state":"VA","zip":"22645","lat":39.020356741961,"lng":-78.2906980428,"yearOnline":"2022","powerMw":14,"sqft":69021,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Chirisa Technology Parks: CTP-04 Campus, Richmond, VA","operator":"Chirisa Technology Parks","owner":"Chirisa Technology Parks and PowerHouse Data Centers (AREP), in partnership with Blue Owl Capital","address":"1401 Meadowville Technology Parkway","city":"Chester","state":"VA","zip":"unknown","lat":37.361747407971,"lng":-77.325260966693,"yearOnline":"unknown","powerMw":100,"sqft":250000,"type":"wholesale","status":"planned","region":"continue:Virginia"},{"name":"Cogent Data Center - Richmond","operator":"Cogent Communications","owner":"Cogent Communications","address":"1001 Oliver Hill Way","city":"Richmond","state":"VA","zip":"23219","lat":37.54207880271,"lng":-77.42417713649,"yearOnline":"unknown","powerMw":0,"sqft":6056,"type":"telecom","status":"operational","region":"continue:Virginia"},{"name":"Richweb Data Center","operator":"Richweb","owner":"Richweb","address":"7474 Lee Davis Road","city":"Mechanicsville","state":"VA","zip":"23111","lat":37.613815270988,"lng":-77.339402121309,"yearOnline":"1996","powerMw":0,"sqft":10000,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Range Sheridan","operator":"Range (formerly Advanced Communications Technology / ACT)","owner":"Advanced Communications Technology (ACT)","address":"1 West Loucks Street, Sheridan, WY","city":"Sheridan","state":"WY","zip":"unknown","lat":44.797290465127,"lng":-106.955878931238,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Wyoming"},{"name":"Gotspace Wallingford 1 - Building 2","operator":"Gotspace Data Partners","owner":"Gotspace Data Partners","address":"961 Northrop Rd","city":"Wallingford","state":"CT","zip":"06492","lat":41.487849372998,"lng":-72.769388287974,"yearOnline":"unknown","powerMw":32,"sqft":50000,"type":"hyperscale","status":"planned","region":"continue:Connecticut"},{"name":"Gotspace Wallingford 1 - Building 3","operator":"Gotspace Data Partners","owner":"Gotspace Data Partners","address":"965 Northrop Rd","city":"Wallingford","state":"CT","zip":"06492","lat":41.487900570993,"lng":-72.76935793677,"yearOnline":"unknown","powerMw":32,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Connecticut"},{"name":"Segra Pueblo Data Center","operator":"Segra","owner":"Segra","address":"317 North Main Street","city":"Pueblo","state":"CO","zip":"81003","lat":38.270294706564,"lng":-104.60863070093,"yearOnline":"unknown","powerMw":0,"sqft":12000,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Massive Networks - Louisville (CTC1 Data Center)","operator":"Massive Networks","owner":"Massive Networks","address":"382 S Arthur Ave, Suite 120","city":"Louisville","state":"CO","zip":"80027","lat":39.966101580334,"lng":-105.124964210273,"yearOnline":"unknown","powerMw":0,"sqft":15000,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Visa Central US Denver","operator":"Visa Inc.","owner":"Visa Inc.","address":"8910 Ridgeline Blvd","city":"Highlands Ranch","state":"CO","zip":"80129","lat":39.554614267572,"lng":-104.996420391584,"yearOnline":"2003","powerMw":0,"sqft":300000,"type":"enterprise","status":"operational","region":"continue:Colorado"},{"name":"Vastnet - Denver","operator":"Vastnet (Vastnet Corp)","owner":"Vastnet","address":"800E 73rd Av","city":"Denver","state":"CO","zip":"80229","lat":39.828995272077,"lng":-104.976854351471,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Verizon: 313 Inverness Data Center","operator":"Verizon Communications Inc.","owner":"Verizon Communications Inc.","address":"313 Inverness Way South","city":"Englewood","state":"CO","zip":"80112","lat":39.564871061868,"lng":-104.861076290354,"yearOnline":"unknown","powerMw":0,"sqft":72590,"type":"telecom","status":"operational","region":"continue:Colorado"},{"name":"RSA Dexter Avenue Datacenter","operator":"NTT DATA Services","owner":"Retirement Systems of Alabama (RSA)","address":"445 Dexter Avenue","city":"Montgomery","state":"AL","zip":"36104","lat":32.377670629923,"lng":-86.303189272312,"yearOnline":"2012","powerMw":2,"sqft":44000,"type":"colocation","status":"operational","region":"continue:Alabama"},{"name":"CleanSpark Norcross Data Center","operator":"CleanSpark, Inc.","owner":"CleanSpark, Inc.","address":"5295 Brook Hollow Pkwy, Norcross, GA 30071","city":"Norcross","state":"GA","zip":"30071","lat":33.927716094187,"lng":-84.183475486769,"yearOnline":"2021","powerMw":20,"sqft":86842,"type":"crypto","status":"operational","region":"continue:Georgia"},{"name":"Switch Atlanta North - The KEEP 2.0","operator":"Switch","owner":"DigitalBridge","address":"151 Etowah Ridge Trail SE, Cartersville, GA 30120","city":"Cartersville","state":"GA","zip":"30120","lat":34.101796017746,"lng":-84.791070188799,"yearOnline":"2026","powerMw":0,"sqft":0,"type":"hyperscale","status":"under-construction","region":"continue:Georgia"},{"name":"DataBank Cartersville Campus (Project Indo)","operator":"DataBank","owner":"DataBank (backed by institutional investors including DigitalBridge and TJC LP)","address":"218 Industrial Park Road, Cartersville, GA","city":"Cartersville","state":"GA","zip":"unknown","lat":34.233173312974,"lng":-84.795927461131,"yearOnline":"unknown","powerMw":200,"sqft":1100000,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Vantage Data Center - Westlake (GA21/GA22)","operator":"Vantage Data Centers","owner":"DigitalBridge Holdings LLC","address":"West of Plummer Road and north of Riverside Drive, South Fulton, Fulton County, GA","city":"South Fulton","state":"GA","zip":"unknown","lat":31.093248111159,"lng":-83.193665268697,"yearOnline":"2028","powerMw":96,"sqft":754220,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Euphemystic Ventures AI micro-datacenter","operator":"Euphemystic Ventures LLC","owner":"Lawrence-Douglas County Biosciences Authority","address":"KU Innovation Park, 2033 Becker Dr, Room 123A","city":"Lawrence","state":"KS","zip":"66047","lat":38.948881174199,"lng":-95.265129234575,"yearOnline":"2026","powerMw":0,"sqft":250,"type":"edge","status":"operational","region":"continue:Kansas"},{"name":"Deep Green DG06","operator":"Deep Green","owner":"Deep Green","address":"229 S Cedar Street","city":"Grand Rapids","state":"MI","zip":"unknown","lat":42.981058319385,"lng":-85.662845575903,"yearOnline":"unknown","powerMw":24,"sqft":64583,"type":"colocation","status":"decommissioned","region":"continue:Michigan"},{"name":"Meta Hyperion - Building 1","operator":"Meta","owner":"Joint venture between Meta and funds managed by Blue Owl Capital (reported 80% Blue Owl-managed funds / 20% Meta).","address":"Richland Parish, LA (specific street address not publicly listed)","city":"unknown","state":"LA","zip":"unknown","lat":32.45,"lng":-91.5,"yearOnline":"2028","powerMw":251,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Louisiana"},{"name":"Hut 8 River Bend - Building 1","operator":"Hut 8 Corp.","owner":"Hut 8 Corp.","address":"West Feliciana Parish, LA (specific street address not publicly listed)","city":"unknown","state":"LA","zip":"unknown","lat":30.8,"lng":-91.3,"yearOnline":"2027","powerMw":165,"sqft":0,"type":"hyperscale","status":"under-construction","region":"continue:Louisiana"},{"name":"Windstream Lafayette","operator":"Windstream","owner":"nGenX","address":"Lafayette, LA (specific street address not listed)","city":"Lafayette","state":"LA","zip":"unknown","lat":30.224,"lng":-92.019,"yearOnline":"unknown","powerMw":0,"sqft":1500,"type":"colocation","status":"operational","region":"continue:Louisiana"},{"name":"US Internet Robbinsdale (Robbinsdale Central Office Building)","operator":"US Internet","owner":"US Internet","address":"3819 W Broadway","city":"Robbinsdale","state":"MN","zip":"55422","lat":45.024665462026,"lng":-93.331668834673,"yearOnline":"unknown","powerMw":0,"sqft":4000,"type":"telecom","status":"under-construction","region":"continue:Minnesota"},{"name":"QLevr Inver Grove Heights","operator":"QLevr Data Centers","owner":"FIG Ion Timber LLC","address":"5842 Carmen Ave E","city":"Inver Grove Heights","state":"MN","zip":"unknown","lat":44.862963098619,"lng":-93.039873534304,"yearOnline":"unknown","powerMw":5,"sqft":54000,"type":"edge","status":"planned","region":"continue:Minnesota"},{"name":"QLevr Inver Grove Heights","operator":"QLevr Data Centers","owner":"unknown","address":"5842 Carmen Ave East, Inver Grove Heights, MN","city":"Inver Grove Heights","state":"MN","zip":"unknown","lat":44.852,"lng":-93.048,"yearOnline":"unknown","powerMw":5,"sqft":54000,"type":"colocation","status":"planned","region":"continue:Minnesota"},{"name":"AT&T Kings Mountain Data Center (also referenced as AT&T Cardinal Data Center)","operator":"AT&T","owner":"AT&T","address":"209 Countryside Rd","city":"Kings Mountain","state":"NC","zip":"unknown","lat":35.254140725433,"lng":-81.385296197533,"yearOnline":"2014","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:North Carolina"},{"name":"Disney Kings Mountain NC Data Center","operator":"Disney","owner":"Disney Worldwide Services, Inc.","address":"138 Riverside Ct","city":"Kings Mountain","state":"NC","zip":"unknown","lat":35.247977791032,"lng":-81.397011881602,"yearOnline":"unknown","powerMw":20,"sqft":98950,"type":"enterprise","status":"operational","region":"continue:North Carolina"},{"name":"T5 @ Charlotte II","operator":"T5 Data Centers","owner":"T5 Data Centers","address":"131 Riverside Ct","city":"Kings Mountain","state":"NC","zip":"28086","lat":35.247912034778,"lng":-81.397638932918,"yearOnline":"2011","powerMw":180,"sqft":150000,"type":"wholesale","status":"operational","region":"continue:North Carolina"},{"name":"Verizon Providence Washington Street Central Office (CLLI: PRVDRIWA)","operator":"Verizon New England Inc.","owner":"New England Telephone And Telegraph Co. (Verizon subsidiary)","address":"234 Washington St","city":"Providence","state":"RI","zip":"unknown","lat":41.82389,"lng":-71.41333,"yearOnline":"1917","powerMw":0,"sqft":168000,"type":"telecom","status":"operational","region":"continue:Rhode Island"},{"name":"Verizon Providence Broad Street Wire Center (CLLI PRVDRIBR)","operator":"Verizon New England Inc.","owner":"unknown","address":"1096 Broad St","city":"Providence","state":"RI","zip":"unknown","lat":41.795839973614,"lng":-71.411615206843,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Rhode Island"},{"name":"Ark Data Centers Akron I and II","operator":"ark data centers","owner":"Ark Data Centers","address":"191 East Miller Avenue","city":"Akron","state":"OH","zip":"unknown","lat":41.056572081092,"lng":-81.522148127183,"yearOnline":"2012","powerMw":2,"sqft":54000,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"Microtronix Datacenter","operator":"Microtronix ESolutions, LLC","owner":"Microtronix ESolutions, LLC","address":"349 Wayne St","city":"Ottoville","state":"OH","zip":"45876","lat":40.929825186473,"lng":-84.34148614364,"yearOnline":"2001","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"Brightspeed Lima","operator":"Brightspeed","owner":"United Telephone Company of Ohio","address":"122 S Elizabeth St","city":"Lima","state":"OH","zip":"45801","lat":40.739618283047,"lng":-84.106890098855,"yearOnline":"unknown","powerMw":0,"sqft":71060,"type":"telecom","status":"operational","region":"continue:Ohio"},{"name":"Strata Expanse AI Center of Excellence","operator":"Strata Expanse","owner":"Strata Expanse","address":"1476 County Rd 1A","city":"Ironton","state":"OH","zip":"45638","lat":38.567639114166,"lng":-82.781751295564,"yearOnline":"2025","powerMw":10,"sqft":0,"type":"enterprise","status":"under-construction","region":"continue:Ohio"},{"name":"Bitdeer Niles","operator":"Bitdeer Technologies Group","owner":"White Tail Creek LLC (Bitdeer subsidiary)","address":"1047 Belmont Ave","city":"Niles","state":"OH","zip":"unknown","lat":41.167581572524,"lng":-80.753425799024,"yearOnline":"2028","powerMw":300,"sqft":0,"type":"crypto","status":"planned","region":"continue:Ohio"},{"name":"365 Data Centers Philadelphia (University City)","operator":"365 Data Centers","owner":"GI Partners","address":"3701 Market Street","city":"Philadelphia","state":"PA","zip":"19104","lat":39,"lng":-75,"yearOnline":"2009","powerMw":1,"sqft":20500,"type":"colocation","status":"operational","region":"continue:Pennsylvania"},{"name":"Fidium Pittsburgh Data Center","operator":"Fidium (Consolidated Communications)","owner":"MSA Purpose Trust (Management Science Associates)","address":"115 Evergreen Heights Dr","city":"Pittsburgh","state":"PA","zip":"15229","lat":40,"lng":-80,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Pennsylvania"},{"name":"Fidium Tarentum (Rockpointe) Data Center","operator":"Fidium","owner":"Management Science Associates, Inc.","address":"400 MSA Dr","city":"Tarentum","state":"PA","zip":"15084","lat":40,"lng":-79,"yearOnline":"2002","powerMw":5,"sqft":42000,"type":"colocation","status":"operational","region":"continue:Pennsylvania"},{"name":"Salem Township Data Center Campus","operator":"QTS Data Centers","owner":"QTS Data Centers","address":"unknown","city":"Salem Township","state":"PA","zip":"unknown","lat":41,"lng":-76,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"Cetronia Road Data Center","operator":"Air Products & Chemicals","owner":"Air Products & Chemicals","address":"7300 Cetronia Road","city":"Upper Macungie Township","state":"PA","zip":"unknown","lat":40,"lng":-75,"yearOnline":"unknown","powerMw":0,"sqft":2600000,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"CleanSpark Crossville 1","operator":"CleanSpark","owner":"CleanSpark","address":"5784 Plateau Rd","city":"Crossville","state":"TN","zip":"38571","lat":36.056824423201,"lng":-85.136890598014,"yearOnline":"2022","powerMw":0,"sqft":10000,"type":"crypto","status":"operational","region":"continue:Tennessee"},{"name":"CleanSpark Crossville 2","operator":"CleanSpark","owner":"CleanSpark","address":"268 Sparta Hwy","city":"Crossville","state":"TN","zip":"38572","lat":35.950331152103,"lng":-85.09495952203,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"crypto","status":"operational","region":"continue:Tennessee"},{"name":"Litewire Data Center","operator":"Litewire, LLC","owner":"Litewire, LLC","address":"204 Red Rd","city":"McMinnville","state":"TN","zip":"37110","lat":35.692149981465,"lng":-85.761939814892,"yearOnline":"2015","powerMw":0,"sqft":285000,"type":"colocation","status":"operational","region":"continue:Tennessee"},{"name":"LCUB Data Center","operator":"LCUB (Lenoir City Utilities Board)","owner":"LCUB (Lenoir City Utilities Board)","address":"7698 Creekwood Park Blvd","city":"Lenoir City","state":"TN","zip":"37772","lat":35.844084122339,"lng":-84.268670873662,"yearOnline":"2018","powerMw":2,"sqft":4400,"type":"colocation","status":"operational","region":"continue:Tennessee"},{"name":"Windstream Brentwood, TN Data Center","operator":"Windstream","owner":"Windstream","address":"105 Westwood Pl","city":"Brentwood","state":"TN","zip":"37027","lat":36.036984074848,"lng":-86.805572799969,"yearOnline":"2013","powerMw":1.2,"sqft":22000,"type":"colocation","status":"operational","region":"continue:Tennessee"},{"name":"1547 MCTX1 (Chase Tower McAllen)","operator":"1547 Critical Systems Realty","owner":"Harrison Street","address":"200 S 10th St, McAllen, TX 78501","city":"McAllen","state":"TX","zip":"78501","lat":26.202016798547,"lng":-98.230398810621,"yearOnline":"2026","powerMw":1.5,"sqft":222000,"type":"telecom","status":"under-construction","region":"continue:Texas"},{"name":"Core Scientific Austin 1","operator":"Core Scientific","owner":"Core Scientific","address":"3301 Hibbetts Road, Austin, TX 78725","city":"Austin","state":"TX","zip":"78725","lat":30.267053061703,"lng":-97.66983269128,"yearOnline":"unknown","powerMw":20,"sqft":0,"type":"crypto","status":"operational","region":"continue:Texas"},{"name":"MARA Garden City Data Center","operator":"MARA Holdings, Inc.","owner":"Mara Garden City LLC (subsidiary of MARA Holdings, Inc.)","address":"12022 Ranch Rd 33, Garden City, TX","city":"Garden City","state":"TX","zip":"unknown","lat":31.746894663768,"lng":-101.465222864308,"yearOnline":"2023","powerMw":200,"sqft":0,"type":"crypto","status":"operational","region":"continue:Texas"},{"name":"Barrio Energy - Tyler (Project Rose)","operator":"Barrio Energy","owner":"Barrio Resources LLC","address":"1105 W Erwin St, Tyler, TX 75702","city":"Tyler","state":"TX","zip":"75702","lat":32.350738743907,"lng":-95.312443116177,"yearOnline":"unknown","powerMw":12,"sqft":8160,"type":"enterprise","status":"under-construction","region":"continue:Texas"},{"name":"Skybox Atlantic Station","operator":"Skybox Datacenters","owner":"Prologis","address":"2300 West Plano Parkway, Plano, TX","city":"Plano","state":"TX","zip":"unknown","lat":33.007247921582,"lng":-96.737609299753,"yearOnline":"unknown","powerMw":100,"sqft":1000000,"type":"hyperscale","status":"planned","region":"continue:Texas"},{"name":"TiTAN – Moses Lake Data Center","operator":"Serverfarm","owner":"Manulife Investment Management (controlling interest via Manulife Infrastructure Fund II; property entity: RS Titan, LLC)","address":"4949 Randolph Rd NE","city":"Moses Lake","state":"WA","zip":"98837","lat":47.182094787357,"lng":-119.315931097426,"yearOnline":"2011","powerMw":22,"sqft":163000,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"Merkle Standard: Washington - Crypto Mining Data Center","operator":"Merkle Standard","owner":"Merkle Standard","address":"422767 State Rte 20","city":"Usk","state":"WA","zip":"99180","lat":48.291028195112,"lng":-117.274311660632,"yearOnline":"unknown","powerMw":100,"sqft":0,"type":"crypto","status":"operational","region":"continue:Washington"},{"name":"EVE1 - Ziply Everett WA Data Center PoP","operator":"MOD Mission Critical","owner":"Ziply Fiber","address":"426 East Casino Road","city":"Everett","state":"WA","zip":"98208","lat":47.921877059629,"lng":-122.226723322079,"yearOnline":"1970","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Washington"},{"name":"Vivio Technologies – WW TS Site","operator":"Vivio Technologies","owner":"Vivio Technologies (SMK Solutions Inc)","address":"1473 W Rose St","city":"Walla Walla","state":"WA","zip":"99362","lat":46.058556536449,"lng":-118.366429924669,"yearOnline":"2002","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"Vivio Technologies - WW UG Site","operator":"Vivio Technologies","owner":"Vivio Technologies","address":"22 W Main St","city":"Walla Walla","state":"WA","zip":"99362","lat":46.066641310299,"lng":-118.339717696418,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"PocketiNet Walla Walla","operator":"PocketiNet Communications Inc.","owner":"Port of Walla Walla","address":"45 Terminal Loop Rd, Suite 210","city":"Walla Walla","state":"WA","zip":"99362","lat":46.087139397426,"lng":-118.284591818412,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"SupraNet Communications Madison","operator":"SupraNet Communications, Inc.","owner":"SupraNet Communications, Inc.","address":"8000 Excelsior Drive, Suite 204","city":"Madison","state":"WI","zip":"53717-1914","lat":43.075476303972,"lng":-89.525078952929,"yearOnline":"unknown","powerMw":0,"sqft":2000,"type":"colocation","status":"operational","region":"continue:Wisconsin"},{"name":"GM/JATCO Data Center Campus (Former GM Assembly Plant)","operator":"unknown","owner":"City of Janesville","address":"1000 General Motors Drive and 544 Kellogg Avenue","city":"Janesville","state":"WI","zip":"unknown","lat":42.649665841558,"lng":-89.022840844067,"yearOnline":"unknown","powerMw":800,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Wisconsin"},{"name":"Alabama Supercomputer Center","operator":"Alabama Supercomputer Authority","owner":"Alabama Supercomputer Authority (state-funded corporation)","address":"686 Discovery Drive","city":"Huntsville","state":"AL","zip":"35806","lat":34.735458614296,"lng":-86.673598284726,"yearOnline":"unknown","powerMw":0,"sqft":24000,"type":"enterprise","status":"operational","region":"continue:Alabama"},{"name":"Lumen: Prichard AL Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"208 Telegraph Rd","city":"Prichard","state":"AL","zip":"unknown","lat":30.734809910248,"lng":-88.065660862402,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Alabama"},{"name":"CGI Phoenix Data Center","operator":"CGI","owner":"CGI","address":"10007 S 51st St, Phoenix, AZ 85044","city":"Phoenix","state":"AZ","zip":"85044","lat":33.355925990211,"lng":-111.974929373775,"yearOnline":"2001","powerMw":0,"sqft":40000,"type":"enterprise","status":"operational","region":"continue:Arizona"},{"name":"Luckett Road North and South Data Centers","operator":"Beale Infrastructure","owner":"Herbert Kai S12 LLC / Kai Trst 97 S12 LLC / Jihong S12 LLC (south parcel); Corporation of the Presiding Bishop of The Church of Jesus Christ of Latter-day Saints (north parcel)","address":"West of Interstate 10 at Luckett and Hardin Roads, just south of the Pinal County line, Marana, AZ","city":"Marana","state":"AZ","zip":"unknown","lat":32.494647975627,"lng":-111.27017070707,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Arizona"},{"name":"Cielo Hudson Data Center","operator":"Cielo Digital Infrastructure","owner":"Arroyo Investors (backing Cielo Digital Infrastructure)","address":"unknown","city":"Hudson","state":"CO","zip":"unknown","lat":40.07,"lng":-104.6,"yearOnline":"unknown","powerMw":750,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Colorado"},{"name":"STACK Infrastructure CHI01B - Chicago","operator":"STACK Infrastructure","owner":"Blue Owl Capital (owner of STACK Infrastructure via acquisition of IPI Partners)","address":"1301 Touhy Ave","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.007606078257,"lng":-87.966857095141,"yearOnline":"unknown","powerMw":24,"sqft":202000,"type":"wholesale","status":"operational","region":"continue:Illinois"},{"name":"STACK Infrastructure CHI02","operator":"STACK Infrastructure","owner":"Blue Owl Capital (via IPI Partners); site-specific real-estate title not verified","address":"1830 Jarvis Ave","city":"Elk Grove Village","state":"IL","zip":"60007","lat":42.013304384024,"lng":-87.960667465382,"yearOnline":"2026","powerMw":36,"sqft":263000,"type":"hyperscale","status":"planned","region":"continue:Illinois"},{"name":"Element Critical Chicago Two (CH2)","operator":"Element Critical","owner":"Element Critical","address":"341 Haynes Drive","city":"Wood Dale","state":"IL","zip":"60191","lat":41.973281548811,"lng":-87.967874006716,"yearOnline":"unknown","powerMw":5,"sqft":45000,"type":"colocation","status":"operational","region":"continue:Illinois"},{"name":"US Signal IL02 Aurora Data Center","operator":"US Signal","owner":"US Signal Company, LLC","address":"4267 Meridian Parkway","city":"Aurora","state":"IL","zip":"unknown","lat":41.773032449126,"lng":-88.217274024127,"yearOnline":"2007","powerMw":1.35,"sqft":70000,"type":"colocation","status":"operational","region":"continue:Illinois"},{"name":"Csquare - Chicago ORD4-A","operator":"Csquare","owner":"Brookfield Infrastructure-backed Csquare/Centersquare (parcel owner not verified)","address":"4513 Western Ave","city":"Lisle","state":"IL","zip":"60532","lat":41.8034618348,"lng":-88.096370734747,"yearOnline":"unknown","powerMw":15,"sqft":194057,"type":"colocation","status":"operational","region":"continue:Illinois"},{"name":"XNet Information Systems, Inc. – Lisle Data Center","operator":"XNet Information Systems, Inc.","owner":"True Properties, LLC","address":"3080 Ogden Ave","city":"Lisle","state":"IL","zip":"60532","lat":41.796400465919,"lng":-88.112201709271,"yearOnline":"1993","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Illinois"},{"name":"Cogent Data Center - Chicago 2","operator":"Cogent Communications, Inc.","owner":"Brog Properties","address":"216 W. Jackson Blvd","city":"Chicago","state":"IL","zip":"60606","lat":41.878167006393,"lng":-87.634386456701,"yearOnline":"unknown","powerMw":0,"sqft":11940,"type":"telecom","status":"operational","region":"continue:Illinois"},{"name":"Cogent Data Center - Chicago 3","operator":"Cogent Communications, Inc.","owner":"Cogent Communications, Inc. (pending sale to I Squared Capital, expected Q3 2026)","address":"4200 W 40th St","city":"Chicago","state":"IL","zip":"60632","lat":41.819358364763,"lng":-87.728328547053,"yearOnline":"unknown","powerMw":7.2,"sqft":44432,"type":"telecom","status":"operational","region":"continue:Illinois"},{"name":"NetSource Chicago Data Center","operator":"NetSource Communications, Inc.","owner":"NetSource Communications, Inc.","address":"2368 Corporate Lane, Suite 112","city":"Naperville","state":"IL","zip":"60563","lat":41.811185235052,"lng":-88.19360428062,"yearOnline":"unknown","powerMw":1,"sqft":3960,"type":"colocation","status":"operational","region":"continue:Illinois"},{"name":"Digital Fortress Chicago Data Center (CHI)","operator":"Digital Fortress","owner":"Digital Fortress","address":"360 E 22nd St","city":"Lombard","state":"IL","zip":"60148","lat":41.845789013427,"lng":-88.007181535193,"yearOnline":"unknown","powerMw":8,"sqft":111185,"type":"colocation","status":"operational","region":"continue:Illinois"},{"name":"HydraVault Data Center","operator":"HydraVault","owner":"ECD Company (Scott D. Greenberg)","address":"2538 S Wabash Avenue","city":"Chicago","state":"IL","zip":"unknown","lat":41.846563054251,"lng":-87.625427392841,"yearOnline":"2027","powerMw":20,"sqft":76000,"type":"colocation","status":"under-construction","region":"continue:Illinois"},{"name":"Hivelocity Chicago 4 (ORD4) — 725 South Wells; marketed by 1547 as CHIL2","operator":"Hivelocity","owner":"Harrison Street Real Estate Capital and fifteenfortyseven Critical Systems Realty (1547) joint venture","address":"725 South Wells Street","city":"Chicago","state":"IL","zip":"60607","lat":41.873036911855,"lng":-87.633517666234,"yearOnline":"2010","powerMw":5,"sqft":66000,"type":"colocation","status":"operational","region":"continue:Illinois"},{"name":"EdgeConneX ATL01 (EDCATL01)","operator":"EdgeConneX","owner":"EQT Infrastructure (minority stake held by Sixth Street as of 2024)","address":"1003 Donnelly Avenue Southwest, Atlanta, GA 30310","city":"Atlanta","state":"GA","zip":"30310","lat":33.729104591356,"lng":-84.420350884154,"yearOnline":"2014","powerMw":2.1,"sqft":29527,"type":"colocation","status":"operational","region":"continue:Georgia"},{"name":"CyrusOne OCB1","operator":"CyrusOne","owner":"KKR and Global Infrastructure Partners (GIP)","address":"4700 Gifford Rd, Council Bluffs, IA 51501","city":"Council Bluffs","state":"IA","zip":"51501","lat":41.214786574226,"lng":-95.879851021513,"yearOnline":"2020","powerMw":18,"sqft":216000,"type":"colocation","status":"operational","region":"continue:Iowa"},{"name":"Ark Data Centers Marion (Cedar Rapids) Data Center","operator":"Ark Data Centers","owner":"Carlyle (funds managed by Carlyle)","address":"460 12th Ave SE, Cedar Rapids, IA 52401","city":"Cedar Rapids","state":"IA","zip":"52401","lat":41.971456064537,"lng":-91.656121385976,"yearOnline":"unknown","powerMw":0.81,"sqft":19000,"type":"colocation","status":"operational","region":"continue:Iowa"},{"name":"US Signal Des Moines IA01 (formerly OneNeck Urbandale Data Center)","operator":"US Signal","owner":"Igneo Infrastructure Partners","address":"11191 N.W. Aurora Ave., Urbandale, IA","city":"Urbandale","state":"IA","zip":"unknown","lat":41.637979586626,"lng":-93.772281917865,"yearOnline":"2009","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Iowa"},{"name":"Pioneer Broadband DataCenter (Presque Isle)","operator":"Pioneer Broadband","owner":"Pioneer Broadband","address":"480 State Street, Suite B6","city":"Presque Isle","state":"ME","zip":"04769","lat":46.694983019912,"lng":-67.974637262439,"yearOnline":"2011","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Maine"},{"name":"COPT Defense Properties - 400 National Business Parkway","operator":"COPT Defense Properties","owner":"COPT Defense Properties (Corporate Office Properties Trust)","address":"400 National Business Parkway, Annapolis Junction, MD, USA","city":"Annapolis Junction","state":"MD","zip":"unknown","lat":39.133006525389,"lng":-76.769412320641,"yearOnline":"2026","powerMw":0,"sqft":148000,"type":"enterprise","status":"under-construction","region":"continue:Maryland"},{"name":"1501 S Clinton Street (Canton Crossing Tower)","operator":"COPT Defense Properties","owner":"COPT Defense Properties (REIT)","address":"1501 South Clinton Street, Baltimore, Maryland 21224, USA","city":"Baltimore","state":"MD","zip":"21224","lat":39.275434157389,"lng":-76.569206245909,"yearOnline":"2006","powerMw":0,"sqft":476000,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"100 Light Street","operator":"COPT Defense Properties","owner":"COPT Defense Properties","address":"100 Light Street, Baltimore, Maryland 21201, USA","city":"Baltimore","state":"MD","zip":"21201","lat":39.28771358946,"lng":-76.613729835704,"yearOnline":"unknown","powerMw":0,"sqft":530000,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"COPT Defense Properties - 206 Research Boulevard","operator":"COPT Defense Properties","owner":"COPT Defense Properties","address":"206 Research Boulevard, Aberdeen, MD, USA","city":"Aberdeen","state":"MD","zip":"unknown","lat":39.506583890638,"lng":-76.149896511141,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"COPT Defense Properties - 210 Research Boulevard","operator":"COPT Defense Properties","owner":"COPT Defense Properties","address":"210 Research Boulevard, Aberdeen, MD, USA","city":"Aberdeen","state":"MD","zip":"unknown","lat":39.506456381272,"lng":-76.14959043727,"yearOnline":"2010","powerMw":0,"sqft":84000,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"Former RevNet RNDC #1 / Integris Braham – 205 2nd St SW","operator":"Revelation Network Management RevNet","owner":"Revelation Network Management RevNet","address":"205 SW 2nd St., Braham, MN 55006","city":"Braham","state":"MN","zip":"55006","lat":45.722,"lng":-93.173,"yearOnline":"unknown","powerMw":0,"sqft":2064,"type":"colocation","status":"decommissioned","region":"continue:Minnesota"},{"name":"Vaultas Alexandria Data Center (ALX1)","operator":"Vaultas","owner":"Vaultas, LLC","address":"720 Hawthorne St, Alexandria, MN 56308","city":"Alexandria","state":"MN","zip":"56308","lat":45.889,"lng":-95.382,"yearOnline":"unknown","powerMw":0,"sqft":10000,"type":"edge","status":"operational","region":"continue:Minnesota"},{"name":"Fidium Mankato Data Center","operator":"Fidium (formerly Consolidated Communications)","owner":"Affiliates of Searchlight Capital Partners and British Columbia Investment Management Corporation (BCI)","address":"221 E Hickory St, Mankato, MN 56001","city":"Mankato","state":"MN","zip":"56001","lat":44.165,"lng":-93.998,"yearOnline":"2008","powerMw":0,"sqft":12500,"type":"colocation","status":"operational","region":"continue:Minnesota"},{"name":"Ark Data Centers Duluth 1","operator":"Ark Data Centers","owner":"Ark Data Centers (Carlyle funds)","address":"3401 Technology Drive, Duluth, MN 55811","city":"Duluth","state":"MN","zip":"55811","lat":46.837,"lng":-92.194,"yearOnline":"unknown","powerMw":1,"sqft":26000,"type":"colocation","status":"operational","region":"continue:Minnesota"},{"name":"Innova Solutions Rochester 2","operator":"Innova Solutions","owner":"Innova Solutions","address":"421 1st Avenue Southwest, Rochester, MN 55902","city":"Rochester","state":"MN","zip":"55902","lat":44.021,"lng":-92.468,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Minnesota"},{"name":"AAIM Minnesota 1","operator":"AAIM Data Centers","owner":"AAIM Data Centers","address":"Domes Dr, Blue Earth, MN 56013","city":"Blue Earth","state":"MN","zip":"56013","lat":43.65,"lng":-94.1,"yearOnline":"2025","powerMw":15,"sqft":10000,"type":"colocation","status":"operational","region":"continue:Minnesota"},{"name":"US Internet Robbinsdale","operator":"US Internet","owner":"US Internet (reported acquired early 2025)","address":"3819 W Broadway, Robbinsdale, MN 55422","city":"Robbinsdale","state":"MN","zip":"55422","lat":45.026,"lng":-93.344,"yearOnline":"unknown","powerMw":0,"sqft":4000,"type":"telecom","status":"planned","region":"continue:Minnesota"},{"name":"702 Communications Data Center (Moorhead)","operator":"VAL-ED Joint Venture, L.L.P. d/b/a 702 Communications","owner":"702 Communications","address":"702 Main Ave, Moorhead, MN 56560","city":"Moorhead","state":"MN","zip":"56560","lat":46.874,"lng":-96.771,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Minnesota"},{"name":"Lumen Kansas City","operator":"Lumen Technologies","owner":"Robinson Park and Copaken Brooks (ownership/asset management partnership; Copaken Brooks is property manager)","address":"1111 Main St., Kansas City, MO 64105","city":"Kansas City","state":"MO","zip":"64105","lat":39.100669941428,"lng":-94.583097086934,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Missouri"},{"name":"304 West 10th Street Data Center","operator":"Revitalization Unlimited","owner":"Revitalization Unlimited","address":"304 W 10th St, Kansas City, MO 64105","city":"Kansas City","state":"MO","zip":"64105","lat":39.102420350701,"lng":-94.587526786173,"yearOnline":"unknown","powerMw":30,"sqft":142085,"type":"enterprise","status":"planned","region":"continue:Missouri"},{"name":"304 W. 10th St / 934 Central St Data Center (proposed)","operator":"Revitalization Unlimited","owner":"Revitalization Unlimited","address":"934 Central St, Kansas City, MO","city":"Kansas City","state":"MO","zip":"unknown","lat":39.103212746343,"lng":-94.586956683671,"yearOnline":"unknown","powerMw":30,"sqft":142085,"type":"enterprise","status":"planned","region":"continue:Missouri"},{"name":"Thornton Labs - Butte","operator":"Thornton Labs","owner":"unknown","address":"65 E Broadway St, Butte, MT 59701","city":"Butte","state":"MT","zip":"59701","lat":46.014133,"lng":-112.533876,"yearOnline":"unknown","powerMw":1,"sqft":55000,"type":"colocation","status":"operational","region":"continue:Montana"},{"name":"760 Washington Avenue Mission Critical Data Center Facility","operator":"Russo Development","owner":"Russo Development","address":"760 Washington Avenue","city":"Carlstadt","state":"NJ","zip":"07072","lat":40.836,"lng":-74.071,"yearOnline":"2003","powerMw":5,"sqft":172000,"type":"enterprise","status":"operational","region":"continue:New Jersey"},{"name":"Verizon Branchburg NEC","operator":"Verizon Wireless (Cellco Partnership d/b/a Verizon Wireless)","owner":"Verizon Wireless","address":"145 Chubb Way","city":"Branchburg","state":"NJ","zip":"08876","lat":40.55,"lng":-74.686,"yearOnline":"unknown","powerMw":0,"sqft":252966,"type":"telecom","status":"operational","region":"continue:New Jersey"},{"name":"1008 Virgil Avenue (former Sungard AS data center)","operator":"none","owner":"Fidelity National Information Services (FIS)","address":"1008 Virgil Avenue","city":"Ridgefield","state":"NJ","zip":"07657","lat":40.83,"lng":-74.012,"yearOnline":"unknown","powerMw":0,"sqft":24900,"type":"enterprise","status":"decommissioned","region":"continue:New Jersey"},{"name":"Rackspace New York 2 (NYC2) — Somerset","operator":"Rackspace Technology","owner":"Mapletree Industrial Trust","address":"200 Campus Drive","city":"Somerset","state":"NJ","zip":"08873","lat":40.54,"lng":-74.571,"yearOnline":"unknown","powerMw":2.738,"sqft":35000,"type":"colocation","status":"operational","region":"continue:New Jersey"},{"name":"Standard Power Coshocton","operator":"Standard Power","owner":"500 N 4th Street LLC d/b/a Standard Power","address":"500 N. Fourth St.","city":"Coshocton","state":"OH","zip":"43812","lat":40.277201628809,"lng":-81.864973532141,"yearOnline":"2022","powerMw":50,"sqft":0,"type":"crypto","status":"operational","region":"continue:Ohio"},{"name":"Viking Data Centers Akron","operator":"Viking Data Centers","owner":"Viking Data Centers","address":"428 Seiberling St","city":"Akron","state":"OH","zip":"44306","lat":41.050401566975,"lng":-81.472039391113,"yearOnline":"2021","powerMw":150,"sqft":380000,"type":"crypto","status":"operational","region":"continue:Ohio"},{"name":"DataYard Data Center","operator":"DataYard","owner":"DataYard","address":"130 W Second St, Suite 250","city":"Dayton","state":"OH","zip":"45402","lat":39.76054001588,"lng":-84.194526884405,"yearOnline":"unknown","powerMw":0.5,"sqft":0,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"Lumen Dayton 1","operator":"Lumen Technologies","owner":"Lumen","address":"600 S Broadway Street","city":"Dayton","state":"OH","zip":"45408","lat":39.745951438641,"lng":-84.214580943545,"yearOnline":"unknown","powerMw":0,"sqft":4685,"type":"telecom","status":"operational","region":"continue:Ohio"},{"name":"TKG Data Center","operator":"The Karcher Group (TKG)","owner":"Gate 77 LLC","address":"5590 Lauby Rd #8","city":"North Canton","state":"OH","zip":"44720","lat":40.907048668869,"lng":-81.430703881114,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Ohio"},{"name":"Lumen Akron 2","operator":"Lumen Technologies","owner":"Lumen","address":"110 South Arlington Street","city":"Akron","state":"OH","zip":"unknown","lat":41.06960614065,"lng":-81.490723368832,"yearOnline":"unknown","powerMw":1.5,"sqft":12000,"type":"telecom","status":"operational","region":"continue:Ohio"},{"name":"DataBank CLE1 - Downtown Cleveland Data Center","operator":"DataBank","owner":"Verizon Business","address":"1255 Euclid Avenue","city":"Cleveland","state":"OH","zip":"unknown","lat":41.500747111044,"lng":-81.683703905782,"yearOnline":"unknown","powerMw":0.4,"sqft":7440,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"Windstream Cleveland","operator":"Windstream","owner":"Windstream","address":"200 W Prospect Ave","city":"Cleveland","state":"OH","zip":"unknown","lat":41.497927559473,"lng":-81.696579358957,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Ohio"},{"name":"InfinIT Cleveland Data Center (formerly N2Net Cleveland Data Center)","operator":"InfinIT (formerly N2Net)","owner":"E.V. Bishoff Company","address":"815 Superior Avenue","city":"Cleveland","state":"OH","zip":"unknown","lat":41.497004987896,"lng":-81.698976253954,"yearOnline":"unknown","powerMw":0,"sqft":20000,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"Ark Data Centers Independence","operator":"Ark Data Centers","owner":"The Carlyle Group","address":"7300 East Pleasant Valley Road","city":"Independence","state":"OH","zip":"44131","lat":41.361907728321,"lng":-81.631357128303,"yearOnline":"unknown","powerMw":2.5,"sqft":0,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"Golden West Rapid City Skyline Facility","operator":"Golden West Telecommunications Coop., Inc.","owner":"Golden West Telecommunications Coop., Inc.","address":"3850 Tower Road, Rapid City, SD 57701","city":"Rapid City","state":"SD","zip":"57701","lat":44.047645,"lng":-103.244187,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:South Dakota"},{"name":"Harrisburg I, LLC Data Center","operator":"Harrisburg I, LLC (Provident Realty Advisors/Provident Data Centers)","owner":"Harrisburg I, LLC (affiliate of Provident Realty Advisors/Provident Data Centers)","address":"650 S Harrisburg St","city":"Harrisburg","state":"PA","zip":"unknown","lat":40.230267948727,"lng":-76.806953108959,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"Popca LLC: Scranton Campus","operator":"Popca LLC","owner":"Popca LLC / Mark Gawron","address":"819 Newton Rd","city":"Newton Township","state":"PA","zip":"unknown","lat":40.228954359071,"lng":-79.714949434028,"yearOnline":"unknown","powerMw":0,"sqft":290400,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"Windstream San Antonio","operator":"Windstream (Uniti Group)","owner":"Entrada Partners","address":"106 S St Mary's St, San Antonio, TX 78205","city":"San Antonio","state":"TX","zip":"78205","lat":29.424434181806,"lng":-98.491445780823,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Texas"},{"name":"CityNAP","operator":"CityNAP (a Liquid Networx Partner)","owner":"CityNAP","address":"415 N Main Ave","city":"San Antonio","state":"TX","zip":"unknown","lat":29.428871756265,"lng":-98.493978717356,"yearOnline":"2006","powerMw":0,"sqft":31140,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Fairfax SC Data Center","operator":"Cogent Communications","owner":"Cogent Communications","address":"831 Hampton Avenue","city":"Fairfax","state":"SC","zip":"29827","lat":32.963815531481,"lng":-81.235698545552,"yearOnline":"1986","powerMw":2.08,"sqft":30800,"type":"telecom","status":"operational","region":"continue:South Carolina"},{"name":"IAD-03 Data Center","operator":"Aligned Data Centers","owner":"Aligned Data Centers","address":"22715 Relocation Drive","city":"Sterling","state":"VA","zip":"20166","lat":38.989056314393,"lng":-77.439342398453,"yearOnline":"unknown","powerMw":72,"sqft":430000,"type":"hyperscale","status":"operational","region":"continue:Virginia"},{"name":"Vantage VA21","operator":"Vantage Data Centers","owner":"VANTAGE DATA CENTERS VA2 LLC","address":"22318 Glenn Drive, Building 1","city":"Sterling","state":"VA","zip":"20164","lat":38.997758196487,"lng":-77.428123102601,"yearOnline":"2024","powerMw":0,"sqft":80000,"type":"wholesale","status":"operational","region":"continue:Virginia"},{"name":"Vienna Office & Data Center","operator":"Cogent Communications","owner":"Fortress Investment Group","address":"1921 Gallows Road","city":"Vienna","state":"VA","zip":"22182","lat":38.913842187948,"lng":-77.227800212765,"yearOnline":"unknown","powerMw":0.4,"sqft":0,"type":"telecom","status":"operational","region":"continue:Virginia"},{"name":"Neutron - Spokane","operator":"Neutron LLC (Neutron Colocation)","owner":"Neutron Colocation","address":"422 West Riverside Avenue","city":"Spokane","state":"WA","zip":"unknown","lat":47.658010821498,"lng":-117.418417415177,"yearOnline":"unknown","powerMw":0,"sqft":50000,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"Fusion Connect - Walla Walla Data Center","operator":"Fusion Connect","owner":"OrbitCom","address":"1 W. Alder","city":"Walla Walla","state":"WA","zip":"99362","lat":46.06577729972,"lng":-118.338696976271,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"Franklin PUD Colocation Data Center / Franklin PUD Data Center","operator":"Franklin PUD (Public Utility District No. 1 of Franklin County)","owner":"Public Utility District No. 1 of Franklin County (Franklin PUD)","address":"1411 W Clark Street","city":"Pasco","state":"WA","zip":"99301","lat":46.228669706653,"lng":-119.106070675063,"yearOnline":"unknown","powerMw":0,"sqft":19238,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"NE Edge: Connecticut Data Center (Millstone Data Center)","operator":"NE Edge, LLC (NE Edge Waterford LLC)","owner":"Dominion Energy Nuclear Connecticut, Inc. (Millstone Power Station property owner)","address":"314 Rope Ferry Rd","city":"Waterford","state":"CT","zip":"unknown","lat":41.326802804187,"lng":-72.169645142565,"yearOnline":"unknown","powerMw":300,"sqft":1500000,"type":"hyperscale","status":"decommissioned","region":"continue:Connecticut"},{"name":"CT Data Center at Beacon Falls","operator":"CT Data Center, LLC / O&G Industries","owner":"O&G Industries","address":"Area of Gruber Road, Railroad Avenue, and Lopus Road","city":"Beacon Falls","state":"CT","zip":"unknown","lat":41.44240406895,"lng":-73.06432531024,"yearOnline":"unknown","powerMw":32,"sqft":294164,"type":"wholesale","status":"under-construction","region":"continue:Connecticut"},{"name":"STACK Infrastructure CHI01A","operator":"STACK Infrastructure","owner":"IPI Partners (owned by Blue Owl Capital as of Jan 2025)","address":"1441 Touhy Ave","city":"Chicago","state":"IL","zip":"unknown","lat":42.01271136317,"lng":-87.667013271731,"yearOnline":"2015","powerMw":12,"sqft":221000,"type":"wholesale","status":"operational","region":"continue:Illinois"},{"name":"KARIS Critical potential data center at 150 W. Warrenville Road (Naperville)","operator":"KARIS Critical","owner":"KARIS Critical","address":"150 W. Warrenville Road","city":"Naperville","state":"IL","zip":"unknown","lat":41.812265624182,"lng":-88.151115747772,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"planned","region":"continue:Illinois"},{"name":"GoNetspeed Arab POP / local telecom office","operator":"GoNetspeed","owner":"GoNetspeed","address":"113 S. Main","city":"Arab","state":"AL","zip":"unknown","lat":34.315286762822,"lng":-86.495814454823,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Alabama"},{"name":"Edged Atlanta ATL01-02","operator":"Edged (an Endeavour company)","owner":"Endeavour (parent of Edged)","address":"1760 Thomas Street NW, Atlanta, GA 30318","city":"Atlanta","state":"GA","zip":"30318","lat":33.805,"lng":-84.441,"yearOnline":"2026","powerMw":100,"sqft":452280,"type":"hyperscale","status":"operational","region":"continue:Georgia"},{"name":"T5 @ Atlanta IV","operator":"T5 Data Centers","owner":"T5 Data Centers; platform jointly owned by QuadReal Property Group and T5 principals","address":"Gullatt Road, Fairburn, GA","city":"Fairburn","state":"GA","zip":"unknown","lat":33.569,"lng":-84.598,"yearOnline":"unknown","powerMw":200,"sqft":1320000,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Meta Stanton Springs Data Center","operator":"Meta","owner":"Meta Platforms, Inc.","address":"240 Shire Parkway, Social Circle, GA 30025","city":"Social Circle","state":"GA","zip":"30025","lat":33.605,"lng":-83.619,"yearOnline":"2020","powerMw":0,"sqft":0,"type":"hyperscale","status":"operational","region":"continue:Georgia"},{"name":"Project Sail","operator":"Prologis","owner":"Prologis","address":"1736 Weldon Road, Newnan, GA 30263","city":"Newnan","state":"GA","zip":"30263","lat":33.345,"lng":-84.875,"yearOnline":"2036","powerMw":900,"sqft":4340000,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Gregory Road Data Center","operator":"Universal Planning & Development, LLC","owner":"JBW Investments, LLC","address":"Gregory Road, Covington, GA 30014","city":"Covington","state":"GA","zip":"30014","lat":33.582,"lng":-83.837,"yearOnline":"2036","powerMw":360,"sqft":1410000,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Gregory Road Data Center","operator":"Universal Planning and Development, LLC (project proponent; end-user operator not identified)","owner":"Tide Investments LLC; John B. Williams & Alyce Toonk; JBW Investments LLC; JF Land Investments LLC","address":"Gregory Road, Covington / Newton County, GA","city":"Covington","state":"GA","zip":"unknown","lat":33.611,"lng":-83.833,"yearOnline":"unknown","powerMw":0,"sqft":1410000,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"GA1 – Maysville","operator":"Ardent Data Centers","owner":"Northern Data Group","address":"63-acre site, Maysville, GA 30558","city":"Maysville","state":"GA","zip":"30558","lat":34.262,"lng":-83.558,"yearOnline":"2026/2027","powerMw":120,"sqft":0,"type":"hyperscale","status":"under-construction","region":"continue:Georgia"},{"name":"Southeast Property: Hampton Campus (Henderson Farms)","operator":"Southeast Property Holdings LLC","owner":"Southeast Property Holdings LLC","address":"North of Georgia 20 at McDonough Street, Hampton, GA 30228","city":"Hampton","state":"GA","zip":"30228","lat":33.385,"lng":-84.286,"yearOnline":"unknown","powerMw":0,"sqft":585000,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Southeast Property: Hampton Campus (Henderson Farms)","operator":"Southeast Property Holdings LLC","owner":"Southeast Property Holdings LLC","address":"North of Georgia 20 at McDonough Street, Hampton, GA","city":"Hampton","state":"GA","zip":"unknown","lat":33.383,"lng":-84.282,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"The Crossings Campus","operator":"Link Logistics","owner":"B9 Union City Owner LLC / Link Logistics (Blackstone-owned)","address":"Evans Drive and Westbrook Road, Union City, GA 30349","city":"Union City","state":"GA","zip":"30349","lat":33.577,"lng":-84.549,"yearOnline":"2028","powerMw":0,"sqft":1560000,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Digital Realty Fort Gillem ATL15/ATL16","operator":"Digital Realty","owner":"Digital Fort Gillem LLC","address":"Former Fort Gillem property, Gillem Logistics Center, Forest Park, GA 30297","city":"Forest Park","state":"GA","zip":"30297","lat":33.616,"lng":-84.349,"yearOnline":"unknown","powerMw":200,"sqft":1900000,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Wallace Jackson Data Center Campus","operator":"Wallace Jackson, LLC","owner":"Wallace Jackson, LLC","address":"5745 and 5841 Jackson Road, Griffin, GA 30223","city":"Griffin","state":"GA","zip":"30223","lat":33.309,"lng":-84.32,"yearOnline":"unknown","powerMw":0,"sqft":5000000,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Wallace Jackson Data Center Campus","operator":"Wallace Jackson LLC","owner":"Havenwood Holdings","address":"5745 and 5841 Jackson Road, Griffin, GA","city":"Griffin","state":"GA","zip":"unknown","lat":33.2112,"lng":-84.2704,"yearOnline":"unknown","powerMw":0,"sqft":4986000,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"C1 Kansas Data Center (formerly AOScloud Data Center)","operator":"One C1","owner":"One C1","address":"17795 W. 106th, Ste 200","city":"Olathe","state":"KS","zip":"66061","lat":38.931,"lng":-94.803,"yearOnline":"unknown","powerMw":0,"sqft":34000,"type":"colocation","status":"operational","region":"continue:Kansas"},{"name":"Beale: De Soto 3","operator":"Beale Infrastructure","owner":"Mount Sunflower Properties, LLC (managed by Beale Infrastructure); Blue Owl-backed","address":"10200 Edgerton Rd","city":"De Soto","state":"KS","zip":"66018","lat":38.961,"lng":-94.959,"yearOnline":"unknown","powerMw":0,"sqft":1140000,"type":"hyperscale","status":"planned","region":"continue:Kansas"},{"name":"Microsoft Project Ginger East - Building 1","operator":"Microsoft","owner":"Microsoft","address":"1475 SE Maffitt Lake Ct, Building 1","city":"West Des Moines","state":"IA","zip":"50265","lat":41.516372648315,"lng":-93.724674927826,"yearOnline":"2027","powerMw":0,"sqft":250000,"type":"hyperscale","status":"under-construction","region":"continue:Iowa"},{"name":"COPT Defense Properties - 7880 Milestone Parkway","operator":"COPT Defense Properties","owner":"COPT Defense Properties","address":"7880 Milestone Parkway","city":"Hanover","state":"MD","zip":"unknown","lat":39.143269051013,"lng":-76.750977155135,"yearOnline":"2015","powerMw":0,"sqft":122332,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"COPT Defense Properties - 901 Elkridge Landing Road","operator":"COPT Defense Properties","owner":"COPT Defense Properties (REIT, NYSE: OFC)","address":"901 Elkridge Landing Road","city":"Linthicum Heights","state":"MD","zip":"unknown","lat":39.20141272358,"lng":-76.687165894795,"yearOnline":"unknown","powerMw":0,"sqft":60988,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"CIRQL / 7134 Columbia Gateway Drive","operator":"COPT Defense Properties","owner":"COPT Defense Properties","address":"7134 Columbia Gateway Drive","city":"Columbia","state":"MD","zip":"unknown","lat":39.177747405826,"lng":-76.807378488884,"yearOnline":"1990","powerMw":0,"sqft":21586,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"South West Data Centers - Las Vegas Data Center","operator":"Southwest Data Centers","owner":"Southwest Data Centers","address":"4887 E St Louis Ave, Las Vegas, NV 89104","city":"Las Vegas","state":"NV","zip":"89104","lat":36.149076419353,"lng":-115.068041517778,"yearOnline":"unknown","powerMw":0.1,"sqft":5000,"type":"colocation","status":"operational","region":"continue:Nevada"},{"name":"Nebius Independence AI Factory","operator":"Nebius","owner":"Nebius","address":"near Route 78 and Little Blue Parkway, Independence, MO","city":"Independence","state":"MO","zip":"unknown","lat":38.978255026869,"lng":-94.399377125258,"yearOnline":"unknown","powerMw":1200,"sqft":2500000,"type":"hyperscale","status":"under-construction","region":"continue:Missouri"},{"name":"Cogent POP Bismarck","operator":"Cogent Communications","owner":"Cogent Communications","address":"215 S 15th St, Bismarck, ND 58504","city":"Bismarck","state":"ND","zip":"58504","lat":46.803806264732,"lng":-100.76939212255,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"continue:North Dakota"},{"name":"Continent 8 Atlantic City DC2","operator":"Continent 8 Technologies","owner":"AC Ocean Walk, LLC (owner of Ocean Casino Resort at 500 Boardwalk)","address":"Ocean Resort Casino, 500 Boardwalk","city":"Atlantic City","state":"NJ","zip":"08401","lat":39.367,"lng":-74.405,"yearOnline":"2018","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:New Jersey"},{"name":"DXC Technology Clifton Data Center","operator":"DXC Technology","owner":"201 MAIN AVENUE, LLC","address":"201 Main Ave","city":"Clifton","state":"NJ","zip":"07014","lat":40.837,"lng":-74.139,"yearOnline":"2011","powerMw":0,"sqft":285000,"type":"enterprise","status":"operational","region":"continue:New Jersey"},{"name":"Brightspeed Warren","operator":"Brightspeed","owner":"Brightspeed","address":"220 S Park Ave","city":"Warren","state":"OH","zip":"44481","lat":41.234694500017,"lng":-80.817929638667,"yearOnline":"unknown","powerMw":0,"sqft":91161,"type":"telecom","status":"operational","region":"continue:Ohio"},{"name":"Brightspeed Mansfield","operator":"Brightspeed","owner":"Milliron Foundation","address":"25 S Mulberry St","city":"Mansfield","state":"OH","zip":"unknown","lat":40.757109318181,"lng":-82.5180105836,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"decommissioned","region":"continue:Ohio"},{"name":"5C Data Centers CMH01 (5CDC Columbus - CMH01)","operator":"5C Group Inc. / 5C Data Centers","owner":"5C Group / 5C Data Centers","address":"601 Benjamin Dr","city":"Springfield","state":"OH","zip":"45502","lat":39.912526526176,"lng":-83.720844699984,"yearOnline":"2026","powerMw":75,"sqft":66781,"type":"hyperscale","status":"under-construction","region":"continue:Ohio"},{"name":"SDN Communications La Mesa Data Center at Mark Shlanta Technology Park","operator":"South Dakota Network dba SDN Communications","owner":"South Dakota Network dba SDN Communications","address":"2900 W. 10th Street, Sioux Falls, SD 57104","city":"Sioux Falls","state":"SD","zip":"57104","lat":43.546529,"lng":-96.764101,"yearOnline":"2012","powerMw":0,"sqft":50000,"type":"telecom","status":"operational","region":"continue:South Dakota"},{"name":"Data3 - Tulsa Data Center","operator":"DATA3 Corporation","owner":"DATA3 Corporation","address":"2448 E. 81st St., 700, Tulsa, OK 74137","city":"Tulsa","state":"OK","zip":"74137","lat":36.046349524426,"lng":-95.954675073332,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Oklahoma"},{"name":"American Tower EDC Austin","operator":"American Tower Corporation","owner":"American Tower Corporation (REIT)","address":"1601 West 10th Street, Austin, TX 78703","city":"Austin","state":"TX","zip":"78703","lat":30.279077093084,"lng":-97.759985944263,"yearOnline":"2020","powerMw":0.1,"sqft":360,"type":"edge","status":"operational","region":"continue:Texas"},{"name":"Duos Edge AI Corpus Christi Edge Data Center","operator":"Duos Edge AI, Inc.","owner":"Duos Edge AI, Inc.","address":"717 N. Tancahua Street","city":"Corpus Christi","state":"TX","zip":"78401","lat":27.796515996581,"lng":-97.398619765847,"yearOnline":"2026","powerMw":0.45,"sqft":0,"type":"edge","status":"operational","region":"continue:Texas"},{"name":"Dumas Edge Data Center","operator":"Duos Edge AI, Inc.","owner":"Duos Edge AI, Inc.","address":"421 W 4th St","city":"Dumas","state":"TX","zip":"79029","lat":35.862013785017,"lng":-101.977624328844,"yearOnline":"2025","powerMw":0,"sqft":715,"type":"edge","status":"operational","region":"continue:Texas"},{"name":"Duos Edge AI Hereford Edge Data Center","operator":"Duos Edge AI, Inc.","owner":"Duos Edge AI, Inc.","address":"601 N 25 Mile Ave","city":"Hereford","state":"TX","zip":"79045","lat":34.836766226732,"lng":-102.405461823569,"yearOnline":"2026","powerMw":0,"sqft":688,"type":"edge","status":"operational","region":"continue:Texas"},{"name":"CoreWeave Plano Data Center","operator":"CoreWeave","owner":"Lincoln Rackhouse / Lincoln Property Company","address":"1000 Coit Rd","city":"Plano","state":"TX","zip":"75075","lat":33.011707716343,"lng":-96.766609590998,"yearOnline":"2023","powerMw":13,"sqft":454421,"type":"hyperscale","status":"operational","region":"continue:Texas"},{"name":"Dallas - Richardson Data Center","operator":"Flexential","owner":"GI Partners","address":"3010 Waterview Parkway","city":"Richardson","state":"TX","zip":"75080","lat":32.993286046303,"lng":-96.756173865295,"yearOnline":"unknown","powerMw":3.75,"sqft":100807,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"TierPoint Dallas - Allen Data Center (DA2)","operator":"TierPoint","owner":"Compass Datacenters","address":"820 Allen Commerce Parkway","city":"Allen","state":"TX","zip":"75013","lat":33.137141913502,"lng":-96.661342631579,"yearOnline":"unknown","powerMw":0,"sqft":30000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Evocative Dallas Data Center (DAL6)","operator":"Evocative Data Centers","owner":"Mapletree Industrial Trust (Mapletree)","address":"1221 Coit Road","city":"Plano","state":"TX","zip":"75075","lat":33.016063225651,"lng":-96.766853533698,"yearOnline":"unknown","powerMw":12,"sqft":111000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Cogent — Essex Junction / Vermont IX Extended Facility (1 Ivy Lane, Essex Junction, VT)","operator":"Cogent Communications, Inc.","owner":"Cogent Communications, Inc.","address":"1 Ivy Lane, Essex Junction, VT","city":"Essex Junction","state":"VT","zip":"unknown","lat":44.492855975268,"lng":-73.109995049568,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Vermont"},{"name":"HorizonIQ Seattle 2 Data Center (formerly INAP Seattle Data Center SEF003)","operator":"HorizonIQ","owner":"Sabey Data Centers / Sabey Data Center Properties LLC","address":"3555 S 120th Place","city":"Seattle","state":"WA","zip":"unknown","lat":47.49556432293,"lng":-122.287363552033,"yearOnline":"1999","powerMw":5,"sqft":64000,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"Digital Realty ORD15 / 9401 West Grand Avenue","operator":"Digital Realty","owner":"Digital Realty Trust","address":"9401 W Grand Ave","city":"Franklin Park","state":"IL","zip":"60131","lat":41.929374813393,"lng":-87.861637941759,"yearOnline":"unknown","powerMw":36,"sqft":390000,"type":"colocation","status":"operational","region":"continue:Illinois"},{"name":"CyrusOne CHI6 - Wood Dale","operator":"CyrusOne","owner":"CyrusOne (owned by funds managed by KKR and Global Infrastructure Partners)","address":"Bryn Mawr Ave & Pine Ave","city":"Wood Dale","state":"IL","zip":"60106","lat":41.979043147779,"lng":-87.963190641961,"yearOnline":"unknown","powerMw":18,"sqft":1400000,"type":"wholesale","status":"under-construction","region":"continue:Illinois"},{"name":"T5 @ Chicago III","operator":"T5 Data Centers","owner":"T5 Data Centers / QuadReal Property Group (joint platform)","address":"11650 W. Grand Avenue","city":"Northlake","state":"IL","zip":"unknown","lat":41.931250321106,"lng":-87.916317119592,"yearOnline":"2027","powerMw":36,"sqft":300000,"type":"wholesale","status":"under-construction","region":"continue:Illinois"},{"name":"Lumen Chicago 3","operator":"Lumen Technologies","owner":"Onni Group","address":"200 North LaSalle Street","city":"Chicago","state":"IL","zip":"60601","lat":41.885796837609,"lng":-87.632526709602,"yearOnline":"1996","powerMw":17.6,"sqft":43611,"type":"telecom","status":"operational","region":"continue:Illinois"},{"name":"Lumen Chicago 4","operator":"Lumen Technologies","owner":"3Edgewood","address":"600 West Chicago Ave., 1st and 2nd floor","city":"Chicago","state":"IL","zip":"60610","lat":41.896532694541,"lng":-87.64308149345,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Illinois"},{"name":"Lumen South Holland 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"200 East 166th Street","city":"South Holland","state":"IL","zip":"unknown","lat":41.593675490013,"lng":-87.611340172028,"yearOnline":"unknown","powerMw":0,"sqft":57847,"type":"telecom","status":"operational","region":"continue:Illinois"},{"name":"Project Azalea","operator":"Project Turbo LLC (Williams Brothers Development)","owner":"unknown","address":"2660-2358 Randall Hunt Road, Thomson, GA","city":"Thomson","state":"GA","zip":"unknown","lat":33.5005,"lng":-81.982,"yearOnline":"2029","powerMw":400,"sqft":1500000,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Project Spalding","operator":"Montana Property Group LLC","owner":"Alan R. Mobley","address":"Spalding County, GA (site not publicly listed)","city":"Griffin","state":"GA","zip":"unknown","lat":33.2109,"lng":-84.2705,"yearOnline":"2030","powerMw":0,"sqft":2559500,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Hickman Property Data Center Campus (DRI 4422)","operator":"East Village Dothan, LLC","owner":"East Village Dothan LLC","address":"Area south of I-20 and east of Liberty Road, Douglas County / Villa Rica, GA","city":"Villa Rica","state":"GA","zip":"unknown","lat":33.7329,"lng":-84.8833,"yearOnline":"unknown","powerMw":0,"sqft":6220000,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"508-22-700 EHRM Infrastructure and Data Center Upgrades — Joseph Maxwell Cleland Atlanta VA Medical Center","operator":"U.S. Department of Veterans Affairs (Atlanta VA Health Care System)","owner":"U.S. Department of Veterans Affairs","address":"Joseph Maxwell Cleland Atlanta VA Medical Center, North Druid Hills, GA","city":"North Druid Hills","state":"GA","zip":"unknown","lat":33.803,"lng":-84.322,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"planned","region":"continue:Georgia"},{"name":"Ardent Georgia (Northern Data Maysville)","operator":"Ardent Data Centers (Northern Data), now within Quake AI (RUM Group)","owner":"RUM Group (via Quake AI/Northern Data assets)","address":"Maysville, GA (63-acre site; exact address not publicly listed)","city":"Maysville","state":"GA","zip":"unknown","lat":34.258,"lng":-83.562,"yearOnline":"2027","powerMw":120,"sqft":0,"type":"hyperscale","status":"under-construction","region":"continue:Georgia"},{"name":"Project Sail","operator":"Prologis","owner":"Prologis, Inc. (NYSE: PLD)","address":"Northwest Coweta County, GA (site not publicly listed)","city":"Coweta County","state":"GA","zip":"unknown","lat":33.45,"lng":-84.85,"yearOnline":"unknown","powerMw":900,"sqft":4340000,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Walmart Colorado Springs Data Center","operator":"Walmart","owner":"Walmart","address":"10625 Federal Drive","city":"Colorado Springs","state":"CO","zip":"unknown","lat":38.98304666776,"lng":-104.794497378798,"yearOnline":"2012","powerMw":16.259,"sqft":210000,"type":"enterprise","status":"operational","region":"continue:Colorado"},{"name":"Lumen Phoenix 1 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"811 South 16th Street, Phoenix, AZ 85034","city":"Phoenix","state":"AZ","zip":"85034","lat":33.439,"lng":-112.045,"yearOnline":"unknown","powerMw":11,"sqft":47836,"type":"colocation","status":"operational","region":"continue:Arizona"},{"name":"Lumen Phoenix 2 Data Center","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"17 East Virginia Avenue, Phoenix, AZ 85004","city":"Phoenix","state":"AZ","zip":"85004","lat":33.473,"lng":-112.073,"yearOnline":"unknown","powerMw":0,"sqft":5000,"type":"colocation","status":"operational","region":"continue:Arizona"},{"name":"Lumen Phoenix 4","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"3220 N 3rd St, Phoenix, AZ 85012","city":"Phoenix","state":"AZ","zip":"85012","lat":33.486,"lng":-112.07000000000001,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Arizona"},{"name":"Lumen Phoenix 4","operator":"Lumen","owner":"Lumen","address":"3220 N 3rd St, Phoenix, AZ","city":"Phoenix","state":"AZ","zip":"unknown","lat":33.484877249508,"lng":-112.069487857795,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Arizona"},{"name":"Liquid Web Phoenix (hosted at phoenixNAP/RadiusDC Phoenix I DC1)","operator":"phoenixNAP","owner":"RadiusDC (pending close Q2 2026); previously phoenixNAP","address":"7025 N Scottsdale Rd, Suite 320, Scottsdale, AZ 85253","city":"Scottsdale","state":"AZ","zip":"85253","lat":33.539,"lng":-111.927,"yearOnline":"2010","powerMw":20,"sqft":200000,"type":"colocation","status":"operational","region":"continue:Arizona"},{"name":"CenterServ Scottsdale Data Center","operator":"CenterServ (CenterServ International, Ltd.)","owner":"CenterServ","address":"7272 East Indian School Road, Scottsdale, AZ","city":"Scottsdale","state":"AZ","zip":"unknown","lat":33.494,"lng":-111.925,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Arizona"},{"name":"Compass Goodyear - Building 1","operator":"Compass Datacenters","owner":"Compass Datacenters (via Compass Datacenters-PHX I entities); parent owners Brookfield Infrastructure and Ontario Teachers’ Pension Plan","address":"850 S Bullard Ave, Building 3, Goodyear, AZ 85338","city":"Goodyear","state":"AZ","zip":"85338","lat":33.431,"lng":-112.355,"yearOnline":"unknown","powerMw":212,"sqft":0,"type":"wholesale","status":"operational","region":"continue:Arizona"},{"name":"STACK Infrastructure PHX01C","operator":"STACK Infrastructure","owner":"STACK Infrastructure","address":"W Lower Buckeye Rd & S Litchfield Rd, Avondale, AZ 85323","city":"Avondale","state":"AZ","zip":"85323","lat":33.424,"lng":-112.353,"yearOnline":"unknown","powerMw":225,"sqft":1000000,"type":"hyperscale","status":"planned","region":"continue:Arizona"},{"name":"Project Baccara - Building 1","operator":"Takanock, LLC","owner":"Baccara Eagle Land, LLC","address":"14707-14323 W Olive Ave, Waddell, AZ 85355","city":"Waddell","state":"AZ","zip":"85355","lat":33.579,"lng":-112.336,"yearOnline":"unknown","powerMw":700,"sqft":1000000,"type":"hyperscale","status":"planned","region":"continue:Arizona"},{"name":"Project Baccara - Building 1","operator":"Takanock, LLC","owner":"Takanock, LLC","address":"14707-14323 W Olive Ave","city":"Waddell","state":"AZ","zip":"85355","lat":33.565735455538,"lng":-112.367613396717,"yearOnline":"unknown","powerMw":700,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Arizona"},{"name":"NEC 491st Ave & Thomas Rd","operator":"unknown","owner":"Grandilla (Arizona) Inc. / Foot Creek Corporation","address":"Northeast corner of 491st Avenue and Thomas Road, Tonopah, AZ 85354","city":"Tonopah","state":"AZ","zip":"85354","lat":33.447,"lng":-113.044,"yearOnline":"unknown","powerMw":0,"sqft":2250000,"type":"hyperscale","status":"planned","region":"continue:Arizona"},{"name":"ClearDATA Networks – Phoenix Data Center","operator":"ClearDATA Networks","owner":"ClearData","address":"4250 E Camelback Rd, Phoenix, AZ 85018","city":"Phoenix","state":"AZ","zip":"85018","lat":33.509,"lng":-111.987,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Arizona"},{"name":"HBS Phoenix","operator":"Heartland Business Systems","owner":"Heartland Business Systems","address":"10201 S 51st St, Suite 180, Phoenix, AZ 85044","city":"Phoenix","state":"AZ","zip":"85044","lat":33.35000000000001,"lng":-111.972,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Arizona"},{"name":"Cogent Data Center - Indianapolis","operator":"Cogent Communications, Inc.","owner":"Cogent Communications, Inc.","address":"13 South Davidson St, Indianapolis, IN 46202","city":"Indianapolis","state":"IN","zip":"46202","lat":39.765900319172,"lng":-86.143996124261,"yearOnline":"unknown","powerMw":0,"sqft":4400,"type":"telecom","status":"operational","region":"continue:Indiana"},{"name":"LGI Broad Ripple","operator":"LifeGrid Internet","owner":"LifeGrid Internet","address":"1810 Broad Ripple Ave, Suite 12, Indianapolis, IN 46220","city":"Indianapolis","state":"IN","zip":"46220","lat":39.86869971954,"lng":-86.129256228644,"yearOnline":"unknown","powerMw":0,"sqft":15992,"type":"colocation","status":"operational","region":"continue:Indiana"},{"name":"Sanford Woods Industrial and Technical Campus","operator":"multiFUELS LP","owner":"New England Energy / Northern New England Energy Company (Gibbs family)","address":"South Sanford site bisected by the Mousam River (approx. 1,060 acres)","city":"Sanford","state":"ME","zip":"unknown","lat":43.396,"lng":-70.773,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Maine"},{"name":"Scarborough Technology Park","operator":"unknown","owner":"Daniel Dickinson","address":"52-acre site in west Scarborough (reported as west of the Maine Turnpike and north of Two Rod Rd)","city":"Scarborough","state":"ME","zip":"unknown","lat":43.6,"lng":-70.372,"yearOnline":"unknown","powerMw":0,"sqft":140000,"type":"wholesale","status":"planned","region":"continue:Maine"},{"name":"Proposed Wiscasset Old Ferry Road data center (near former Maine Yankee) — no official project name disclosed","operator":"unknown","owner":"Town of Wiscasset","address":"Old Ferry Road, adjacent to former Maine Yankee Nuclear Power Plant (town-owned parcel)","city":"Wiscasset","state":"ME","zip":"04578","lat":44.003,"lng":-69.666,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Maine"},{"name":"The Bell (6716 Alexander Bell Drive)","operator":"COPT Defense Properties","owner":"COPT Defense Properties","address":"6716 Alexander Bell Drive, Columbia, MD, USA","city":"Columbia","state":"MD","zip":"unknown","lat":39.185847285814,"lng":-76.81054980004,"yearOnline":"1990","powerMw":0,"sqft":52018,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"The Stade / 7067 Columbia Gateway Drive","operator":"COPT Defense Properties","owner":"COPT Defense Properties","address":"7067 Columbia Gateway Drive, Columbia, MD, USA","city":"Columbia","state":"MD","zip":"unknown","lat":39.172262479808,"lng":-76.806952268299,"yearOnline":"2000","powerMw":0,"sqft":83508,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"ITS Data Center","operator":"Infrastructure Technology Solutions (ITS)","owner":"Infrastructure Technology Solutions","address":"22068 Business Hwy 151","city":"Monticello","state":"IA","zip":"52310","lat":42.254968734885,"lng":-91.160732888218,"yearOnline":"unknown","powerMw":0,"sqft":3200,"type":"colocation","status":"operational","region":"continue:Iowa"},{"name":"SFN MN-Albert Lea","operator":"South Front Networks","owner":"South Front Networks","address":"1202 W 9th St","city":"Albert Lea","state":"MN","zip":"56007","lat":43.633246510317,"lng":-93.383659834929,"yearOnline":"unknown","powerMw":0,"sqft":908,"type":"telecom","status":"operational","region":"continue:Minnesota"},{"name":"ISP.Net DC2","operator":"ISP.Net","owner":"LV.Net / ISP.Net","address":"1221 S Casino Center Blvd","city":"Las Vegas","state":"NV","zip":"89104","lat":36.157061362281,"lng":-115.152323366611,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Nevada"},{"name":"Hamilton Managed Hosting – Aurora Data Center","operator":"Hamilton Business Technologies (division of Hamilton Telecommunications)","owner":"Hamilton Telecommunications, Inc.","address":"1001 12th St, Aurora, NE 68818","city":"Aurora","state":"NE","zip":"68818","lat":40.866328658503,"lng":-98.002997697355,"yearOnline":"2004","powerMw":0,"sqft":14000,"type":"colocation","status":"operational","region":"continue:Nebraska"},{"name":"Lumen Columbus 5","operator":"Lumen Technologies","owner":"tw telecom","address":"345 N. 2nd St.","city":"Columbus","state":"OH","zip":"43215","lat":39.95476956709,"lng":-83.002818787044,"yearOnline":"unknown","powerMw":0,"sqft":10000,"type":"telecom","status":"operational","region":"continue:Ohio"},{"name":"BlueBridge Networks – Cleveland (Sterling Building, 1255–1275 Euclid Ave)","operator":"BlueBridge Networks, LLC","owner":"Sterling Linder Investors LLC","address":"1275 Euclid Avenue","city":"Cleveland","state":"OH","zip":"44115","lat":41.500784571546,"lng":-81.683416708524,"yearOnline":"unknown","powerMw":0,"sqft":193600,"type":"colocation","status":"operational","region":"continue:Ohio"},{"name":"Fort Rock Data Center / Columbia 1 (formerly Cascade Divide)","operator":"Fort Rock Data Center","owner":"DirectLink & Scio Mutual Telephone Association (SMTA)","address":"207 SW Columbia St","city":"Bend","state":"OR","zip":"97702","lat":44.048040719395,"lng":-121.327211734533,"yearOnline":"2015","powerMw":2.5,"sqft":12475,"type":"colocation","status":"operational","region":"continue:Oregon"},{"name":"New Mexico DoIT John F. Simms Building Data Center","operator":"New Mexico Department of Information Technology (DoIT)","owner":"State of New Mexico","address":"715 Alta Vista Street","city":"Santa Fe","state":"NM","zip":"87505","lat":35.671211009406,"lng":-105.955553458987,"yearOnline":"unknown","powerMw":0,"sqft":71425,"type":"enterprise","status":"operational","region":"continue:New Mexico"},{"name":"SDC Ashburn","operator":"Sabey Data Centers","owner":"Sabey Data Center Properties LLC","address":"21741 Red Rum Dr","city":"Ashburn","state":"VA","zip":"20147","lat":39.01536180594,"lng":-77.476604194541,"yearOnline":"2017","powerMw":85,"sqft":645000,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Centersquare IAD1-B Sterling Data Center","operator":"Centersquare","owner":"Mapletree Investments / Mapletree Industrial Trust (MIT)","address":"45845 Nokes Blvd","city":"Sterling","state":"VA","zip":"20166","lat":39.024668630344,"lng":-77.415789756062,"yearOnline":"unknown","powerMw":6,"sqft":0,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Centersquare IAD2-B Sterling Data Center","operator":"Centersquare","owner":"ACPF Nova Data Center LLC (affiliate of American Realty Advisors)","address":"22860 International Drive","city":"Sterling","state":"VA","zip":"20166","lat":38.985140527518,"lng":-77.424454001789,"yearOnline":"unknown","powerMw":6,"sqft":71033,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"OVH US East Vint Hill / OVHcloud VIN1","operator":"OVHcloud US","owner":"Data Center Vint Hill LLC","address":"6872 Watson Ct","city":"Vint Hill","state":"VA","zip":"unknown","lat":38.746626654296,"lng":-77.675029446064,"yearOnline":"2017","powerMw":18,"sqft":84199,"type":"enterprise","status":"operational","region":"continue:Virginia"},{"name":"Vint Hill Corners Data Center","operator":"Vint Hill Corners LLC","owner":"Vint Hill Corners LLC","address":"4295 Aiken Drive","city":"Vint Hill","state":"VA","zip":"unknown","lat":38.744637974135,"lng":-77.685620155677,"yearOnline":"unknown","powerMw":0,"sqft":720000,"type":"wholesale","status":"planned","region":"continue:Virginia"},{"name":"YAKMWAFP - Wholesail Yakima","operator":"Ziply Fiber (Wholesail Networks)","owner":"Wholesail Networks","address":"901 Pitcher St","city":"Yakima","state":"WA","zip":"98901","lat":46.60457088957,"lng":-120.493775759173,"yearOnline":"unknown","powerMw":0,"sqft":5760,"type":"telecom","status":"operational","region":"continue:Washington"},{"name":"2401 Utah Ave Data Center","operator":"Colossus Data Center Advisors","owner":"Nitze-Stagen & Co.","address":"2401 Utah Ave S / 76 S Lander St","city":"Seattle","state":"WA","zip":"98134","lat":47.58102,"lng":-122.335686,"yearOnline":"unknown","powerMw":0,"sqft":45600,"type":"wholesale","status":"planned","region":"continue:Washington"},{"name":"3625 First Avenue South Data Center","operator":"PACLAND","owner":"CRP 3625 1st Ave Owner LLC (The Carlyle Group)","address":"3625 1st Ave S","city":"Seattle","state":"WA","zip":"98134","lat":47.570507196308,"lng":-122.334293537552,"yearOnline":"unknown","powerMw":0,"sqft":320000,"type":"wholesale","status":"planned","region":"continue:Washington"},{"name":"Fibertech Networks – Hartford Data Center","operator":"unknown","owner":"Bondholder group represented by Wilmington Trust National Association/LNR Partners (post-2025 strict foreclosure); Madison Properties markets the complex.","address":"260 Constitution Drive","city":"Hartford","state":"CT","zip":"06103","lat":41.766378591235,"lng":-72.669621861815,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Connecticut"},{"name":"CyrusOne Stamford NYM10","operator":"CyrusOne","owner":"CyrusOne","address":"1200 Bedford St.","city":"Stamford","state":"CT","zip":"06905","lat":41.062638059722,"lng":-73.539680449908,"yearOnline":"2007","powerMw":4,"sqft":57000,"type":"colocation","status":"operational","region":"continue:Connecticut"},{"name":"Cigna Windsor Data Center","operator":"The Cigna Group","owner":"The Cigna Group","address":"9 Griffin Road North","city":"Windsor","state":"CT","zip":"06095","lat":41.879939579769,"lng":-72.731569304267,"yearOnline":"unknown","powerMw":0,"sqft":153462,"type":"enterprise","status":"operational","region":"continue:Connecticut"},{"name":"CyrusOne Sangamon County Data Center Campus (Waverly/Talkington Township)","operator":"CyrusOne","owner":"KKR and Global Infrastructure Partners (GIP)","address":"13000 block of Thayer Road","city":"Waverly","state":"IL","zip":"unknown","lat":39.544288736991,"lng":-89.888304413624,"yearOnline":"2027","powerMw":636,"sqft":1800000,"type":"hyperscale","status":"planned","region":"continue:Illinois"},{"name":"HorizonIQ Atlanta 2 Data Center","operator":"HorizonIQ (a Summit company)","owner":"Lincoln Property Company (Lincoln Rackhouse)","address":"40 Perimeter Center East, Atlanta, GA 30346","city":"Atlanta","state":"GA","zip":"30346","lat":33.926163873649,"lng":-84.33356991388,"yearOnline":"1999","powerMw":10,"sqft":88000,"type":"colocation","status":"operational","region":"continue:Georgia"},{"name":"Microsoft Douglasville Campus (FTY101)","operator":"Microsoft","owner":"Microsoft","address":"1601 North River Road, Douglasville, GA 30122","city":"Douglasville","state":"GA","zip":"30122","lat":33.726178817833,"lng":-84.617718065612,"yearOnline":"unknown","powerMw":0,"sqft":980000,"type":"hyperscale","status":"under-construction","region":"continue:Georgia"},{"name":"Verizon Roswell Data Center Expansion (10325 Turner Road)","operator":"Verizon","owner":"Verizon","address":"10325 Turner Road, Roswell, GA","city":"Roswell","state":"GA","zip":"unknown","lat":34.028949753458,"lng":-84.291532729051,"yearOnline":"unknown","powerMw":0,"sqft":50800,"type":"telecom","status":"planned","region":"continue:Georgia"},{"name":"Verizon Atlanta","operator":"Verizon Communications, Inc.","owner":"Verizon Communications (successor to MCI WorldCom Network Services, Inc.)","address":"999 Lee Street Southwest, Atlanta, GA","city":"Atlanta","state":"GA","zip":"unknown","lat":33.727366505628,"lng":-84.417518745483,"yearOnline":"unknown","powerMw":2.8,"sqft":88604,"type":"telecom","status":"operational","region":"continue:Georgia"},{"name":"Athena Studios Proposed Data Center","operator":"Reynolds Capital / Athena Studios","owner":"Reynolds Capital","address":"900 Athena Drive, Athens, GA 30605","city":"Athens","state":"GA","zip":"30605","lat":33.971721863678,"lng":-83.316483167447,"yearOnline":"unknown","powerMw":20,"sqft":1300000,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Cogent Edge Data Center - Denver","operator":"Cogent Communications","owner":"Cogent Communications","address":"3443 Blake Street","city":"Denver","state":"CO","zip":"80205","lat":39.767801811905,"lng":-104.976975998726,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"continue:Colorado"},{"name":"Council Bluffs Southlands - Building 6","operator":"Google","owner":"Google","address":"10420 Bunge Ave, Council Bluffs, IA 51503","city":"Council Bluffs","state":"IA","zip":"51503","lat":41.167367972587,"lng":-95.792974895771,"yearOnline":"unknown","powerMw":72,"sqft":0,"type":"hyperscale","status":"operational","region":"continue:Iowa"},{"name":"HBS Phoenix Data Center","operator":"Heartland Business Systems (HBS)","owner":"Heartland Business Systems","address":"10201 S 51st St, Phoenix, AZ","city":"Phoenix","state":"AZ","zip":"unknown","lat":33.354194502483,"lng":-111.972609084994,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Arizona"},{"name":"Dickerson Data Center Campus","operator":"Atmosphere Data Centers","owner":"Terra Energy LLC","address":"21200 Martinsburg Road, Dickerson, MD 20842","city":"Dickerson","state":"MD","zip":"20842","lat":39.204230262505,"lng":-77.444860742602,"yearOnline":"unknown","powerMw":360,"sqft":1125000,"type":"hyperscale","status":"planned","region":"continue:Maryland"},{"name":"Brightspeed Rolla","operator":"Brightspeed","owner":"Brightspeed of Missouri, LLC","address":"1008 N Elm St, Rolla, MO 65401","city":"Rolla","state":"MO","zip":"65401","lat":37.951581108592,"lng":-91.77044657659,"yearOnline":"unknown","powerMw":0,"sqft":31355,"type":"telecom","status":"operational","region":"continue:Missouri"},{"name":"Cogent Data Center - St. Louis","operator":"Cogent Communications, Inc.","owner":"Cogent Communications, Inc.","address":"1925 Chouteau Ave, St. Louis, MO 63103","city":"St. Louis","state":"MO","zip":"63103","lat":38.62089364491,"lng":-90.211964409225,"yearOnline":"unknown","powerMw":0,"sqft":6600,"type":"colocation","status":"operational","region":"continue:Missouri"},{"name":"MU Data Center","operator":"University of Missouri Division of Information Technology","owner":"The Curators of the University of Missouri","address":"920 S. College Ave, Columbia, MO 65211","city":"Columbia","state":"MO","zip":"65211","lat":38.940164625077,"lng":-92.321888029798,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Missouri"},{"name":"Taurus Data Center Hub (AVAIO Digital Taurus), Brandon, Mississippi","operator":"AVAIO Digital Partners (AVAIO Digital)","owner":"AVAIO Digital Partners","address":"unknown","city":"Brandon","state":"MS","zip":"unknown","lat":32,"lng":-90,"yearOnline":"2027","powerMw":116,"sqft":600000,"type":"hyperscale","status":"under-construction","region":"continue:Mississippi"},{"name":"JSLLC Bozeman / Johnson Services Data Center","operator":"Johnson Services, LLC.","owner":"Vision Net","address":"112 North Black Avenue, Bozeman, MT 59715","city":"Bozeman","state":"MT","zip":"59715","lat":45.681014322473,"lng":-111.035694723573,"yearOnline":"unknown","powerMw":3,"sqft":0,"type":"telecom","status":"operational","region":"continue:Montana"},{"name":"North Data Center, LLC","operator":"Konceptio Data Services LLC / North Data Centers","owner":"Konceptio Data Services LLC","address":"417 Central Ave Suite 328, Great Falls, MT 59401","city":"Great Falls","state":"MT","zip":"59401","lat":47.505326530972,"lng":-111.300460011665,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Montana"},{"name":"Encompass Minneapolis Facility (Lino Lakes Teleport)","operator":"Encompass Digital Media","owner":"Encompass","address":"6221 Holly Drive","city":"Lino Lakes","state":"MN","zip":"55038","lat":45.132156,"lng":-93.09562,"yearOnline":"early 1980s","powerMw":0,"sqft":2288,"type":"telecom","status":"operational","region":"continue:Minnesota"},{"name":"New Mexico Tech Data Center","operator":"New Mexico Institute of Mining and Technology (New Mexico Tech)","owner":"New Mexico Institute of Mining and Technology (New Mexico Tech)","address":"801 Leroy Place, Socorro, NM 87801","city":"Socorro","state":"NM","zip":"87801","lat":34.065023954941,"lng":-106.903482194534,"yearOnline":"2018","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:New Mexico"},{"name":"US Liquidity Center (USLC)","operator":"ICE Data Services","owner":"Intercontinental Exchange, Inc. (ICE)","address":"1700 MacArthur Blvd","city":"Mahwah","state":"NJ","zip":"07430","lat":41.068,"lng":-74.176,"yearOnline":"2010","powerMw":28,"sqft":400000,"type":"colocation","status":"operational","region":"continue:New Jersey"},{"name":"Cogent Edge Data Center - Oklahoma City","operator":"Cogent Communications","owner":"Cogent Communications","address":"3500 192nd St NW, Okarche, OK 73762","city":"Okarche","state":"OK","zip":"73762","lat":35.667564212032,"lng":-97.994870349103,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"continue:Oklahoma"},{"name":"Verizon Business – Standard Data Center Oklahoma City 2","operator":"Verizon Business","owner":"Verizon Business","address":"89 N Robinson Ave, Oklahoma City, OK 73102, USA","city":"Oklahoma City","state":"OK","zip":"73102","lat":35.467569385577,"lng":-97.516531137996,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Oklahoma"},{"name":"Dynamic Quest Data Center","operator":"Dynamic Quest","owner":"Dynamic Quest","address":"4821 Koger Blvd","city":"Greensboro","state":"NC","zip":"27407","lat":36.049780567281,"lng":-79.879115572296,"yearOnline":"2007","powerMw":0,"sqft":13636,"type":"colocation","status":"operational","region":"continue:North Carolina"},{"name":"SolidSpace Winston-Salem Data Center","operator":"SolidSpace","owner":"SolidSpace","address":"450 W. Hanes Mill Road","city":"Winston-Salem","state":"NC","zip":"27105","lat":36.181848587836,"lng":-80.28322161772,"yearOnline":"2003","powerMw":0,"sqft":0,"type":"colocation","status":"decommissioned","region":"continue:North Carolina"},{"name":"Project Delta Data Center Campus","operator":"Engineered Land Solutions (ELS)","owner":"DFC Stokes LLC / DFC Stokes 2 LLC","address":"US-311 & Tuttle Rd","city":"Walnut Cove","state":"NC","zip":"27052","lat":36.321409859697,"lng":-80.102890418941,"yearOnline":"2028","powerMw":0,"sqft":4340000,"type":"hyperscale","status":"planned","region":"continue:North Carolina"},{"name":"Drox Group Rural Hall DC2","operator":"The Drox Group LLC","owner":"Drox Group","address":"8084 Glade St","city":"Rural Hall","state":"NC","zip":"27045","lat":36.242724786958,"lng":-80.299202749792,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:North Carolina"},{"name":"MCA2","operator":"MDC Data Centers","owner":"MDC Data Centers","address":"422 South 11th Street","city":"McAllen","state":"TX","zip":"78501","lat":26.199765534336,"lng":-98.231847349224,"yearOnline":"2020","powerMw":1,"sqft":16258,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"MDC EGP1 Eagle Pass","operator":"MDC Data Centers","owner":"MDC Data Centers","address":"464 Bliss St","city":"Eagle Pass","state":"TX","zip":"78852","lat":28.702366731639,"lng":-100.502760742633,"yearOnline":"2022","powerMw":0.5,"sqft":5208,"type":"edge","status":"operational","region":"continue:Texas"},{"name":"Tyler Vault Datacenter","operator":"Tyler Vault Datacenter (TylerVault.com)","owner":"Tim Brookshire; Garnett Brookshire; Andy Bergfeld","address":"110 N College Ave, Tyler, TX 75702","city":"Tyler","state":"TX","zip":"75702","lat":32.350892905521,"lng":-95.301708705577,"yearOnline":"unknown","powerMw":0,"sqft":1100,"type":"edge","status":"operational","region":"continue:Texas"},{"name":"NacSpace Data Center","operator":"NacSpace","owner":"Elliott Electric Supply","address":"2400 North Stallings Drive","city":"Nacogdoches","state":"TX","zip":"75964","lat":31.652301814473,"lng":-94.674184330807,"yearOnline":"2019","powerMw":0,"sqft":10000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"BBT Midland 1","operator":"Big Bend Telephone Company (BBT)","owner":"Big Bend Telephone Company","address":"2813 Wright Drive","city":"Midland","state":"TX","zip":"unknown","lat":31.93359448517,"lng":-102.215788861045,"yearOnline":"2021","powerMw":1,"sqft":2000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"DataBank Waco (ACT1)","operator":"DataBank","owner":"Mapletree Industrial Trust (MIT)","address":"700 Austin Ave","city":"Waco","state":"TX","zip":"76701","lat":31.555182500521,"lng":-97.133525453761,"yearOnline":"unknown","powerMw":0.8,"sqft":43596,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Prometheus TX-1","operator":"Prometheus Hyperscale","owner":"Prometheus Hyperscale","address":"6998 Farm to Market 987","city":"Terrell","state":"TX","zip":"75160","lat":32.6609613202,"lng":-96.347704609302,"yearOnline":"2027","powerMw":200,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Texas"},{"name":"CyrusOne DFW10 - Whitney","operator":"CyrusOne","owner":"CyrusOne, LP (portfolio company of KKR & Global Infrastructure Partners)","address":"557 County Road 3610","city":"Clifton","state":"TX","zip":"76634","lat":31.857103410554,"lng":-97.354495363153,"yearOnline":"2026","powerMw":400,"sqft":250000,"type":"hyperscale","status":"under-construction","region":"continue:Texas"},{"name":"Cipher Odessa","operator":"Cipher Digital Inc. (operated via Cipher Mining Technologies Inc.)","owner":"Cipher Digital Inc. (facility wholly owned; land leased under Luminant Lease Agreement effective August 27, 2021)","address":"2901 Navasota Dr","city":"Odessa","state":"TX","zip":"unknown","lat":31.844918560045,"lng":-102.314644984529,"yearOnline":"2022","powerMw":207,"sqft":0,"type":"crypto","status":"operational","region":"continue:Texas"},{"name":"University of South Dakota Slagle Hall Data Center","operator":"University of South Dakota","owner":"State of South Dakota / South Dakota Board of Regents","address":"Slagle Hall, 414 E. Clark Street, Vermillion, SD 57069","city":"Vermillion","state":"SD","zip":"57069","lat":42.782588888297,"lng":-96.926453874645,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:South Dakota"},{"name":"NetEx NDC01","operator":"NetEx Inc.","owner":"NetEx","address":"8460 Tyco Road, Vienna, VA 22182","city":"Vienna","state":"VA","zip":"22182","lat":38.931468793033,"lng":-77.238966062425,"yearOnline":"unknown","powerMw":0,"sqft":22500,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Superb Internet, A CherryRoad Company DCA2 - McLean Data Center","operator":"Superb Internet, A CherryRoad Company","owner":"B.F. Saul Company","address":"8201 Greensboro Dr","city":"McLean","state":"VA","zip":"unknown","lat":38.922249877481,"lng":-77.229094630763,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Lumen Ashburn","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"44633 Guilford Dr","city":"Ashburn","state":"VA","zip":"unknown","lat":39.02274580222,"lng":-77.456610753601,"yearOnline":"unknown","powerMw":0,"sqft":49734,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Lumen McLean 1","operator":"Lumen Technologies","owner":"Mapletree Industrial Trust (via Yosemite DC Assets LLC)","address":"1755 Old Meadow Road","city":"McLean","state":"VA","zip":"unknown","lat":38.919592344299,"lng":-77.212350062283,"yearOnline":"unknown","powerMw":0,"sqft":62904,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Equinix DC7","operator":"Equinix","owner":"Serverfarm (SF DC1 LLC)","address":"7990 Science Applications Court","city":"Vienna","state":"VA","zip":"22182","lat":38.907931627864,"lng":-77.221383631841,"yearOnline":"2002","powerMw":2,"sqft":44382,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Lunavi – 304 Progress Circle Data Center","operator":"Lunavi (formerly Green House Data)","owner":"unknown","address":"304 Progress Circle, Cheyenne, WY 82007","city":"Cheyenne","state":"WY","zip":"82007","lat":41.128646672269,"lng":-104.740376008228,"yearOnline":"unknown","powerMw":0,"sqft":8580,"type":"colocation","status":"operational","region":"continue:Wyoming"},{"name":"AO Business Technology Solutions - Wichita Data Center","operator":"AO Business Technology Services LLC","owner":"AO Business Technology Solutions","address":"4031 E. Harry","city":"Wichita","state":"KS","zip":"67218","lat":37.665,"lng":-97.304,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Kansas"},{"name":"760 Doug Davis Drive (ATL12)","operator":"Menlo Digital","owner":"Menlo Equities","address":"760 Doug Davis Dr, Atlanta, GA 30354","city":"Atlanta","state":"GA","zip":"30354","lat":33.656948171901,"lng":-84.413351443006,"yearOnline":"1992","powerMw":0,"sqft":0,"type":"wholesale","status":"operational","region":"continue:Georgia"},{"name":"Southern Telecom 270 Peachtree Colocation Facility","operator":"Southern Telecom, Inc.","owner":"Richard Bowers & Co.","address":"270 Peachtree Street, Atlanta, GA 30303","city":"Atlanta","state":"GA","zip":"30303","lat":33.76054732397,"lng":-84.38763638346,"yearOnline":"unknown","powerMw":0,"sqft":5400,"type":"telecom","status":"operational","region":"continue:Georgia"},{"name":"ATL1 – Atlanta Data Center","operator":"Serverfarm","owner":"Server Farm Realty, LLC","address":"305 Satellite Blvd, Suwanee, GA 30024","city":"Suwanee","state":"GA","zip":"30024","lat":34.029522815782,"lng":-84.067578725275,"yearOnline":"2012","powerMw":12,"sqft":153000,"type":"wholesale","status":"operational","region":"continue:Georgia"},{"name":"Douglas Waldrop Data Center (DRI 4192)","operator":"TC Atlanta Development, Inc. / Trammell Crow Company","owner":"Trammell Crow Company","address":"2912 Post Rd, Winston, GA 30187","city":"Winston","state":"GA","zip":"30187","lat":33.727056731814,"lng":-84.82448092842,"yearOnline":"2027","powerMw":0,"sqft":1760850,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Avemore Data Park","operator":"Atlas Development LLC","owner":"Atlas Development LLC","address":"55-63 Goldworth Rd, Villa Rica, GA 30180","city":"Villa Rica","state":"GA","zip":"30180","lat":33.703983448763,"lng":-84.939529053413,"yearOnline":"2028","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Georgia"},{"name":"Iron Mountain AZP-3","operator":"Iron Mountain Data Centers","owner":"Iron Mountain Incorporated (NYSE: IRM)","address":"1110 N 52nd St, Phoenix, AZ 85008","city":"Phoenix","state":"AZ","zip":"85008","lat":33.461287869164,"lng":-111.969835105171,"yearOnline":"2026","powerMw":36,"sqft":287585,"type":"colocation","status":"under-construction","region":"continue:Arizona"},{"name":"EdgeCore Florence Tech Park (Dobson Farms)","operator":"EdgeCore Digital Infrastructure","owner":"Strand 600 LLC (Dobson Family Farms)","address":"27209 N Attaway Rd, Florence, AZ 85143","city":"Florence","state":"AZ","zip":"85143","lat":33.126047037895,"lng":-111.473688428916,"yearOnline":"unknown","powerMw":720,"sqft":3321000,"type":"hyperscale","status":"planned","region":"continue:Arizona"},{"name":"Johnson Road and Southern Avenue","operator":"Arizona Land Consulting (ALC)","owner":"Arizona Land Consulting (ALC)","address":"W Southern Ave & S Johnson Rd, Buckeye, AZ 85326","city":"Buckeye","state":"AZ","zip":"85326","lat":33.392082923859,"lng":-112.711934361762,"yearOnline":"unknown","powerMw":0,"sqft":3500000,"type":"hyperscale","status":"planned","region":"continue:Arizona"},{"name":"City of Danbury Data Center","operator":"City of Danbury Information Technology Division","owner":"City of Danbury","address":"155 Deer Hill Avenue","city":"Danbury","state":"CT","zip":"06810","lat":41.391041121046,"lng":-73.453530169886,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Connecticut"},{"name":"Aetna Middletown Data Center","operator":"Aetna Life Insurance Company","owner":"CVS Health / Aetna Inc.","address":"Separate data center adjacent to 1000 Middle Street","city":"Middletown","state":"CT","zip":"06457","lat":41.596989175803,"lng":-72.72135289772,"yearOnline":"1982","powerMw":0,"sqft":125924,"type":"enterprise","status":"operational","region":"continue:Connecticut"},{"name":"Lumen Bellevue 1 Data Center","operator":"Lumen Technologies","owner":"Lumen","address":"1514 Chandler Road West, Bellevue, NE 68147","city":"Bellevue","state":"NE","zip":"68147","lat":41.183769231472,"lng":-95.935997501389,"yearOnline":"unknown","powerMw":0,"sqft":10000,"type":"colocation","status":"operational","region":"continue:Nebraska"},{"name":"Lumen Omaha 1 Data Center","operator":"Lumen","owner":"Lumen","address":"6805 Pine Street, Omaha, NE 68106","city":"Omaha","state":"NE","zip":"68106","lat":41.243685588156,"lng":-96.016830961163,"yearOnline":"unknown","powerMw":0,"sqft":110000,"type":"colocation","status":"operational","region":"continue:Nebraska"},{"name":"Google Lincoln Data Center (Project Agate)","operator":"Google","owner":"Agate LLC (Google)","address":"8905 and 9385 N 56th Street, Lincoln, NE","city":"Lincoln","state":"NE","zip":"unknown","lat":40.905736800286,"lng":-96.643719430693,"yearOnline":"2026","powerMw":0,"sqft":2000000,"type":"hyperscale","status":"under-construction","region":"continue:Nebraska"},{"name":"Comcast Moorestown","operator":"Comcast","owner":"Comcast","address":"650 Centerton Road","city":"Moorestown","state":"NJ","zip":"08057","lat":39.989509050719,"lng":-74.89019351643,"yearOnline":"2001","powerMw":0,"sqft":74240,"type":"enterprise","status":"operational","region":"continue:New Jersey"},{"name":"Sanford Data / Peterson Center","operator":"Sanford Health","owner":"SFC Holdings No. 2 LLC","address":"5300 S Broadband Lane, Sioux Falls, SD 57108","city":"Sioux Falls","state":"SD","zip":"57108","lat":43.497788068232,"lng":-96.78712409094,"yearOnline":"unknown","powerMw":0,"sqft":60481,"type":"enterprise","status":"operational","region":"continue:South Dakota"},{"name":"DataBank PIT2 – Summit Park","operator":"DataBank","owner":"DataBank (backed by DigitalBridge, Swiss Life AM, AustralianSuper, EDF Invest, and other institutional investors)","address":"35 Summit Park Drive, Pittsburgh, PA 15275","city":"Pittsburgh","state":"PA","zip":"15275","lat":40.451,"lng":-80.205,"yearOnline":"2020","powerMw":5,"sqft":115000,"type":"colocation","status":"operational","region":"continue:Pennsylvania"},{"name":"Ark Data Centers Pittsburgh – Northpointe","operator":"Ark Data Centers","owner":"Ark Data Centers","address":"161 Armstrong Drive, Freeport, PA","city":"Freeport","state":"PA","zip":"unknown","lat":40.719,"lng":-79.724,"yearOnline":"2017","powerMw":1.5,"sqft":39570,"type":"colocation","status":"operational","region":"continue:Pennsylvania"},{"name":"KEN1 Ziply Kennewick WA Data Center PoP","operator":"Ziply Fiber","owner":"Ziply Fiber","address":"4916 West Clearwater Avenue","city":"Kennewick","state":"WA","zip":"99336","lat":46.212459429207,"lng":-119.186710512303,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"continue:Washington"},{"name":"Trammell Crow Lewis & Clark Ranch Data Center","operator":"Trammell Crow Company","owner":"Frank Tiegs LLC","address":"Lewis & Clark Ranch","city":"West Richland","state":"WA","zip":"unknown","lat":47.622306412118,"lng":-122.601175559586,"yearOnline":"unknown","powerMw":912,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Washington"},{"name":"Atlas Agro Richland Data Center Campus","operator":"Atlas Agro North America","owner":"City of Richland (current landowner); Atlas Agro North America holds a one-year purchase option (Dec 2025).","address":"2100 Horn Rapids Road","city":"Richland","state":"WA","zip":"unknown","lat":46.351117759529,"lng":-119.296571468726,"yearOnline":"unknown","powerMw":0,"sqft":2500000,"type":"hyperscale","status":"planned","region":"continue:Washington"},{"name":"On-Premises Next-Gen AI Compute Data Center","operator":"Battelle Memorial Institute (operating PNNL for DOE)","owner":"U.S. Department of Energy","address":"PNNL Campus / proposed site near 2101 Horn Rapids Road","city":"Richland","state":"WA","zip":"unknown","lat":46.351002170298,"lng":-119.296453742072,"yearOnline":"2028","powerMw":2,"sqft":0,"type":"enterprise","status":"planned","region":"continue:Washington"},{"name":"Beckley Information Technology Services Main Data Center","operator":"City of Beckley / Beckley Information Technology Services (BITS)","owner":"City of Beckley","address":"169 Industrial Drive, Beckley, WV 25801","city":"Beckley","state":"WV","zip":"25801","lat":37.81076000452,"lng":-81.183090118251,"yearOnline":"2002","powerMw":0,"sqft":8568,"type":"enterprise","status":"operational","region":"continue:West Virginia"},{"name":"West Campus Data Center","operator":"Yale Center for Research Computing (Office of the Provost, Yale University)","owner":"Yale University","address":"100 West Campus Drive, Building A21","city":"Orange","state":"CT","zip":"06477","lat":41.252227674053,"lng":-72.999762366163,"yearOnline":"2015","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Connecticut"},{"name":"UConn Health High Performance Computing Facility","operator":"UConn Health / Richard D. Berlin Center for Cell Analysis and Modeling (CCAM)","owner":"University of Connecticut Health Center / UConn Health","address":"Cell and Genome Sciences Building, 400 Farmington Avenue","city":"Farmington","state":"CT","zip":"06030-6406","lat":41.730633260203,"lng":-72.799887275805,"yearOnline":"2010","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Connecticut"},{"name":"Bridgeport Public Schools Data Center Operations","operator":"Bridgeport Public Schools Information Technology Services (ITS)","owner":"City of Bridgeport","address":"45 Lyon Terrace","city":"Bridgeport","state":"CT","zip":"06604","lat":41.180424916114,"lng":-73.192684306785,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Connecticut"},{"name":"GA1 – Maysville (Ardent Georgia)","operator":"Ardent Data Centers (Northern Data Group), now part of Quake AI (RUM Group)","owner":"Northern Data Group","address":"63-acre site in Maysville, Banks and Jackson counties, GA","city":"Maysville","state":"GA","zip":"unknown","lat":33.102974703153,"lng":-84.34059334436,"yearOnline":"unknown","powerMw":120,"sqft":0,"type":"hyperscale","status":"under-construction","region":"continue:Georgia"},{"name":"DataBank Westminster Data Center (DEN4)","operator":"DataBank","owner":"DataBank","address":"7579 W. 103rd Avenue","city":"Westminster","state":"CO","zip":"80021","lat":39.883507207208,"lng":-105.07951678085,"yearOnline":"2006","powerMw":0.5,"sqft":29500,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Connect Data Centers: Des Moines","operator":"Connect Data Centers by Oppidan","owner":"CLOP Des Moines IA LLC / Oppidan Investment Company","address":"5900 Thornton Ave, Des Moines, IA 50321","city":"Des Moines","state":"IA","zip":"50321","lat":41.55324231854,"lng":-93.696922928479,"yearOnline":"2024","powerMw":5,"sqft":60589,"type":"colocation","status":"operational","region":"continue:Iowa"},{"name":"Price Computing Center","operator":"University of Kansas Information Technology (KU IT)","owner":"University of Kansas","address":"1001 Sunnyside Ave.","city":"Lawrence","state":"KS","zip":"66045","lat":38.95522078393,"lng":-95.246166080442,"yearOnline":"1978","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Kansas"},{"name":"Ellsworth Annex Network Center","operator":"University of Kansas / KU Information Technology","owner":"University of Kansas","address":"1122 West Campus Rd.","city":"Lawrence","state":"KS","zip":"66045-3101","lat":38.962959808828,"lng":-95.251011656396,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Kansas"},{"name":"Wichita State University Internet Exchange Point (IXP)","operator":"Connected Nation Internet Exchange Points (CNIXP) LLC","owner":"Connected Nation Internet Exchange Points (CNIXP) LLC; land leased from Wichita State University under a 40-year ground lease","address":"NW corner of E 21st St N & Fountain Ave, Wichita State University campus","city":"Wichita","state":"KS","zip":"unknown","lat":37.72287240411,"lng":-97.287759981779,"yearOnline":"2026","powerMw":0,"sqft":0,"type":"telecom","status":"under-construction","region":"continue:Kansas"},{"name":"8621 Robert Fulton Drive","operator":"COPT Defense Properties","owner":"COPT Defense Properties","address":"8621 Robert Fulton Drive, Columbia, MD, USA","city":"Columbia","state":"MD","zip":"unknown","lat":39.175026209911,"lng":-76.810298372201,"yearOnline":"2005","powerMw":0,"sqft":83496,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"COPT Defense Properties: 6940 Columbia Gateway Drive / Soundtrack","operator":"COPT Defense Properties","owner":"COPT Defense Properties (public REIT; formerly Corporate Office Properties Trust)","address":"6940 Columbia Gateway Drive, Columbia, MD, USA","city":"Columbia","state":"MD","zip":"unknown","lat":39.182339498976,"lng":-76.799860498834,"yearOnline":"unknown","powerMw":0,"sqft":98318,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"Soundtrack – 6950 Columbia Gateway Drive","operator":"COPT Defense Properties","owner":"COPT Defense Properties","address":"6950 Columbia Gateway Drive, Columbia, MD, USA","city":"Columbia","state":"MD","zip":"unknown","lat":39.181668090583,"lng":-76.799583103652,"yearOnline":"2019","powerMw":0,"sqft":112740,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"COPT Defense Properties: 7000 Columbia Gateway Drive","operator":"COPT Defense Properties","owner":"COPT Defense Properties","address":"7000 Columbia Gateway Drive, Columbia, MD 21046, USA","city":"Columbia","state":"MD","zip":"21046","lat":39.178246696304,"lng":-76.799938601526,"yearOnline":"1999","powerMw":0,"sqft":140575,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"COPT Defense Properties - 6731 Columbia Gateway Drive","operator":"COPT Defense Properties","owner":"COPT Defense Properties (held via COPT affiliates; REIT, NYSE: OFC)","address":"6731 Columbia Gateway Drive, Columbia, MD, USA","city":"Columbia","state":"MD","zip":"unknown","lat":39.184118139215,"lng":-76.804983627295,"yearOnline":"unknown","powerMw":0,"sqft":125000,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"COPT Defense Properties: 209 Research Boulevard","operator":"COPT Defense Properties","owner":"COPT Defense Properties (REIT); owning entity: COPT Northgate A LLC","address":"209 Research Boulevard, Aberdeen, MD, USA","city":"Aberdeen","state":"MD","zip":"unknown","lat":39.506427965767,"lng":-76.149801406622,"yearOnline":"unknown","powerMw":0,"sqft":78220,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"COPT Defense Properties - 939 Elkridge Landing Road","operator":"COPT Defense Properties","owner":"COPT Defense Properties","address":"939 Elkridge Landing Road, Linthicum Heights, MD, USA","city":"Linthicum Heights","state":"MD","zip":"unknown","lat":39.201603950391,"lng":-76.685262710826,"yearOnline":"unknown","powerMw":0,"sqft":53031,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"COPT Defense Properties - 250 West Pratt Street","operator":"COPT Defense Properties","owner":"COPT Defense Properties","address":"250 West Pratt Street, Baltimore, MD 21201, USA","city":"Baltimore","state":"MD","zip":"21201","lat":39.286407863667,"lng":-76.618393241628,"yearOnline":"1986","powerMw":0,"sqft":368194,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"6750 Alexander Bell Drive (The Bell)","operator":"COPT Defense Properties","owner":"COPT Defense Properties","address":"6750 Alexander Bell Drive, Columbia, MD, USA","city":"Columbia","state":"MD","zip":"unknown","lat":39.188655615547,"lng":-76.811192554106,"yearOnline":"2001","powerMw":0,"sqft":75798,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"6841 Benjamin Franklin Drive (Franklin Center)","operator":"COPT Defense Properties","owner":"COPT Defense Properties (NYSE: CDP)","address":"6841 Benjamin Franklin Drive, Columbia, MD, USA","city":"Columbia","state":"MD","zip":"unknown","lat":39.177076923571,"lng":-76.799117147529,"yearOnline":"2008","powerMw":0,"sqft":200603,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"1201 Winterson Road","operator":"COPT Defense Properties","owner":"COPT Defense Properties","address":"1201 Winterson Road, Linthicum Heights, MD, USA","city":"Linthicum Heights","state":"MD","zip":"unknown","lat":39.203461507064,"lng":-76.681579069858,"yearOnline":"unknown","powerMw":0,"sqft":72045,"type":"enterprise","status":"operational","region":"continue:Maryland"},{"name":"DataPoint Data Center","operator":"DataPoint, Inc.","owner":"DataPoint, Inc.","address":"4901 Colt Road","city":"Rockford","state":"IL","zip":"61109","lat":42.225734601063,"lng":-89.021067967016,"yearOnline":"2016","powerMw":0,"sqft":5000,"type":"colocation","status":"operational","region":"continue:Illinois"},{"name":"Legacy - Chicago Byte Exchange (CBE1)","operator":"Legacy Investing","owner":"Legacy Investing & GI Partners","address":"400 S LaSalle St","city":"Chicago","state":"IL","zip":"60605","lat":41.876816008302,"lng":-87.631846234228,"yearOnline":"2026","powerMw":33,"sqft":300500,"type":"wholesale","status":"under-construction","region":"continue:Illinois"},{"name":"DLS Internet Services – Lake in the Hills (DLS Internet LITH)","operator":"DLS Internet Services","owner":"DLS Internet Services","address":"950 E. Oak St.","city":"Lake in the Hills","state":"IL","zip":"60156","lat":42.190227317531,"lng":-88.308828211565,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Illinois"},{"name":"Advanced Computation Building (ACB) Data Center","operator":"Technology Services at Illinois (Office of the CIO)","owner":"University of Illinois Urbana-Champaign (Board of Trustees of the University of Illinois)","address":"1011 West Springfield","city":"Urbana","state":"IL","zip":"61801","lat":40.112734698512,"lng":-88.220895585009,"yearOnline":"unknown","powerMw":0,"sqft":45346,"type":"enterprise","status":"operational","region":"continue:Illinois"},{"name":"Gail Technology Effingham Data Center","operator":"GAIL Technology, Inc.","owner":"IAG Investments LLC – Effingham","address":"15244 E. 1700th Avenue","city":"Effingham","state":"IL","zip":"unknown","lat":39.162963940505,"lng":-88.518591041743,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"under-construction","region":"continue:Illinois"},{"name":"NP Belle Plaine (MSP1)","operator":"Neutral Path Communications, LLC","owner":"unknown","address":"713 Church St","city":"Belle Plaine","state":"MN","zip":"56011","lat":44.624122,"lng":-93.778109,"yearOnline":"unknown","powerMw":3,"sqft":0,"type":"telecom","status":"operational","region":"continue:Minnesota"},{"name":"South Front Networks MN-Farmington PoP","operator":"South Front Networks, LLC","owner":"unknown","address":"5031 208th St W","city":"Farmington","state":"MN","zip":"55024","lat":44.64678804396,"lng":-93.169518689393,"yearOnline":"unknown","powerMw":0,"sqft":12600,"type":"telecom","status":"operational","region":"continue:Minnesota"},{"name":"SFN MN-Rochester","operator":"South Front Networks","owner":"DKM LLC (2013 purchase of office/condo space in the building); current PoP suite owner not confirmed","address":"220 S Broadway","city":"Rochester","state":"MN","zip":"unknown","lat":44.021290088415,"lng":-92.462938425637,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Minnesota"},{"name":"AWS Canton Data Center Building 12","operator":"Amazon Web Services (AWS)","owner":"Amazon","address":"Canton, MS","city":"Canton","state":"MS","zip":"unknown","lat":32.60209,"lng":-90.08383,"yearOnline":"unknown","powerMw":0,"sqft":250000,"type":"hyperscale","status":"planned","region":"continue:Mississippi"},{"name":"Nebraska Medicine 4230 Data Center","operator":"Nebraska Medicine","owner":"University of Nebraska Medical Center (UNMC)","address":"Nebraska Medical Center 4230 Building, 42nd Street and Dewey Avenue, Omaha, NE 68198","city":"Omaha","state":"NE","zip":"68198","lat":41.256019751325,"lng":-95.975775967168,"yearOnline":"2015","powerMw":0,"sqft":4000,"type":"enterprise","status":"operational","region":"continue:Nebraska"},{"name":"9330 Highway 133 Data Center Building (Mutual of Omaha Disaster Recovery Center)","operator":"Vacant (formerly Mutual of Omaha)","owner":"Mutual of Omaha Insurance Company","address":"9330 Highway 133, Blair, NE","city":"Blair","state":"NE","zip":"unknown","lat":41.516431626703,"lng":-96.145776871758,"yearOnline":"2003","powerMw":0,"sqft":117546,"type":"enterprise","status":"operational","region":"continue:Nebraska"},{"name":"ConAgra Data Center Building (7300 World Communications Dr)","operator":"U.S. Drug Enforcement Administration (DEA) Omaha Division","owner":"unknown","address":"7300 World Communications Dr, Omaha, NE 68122","city":"Omaha","state":"NE","zip":"68122","lat":41.337442856018,"lng":-96.025253746929,"yearOnline":"1999","powerMw":3,"sqft":65200,"type":"enterprise","status":"operational","region":"continue:Nebraska"},{"name":"Hostirian St. Louis","operator":"Hostirian","owner":"Rivercity Real Estate LLC","address":"11756 Borman Drive, Suite 100, St. Louis, MO 63146","city":"St. Louis","state":"MO","zip":"63146","lat":38.694390531705,"lng":-90.433258536877,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Missouri"},{"name":"Connectria Hosting - St. Louis Data Center #2","operator":"Connectria (a LightEdge company)","owner":"GI Partners","address":"10845 Olive Blvd., St. Louis, MO 63141","city":"St. Louis","state":"MO","zip":"63141","lat":38.673219181949,"lng":-90.417077321836,"yearOnline":"unknown","powerMw":0,"sqft":10000,"type":"colocation","status":"operational","region":"continue:Missouri"},{"name":"WhiteFiber NC-1","operator":"WhiteFiber Inc.","owner":"WhiteFiber Inc. / Bit Digital, Inc. (Nasdaq: BTBT)","address":"805 Island Drive","city":"Madison","state":"NC","zip":"unknown","lat":36.383,"lng":-79.986,"yearOnline":"2026","powerMw":99,"sqft":946585,"type":"hyperscale","status":"under-construction","region":"continue:North Carolina"},{"name":"Duke University Central Campus GPU Data Center","operator":"Duke University","owner":"Duke University","address":"Duke-owned site along Yearby Avenue / east side of Anderson Street","city":"Durham","state":"NC","zip":"unknown","lat":36.001,"lng":-78.938,"yearOnline":"2027","powerMw":1.5,"sqft":13173,"type":"enterprise","status":"under-construction","region":"continue:North Carolina"},{"name":"ITS Manning","operator":"UNC-Chapel Hill Information Technology Services (ITS) / Data Center Operations (DCOPS)","owner":"University of North Carolina at Chapel Hill","address":"211 Manning Drive","city":"Chapel Hill","state":"NC","zip":"27514","lat":35.902,"lng":-79.048,"yearOnline":"2007","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:North Carolina"},{"name":"Uniti Charlotte Data Center","operator":"Uniti (merged with Windstream in 2025)","owner":"The Fallon Company","address":"301 S McDowell St","city":"Charlotte","state":"NC","zip":"28204","lat":35.216,"lng":-80.837,"yearOnline":"2014","powerMw":10,"sqft":60850,"type":"telecom","status":"operational","region":"continue:North Carolina"},{"name":"Data Journey Catawba County Data Center","operator":"Data Journey","owner":"Data Journey","address":"2436 Penny Road","city":"Claremont","state":"NC","zip":"unknown","lat":35.716,"lng":-81.132,"yearOnline":"2013","powerMw":3,"sqft":47500,"type":"colocation","status":"operational","region":"continue:North Carolina"},{"name":"Verizon: Harrisburg Data Center","operator":"Verizon","owner":"XO Communications","address":"991 Peiffers Lane, 1st Floor","city":"Harrisburg","state":"PA","zip":"17109","lat":40.275652677407,"lng":-76.818771158119,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Pennsylvania"},{"name":"MLP Ventures 2100 Renaissance Boulevard Data Center","operator":"MLP Ventures","owner":"MLP Ventures","address":"2100 Renaissance Boulevard","city":"King of Prussia","state":"PA","zip":"unknown","lat":40.0830189032,"lng":-75.334760904563,"yearOnline":"unknown","powerMw":0,"sqft":187946,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"AVAIO Hercules (Appomattox)","operator":"AVAIO Digital","owner":"AVAIO Digital Partners","address":"267 Industrial Park Ln, Appomattox, VA","city":"Appomattox","state":"VA","zip":"unknown","lat":37.374786096998,"lng":-78.849011499812,"yearOnline":"2027","powerMw":300,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Virginia"},{"name":"Dahlgren West Campus","operator":"Oasis Digital Properties","owner":"Family of the late Ed Veazey (landowner); applicant/developer entity: Dahlgren Innovation Hub, LLC.","address":"6113 James Madison Pkwy, King George, VA 22485","city":"King George","state":"VA","zip":"22485","lat":38.329047006809,"lng":-77.090481035523,"yearOnline":"unknown","powerMw":1200,"sqft":6800000,"type":"hyperscale","status":"planned","region":"continue:Virginia"},{"name":"AWS Lake Anna Data Center - Building 7","operator":"Amazon Web Services (AWS)","owner":"Amazon (via Amazon Data Services, Inc.); land owner REB Investment Company, LLC","address":"Lake Anna Tech Campus (corner of Kentucky Springs Rd & Haley Dr), Louisa County","city":"Louisa","state":"VA","zip":"unknown","lat":38.04763641638,"lng":-77.81682351474,"yearOnline":"2027","powerMw":44,"sqft":151895,"type":"hyperscale","status":"under-construction","region":"continue:Virginia"},{"name":"Lumen Wichita Falls 1","operator":"Lumen Technologies","owner":"Lumen","address":"301 Lee Street","city":"Wichita Falls","state":"TX","zip":"unknown","lat":33.919375813638,"lng":-98.491364831879,"yearOnline":"unknown","powerMw":0,"sqft":10000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Lumen Houston 2 Data Center","operator":"Lumen Technologies","owner":"Lumen","address":"7060 Empire Central Drive","city":"Houston","state":"TX","zip":"unknown","lat":29.874226308683,"lng":-95.545941054247,"yearOnline":"unknown","powerMw":0,"sqft":12000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Lumen Laredo 1","operator":"Lumen Technologies","owner":"Lumen","address":"518 Farragut","city":"Laredo","state":"TX","zip":"unknown","lat":27.505663685052,"lng":-99.500982476689,"yearOnline":"unknown","powerMw":0,"sqft":4800,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Windstream Laredo","operator":"Windstream","owner":"Windstream","address":"520 Matamoros St","city":"Laredo","state":"TX","zip":"unknown","lat":27.506374016673,"lng":-99.50097890512,"yearOnline":"unknown","powerMw":0,"sqft":3650,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"CNDC MFE02","operator":"CNDC","owner":"CNDC","address":"900 Beech Avenue","city":"McAllen","state":"TX","zip":"unknown","lat":26.204385933413,"lng":-98.228775527216,"yearOnline":"unknown","powerMw":0,"sqft":3150,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"T-Mobile McAllen Data Center","operator":"T-Mobile US, Inc.","owner":"T-Mobile","address":"1400 E Upas Ave, McAllen, TX 78501","city":"McAllen","state":"TX","zip":"78501","lat":26.219271575807,"lng":-98.202079867479,"yearOnline":"2026","powerMw":0,"sqft":14800,"type":"telecom","status":"under-construction","region":"continue:Texas"},{"name":"NetRiver – Spokane Data Center","operator":"ByteGrid","owner":"KSL Capital Partners","address":"10 S. Post Street","city":"Spokane","state":"WA","zip":"99201","lat":47.657097850786,"lng":-117.42358401079,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"Verizon: Spokane","operator":"Verizon","owner":"XO Communications","address":"155 S. Stevens Street, 2nd Floor","city":"Spokane","state":"WA","zip":"unknown","lat":47.655222027358,"lng":-117.419440354174,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Washington"},{"name":"Great Lakes Colocation Data Center","operator":"Great Lakes Communication Corp. (Great Lakes Colocation)","owner":"Great Lakes Communication Corp.","address":"1455 Hwy 9","city":"Lake Park","state":"IA","zip":"51347","lat":43.445,"lng":-95.313,"yearOnline":"2014","powerMw":1,"sqft":2500,"type":"colocation","status":"operational","region":"continue:Iowa"},{"name":"Equinix Minooka CH8","operator":"Equinix","owner":"Equinix","address":"Near Ridge Road and Holt Road","city":"Minooka","state":"IL","zip":"60447","lat":41.469553252283,"lng":-88.271800602367,"yearOnline":"unknown","powerMw":700,"sqft":0,"type":"colocation","status":"under-construction","region":"continue:Illinois"},{"name":"Clear Channel Satellite - Denver Data Center","operator":"Clear Channel Satellite, Inc.","owner":"Clear Channel Satellite, Inc.","address":"76 Inverness Dr. E.","city":"Englewood","state":"CO","zip":"80112","lat":39.580451298099,"lng":-104.856913280118,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"decommissioned","region":"continue:Colorado"},{"name":"Global Crossing - Westminster Data Center","operator":"Global Crossing / Level 3 Communications","owner":"Level 3 Communications","address":"1499 West 121st Avenue","city":"Westminster","state":"CO","zip":"80234","lat":39.916049627321,"lng":-105.004314371393,"yearOnline":"unknown","powerMw":0,"sqft":58033,"type":"telecom","status":"decommissioned","region":"continue:Colorado"},{"name":"365 Data Centers - Thornton (DEN-550)","operator":"365 Data Centers","owner":"Stonecourt Capital","address":"550 E 84th St","city":"Thornton","state":"CO","zip":"80229","lat":39.848902298235,"lng":-104.979895375641,"yearOnline":"unknown","powerMw":2.2,"sqft":0,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Strategic Datasphere 1650 Union Hill Road","operator":"Strategic Datasphere","owner":"Strategic Datasphere, LLC (affiliate of Strategic Capital Fund Management, LLC)","address":"1650 Union Hill Road, Alpharetta, GA","city":"Alpharetta","state":"GA","zip":"unknown","lat":34.095143051138,"lng":-84.233669515244,"yearOnline":"1999","powerMw":5.4,"sqft":165000,"type":"enterprise","status":"operational","region":"continue:Georgia"},{"name":"Gila River Indian Community Data Center (GRIC MIS Data Center)","operator":"Gila River Indian Community","owner":"Gila River Indian Community","address":"1576-A S Nelson Drive, Chandler, AZ 85226","city":"Chandler","state":"AZ","zip":"85226","lat":33.27613,"lng":-111.96039,"yearOnline":"2018","powerMw":0,"sqft":7400,"type":"enterprise","status":"operational","region":"continue:Arizona"},{"name":"Southwest Crossing Data Center","operator":"Ryan Companies US, Inc.","owner":"Cotton City Industrial Park, LLC","address":"Southeast corner of Estrella Road & Houser Road, Eloy, AZ","city":"Eloy","state":"AZ","zip":"unknown","lat":32.777481951829,"lng":-111.602081622111,"yearOnline":"unknown","powerMw":400,"sqft":1250000,"type":"hyperscale","status":"planned","region":"continue:Arizona"},{"name":"Hancock Bank Data Center","operator":"Hancock Whitney Bank","owner":"Hancock Whitney Bank","address":"20491 Landon Road, Gulfport, MS 39503","city":"Gulfport","state":"MS","zip":"39503","lat":30.441481028293,"lng":-89.18655484738,"yearOnline":"2007","powerMw":0,"sqft":37000,"type":"enterprise","status":"operational","region":"continue:Mississippi"},{"name":"MARA Kearney (formerly Compute North Kearney / Compute North NE 05 at Tech oNE Crossing)","operator":"MARA Holdings Inc.","owner":"MARA Holdings Inc.","address":"3215 Global Drive Place, Kearney, NE (Tech oNE Crossing)","city":"Kearney","state":"NE","zip":"unknown","lat":40.7,"lng":-99,"yearOnline":"2019","powerMw":100,"sqft":0,"type":"crypto","status":"operational","region":"continue:Nebraska"},{"name":"ArchGreen Infrastructure Project 1 (Hall County modular cryptocurrency data center)","operator":"ArchGreen Infrastructure LLC","owner":"Southern Public Power District","address":"West of Grand Island in Hall County, Nebraska (exact address not publicly listed)","city":"Grand Island","state":"NE","zip":"unknown","lat":40.9,"lng":-98.4,"yearOnline":"2024","powerMw":12.5,"sqft":0,"type":"crypto","status":"operational","region":"continue:Nebraska"},{"name":"Segra: Charlotte One Data Center","operator":"Segra","owner":"DC74 Data Centers, LLC","address":"3100 International Airport Dr.","city":"Charlotte","state":"NC","zip":"28208","lat":35.193346016236,"lng":-80.937842123116,"yearOnline":"unknown","powerMw":1.6,"sqft":18068,"type":"colocation","status":"operational","region":"continue:North Carolina"},{"name":"Duos Edge AI Lubbock Edge Data Center (Lubbock EDC)","operator":"Duos Edge AI, Inc.","owner":"Lubbock ISD (property lessor)","address":"1634 18th Street, Lubbock, TX 79401","city":"Lubbock","state":"TX","zip":"79401","lat":33.578991835371,"lng":-101.853427436835,"yearOnline":"2026","powerMw":0.2,"sqft":0,"type":"edge","status":"operational","region":"continue:Texas"},{"name":"The RGV Data Center (Harlingen RGV Campus)","operator":"Eneus Energy","owner":"RGV Property Group LLC / RGV Property LLC","address":"Gomez Rd & FM 509, Harlingen, TX 78550","city":"Harlingen","state":"TX","zip":"78550","lat":26.242312600495,"lng":-97.627600558068,"yearOnline":"unknown","powerMw":2000,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Texas"},{"name":"365 Data Centers Herndon","operator":"365 Data Centers","owner":"BECO Management","address":"13873 Park Center Rd, Herndon, VA 20171","city":"Herndon","state":"VA","zip":"20171","lat":38.945,"lng":-77.42000000000002,"yearOnline":"2012","powerMw":0.83,"sqft":12000,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"H5 Data Centers Virginia (4030)","operator":"H5 Data Centers","owner":"Chantilly Technology Partners LLC (legal parcel owner); Menlo Equities (real-estate acquirer in Sep 2023).","address":"4030 Lafayette Center Drive, Chantilly, VA","city":"Chantilly","state":"VA","zip":"unknown","lat":38.898,"lng":-77.449,"yearOnline":"unknown","powerMw":23,"sqft":145000,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"DataBank IAD2 – McLean","operator":"DataBank","owner":"DataBank Holdings (majority owned by Swiss Life Asset Management / EDF Invest consortium; DigitalBridge retains ~7.8% stake)","address":"1764A Old Meadow Lane, McLean, VA 22102","city":"McLean","state":"VA","zip":"22102","lat":38.931,"lng":-77.205,"yearOnline":"2018","powerMw":4.5,"sqft":65000,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"STACK NVA05B","operator":"STACK Infrastructure","owner":"STACK Infrastructure (sponsored by IPI Partners)","address":"9001 Freedom Center Boulevard, Building B, Manassas, VA","city":"Manassas","state":"VA","zip":"unknown","lat":38.795,"lng":-77.52000000000001,"yearOnline":"unknown","powerMw":48,"sqft":340000,"type":"hyperscale","status":"under-construction","region":"continue:Virginia"},{"name":"QTS Manassas DC1","operator":"QTS Data Centers","owner":"Blackstone","address":"9400 Godwin Drive, Manassas, VA","city":"Manassas","state":"VA","zip":"unknown","lat":38.756,"lng":-77.486,"yearOnline":"2019","powerMw":0,"sqft":123200,"type":"wholesale","status":"operational","region":"continue:Virginia"},{"name":"QTS Manassas DC3","operator":"QTS Data Centers","owner":"Blackstone","address":"9301 Freedom Center Boulevard, Manassas, VA","city":"Manassas","state":"VA","zip":"unknown","lat":38.797,"lng":-77.514,"yearOnline":"2024","powerMw":0,"sqft":140000,"type":"wholesale","status":"operational","region":"continue:Virginia"},{"name":"Corscale Gainesville - Bldg 1","operator":"Corscale","owner":"Affinius Capital in joint venture with Corscale","address":"13760 University Blvd, Gainesville, VA","city":"Gainesville","state":"VA","zip":"unknown","lat":38.805,"lng":-77.593,"yearOnline":"2024","powerMw":72,"sqft":0,"type":"hyperscale","status":"operational","region":"continue:Virginia"},{"name":"Yondr Bristow Campus","operator":"Yondr Group","owner":"Yondr Group; corporate owners DigitalBridge and CDPQ","address":"12981 Rollins Ford Road, Bristow, VA","city":"Bristow","state":"VA","zip":"unknown","lat":38.743,"lng":-77.561,"yearOnline":"unknown","powerMw":60,"sqft":901640,"type":"hyperscale","status":"under-construction","region":"continue:Virginia"},{"name":"Telxius Virginia Beach Cable Landing Station","operator":"Telxius","owner":"Telxius","address":"1900 Corporate Landing Pkwy, Virginia Beach, VA","city":"Virginia Beach","state":"VA","zip":"unknown","lat":36.777,"lng":-76.026,"yearOnline":"2018","powerMw":30,"sqft":10750,"type":"telecom","status":"operational","region":"continue:Virginia"},{"name":"Microsoft East Wenatchee (EAT03)","operator":"Microsoft","owner":"Microsoft Corporation","address":"875 Urban Industrial Wy","city":"East Wenatchee","state":"WA","zip":"98802","lat":47.414735042522,"lng":-120.209878741379,"yearOnline":"2024","powerMw":57,"sqft":0,"type":"hyperscale","status":"operational","region":"continue:Washington"},{"name":"Washington State Data Center (1500 Jefferson Building)","operator":"WaTech (Washington Technology Solutions)","owner":"FYI Properties (63-20 P3 ownership; long-term lease to the State; developed/managed by Wright Runstad & Company)","address":"1500 Jefferson St SE","city":"Olympia","state":"WA","zip":"98501","lat":47.035506764944,"lng":-122.895818633056,"yearOnline":"2011","powerMw":0,"sqft":373097,"type":"enterprise","status":"operational","region":"continue:Washington"},{"name":"Atlanta AT1","operator":"Equinix","owner":"Mapletree Industrial Trust (Mapletree JV)","address":"180 Peachtree Street NW, Atlanta, GA","city":"Atlanta","state":"GA","zip":"unknown","lat":33.758484691742,"lng":-84.387672696487,"yearOnline":"unknown","powerMw":4,"sqft":79200,"type":"colocation","status":"operational","region":"continue:Georgia"},{"name":"Centersquare ATL1 - Atlanta Campus","operator":"Centersquare","owner":"Mapletree Industrial Trust (Mapletree Investments)","address":"375 Riverside Parkway, Lithia Springs, GA, USA","city":"Lithia Springs","state":"GA","zip":"unknown","lat":33.743617191656,"lng":-84.582820884767,"yearOnline":"1998","powerMw":81.5,"sqft":137203,"type":"colocation","status":"operational","region":"continue:Georgia"},{"name":"Nex-Tech Salina Data Center","operator":"Nex-Tech","owner":"Nex-Tech","address":"1624 Sunflower Drive","city":"Salina","state":"KS","zip":"unknown","lat":38.806905148525,"lng":-97.633074692191,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"planned","region":"continue:Kansas"},{"name":"CloudHQ MSP Campus","operator":"CloudHQ","owner":"CloudHQ","address":"West Creek Corporate Center (exact building address TBD)","city":"Chaska","state":"MN","zip":"unknown","lat":44.845,"lng":-93.61,"yearOnline":"unknown","powerMw":200,"sqft":1400000,"type":"hyperscale","status":"planned","region":"continue:Minnesota"},{"name":"Armory Innovation Data Center","operator":"unknown","owner":"500 Prospect (data center site): ENVISAGE PROPERTIES LLC & GREEN STREET 2900 INVESTORS LLC; 3660 Market (Armory): GREEN STREET ARMY INVESTORS LLC","address":"3660 Market St and 500 Prospect Ave, St. Louis, MO","city":"St. Louis","state":"MO","zip":"unknown","lat":38.631853859718,"lng":-90.236869299924,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Missouri"},{"name":"CenterServ: Albuquerque Data Center","operator":"CenterServ","owner":"Unknown; last reported sale to Jim Long and investors (2016).","address":"6565 Americas Parkway NE, Albuquerque, NM 87110","city":"Albuquerque","state":"NM","zip":"87110","lat":35.10047,"lng":-106.57088,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:New Mexico"},{"name":"CentriLogic Lenoir, North Carolina Data Center","operator":"CentriLogic (Dacentec)","owner":"CentriLogic","address":"801 Main Street NW","city":"Lenoir","state":"NC","zip":"28645","lat":35.922686920358,"lng":-81.542354047888,"yearOnline":"2010","powerMw":1,"sqft":23500,"type":"colocation","status":"operational","region":"continue:North Carolina"},{"name":"NCDIT Western Data Center","operator":"North Carolina Department of Information Technology (NCDIT)","owner":"State of North Carolina","address":"1371 Old Caroleen Road","city":"Forest City","state":"NC","zip":"28043","lat":35.310821908986,"lng":-81.82645058386,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:North Carolina"},{"name":"TierPoint Raleigh-Cary","operator":"TierPoint","owner":"Menlo Equities","address":"111 Corning Road","city":"Cary","state":"NC","zip":"27511","lat":35.75452307165,"lng":-78.735444152249,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:North Carolina"},{"name":"AceHost Raleigh-Durham Data Center","operator":"AceHost","owner":"unknown","address":"4518 S. Miami Blvd.","city":"Durham","state":"NC","zip":"27703","lat":35.897225636186,"lng":-78.849257094064,"yearOnline":"unknown","powerMw":1,"sqft":14000,"type":"colocation","status":"operational","region":"continue:North Carolina"},{"name":"Project Laurel Data Center Campus (MCD 7 LLC)","operator":"unknown","owner":"MCD 7 LLC","address":"Bounded by Sanatoga Rd, Evergreen Rd, Possum Hollow Rd, and Lightcap Rd","city":"Limerick Township","state":"PA","zip":"unknown","lat":40.233510893787,"lng":-75.564515584743,"yearOnline":"unknown","powerMw":750,"sqft":1400000,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"Wildcat Ridge Data Center Campus","operator":"Cornell Realty Management LLC","owner":"Cornell Realty Management LLC","address":"Wildcat Road and Route 6","city":"Archbald","state":"PA","zip":"unknown","lat":41.720355743519,"lng":-78.921536921445,"yearOnline":"unknown","powerMw":1600,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"Vantage NV12","operator":"Vantage Data Centers","owner":"Vantage Data Centers NV12, LLC","address":"200 Electric Ave","city":"Sparks","state":"NV","zip":"unknown","lat":39.551,"lng":-119.399,"yearOnline":"2027","powerMw":64,"sqft":260000,"type":"hyperscale","status":"under-construction","region":"continue:Nevada"},{"name":"Element Critical Houston One Data Center","operator":"Element Critical","owner":"Element Critical (backed by 26North Partners, Arctos, Mercuria, and Safanad)","address":"22000 Franz Road, Katy, TX 77449","city":"Katy","state":"TX","zip":"77449","lat":29.802138271957,"lng":-95.754070368898,"yearOnline":"unknown","powerMw":26,"sqft":118248,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Fort Stockton Clean Campus","operator":"Lancium","owner":"Lancium","address":"1753 US Hwy 285","city":"Fort Stockton","state":"TX","zip":"unknown","lat":30.905622840006,"lng":-102.917046491409,"yearOnline":"2022","powerMw":25,"sqft":100000,"type":"hyperscale","status":"operational","region":"continue:Texas"},{"name":"PowerCampus® Dallas","operator":"Skybox Datacenters","owner":"Bandera Ventures and Skybox Datacenters (joint development)","address":"2401 South Dallas Ave, Lancaster, TX 75146","city":"Lancaster","state":"TX","zip":"75146","lat":32.560715495371,"lng":-96.769860927133,"yearOnline":"2026","powerMw":300,"sqft":1000000,"type":"wholesale","status":"under-construction","region":"continue:Texas"},{"name":"Switch AUS04 (The Rock Building 1)","operator":"Switch, Inc.","owner":"Switch (owned by DigitalBridge Group & IFM Investors)","address":"150 Dell Way, Round Rock, TX","city":"Round Rock","state":"TX","zip":"unknown","lat":30.486781736706,"lng":-97.673632662507,"yearOnline":"2024","powerMw":25,"sqft":0,"type":"hyperscale","status":"operational","region":"continue:Texas"},{"name":"Enzu AUS1 – Austin, TX","operator":"Enzu","owner":"Digital Realty","address":"7620 Metro Center Drive, Austin, TX 78744","city":"Austin","state":"TX","zip":"78744","lat":30.214628042453,"lng":-97.693727699843,"yearOnline":"unknown","powerMw":0,"sqft":45000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"TierPoint Oklahoma City (OKC)","operator":"TierPoint","owner":"Mapletree Industrial Trust (MIT)","address":"4121 Perimeter Center Dr, Oklahoma City, OK 73112","city":"Oklahoma City","state":"OK","zip":"73112","lat":35.512493296227,"lng":-97.593521160051,"yearOnline":"unknown","powerMw":0,"sqft":22455,"type":"telecom","status":"operational","region":"continue:Oklahoma"},{"name":"8100 Boone Boulevard","operator":"Digital Realty","owner":"Digital Realty Trust (REIT); building owned by Gosnell Properties (Digital Realty leases/operates data center space within the building)","address":"8100 Boone Blvd, Vienna, VA 22182","city":"Vienna","state":"VA","zip":"22182","lat":38.91315637459,"lng":-77.225732385936,"yearOnline":"1992","powerMw":2.2,"sqft":17015,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"SunGard – Washington Data Center (Federal Way Workgroup)","operator":"SunGard Availability Services","owner":"SunGard Availability Services","address":"501 South 336th Street #200","city":"Federal Way","state":"WA","zip":"98003","lat":47.300193211165,"lng":-122.326487204623,"yearOnline":"unknown","powerMw":0,"sqft":12000,"type":"colocation","status":"decommissioned","region":"continue:Washington"},{"name":"Bitdeer Washington Data Center","operator":"Bitdeer Technologies Group","owner":"Bitdeer Technologies Group","address":"624 Urban Industrial Wy","city":"East Wenatchee","state":"WA","zip":"98802","lat":47.41390237124,"lng":-120.209264185842,"yearOnline":"2018","powerMw":13,"sqft":0,"type":"crypto","status":"under-construction","region":"continue:Washington"},{"name":"University of Washington 4545 Building Data Center","operator":"University of Washington (UW-IT)","owner":"University of Washington","address":"4545 15th Avenue NE","city":"Seattle","state":"WA","zip":"unknown","lat":47.662723164301,"lng":-122.31206074333,"yearOnline":"unknown","powerMw":0,"sqft":113944,"type":"enterprise","status":"operational","region":"continue:Washington"},{"name":"375 Riverside - Digital Realty Data Center (Lithia Springs)","operator":"Digital Realty","owner":"Mapletree Industrial Trust","address":"330 Riverside Parkway, Lithia Springs, GA","city":"Lithia Springs","state":"GA","zip":"unknown","lat":33.746377718744,"lng":-84.581824890366,"yearOnline":"1998","powerMw":32,"sqft":250193,"type":"colocation","status":"operational","region":"continue:Georgia"},{"name":"C-Spire: MegaGate Data Center","operator":"C Spire","owner":"C Spire","address":"4200 Mamie Street, Suite 210, Hattiesburg, MS 39402","city":"Hattiesburg","state":"MS","zip":"39402","lat":31.320108635429,"lng":-89.349344361044,"yearOnline":"unknown","powerMw":0,"sqft":36714,"type":"colocation","status":"operational","region":"continue:Mississippi"},{"name":"Malcolm A. Portera High Performance Computing Center","operator":"Applied Research Collaboratory (ARC), Mississippi State University (formerly HPC²)","owner":"Mississippi State University","address":"2 Research Boulevard, Starkville, MS 39759","city":"Starkville","state":"MS","zip":"39759","lat":33.469132315137,"lng":-88.793980789831,"yearOnline":"2014","powerMw":0,"sqft":73000,"type":"enterprise","status":"operational","region":"continue:Mississippi"},{"name":"Missouri State University Telecommunication Center Data Center","operator":"Missouri State University Information Services — Telecommunications Services / Networking and Telecommunications","owner":"Missouri State University","address":"901 S. National Ave, Springfield, MO 65897","city":"Springfield","state":"MO","zip":"65897","lat":37.198819570522,"lng":-93.276203123239,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Missouri"},{"name":"Anexio Infrastructure Park Data Center","operator":"Anexio","owner":"Anexio","address":"2717 Weck Drive","city":"Durham","state":"NC","zip":"27703","lat":35.928156752798,"lng":-78.850222584408,"yearOnline":"unknown","powerMw":3.3,"sqft":34631,"type":"colocation","status":"operational","region":"continue:North Carolina"},{"name":"Verizon Business – Advanced Data Center Raleigh","operator":"Verizon Business","owner":"Verizon Communications Inc.","address":"3801 Rock Quarry Rd","city":"Raleigh","state":"NC","zip":"27610","lat":35.74549267829,"lng":-78.583573345452,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:North Carolina"},{"name":"HTX1 | Houston Data Center","operator":"Serverfarm","owner":"SF HOUH, LLC (Serverfarm; Manulife Investment Management–backed)","address":"28401 Betka Rd","city":"Hockley","state":"TX","zip":"77447","lat":30.021831470725,"lng":-95.857169034334,"yearOnline":"2006","powerMw":410,"sqft":350000,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Serverfarm CTX2 Houston Data Center","operator":"Serverfarm","owner":"Serverfarm (Manulife-backed)","address":"15555 Cutten Road","city":"Houston","state":"TX","zip":"unknown","lat":29.997197023616,"lng":-95.562175222658,"yearOnline":"Q3 2027","powerMw":60,"sqft":438000,"type":"hyperscale","status":"under-construction","region":"continue:Texas"},{"name":"Edged Dallas (DFW01-1)","operator":"Edged Energy","owner":"Edged Dallas, LLC","address":"505 North Wildwood Drive","city":"Irving","state":"TX","zip":"unknown","lat":32.817506982326,"lng":-96.916929381504,"yearOnline":"2025","powerMw":24,"sqft":168610,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"EdgeConneX HOU01 Houston Data Center","operator":"EdgeConneX","owner":"EdgeConneX (parent: EQT Infrastructure)","address":"1510 Primewest Parkway","city":"Katy","state":"TX","zip":"77449","lat":29.792997739057,"lng":-95.746712037059,"yearOnline":"2014","powerMw":1,"sqft":91400,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"LOGIX Houston #2 (811 Louisiana)","operator":"LOGIX Fiber Networks","owner":"LOGIX","address":"811 Louisiana St.","city":"Houston","state":"TX","zip":"unknown","lat":29.759861766574,"lng":-95.366387594594,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Windstream Hosted Solutions - Ephrata Data Center","operator":"Windstream Hosted Solutions","owner":"Uniti Group Inc.","address":"140 Akron Road","city":"Ephrata","state":"PA","zip":"17522","lat":40.170458216594,"lng":-76.177642672435,"yearOnline":"unknown","powerMw":0.725,"sqft":5000,"type":"colocation","status":"operational","region":"continue:Pennsylvania"},{"name":"Verizon Business - Standard Data Center Pittsburgh 2","operator":"Verizon Business / Verizon","owner":"Verizon Communications Inc.","address":"572-598 Grant Street","city":"Pittsburgh","state":"PA","zip":"15219","lat":40.442046573594,"lng":-79.994945884946,"yearOnline":"unknown","powerMw":0,"sqft":575000,"type":"telecom","status":"operational","region":"continue:Pennsylvania"},{"name":"Verizon Business – Standard Data Center Philadelphia 2","operator":"Verizon Business","owner":"Affiliate of Method Co. (owner of The Graham Building at 30–36 S 15th St)","address":"30 South 15th Street","city":"Philadelphia","state":"PA","zip":"19102","lat":39.951478415066,"lng":-75.16558777783,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"telecom","status":"operational","region":"continue:Pennsylvania"},{"name":"Springdale Data Center","operator":"Dynamo DC (Allegheny DC Property Co.)","owner":"Davidson Kempner Capital Management","address":"151 Porter Street","city":"Springdale","state":"PA","zip":"15144","lat":40.538989353301,"lng":-79.7885457238,"yearOnline":"unknown","powerMw":240,"sqft":652000,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"Springdale Data Center","operator":"Dynamo DC","owner":"Allegheny DC Property Co. LLC","address":"151 Porter Street, Springdale, PA 15144","city":"Springdale","state":"PA","zip":"15144","lat":40.541,"lng":-79.796,"yearOnline":"unknown","powerMw":240,"sqft":652300,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"Cologix ASH2","operator":"Cologix","owner":"Stonepeak Infrastructure Partners","address":"21673 Beaumeade Circle","city":"Ashburn","state":"VA","zip":"unknown","lat":39.019111210691,"lng":-77.456738636814,"yearOnline":"unknown","powerMw":51,"sqft":226000,"type":"colocation","status":"under-construction","region":"continue:Virginia"},{"name":"STACK Infrastructure NVA02F","operator":"STACK Infrastructure","owner":"IPI Partners","address":"9650 Hornbaker Rd","city":"Manassas","state":"VA","zip":"unknown","lat":38.74964753656,"lng":-77.53585701314,"yearOnline":"unknown","powerMw":0,"sqft":260000,"type":"wholesale","status":"under-construction","region":"continue:Virginia"},{"name":"Gotspace Wallingford 1 - Building 1","operator":"Gotspace Data Partners","owner":"Gotspace Data Partners","address":"775 Northrop Rd","city":"Wallingford","state":"CT","zip":"06492","lat":41.484807375623,"lng":-72.771073154725,"yearOnline":"unknown","powerMw":32,"sqft":132351,"type":"hyperscale","status":"planned","region":"continue:Connecticut"},{"name":"Implex Minneapolis Data Center","operator":"ImplexNet","owner":"Artis REIT (subsidiary of RFA Financial); managed by RFA Asset Management","address":"120 South 6th Street","city":"Minneapolis","state":"MN","zip":"55402","lat":44.97717209047,"lng":-93.269697503986,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Minnesota"},{"name":"ColoCrossing GA1 – 34 Peachtree St NW","operator":"ColoCrossing","owner":"Lalani Ventures (Shaneel Lalani)","address":"34 Peachtree St NW, Atlanta, GA 30303","city":"Atlanta","state":"GA","zip":"30303","lat":33.754710995216,"lng":-84.389555914712,"yearOnline":"2014","powerMw":1.6,"sqft":10000,"type":"colocation","status":"operational","region":"continue:Georgia"},{"name":"NSHE North Data Center","operator":"Nevada System of Higher Education – System Computing Services (SCS)","owner":"State of Nevada / Nevada System of Higher Education","address":"2601 Enterprise Rd.","city":"Reno","state":"NV","zip":"89512","lat":39.550228187322,"lng":-119.817440181298,"yearOnline":"1990","powerMw":0,"sqft":20000,"type":"enterprise","status":"operational","region":"continue:Nevada"},{"name":"Project Laurel Data Center Campus","operator":"MCD 7 LLC","owner":"MCD 7 LLC","address":"Bounded by Sanatoga Rd, Evergreen Rd, Possum Hollow Rd, and Lightcap Rd, Limerick Township, PA 19464","city":"Limerick Township","state":"PA","zip":"19464","lat":40.232,"lng":-75.566,"yearOnline":"unknown","powerMw":750,"sqft":1400000,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"MRP Industrial Watts Township / Susquehanna Crossings Data Center Campus","operator":"MRP Industrial","owner":"MRPI Amity Hall, LLC","address":"Between Amity Rd, Susquehanna Trail, and US 22/322, Watts Township, PA","city":"Watts Township","state":"PA","zip":"unknown","lat":40.425,"lng":-77.092,"yearOnline":"unknown","powerMw":0,"sqft":1380000,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"Fairview Crossroads Data Center","operator":"Elysian Partners LLC","owner":"Fairview Crossroads LLC","address":"Interstate 83 and Lewisberry Rd, Fairview Township, PA","city":"Fairview Township","state":"PA","zip":"unknown","lat":40.175,"lng":-76.83,"yearOnline":"unknown","powerMw":0,"sqft":750000,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"CoreWeave Lancaster Data Center – 216 Greenfield Road","operator":"CoreWeave","owner":"Machine Investment Group","address":"216 Greenfield Road, Lancaster, PA 17601","city":"Lancaster","state":"PA","zip":"17601","lat":40.048,"lng":-76.271,"yearOnline":"2027","powerMw":300,"sqft":1100000,"type":"hyperscale","status":"under-construction","region":"continue:Pennsylvania"},{"name":"Lancaster AI Hub West (LPW) - 1375 Harrisburg Pike","operator":"CoreWeave, Inc.","owner":"Machine Investment Group; campus JV with Blue Owl and Chirisa Technology Parks affiliates","address":"1375 Harrisburg Pike, Lancaster, PA 17601","city":"Lancaster","state":"PA","zip":"17601","lat":40.048,"lng":-76.339,"yearOnline":"2029","powerMw":100,"sqft":1000000,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"CoreWeave: Lancaster, PA Data Center","operator":"CoreWeave","owner":"Machine Investment Group and Chirisa Technology Parks","address":"216 Greenfield Road and 1375 Harrisburg Pike, Lancaster, PA 17601","city":"Lancaster","state":"PA","zip":"17601","lat":40.048,"lng":-76.305,"yearOnline":"unknown","powerMw":100,"sqft":0,"type":"hyperscale","status":"under-construction","region":"continue:Pennsylvania"},{"name":"Pennsylvania Digital 1 (PAX-1) Hyperscale Campus","operator":"PowerHouse Data Centers","owner":"Joint venture of Pennsylvania Data Center Partners and PowerHouse Data Centers; land acquired by Carlisle Development Partners LLC.","address":"980 Waggoners Gap Road, Carlisle, PA 17013","city":"Carlisle","state":"PA","zip":"17013","lat":40.238,"lng":-77.244,"yearOnline":"2027","powerMw":1350,"sqft":4200000,"type":"hyperscale","status":"under-construction","region":"continue:Pennsylvania"},{"name":"Falls Township Data Center Development","operator":"Amazon Data Services, Inc. (Amazon Web Services)","owner":"NorthPoint Development / NP Falls Township Industrial, LLC","address":"1 Ben Fairless Drive, Keystone Trade Center, Falls Township, PA 19067","city":"Falls Township","state":"PA","zip":"19067","lat":40.14,"lng":-74.77,"yearOnline":"unknown","powerMw":0,"sqft":2000000,"type":"hyperscale","status":"under-construction","region":"continue:Pennsylvania"},{"name":"Project Hazelnut Data Center Technology Campus","operator":"NorthPoint Development","owner":"NP Hazleton Holdings 1 LLC","address":"Humboldt North Industrial Park, Hazle Township, PA","city":"Hazle Township","state":"PA","zip":"unknown","lat":40.98,"lng":-75.98,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"Lumen Lancaster 1","operator":"Lumen Technologies","owner":"Lumen Technologies","address":"1720 Hempstead Road, Lancaster, PA 17601","city":"Lancaster","state":"PA","zip":"17601","lat":40.06,"lng":-76.29,"yearOnline":"unknown","powerMw":0,"sqft":5000,"type":"telecom","status":"operational","region":"continue:Pennsylvania"},{"name":"Chirisa: Pittsburgh, PA Data Center (182 Northpointe Blvd)","operator":"Chirisa Technology Parks (CTP)","owner":"Chirisa Technology Parks (Chirisa Capital affiliate)","address":"182 Northpointe Boulevard, Freeport, PA","city":"Freeport","state":"PA","zip":"unknown","lat":40.69,"lng":-79.662,"yearOnline":"2026","powerMw":100,"sqft":115255,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"TECfusions Keystone Connect","operator":"TECfusions","owner":"TECfusions","address":"New Kensington / Westmoreland County, PA","city":"New Kensington","state":"PA","zip":"unknown","lat":40.57,"lng":-79.76,"yearOnline":"2026","powerMw":3000,"sqft":0,"type":"hyperscale","status":"under-construction","region":"continue:Pennsylvania"},{"name":"2100 Renaissance Blvd Data Center (proposal)","operator":"unknown","owner":"MLP Ventures (Brian O’Neill)","address":"2100 Renaissance Boulevard, King of Prussia, PA 19406","city":"King of Prussia","state":"PA","zip":"19406","lat":40.095,"lng":-75.349,"yearOnline":"unknown","powerMw":0,"sqft":187946,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"York 2 Energy Center Data Center","operator":"Energy Capital Partners (ECP) / Calpine Corporation","owner":"Energy Capital Partners","address":"York, PA","city":"York","state":"PA","zip":"unknown","lat":39.96,"lng":-76.73,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"AWS Kline Township Data Center Campus","operator":"Amazon Web Services (AWS)","owner":"Amazon Web Services (AWS)","address":"Lofty Road, Kline Township, PA","city":"Kline Township","state":"PA","zip":"unknown","lat":40.86,"lng":-75.87,"yearOnline":"unknown","powerMw":0,"sqft":2034000,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"Hummelstown Quarry Campus - Building 1","operator":"Hanover Company","owner":"HCI DP Land Acquisition LLC","address":"Hummelstown Quarry Campus, Harrisburg, PA","city":"Harrisburg","state":"PA","zip":"unknown","lat":40.27,"lng":-76.8,"yearOnline":"unknown","powerMw":0,"sqft":401800,"type":"hyperscale","status":"planned","region":"continue:Pennsylvania"},{"name":"Data Center Co-Location","operator":"OU Information Technology (University Information Technology)","owner":"University of Oklahoma","address":"660 Parrington Oval, Norman, OK 73019","city":"Norman","state":"OK","zip":"73019","lat":35.210210670258,"lng":-97.445422687036,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:Oklahoma"},{"name":"UW Tower Data Center","operator":"University of Washington Information Technology (UW-IT)","owner":"University of Washington","address":"4333 Brooklyn Ave NE","city":"Seattle","state":"WA","zip":"98105","lat":47.660081391292,"lng":-122.314405001543,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Washington"},{"name":"Lumen Denver Data Center #1 (formerly CenturyLink Denver Data Center #1)","operator":"Lumen Technologies","owner":"AFL-CIO Building Investment Trust (51%) and Brookfield Properties (49%)","address":"1801 California Street","city":"Denver","state":"CO","zip":"80202","lat":39.747143606999,"lng":-104.989782997243,"yearOnline":"unknown","powerMw":3.2,"sqft":46542,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Anschutz Health Sciences Building (AHSB) Data Center","operator":"University of Colorado – University Information Services (UIS)","owner":"University of Colorado Anschutz Medical Campus","address":"Anschutz Health Sciences Building, 1890 N Revere Ct","city":"Aurora","state":"CO","zip":"80045","lat":39.744637858374,"lng":-104.841950407623,"yearOnline":"2023","powerMw":0,"sqft":5500,"type":"enterprise","status":"operational","region":"continue:Colorado"},{"name":"Batavia Data Center Project-Hut 8","operator":"Hut 8","owner":"Batavia DC Corp.","address":"1780 Hubbard Ave","city":"Batavia","state":"IL","zip":"60510","lat":41.85954718465,"lng":-88.270067240544,"yearOnline":"unknown","powerMw":50,"sqft":120000,"type":"hyperscale","status":"planned","region":"continue:Illinois"},{"name":"Google Papillion Data Center Campus","operator":"Google LLC","owner":"Google LLC","address":"14706 Schram Road, Papillion, NE 68138, USA","city":"Papillion","state":"NE","zip":"68138","lat":41.132570077151,"lng":-96.143727940505,"yearOnline":"2020","powerMw":405,"sqft":1302804,"type":"hyperscale","status":"operational","region":"continue:Nebraska"},{"name":"Tarheel Cloud Data Center","operator":"Tarheel Media (MLW & Associates, LLC)","owner":"Tarheel Media (MLW & Associates, LLC)","address":"113 W Edwards St","city":"Princeton","state":"NC","zip":"27569","lat":35.465518042356,"lng":-78.159667768857,"yearOnline":"unknown","powerMw":0,"sqft":778,"type":"colocation","status":"operational","region":"continue:North Carolina"},{"name":"BalsamWest Data Center","operator":"BalsamWest Fibernet LLC","owner":"Drake Enterprises (50%) and Eastern Band of Cherokee Indians (50%)","address":"35 Bonnie Ln","city":"Sylva","state":"NC","zip":"28779","lat":35.350800582538,"lng":-83.208542138072,"yearOnline":"2018","powerMw":0,"sqft":0,"type":"colocation","status":"operational","region":"continue:North Carolina"},{"name":"Natelli Henderson Data Center","operator":"Natelli Holdings","owner":"Natelli Investments LLC","address":"Pine Meadow Trail & US-158 BUS","city":"Henderson","state":"NC","zip":"unknown","lat":36.305335803193,"lng":-78.466659415141,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"unknown","status":"planned","region":"continue:North Carolina"},{"name":"Connect Data Centers | 5341 N Hanley Road","operator":"Connect Data Centers","owner":"Oppidan Investment Company","address":"5341 N Hanley Road, Berkeley, MO","city":"Berkeley","state":"MO","zip":"unknown","lat":38.731755796401,"lng":-90.327132037692,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"wholesale","status":"under-construction","region":"continue:Missouri"},{"name":"World Wide Technology Building 60 ATC","operator":"World Wide Technology","owner":"World Wide Technology","address":"60 Weldon Parkway, Maryland Heights, MO 63043","city":"Maryland Heights","state":"MO","zip":"63043","lat":38.710057977009,"lng":-90.441342310168,"yearOnline":"unknown","powerMw":0,"sqft":26000,"type":"enterprise","status":"operational","region":"continue:Missouri"},{"name":"Lumen Houston 3","operator":"Lumen Technologies (Lumen)","owner":"Lumen","address":"2300 Lyons Avenue","city":"Houston","state":"TX","zip":"77020","lat":29.771616593976,"lng":-95.346459046822,"yearOnline":"unknown","powerMw":0,"sqft":23870,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Windstream: Texarkana, TX Data Center","operator":"Windstream (a Uniti company)","owner":"Windstream","address":"507 Olive St","city":"Texarkana","state":"TX","zip":"75501","lat":33.424767011191,"lng":-94.043656340907,"yearOnline":"unknown","powerMw":0,"sqft":67500,"type":"colocation","status":"operational","region":"continue:Texas"},{"name":"Duos Edge AI - Abilene EDC","operator":"Duos Edge AI, Inc.","owner":"Duos Technologies Group, Inc.","address":"1850 Texas State Highway 351, Region 14 Education Service Center","city":"Abilene","state":"TX","zip":"79601","lat":32.480837696009,"lng":-99.692611743203,"yearOnline":"2026","powerMw":0.3,"sqft":715,"type":"edge","status":"operational","region":"continue:Texas"},{"name":"West Campus Data Center (WCDC)","operator":"Texas A&M Technology Services","owner":"Texas A&M University","address":"Texas A&M University West Campus","city":"College Station","state":"TX","zip":"unknown","lat":30.627750661946,"lng":-96.334845210155,"yearOnline":"2018","powerMw":6,"sqft":50000,"type":"enterprise","status":"operational","region":"continue:Texas"},{"name":"CyrusOne NVA8","operator":"CyrusOne","owner":"CyrusOne (parent owned by funds managed by KKR and Global Infrastructure Partners)","address":"45905 Maries Road, Sterling, VA 20166","city":"Sterling","state":"VA","zip":"20166","lat":39.022090498149,"lng":-77.41193752371,"yearOnline":"2018","powerMw":24,"sqft":154230,"type":"colocation","status":"operational","region":"continue:Virginia"},{"name":"Amazon IAD-165","operator":"Amazon Web Services (AWS)","owner":"Amazon Data Services Inc. (Vadata)","address":"13600 EDS Drive, Herndon, VA 20171","city":"Herndon","state":"VA","zip":"20171","lat":38.925572641925,"lng":-77.426185611566,"yearOnline":"unknown","powerMw":250,"sqft":2400000,"type":"hyperscale","status":"operational","region":"continue:Virginia"},{"name":"CyrusOne: Vint Hill","operator":"CyrusOne LLC","owner":"KKR and Global Infrastructure Partners","address":"Vint Hill Pkwy & VA-215, Vint Hill, VA","city":"Vint Hill","state":"VA","zip":"unknown","lat":37.090324681512,"lng":-79.62477001868,"yearOnline":"unknown","powerMw":0,"sqft":870000,"type":"hyperscale","status":"planned","region":"continue:Virginia"},{"name":"Revolve Labs: Minnesota 2","operator":"Revolve Labs","owner":"Revolve Labs","address":"101 8th St W","city":"Glencoe","state":"MN","zip":"unknown","lat":44.76709426942,"lng":-94.161129237637,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"crypto","status":"planned","region":"continue:Minnesota"},{"name":"Flexential Denver - Centennial Data Center","operator":"Flexential","owner":"GI Partners","address":"12500 East Arapahoe Road, Ste C","city":"Centennial","state":"CO","zip":"80112","lat":39.595003005828,"lng":-104.843718080466,"yearOnline":"unknown","powerMw":1.6,"sqft":43294,"type":"colocation","status":"operational","region":"continue:Colorado"},{"name":"Helios Data Center Campus","operator":"Galaxy","owner":"Galaxy Digital","address":"984 Co Rd 112, Afton, TX 79220","city":"Afton","state":"TX","zip":"79220","lat":33.780636279018,"lng":-100.867099886006,"yearOnline":"2026","powerMw":1600,"sqft":0,"type":"hyperscale","status":"operational","region":"continue:Texas"},{"name":"Alborz Data Center","operator":"Alborz LLC (JV of WindHQ LLC and Canaan Inc.)","owner":"Alborz LLC (JV): WindHQ LLC 51%, Canaan Inc. 49%","address":"Randall County, TX, at the Astra Wind Farm substation","city":"Happy","state":"TX","zip":"unknown","lat":34.7867144,"lng":-102.0738511,"yearOnline":"2022","powerMw":40,"sqft":0,"type":"crypto","status":"operational","region":"continue:Texas"},{"name":"Fairfield University Data Center","operator":"Fairfield University Information Technology Services","owner":"Fairfield University","address":"1073 North Benson Road","city":"Fairfield","state":"CT","zip":"06824","lat":41.160875003715,"lng":-73.253934364718,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Connecticut"},{"name":"Duluth Missabe","operator":"First Properties","owner":"First Properties","address":"227 W 1st Street","city":"Duluth","state":"MN","zip":"55802","lat":46.785475059311,"lng":-92.102216627303,"yearOnline":"unknown","powerMw":3,"sqft":5974,"type":"colocation","status":"operational","region":"continue:Minnesota"},{"name":"Lincoln Data Center (LDC)","operator":"Oklahoma Office of Management and Enterprise Services (OMES)","owner":"State of Oklahoma / OMES","address":"3115 N. Lincoln Blvd., Oklahoma City, OK 73105","city":"Oklahoma City","state":"OK","zip":"73105","lat":35.500663679957,"lng":-97.50346886406,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"enterprise","status":"operational","region":"continue:Oklahoma"},{"name":"CyrusOne - Waverly DC1","operator":"CyrusOne Data Centers","owner":"CyrusOne (owned by KKR and Global Infrastructure Partners)","address":"Thayer Rd & Clark Rd","city":"Talkington Township","state":"IL","zip":"62692","lat":39.544435677081,"lng":-89.878943821236,"yearOnline":"2027","powerMw":634,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Illinois"},{"name":"Travelers Data Center","operator":"The Travelers Companies, Inc.","owner":"The Travelers Companies, Inc.","address":"Southwest corner of Nebraska Highway 50 and Schram Road, Sarpy County, NE","city":"unknown","state":"NE","zip":"unknown","lat":41.132494781167,"lng":-96.139112437505,"yearOnline":"2015","powerMw":4,"sqft":183000,"type":"enterprise","status":"operational","region":"continue:Nebraska"},{"name":"Project Labrador","operator":"WHL Dallas 45 LLC / Prime45 Development","owner":"WHL Dallas 45 LLC","address":"1401 Greene Road, Lancaster, TX 75146","city":"Lancaster","state":"TX","zip":"75146","lat":32.595198590679,"lng":-96.730535023075,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Texas"},{"name":"Project Orange","operator":"WHL Dallas 45 LLC / Prime45 Development","owner":"WHL Dallas 45 LLC","address":"201 Sunrise Road, Lancaster, TX","city":"Lancaster","state":"TX","zip":"unknown","lat":32.603768996565,"lng":-96.70491202046,"yearOnline":"unknown","powerMw":252,"sqft":1586410,"type":"hyperscale","status":"planned","region":"continue:Texas"},{"name":"Education Building - Data Center (College of Education Building)","operator":"The University of Texas at El Paso (UTEP)","owner":"The University of Texas at El Paso (UTEP)","address":"500 W University Avenue, College of Education Building, El Paso, TX","city":"El Paso","state":"TX","zip":"unknown","lat":31.770989804007,"lng":-106.503690185474,"yearOnline":"2026","powerMw":0,"sqft":4568,"type":"enterprise","status":"under-construction","region":"continue:Texas"},{"name":"PowerHouse Arcola","operator":"PowerHouse Data Centers","owner":"American Real Estate Partners (AREP)","address":"Arcola Mills Drive & Stone Springs Blvd, Sterling, VA 20166","city":"Sterling","state":"VA","zip":"20166","lat":38.943646,"lng":-77.535963,"yearOnline":"2027","powerMw":120,"sqft":615000,"type":"wholesale","status":"under-construction","region":"continue:Virginia"},{"name":"Holyfield Farm Data Center Campus","operator":"unknown","owner":"Farkas family","address":"20961 Gulick Mill Road, Leesburg, VA 20175","city":"Leesburg","state":"VA","zip":"20175","lat":39.03730201468,"lng":-77.556277654227,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Virginia"},{"name":"Regency DC Campus Ashburn","operator":"unknown","owner":"Regency at Ashburn homeowners; Community Works, LLC (HOA-affiliated negotiation/entitlement vehicle).","address":"Off Waxpool Road and Ashburn Village Boulevard, Ashburn, VA","city":"Ashburn","state":"VA","zip":"unknown","lat":39.014470207941,"lng":-77.484579558626,"yearOnline":"unknown","powerMw":432,"sqft":0,"type":"hyperscale","status":"planned","region":"continue:Virginia"},{"name":"Meta Henrico Data Center","operator":"Meta Platforms, Inc.","owner":"Meta Platforms, Inc. (via Scout Development LLC / HD CVA LLC)","address":"6200 Technology Blvd, Sandston, VA","city":"Sandston","state":"VA","zip":"unknown","lat":37.490311612102,"lng":-77.240523508431,"yearOnline":"2020","powerMw":0,"sqft":2500000,"type":"hyperscale","status":"operational","region":"continue:Virginia"},{"name":"CloudHQ LC1","operator":"CloudHQ","owner":"Iskandar Ventures LLC","address":"21955 Loudoun County Pkwy, Ashburn, VA 20147","city":"Ashburn","state":"VA","zip":"20147","lat":39.008920214662,"lng":-77.461684727468,"yearOnline":"unknown","powerMw":144,"sqft":998400,"type":"wholesale","status":"operational","region":"continue:Virginia"},{"name":"CloudHQ LC2","operator":"CloudHQ","owner":"Kaveh Ventures LLC","address":"44621 Waxpool Rd, Ashburn, VA 20147","city":"Ashburn","state":"VA","zip":"20147","lat":39.013226875813,"lng":-77.475251097716,"yearOnline":"unknown","powerMw":88,"sqft":493504,"type":"wholesale","status":"operational","region":"continue:Virginia"},{"name":"Cogent Edge Data Center - Las Vegas","operator":"Cogent Communications","owner":"Cogent Communications","address":"7941 Giles Street","city":"Las Vegas","state":"NV","zip":"89123","lat":36.045248252796,"lng":-115.170155124939,"yearOnline":"unknown","powerMw":0,"sqft":0,"type":"edge","status":"operational","region":"continue:Nevada"},{"name":"QTS Phoenix 3 DC14 (PHX 3 DC14)","operator":"QTS Data Centers","owner":"Blackstone (via Blackstone Infrastructure Partners and BREIT)","address":"17336 W. Camelback Rd, Litchfield Park, AZ 85340","city":"Litchfield Park","state":"AZ","zip":"85340","lat":33.508216774631,"lng":-112.431969999009,"yearOnline":"unknown","powerMw":0,"sqft":180000,"type":"wholesale","status":"under-construction","region":"continue:Arizona"}] \ No newline at end of file diff --git a/typescript-recipes/parallel-datacenter-map/public/data/enrichments-compact.json b/typescript-recipes/parallel-datacenter-map/public/data/enrichments-compact.json new file mode 100644 index 0000000..4c79eea --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/public/data/enrichments-compact.json @@ -0,0 +1 @@ +{"0":{"description":"Equinix Washington DC DC1 is an operational Equinix carrier‑neutral IBX colocation data center at 21711 Filigree Court (Suite C), on the Ashburn campus with access to a top East Coast peering market. Equinix lists about 19,934–19,935 sq ft of colocation space, while third‑party data indicates a 43,356 sq ft total facility footprint and roughly 2.0 MW total power.","verified_status":"operational","power_capacity_mw":2,"total_sqft":43356,"year_online":"1999","construction_update":"","recent_news":"No DC1-specific updates found in the last six months. Related campus activity: the Equinix Ashburn East expansion (incl. DC‑23) at 22165 Beaumeade Circle remains proposed/in permitting as of April 27, 2026.","notable_tenants":"","verified_name":"DC1","verified_operator":"Equinix","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide; subject to statutory investment and job thresholds; effective July 1, 2010 through June 30, 2035).","natural_hazard_zone":""},"1":{"description":"Equinix Washington DC DC2 is an operational Equinix IBX, carrier‑neutral colocation data center at 21715 Filigree Court in Ashburn, Virginia, offering dense interconnection to major clouds and networks. Equinix materials indicate about 118,446 ft² of colocation space within a roughly 147,600 ft² facility, in service since 2000.","verified_status":"operational","power_capacity_mw":6.2,"total_sqft":147600,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix DC2","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; multiple network carriers with on-site connectivity options","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Retail Sales & Use Tax Exemption for qualifying data center computer equipment (Va. Code §58.1‑609.3(18)), available to operators and certain tenants meeting investment/job thresholds.","natural_hazard_zone":"low risk"},"2":{"description":"Equinix Washington DC DC3 is an operational, carrier-neutral colocation data center operated by Equinix at 44470 Chilum Place in Ashburn, Virginia. Third-party listings indicate roughly 95,444 sq ft of building space with about 67,041 sq ft of raised/colocation space.","verified_status":"operational","power_capacity_mw":5,"total_sqft":95444,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix Washington DC DC3","verified_operator":"Equinix","verified_owner":"Digital Realty","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; Equinix Internet Exchange and Equinix Fabric; multiple on-net providers (e.g., NetActuate, MassiveGRID) per ecosystem listings","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (subject to statutory thresholds; currently set to expire in 2035). No DC3-specific award identified.","natural_hazard_zone":"Above 100-year Base Flood Elevation (implies low flood risk; FEMA Zone X likely, not explicitly cited)"},"3":{"description":"Equinix Washington DC DC4 is an Equinix IBX carrier-neutral colocation data center at 21691 Filigree Court in Ashburn, Virginia, on the company’s Ashburn campus. It provides interconnection in one of the top peering exchange markets in the Washington D.C. metro.","verified_status":"operational","power_capacity_mw":6,"total_sqft":99969,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Washington DC DC4","verified_operator":"Equinix","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (DCRSUT)","natural_hazard_zone":""},"4":{"description":"Equinix Washington DC DC5 is an operational Equinix IBX colocation data center at 21701 Filigree Court, Ashburn, VA, offering about 57,544 ft² of colocation space as part of the company’s Ashburn campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":92037,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix DC5 IBX Data Center (Ashburn, VA)","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; examples include IPTP, Zayo, and Hudson Fiber","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy Virginia (Virginia Electric & Power Company)","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption for qualifying data center equipment.","natural_hazard_zone":""},"5":{"description":"Equinix Washington DC (DC6) is an operational, carrier‑neutral Equinix IBX colocation data center on the company’s Ashburn, Virginia campus at 21721 Filigree Court. Equinix lists 59,370 ft² of colocation space, while third‑party listings report a 148,659‑ft² gross building footprint.","verified_status":"operational","power_capacity_mw":6,"total_sqft":148659,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix DC6 Washington, D.C. IBX Data Center","verified_operator":"Equinix","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; named providers include Charter Communications, Crown Castle, and Hurricane Electric","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy Virginia / Virginia Electric & Power Co.","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide) for qualifying equipment and investments","natural_hazard_zone":""},"6":{"description":"Equinix Washington DC DC10 is an operational, carrier-neutral Equinix IBX colocation data center at 21551 Beaumeade Circle in Ashburn, Virginia. It serves customers on Equinix’s Ashburn campus with interconnection and colocation services.","verified_status":"operational","power_capacity_mw":11.24,"total_sqft":152504,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Washington DC DC10","verified_operator":"Equinix","verified_owner":"Menlo Equities (via Beaumeade Technology Partners LLC)","cooling_type":"unknown","tier_level":"Tier III equivalent design","fiber_providers":"Carrier-neutral; 200+ network providers; Equinix Internet Exchange available.","num_buildings":1,"campus_acres":11,"utility_provider":"Dominion Energy (Virginia Electric & Power Co.)","tax_incentives":"Virginia data center retail sales and use tax exemption for qualifying equipment and software (available for eligible facilities through June 30, 2035).","natural_hazard_zone":"Low risk: Seismic Design Category A; elevation above 500-year base flood elevation."},"7":{"description":"Equinix Washington DC DC11 is an operational, carrier-neutral Equinix IBX colocation data center on the Ashburn campus at 21721 Filigree Court, Suite B, Ashburn, VA, offering access to one of the top U.S. peering markets.","verified_status":"operational","power_capacity_mw":4,"total_sqft":229435,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix DC11","verified_operator":"Equinix","verified_owner":"Equinix","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (DCRSUT)","natural_hazard_zone":"low risk"},"8":{"description":"Equinix Washington DC DC13 is an Equinix-operated, carrier-neutral IBX colocation data center at 21830 Uunet Way in Ashburn, VA. The site originated as Verizon’s IAD1 facility and was redesignated DC13 when Equinix completed the Verizon data center acquisition in May 2017.","verified_status":"operational","power_capacity_mw":12,"total_sqft":108336,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix DC13 (Washington, D.C. IBX Data Center)","verified_operator":"Equinix","verified_owner":"Equinix LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Verizon Telecom, Cogent Communications, Zayo","num_buildings":1,"campus_acres":6,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide; subject to investment and job thresholds).","natural_hazard_zone":"Low risk (not in a mapped high flood hazard; low seismic risk)"},"9":{"description":"Equinix Washington DC DC21 is an operational, carrier-neutral IBX colocation data center at 22175 Beaumeade Circle in Ashburn, Virginia, offering cloud connectivity via Equinix Fabric to AWS Direct Connect and Microsoft Azure. Opened November 18, 2020, it provides roughly 41,000 sq ft in its first phase and about 11.875 MW of critical IT power.","verified_status":"operational","power_capacity_mw":11.875,"total_sqft":41000,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Washington DC DC21","verified_operator":"Equinix","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption for qualifying computer equipment purchased by data centers (statewide program; subject to statutory thresholds).","natural_hazard_zone":""},"10":{"description":"Equinix Washington DC DC22 is an Equinix‑operated colocation (IBX) data center at 22165 Beaumeade Circle in Ashburn, Virginia, described as a state‑of‑the‑art new facility within one of the region’s most interconnected campuses.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2025","construction_update":"","recent_news":"2026-03-25: Equinix requested county approval for a third Ashburn data center building (DC-23) and supporting infrastructure at the same campus, signaling continued campus expansion.","notable_tenants":"","verified_name":"Equinix Washington DC DC22","verified_operator":"Equinix, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (qualifying computer equipment or enabling software).","natural_hazard_zone":""},"11":{"description":"NTT Ashburn VA1 is an operational colocation data center operated by NTT Global Data Centers (NTT DATA) at 44664 Guilford Dr., Ashburn, VA, offering 12.6 MW of critical IT load and 64,723 ft² of data-floor space. The VA1 facility opened in July 2012 and sits within NTT’s Ashburn campus.","verified_status":"operational","power_capacity_mw":12.6,"total_sqft":150000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Ashburn VA1 Data Center","verified_operator":"NTT DATA","verified_owner":"NTT DATA, Inc.","cooling_type":"hybrid","tier_level":"","fiber_providers":"SummitIG; Zayo; CenturyLink (Lumen)","num_buildings":0,"campus_acres":78,"utility_provider":"Dominion Virginia Power","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (Va. Code § 58.1-609.3(18))","natural_hazard_zone":"low risk"},"12":{"description":"NTT’s Ashburn VA2 is an operational colocation data center at 44610 Guilford Dr., Ashburn, VA, offering 14 MW of critical IT load within a roughly 140,000 sq ft facility. The site opened in 2016.","verified_status":"operational","power_capacity_mw":14,"total_sqft":140000,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Ashburn VA2 Data Center","verified_operator":"NTT Global Data Centers Americas (NTT DATA, Inc.)","verified_owner":"NTT DC REIT","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; Cogent present; access to 200+ telecom providers","num_buildings":9,"campus_acres":78,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption for qualifying data-center equipment and enabling software","natural_hazard_zone":""},"13":{"description":"Digital Realty ACC3 is an operational, fully leased colocation data center at 44520 Hastings Drive in Ashburn, Virginia, within Digital Realty’s Ashburn Corporate Campus, with about 13.9 MW of IT capacity and roughly 147,000 sq ft.","verified_status":"operational","power_capacity_mw":13.9,"total_sqft":146999,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty ACC3 (44520 Hastings Drive)","verified_operator":"Digital Realty","verified_owner":"Digital Core REIT (90% interest); Digital Realty Trust (sponsor/10% retained interest)","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":9.7,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption for qualifying computer equipment and enabling software (statewide program for qualifying data centers).","natural_hazard_zone":"FEMA Flood Zone X (shaded)/Zone B – moderate flood hazard"},"14":{"description":"Digital Realty’s ACC4 at 44480 Hastings Drive in Ashburn, VA is an operational colocation data center, LEED Gold-certified, offering about 348,000 sq ft with N+2 UPS and N+2 cooling redundancy.","verified_status":"operational","power_capacity_mw":36.4,"total_sqft":348000,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"No current named anchor tenants are publicly disclosed. Historical: Yahoo previously leased space at ACC4; an existing DFT customer subleased the 13 MW Yahoo vacated.","verified_name":"Digital Realty Northern Virginia ACC4 (ACC4) - 44480 Hastings Drive, Ashburn, VA 20147","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":17,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (Va. Code § 58.1-609.3(18))","natural_hazard_zone":""},"15":{"description":"Digital Realty’s ACC5 at 44521 Hastings Drive in Ashburn, Virginia is an operational, cloud- and carrier-neutral colocation data center with a 348,000 ft² building footprint operated by Digital Realty.","verified_status":"operational","power_capacity_mw":36.4,"total_sqft":348000,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Northern Virginia ACC5 - 44521 Hastings Drive","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; on-net providers include GTT/Intellifiber Networks, XO Communications, and Global Crossing","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption for qualifying computer equipment; Digital Realty’s Loudoun investment made the company eligible for the exemption on eligible data center computer equipment.","natural_hazard_zone":""},"16":{"description":"ACC6 is Digital Realty’s operational colocation data center at 44461 Chilum Place in Ashburn, Virginia, providing roughly 222,260 sq ft of space and about 26 MW of critical power.","verified_status":"operational","power_capacity_mw":26,"total_sqft":222260,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"Rackspace Technology (IAD3/Ashburn I) — leases space at 44461 Chilum Place (ACC6).","verified_name":"Northern Virginia ACC6 - 44461 Chilum Place","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc. (via 2017 merger with DuPont Fabros Technology)","cooling_type":"chilled water","tier_level":"No Uptime Institute Tier certification publicly listed; designed with N+2 redundancy (optional 2N).","fiber_providers":"carrier-neutral; four separate network points of entry (POEs) with diverse underground duct banks","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption for qualifying computer equipment and supporting infrastructure (currently authorized through June 30, 2035).","natural_hazard_zone":"low risk (no Special Flood Hazard Area indicated; Ashburn shows minor flood risk)"},"17":{"description":"ACC7 is a Digital Realty–operated multi-tenant colocation data center at 21625 Gresham Drive in Ashburn, Virginia, noted as one of the largest in North America. It totals about 446,000 square feet and was designed for up to 41.6 MW of critical power.","verified_status":"operational","power_capacity_mw":41.6,"total_sqft":446000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"Facebook (now Meta) — announced in May 2015 as a tenant at ACC7; no broader current tenant list is publicly disclosed.","verified_name":"Northern Virginia ACC7 - 21625 Gresham Drive","verified_operator":"Digital Realty","verified_owner":"Alshain Ventures LLC (Digital Realty subsidiary)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":23,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption","natural_hazard_zone":"Low flood risk (outside FEMA Special Flood Hazard Area)"},"18":{"description":"Digital Realty IAD-56 is a colocation data center under construction at 21780 Filigree Court in Ashburn, Virginia, developed by Digital Realty and expected to total about 342,003 square feet.","verified_status":"under-construction","power_capacity_mw":10,"total_sqft":342003,"year_online":"unknown","construction_update":"Active build-out. Key permits include: Core & Shell (BLDC-2025-011501, filed Jul 9, 2025); Suite 100 Fit-Out/Data Hall (BLDC-2025-040075, filed Oct 20, 2025); Suite 200 Fit-Out/Data Hall (BLDC-2025-040078, filed Nov 24, 2025); Data center suite fit-out (BLDC-2026-008378, filed Apr 13, 2026); and Suite/Data Hall fit-out (BLDC-2025-051484, filed May 14, 2026).","recent_news":"May 14, 2026: Loudoun permit BLDC-2025-051484 issued/filed for a Suite Tenant Fit-Out/Data Hall within the existing data center core and shell at 21780 Filigree Ct.","notable_tenants":"","verified_name":"Digital Realty IAD-56 Data Center","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc. (through subsidiaries: Digital Filigree LLC / Digital Filigree REIT, LLC / Digital Filigree Holding, L.P.)","cooling_type":"unknown","tier_level":"","fiber_providers":"Zayo","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption; Loudoun County personal property tax rate for computer equipment in a data center: $4.15 per $100 of assessed value.","natural_hazard_zone":""},"19":{"description":"Single‑story Ashburn colocation/wholesale data center at 43915 Devin Shafron Drive (formerly Digital Realty IAD15, Bldg A), sold to GI Partners in April 2023; it offers about 9 MW of critical IT load and roughly 132k sq ft and remains fully leased/operational.","verified_status":"operational","power_capacity_mw":9,"total_sqft":132285,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"Oracle and Morgan Stanley","verified_name":"IAD15 — 43915 Devin Shafron Drive (Building A)","verified_operator":"GI Property Management (GI Partners)","verified_owner":"GI Partners (via GI TC Devin Shafron LLC / TechCore)","cooling_type":"unknown","tier_level":"Tier III (reported by third-party directory; no Uptime certification cited)","fiber_providers":"","num_buildings":0,"campus_acres":8,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption for qualifying data center equipment purchases (statewide program).","natural_hazard_zone":""},"20":{"description":"Digital Realty IAD12 (Building B) is an operational colocation data center at 43881 Devin Shafron Drive in Ashburn, Virginia, operated by Digital Realty. It totals 180,000 square feet and provides cloud- and carrier-neutral colocation with N+1 cooling on Digital Realty’s Northern Virginia campus.","verified_status":"operational","power_capacity_mw":9,"total_sqft":180000,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"IAD12 Data Center | 43881 Devin Shafron Drive (Bldg B)","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"unknown","tier_level":"Design: 2N UPS / N+1 cooling; no Uptime Institute Tier certification published","fiber_providers":"carrier-neutral; known on-net: Cogent","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (Code §58.1-609.3(18)); Digital Realty’s Loudoun investment was noted as eligible.","natural_hazard_zone":""},"21":{"description":"Digital Realty’s IAD13 at 43831 Devin Shafron Drive (Building C) in Ashburn is a one‑storey powered‑shell data center on the Ashburn Corporate Campus that is currently operational.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty IAD13 / 43831 Devin Shafron Drive (Building C)","verified_operator":"Digital Realty","verified_owner":"Digital Core REIT","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications","num_buildings":0,"campus_acres":6.74,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide program for qualifying data center equipment).","natural_hazard_zone":""},"22":{"description":"Digital Realty’s IAD14 is an operational colocation data center at 43791 Devin Shafron Drive (Bldg D) in Ashburn, Virginia, with a total building size of 135,000 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":135000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty IAD14 Data Center, 43791 Devin Shafron Drive (Building D), Ashburn, VA 20147","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications; numerous fiber networks present on campus","num_buildings":0,"campus_acres":98,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide program for qualifying computer equipment purchases).","natural_hazard_zone":"FEMA Flood Zones B and X (area of moderate flood hazard between 100‑year and 500‑year limits)"},"23":{"description":"Single‑story Ashburn data center at 43790 Devin Shafron Drive (Building E, historically Digital Realty IAD23), operated/marketed by Digital Realty with an estimated 4.8 MW and a footprint around 153,594 SF; public records indicate it came online in 2011.","verified_status":"operational","power_capacity_mw":4.8,"total_sqft":153594,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"Amazon Web Services (AWS) – associated as AWS IAD13","verified_name":"Ashburn Data Center (Menlo Digital) – 43790 Devin Shafron Drive, Building E (formerly Digital Realty IAD23; AWS IAD-13 tenant)","verified_operator":"Amazon Web Services (VADATA, Inc.)","verified_owner":"Menlo Equities","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent (on-net)","num_buildings":9,"campus_acres":98,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (state sales/use tax exemption on qualifying computer equipment and enabling software for eligible data centers).","natural_hazard_zone":""},"24":{"description":"Digital Realty’s IAD24 is an operational colocation data center at 43830 Devin Shafron Drive (Building F) on the company’s Northern Virginia campus, totaling 113,300 sq ft. Third‑party facility profiles list approximately 6.8 MW of fully built‑out power.","verified_status":"operational","power_capacity_mw":6.8,"total_sqft":113300,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty IAD24 (Building F), 43830 Devin Shafron Drive, Ashburn, VA 20147; also listed as Amazon AWS IAD23 Ashburn at the same address","verified_operator":"Digital Realty (operator); Amazon Web Services is a tenant at this address (AWS IAD23).","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Zayo; AT&T; Cogent Communications; Verizon","num_buildings":6,"campus_acres":98,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption for qualifying purchases; facility-specific qualification not confirmed.","natural_hazard_zone":""},"25":{"description":"Digital Realty’s ACC2 is an operational colocation/wholesale data center at 44490 Chilum Place in Ashburn, Virginia, operated by Digital Realty and built at roughly 87,000 square feet with multi-tenant colocation design.","verified_status":"operational","power_capacity_mw":10.4,"total_sqft":87000,"year_online":"2005","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty ACC 2 (44490 Chilum Place)","verified_operator":"Digital Realty","verified_owner":"Blue Sling ACC 2, LLC (subsidiary of Digital Realty Trust, Inc.)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy (Dominion Virginia Power)","tax_incentives":"Virginia data center sales-and-use tax exemption (state program; commonly applied in Loudoun County).","natural_hazard_zone":""},"26":{"description":"Operational colocation data center at 21561 Beaumeade Circle in Ashburn, VA (Building B of the 21561/21571 campus), owned by Mapletree and marketed as part of Centersquare’s Ashburn WDC1 campus. The site is an established facility within Ashburn’s data center cluster.","verified_status":"operational","power_capacity_mw":9,"total_sqft":72848,"year_online":"2000","construction_update":"As of 2026-06, no active construction or expansion is listed for 21561; the facility is commissioned and shows no leaseable power under construction.","recent_news":"","notable_tenants":"","verified_name":"Centersquare Ashburn – WDC1 Building B (IAD4‑B), 21561 Beaumeade Circle","verified_operator":"Centersquare (formerly Evoque Data Center Solutions)","verified_owner":"Mapletree Industrial Trust (MIT) – effective 50% stake","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; includes Megaport and Level 3 (Lumen)","num_buildings":2,"campus_acres":14.15,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (for qualifying equipment; generally through June 30, 2035, subject to program terms).","natural_hazard_zone":"low risk (county-level: low natural disaster and low earthquake risk; no specific FEMA SFHA designation cited)"},"27":{"description":"QTS Ashburn 1 (ASH1) DC1 is QTS’s wholesale/colocation data center at 22271 Broderick Drive, Sterling, Virginia, delivering 55 MW+ of critical power; the campus is expanding with DC2 slated to come online in Q2 2026.","verified_status":"operational","power_capacity_mw":55,"total_sqft":427320,"year_online":"2019","construction_update":"No active DC1 construction. Campus expansion: ASH1 DC2 under construction, targeting Q2 2026; Loudoun County tenant-fitout permit recorded for 22280 Randolph Dr (Mar 2026).","recent_news":"Campus expansion progressing: QTS lists ASH1 DC2 as coming online in Q2 2026, and a Loudoun County tenant-fitout building permit for 22280 Randolph Dr (DC2) was filed in March 2026.","notable_tenants":"","verified_name":"QTS Ashburn 1 – ASH1 DC1","verified_operator":"QTS Data Centers","verified_owner":"QTS Investment Properties Ashburn LLC (QTS, acquired by Blackstone funds in 2021)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (equipment/software) if statutory thresholds are met.","natural_hazard_zone":""},"28":{"description":"Vantage VA32 is a hyperscale data center building within Vantage Data Centers’ Ashburn III (VA3) campus in Ashburn, Virginia, operated by Vantage. The VA3 campus spans 134 acres and is planned for seven multi‑story facilities totaling 288MW across more than 2 million sq ft.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"2026","construction_update":"2026: Virginia DEQ records show an Article 6 minor NSR air permit for Vantage Data Center VA3 LLC authorizing construction/operation, indicating ongoing development activity at the VA3 campus that includes VA32.","recent_news":"Apr 1, 2026: A local conservation group announced a public Q&A about its new air-quality study on Vantage’s data center operations in Loudoun County, signaling heightened community scrutiny.","notable_tenants":"","verified_name":"Vantage VA32 (part of Vantage Ashburn III / VA3 Data Center Campus)","verified_operator":"Vantage Data Centers","verified_owner":"Vantage Data Centers VA31 LLC & Vantage Data Centers VA3 LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":7,"campus_acres":134,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (subject to statutory investment and job thresholds).","natural_hazard_zone":"Wetland/stream impacts; USACE permit process (Loudoun County Wetlands Board). FEMA flood zone not determined."},"29":{"description":"CloudHQ LC4 is a hyperscale data center facility operated by CloudHQ at 22210 Loudoun County Parkway in Ashburn, Virginia, and is part of the company’s LC campus; public directories describe it as roughly a 1.4 million sq ft build.","verified_status":"under-construction","power_capacity_mw":180,"total_sqft":1400000,"year_online":"unknown","construction_update":"As of 2026, CloudHQ lists LC4 as currently under construction. Recent milestones include a Meta Phase 1 tenant fit-out permit noted Sep 15, 2025 (referencing BLDC-2025-038589) tied to 22210 Loudoun County Parkway.","recent_news":"March 23, 2026: NBC Washington reported resident complaints about a loud, continuous droning noise from a nearby CloudHQ data center in Loudoun County; the report did not specify LC4 by name.","notable_tenants":"Meta","verified_name":"CloudHQ LC4","verified_operator":"CloudHQ","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":27,"utility_provider":"Dominion Energy","tax_incentives":"Potential eligibility for the Virginia Data Center Retail Sales & Use Tax Exemption (subject to statutory thresholds and facility‑specific MOU).","natural_hazard_zone":""},"30":{"description":"CloudHQ LC8 is a hyperscale data center building within CloudHQ’s LC Campus in Ashburn, Virginia, operated by CloudHQ. The LC Campus targets more than 1.7 GW of planned customer critical IT load.","verified_status":"under-construction","power_capacity_mw":108,"total_sqft":835849,"year_online":"2027","construction_update":"May 14, 2026: LC8 tenant‑interiors buildout (permit BLDC-2026-004383) filed, indicating continued interior fit‑out progress.","recent_news":"April 17, 2026: Loudoun County permit BLDC-2026-004354 recorded for LC8 Phase 1 tenant interiors buildout at 22190 Loudoun County Pkwy, valued at $10,734,959.","notable_tenants":"","verified_name":"CloudHQ LC8","verified_operator":"CloudHQ","verified_owner":"Darab Ventures One LLC (c/o CloudHQ LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":96.8,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide program for qualifying data centers).","natural_hazard_zone":"FEMA Flood Zone AE indicated for associated campus parcel (adjacent 22210 Loudoun County Parkway)."},"31":{"description":"Aligned IAD-01 is a hyperscale data center operated by Aligned Data Centers at 21890 Uunet Drive in Ashburn, Virginia, on the company’s Northern Virginia campus.","verified_status":"operational","power_capacity_mw":60,"total_sqft":370000,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aligned IAD-01","verified_operator":"Aligned Data Centers","verified_owner":"ALIGNED ENERGY DATA CENTERS ASHBURN LLC","cooling_type":"unknown","tier_level":"Designed to Tier III standards","fiber_providers":"","num_buildings":2,"campus_acres":26,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption; Loudoun County computer equipment tax at $4.15 per $100 assessed value.","natural_hazard_zone":"low risk"},"32":{"description":"Aligned IAD-02 is Aligned Data Centers’ hyperscale, multi-tenant facility at 21821 Uunet Drive in Ashburn, Virginia, designed to Tier III standards and staffed 24x7x365. The IAD-02 spec lists an expandable capacity to 120 MW with a 438,460 sq ft building and 283,023 sq ft of white space.","verified_status":"operational","power_capacity_mw":120,"total_sqft":438460,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aligned IAD-02","verified_operator":"Aligned Data Centers","verified_owner":"Aligned Energy Data Centers IAD Propco LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":26,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (DCRSUT) on qualifying computer equipment and enabling software","natural_hazard_zone":"low risk"},"33":{"description":"Sabey SDC Ashburn Building A is a colocation data center under construction on Sabey’s Ashburn campus in Virginia, slated to add 54 MW and support air- and liquid-cooled high-density deployments. It is the campus’s third/final building and part of a 645,000 SF, liquid-cooling-capable campus operated by Sabey Data Center Properties.","verified_status":"under-construction","power_capacity_mw":54,"total_sqft":645000,"year_online":"2026 (expected)","construction_update":"June 25, 2025: Sabey announced construction/ground-breaking for Building A, a three-story data center delivering 54 MW, with RFS targeted for 2026.","recent_news":"","notable_tenants":"","verified_name":"SDC Ashburn Building A","verified_operator":"Sabey Data Centers","verified_owner":"Sabey Data Center Properties LLC (a joint venture of Sabey Corporation and National Real Estate Advisors acting on behalf of its institutional clients)","cooling_type":"hybrid","tier_level":"Tier III standard equivalent","fiber_providers":"carrier-neutral; Cogent, Crown Castle, FiberLight, PacketFabric, Zayo","num_buildings":3,"campus_acres":38,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption for qualifying data center equipment/property (in effect through June 30, 2035, subject to statutory requirements).","natural_hazard_zone":"FEMA Zone X (minimal flood hazard)"},"34":{"description":"CyrusOne ABX-1 (also known as NVA14) is an operational two-story hyperscale data center at 21529 Beaumeade Circle in Ashburn, Virginia. Originally developed by PowerHouse Data Centers and delivered in 2023, it totals 265,850 sq ft with 60 MW capacity; CyrusOne acquired the facility in December 2024 and operates it today.","verified_status":"operational","power_capacity_mw":60,"total_sqft":265850,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne NVA14 (formerly PowerHouse ABX-1)","verified_operator":"CyrusOne","verified_owner":"CyrusOne (via acquisition in Dec. 2024)","cooling_type":"chilled water","tier_level":"Tier III design standard (no public Uptime certification found)","fiber_providers":"","num_buildings":1,"campus_acres":10,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide program).","natural_hazard_zone":"Low seismic risk (Loudoun County Seismic Design Category A); flood zone not determined"},"35":{"description":"PowerHouse Pacific is a hyperscale data center campus under development by PowerHouse Data Centers (AREP) at 22070 Broderick Drive in Sterling, VA, redeveloping the former AOL headquarters site into three 3‑story buildings totaling about 1.13 million sq ft.","verified_status":"under-construction","power_capacity_mw":265,"total_sqft":1131350,"year_online":"2026","construction_update":"Demolition was underway at the 43-acre former AOL headquarters site as of Oct 11, 2023; a Sep 22, 2025 update cited expected power delivery in Q3 2026 and completion by end of 2026.","recent_news":"","notable_tenants":"","verified_name":"PowerHouse Pacific – Building A","verified_operator":"PowerHouse Data Centers","verified_owner":"AREP–Harrison Street joint venture (via Pacific Ashburn Campus LLC)","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; multiple fiber routes","num_buildings":3,"campus_acres":43,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption may apply to qualifying computer equipment (program through June 30, 2035; subject to investment and job thresholds and an MOU).","natural_hazard_zone":""},"36":{"description":"CyrusOne NVA1 (Sterling I) is an operational CyrusOne data center located at 21111 Ridgetop Circle in Sterling, Virginia, and is part of the company’s Sterling campus alongside NVA2 and NVA3. Market listings size the NVA1 facility at roughly 132,175 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":132175,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne NVA1","verified_operator":"CyrusOne","verified_owner":"CyrusOne (building owner; CyrusOne is privately held by funds managed by KKR and Global Infrastructure Partners)","cooling_type":"air-cooled","tier_level":"Tier 3 equivalent (no public Uptime Institute certification found)","fiber_providers":"carrier-neutral; carriers include SummitIG, Zayo, and Level 3 (Lumen Technologies)","num_buildings":3,"campus_acres":14.34,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (DCRSUT) for qualifying data-center equipment/software through June 30, 2035","natural_hazard_zone":"Flood Zone B/X; moderate flood hazard area"},"37":{"description":"Cologix ASH1 is a Cologix-owned Scalelogix colocation/hyperscale-edge data center at 21745 Beaumeade Circle in Ashburn, Virginia, built as a three‑story, 455,000 sq ft facility. Industry reports note the completed site as a 120 MW data center.","verified_status":"operational","power_capacity_mw":120,"total_sqft":455000,"year_online":"2023","construction_update":"","recent_news":"Feb 5–6, 2026: Cologix acquired 38 acres on Beaumeade Circle to expand its Ashburn footprint for future development; this is a campus expansion near ASH1, not a change to the ASH1 building.","notable_tenants":"","verified_name":"ASH1 Data Center","verified_operator":"Cologix","verified_owner":"21673 Beaumeade Circle LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":22.6,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide program for qualifying data centers).","natural_hazard_zone":""},"38":{"description":"DataBank IAD1 is an operational colocation data center operated by DataBank at 21635 Red Rum Drive in Ashburn, Virginia. It offers 85,330 IT square feet with 9.9 MW of critical IT load and is part of DataBank’s 18‑acre Ashburn Campus.","verified_status":"operational","power_capacity_mw":9.9,"total_sqft":85330,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank IAD1 Ashburn Campus Data Center","verified_operator":"DataBank","verified_owner":"GI Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 19 onsite carriers (e.g., Zayo present at 21635 Red Rum Drive)","num_buildings":3,"campus_acres":18,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption applicable to qualifying equipment purchases for colocation customers at IAD1.","natural_hazard_zone":"low risk"},"39":{"description":"DataBank IAD3 is an operational colocation data center on DataBank’s Ashburn Campus at 21630 Red Rum Drive, Ashburn, Virginia, opened in 2023. It is notable for 40MW critical IT load and 200,000 IT square feet.","verified_status":"operational","power_capacity_mw":40,"total_sqft":286800,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank IAD3 – Ashburn Campus Data Center","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"air-cooled","tier_level":"N+1 power and cooling design; no public Uptime Institute Tier certification found","fiber_providers":"carrier-neutral; 18 onsite carriers; Partner Internet Exchange; Partner Cloud Connectivity; Managed Internet Connectivity; National Data Center Interconnect","num_buildings":0,"campus_acres":18,"utility_provider":"Dominion Energy","tax_incentives":"Eligible for the Virginia Data Center Retail Sales & Use Tax Exemption","natural_hazard_zone":""},"40":{"description":"Centersquare Ashburn WDC1 is an operational colocation data center campus at 21561–21571 Beaumeade Circle in Ashburn, Virginia, operated by Centersquare (appearing in some listings under the Csquare brand). It comprises two single‑storey data centers totaling about 164,453 sq ft.","verified_status":"operational","power_capacity_mw":10,"total_sqft":164453,"year_online":"unknown","construction_update":"No active construction reported; Virginia DEQ issued Article 6 mNSR air permit 73240-4 to 21571 Beaumeade Circle LLC on 2024-09-24.","recent_news":"","notable_tenants":"","verified_name":"Centersquare Ashburn WDC1","verified_operator":"Centersquare","verified_owner":"Mapletree Industrial Trust (MIT)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; on-net examples include Cogent; interconnection via Megaport","num_buildings":2,"campus_acres":0,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption; Loudoun County Fast-Track Commercial Incentive Program","natural_hazard_zone":""},"41":{"description":"Centersquare’s Sterling IAD1-A (at 45901 Nokes Blvd, Sterling, VA) is an operational, carrier-neutral colocation facility that is part of the IAD1 campus and totals 88,489 square feet. The site is on a multi-building, fiber-linked campus in Sterling.","verified_status":"operational","power_capacity_mw":0,"total_sqft":88489,"year_online":"1998","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare IAD1-A","verified_operator":"Centersquare","verified_owner":"Mapletree Investments","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; providers include Allied Telecom, AT&T, CenturyLink (Lumen), Comcast, Cogent","num_buildings":3,"campus_acres":0,"utility_provider":"Dominion Energy Virginia (Dominion Virginia Power)","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption available to qualifying colocation sites/tenants via MOU","natural_hazard_zone":"FEMA Flood Zones B/X; outside the 100-year floodplain"},"42":{"description":"H5 Data Centers’ Ashburn facility is a carrier-neutral colocation/wholesale data center at 21800 Beaumeade Circle in Northern Virginia, designed as a 255,000 sq ft new build with access to 42 MW of power.","verified_status":"operational","power_capacity_mw":42,"total_sqft":255000,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"Unnamed hyperscale client","verified_name":"H5 Data Centers Ashburn Data Center","verified_operator":"H5 Data Centers","verified_owner":"Starwood Capital Group (via affiliate)","cooling_type":"unknown","tier_level":"Tier III design (not an Uptime certification)","fiber_providers":"","num_buildings":1,"campus_acres":5,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption for qualifying equipment (statewide program subject to investment and employment thresholds).","natural_hazard_zone":""},"43":{"description":"Single‑storey, purpose‑built wholesale/colocation data center at 21110 Ridgetop Circle in Sterling, Virginia, owned by Mapletree (via Mapletree Redwood Data Centre Trust) and operated as Centersquare IAD1‑C,D. The 135,513‑sq‑ft facility was built in 2001.","verified_status":"operational","power_capacity_mw":37,"total_sqft":135513,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"Centersquare (formerly Cyxtera/Evoque)","verified_name":"Centersquare IAD1-C Sterling Data Center (21110 Ridgetop Circle, Sterling)","verified_operator":"Centersquare","verified_owner":"Mapletree Redwood Data Centre Trust (MRDCT) — a JV between Mapletree Investments Pte Ltd (MIPL) and Mapletree Industrial Trust (MIT)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multiple on-net providers (e.g., AT&T, FiberLight)","num_buildings":1,"campus_acres":8.492,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide) and Loudoun County’s reduced Business Tangible Personal Property Tax rate for Data Center Computer Equipment ($4.15 per $100 assessed value).","natural_hazard_zone":"low risk"},"44":{"description":"A COPT/COPT Defense Properties data center shell at 45771 Maries Road in Sterling’s Maries Tech Park, planned as a two‑story, 244,000 sq ft facility and part of the Maries Road campus tied to Amazon Data Services (AWS). Public trackers list the broader IAD‑116/IAD‑117 campus that includes this address as operational.","verified_status":"operational","power_capacity_mw":0,"total_sqft":244000,"year_online":"unknown","construction_update":"","recent_news":"No facility-specific updates in the last six months; on Apr 27, 2026, a public-record tracker listed the broader Amazon Data Services IAD‑116/IAD‑117 Maries Road project as operational at 150 MW.","notable_tenants":"Amazon Data Services (AWS)","verified_name":"AWS IAD-117 Maries Rd (also known as COPT MP-2, 45771 Maries Rd, Maries Tech Park)","verified_operator":"Amazon Web Services / Amazon Data Services, Inc.","verified_owner":"Blackstone Real Estate Income Trust (BREIT) and Corporate Office Properties Trust (COPT) joint venture (BREIT majority interest)","cooling_type":"unknown","tier_level":"Tier 3 (directory-reported; not Uptime-certified)","fiber_providers":"","num_buildings":3,"campus_acres":20,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide) and Loudoun County computer equipment tax rate applicable to data centers.","natural_hazard_zone":"Minor flood risk; no site-specific FEMA SFHA identified"},"45":{"description":"Operational data center at 45761 Maries Rd in Sterling’s Maries Tech Park; COPT/COPT Defense Properties lists the site as COPT MP-1, while facility-specific records identify it as AWS IAD-117 developed by Amazon with an indicated 53 MW capacity and ~212,960 sq ft.","verified_status":"operational","power_capacity_mw":53,"total_sqft":212960,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"Amazon Web Services (AWS) / Amazon Data Services, Inc.","verified_name":"COPT: 45761 Maries Rd Data Center (Maries Tech Park, MP-1)","verified_operator":"Amazon Data Services, Inc. (AWS)","verified_owner":"COPT Defense Properties (via Maries Tech Park, LLC; Maries Tech Park II, LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":20,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (through June 30, 2035), subject to statutory qualification.","natural_hazard_zone":""},"46":{"description":"EdgeCore Ashburn AS01 is EdgeCore’s hyperscale data center on Maries Road in Sterling, Virginia, forming one of two sites in the company’s Ashburn campus.","verified_status":"under-construction","power_capacity_mw":72,"total_sqft":348000,"year_online":"2026 (initial occupancy scheduled for November 2026)","construction_update":"Apr 21, 2026: $1.5B construction financing announced; prior milestone: AS01 topped out in late Sept 2025.","recent_news":"Apr 22, 2026: EdgeCore secured $1.5B in financing to build two hyperscale data centers in Sterling (the Ashburn campus sites).","notable_tenants":"","verified_name":"EdgeCore Ashburn AS01","verified_operator":"EdgeCore Digital Infrastructure","verified_owner":"Partners Group","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (DCRSUT)","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard)"},"47":{"description":"EdgeCore Ashburn AS02 is a hyperscale, single-tenant data center under development at 1501 Moran Road in Sterling, Virginia, developed by EdgeCore in partnership with Penzance; recent materials indicate the Ashburn sites are fully leased, with AS02 expected around 42 MW of critical power and about 260,000 sq ft.","verified_status":"under-construction","power_capacity_mw":42,"total_sqft":260000,"year_online":"2027 (initial occupancy scheduled for July 2027)","construction_update":"Under construction. Key milestones: permit filing on April 15, 2025; construction underway on the 114 MW campus by Feb. 21, 2025; and $1.5B in construction financing closed on Apr. 21, 2026 to fund AS01 and AS02.","recent_news":"On April 21, 2026, EdgeCore announced $1.5 billion of construction financing for the fully leased AS01 and AS02 Northern Virginia data centers, stating AS02 initial occupancy is scheduled for July 2027.","notable_tenants":"","verified_name":"EdgeCore Ashburn AS02","verified_operator":"EdgeCore Digital Infrastructure","verified_owner":"Penzance (via 1501 Moran Road Development Owner LLC) in a joint venture with EdgeCore Digital Infrastructure (backed by Partners Group)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":7.65,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide sales/use tax exemption for qualifying computer equipment and enabling software).","natural_hazard_zone":"low risk"},"48":{"description":"JK Land Ashburn is a planned two‑story, ~360,000‑sq‑ft data center redevelopment at 19886 Ashburn Road in Ashburn, Virginia by JK Land Holdings, including a planned substation on the ~25‑acre Telos HQ site; the property is site‑plan approved for data center use, with no public MW figure disclosed.","verified_status":"planned","power_capacity_mw":0,"total_sqft":360000,"year_online":"unknown","construction_update":"Aug 2024: JK Land Holdings acquired the 25.3‑acre Telos HQ site at 19886 Ashburn Rd for $60M and the property has site‑plan approval for data center use; Telos remains a tenant through 2029.","recent_news":"","notable_tenants":"No publicly disclosed data center tenant. Current site tenant is Telos Corporation, which remains through 2029.","verified_name":"JK Land: Ashburn Data Center","verified_operator":"JK Land Holdings LLC","verified_owner":"JK Land Holdings LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":25.29,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption may be available to qualifying data centers (subject to statutory thresholds and certification). No facility-specific abatement found.","natural_hazard_zone":"low risk (minor flood risk area)"},"49":{"description":"Amazon AWS IAD – 20935 Loudoun County Parkway is an AWS-operated hyperscale data center in Ashburn, Virginia, listed as an active/operational site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":147615,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Amazon AWS IAD - 20935 Loudoun County Pkwy","verified_operator":"Amazon Web Services (Amazon Data Services, Inc./Vadata)","verified_owner":"Blackstone REIT (BREIT) / Corporate Office Properties Trust (COPT Defense Properties) joint venture","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":10.12,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide program; facility eligibility subject to statutory thresholds).","natural_hazard_zone":""},"50":{"description":"Oracle US Gov East (region id us-langley-1) is an operational Oracle Government Cloud region in Ashburn, Virginia. The submitted address (20945 Loudoun County Pkwy) belongs to an AWS data center, so building-specific specs at that location are not Oracle’s.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2019","construction_update":"","recent_news":"Apr 1, 2026: Oracle expanded AI infrastructure offerings in its US government cloud regions, which include US Gov East (Ashburn).","notable_tenants":"","verified_name":"Amazon AWS IAD-114 (20945 Loudoun County Pkwy)","verified_operator":"Amazon Data Services, Inc. (Amazon Web Services)","verified_owner":"Amazon Data Services, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":11,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (DCRSUT) on qualifying equipment/software.","natural_hazard_zone":""},"51":{"description":"Colocation data center at 7499 E Paradise Ln in Scottsdale operated by 11:11 Systems, which added the site through its 2022 acquisition of Sungard Availability Services’ operations.","verified_status":"operational","power_capacity_mw":11,"total_sqft":102400,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"11:11 Systems Scottsdale Data Center","verified_operator":"11:11 Systems","verified_owner":"AX GARDSUN LP","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":7.88,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"52":{"description":"Aligned PHX-01/02/03 is Aligned Data Centers’ operational wholesale/hyperscale campus at 2500 W Union Hills Drive in Phoenix, AZ. The 55-acre campus, designed to Tier III standards, opened in 2017 and comprises roughly 550,000 sq ft across three facilities.","verified_status":"operational","power_capacity_mw":180,"total_sqft":550000,"year_online":"2017","construction_update":"Mar 22, 2022: Aligned announced PHX-05, a new hyperscale data center planned on its flagship Phoenix campus; no newer PHX-01/02/03-specific construction milestones were found.","recent_news":"","notable_tenants":"","verified_name":"Aligned PHX-01/02/03 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":55,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona Computer Data Center (CDC) Program provides sales/use tax exemptions; Aligned Phoenix clients can leverage a long-term (up to 20-year) sales-tax exemption on qualifying data center equipment.","natural_hazard_zone":"low risk"},"53":{"description":"Aligned PHX-04 is a wholesale/hyperscale data center operated by Aligned Data Centers at 2501 S Price Rd, Chandler, Arizona, as part of the company’s Phoenix campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":396343,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aligned PHX-04 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"Aligned Adaptive Data Centers","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; supports cross-connects, dark fiber, lit fiber","num_buildings":1,"campus_acres":0,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center Program TPT/Use Tax exemptions; additional Phoenix data-center sales-tax exemption marketed by Aligned for eligible equipment.","natural_hazard_zone":"Low flood risk (nearby FEMA Zone X); regional extreme heat and drought risk"},"54":{"description":"Aligned PHX-07 is a wholesale/colocation data center operated by Aligned Data Centers at 8785 N Reems Rd on the company’s Waddell/Phoenix campus, built as a multi‑phase, 80 MW facility with the PHX‑07‑2 phase adding 40 MW across 214,078 sq ft.","verified_status":"operational","power_capacity_mw":80,"total_sqft":214078,"year_online":"2025","construction_update":"March 2026: Permits for commercial additions/alterations and fire protection at 8785 N Reems Rd suggest ongoing buildout/fit‑out work.","recent_news":"March 2026: Permit filings at 8785 N Reems Rd for commercial additions/alterations and fire protection indicate ongoing work at PHX‑07.","notable_tenants":"","verified_name":"Aligned PHX-07 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"Aligned Data Centers LLC","cooling_type":"air-cooled","tier_level":"Designed to Tier III standards","fiber_providers":"carrier-neutral","num_buildings":4,"campus_acres":100,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona Computer Data Center (CDC) Program sales tax exemption on qualifying data center equipment; Aligned markets these benefits for Phoenix clients.","natural_hazard_zone":"Low hurricane risk area; flood risk to be verified via FEMA/Maricopa Floodplain Viewer (no Special Flood Hazard Area indicated in cited general resources)."},"55":{"description":"Centersquare PHX1 is an operational, carrier‑neutral colocation facility at 615 N 48th Street in Phoenix operated by Centersquare within Iron Mountain’s AZP‑1 campus, with 13.3 MW of UPS capacity and about 40,456 sq ft of data hall space.","verified_status":"operational","power_capacity_mw":13.3,"total_sqft":40456,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare PHX1 Phoenix Data Center Campus (PHX1‑A/B/C)","verified_operator":"Csquare (formerly Centersquare)","verified_owner":"Iron Mountain Data Centers / Iron Mountain Incorporated","cooling_type":"chilled water","tier_level":"Tier III (campus standard)","fiber_providers":"","num_buildings":3,"campus_acres":30,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona Computer Data Center Program: Transaction Privilege Tax (TPT) and Use Tax exemptions for qualifying data centers; new applications paused by a three‑year moratorium enacted in June 2026.","natural_hazard_zone":"FEMA Flood Zone C/X (area of minimal flood hazard)"},"56":{"description":"Cogent’s Phoenix Office & Data Center at 3410 E University Dr, Phoenix, AZ is an operational telecom/colocation facility operated by Cogent Communications, offering Internet, VPN, Transport, and Colocation services in approximately 5,914 sq ft of space.","verified_status":"operational","power_capacity_mw":1.16,"total_sqft":5914,"year_online":"unknown","construction_update":"","recent_news":"May 26, 2026: Cogent announced a definitive agreement to sell 10 data center facilities to I Squared Capital for $225M; local reporting notes the Phoenix portfolio includes the 5,914‑sq‑ft site at 3410 E University Dr, with closing expected mid‑2026 pending approvals.","notable_tenants":"","verified_name":"Cogent Phoenix (Phoenix Office & Data Center)","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":4.06,"utility_provider":"Salt River Project (SRP) — likely, unconfirmed for this specific address","tax_incentives":"Arizona Computer Data Center (CDC) program offers TPT/use-tax exemptions for qualified data centers and colocation tenants; no evidence this site is certified.","natural_hazard_zone":"Likely minimal flood hazard (Zone X/C) — site-specific FEMA zone not verified"},"57":{"description":"Cogent Data Center - Phoenix 2 is an operational Cogent Communications telecom/colocation facility at 1530 E Roeser Rd in Phoenix, Arizona, commonly listed at 12 MW with about 24,460 sq ft of space.","verified_status":"operational","power_capacity_mw":12,"total_sqft":24460,"year_online":"unknown","construction_update":"","recent_news":"On May 26–27, 2026, Cogent agreed to sell a 10–data center portfolio, including 1530 E Roeser Rd in Phoenix, to an I Squared Capital–backed platform for $225M; closing was expected after June 12, 2026 subject to HSR clearance (expected Q3 2026).","notable_tenants":"","verified_name":"Cogent Data Center - Phoenix 2","verified_operator":"Cogent Communications","verified_owner":"Cogent Fiber, LLC (Cogent Communications Holdings)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":4.24,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center (CDC) Program – TPT and Use Tax exemptions on qualifying equipment purchases for up to 10 calendar years (subject to program qualification).","natural_hazard_zone":"Low risk (low seismic risk; no hurricane exposure)."},"58":{"description":"Compass PHX II - Building 1 is a wholesale data center building on Compass Datacenters’ El Mirage (PHX II) campus in El Mirage, AZ, located near W Peoria Ave & N El Mirage Rd, with permits at 12500 W Joe Ramirez Rd. The building is listed at 36 MW and 208,000 sq ft.","verified_status":"under-construction","power_capacity_mw":36,"total_sqft":208000,"year_online":"unknown","construction_update":"Under construction: 2026 permits at 12500 W Joe Ramirez Rd include a record labeled “Compass PHX‑II‑I Building A,” a new‑construction data center listing, and a temporary trailer/generator permit (filed May 8, 2026).","recent_news":"Recent permits in 2026 indicate active site setup and construction support at 12500 W Joe Ramirez Rd, including a temporary trailer filed May 8, 2026, a 4,900 sf lunch tent filed Feb 10, 2026, and a new-construction entry for the data center.","notable_tenants":"","verified_name":"Compass PHX II - Building 1","verified_operator":"Compass Datacenters","verified_owner":"Compass Datacenters","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":121,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"","natural_hazard_zone":"low risk"},"59":{"description":"Compass PHX II - Building 3 is a planned wholesale data center by Compass Datacenters at W Peoria Ave & N El Mirage Rd in El Mirage, Arizona, designed for 36 MW across roughly 208,000 square feet. It is one of three buildings within Compass’s 108 MW El Mirage (PHX II) campus.","verified_status":"planned","power_capacity_mw":36,"total_sqft":208000,"year_online":"2030","construction_update":"May 8, 2026: Temporary trailer with generator permit filed for PHX II campus; no Building 3–specific construction start identified.","recent_news":"May–June 2026: City filings indicate active PHX II campus activity (e.g., a temporary trailer with generator filed May 8, 2026), and local news reported Compass is building three data center buildings in El Mirage; no Building 3–specific construction start or tenant has been disclosed.","notable_tenants":"","verified_name":"Compass PHX II - Building 3","verified_operator":"Compass Datacenters","verified_owner":"Compass Datacenters LLC","cooling_type":"unknown","tier_level":"Tier III (reported, not independently certified)","fiber_providers":"","num_buildings":3,"campus_acres":121,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona Computer Data Center (CDC) Program — TPT/Use Tax exemptions (facility certification not found).","natural_hazard_zone":"FEMA Flood Zone X (low 100-year flood risk)"},"60":{"description":"DataBank PHX1 (Downtown Phoenix) is an operational, carrier-neutral colocation and interconnection data center operated by DataBank at 3110 N Central Avenue in Phoenix. The site is the downtown PHX1 facility and was formerly the zColo/Zayo location later incorporated into DataBank’s portfolio.","verified_status":"operational","power_capacity_mw":0.78,"total_sqft":16200,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank PHX1 Downtown Phoenix Data Center","verified_operator":"DataBank","verified_owner":"Plaza Companies / Holualoa Companies joint venture (Park Central ownership group)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; examples include Zayo; connectivity options such as tw telecom and CenturyLink/Lumen are cited by marketplace listings.","num_buildings":1,"campus_acres":0,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona Computer Data Center Program: TPT and Use Tax exemptions for qualifying purchases of CDC equipment (statewide program; facility-specific certification not found).","natural_hazard_zone":"Minor flood risk area; no indication of FEMA Special Flood Hazard Area at the neighborhood level."},"61":{"description":"Digital Realty PHX10 is an operational, carrier-neutral colocation data center at 120 East Van Buren Street in Phoenix, owned and operated by Digital Realty, and notable as a major interconnection hub offering DRIX. The official page lists a 288,000 ft² building.","verified_status":"operational","power_capacity_mw":32,"total_sqft":288000,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"No enterprise anchor customer is publicly disclosed. In-building/colocated service providers and IX/NaaS present include LightEdge (American Internet Services), Megaport, PacketFabric, PCCW Global, and Ninja-IX.","verified_name":"Digital Realty PHX10","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"Tier III equivalent","fiber_providers":"carrier-neutral; Digital Realty Internet Exchange (DRIX); 30+ networks present; examples include Cogent and SRP Telecom","num_buildings":1,"campus_acres":2.03,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona Computer Data Center Program: Transaction Privilege Tax and Use Tax exemptions for qualifying data center equipment; Phoenix metro tax‑exempt status noted through 2033 (subject to state certification and program terms).","natural_hazard_zone":"Outside 100‑year floodplain (FEMA Zone X/minimal risk); Seismic Zone 1; no hurricane exposure"},"62":{"description":"PHX15 is Digital Realty’s operational colocation data center at 2121 South Price Road in Chandler, Arizona; it is Arizona’s largest data center and is engineered to support high‑density AI/HPC workloads [1].","verified_status":"operational","power_capacity_mw":54,"total_sqft":519500,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty PHX15 (2121 South Price Road)","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Commerce Authority’s Computer Data Center Program provides exemptions from state, county, and local Transaction Privilege Tax and Use Tax on qualifying data center equipment (through the current program period).","natural_hazard_zone":"FEMA Zone X (outside 500-year floodplain); Seismic Rating Zone B / Seismic Zone 1"},"63":{"description":"EdgeConneX Phoenix EDCPHX01 (PHX01) is an operational EdgeConneX Edge Data Center at 3011 S. 52nd St., Suite 107, Tempe, offering low‑latency colocation and interconnection; it totals about 79,200 sq ft and supports up to 6.5 MW of capacity.","verified_status":"operational","power_capacity_mw":6.5,"total_sqft":79200,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX Phoenix PHX01 (EDCPHX01)","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; example on-net access includes Zayo","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Arizona Computer Data Center Program provides state, county, and local Transaction Privilege Tax (TPT) and Use Tax exemptions on qualifying data center equipment purchases.","natural_hazard_zone":"Minor flood risk (First Street ‘Corona – South Tempe’ shows minor risk over 30 years; parcel-specific FEMA zone not identified)."},"64":{"description":"Expedient PHX1 (Phoenix/North Mountain) is an operational colocation and cloud data center operated by Expedient at 2475 W Townley Ave in Phoenix, AZ, with 3.6 MW critical IT load and ~46,000 sq ft.","verified_status":"operational","power_capacity_mw":3.6,"total_sqft":46000,"year_online":"2010 (building constructed); 2021 (Expedient operations began, Nov 2, 2021)","construction_update":"","recent_news":"","notable_tenants":"Blue Cross Blue Shield of Arizona (former build-to-suit owner/occupant of the facility); no other colocated tenants publicly confirmed.","verified_name":"Expedient PHX1 (Phoenix / North Mountain Data Center)","verified_operator":"Expedient","verified_owner":"Five 9s Digital, LLC","cooling_type":"unknown","tier_level":"Tier III design standard","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"","natural_hazard_zone":""},"65":{"description":"Flexential operates the Phoenix – Deer Valley colocation data center at 1850 W Deer Valley Road in Phoenix, offering a 109,476‑square‑foot facility for enterprise colocation and interconnection.","verified_status":"operational","power_capacity_mw":5.02,"total_sqft":109476,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Phoenix - Deer Valley Data Center","verified_operator":"Flexential","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 29+ carriers and service providers","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Arizona Computer Data Center Program: sales/use tax exemptions for certified owners/operators and qualified co-location tenants (up to 10 years).","natural_hazard_zone":"low risk; seismic zone 0"},"66":{"description":"Google Mesa Redhawk 1 (also called Center Beta) is the first building of Google’s hyperscale Mesa data center campus at East Elliot Road and South Sossaman Road, developed under Stone Applications LLC. The ~288,530 sq ft, air‑cooled facility anchors a ~187‑acre, multi‑phase campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":288530,"year_online":"2025","construction_update":"Mesa’s Design Review Board discussed Phase 3 of Google’s Red Hawk data center campus in October 2025; prior terms required Phase I completion by July 2025.","recent_news":"","notable_tenants":"","verified_name":"Google Mesa – Redhawk 1 (Project Redhawk Phase 1)","verified_operator":"Google","verified_owner":"Stone Applications LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":187,"utility_provider":"Salt River Project (SRP)","tax_incentives":"City of Mesa GPLET-related incentive; reporting cites approximately $16 million in tax breaks tied to the 2019 approval.","natural_hazard_zone":"FEMA Flood Zone C/X (Area of minimal flood hazard)"},"67":{"description":"Purpose-built colocation data center operated by H5 Data Centers at 2600 W Germann Rd in Chandler, Arizona, totaling about 180,000 square feet of space.","verified_status":"operational","power_capacity_mw":26,"total_sqft":180000,"year_online":"2013","construction_update":"June 29, 2023: H5 announced Phase Three expansion of the Phoenix campus (+30,000 sq ft).","recent_news":"","notable_tenants":"","verified_name":"H5 Data Centers Phoenix Data Center","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":7.25,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center (CDC) Program — sales/use tax exemptions for qualifying data centers and users.","natural_hazard_zone":"Extreme heat exposure; regional flood risk present; address-specific FEMA flood zone not determined."},"68":{"description":"A multi-tenant data center at 2500 W Frye Rd in Chandler, Arizona, now owned and marketed by Lincoln Property Company/Lincoln Rackhouse as the Lincoln PHX1 (Frye) Data Center; formerly INAP/HorizonIQ, the site is operational and undergoing redevelopment to add critical capacity.","verified_status":"operational","power_capacity_mw":28,"total_sqft":191061,"year_online":"2002","construction_update":"Nov 3, 2025: Lincoln announced re-acquiring the site and fitting out three vacant halls with 16 MW of new critical capacity, shifting to air-cooled mechanical systems; Chandler approved a 243,000-sq-ft expansion in 2024. Coverage noted an initial 4.2 MW targeted for delivery in early Q1 2026; no later confirmation found.","recent_news":"","notable_tenants":"Current named tenants are not publicly disclosed. One hall is leased to an unnamed Fortune 500 enterprise user; Bank of America is a historical anchor/former owner and not confirmed as a current tenant.","verified_name":"Lincoln PHX1 Data Center","verified_operator":"Lincoln Property Company / Lincoln Rackhouse (current); HorizonIQ/INAP (former operator under lease)","verified_owner":"2500 WEST FRYE ROAD OWNER LLC (controlled by Lincoln Property Company / Lincoln Rackhouse following 2025 re-acquisition)","cooling_type":"air-cooled","tier_level":"Tier III design (no formal Uptime certification cited)","fiber_providers":"Electric Lightwave; redIT; Sprint; Telia Carrier (Arelion); Windstream","num_buildings":1,"campus_acres":14.5,"utility_provider":"","tax_incentives":"Arizona Computer Data Center (CDC) tax relief program available; facility-specific certification not confirmed.","natural_hazard_zone":"FEMA Flood Zones C/X (minimal flood hazard); Seismic Zone 1"},"69":{"description":"Iron Mountain AZP-1 is an operational colocation data center at 615 N 48th Street, Phoenix, owned and operated by Iron Mountain Data Centers; it is a 588,669‑sq‑ft, 41‑MW, Uptime Tier III facility originally launched as IO’s Phoenix ONE in 2009 and later acquired by Iron Mountain.","verified_status":"operational","power_capacity_mw":41,"total_sqft":588669,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"Centersquare (PHX1-A) and HorizonIQ list facilities at 615 N 48th St within/at Iron Mountain AZP-1; no public anchor-tenant roster disclosed.","verified_name":"Phoenix data center (AZP-1)","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Incorporated","cooling_type":"chilled water","tier_level":"Uptime Tier III","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":39,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona Computer Data Center Program: qualifying owners, operators, and qualified colocation tenants may receive state/local transaction privilege and use-tax exemptions for up to 10 full calendar years.","natural_hazard_zone":"low risk"},"70":{"description":"Iron Mountain AZP-2 is a purpose-built, hyperscale-ready colocation data center at 4802 E Van Buren Street in Phoenix, operated and owned by Iron Mountain, offering about 547,000 ft² and 48 MW of capacity and powered by 100% renewable energy.","verified_status":"operational","power_capacity_mw":48,"total_sqft":547000,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"Undisclosed Fortune 100 technology customer: 6 MW pre-lease (Sep 2020) plus two additional leases totaling 6 MW (Apr 2021).","verified_name":"Iron Mountain AZP-2","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Incorporated (REIT)","cooling_type":"chilled water","tier_level":"Tier III / Tier 3 equivalent","fiber_providers":"carrier-neutral; providers include CenturyLink (Lumen).","num_buildings":1,"campus_acres":38,"utility_provider":"","tax_incentives":"Arizona Computer Data Center Program: TPT and Use Tax exemptions on qualifying data center equipment purchases for certified owners/operators/customers.","natural_hazard_zone":"low risk; no parcel-specific FEMA zone cited; Phoenix manages SFHAs."},"71":{"description":"Enterprise data center operated by LexisNexis at 8521 E Princess Dr in Scottsdale, providing 24/7 operations, and colocated at Iron Mountain’s AZS‑1 facility at the same address.","verified_status":"operational","power_capacity_mw":4,"total_sqft":86000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Iron Mountain Data Centers AZS-1 (Scottsdale Data Center)","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain","cooling_type":"unknown","tier_level":"Tier III equivalent / concurrently maintainable","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":4.5,"utility_provider":"","tax_incentives":"Arizona’s Computer Data Center Program provides TPT/use‑tax exemptions for qualifying data‑center equipment; Arizona’s 2026 budget paused incentives for new data centers. No public confirmation found that AZS‑1 is CDC‑certified.","natural_hazard_zone":""},"72":{"description":"3402 E University Dr is the operational phoenixNAP Phoenix carrier‑neutral colocation facility (being acquired by RadiusDC), not a dedicated Liquid Web site. Liquid Web markets a Phoenix/Arizona presence separately and is sometimes listed at this address by directories.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2010","construction_update":"Mar 12, 2026: RadiusDC announced an expansion plan tied to its acquisition, aiming to bring 18+ MW of additional critical capacity online starting in 1H 2028. Earlier (Apr 3, 2025), phoenixNAP said it would break ground on a second Phoenix data center (PHX02) with completion targeted for Q4 2026.","recent_news":"Mar 12–13, 2026: RadiusDC announced a definitive agreement to acquire phoenixNAP’s Phoenix data-center/colocation business and to add 18+ MW of critical capacity starting in 1H 2028.","notable_tenants":"phoenixNAP (remaining tenant post-transaction); Liquid Web is listed by a directory as present at 3402 E University Dr. No hyperscale anchor tenant publicly disclosed.","verified_name":"RadiusDC Phoenix I DC1","verified_operator":"RadiusDC","verified_owner":"RadiusDC","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; connectivity to 25+ Tier I and Tier II carriers and service providers","num_buildings":0,"campus_acres":6.35,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center Program provides Transaction Privilege Tax (TPT) and Use Tax exemptions on qualifying data center equipment purchases (state/county/local) for eligible facilities.","natural_hazard_zone":"FEMA Flood Zone C/X (minimal flood hazard)"},"73":{"description":"Lumen Phoenix 1 is an operational Lumen telecom/colocation data center at 811 South 16th Street in Phoenix, Arizona, offering about 47,836 sq ft total with 26,250 sq ft of raised-floor space and 11 MW of capacity.","verified_status":"operational","power_capacity_mw":11,"total_sqft":47836,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Phoenix 1 Data Center","verified_operator":"Lumen","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen/Level 3 network portfolio; diverse fiber connectivity, backhaul services, and alternate carrier networks available","num_buildings":1,"campus_acres":3.75,"utility_provider":"","tax_incentives":"Arizona Commerce Authority Computer Data Center (CDC) tax exemption program is available; no facility-specific certification located.","natural_hazard_zone":"Seismic Zone 2 construction reported; site-specific FEMA flood zone not confirmed."},"74":{"description":"Lumen Phoenix 2 is a Lumen Technologies-operated telecom/colocation point-of-presence at 17 East Virginia Avenue in downtown Phoenix. It functions as an L3/Williams Communications POP with cabinet/cage colocation.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Phoenix 2","verified_operator":"Lumen Technologies","verified_owner":"WILLIAMS COMMUNICATION INC","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen/Level 3 network; alternate carrier networks available","num_buildings":1,"campus_acres":0.88,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"No facility-specific incentive found. Arizona’s statewide Computer Data Center TPT/use-tax exemption exists for certified facilities, but new applications are paused under a three-year moratorium enacted in June 2026.","natural_hazard_zone":""},"75":{"description":"Lumen Phoenix 3 was a Lumen colocation/telecom site at 801 South 16th Street in Phoenix, historically listed at 47,863 sq ft with 26,250 sq ft raised floor. The building has since been renovated and repositioned from a former data center and is now marketed as flex/industrial space.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":85259,"year_online":"unknown","construction_update":"As of June 2026, the property is marketed for lease with rent-ready improvements to be installed by the landlord; no data-center construction or expansion is indicated.","recent_news":"June 2, 2026: Listing updated showing the building marketed as industrial space for lease with rent-ready improvements to be installed by the landlord.","notable_tenants":"","verified_name":"Lumen Phoenix 3","verified_operator":"Lumen Technologies","verified_owner":"Sealy & Co.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen/Level 3 backbone present; third-party carriers not specified","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Arizona Computer Data Center Program provides TPT/Use Tax exemptions for certified facilities; no public record found confirming Phoenix 3’s certification status.","natural_hazard_zone":""},"76":{"description":"Menlo Digital’s MD-PHX1 in Phoenix is a wholesale hyperscale data center campus at 4801–4811 E Thistle Landing Dr, planned as five buildings with a dedicated on-site substation and access to 257 MW, totaling about 1 million sq ft. It is moving through development with shell/substation targeted for late 2026 and initial data halls expected by early 2027.","verified_status":"under-construction","power_capacity_mw":257,"total_sqft":1000000,"year_online":"2027","construction_update":"Feb 16, 2026: Reported that construction of the substation and shell is projected to finish by late 2026, with data halls expected online by early 2027.","recent_news":"Apr 15, 2026: The Arizona Corporation Commission held a hearing focused on data centers; local coverage cited Menlo Equities’ 1‑million‑sq‑ft Ahwatukee campus, reflecting growing regulatory scrutiny and neighborhood opposition.","notable_tenants":"","verified_name":"MD-PHX1 (Phoenix)","verified_operator":"Menlo Digital","verified_owner":"Menlo Equities","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":38.3,"utility_provider":"Salt River Project","tax_incentives":"Arizona Computer Data Center (CDC) Program: Transaction Privilege Tax (TPT) and Use Tax exemptions; generally 10 years, or up to 20 years if the CDC qualifies as a Sustainable Redevelopment Project.","natural_hazard_zone":"Low risk (minor flood risk indicated)."},"77":{"description":"Microsoft El Mirage PHX80 is a Microsoft-owned Azure hyperscale data center at 12901 W Olive Ave in El Mirage, Arizona; it is operational and listed at about 244,666 sq ft with an estimated 57 MW capacity, and went live in 2021.","verified_status":"operational","power_capacity_mw":57,"total_sqft":244666,"year_online":"2021","construction_update":"PHX80 is operational; campus expansion at the same address continues. Example: a PHX83 NEW CANOPY TENT permit (Address: 12901 W OLIVE AVE) was filed in May 2026, following the Apr 24, 2026 PHX83 building permit approval and the Olive Ave waterline Phase I expected to begin April 2026.","recent_news":"Apr 24, 2026: a core/shell building permit for Microsoft PHX83 at 12901 W Olive Ave was approved for a $63.3M, ~245.5k sq ft build, and Microsoft indicated Olive Ave waterline Phase I was expected to begin in April 2026.","notable_tenants":"","verified_name":"Microsoft El Mirage (PHX80)","verified_operator":"Microsoft Azure","verified_owner":"Microsoft Corporation","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":150,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona Computer Data Center Program: state/county/local TPT and use-tax exemptions for qualifying data center equipment; note 2026 three-year pause on new sales-tax breaks.","natural_hazard_zone":"Likely FEMA Zone X (minimal flood hazard) for the area; exact parcel designation for 12901 W Olive Ave not confirmed."},"78":{"description":"NTT Phoenix PH1 is a data center operated by NTT Global Data Centers at 10256 E. Elliot Road in Mesa, Arizona, offering 36MW of critical IT load and about 126,000 sq ft of data center space on NTT’s Phoenix campus, which is planned for 240MW at full build-out.","verified_status":"operational","power_capacity_mw":36,"total_sqft":126000,"year_online":"2022","construction_update":"Jan 13–14, 2026: Mesa Design Review Board discussed NTT’s PH6 at 10256 E. Elliot Rd.; local reporting says PH6 combines the originally planned PH6 and PH7 into one building, while PH1–PH5 are under construction or in operation. NTT also notes PH4 will be available July 2026.","recent_news":"Jan 14, 2026: Local reporting notes NTT PH6 is planned at 10256 E. Elliot Rd., with PH1–PH5 under construction or in operation, and that PH6 merges the originally planned PH6 and PH7 into one building.","notable_tenants":"","verified_name":"Phoenix PH1 Data Center","verified_operator":"NTT Global Data Centers (Americas), a division of NTT DATA, Inc.","verified_owner":"NTT Global Data Centers Americas, Inc.","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral; three diverse fiber entries and two meet-me rooms. Corridor fiber options include SRP (dark fiber), plus regional carriers (e.g., Zayo, Cox, Lumen).","num_buildings":7,"campus_acres":102,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center Program (TPT and Use Tax exemptions on qualifying data center equipment); Elliot Road Technology Corridor benefits including Foreign Trade Zone (FTZ) options.","natural_hazard_zone":"FEMA Flood Zone D; low seismic and hurricane risk."},"79":{"description":"NTT Phoenix PH4 is a wholesale data center operated by NTT Global Data Centers at 10256 E. Elliot Rd., Bldg 4, Mesa, AZ, delivering 36 MW across 127,000 sq ft of IT space with availability targeted for July 2026. It is part of NTT’s Phoenix campus, which has a planned capacity of 240 MW.","verified_status":"under-construction","power_capacity_mw":36,"total_sqft":127000,"year_online":"2026","construction_update":"As of mid-2026, PH4 is targeting availability in July 2026; a Jan 14, 2026 local report noted PH1–PH5 are under construction or in operation at the same campus, with active PH4/PH5 permitting on file.","recent_news":"Jan 14, 2026: Local reporting confirmed PH6 planning at 10256 E. Elliot Road and stated PH1–PH5 are under construction or in operation, indicating continued campus build-out affecting PH4’s delivery.","notable_tenants":"","verified_name":"Phoenix PH4 Data Center","verified_operator":"NTT Global Data Centers","verified_owner":"NTT Global Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":7,"campus_acres":102,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona data center sales tax exemptions","natural_hazard_zone":"FEMA Flood Zone X; Seismic Zone 1; low risk"},"80":{"description":"PhoenixNAP West University is a PhoenixNAP-operated colocation data center at 2353 W University Dr, Tempe, AZ 85281, listed at 100,000 sq ft. It is distinct from PhoenixNAP’s main Phoenix DC1 facility at 3402 E University Dr.","verified_status":"operational","power_capacity_mw":0,"total_sqft":100000,"year_online":"unknown","construction_update":"","recent_news":"Mar 12–17, 2026: RadiusDC announced an agreement to acquire phoenixNAP’s Phoenix data center and colocation business and outlined plans to expand DC1 to 8 MW and develop DC2 with 18+ MW starting 1H 2028; phoenixNAP confirmed the transaction. No West University–specific update identified.","notable_tenants":"","verified_name":"PhoenixNAP West University","verified_operator":"PhoenixNAP","verified_owner":"PhoenixNAP","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":4.5,"utility_provider":"","tax_incentives":"Arizona Computer Data Center Program provides TPT/use-tax exemptions for qualifying data centers; facility-specific qualification for 2353 W University Dr is not verified. Arizona enacted a 3-year moratorium on new data-center sales-tax breaks in 2026.","natural_hazard_zone":"unknown"},"81":{"description":"QTS Phoenix 2 - PHX2 DC1 is an operational wholesale/colocation data center operated by QTS at 1200 N 40th Street in Phoenix, Arizona. The DC1 building is about 337,330 sq ft with 42 MW of power and is the first facility on the Phoenix 2 campus.","verified_status":"operational","power_capacity_mw":42,"total_sqft":337330,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Phoenix 2 (PHX2) - PHX2 DC1","verified_operator":"QTS Data Centers","verified_owner":"QTS Investment Properties Phoenix LLC (asset owner); QTS is jointly owned by Blackstone Infrastructure Partners and Blackstone Real Estate Income Trust (BREIT)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; redundant campus fiber conduit system","num_buildings":5,"campus_acres":85,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center (CDC) Program — Transaction Privilege Tax (TPT) and use-tax exemptions on qualifying purchases for certified data centers; no facility-specific certification found.","natural_hazard_zone":"Low seismic hazard; FEMA flood zone not determined for this address"},"82":{"description":"QTS PHX2 DC2 is an operational wholesale/hyperscale data center building on QTS’s Phoenix 2 campus at 1250 N 40th Street in Phoenix, Arizona. It is a newly built facility (2024) within the multi‑building PHX2 campus operated by QTS.","verified_status":"operational","power_capacity_mw":0,"total_sqft":337334,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Phoenix 2 (PHX2) DC2","verified_operator":"QTS Data Centers","verified_owner":"QTS Investment Properties Phoenix, LLC (asset-level) / QTS Data Centers; ultimate ownership by Blackstone Infrastructure Partners and Blackstone Real Estate Income Trust (BREIT)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; on-net fiber connectivity available","num_buildings":0,"campus_acres":80,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center Program: potential TPT and Use Tax exemptions on qualifying purchases for certified facilities (10–20 years, depending on qualification). No PHX2-specific certification located.","natural_hazard_zone":"FEMA Flood Zone X; 0.2% annual chance flood hazard; outside Special Flood Hazard Area (SFHA)"},"83":{"description":"RadiusDC Phoenix I DC2 (aka PhoenixNAP PHX02 at 3221 E Elwood St, Phoenix) is a planned second colocation data center on the Phoenix I campus operated by RadiusDC; the company targets ~18 MW of additional critical IT capacity beginning in 1H 2028, and earlier listings describe a 530,000 sq ft build.","verified_status":"planned","power_capacity_mw":18,"total_sqft":530000,"year_online":"2028","construction_update":"Mar 12, 2026: RadiusDC announced the Phoenix campus acquisition/expansion; DC2 initial phases planned for 1H 2028. Earlier (Apr 2025), phoenixNAP was set to break ground and was planning the second data center at 3221 E Elwood St.","recent_news":"Mar 12–13, 2026: RadiusDC announced a definitive agreement to acquire phoenixNAP’s Phoenix data center and colocation business; the Phoenix I campus expansion includes DC2 with initial phases planned to come online in 1H 2028, with the deal expected to close in Q2 2026.","notable_tenants":"None publicly confirmed for DC2; phoenixNAP will remain a tenant at the Phoenix facility post-transaction.","verified_name":"RadiusDC Phoenix I DC2 (formerly phoenixNAP PHX02 / PhoenixNAP East Elwood)","verified_operator":"RadiusDC","verified_owner":"RadiusDC (backed by IPI Partners); specific real-estate ownership vehicle not disclosed publicly","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; access to 40+ carriers (ecosystem level)","num_buildings":1,"campus_acres":6.47,"utility_provider":"","tax_incentives":"Arizona Computer Data Center Program (A.R.S. § 41-1519) may apply if the facility is certified; no site-specific certification found.","natural_hazard_zone":"Regional exposure includes floods, extreme heat, and other Arizona hazards; parcel-specific FEMA flood zone not identified."},"84":{"description":"Raeden Phoenix is a 19,000-square-foot, single-story data center operated by Raeden at 1710 E Grant St in Phoenix, offering 2 MW total capacity and about 6,000 sq ft of available colocation space.","verified_status":"operational","power_capacity_mw":2,"total_sqft":19000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Raeden Phoenix Data Center","verified_operator":"Raeden","verified_owner":"Prologis","cooling_type":"unknown","tier_level":"Tier II","fiber_providers":"Carrier-neutral; six on-net providers: Uniti, TW Telecom, Verizon, 360 Networks, Cogent, Level 3/CenturyLink","num_buildings":1,"campus_acres":0,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center Program: transaction privilege (TPT) and use tax exemptions on qualifying data center equipment purchases (subject to program requirements).","natural_hazard_zone":"Low risk — citywide minor flood risk; negligible hurricane/tornado exposure; extreme heat is the primary environmental concern."},"85":{"description":"Stream Data Centers’ PHXA (Phoenix I–VII) is a seven‑building wholesale/hyperscale campus at 2950 S. Litchfield Rd in Goodyear, AZ, designed for about 280 MW at full build‑out across more than 2 million sq ft, with initial buildings live and the rest in development.","verified_status":"under-construction","power_capacity_mw":280,"total_sqft":2000000,"year_online":"2021","construction_update":"Jan 6, 2026: Stream stated Phoenix I is active and the remaining six buildings on the PHXA campus are being developed.","recent_news":"Jan 6, 2026: Stream reported Phoenix I is actively serving tenants and the six remaining campus buildings are being developed.","notable_tenants":"","verified_name":"PHXA Hyperscale Campus (Phoenix I–VII)","verified_operator":"Stream Data Centers","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":7,"campus_acres":157,"utility_provider":"","tax_incentives":"Arizona offers data center sales/use tax incentives applicable in Goodyear; the city cites a 'great sales tax incentive program' for such projects.","natural_hazard_zone":"FEMA Flood Zone C/X (minimal flood hazard)"},"86":{"description":"US Signal AZ01 Phoenix is an operational colocation data center at 1655 W Sunrise Blvd, Gilbert, AZ, operated by US Signal. The site was historically associated with OneNeck and became part of US Signal following its acquisition of OneNeck in 2024.","verified_status":"operational","power_capacity_mw":1,"total_sqft":14000,"year_online":"1998","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"AZ01 Phoenix Data Center","verified_operator":"US Signal Company, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.83,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center Program (state/county/local TPT and use-tax exemptions) — facility certification not found.","natural_hazard_zone":"low risk"},"87":{"description":"Vantage AZ11 is an operational hyperscale data center at 45 S Bullard Avenue in Goodyear, operated by Vantage Data Centers. It is a two-story facility with four data modules and was the first building completed on the Phoenix (AZ1) campus in 2021.","verified_status":"operational","power_capacity_mw":16,"total_sqft":0,"year_online":"2021","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Vantage AZ11 – Phoenix (part of Vantage Phoenix/AZ1 campus)","verified_operator":"Vantage Data Centers","verified_owner":"Vantage Data Centers (via affiliated entities, e.g., Vantage Data Center AZ11 LLC)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":5,"campus_acres":50,"utility_provider":"Arizona Public Service Company (APS)","tax_incentives":"Arizona Computer Data Center Program: Transaction Privilege Tax (TPT) and Use Tax exemptions on qualifying computer data center equipment.","natural_hazard_zone":"FEMA Flood Zone X/C (area of minimal flood hazard)"},"88":{"description":"Verizon 3930 Watkins is a small Verizon Enterprise data center at 3930 E. Watkins St. in Phoenix, identified as a former XO Communications site later under Verizon. The 101k-sf host building (built 1999) was sold to The Meritex Co. in Jan 2024, so Verizon operates the facility while a third party owns the real estate.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4400,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon: 3930 Watkins","verified_operator":"Verizon Enterprise","verified_owner":"The Meritex Co.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":7.96,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center (CDC) Program: TPT and Use Tax exemption available for qualifying data centers; site-specific enrollment not confirmed.","natural_hazard_zone":"low risk"},"89":{"description":"Carrier-neutral colocation facility at 3110 N Central Ave in downtown Phoenix, operated by DataBank as PHX1; it was formerly zColo/Zayo and earlier associated with CoreLink.","verified_status":"operational","power_capacity_mw":1.4,"total_sqft":16200,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank PHX1 - Downtown Phoenix","verified_operator":"DataBank","verified_owner":"Plaza Companies & Holualoa Companies (Park Central JV)","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; providers include tw telecom, CenturyLink/Lumen, Cogent, Cox, Level 3, XO, Zayo, AT&T, Integra (among others).","num_buildings":1,"campus_acres":0,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center Program: Transaction Privilege Tax (TPT) and Use Tax exemptions for qualifying owners/operators and qualified colocation tenants.","natural_hazard_zone":"FEMA Zone X (low flood risk) – low seismic and no hurricane exposure"},"90":{"description":"Single-story enterprise data center at 20435 North 26th Avenue in Phoenix’s Deer Valley, built in 2003, totaling about 54,654 sq ft with up to 6MW and ~25,000 sq ft of raised floor; CBRE marketed the asset for sale or lease, and the current operator is undisclosed.","verified_status":"operational","power_capacity_mw":6,"total_sqft":54654,"year_online":"2003","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"20435 North 26th Avenue Data Center","verified_operator":"unknown","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":3.66,"utility_provider":"","tax_incentives":"Arizona Computer Data Center Program offers state/county/local Transaction Privilege Tax and Use Tax exemptions for qualifying certified data centers; no site-specific certification found.","natural_hazard_zone":"unknown"},"91":{"description":"Aligned PHX-13 is a two‑story, 445,000‑sq‑ft, 72‑MW hyperscale data center being developed and operated by Aligned Data Centers on its Waddell/Glendale campus.","verified_status":"under-construction","power_capacity_mw":72,"total_sqft":445000,"year_online":"unknown","construction_update":"April 15, 2025: Groundbreaking announced; project under construction and progressing via Aligned’s AMI build process.","recent_news":"","notable_tenants":"","verified_name":"Aligned PHX-13 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"Aligned Data Centers (site-level entity); land acquired from Lex Reems & Olive LLC (LXP Industrial Trust) in Dec 2024","cooling_type":"hybrid","tier_level":"Designed to Tier III standards","fiber_providers":"carrier-neutral","num_buildings":4,"campus_acres":100,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona Computer Data Center Program offering Transaction Privilege Tax (TPT) and Use Tax exemptions on qualifying data center equipment; Aligned’s Phoenix data center clients can leverage tax incentives that generate substantial savings.","natural_hazard_zone":""},"92":{"description":"Two‑story colocation data center at 2055 E Technology Circle in Tempe, owned by Mapletree Industrial Trust and currently marketed as Centersquare PHX2‑A; legacy directories may still show Digital Realty.","verified_status":"operational","power_capacity_mw":6.8,"total_sqft":76350,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty – 2055 East Technology Circle, Tempe","verified_operator":"Digital Realty","verified_owner":"Mapletree Industrial Trust (Mapletree Investments platform)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral (10+ lit carriers)","num_buildings":1,"campus_acres":0,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center sales/use tax exemptions for qualifying equipment (state program).","natural_hazard_zone":""},"93":{"description":"DataBank DFW1 is DataBank’s operational downtown Dallas colocation data center at 400 South Akard that also houses the company’s headquarters in the former Federal Reserve Building, listing 7 MW critical IT load and 145,250 IT square feet.","verified_status":"operational","power_capacity_mw":7,"total_sqft":145250,"year_online":"2000","construction_update":"","recent_news":"No notable facility-specific expansion or tenant news in the last six months; a routine fire-alarm permit was filed on March 10, 2026 for 400 S Akard.","notable_tenants":"","verified_name":"DataBank DFW1 - Downtown Dallas Data Center","verified_operator":"DataBank","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 41 onsite carriers; access to DataBank’s proprietary fiber ring with connectivity to 90+ providers","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":""},"94":{"description":"DataBank DFW2 is an operational colocation facility at 904 Quality Way, Richardson, TX, operated by DataBank; it offers 4.3MW critical IT load, 41,310 IT/raised sq ft, 40 onsite carriers, 2N power, N+1 cooling, and an on‑site power substation.","verified_status":"operational","power_capacity_mw":4.3,"total_sqft":68000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank DFW2 - North Dallas Data Center","verified_operator":"DataBank","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 40 onsite carriers","num_buildings":1,"campus_acres":4.338,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":""},"95":{"description":"DataBank DFW3 is a Tier III colocation data center at 8375 Dominion Pkwy in Plano, Texas, operated by DataBank, with 72,230 IT sq ft, 12MW critical IT load, and 41 onsite carriers. The facility opened in 2018 on DataBank’s Plano campus.","verified_status":"operational","power_capacity_mw":12,"total_sqft":144000,"year_online":"2018","construction_update":"March 2026: On the DFW3 Plano campus, the attached DFW8 expansion reported structural completion of its first building.","recent_news":"March 2026: On the DFW3 Plano campus, the attached DFW8 expansion reached structural completion of its first building.","notable_tenants":"","verified_name":"DataBank DFW3 - Plano Data Center","verified_operator":"DataBank","verified_owner":"DB Data Center Plano LLC (DataBank)","cooling_type":"unknown","tier_level":"Uptime Institute Tier III Certified","fiber_providers":"carrier-neutral; 41 onsite carriers; multiple dark fiber providers; Gigabit Fiber, Telia Sonera","num_buildings":2,"campus_acres":16,"utility_provider":"Oncor","tax_incentives":"","natural_hazard_zone":""},"96":{"description":"DataBank DFW4 (Dallas Empire Central) is an operational colocation data center at 1100 Empire Central Place in Dallas operated by DataBank. It offers 4 MW of critical IT load with 35,900 IT square feet and on-site carrier options.","verified_status":"operational","power_capacity_mw":4,"total_sqft":66000,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank DFW4 - Dallas Empire Central Data Center","verified_operator":"DataBank","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 6 onsite carriers","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"outside 100-year and 500-year floodplains"},"97":{"description":"DataBank DFW5 is an operational colocation data center in Dallas’ Infomart (1950 N. Stemmons Fwy, Suite #4006) operated by DataBank, offering 17,320 IT sq ft, 1.3MW critical IT load, 2N power, and N+1 cooling.","verified_status":"operational","power_capacity_mw":1.3,"total_sqft":17320,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank DFW5 - Dallas Infomart Data Center","verified_operator":"DataBank","verified_owner":"Equinix, Inc. (owner of the Infomart Dallas building housing DFW5)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":18.2,"utility_provider":"Oncor Electric Delivery","tax_incentives":"City of Dallas Resolution 19-0229 authorized a real property and business personal property tax abatement agreement with Equinix LLC (or affiliate) for the Infomart campus at 1950 N. Stemmons.","natural_hazard_zone":""},"98":{"description":"DataBank DFW6 – Dallas Love Field is an operational colocation data center at 8600 Harry Hines Boulevard, Suite #200 in Dallas, operated by DataBank, featuring 12,560 IT square feet and 0.675MW critical IT load. The site offers a 2N power design and N+1 cooling and is located near Dallas’s major airports.","verified_status":"operational","power_capacity_mw":0.675,"total_sqft":12560,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank DFW6 - Dallas Love Field","verified_operator":"DataBank","verified_owner":"Viceroy Partners LP","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 6 onsite carriers","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":"Tornado Alley severe-convective-storm exposure; Dallas/Irving included in USGS seismic hazard model; FEMA flood zone not confirmed"},"99":{"description":"DataBank DFW7 (Dallas LBJ) is an operational colocation data center operated by DataBank at 6606 LBJ Freeway Suite #145, Dallas, TX 75240, offering 16,070 IT square feet and 0.94 MW of critical IT load.","verified_status":"operational","power_capacity_mw":0.94,"total_sqft":16070,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank DFW7 - Dallas LBJ","verified_operator":"DataBank","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 39 onsite carriers","num_buildings":0,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":""},"100":{"description":"Equinix DA1 is an operational, carrier-neutral Equinix IBX colocation facility at 1950 North Stemmons Freeway, Suite 1034 in Dallas’s Infomart campus, offering roughly 30,354–30,355 sq ft of colocation space. It is one of Equinix’s original IBX sites serving dense interconnection ecosystems.","verified_status":"operational","power_capacity_mw":3,"total_sqft":61573,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Dallas DA1","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"air-cooled","tier_level":"N+1 design; no Uptime Institute Tier certification published","fiber_providers":"carrier-neutral; examples include Cogent, Consolidated Communications, CoreLink Global; Equinix reports 155+ competing network providers on the Dallas campus","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":"FEMA flood zone: not determinable from provided sources"},"101":{"description":"Equinix DA2 is an operational, carrier‑neutral Equinix IBX colocation facility at 1950 North Stemmons Freeway, Suite 2027, Dallas, TX, within the Infomart campus and one of Equinix’s original Dallas IBX locations. It offers interconnection-focused colocation with roughly 24,542 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":2.11,"total_sqft":33564,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix DA2","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; access to many networks via the Infomart ecosystem (e.g., 40+ onsite carriers and 50+ unique networks in the building)","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor Electric Delivery Company LLC","tax_incentives":"","natural_hazard_zone":""},"102":{"description":"Equinix DA3 is an operational, carrier-neutral Equinix IBX colocation data center at 1950 North Stemmons Freeway, Suites 1039A & 2048, Dallas, TX; it is one of Equinix’s original Dallas IBX locations serving telecommunications companies.","verified_status":"operational","power_capacity_mw":60,"total_sqft":50738,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix DA3","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; major providers include Arelion, AT&T US, Global Secure Layer, Macarne, and Cogent.","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"Texas Qualified Data Center state sales tax exemption (6.25%). A separate City of Dallas property tax abatement was approved for Equinix’s adjacent DA11 facility, not DA3.","natural_hazard_zone":"Likely FEMA Zone X (protected by levee); near Trinity River levee system; moderate severe-storm/tornado exposure; low seismic risk."},"103":{"description":"Equinix DA4 is an Equinix-operated, carrier-neutral IBX colocation data center at 2323 Bryan Street, Suite 1400, in Dallas, Texas. It offers interconnection options and certifications typical of Equinix’s Dallas metro facilities.","verified_status":"operational","power_capacity_mw":0,"total_sqft":17164,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Dallas DA4 (DA4 Dallas IBX Data Center)","verified_operator":"Equinix","verified_owner":"Digital Realty Trust, L.P.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; the 2323 Bryan Street building hosts 60+ carriers","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"City of Dallas incentives: 2019 Council resolution authorizing a real property tax abatement agreement with Equinix LLC; 2025 Legistar item to amend a Business Personal Property Tax Abatement and Chapter 380 Grant Agreement involving Digital Realty Trust, L.P.","natural_hazard_zone":""},"104":{"description":"Equinix DA6 is an Equinix-operated carrier-neutral IBX colocation data center in the Dallas Infomart at 1950 North Stemmons Freeway (Suites 2049 & 3050), Dallas, TX. It offers 71,612 sq ft with N+1 UPS/generator redundancy and 3 × 2,500 kW diesel generators, and opened on March 31, 2014.","verified_status":"operational","power_capacity_mw":0,"total_sqft":71612,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix DA6 (Dallas DA6 IBX Data Center)","verified_operator":"Equinix, Inc.","verified_owner":"Equinix, Inc.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; 155+ network providers (examples visible via PeeringDB and Equinix listings).","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor Electric Delivery (inferred from service territory; facility materials do not explicitly name the utility)","tax_incentives":"City of Dallas Resolutions 19-0228 (Phase One) and 19-0229 (Phase Two) authorizing property tax abatements for Equinix affiliated development at/near 1950 N. Stemmons; Texas state sales tax exemption for qualified data centers may apply.","natural_hazard_zone":"Seismic Design Category B; FEMA floodplain designation not specified publicly."},"105":{"description":"Equinix DA7 is an operational Equinix IBX colocation data center at 6653 Pinecrest Drive, Plano, Texas, offering interconnection services. It provides roughly 37.9k sq ft of raised-floor colocation within a facility of about 55,201 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":55201,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix DA7","verified_operator":"Equinix","verified_owner":"STACK Infrastructure","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; services include Equinix Fabric, Equinix Internet Exchange, Cross Connects, Metro Connect, and Network Edge","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":"low flood risk; above 500-year Base Flood Elevation; 221-mph wind-rated shell"},"106":{"description":"Equinix DA9 is an operational Equinix IBX carrier-neutral colocation data center at 2222 East Grauwyler Road, Irving, TX, notable for a 122,205 sq ft gross footprint and standby power via 2 × 2,000 kW diesel generators.","verified_status":"operational","power_capacity_mw":4,"total_sqft":122205,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix DA9","verified_operator":"Equinix","verified_owner":"VERIZON CENTERS 1 LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (unshaded); IBX elevation above the 500-year Base Flood Elevation"},"107":{"description":"Equinix DA10 is an operational Equinix IBX colocation facility at 1232 Alma Road in Richardson, Texas, providing 12,853 sq ft of data center space with N+1 standby power supported by 2 x 2,000 kW diesel generators.","verified_status":"operational","power_capacity_mw":6,"total_sqft":12853,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix DA10 (Dallas IBX Data Center)","verified_operator":"Equinix","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":69,"utility_provider":"","tax_incentives":"City of Richardson offered a $5M incentive to Digital Realty’s Datacenter Park Dallas campus.","natural_hazard_zone":""},"108":{"description":"Equinix DA11 is an Equinix‑operated IBX colocation data center at 1990 North Stemmons Freeway in Dallas on the Infomart campus; it opened in 2020.","verified_status":"operational","power_capacity_mw":14,"total_sqft":230000,"year_online":"2020","construction_update":"Mar 31, 2023: Equinix plans a $180M expansion to the Dallas Infomart campus (including DA11), adding new four‑story data center and office buildings.","recent_news":"","notable_tenants":"","verified_name":"Dallas DA11","verified_operator":"Equinix","verified_owner":"Equinix, Inc. (via Equinix LLC or affiliate)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"City of Dallas approved a real property tax abatement agreement with Equinix LLC or an affiliate for the project.","natural_hazard_zone":"Above 100-year Base Flood Elevation (lower flood risk)"},"109":{"description":"Digital Realty DFW10 is an operational colocation and interconnection data center inside the Univision Tower at 2323 Bryan Street in Dallas, operated by Digital Realty. It is positioned as a premier Internet gateway used by 60+ carriers, with the building totaling about 454,000 square feet.","verified_status":"operational","power_capacity_mw":6.85,"total_sqft":454000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty DFW10 (2323 Bryan Street / Univision Tower)","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust (owner entity: Digital Bryan Street PS)","cooling_type":"chilled water","tier_level":"Tier III equivalent (not Uptime-certified)","fiber_providers":"carrier-neutral; 61+ networks present (multiple public exchanges on-site).","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"City of Dallas File 25-1969A (2025 amendment to 2021 agreements for 2323 Bryan St): 50% business personal property tax abatement removed; Chapter 380 grant reduced.","natural_hazard_zone":"Low risk; outside 100‑year floodplain and seismic zone 1; elevation above 500‑year flood level reported for same building."},"110":{"description":"Digital Realty DFW11 is an operational colocation data center at 4025 Midway Rd, Carrollton, TX, totaling 100,600 sq ft and offering approximately 10 MW of power capacity.","verified_status":"operational","power_capacity_mw":10,"total_sqft":100600,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"VAZATA (Dallas DAA)","verified_name":"DFW11 (Digital Realty Dallas DFW11 / 4025 Midway Road)","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"Tier III-equivalent (not Uptime certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":8.32,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Severe thunderstorm/tornado exposure typical for North Texas; FEMA Special Flood Hazard Area status for this parcel not confirmed."},"111":{"description":"Digital Realty DFW12 is an operational colocation data center operated by Digital Realty at 2440 Marsh Lane in Carrollton, Texas, with a 135,300 ft² building.","verified_status":"operational","power_capacity_mw":12,"total_sqft":135300,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"VAZATA (DAL II/Dallas DAB)","verified_name":"DFW12 Data Center","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent","num_buildings":1,"campus_acres":69,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Outside 500-year floodplain; Seismic Zone 1"},"112":{"description":"Digital Realty DFW29 is an operational colocation data center at 950 E. Collins Boulevard in Richardson, Texas, on Digital Realty’s 69-acre Digital Dallas campus, offering a 121,300‑ft² facility with rich network/service provider ecosystem.","verified_status":"operational","power_capacity_mw":6.75,"total_sqft":121300,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DFW29 Data Center","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":10,"campus_acres":69,"utility_provider":"Oncor","tax_incentives":"City of Richardson approved a $5M incentive (TIF/economic-development) for Digital Realty’s Datacenter Park – Dallas campus in 2010; no DFW29-specific or current active status confirmed.","natural_hazard_zone":"Outside 500-year flood plain (low flood risk)"},"113":{"description":"Aligned DFW-01 is Aligned’s operational colocation data center at 2800 Summit Ave in Plano, Texas, on a 19‑acre campus. The facility provides around 60 MW across roughly 375,000 sq ft and was retrofitted in 2015 with a later expansion in 2019.","verified_status":"operational","power_capacity_mw":60,"total_sqft":375000,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"Evocative (DAL1)","verified_name":"Aligned DFW-01 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"Aligned Data Centers (DFW) Propco LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; multiple carriers present (PeeringDB shows Networks 5, Local Exchanges 1)","num_buildings":2,"campus_acres":19,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":"low risk"},"114":{"description":"Flexential Dallas – Plano is an operational colocation data center at 3500 East Plano Parkway in Plano, Texas, offering a 261,425‑square‑foot footprint and 18 MW of critical power.","verified_status":"operational","power_capacity_mw":18,"total_sqft":261425,"year_online":"2016","construction_update":"2025: Internal fit-out for new racks at 3500 E. Plano Pkwy (permit TABS2025014391) — new electrical conduits and receptacles within an existing data hall; no hard construction or new partitions.","recent_news":"","notable_tenants":"CoreWeave (13 MW high-density deployment at the Dallas–Plano facility)","verified_name":"Flexential Dallas - Plano Data Center","verified_operator":"Flexential","verified_owner":"Legacy Investing and Invesco Real Estate (sale-leaseback owners/landlord)","cooling_type":"liquid cooling","tier_level":"Tier III","fiber_providers":"carrier-neutral; AT&T, FiberLight","num_buildings":1,"campus_acres":14.54,"utility_provider":"Oncor","tax_incentives":"","natural_hazard_zone":"low risk"},"115":{"description":"Centersquare Dallas DFW3-A is an operational carrier‑neutral colocation data center operated by Centersquare at 11830 Webb Chapel Rd., Suite 200, Dallas, TX. The site is listed with 61,348 sq ft of space and 18.3 MW of utility power capacity.","verified_status":"operational","power_capacity_mw":18.3,"total_sqft":61348,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare - Dallas DFW3-A","verified_operator":"Centersquare","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":""},"116":{"description":"Cologix DAL1 is an operational carrier-hotel colocation facility operated by Cologix in the Infomart at 1950 North Stemmons Freeway, Dallas, offering 28,000 square feet and rich interconnection (50+ networks) with cloud on-ramps; OCOLO lists total power at 15.00 MW.","verified_status":"operational","power_capacity_mw":15,"total_sqft":28000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"No current anchor tenant is publicly disclosed. Interconnection at/through DAL1 includes access to 50+ networks and on-net services such as PacketFabric, plus cloud on-ramps via AWS Direct Connect and Microsoft Azure ExpressRoute.","verified_name":"Cologix DAL1 Data Center","verified_operator":"Cologix","verified_owner":"Equinix, Inc.","cooling_type":"air-cooled","tier_level":"Tier III-equivalent","fiber_providers":"carrier-neutral; 50+ networks; examples include Cogent, Consolidated Communications - TX, and GTT","num_buildings":3,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"City of Dallas Resolution 19-0229 authorized a real property tax abatement agreement with Equinix LLC or an affiliate related to the Infomart campus (owner-level; not DAL1-specific).","natural_hazard_zone":"low risk"},"117":{"description":"CyrusOne DFW1 is an operational CyrusOne-operated colocation data center at 1649 West Frankford Road in Carrollton, Texas, marketed as the largest data center facility in Texas. Listings indicate roughly 670,000 sq ft of facility space and about 90 MW of IT capacity.","verified_status":"operational","power_capacity_mw":90,"total_sqft":670000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"North Texas Emergency Communications Center (NTECC)","verified_name":"Carrollton, TX: DFW1","verified_operator":"CyrusOne","verified_owner":"Funds managed by KKR and Global Infrastructure Partners (GIP; now part of BlackRock) own CyrusOne and its DFW1 asset.","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Oncor","tax_incentives":"","natural_hazard_zone":""},"118":{"description":"CyrusOne DFW2 is an operational CyrusOne colocation data center at 2501 S State Highway 121 Business, Suite 500, Lewisville, TX, offering nearly 200,000 sq ft of IT space in the Technology Convergence Center near DFW International Airport.","verified_status":"operational","power_capacity_mw":26.5,"total_sqft":200000,"year_online":"unknown","construction_update":"May 4, 2026: CyrusOne neared a ~$1B refinancing involving its North Texas portfolio; the Lewisville campus deal supports broader expansion. No specific groundbreaking or completion dates were disclosed.","recent_news":"May 4, 2026: CyrusOne neared a ~$1 billion refinancing tied to its North Texas data centers, with the Lewisville campus deal supporting broader expansion.","notable_tenants":"LightEdge (at 2501 S. State Highway 121 Business, Building #5, Suite 500; identified as part of CyrusOne DFW2).","verified_name":"CyrusOne DFW2 (Lewisville, TX)","verified_operator":"CyrusOne","verified_owner":"Digital Realty","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; tw telecom; Lumen (Level 3); multiple carriers","num_buildings":10,"campus_acres":185,"utility_provider":"Texas-New Mexico Power (TNMP)","tax_incentives":"","natural_hazard_zone":"Medium flood risk; no property-specific FEMA flood-zone designation found"},"119":{"description":"QTS Irving (DC1/DC2) is an operational QTS Data Centers colocation facility at 6431 Longhorn Drive in Irving, Texas, formed by converting a former Maxim Integrated semiconductor plant. The DC1/DC2 buildings are commonly cited at roughly 700,000 sq ft with about 75.2 MW of critical power and sit within QTS’s larger Irving campus.","verified_status":"operational","power_capacity_mw":75.2,"total_sqft":700000,"year_online":"unknown","construction_update":"Campus expansion: 6300 Longhorn Drive (DC5) registered with TDLR showing Start 4/1/2024 and Estimated Completion 9/30/2025; additional new-build filings and listings at 6311 Longhorn Drive; as of June 9, 2026, a project tracker still lists the QTS Irving Mega-Campus (Microsoft) as under construction.","recent_news":"June 9, 2026: A public project listing shows the QTS Irving Mega-Campus (Microsoft) as under construction in Irving, indicating ongoing campus expansion.","notable_tenants":"","verified_name":"QTS Irving DC1 & DC2 (Irving 1)","verified_operator":"QTS Data Centers","verified_owner":"Blackstone-managed funds (Blackstone Infrastructure Partners and Blackstone Real Estate Income Trust) via QTS Realty Trust","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":6,"campus_acres":55,"utility_provider":"Oncor Electric Delivery","tax_incentives":"Eligible for a 50% City of Irving property tax abatement to develop multiple data centers on the Irving campus; local policy allows abatements/rebates for up to 10 years for qualifying projects.","natural_hazard_zone":""},"120":{"description":"NTT Dallas TX1 is an operational colocation data center at 2008 Lookout Dr., Garland, TX, operated by NTT DATA/NTT Global Data Centers. It provides approximately 230,000 sq ft of space and 16 MW of critical IT load.","verified_status":"operational","power_capacity_mw":16,"total_sqft":230000,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"iland","verified_name":"Dallas TX1 Data Center","verified_operator":"NTT Global Data Centers Americas (NTT DATA)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":42,"utility_provider":"","tax_incentives":"City of Garland economic incentives for a $42M campus addition; Texas State Sales Tax Exemption program for Qualified Data Centers (applicability depends on registration/qualification).","natural_hazard_zone":"FEMA Zone X (outside 100-year floodplain); facility designed to withstand EF3 tornado."},"121":{"description":"NTT Dallas TX2 is a colocation data center operated by NTT Global Data Centers at 2108 Lookout Drive in Garland, Texas; it is the second facility on NTT’s Dallas campus and is commissioned with around 36 MW of capacity and ~229,500 sq ft of space.","verified_status":"operational","power_capacity_mw":36,"total_sqft":229500,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Dallas TX2 Data Center","verified_operator":"NTT Global Data Centers","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":5,"campus_acres":42,"utility_provider":"","tax_incentives":"Texas state sales/use tax exemption for qualified data centers; local incentives may be available via Garland Economic Development.","natural_hazard_zone":"FEMA Zone X (low flood risk) and regional tornado exposure (North Texas)."},"122":{"description":"NTT Dallas TX3 is an NTT DATA Global Data Centers colocation facility at 2080 Lookout Drive in Garland, Texas, on the company’s Dallas/Garland campus. The building totals about 229,500 square feet.","verified_status":"operational","power_capacity_mw":36,"total_sqft":229500,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"NTT TX3 - Data Center","verified_operator":"NTT Global Data Centers Americas (NTT DATA)","verified_owner":"NTT Global Data Centers TX, LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; AT&T, Frontier Communications, Zayo (campus)","num_buildings":5,"campus_acres":42,"utility_provider":"Garland Power & Light","tax_incentives":"Texas state sales/use tax exemption for qualified data centers (program in effect); local economic development support from the City of Garland/GP&L noted. TX3-specific state certification not confirmed in provided sources.","natural_hazard_zone":"Likely FEMA Zone X (outside 100-year floodplain); North Texas severe wind and hail exposure"},"123":{"description":"NTT Dallas TX4 is a colocation data center operated by NTT DATA/NTT Global Data Centers at 2060 Lookout Dr., Garland, Texas, on NTT’s Dallas campus, designed to deliver 36 MW of critical IT load and 127,000 sq ft of IT space with availability beginning in 2026.","verified_status":"under-construction","power_capacity_mw":36,"total_sqft":235910,"year_online":"2026","construction_update":"Texas TDLR project TABS2024017291 for NTT TX4 on Lookout Drive (Garland) shows the TX4 project with a listed start date of 9/1, confirming active buildout, and NTT indicates availability beginning June 2026 with tours noted as starting July 2026.","recent_news":"","notable_tenants":"","verified_name":"Dallas TX4 Data Center","verified_operator":"NTT Global Data Centers Americas, Inc. (NTT DATA)","verified_owner":"NTT Global Data Centers TX, LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; diverse entry points and meet-me rooms","num_buildings":5,"campus_acres":42,"utility_provider":"Garland Power & Light (GP&L)","tax_incentives":"Registered under Texas’ Qualifying Data Center (QDC) program; eligible for state sales and use tax exemptions on qualifying items.","natural_hazard_zone":""},"124":{"description":"Prime Dallas DFW01-01 is Prime Data Centers’ multi-tenant colocation facility at 1515 Round Table Dr in Dallas, Texas, listed as operational and fully leased with 8 MW of capacity and 107,000 sq ft. The building opened as Carrier-1 in 2014 at this address and later changed ownership before operating under Prime.","verified_status":"operational","power_capacity_mw":8,"total_sqft":107000,"year_online":"2014","construction_update":"","recent_news":"On 2026-01-15, Prime announced DFW01-01 earned U.S. EPA ENERGY STAR certification for superior energy performance, ranking among the top 25% of buildings for energy efficiency.","notable_tenants":"","verified_name":"Prime Dallas DFW01-01 (1515 Round Table)","verified_operator":"Prime Data Centers","verified_owner":"1515 Roundtable Dr Property, LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"Zayo, Gigabit Fiber, InnerCity FiberNet; multiple carriers/dark fiber in proximity","num_buildings":2,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"125":{"description":"Stream Dallas DFW‑B2 is a planned wholesale data center building on Stream Data Centers’ Wilmer (Dallas‑area) hyperscale campus, part of a multi‑building development to add capacity in South Dallas County.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Sep 2025: Reports noted a 48MW data center project on Sunrise Road in Wilmer, with construction expected to begin April 2026 and conclude by late 2027.","recent_news":"","notable_tenants":"","verified_name":"Stream Data Centers DFW-B (DFW VIII–X), Wilmer, TX","verified_operator":"Stream Data Centers","verified_owner":"SDC DFW VIII, L.P.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":77,"utility_provider":"","tax_incentives":"Texas Qualified Data Center sales/use tax exemption (10–15 years) applicable; SDC DFW VIII, L.P. is listed as a registered qualifying data center. City of Wilmer TIRZ #2 documentation references a deed to SDC DFW VIII, L.P.","natural_hazard_zone":"outside FEMA 500-year floodplain (low flood risk)"},"126":{"description":"A Google-operated hyperscale data center campus at 3441 Railport Pkwy in Midlothian, Ellis County, Texas; Google lists Midlothian among its Texas data center locations, and independent facility listings show Google buildings at the 3441 Railport Pkwy campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2019","construction_update":"Mar 3, 2026: Filing and state record indicate a fifth data center building at 3441 Railport Pkwy (new construction; estimated cost $880,000,000).","recent_news":"Mar 3, 2026: Google filed for a fifth data center building at its Midlothian campus at 3441 Railport Pkwy; a TDLR record lists new construction at the same address with an estimated cost of $880,000,000.","notable_tenants":"","verified_name":"Google Midlothian Data Center (Sharka Data Center campus)","verified_operator":"Google LLC","verified_owner":"Sharka LLC c/o Corporation Services Co.","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":540,"utility_provider":"Oncor Electric Delivery","tax_incentives":"2018 approvals: 100% personal property tax abatement and 85% improvements abatement over 10 years (City of Midlothian); Ellis County approved a 10-year abatement for the project.","natural_hazard_zone":"Severe tornado and hail risk; FEMA-mapped floodplains present in Midlothian."},"127":{"description":"Colocation data center at 400 International Parkway in Richardson, TX, operated by Equinix; originally part of Verizon’s data center portfolio that Equinix acquired in 2017.","verified_status":"operational","power_capacity_mw":60,"total_sqft":196594,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix – 400 International Parkway (formerly Verizon Dallas (Richardson))","verified_operator":"Equinix","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (low risk)"},"128":{"description":"Telecom/colocation data center at 1300 W Mockingbird Lane in Dallas operated by Verizon Enterprise, offering services with published pricing. The site traces back to XO Communications’ Dallas Data Center #1 at the same address, with Verizon absorbing XO’s business after the 2017 transaction.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon: 1300 W Mockingbird","verified_operator":"Verizon Enterprise (formerly XO Communications at this address)","verified_owner":"Dallas County","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon (including former XO Communications network); others not listed","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":"Low seismic risk; FEMA flood zone for 1300 W Mockingbird not determined from provided sources."},"129":{"description":"Lumen Dallas 1 is an operational telecom/colocation data center operated by Lumen Technologies at 3180 Irving Blvd, Dallas, TX, offering about 80,000 sq ft total space (46,070 sq ft raised floor) and 12.0 MW total power.","verified_status":"operational","power_capacity_mw":12,"total_sqft":80000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No publicly disclosed anchor tenant or major customer. Networks present include Cogent at 3180 Irving Blvd, but this does not confirm customer tenancy.","verified_name":"Lumen Dallas 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent; Lumen (Level 3)","num_buildings":0,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":"Seismic Zone 2 construction reported; exact FEMA flood-zone designation not found"},"130":{"description":"H5 Colo operates a purpose-built, carrier-neutral colocation facility at 12712 Park Central Drive, Suite 200, Dallas, offering hardened, SSAE 18-compliant infrastructure for enterprise workloads.","verified_status":"operational","power_capacity_mw":2,"total_sqft":20000,"year_online":"2009","construction_update":"May 2026: Commercial Alteration/Addition permit COM-ALT-ADD-26-001206 filed for 12712 Park Central Dr, B100 (May 19, 2026) and Certificate of Occupancy CO-26-002773 filed (May 22, 2026), both under H5 Data Centers.","recent_news":"May 2026: City of Dallas permit filings at 12712 Park Central Dr, B100 under H5 Data Centers, including a Commercial Alteration/Addition (COM-ALT-ADD-26-001206, filed May 19, 2026) and a Certificate of Occupancy (CO-26-002773, filed May 22, 2026).","notable_tenants":"","verified_name":"H5 COLO Dallas Facility","verified_operator":"H5 Colo Inc.","verified_owner":"McKnight Realty Partners","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; Time Warner Telecom (other on-net carriers likely; full list not publicly confirmed)","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor","tax_incentives":"","natural_hazard_zone":"Minor flood risk (adjacent to White Rock Creek); site-specific FEMA zone not confirmed"},"131":{"description":"VAZATA Dallas DAA / DAL I is an operational colocation data center at 4025 Midway Road in Carrollton, TX, operated by VAZATA, with about 25,000 sq ft of raised-floor space. It is housed in Digital Realty’s DFW11 building and offers around 3.3 MW of capacity.","verified_status":"operational","power_capacity_mw":3.3,"total_sqft":100590,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"VAZATA Dallas Data Center DAA (DAL I)","verified_operator":"VAZATA","verified_owner":"Digital Realty","cooling_type":"unknown","tier_level":"Tier III (design standard; not publicly Uptime-certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor","tax_incentives":"Texas State Sales and Use Tax Exemption for Qualified Data Centers (if certified); no facility-specific abatement identified.","natural_hazard_zone":""},"132":{"description":"LightEdge Dallas (Lewisville) is an operational LightEdge Solutions colocation and hybrid-cloud facility at 2501 State Hwy 121, Building 5, Suite 500, in Lewisville, Texas. It operates within the CyrusOne DFW2 campus at this address, which offers nearly 200,000 sq ft of IT space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":200000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"LightEdge Dallas (Lewisville) Data Center","verified_operator":"LightEdge Solutions","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multiple dark fiber providers present","num_buildings":10,"campus_acres":168.4,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":"Severe thunderstorm and tornado exposure (North Texas); FEMA flood zone not specified"},"133":{"description":"CyrusOne SAT1 is an operational CyrusOne colocation data center at 9999 Westover Hills Boulevard in San Antonio. The facility is listed at 110,000 sq ft with 9 MW total capacity and is described by the operator as the city’s first enterprise colocation facility.","verified_status":"operational","power_capacity_mw":9,"total_sqft":110000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne SAT1","verified_operator":"CyrusOne","verified_owner":"CyrusOne LLC (parent ownership by funds managed by KKR and Global Infrastructure Partners)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"CPS Energy","tax_incentives":"2013 City of San Antonio ordinance approved a 6-year, 50% ad valorem tax abatement for CyrusOne tied to approximately $120M in planned investment.","natural_hazard_zone":""},"134":{"description":"CyrusOne SAT2 is an operational colocation data center operated by CyrusOne at 9554 Westover Hills Blvd in San Antonio, Texas, and is part of the company’s SAT2–SAT4 Westover Hills campus.","verified_status":"operational","power_capacity_mw":36,"total_sqft":372000,"year_online":"unknown","construction_update":"TDLR project at 9554 Westover Hills Blvd Building 2: Start 2026-04-01, Completion 2026-09-01 (est. $750,000).","recent_news":"","notable_tenants":"","verified_name":"CyrusOne SAT2","verified_operator":"CyrusOne","verified_owner":"CyrusOne LLC (portfolio company owned by funds managed by KKR and Global Infrastructure Partners)","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":8.53,"utility_provider":"","tax_incentives":"City of San Antonio: 6-year, 50% ad valorem tax abatement approved in 2013 tied to ~$120M in improvements; Texas Qualified Data Center sales/use tax exemption program exists (no SAT2-specific listing found).","natural_hazard_zone":""},"135":{"description":"CyrusOne SAT5 is an operational colocation data center operated by CyrusOne at 14719 Omicron Drive in San Antonio, Texas, and is part of the SAT5–SAT6 complex west of downtown with connectivity to the San Antonio Metro IX and CyrusOne National IX.","verified_status":"operational","power_capacity_mw":18,"total_sqft":175000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne SAT5","verified_operator":"CyrusOne","verified_owner":"C1 SAN ANTONIO V TRP LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; CyrusOne National IX","num_buildings":2,"campus_acres":0,"utility_provider":"CPS Energy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X; low seismic/hurricane/tornado exposure"},"136":{"description":"CyrusOne SAT9 is a CyrusOne-operated colocation data center at 14815 Omicron Drive in San Antonio, Texas, developed as part of the SAT8/SAT9 San Antonio-Omicron campus and positioned for hyperscale and enterprise workloads.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":279730,"year_online":"2026","construction_update":"Project SAT8/9 at 14815 Omicron Drive is recorded in the Texas TDLR database (TABS2024005161) and was reported in Nov 2023 news coverage; campus listings cite a planned completion of December 2025 and four data halls.","recent_news":"June 2026: CyrusOne posted Critical Environment Operator roles for “San Antonio, TX SAT9,” indicating active staffing for operations/maintenance.","notable_tenants":"","verified_name":"CyrusOne SAT9 - San Antonio","verified_operator":"CyrusOne","verified_owner":"CyrusOne (portfolio company of funds managed by KKR and Global Infrastructure Partners)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"CPS Energy","tax_incentives":"","natural_hazard_zone":"FEMA flood zones B and X (moderate flood hazard)"},"137":{"description":"H5 Data Centers San Antonio – 100 Taylor is an operational carrier‑neutral colocation and carrier hotel at 100 Taylor St. in downtown San Antonio, operated by H5 Data Centers and totaling about 85,000 square feet.","verified_status":"operational","power_capacity_mw":4.5,"total_sqft":85000,"year_online":"unknown","construction_update":"Nov 20, 2023: H5 announced a Phase 3 expansion at its San Antonio 100 Taylor Street facility, enabling up to 340 cabinets and up to 1.5 MW of additional UPS capacity.","recent_news":"","notable_tenants":"No anchor enterprise tenant/customer is publicly disclosed. On‑net connectivity and exchanges include CenturyLink (Lumen), LOGIX, Telia, Windstream, FiberLight, Zayo, and the SAT‑IX neutral Internet exchange.","verified_name":"H5 Data Centers San Antonio Data Center (100 Taylor Street)","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers","cooling_type":"unknown","tier_level":"Tier III design (not Uptime-certified)","fiber_providers":"carrier-neutral; 35 on-net carriers","num_buildings":2,"campus_acres":0,"utility_provider":"CPS Energy","tax_incentives":"Texas offers a state sales/use tax exemption for Qualified Data Centers (≥100,000 sq ft, ≥$200M investment, ≥20 jobs). No facility-specific incentive or qualification identified.","natural_hazard_zone":""},"138":{"description":"A downtown San Antonio colocation/carrier-hotel facility at 323 Broadway operated by H5 Data Centers, forming part of a two-building campus with 100 Taylor Street that totals about 85,000 sq ft and offers broad network access.","verified_status":"operational","power_capacity_mw":12.5,"total_sqft":85000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"H5 Data Centers San Antonio (100 Taylor & 323 Broadway)","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers","cooling_type":"unknown","tier_level":"Tier III design (not an asserted Uptime certification)","fiber_providers":"carrier-neutral; 25–35+ on-net providers, incl. CenturyLink/Lumen, LOGIX, Telia, Windstream, Cogent, and others","num_buildings":2,"campus_acres":0,"utility_provider":"CPS Energy","tax_incentives":"Qualified Opportunity Zone location (potential federal OZ benefits)","natural_hazard_zone":"low risk"},"139":{"description":"Lumen San Antonio 1 is a Lumen-operated telecom/colocation data center at 5130 Service Center Drive, Suite 104, San Antonio, Texas, identified as a Premier Select site and listed with 6,200 sq ft of data center space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":6200,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen San Antonio 1","verified_operator":"Lumen","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen; AT&T; Verizon; carrier-neutral/alternate carriers available","num_buildings":1,"campus_acres":0,"utility_provider":"CPS Energy","tax_incentives":"","natural_hazard_zone":"Outside 100-year floodplain; UBC seismic Zone 1"},"140":{"description":"Lumen San Antonio 2 is a telecom colocation data center operated by Lumen at 1203 N. Frio Street in San Antonio, Texas. Public listings show it as an active facility with approximately 12,000 sq ft of total space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen San Antonio 2","verified_operator":"Lumen Technologies","verified_owner":"Williams Communications Inc.","cooling_type":"unknown","tier_level":"Tier III-equivalent (no Uptime certification cited)","fiber_providers":"","num_buildings":0,"campus_acres":1.0978,"utility_provider":"CPS Energy","tax_incentives":"","natural_hazard_zone":"FEMA NFHL Zone X (Area of Minimal Flood Hazard); SFHA_TF = F at parcel centroid"},"141":{"description":"Lumen San Antonio 3 is a telecom/colocation data center operated by Lumen at 214 E Ramsey Rd in San Antonio, Texas. The site traces back to an earlier tw telecom facility at the same address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":43475,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen San Antonio 3","verified_operator":"Lumen","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Redundant fiber optic rings; specific carriers not publicly enumerated","num_buildings":1,"campus_acres":3.18,"utility_provider":"CPS Energy","tax_incentives":"","natural_hazard_zone":"Flood Zone B/X (moderate flood hazard; area between 100-year and 500-year flood limits)"},"142":{"description":"Vantage TX11 is a two‑story hyperscale data center at 14720 Omicron Dr in San Antonio operated by Vantage Data Centers, designed for 32MW across four 8MW halls and about 242,667 sq ft.","verified_status":"under-construction","power_capacity_mw":32,"total_sqft":242667,"year_online":"2026","construction_update":"TDLR TABS2024007561 shows start 12/15/2023, status 'Inspection Complete,' and estimated completion 9/1/2026 for the TX11 data center at 14720 Omicron Dr.","recent_news":"2026: TCEQ initiated air‑permit public notice for the 14720 Omicron Dr facility, identifying the application location at that address; local media covered a late‑May 2026 public hearing on a Vantage data center air permit, and a June 2026 environmental report described ongoing construction and planned generation infrastructure on San Antonio’s West Side.","notable_tenants":"","verified_name":"Vantage Data Centers TX11 - San Antonio Data Center","verified_operator":"Vantage Data Centers","verified_owner":"VANTAGE DATA CENTERS TX1 LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":57.8,"utility_provider":"CPS Energy","tax_incentives":"Texas state data center sales/use tax exemptions (QDC/QLDCP).","natural_hazard_zone":"Edwards Aquifer recharge zone (environmental sensitivity)"},"143":{"description":"Stream San Antonio II (SATA/SATA1) is a private wholesale data center operated by Stream Data Centers at 9550 Westover Hills Blvd in San Antonio, Texas; it is listed as Available/operational and totals 75,840 sq ft.","verified_status":"operational","power_capacity_mw":10.8,"total_sqft":75840,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Stream Data Centers San Antonio II – Westover Hills","verified_operator":"Stream Data Centers","verified_owner":"","cooling_type":"chilled water","tier_level":"Tier III (Uptime Institute Design Certified)","fiber_providers":"Megaport, Grande, Zayo","num_buildings":1,"campus_acres":0,"utility_provider":"CPS Energy","tax_incentives":"Texas state data center sales and use tax exemptions for qualifying facilities; no facility-specific local abatement identified.","natural_hazard_zone":"Outside FEMA 500-year floodplain; 185-mph wind-rated structure/equipment yard (low wind/flood risk design)."},"144":{"description":"CloudHQ SAT Campus (Building 1/SAT1) is a hyperscale data center under development in San Antonio that forms part of CloudHQ’s five-building SAT campus totaling up to 600 MW of critical IT load. Public listings reference SAT1 at 15255/15355 Lambda Dr and indicate the site is still in development.","verified_status":"under-construction","power_capacity_mw":96,"total_sqft":432800,"year_online":"2027","construction_update":"Construction on SAT1 began in October 2025 at 15355 Lambda Drive; the two-story, 432,800-sq-ft building is designed to deliver up to 96 MW of critical IT capacity, targeting 2027 completion.","recent_news":"","notable_tenants":"","verified_name":"CloudHQ SAT-1 (SAT Campus Building 1)","verified_operator":"CloudHQ","verified_owner":"CloudHQ (via affiliate)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":5,"campus_acres":123,"utility_provider":"CPS Energy","tax_incentives":"","natural_hazard_zone":""},"145":{"description":"Microsoft’s Azure South Central US-Texas data center at 5150 Rogers Rd in San Antonio is a Microsoft-owned and Azure-operated hyperscale facility that forms part of the Azure South Central US region and is commonly listed at about 470,000 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":470000,"year_online":"2008","construction_update":"Mar 17, 2026: TDLR filing indicates renovation/alteration works valued at $5 million at 5150 Rogers Rd.","recent_news":"Mar 17, 2026: A TDLR filing indicates 5150 Rogers Rd will undergo a $5 million renovation/alteration project.","notable_tenants":"","verified_name":"Microsoft Azure South Central US-Texas","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":44,"utility_provider":"CPS Energy","tax_incentives":"10-year property tax abatement; $5.2M in energy incentives; Texas state sales tax exemption for qualified data centers (6.25%).","natural_hazard_zone":"Extremely high baseline water stress region."},"146":{"description":"Microsoft-owned hyperscale data center at 3823 Wiseman Blvd in San Antonio, operated by Microsoft and serving as part of its Westover Hills/San Antonio cloud infrastructure hub.","verified_status":"operational","power_capacity_mw":0,"total_sqft":440000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Microsoft: 3823 Wiseman Data Center (SN4)","verified_operator":"Microsoft (Microsoft Azure)","verified_owner":"Microsoft Corporation","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"CPS Energy","tax_incentives":"City of San Antonio Chapter 380 Economic Development Program Grant (SN4): 15-year property-tax reimbursement on new real and personal property improvements—minimum 40% of City ad valorem taxes, with potential increases based on performance/milestones; associated with roughly $250M of improvements.","natural_hazard_zone":"unknown FEMA flood designation; notable regional water-resource sensitivity in San Antonio (Edwards Aquifer/SAWS context)."},"147":{"description":"Microsoft SAT14 (Wiseman Boulevard) is a Microsoft‑owned, Microsoft Azure hyperscale data center campus at 3545 Wiseman Blvd in San Antonio, identified in Texas project filings as the “SAT14 Data Center,” with construction targeted for March 2026.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":259000,"year_online":"2026","construction_update":"Mar 31, 2026 — SAT14 Phase 4 (finish‑out of one colo) reached completion/inspection; Microsoft had targeted March 2026 for construction completion.","recent_news":"Mar 31, 2026: TDLR shows SAT14 Phase 4 (fit‑out of one colo) reaching completion/inspection; no notable tenant or regulatory announcements in the last six months.","notable_tenants":"","verified_name":"Microsoft Wiseman Boulevard (SAT14)","verified_operator":"Microsoft Azure / Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":33.55,"utility_provider":"CPS Energy","tax_incentives":"Registered Qualifying Data Center (Texas) — Microsoft San Antonio (SAT14) is listed by the Texas Comptroller for the state sales/use tax exemption.","natural_hazard_zone":"Low risk (Flood Factor: Minimal; Wildfire: Minimal) for 3545 Wiseman Blvd; FEMA flood zone not confirmed."},"148":{"description":"Microsoft SAT82 is a planned Microsoft-owned, hyperscale data center near Castroville (Medina County), operated by Microsoft for its cloud. Per the official TDLR filing (Project TABS2026008231), it is a new one‑story, 195,670‑sq‑ft “5 Colo” data center at 3580 FM 471 N with an estimated cost of $400,000,000.","verified_status":"planned","power_capacity_mw":0,"total_sqft":195670,"year_online":"2028","construction_update":"TDLR filing indicates new one‑story build; construction scheduled to start August 13, 2026, with target completion July 24, 2028.","recent_news":"January 2026: Reports confirmed Microsoft’s $400 million SAT82 project in Castroville, identifying the planned facility and its scale.","notable_tenants":"","verified_name":"Microsoft SAT82 Data Center","verified_operator":"Microsoft","verified_owner":"Microsoft","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Medina County offers property-tax abatements for new commercial/industrial facilities (program available; SAT82-specific terms not publicly confirmed).","natural_hazard_zone":""},"149":{"description":"Microsoft SAT90 is one of two single‑story buildings in the Microsoft SAT89/SAT90 core campus at 2995 US Hwy 90 W in Castroville, Texas, owned and operated by Microsoft (Azure). The campus is a $765M new‑construction project totaling about 489,400 sq ft with an expected completion in July 2027.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":489400,"year_online":"2027","construction_update":"Mar 21, 2025: Filing for two single‑story buildings (SAT89 and SAT90) at 2995 US Hwy 90 W; project described as under construction with completion targeted for July 2027.","recent_news":"","notable_tenants":"","verified_name":"Microsoft Data Centers SAT89/90 (Castroville Hwy 90 Campus)","verified_operator":"Microsoft (Microsoft Azure)","verified_owner":"Microsoft Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0,"utility_provider":"","tax_incentives":"Potential eligibility for Texas Qualified Data Center state sales/use tax exemption; no site-specific local abatement confirmed for the Hwy 90 campus.","natural_hazard_zone":"FEMA flood zone undetermined; consult FEMA and regional flood tools for site-specific designation."},"150":{"description":"Amazon Web Services’ Rockfish facility (ALE060) at 7400 Potranco Road in San Antonio is a hyperscale data center developed and operated by Amazon Data Services/AWS. State filings and industry reports show a 109,600‑sq‑ft core‑and‑shell completed in 2021, and the site is commonly referenced as “AWS Rockfish/ALE060.”","verified_status":"operational","power_capacity_mw":0,"total_sqft":109600,"year_online":"2021","construction_update":"7400 Potranco (Rockfish) interior fit‑out (COPT Potranco Romp03/04) completed Nov 10, 2025; adjacent Building B at 1535 NW Crossroads is planned Oct 1, 2026–Nov 30, 2027.","recent_news":"March 2026 reporting and state filings show an adjacent campus expansion at 1535 NW Crossroads (COPT Potranco), a $25M, two‑story project planned to run from Oct 2026 to Nov 2027, connected to/near the existing 7400 Potranco site.","notable_tenants":"","verified_name":"Amazon AWS SAT - 7400 Potranco (ALE060) – Rockfish","verified_operator":"Amazon Web Services (Amazon Data Services, Inc.)","verified_owner":"COPT SAN ANTONIO LP","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":30.63,"utility_provider":"CPS Energy","tax_incentives":"Texas Qualifying Data Center (QDC) sales/use tax exemption (facility identifier: ALE060).","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard) for the associated campus parcel."},"151":{"description":"Amazon AWS ALE061 (also referenced as AWS Rockfish) is an AWS-operated hyperscale data center at 11625 Old Corpus Christi Highway in San Antonio, Texas, built at approximately 109,600 sq ft. Public listings and project records indicate AWS ownership/operation at this address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":109600,"year_online":"2021","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Amazon AWS ALE061 (AWS Rockfish)","verified_operator":"Amazon Web Services / Amazon Data Services, Inc.","verified_owner":"Amazon Data Services, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":50,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Nearby parcels list FEMA Zones B/X (moderate flood hazard); exact designation for 11625 Old Corpus Christi Hwy not publicly verified."},"152":{"description":"Rowan Project Cinco is a 300 MW hyperscale data center campus under construction by Rowan Digital Infrastructure near Lytle in Medina County, Texas. The campus spans hundreds of acres, with an initial building of about 250,000 sq ft and full operations targeted for 2027.","verified_status":"under-construction","power_capacity_mw":300,"total_sqft":250000,"year_online":"2027 (full campus expected); initial 60 MW targeted early 2026.","construction_update":"Under construction. Groundbreaking announced Aug 7, 2025, with a local ceremony Sept 16, 2025; construction financing closed in Feb 2026 for the 300 MW project.","recent_news":"Feb 2026: Rowan secured approximately $550M in construction financing for the 300 MW Cinco project in Medina County and announced a conservation investment designed to deliver a 250% water offset for Cinco.","notable_tenants":"","verified_name":"Cinco Data Center (Project Cinco)","verified_operator":"Rowan Digital Infrastructure","verified_owner":"Rowan Cinco LLC (Rowan Digital Infrastructure SPV; Rowan is a Quinbrook portfolio company with a significant minority investment by Blackstone)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":440,"utility_provider":"AEP Texas","tax_incentives":"80% property tax abatement (real and personal) approved; Project Cinco designated as a reinvestment zone by Lytle; related county actions noted.","natural_hazard_zone":"Moderate flood risk (area-wide); exact parcel FEMA zone not confirmed"},"153":{"description":"Bexar Datacenter San Antonio SAT1 is an operational, boutique colocation facility operated by Bexar Datacenter at 3463 Magic Drive (Suite 100) inside the San Antonio Technology Center, offering 1U-to-full-cabinet colocation with 24/7 access and generator-backed power.","verified_status":"operational","power_capacity_mw":1,"total_sqft":81009,"year_online":"2005","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Bexar Datacenter: San Antonio SAT1","verified_operator":"Bexar Datacenter","verified_owner":"San Antonio Technology Center","cooling_type":"unknown","tier_level":"Tier 3 (reported; not Uptime-certified)","fiber_providers":"carrier-neutral / multi-carrier: AT&T, Spectrum Business, Level 3 (Lumen)","num_buildings":1,"campus_acres":2.9,"utility_provider":"CPS Energy","tax_incentives":"","natural_hazard_zone":""},"154":{"description":"Carrier-neutral colocation data center and carrier hotel operated by H5 Data Centers at 100 Taylor Street in downtown San Antonio, totaling about 85,000 sq ft. Marketed as the region’s most connected facility and a key interconnection point, including the SAT-IX Internet Exchange.","verified_status":"operational","power_capacity_mw":4.5,"total_sqft":85000,"year_online":"unknown","construction_update":"Nov 20, 2023: H5 announced a Phase 3 expansion at 100 Taylor St, enabling up to an additional 340 cabinets and up to 1.5 MW of additional UPS capacity.","recent_news":"","notable_tenants":"No anchor enterprise tenant publicly disclosed. Named on-net/connectivity ecosystem participants include CenturyLink (Lumen), LOGIX, Telia (Arelion), Windstream, Zayo, FiberLight, SAT-IX, and DE-CIX connectivity via SAT-IX.","verified_name":"H5 Data Centers San Antonio – 100 Taylor Street (Carrier Hotel)","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers","cooling_type":"unknown","tier_level":"Tier III design","fiber_providers":"carrier-neutral; 30–35+ on-net providers","num_buildings":1,"campus_acres":0,"utility_provider":"CPS Energy","tax_incentives":"","natural_hazard_zone":""},"155":{"description":"Lumen San Antonio 2 is an operational telecom/colocation data center operated by Lumen Technologies at 1203 North Frio Street in San Antonio, TX, with a listed total footprint of 12,000 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen San Antonio 2 Data Center","verified_operator":"Lumen Technologies","verified_owner":"Williams Communications Inc (Lumen Technologies affiliate)","cooling_type":"unknown","tier_level":"Tier III (design standard)","fiber_providers":"Carrier-neutral; Lumen (Level 3) backbone present","num_buildings":1,"campus_acres":1.1,"utility_provider":"CPS Energy","tax_incentives":"Local: City of San Antonio Chapter 312 property tax abatements (up to 100% for up to 10 years). State: Texas data center sales/use tax exemption (up to 15–20 years, subject to qualifications). No site-specific incentive agreement found.","natural_hazard_zone":"Flood exposure near San Pedro Creek; exact FEMA flood zone not specified"},"156":{"description":"Bexar Datacenter (formerly SATC Colo) operates a boutique colocation/data center at 3463 Magic Drive, Suite 100 in San Antonio, offering secure, carrier‑neutral colocation services.","verified_status":"operational","power_capacity_mw":1,"total_sqft":81009,"year_online":"2005","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Bexar Datacenter — San Antonio SAT1","verified_operator":"Bexar Datacenter","verified_owner":"San Antonio Technology Center","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"No facility-specific incentives identified. Texas offers a state sales/use tax exemption for qualified data centers, and San Antonio offers property tax abatement/rebate programs; no evidence this site qualified.","natural_hazard_zone":"unknown"},"157":{"description":"Digital Realty PDX10 is an operational colocation data center operated by Digital Realty at 3825 NW Aloclek Street in Hillsboro, Oregon, offering approximately 49,000 square feet with 2N+1 infrastructure.","verified_status":"operational","power_capacity_mw":10,"total_sqft":49000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty PDX10","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"air-cooled","tier_level":"Tier III equivalent","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":47,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Hillsboro Enterprise Zone offers 100% property-tax abatement for 3–5 years on eligible new qualified capital assets; in May 2026, the city paused new enterprise-zone tax break agreements for data centers.","natural_hazard_zone":"Outside 500-year flood plain; Seismic Zone 3"},"158":{"description":"EdgeConneX POR01 is an operational Edge Data Center/colocation facility in Hillsboro, Oregon operated by EdgeConneX, located at 6327 NW Evergreen Pkwy, Building C, Suite C-300. The facility provides about 39,400 sq ft of space and 3 MW of power capacity.","verified_status":"operational","power_capacity_mw":3,"total_sqft":39400,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"No single private anchor tenant is publicly disclosed. Publicly listed ecosystem includes AWS Direct Connect, Microsoft Azure, Google Cloud, Oracle, the NWAX internet exchange, and network providers such as Comcast, Zayo, and Integra/XO.","verified_name":"EdgeConneX POR01 Portland Data Center","verified_operator":"EdgeConneX","verified_owner":"EdgeConneX","cooling_type":"unknown","tier_level":"Tier III designed","fiber_providers":"carrier-neutral; Bandwidth IG present to 6327 NE Evergreen Pkwy","num_buildings":2,"campus_acres":0,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Hillsboro Enterprise Zone program provides local property tax exemptions for eligible new investments; the City has executed enterprise-zone agreements with data centers.","natural_hazard_zone":"Cascadia Subduction Zone seismic risk; FEMA flood-zone status for the parcel not determined."},"159":{"description":"STACK Infrastructure POR01A is an operational colocation data center at 3145 NE Brookwood Pkwy in Hillsboro, Oregon, within STACK’s POR01 campus. It serves enterprise and cloud workloads as part of the broader Hillsboro ecosystem.","verified_status":"operational","power_capacity_mw":5,"total_sqft":65000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"STACK Infrastructure POR01A","verified_operator":"STACK Infrastructure","verified_owner":"IPI Partners","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":6,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Hillsboro Enterprise Zone: 100% property tax abatement on new qualified capital assets (typically 3–5 years).","natural_hazard_zone":"Minor flood risk (not within FEMA Special Flood Hazard Area per local mapping guidance; neighborhood-level risk rated as minor)."},"160":{"description":"STACK Infrastructure POR01B is a planned colocation expansion on STACK’s POR01 campus at 3155 NE Brookwood Pkwy in Hillsboro, Oregon, described as a future 36MW build (approx. 215,000 sq ft) operated by STACK Infrastructure.","verified_status":"planned","power_capacity_mw":36,"total_sqft":215000,"year_online":"unknown","construction_update":"As of June 2026, POR01B remains listed as a future 36MW expansion on the POR01 campus; no publicly dated construction milestones have been disclosed.","recent_news":"","notable_tenants":"","verified_name":"STACK Infrastructure POR01B","verified_operator":"STACK Infrastructure","verified_owner":"STACK Infrastructure (platform owned by Blue Owl Capital via IPI Partners)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":18,"utility_provider":"","tax_incentives":"Hillsboro Enterprise Zone local property-tax abatements (programmatic), among other Oregon incentives.","natural_hazard_zone":"Seismic risk (Cascadia Subduction Zone); property-specific FEMA flood zone not determined from provided sources."},"161":{"description":"Flexential Portland - Hillsboro 1 is an operational Flexential colocation data center at 3935 NE Aloclek Place, Hillsboro, Oregon, with 85,388 square feet of space and 5.3 MW of critical power.","verified_status":"operational","power_capacity_mw":5.3,"total_sqft":85388,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Portland - Hillsboro 1 Data Center","verified_operator":"Flexential","verified_owner":"Flexential","cooling_type":"unknown","tier_level":"Tier III (equivalent)","fiber_providers":"","num_buildings":1,"campus_acres":14.29,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Hillsboro/Washington County Enterprise Zone: property tax exemption on new investment for up to 5 years (new structures, machinery & equipment, some personal property); subject to program requirements and 2026 legislative modifications/moratorium timing.","natural_hazard_zone":""},"162":{"description":"Flexential Portland - Hillsboro 3 is a Flexential colocation/high-density data center at 5419 NE Starr Boulevard in Hillsboro, Oregon, and part of the company’s Hillsboro campus. It features high‑density cooling, including liquid-cooling capability.","verified_status":"operational","power_capacity_mw":36,"total_sqft":358000,"year_online":"2022","construction_update":"","recent_news":"May 28, 2026: Flexential acquired the adjacent Hillsboro 4 and Hillsboro 5 properties; the release identifies Hillsboro 3 as a 36 MW facility at 5419 NE Starr Boulevard, just north of Hillsboro 5.","notable_tenants":"","verified_name":"Portland - Hillsboro 3 High-Density Data Center","verified_operator":"Flexential","verified_owner":"Legacy Investing LLC and Invesco Real Estate (sale-leaseback owners; third-party listing shows Legacy Investing LLC as building owner)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Hillsboro Enterprise Zone property-tax exemptions/abatements for data centers; reporting noted the value depends on clients’ equipment spending.","natural_hazard_zone":"Cascadia Subduction Zone seismic risk; FEMA flood zone not determined from reviewed sources."},"163":{"description":"QTS Hillsboro 1 DC1 is an operational colocation/wholesale data center operated by QTS Data Centers in Hillsboro, Oregon, offering a ~158,000 sq ft facility with ~24 MW available power and powered by renewables.","verified_status":"operational","power_capacity_mw":24,"total_sqft":158000,"year_online":"2020","construction_update":"","recent_news":"May–June 2026: Hillsboro residents and city leaders publicly debated data center growth and potential pauses/moratoriums; coverage referenced QTS among operators active in the city, with no DC1-specific expansion or tenant announcements.","notable_tenants":"","verified_name":"QTS Hillsboro 1 DC1","verified_operator":"QTS Data Centers","verified_owner":"QTS Investment Properties Hillsboro, LLC (QTS Data Centers; portfolio of Blackstone funds)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; NWAX; Hillsboro Data Center Ring with access to trans‑Pacific cables; direct fiber route to Seattle; MOX Networks on‑net","num_buildings":5,"campus_acres":88,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Hillsboro Enterprise Zone: 100% property‑tax abatement on eligible new qualified capital assets; program currently subject to litigation/scrutiny in 2026.","natural_hazard_zone":"seismic hazard region with enforced seismic design standards; site‑specific FEMA flood designation not confirmed; city floodplain maps revised in 2019"},"164":{"description":"QTS Hillsboro 2 DC1 is a wholesale data center operated by QTS Data Centers at 4755 NE Huffman St in Hillsboro, Oregon, and is one of multiple buildings within the four‑building Hillsboro 2 campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Hillsboro 2 DC1","verified_operator":"QTS Data Centers","verified_owner":"Quality Technology Services LLC (legal property owner); QTS is ultimately owned by Blackstone Infrastructure Partners and Blackstone Real Estate Income Trust (BREIT) affiliates.","cooling_type":"air-cooled","tier_level":"Tier III equivalent (third‑party reported)","fiber_providers":"carrier-neutral; multiple fiber routes; diverse IP providers; dark and lit fiber","num_buildings":4,"campus_acres":51,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Hillsboro Enterprise Zone (ORS 285C.175) – 100% property tax abatement for eligible new capital assets; exemptions typically up to five years.","natural_hazard_zone":"Seismic risk context (Cascadia Subduction Zone) per Washington County NHMP; site‑specific FEMA flood zone not verified."},"165":{"description":"Aligned Hillsboro PDX-01 is a hyperscale data center operated by Aligned Data Centers at NE 30th Ave & NE Evergreen Rd in Hillsboro, Oregon; it is the first building on a 27‑acre, 108 MW Hillsboro campus.","verified_status":"operational","power_capacity_mw":72,"total_sqft":480000,"year_online":"unknown","construction_update":"Jul 23, 2024: PDX-01 topped out; Oct 22, 2025: 31 MW / 62 MWh BESS announced for the Hillsboro campus to accelerate grid power access.","recent_news":"June 22, 2026: Calibrant published a case study describing its battery energy storage solution for Aligned’s Hillsboro campus to address grid-power timelines and support timely, reliable power.","notable_tenants":"","verified_name":"Aligned Hillsboro PDX-01","verified_operator":"Aligned Data Centers","verified_owner":"ALIGNED DATA CENTERS (PDX) PROPCO LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; near-net dark fiber available","num_buildings":2,"campus_acres":27,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Hillsboro Enterprise Zone: 100% property tax abatement on eligible new qualified capital assets for 3–5 years.","natural_hazard_zone":"Seismic risk: Cascadia Subduction Zone; site-specific FEMA flood zone not determined."},"166":{"description":"Retail colocation/IaaS facility operated by Opus Interactive at 8135 NE Evergreen Parkway in Hillsboro, Oregon, delivered within the STACK Infrastructure POR02 campus. The site is marketed around robust carrier connectivity and a 24 MW, large‑scale footprint.","verified_status":"operational","power_capacity_mw":24,"total_sqft":345000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Opus Interactive Hillsboro – HIO01 (within STACK Infrastructure POR02 – Hillsboro)","verified_operator":"Opus Interactive","verified_owner":"STACK Infrastructure","cooling_type":"chilled water","tier_level":"Tier III+ (availability equivalent; no formal Uptime certification cited)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Oregon/Hillsboro Enterprise Zone incentives with 100% property-tax abatement for 3–5 years for eligible investments; no state sales tax.","natural_hazard_zone":""},"167":{"description":"H5 Data Centers operates the H5 Portland Data Center, a colocation facility at 1233 NW 12th Avenue, Suite 201 in downtown Portland, Oregon, totaling about 42,000 sq ft and offering access to the NWAX internet exchange.","verified_status":"operational","power_capacity_mw":2,"total_sqft":42000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"H5 Data Centers Portland","verified_operator":"H5 Data Centers","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"On-net providers reported include Verizon, AT&T, CenturyLink/Level 3 (Lumen), Cogent, and Comcast.","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Operator marketing references 'tax incentives'; the Portland Enterprise Zone program offers property tax exemptions generally, but no site-specific incentive is confirmed.","natural_hazard_zone":"Seismic risk (Cascadia earthquake and liquefaction risk in Portland). FEMA flood zone for the specific address not confirmed."},"168":{"description":"Digital Fortress Portland 1 (PTL) is an operational colocation data center at 511 SW 10th Ave, Suite 300, Portland, operated by Digital Fortress (a Chirisa-owned platform) and noted for connectivity to the Pittock Block carrier hotel and NWAX.","verified_status":"operational","power_capacity_mw":2.1,"total_sqft":10700,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Fortress Downtown Portland 1 (PTL)","verified_operator":"Digital Fortress","verified_owner":"Menashe Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; carriers include Verizon Telecom and Frontier Communications.","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Portland Enterprise Zone program may provide up to a five-year local property tax exemption for qualifying new capital investment; no facility-specific abatement identified.","natural_hazard_zone":"Cascadia Subduction Zone seismic hazard; FEMA flood zone status not determined for this address."},"169":{"description":"Digital Fortress Portland 2 (PTL2) is an operational colocation data center at 9705 SW Sunshine Ct, Beaverton, Oregon, operated by Digital Fortress. The operator lists it as a 3,500‑sq‑ft, SOC 1/SOC 2 facility; Digital Fortress announced in January 2021 that it acquired three Portland/Beaverton facilities.","verified_status":"operational","power_capacity_mw":1.2,"total_sqft":3500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Fortress Portland Data Center 2 (PTL2)","verified_operator":"Digital Fortress","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier II design","fiber_providers":"Carrier-neutral; member of NWAX (Northwest Access Exchange)","num_buildings":1,"campus_acres":8.77,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Borders a low to low-mid seismic risk area"},"170":{"description":"Digital Fortress Portland 3 (PTL3) is a carrier-neutral colocation data center at 9610 SW Sunshine Ct, Beaverton, Oregon, operated by Digital Fortress, offering roughly 6,700 sq ft of space and about 1.5 MW of power. Digital Fortress expanded into Portland via an acquisition of three facilities in 2021 and is associated with Chirisa Investments [1][2][3][4].","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":6700,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Fortress Portland Data Center #3 (PTL3)","verified_operator":"Digital Fortress","verified_owner":"DREHER INVESTMENTS LLC","cooling_type":"hybrid","tier_level":"Tier II (design standard; not an Uptime certification)","fiber_providers":"carrier-neutral; CenturyLink, Level 3/Lumen, Comcast, Frontier, Integra, LS Networks, Freewire Broadband, Zayo; NWAX access","num_buildings":1,"campus_acres":8.77,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Property is within/marketed alongside the Beaverton Enterprise Zone; potential 3–5 year personal property tax abatement may apply to eligible new investments; no facility-specific awarded abatement located.","natural_hazard_zone":"FEMA Zone X; regional low to low‑mid seismic risk"},"171":{"description":"Lumen Portland 1 is a Lumen Technologies telecom/colocation data center at 1335 NW Northrup Street in Portland, Oregon, included on Lumen’s RapidRoutes/20‑day SLA site list. It provides carrier connectivity at this long‑standing Level 3/Lumen address in Portland’s Pearl District.","verified_status":"operational","power_capacity_mw":1.2,"total_sqft":27000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Portland 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"seismic risk"},"172":{"description":"Lumen Portland 2 is a small operational Lumen Technologies telecom/colocation facility at 707 SW Washington Street in downtown Portland’s Union Bank Tower, offering 4,663 sq ft total space with 1,321 sq ft of colocation space and standard N+1 HVAC/backup infrastructure.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4663,"year_online":"unknown","construction_update":"","recent_news":"June 12, 2026: Menlo Digital announced it acquired Union Bank Tower (707 SW Washington St) and designated it MD-PDX2, describing the building as a mixed-use data center/telecommunications/retail/office property; this was building-level and did not name Lumen specifically.","notable_tenants":"","verified_name":"Lumen Portland 2","verified_operator":"Lumen Technologies","verified_owner":"Menlo Equities (Menlo Digital)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; on-net Lumen/Level 3; Windstream present","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Seismic (Cascadia earthquake exposure); nearby FEMA SFHA: No"},"173":{"description":"Lumen Portland 3 (also listed as Lumen Cedar Hills) is a Lumen Technologies telecom/colocation data center at 14197 SW Millikan Way in the Beaverton/Cedar Hills area of Oregon. Public directories list it as an active Lumen site and note it was formerly a tw telecom location.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Portland 3 (also listed as Lumen Cedar Hills)","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":4.02,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"","natural_hazard_zone":"Beaverton/Washington County exposure to earthquakes and flood hazards; address-specific FEMA flood zone not verified."},"174":{"description":"Pittock Block (PTOR1) is 1547 Critical Systems Realty’s operational carrier-hotel and internet-exchange colocation facility at 921 SW Washington St in downtown Portland, notable for subsea cable connectivity and a dense ecosystem of network and cloud providers, with an 8 MW power capacity and a 302,262‑SF building.","verified_status":"operational","power_capacity_mw":8,"total_sqft":302262,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"AWS Direct Connect (Amazon), NWAX, Cogent Communications, Cloudflare; building hosts 16+ fiber carriers and ~179 service providers.","verified_name":"Pittock Block (PTOR1), also known as Pittock Internet Exchange","verified_operator":"1547 Critical Systems Realty","verified_owner":"Harrison Street and 1547 Data Center Real Estate Fund II, LP","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; 16 fiber-optic carriers; 179 other service providers; seven subsea cable systems","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Seismic risk; ASCE 41 Tier 3 evaluation and retrofit study conducted for the building"},"175":{"description":"Cogent Portland is an operational Cogent Communications colocation/telecom data center at 2953 Northwest St. Helens Rd, Portland, OR, offering 8,325 sq ft with UPS/backup generator power and HVAC/fire suppression. It provides Cogent connectivity and standard data center security and environmental features.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8325,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Portland","verified_operator":"Cogent Communications, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent","num_buildings":1,"campus_acres":0,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"","natural_hazard_zone":"Cascadia Subduction Zone seismic exposure (Portland region)"},"176":{"description":"Colocation data center at 625 SW Stark St., Suite 500, Portland, OR, historically operated as LightPoint/DTS‑NET USA; LightPoint was acquired by Meriplex in 2022.","verified_status":"operational","power_capacity_mw":1,"total_sqft":8000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"LightPoint Portland Data Center (aka LightPoint Corporation) — also listed as DTS-NET USA Data Center","verified_operator":"LightPoint Corporation (a Meriplex company)","verified_owner":"ScanlanKemperBard Cos. (SKB)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"177":{"description":"Opus Interactive Portland (PDX01) is an operational colocation and interconnection data center at 1225 W Burnside Street (Suite 310) in Portland, OR, operated by Opus Interactive.","verified_status":"operational","power_capacity_mw":1.2,"total_sqft":3500,"year_online":"unknown","construction_update":"Menlo Digital acquired the larger 1207–1235 W. Burnside property in August 2024 and is redeveloping it as MD‑PDX1; a marketplace entry notes it is under construction and not yet commissioned or leased (not an Opus expansion).","recent_news":"","notable_tenants":"","verified_name":"Opus Interactive Portland Datacenter","verified_operator":"Opus Interactive","verified_owner":"Menlo Equities / Menlo Digital","cooling_type":"chilled water","tier_level":"Tier III+ (design standard); TIA-942","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.92,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Portland Enterprise Zone (E-Zone) offers property tax exemptions for up to five years; Oregon programs (e.g., Oregon Investment Advantage) can provide additional income tax incentives for data centers.","natural_hazard_zone":"Earthquake risk (Cascadia Subduction Zone); Flood risk present but parcel’s precise FEMA zone not confirmed in sources provided"},"178":{"description":"Sterling Communications operates an active colocation data center at 14945 SW Sequoia Parkway, Suite 110, Portland, OR, offering 24x7 access and fully redundant connectivity with UPS-backed power options.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Sterling Communications Portland Data Center","verified_operator":"Sterling Communications, Inc. dba Sterling Internet Solutions","verified_owner":"Pacific Realty Associates, L.P. (PacTrust)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"","natural_hazard_zone":"Likely FEMA Zone X (outside 100-year floodplain); regional earthquake exposure (Cascadia Subduction Zone)"},"179":{"description":"Tata Communications Hillsboro is an operational data center/telecom facility at 21101 NW Evergreen Parkway in Hillsboro, Oregon, operated by Tata Communications; the address is confirmed by state permit records and company reporting, and industry listings refer to the site as “Hillsboro 2.”","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Tata Communications Hillsboro","verified_operator":"Tata Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; Bandwidth IG; Tata Communications","num_buildings":0,"campus_acres":0,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Within the Hillsboro Enterprise Zone: 100% property tax abatement on new qualified capital assets for 3–5 years; 2026 state actions affected new data center enterprise zone agreements while existing agreements remain in force.","natural_hazard_zone":"Seismic risk (Cascadia); site-specific FEMA flood zone undetermined"},"180":{"description":"Verizon Beaverton is a Verizon-operated telecom/colocation data center at 9000 SW Nimbus Avenue in Beaverton, Oregon. The site is the former XO Communications facility and remains listed as an operational Verizon data center.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Beaverton Data Center","verified_operator":"Verizon","verified_owner":"Vista Investment Group LLC / Acre Valley Real Estate Capital LLC (JV)","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon (former XO Communications fiber-optic backbone)","num_buildings":1,"campus_acres":0,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Beaverton Enterprise Zone: eligible businesses may receive a 3–5-year property tax exemption on qualified new building/equipment investments within the zone.","natural_hazard_zone":"FEMA Flood Zones B/X (moderate) and Cascadia Subduction Zone seismic risk"},"181":{"description":"OVHcloud HIL1 is OVHcloud’s data center in Hillsboro, Oregon (1300 NE 25th Ave) serving its US‑West/HIL region, listed by OVHcloud and third‑party directories as an OVHcloud‑operated, in‑service facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":112500,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"OVHcloud HIL1","verified_operator":"OVHcloud","verified_owner":"Data Center West Coast LLC","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"carrier-neutral; OVHcloud backbone","num_buildings":1,"campus_acres":0,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Hillsboro Enterprise Zone: 100% property tax abatement for 3–5 years for eligible new qualified capital assets; no HIL1-specific agreement publicly cited.","natural_hazard_zone":"FEMA flood zone: verify via City of Hillsboro floodplain maps; regional Cascadia seismic exposure; no hurricane exposure."},"182":{"description":"Digital Fortress Portland 2 (PTL2) is an operational colocation data center at 9705 SW Sunshine Ct in Beaverton, Oregon, operated by Digital Fortress. It offers about 1.2 MW of capacity across roughly 3,500 sq ft and is part of Digital Fortress’s Portland interconnected sites (member of NWAX).","verified_status":"operational","power_capacity_mw":1.2,"total_sqft":3500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Fortress Portland 2 (PTL2)","verified_operator":"Digital Fortress","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier II","fiber_providers":"carrier-neutral (member of NWAX)","num_buildings":1,"campus_acres":8.77,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Beaverton Enterprise Zone (Zone 2): 3–5 year property tax abatement on eligible new investment.","natural_hazard_zone":"FEMA Flood Zone X (minimal flood risk); low to low-mid seismic risk area"},"183":{"description":"Digital Fortress Portland Data Center #3 (PTL3) is an operational colocation facility at 9610 SW Sunshine Ct in Beaverton, Oregon, operated by Digital Fortress. It is notable for being a “100% sustainable” site and is approximately 6,700 square feet.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":6700,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Fortress Portland Data Center 3 (PTL3)","verified_operator":"Digital Fortress","verified_owner":"","cooling_type":"unknown","tier_level":"Tier II design (no Uptime certification cited)","fiber_providers":"carrier-neutral; Comcast","num_buildings":1,"campus_acres":0,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Spec sheet notes 'First data center project to qualify for funding' (program unspecified); no separate property-tax abatement identified.","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard, between 100-year and 500-year floodplain)"},"184":{"description":"Verizon Beaverton is a telecom/colocation data center operated by Verizon at 9000 SW Nimbus Avenue in Beaverton, Oregon. The site reflects Verizon’s footprint at the address formerly associated with XO Communications, which Verizon absorbed via its 2017 acquisition of XO’s fiber business.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon: Beaverton","verified_operator":"Verizon","verified_owner":"VAV NIMBUS HOLDINGS LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon (legacy XO Communications presence)","num_buildings":0,"campus_acres":5.94,"utility_provider":"Portland General Electric (PGE)","tax_incentives":"Beaverton Enterprise Zone program provides property-tax abatement for eligible new development; no property-specific exemption identified for 9000 SW Nimbus Ave.","natural_hazard_zone":"Regional seismic hazard; general NFIP floodplain management applies (parcel-specific FEMA zone not confirmed)."},"185":{"description":"Equinix SV1 is a carrier-neutral Equinix IBX colocation data center at 11 Great Oaks Boulevard in San Jose, within the company’s Silicon Valley/Great Oaks campus, offering direct connectivity to major networks and tier‑1 cloud providers.","verified_status":"operational","power_capacity_mw":4.5,"total_sqft":133500,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"No SV1-specific anchor tenant is publicly disclosed. Campus interconnection listings show participants such as Apple, Cisco, Cogent, F5, and Fastly at the SV1/SV5/SV10 campus.","verified_name":"Silicon Valley SV1 (SV1 Silicon Valley IBX Data Center)","verified_operator":"Equinix","verified_owner":"Equinix","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; 135+ providers","num_buildings":3,"campus_acres":6.44,"utility_provider":"Pacific Gas and Electric (PG&E)","tax_incentives":"","natural_hazard_zone":"Seismic Design Category 4; IBX elevation above 100-year base flood elevation"},"186":{"description":"Equinix SV2 is an operational Equinix IBX colocation data center at 1350 Duane Avenue in Santa Clara, serving Silicon Valley’s dense ecosystem of networks and high‑tech companies.","verified_status":"operational","power_capacity_mw":7.5,"total_sqft":160000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix SV2","verified_operator":"Equinix","verified_owner":"Digital Realty","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Equinix Fabric, Equinix Internet Exchange, Cross Connects, Metro Connect","num_buildings":1,"campus_acres":4,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Flood Plain Info: Not Applicable; Seismic Design Category/Zone: 4"},"187":{"description":"Equinix SV3 is an operational, carrier-neutral Equinix IBX colocation data center at 1735 Lundy Avenue in San Jose. It offers about 103,420 sq ft of gross space with roughly 54,488 sq ft of raised-floor colocation and approximately 4.6 MW of power capacity.","verified_status":"operational","power_capacity_mw":4.6,"total_sqft":103420,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix Silicon Valley SV3","verified_operator":"Equinix","verified_owner":"Invesco Real Estate / Invesco Advisers Inc.","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; examples include Tata Communications, Cogent Communications, and Telia/TeliaSonera","num_buildings":1,"campus_acres":6.75,"utility_provider":"Pacific Gas and Electric Company (PG&E); San José Clean Energy (CCA) is an optional generation supplier","tax_incentives":"","natural_hazard_zone":"Seismic zone (earthquake/liquefaction risk area); site‑specific FEMA flood designation not confirmed"},"188":{"description":"Equinix SV4 is an operational Equinix IBX colocation data center at 255 Caspian Drive, Sunnyvale, California. It offers roughly 67,600 sq ft of colocation space within a building of about 120,000 sq ft and serves as a Silicon Valley interconnection hub.","verified_status":"operational","power_capacity_mw":8,"total_sqft":120000,"year_online":"unknown","construction_update":"","recent_news":"May 2026: Brookfield acquired the Equinix-occupied data center property at 255 Caspian Drive from DivcoWest for about $90.3 million.","notable_tenants":"","verified_name":"SV4 Silicon Valley IBX Data Center","verified_operator":"Equinix","verified_owner":"Brookfield Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"PG&E (delivery) and Silicon Valley Clean Energy (generation)","tax_incentives":"","natural_hazard_zone":""},"189":{"description":"Equinix SV5 is an Equinix IBX carrier-neutral colocation data center at 9 Great Oaks Boulevard in San Jose, part of the Silicon Valley campus. It features approximately 25 MW total power infrastructure and a total building footprint of about 175,311 sq ft.","verified_status":"operational","power_capacity_mw":25,"total_sqft":175311,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix SV5","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":5.74,"utility_provider":"Pacific Gas and Electric Company (PG&E)","tax_incentives":"","natural_hazard_zone":""},"190":{"description":"Equinix SV8 is an Equinix-operated, carrier-neutral IBX colocation data center at 529 Bryant Street, Palo Alto, with roughly 26,298 sq ft of colocation space within a 45,319 sq ft facility; it is notable as the former Palo Alto Internet Exchange (PAIX), established in 1996.","verified_status":"operational","power_capacity_mw":2.6,"total_sqft":45319,"year_online":"1996","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix SV8 Silicon Valley IBX Data Center","verified_operator":"Equinix","verified_owner":"Menlo Equities (Menlo Digital)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"City of Palo Alto Utilities (CPAU)","tax_incentives":"","natural_hazard_zone":""},"191":{"description":"Equinix SV10 is an Equinix-operated, carrier-neutral IBX colocation data center at 7 Great Oaks Boulevard in San Jose, part of the company’s Silicon Valley/Great Oaks campus; Equinix lists 107,919 ft² of colocation space for SV10.","verified_status":"operational","power_capacity_mw":14.4,"total_sqft":175930,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Silicon Valley SV10 (SV10 Silicon Valley IBX Data Center)","verified_operator":"Equinix","verified_owner":"","cooling_type":"unknown","tier_level":"N+1 redundancy design; no Uptime Institute Tier certification found","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":11.14,"utility_provider":"Pacific Gas and Electric Company (PG&E)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone D; Seismic Design Category D"},"192":{"description":"Equinix SV12x is a hyperscale xScale data center operated by Equinix on the Great Oaks campus at 123 Great Oaks Blvd in San Jose. It is the company’s first U.S. xScale project (via a JV with PGIM Real Estate) and launched in January 2026.","verified_status":"operational","power_capacity_mw":28.8,"total_sqft":82000,"year_online":"2026","construction_update":"","recent_news":"Jan 22, 2026: DCD reported Equinix launched/energized the SV12x data center at the Great Oaks campus in San Jose.","notable_tenants":"","verified_name":"Equinix SV12x","verified_operator":"Equinix","verified_owner":"Equinix / PGIM Real Estate Joint Venture (PGIM 80%, Equinix 20%)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":18,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone D; IBX elevation above 500-year base flood elevation"},"193":{"description":"CoreSite SV1 is CoreSite’s carrier-hotel/interconnection data center at 55 South Market Street in downtown San Jose, serving as a hub for networks and cloud connectivity. The facility is part of CoreSite’s Silicon Valley campus and totals 320,000+ square feet of space for colocation deployments.","verified_status":"operational","power_capacity_mw":0,"total_sqft":320000,"year_online":"unknown","construction_update":"","recent_news":"Jan 19, 2026: BIG Fiber announced a 6,000-foot buildout into CoreSite’s facility at 55 S. Market Street in San Jose and implementation of a second entrance for path diversity.","notable_tenants":"","verified_name":"CoreSite SV1 - San Jose Data Center","verified_operator":"CoreSite","verified_owner":"American Tower (via CoreSite subsidiary)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.71,"utility_provider":"PG&E (delivery); San José Clean Energy (default generation)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone D; Bay Area seismic/liquefaction exposure"},"194":{"description":"CoreSite SV2 is an operational CoreSite-operated colocation data center at 1656 McCarthy Blvd., Milpitas, CA, totaling more than 76,000 square feet in the Silicon Valley market.","verified_status":"operational","power_capacity_mw":0,"total_sqft":76000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CoreSite SV2 - Milpitas Data Center","verified_operator":"CoreSite","verified_owner":"CoreSite Real Estate 1656 McCarthy, L.P. (ultimate parent: American Tower)","cooling_type":"chilled water","tier_level":"Tier 3 equivalent (no Uptime Institute certification found)","fiber_providers":"Carrier-neutral; examples include AT&T, Inforelay, Cogent; peering/exchanges available: Any2Exchange, AMS-IX Bay Area, SFMIX.","num_buildings":1,"campus_acres":5.19,"utility_provider":"Pacific Gas & Electric (PG&E)","tax_incentives":"","natural_hazard_zone":"Above 500-year floodplain; located within California seismic hazard region."},"195":{"description":"CoreSite SV3 is an operational CoreSite colocation data center at 2901 Coronado Drive in Santa Clara, part of CoreSite’s Silicon Valley campus. It was completed in 2010 and is listed around 51,150 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":51150,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CoreSite Santa Clara (SV3)","verified_operator":"CoreSite","verified_owner":"CoreSite Real Estate 2901 Coronado, L.P. (American Tower via CoreSite)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; CoreSite Any2Exchange; CoreSite Open Cloud Exchange; AWS Direct Connect; Microsoft Azure ExpressRoute; Google Cloud Interconnect; AMS-IX Bay Area; Lumen (CenturyLink/Level 3); PacketFabric; 100+ additional networks available campus-wide","num_buildings":1,"campus_acres":0,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"seismic liquefaction susceptibility; FEMA SFHA undetermined"},"196":{"description":"CoreSite SV4 is an operational CoreSite colocation data center at 2972 Stender Way in Santa Clara, part of the company’s Silicon Valley campus, offering interconnection and cloud connectivity options. Market profiles also note CoreSite operates the facility and provides multiple network connectivity choices.","verified_status":"operational","power_capacity_mw":0,"total_sqft":101000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CoreSite SV4 - Santa Clara Data Center","verified_operator":"CoreSite","verified_owner":"CoreSite Realty Corporation (a subsidiary of American Tower Corporation)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Seismic liquefaction hazard in Northern Santa Clara Valley; FEMA flood zone not determined"},"197":{"description":"CoreSite SV7 is an operational CoreSite colocation and interconnection data center at 3020 Coronado Drive, Santa Clara, CA. It offers cloud connectivity options through CoreSite’s interconnection ecosystem, including AWS on-ramps.","verified_status":"operational","power_capacity_mw":24,"total_sqft":246000,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CoreSite SV7 - Santa Clara Data Center","verified_operator":"CoreSite","verified_owner":"CoreSite Realty Corporation (wholly owned by American Tower Corporation)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Regional seismic and liquefaction hazard exposure (Northern Santa Clara Valley); site-specific FEMA flood zone not confirmed"},"198":{"description":"CoreSite SV8 is an operational CoreSite colocation data center at 3035 Stender Way in Santa Clara, part of the company’s Silicon Valley campus. CoreSite’s 2020 completion announcement describes SV8 as a purpose-built, 162,000 sq ft facility with 18 MW of capacity.","verified_status":"operational","power_capacity_mw":18,"total_sqft":162000,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CoreSite SV8 - Santa Clara Data Center","verified_operator":"CoreSite","verified_owner":"American Tower Corporation","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Seismic zone (proximity to San Andreas and Hayward faults; liquefaction potential in Santa Clara County)"},"199":{"description":"CoreSite SV9 is CoreSite’s Silicon Valley colocation data center at 2915 Stender Way in Santa Clara; the AI-ready, purpose-built facility was completed in 2025 and adds more than 228,000 sq ft to the campus with an IT capacity of 34 MW.","verified_status":"operational","power_capacity_mw":34,"total_sqft":228000,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CoreSite SV9 - Santa Clara Data Center","verified_operator":"CoreSite, an American Tower company","verified_owner":"CoreSite Real Estate; ultimate parent American Tower Corporation","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":3.8,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Regional liquefaction hazard (Northern Santa Clara Valley)"},"200":{"description":"Digital Realty SC1 is an operational colocation data center at 2220 De La Cruz Boulevard in Santa Clara, operated and owned by Digital Realty; the facility totals about 360,000 sq ft with up to 36.6 MW of critical power.","verified_status":"operational","power_capacity_mw":36.6,"total_sqft":360000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty Silicon Valley SC1","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; CenturyLink","num_buildings":1,"campus_acres":0,"utility_provider":"Silicon Valley Power","tax_incentives":"No dedicated California data center tax incentive identified.","natural_hazard_zone":"Seismic/liquefaction exposure (Northern Santa Clara Valley); address-specific FEMA flood-zone designation not confirmed."},"201":{"description":"Digital Realty SJC10 is a carrier- and cloud-connected colocation data center at 1100 Space Park Drive in Santa Clara, operated by Digital Realty (Digital Realty Trust). Third-party listings indicate approximately 165,297 sq ft of space with access to 18.0 MW of power.","verified_status":"operational","power_capacity_mw":18,"total_sqft":165297,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No publicly disclosed anchor tenant. Connectivity/presence includes IBM Cloud and Tata Communications at 1100 Space Park Drive.","verified_name":"Digital Realty SJC10 Data Center","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"Tier III equivalent","fiber_providers":"carrier-neutral; access to dozens of domestic and international carriers","num_buildings":1,"campus_acres":0,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (shaded), outside 100-year floodplain; Seismic Zone 4"},"202":{"description":"Digital Realty SJC11 is an operational Digital Realty colocation data center at 3011 Lafayette Street in Santa Clara, CA, described as a two‑story facility with roughly 90,800 sq ft and about 12 MW of total power.","verified_status":"operational","power_capacity_mw":12,"total_sqft":90800,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Silicon Valley SJC11","verified_operator":"Digital Realty","verified_owner":"Digital Core REIT (90% JV interest); remainder held by a Digital Realty subsidiary (10%)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; providers include AT&T, CenturyLink (Qwest), and Sprint","num_buildings":1,"campus_acres":2.28,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Seismic liquefaction susceptibility (northern Santa Clara Valley); FEMA flood zone not confirmed"},"203":{"description":"Digital Realty’s SJC13 at 1550 Space Park Drive in Santa Clara is a commissioned colocation facility owned and operated by Digital Realty, totaling about 78,567 sq ft with 6 MW of critical power.","verified_status":"operational","power_capacity_mw":6,"total_sqft":78567,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"Centersquare (Csquare; formerly Cyxtera) operates SFO4-B at 1550 Space Park Drive; no specific end-customer anchor tenants are publicly disclosed.","verified_name":"Csquare SFO4-B (1550 Space Park Drive)","verified_operator":"Centersquare (Csquare)","verified_owner":"Digital Realty Trust (via 1550 Space Park Partners, LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 10 service providers (e.g., AT&T)","num_buildings":1,"campus_acres":0,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X/0.2% annual chance; High earthquake hazard with potential liquefaction susceptibility"},"204":{"description":"Carrier-neutral colocation facility at 1500 Space Park Drive in Santa Clara, operated by Digital Realty as SJC14 and also listed by Centersquare as part of its SFO4 campus; the building totals about 52,000 sq ft.","verified_status":"operational","power_capacity_mw":9,"total_sqft":52000,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty SJC14 / Centersquare (Csquare) Santa Clara SF04 at 1500 Space Park Drive","verified_operator":"Digital Realty for SJC14; Centersquare/Csquare operates the SF04/SFO4 colocation presence within the facility","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Seismic/liquefaction risk area (Northern Santa Clara Valley); parcel-specific FEMA flood zone not verified"},"205":{"description":"Digital Realty SJC15 is Digital Realty Trust’s operational, carrier‑neutral colocation data center at 1201 Comstock Street, Santa Clara, CA, with approximately 24,000 sq ft of space.","verified_status":"operational","power_capacity_mw":2.3,"total_sqft":24000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty Silicon Valley SJC15","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.45,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Seismic hazard exposure (California State Seismic Hazard Zones); FEMA Flood Zone X (minimal flood hazard) indicated on commercial listings."},"206":{"description":"Digital Realty SJC16 is an operational colocation data center at 1525 Comstock Street in Santa Clara operated by Digital Realty, featuring a 42,400 ft² building and LEED Platinum certification on major fiber routes.","verified_status":"operational","power_capacity_mw":9,"total_sqft":42400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty SJC16","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"evaporative","tier_level":"Platinum LEED certified","fiber_providers":"carrier-neutral; NTT, Cogent, AT&T, Level 3, Bandwidth IG","num_buildings":1,"campus_acres":2.19,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone C/X (minimal flood hazard); seismic zone with moderate-to-high liquefaction susceptibility per USGS Northern Santa Clara Valley maps"},"207":{"description":"Digital Realty SJC34 is an operational Silicon Valley colocation and interconnection data center operated by Digital Realty at 2820 Northwestern Parkway, Santa Clara, offering about 38,000 sq ft of space.","verified_status":"operational","power_capacity_mw":7,"total_sqft":38000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty SJC34","verified_operator":"Digital Realty","verified_owner":"Vantage Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"Arelion (Telia Carrier)","num_buildings":0,"campus_acres":21,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":""},"208":{"description":"Digital Realty SJC35 is an operational, two‑story, LEED Gold‑certified colocation data center at 3205 Alfred Street in Santa Clara operated by Digital Realty, offering about 66,000 square feet and sitting on major fiber routes near Silicon Valley grid substations. Third‑party listings indicate roughly 13 MW total facility power with about 6 MW critical IT load.","verified_status":"operational","power_capacity_mw":13,"total_sqft":66000,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Silicon Valley SJC35","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"evaporative","tier_level":"","fiber_providers":"Carrier-neutral; 20+ network providers including Lumen (Level 3), Bandwidth IG, and AT&T","num_buildings":1,"campus_acres":1.92,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Outside 100-year flood plain; Seismic Zone D"},"209":{"description":"Digital Realty SJC37 is a 4‑story, carrier- and cloud‑neutral colocation data center operated by Digital Realty at 641 Walsh Avenue in Santa Clara, totaling about 430,000 square feet. It is designed for large-scale deployments, with reporting indicating a 48 MW critical IT capacity.","verified_status":"under-construction","power_capacity_mw":48,"total_sqft":430000,"year_online":"unknown","construction_update":"Nov 10, 2025: Reporting indicated SJC37 is designed for 48 MW critical IT load but may remain unused pending Silicon Valley Power upgrades expected in 2028.","recent_news":"","notable_tenants":"","verified_name":"Silicon Valley SJC37","verified_operator":"Digital Realty","verified_owner":"651 Walsh Partners, LLC (Digital Realty Trust subsidiary)","cooling_type":"hybrid","tier_level":"No Uptime Institute Tier certification published; design features include N+2 cooling redundancy.","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":7.8,"utility_provider":"Silicon Valley Power (SVP)","tax_incentives":"","natural_hazard_zone":"FEMA Special Flood Hazard Area (Zone AH) with shallow inundation depths; within mapped liquefaction hazard zone; outside Alquist‑Priolo Fault Zones."},"210":{"description":"Digital Realty’s SJC30 is an operational, LEED Gold colocation data center at 3105 Alfred Street in Santa Clara offering scalable deployments from cabinets to private suites. The facility totals about 50,000 sq ft and serves enterprise and cloud workloads.","verified_status":"operational","power_capacity_mw":4.5,"total_sqft":50000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"IBM Cloud (SJC01)","verified_name":"Digital Realty SJC30 (3105 Alfred Street)","verified_operator":"Digital Realty","verified_owner":"Digital Alfred, LLC","cooling_type":"air-cooled","tier_level":"Tier III-equivalent (concurrently maintainable)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":2.28,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X; Seismic Zone 4"},"211":{"description":"2401 Walsh Avenue (SFO1) is an operational, carrier‑neutral data center in Santa Clara that is marketed/operated by Centersquare (successor to Cyxtera). The two‑storey facility offers 34.5MW utility power and approximately 95,981 sq ft of space.","verified_status":"operational","power_capacity_mw":34.5,"total_sqft":95981,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"Centersquare (formerly Cyxtera) is the named tenant/operator under a long-term lease; no publicly disclosed end-user tenants.","verified_name":"Centersquare SFO1 Santa Clara Data Center Campus (2401 Walsh Avenue; formerly referenced as Digital Realty SJC18)","verified_operator":"Centersquare (Csquare)","verified_owner":"Brookfield Infrastructure Partners L.P. and institutional partners","cooling_type":"evaporative","tier_level":"N+1 design reported; no Tier I–IV certification found","fiber_providers":"carrier-neutral; AT&T, Comcast, Lumen (CenturyLink/Level 3), Cogent, Megaport, Verizon Business, Zayo, XO and others","num_buildings":1,"campus_acres":0,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Seismic Zone IV"},"212":{"description":"Vantage Santa Clara II (CA2) is Vantage Data Centers’ second Santa Clara hyperscale campus at 737 Mathew Street, comprising three four-story data centers on a 9-acre site with around 541,000 sq ft and 75 MW of critical IT capacity.","verified_status":"operational","power_capacity_mw":75,"total_sqft":541000,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Vantage Santa Clara II Data Center Campus (CA2)","verified_operator":"Vantage Data Centers","verified_owner":"Vantage SDC (Stabilized Data Centers)","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":9,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Seismic/liquefaction risk area (Northern Santa Clara Valley) and urban flood risk present; site-specific FEMA SFHA status not confirmed in excerpts."},"213":{"description":"Vantage CA21 is an operational hyperscale data center operated by Vantage Data Centers at 825 Mathew Street in Santa Clara, delivering 21 MW of critical power across 175,000 sq ft. It is part of Vantage’s Santa Clara II (CA2) campus, a 9-acre, three-building campus designed for 75 MW and over 541,000 sq ft.","verified_status":"operational","power_capacity_mw":21,"total_sqft":175000,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Vantage CA21","verified_operator":"Vantage Data Centers","verified_owner":"Vantage SDC","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; diverse fiber paths; multiple carriers available","num_buildings":3,"campus_acres":9,"utility_provider":"Silicon Valley Power","tax_incentives":"Silicon Valley Power Data Center Rebate program (up to $1,500,000 per project for qualifying efficiency improvements).","natural_hazard_zone":"seismic zone (California Seismic Hazard Zones jurisdiction)"},"214":{"description":"Vantage Santa Clara III (CA3) is Vantage Data Centers’ facility at 2590 Walsh Avenue in Santa Clara, a four‑story, ~486,000 sq ft building with 64 MW of capacity that opened to customers in October 2024.","verified_status":"operational","power_capacity_mw":64,"total_sqft":486000,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Santa Clara (CA3) Data Center","verified_operator":"Vantage Data Centers","verified_owner":"Vantage Data Centers (through an affiliated LLC)","cooling_type":"chilled water","tier_level":"N+1 electrical, N+2 mechanical (no Uptime certification)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":8,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X; moderate liquefaction susceptibility; within Lexington Reservoir/Lenihan Dam inundation zone; outside Alquist-Priolo fault zones"},"215":{"description":"QTS Santa Clara I is an operational, carrier-neutral colocation data center operated by QTS Data Centers at 2807 Mission College Boulevard in Santa Clara, within QTS’s multi-building Santa Clara campus, offering connectivity options including Astound, Lumen (Level 3), and Megaport.","verified_status":"operational","power_capacity_mw":8.6,"total_sqft":65000,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Santa Clara I","verified_operator":"QTS Data Centers","verified_owner":"Quality Investment Properties Santa Clara, LLC (QTS Realty Trust); QTS Realty Trust is owned by Blackstone-managed funds","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":4,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"seismic zone"},"216":{"description":"QTS Santa Clara II is a QTS Data Centers colocation facility at 2805 Mission College Boulevard in Santa Clara, California, and is part of QTS’s Santa Clara campus. It is operated by QTS and actively marketed with tours available.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":70000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Santa Clara II","verified_operator":"QTS Data Centers","verified_owner":"Blackstone-managed funds / QTS Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; QTS Metro Connect to 11 Great Oaks (Carrier Hotel)","num_buildings":2,"campus_acres":4,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"California Seismic Hazard Zone (liquefaction risk)"},"217":{"description":"STACK SVY01A at 2001 Fortune Drive in San Jose is the original building on STACK Infrastructure’s SVY01 campus, a wholesale/colocation data center rated around 9 MW and 140,000 sq ft; the broader SVY01 campus is marketed at 100 MW.","verified_status":"operational","power_capacity_mw":9,"total_sqft":140000,"year_online":"2009","construction_update":"Mar 26, 2024: STACK broke ground on a 60MW expansion of the SVY01 campus; Jan 22, 2025: CEC CEQAnet entry reflects SPPE activity for Trade Zone Park backup generation at 1849 Fortune Dr / 2400 Ringwood Ave.","recent_news":"","notable_tenants":"","verified_name":"STACK SVY01A","verified_operator":"STACK Infrastructure","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":4,"campus_acres":19,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"218":{"description":"STACK SVY02A is a wholesale data center by STACK Infrastructure at 1200 Memorex Drive in Santa Clara, offering 48 MW with a dedicated onsite substation. City project records describe a four-story 472,920 sq ft data center building on the site.","verified_status":"under-construction","power_capacity_mw":48,"total_sqft":472920,"year_online":"unknown","construction_update":"Nov 2025: Reports said the built SVY02A facility at 1200 Memorex was standing empty while awaiting utility power.","recent_news":"","notable_tenants":"","verified_name":"STACK Infrastructure SVY02A – Santa Clara","verified_operator":"STACK Infrastructure","verified_owner":"1220 Santa Clara Propco, LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; dark fiber available; diverse fiber entrances; meet‑me/MDF rooms available","num_buildings":1,"campus_acres":9.18,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"FEMA minimal flood hazard (Zone X); regional seismic liquefaction susceptibility"},"219":{"description":"Cologix SV1 is a Cologix‑operated, carrier‑neutral colocation and interconnection data center at 2050 Martin Ave. in Santa Clara, offering about 84,000 sq ft and up to 9 MW on a secure 5‑acre campus; Cologix acquired and rebranded the existing vXchnge facility as SV1 in May 2021.","verified_status":"operational","power_capacity_mw":9,"total_sqft":84000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cologix SV1","verified_operator":"Cologix","verified_owner":"Cologix (via affiliate entity); Stonepeak-backed platform","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral; 15+ networks/carriers; two Cologix MMRs","num_buildings":1,"campus_acres":5,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":""},"220":{"description":"EdgeConneX SVC01 is an operational EdgeConneX Edge Data Center in Santa Clara, CA, noted for ENERGY STAR certification and designed for edge colocation/connectivity workloads; the official data sheet lists 19,800 sq ft total space with 3.5 MW (N+1) power, and directories place the facility at 1700 Richard Avenue (the broader site also includes 1600 Memorex Drive as part of EdgeConneX’s 2020 property purchase).","verified_status":"operational","power_capacity_mw":3.5,"total_sqft":19800,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX SVC01 (EDCSVC01)","verified_operator":"EdgeConneX","verified_owner":"EQT Infrastructure","cooling_type":"unknown","tier_level":"Tier III equivalent (concurrently maintainable design)","fiber_providers":"","num_buildings":2,"campus_acres":8.59,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (minimal flood hazard); High seismic hazard/earthquake risk"},"221":{"description":"NTT Silicon Valley SV1 is an operational wholesale/colocation data center operated by NTT Global Data Centers at 1160 Walsh Avenue in Santa Clara, featuring 16 MW of critical IT load and 64,000 sq ft of data-floor space. The four‑story facility, opened in April 2021, is notable as the first Santa Clara data center to use a seismic base-isolation system.","verified_status":"operational","power_capacity_mw":16,"total_sqft":160000,"year_online":"2021","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Silicon Valley SV1 Data Center","verified_operator":"NTT Global Data Centers Americas","verified_owner":"NTT Global Data Centers Americas, Inc. (formerly RagingWire Data Centers, Inc.)","cooling_type":"unknown","tier_level":"","fiber_providers":"Rich ecosystem of carriers; multiple connectivity options","num_buildings":1,"campus_acres":3.32,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Significant seismic risk; facility uses earthquake-resistant/base-isolation design"},"222":{"description":"Colovore SJC01 is Colovore’s high‑density, liquid‑cooled colocation facility in Santa Clara built for AI/HPC workloads; the operator lists SJC01 as sold out with a waitlist.","verified_status":"operational","power_capacity_mw":9,"total_sqft":24000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"Cerebras Systems (Andromeda AI supercomputer) at Colovore’s Santa Clara facility.","verified_name":"Colovore SJC01","verified_operator":"Colovore","verified_owner":"1101 Space Park Partners, LLC","cooling_type":"liquid cooling","tier_level":"Tier III design standard","fiber_providers":"carrier-neutral; wide array of Tier 1 ISPs and fiber providers","num_buildings":1,"campus_acres":1.745,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"FEMA flood zones AH and X; California seismic zone"},"223":{"description":"Colovore SJC02 is a 9MW, high‑density, liquid‑cooled colocation data center operated by Colovore at 3060 Raymond Street in Santa Clara, offering very high rack densities (around 50 kW per cabinet) in a roughly 29,000‑sq‑ft retrofit.","verified_status":"operational","power_capacity_mw":9,"total_sqft":29000,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Colovore SJC02 (3060 Raymond Street Data Center)","verified_operator":"Colovore, LLC","verified_owner":"Colovore affiliate","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"224":{"description":"Carrier‑neutral colocation data center at 1360 Kifer Road, Sunnyvale, marketed as H5 Data Centers’ Silicon Valley site and referenced by third‑party directories; the facility totals about 96,100 sq ft with at least 7 MW delivered power and additional capacity planned.","verified_status":"operational","power_capacity_mw":7,"total_sqft":96100,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"H5 Data Centers Silicon Valley (1360 Kifer Rd) / Element Critical SV1 (1360 Kifer Rd)","verified_operator":"H5 Data Centers; Element Critical (SV1 presence at same address)","verified_owner":"Link Logistics (Blackstone Real Estate affiliate); formerly PS Business Parks","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"California Seismic Zone 4 (code/design exposure)"},"225":{"description":"H5 San Jose is a colocation data center operated by H5 Data Centers at 2030 Fortune Drive in San Jose, California. Third‑party listings show a purpose‑built facility of about 72,249 square feet.","verified_status":"operational","power_capacity_mw":0,"total_sqft":72249,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No current anchor tenant is publicly confirmed. Historically, Equinix’s SV13 operated at 2030 Fortune Drive (Suite 130) but Equinix announced it would exit this leased site and move customers to nearby facilities.","verified_name":"H5 San Jose Data Center","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers","cooling_type":"hybrid","tier_level":"Tier III design (per operator marketing)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":4.02,"utility_provider":"PG&E","tax_incentives":"","natural_hazard_zone":"Seismic hazard zone; FEMA flood zone undetermined"},"226":{"description":"Evocative SJC3 is an operational colocation data center at 3080 Raymond Street in Santa Clara, California, operated by Evocative. The facility is described as a 30,000 sq ft, 3 MW site acquired from Wave in 2021, with earlier listings noting about 15,000 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":3,"total_sqft":30000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Evocative SJC3 (Santa Clara Data Center SJC3)","verified_operator":"Evocative","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"Tier III design (not Uptime-certified)","fiber_providers":"carrier-neutral; AT&T, Cogent, Zayo","num_buildings":1,"campus_acres":0,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Seismic Zone 4 area; FEMA flood zone not specified"},"227":{"description":"Evocative SJC11 is an operational colocation data center at 2151 Mission College Blvd in Santa Clara operated by Evocative, measuring about 73,000 sq ft with roughly 9 MW total capacity. The facility originated as Internap/INAP’s SJE011 opened in 2010 and became part of Evocative’s portfolio following Evocative’s 2022 acquisition of INAP data center assets.","verified_status":"operational","power_capacity_mw":9,"total_sqft":73000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Evocative SJC11","verified_operator":"Evocative","verified_owner":"PacTrust","cooling_type":"unknown","tier_level":"Tier III (not Uptime certified)","fiber_providers":"","num_buildings":1,"campus_acres":4.78,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Seismic Zone 4; outside the floodplain"},"228":{"description":"EdgeCore Silicon Valley Campus is a hyperscale data center campus operated by EdgeCore Digital Infrastructure at 2201 Laurelwood Road in Santa Clara, California. The campus is open and designed for two buildings totaling 72 MW of critical IT load across 540,000 sq ft, with SV01 opening in September 2025.","verified_status":"operational","power_capacity_mw":72,"total_sqft":540000,"year_online":"2025","construction_update":"SV01 opened in September 2025; SV02 on the same campus is planned for 2027.","recent_news":"","notable_tenants":"","verified_name":"EdgeCore Silicon Valley Campus","verified_operator":"EdgeCore Digital Infrastructure","verified_owner":"MECP1 Santa Clara 1, LLC (EdgeCore/Partners Group affiliate; EdgeCore platform majority-owned by Partners Group)","cooling_type":"air-cooled","tier_level":"Tier III designed","fiber_providers":"Zayo; Bandwidth IG (dark fiber; multiple diverse routes)","num_buildings":2,"campus_acres":0,"utility_provider":"Silicon Valley Power (SVP)","tax_incentives":"","natural_hazard_zone":"Seismic hazard exposure (California/Bay Area); site-specific FEMA flood zone not identified in sources provided"},"229":{"description":"Prime Data Centers SJC02 is a single-tenant, enterprise powered‑shell data center at 1111 Comstock Street in Santa Clara, developed and operated by Prime Data Centers. It is listed as leased with 9 MW of capacity and 123,000 sq ft and was completed in 2021.","verified_status":"operational","power_capacity_mw":9,"total_sqft":123000,"year_online":"2021","construction_update":"","recent_news":"","notable_tenants":"Undisclosed (Prime lists SJC02 as leased without naming a tenant); historically, Cyxtera leased the entire facility in June 2021 but rejected the lease in August 2023.","verified_name":"Prime Data Centers SJC02 (1111 Comstock Street, Santa Clara)","verified_operator":"Colovore, LLC","verified_owner":"Prime Data Centers","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Seismic/liquefaction exposure (Northern Santa Clara Valley); FEMA flood zone not determined."},"230":{"description":"Prime Data Centers’ SJC03 is a purpose-built enterprise data center on Martin Avenue in Santa Clara operated by Prime Data Centers, designed for roughly 80,000 sq ft and 9 MW of critical capacity with N+1 resilience.","verified_status":"operational","power_capacity_mw":9,"total_sqft":80000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Prime Data Centers SJC03 | 2215 Martin Avenue","verified_operator":"Prime Data Centers","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.68,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"231":{"description":"Prime Data Centers’ SJC04 at 1231 Comstock Street in Santa Clara is a planned enterprise data center development, with approximately 9 MW of critical capacity and a four‑story design that includes multiple diesel generators.","verified_status":"planned","power_capacity_mw":9,"total_sqft":111978,"year_online":"unknown","construction_update":"City Council approval reported Dec 4, 2024; related agenda item on Nov 20, 2024 covered the CUP/variance for a 111,978 sq ft data center at 1231 Comstock.","recent_news":"","notable_tenants":"","verified_name":"Prime Data Centers SJC04 | 1231 Comstock","verified_operator":"Prime Data Centers","verified_owner":"1231 Comstock Property LLC","cooling_type":"hybrid","tier_level":"Tier 3 (design/standard; no Uptime certification cited)","fiber_providers":"carrier-neutral; 18 carriers in close proximity (Prime/partner listings note 18–25 nearby)","num_buildings":1,"campus_acres":1.38,"utility_provider":"Silicon Valley Power (SVP)","tax_incentives":"","natural_hazard_zone":"Exact FEMA flood zone not identified in cited materials; CEQA review conducted."},"232":{"description":"An operational colocation data center at 6580 Via del Oro in San Jose, operated and marketed by Prime Data Centers as SJC06 (10MW, ~80,000 sq ft). The facility was originally developed by RiCloud as an office-to-data-center conversion and was later acquired by Prime in 2023.","verified_status":"operational","power_capacity_mw":10,"total_sqft":80000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Prime Data Centers SJC06","verified_operator":"Prime Data Centers","verified_owner":"Prime Data Centers","cooling_type":"hybrid","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":4.7,"utility_provider":"PG&E","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone D; seismically active Bay Area"},"233":{"description":"A two‑building hyperscale AWS data center campus at 2305 Mission College Blvd (often referenced as Buildings A and B), developed by Oppidan for Amazon Web Services. City and state filings describe a roughly 490k‑sf project with extensive backup generation (43 × 2.5 MW) and a dedicated 60kV substation.","verified_status":"operational","power_capacity_mw":60.8,"total_sqft":490000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Amazon Web Services (self-use/operator); no third-party tenants publicly disclosed.","verified_name":"Mission College Data Center (Amazon AWS SFO – 2305 Mission A)","verified_operator":"Amazon Web Services","verified_owner":"Amazon Web Services (via acquisition vehicle; Oppidan previously acted as applicant/developer)","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":15.7,"utility_provider":"Silicon Valley Power (City of Santa Clara)","tax_incentives":"","natural_hazard_zone":"Potential flood risk area near San Tomas Aquino Creek; specific FEMA zone not confirmed in sources cited"},"234":{"description":"Planned AWS hyperscale data center site at 960 Central Expressway, Santa Clara; Amazon acquired the 41.5‑acre property in March 2023 and the site is currently land‑banked.","verified_status":"planned","power_capacity_mw":0,"total_sqft":747424,"year_online":"unknown","construction_update":"Mar 2023: Amazon purchased the property at 960 Central Expressway. Prior environmental review included a 30‑day public review period for a Mitigated Negative Declaration; no construction start publicly documented as of 2026‑06.","recent_news":"","notable_tenants":"","verified_name":"Amazon AWS SFO - 960 Central","verified_operator":"Amazon Web Services (AWS)","verified_owner":"Amazon.com Services LLC (Amazon affiliate)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":41.5,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Seismic liquefaction susceptibility in Northern Santa Clara Valley; parcel-specific FEMA SFHA status not confirmed."},"235":{"description":"Terra Green Data Center (Terra Data Center) is a planned hyperscale/AI data center campus by Terra Ventures at 4701 N First Street, San Jose, featuring a three-story 295,100‑sq‑ft data center and a 167,400‑sq‑ft onsite energy hub using natural-gas fuel cells with a self-sufficient micro‑grid.","verified_status":"planned","power_capacity_mw":99,"total_sqft":462500,"year_online":"2027 expected","construction_update":"Apr 7, 2025: Revised proposal filed/reported for a three‑story, 295,100‑sq‑ft data center plus a 167,400‑sq‑ft energy supply hub; as of Apr 23, 2026, the project remains proposed with no construction start.","recent_news":"Apr 23, 2026: A statewide tracker still lists Terra Green Data Center as proposed, citing 417 MW via fuel cells and no construction start.","notable_tenants":"","verified_name":"Terra Data Center","verified_operator":"Terra Ventures","verified_owner":"Terra Ventures","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":9.3,"utility_provider":"PG&E (Pacific Gas & Electric)","tax_incentives":"","natural_hazard_zone":"FEMA Special Flood Hazard Area (Zone A) flood risk; high liquefaction susceptibility in Northern Santa Clara Valley"},"236":{"description":"Hurricane Electric Fremont 2 is a carrier-neutral colocation/telecom data center operated by Hurricane Electric at 48233 Warm Springs Blvd in Fremont, California, with a 208,000-square-foot footprint and extensive interconnection capabilities.","verified_status":"operational","power_capacity_mw":15,"total_sqft":208000,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Hurricane Electric Fremont 2","verified_operator":"Hurricane Electric","verified_owner":"","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Pacific Gas & Electric Company (PG&E)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X; proximity to Hayward Fault with potential liquefaction susceptibility"},"237":{"description":"Digital Realty SJC37 is a colocation and interconnection data center operated by Digital Realty at 641 Walsh Avenue in Santa Clara, enabling rapid deployments on one of Silicon Valley’s most connected campuses.","verified_status":"operational","power_capacity_mw":48,"total_sqft":430000,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Silicon Valley SJC37","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; near major fiber routes; Digital Realty ServiceFabric/Metro Connect interconnection","num_buildings":1,"campus_acres":7.87,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"238":{"description":"NTT Silicon Valley SV1 is an operational colocation data center at 1160 Walsh Ave., Santa Clara, operated by NTT Global Data Centers, offering 16 MW of critical IT load and approximately 160,000 SF over four stories. It is notable for its base-isolation, earthquake‑resistant design.","verified_status":"operational","power_capacity_mw":16,"total_sqft":160000,"year_online":"2021","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Silicon Valley SV1 Data Center","verified_operator":"NTT Global Data Centers Americas","verified_owner":"Raging Wire Data Centers, Inc. (within NTT Global Data Centers Americas)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":3.32,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Seismic hazard exposure; facility employs earthquake-resistant design (base-isolation system)."},"239":{"description":"Prime Data Centers SJC04 is an enterprise data center development at 1231 Comstock in Santa Clara operated by Prime Data Centers. It is listed as single- or multi-tenant in Development/Available status with 9 MW capacity and ~112,000 sq ft, and city filings describe a four‑story data center at the site.","verified_status":"planned","power_capacity_mw":9,"total_sqft":112000,"year_online":"unknown","construction_update":"Santa Clara City Council approval reported Dec 4, 2024 for the new data center at 1231 Comstock St; project item lists Prime Data Centers as applicant (Report File PLN22-00282). No subsequent 2026 construction or opening announcement located.","recent_news":"","notable_tenants":"","verified_name":"Prime Data Centers SJC04","verified_operator":"Prime Data Centers","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.38,"utility_provider":"","tax_incentives":"California: No known dedicated data center tax incentive legislation.","natural_hazard_zone":""},"240":{"description":"An Amazon Web Services (AWS) data center campus at 2305 Mission College Boulevard in Santa Clara, entitled for two three‑story buildings totaling about 490,000 square feet on the former 358,000‑sf office/R&D site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":490000,"year_online":"unknown","construction_update":"CEC SPPE docket activity is recorded for the Mission College Data Center project (19‑SPPE‑05). The campus’s second building (Building B) remains listed as planned; no recent dated construction milestone was found in the provided sources.","recent_news":"","notable_tenants":"","verified_name":"Mission College Data Center","verified_operator":"Amazon Web Services (AWS)","verified_owner":"Amazon Web Services (via affiliate)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":15.7,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"241":{"description":"Equinix SV12x is an Equinix‑operated xScale/hyperscale data center on the Great Oaks campus at 123 Great Oaks Blvd in San Jose, built for high‑density and AI workloads. It is the first U.S. xScale JV facility announced by Equinix and PGIM, developed in two phases.","verified_status":"operational","power_capacity_mw":20,"total_sqft":82000,"year_online":"2026","construction_update":"","recent_news":"Jan 21–22, 2026: SV12x was energized and launched under the City of San Jose–PG&E partnership, marking the first data‑center project delivered under the agreement.","notable_tenants":"","verified_name":"Equinix SV12x","verified_operator":"Equinix","verified_owner":"PGIM Real Estate–Equinix JV (PGIM 80%, Equinix 20%)","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":18,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"242":{"description":"Iron Mountain VA-1 - Northern Virginia is an operational multi-tenant colocation data center operated by Iron Mountain Data Centers at 11680 Hayden Road, Manassas, VA, offering about 168,000 sq ft and 12.4 MW on a secure, carrier-rich campus.","verified_status":"operational","power_capacity_mw":12.4,"total_sqft":167958,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"No publicly disclosed anchor tenant. PeeringDB lists Wasabi Technologies present at Iron Mountain Data Center - Manassas (VA-1).","verified_name":"Iron Mountain Data Centers VA-1 - Northern Virginia","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Information Management, LLC (subsidiary of Iron Mountain Incorporated)","cooling_type":"unknown","tier_level":"ANSI/TIA-942 Rating Level 3 (Constructed Facility)","fiber_providers":"Carrier-neutral; Available Carriers: 13; examples include FirstLight Fiber.","num_buildings":0,"campus_acres":142,"utility_provider":"Conflicting reports: NOVEC vs. Dominion Energy (Dominion Virginia Power)","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption; Prince William County $500,000 water and sewer availability fee credits.","natural_hazard_zone":""},"243":{"description":"Iron Mountain VA-2 is an operational, purpose-built colocation data center operated by Iron Mountain Data Centers at 11660 Hayden Road in Manassas on the company’s Northern Virginia campus, offering about 36 MW of capacity and ~221.5k sq ft of space.","verified_status":"operational","power_capacity_mw":36,"total_sqft":221578,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Northern Virginia Data Center (VA-2)","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Incorporated","cooling_type":"unknown","tier_level":"DCOS Maturity Level 3; ANSI/TIA-942-B; no Uptime Institute Tier certification found","fiber_providers":"Carrier-neutral; Available Carriers: 13; 100G metro connectivity","num_buildings":7,"campus_acres":142,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption; $500,000 Prince William County water and sewer availability fee credits","natural_hazard_zone":"Outside FEMA 500-year flood zone"},"244":{"description":"Iron Mountain VA-3 is a colocation data center operated by Iron Mountain Data Centers at 11640 Hayden Road in Manassas, Virginia. The facility is part of the company’s Northern Virginia campus, was completed and occupied in 2024, and is approximately 390,000 square feet.","verified_status":"operational","power_capacity_mw":96,"total_sqft":390000,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Iron Mountain Data Centers VA-3","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Information Management, LLC (Iron Mountain Incorporated)","cooling_type":"unknown","tier_level":"Tier III-equivalent / concurrently maintainable","fiber_providers":"carrier-neutral","num_buildings":9,"campus_acres":142,"utility_provider":"Northern Virginia Electric Cooperative (NOVEC)","tax_incentives":"Prince William County: $500,000 in water/sewer availability fee credits; Virginia Data Center Retail Sales & Use Tax Exemption through June 30, 2035 for qualifying equipment/software.","natural_hazard_zone":"low risk"},"245":{"description":"Iron Mountain VA-4 is a colocation/multi-tenant data center operated by Iron Mountain Data Centers at 11600 Hayden Road in Manassas, Virginia, on the company’s Northern Virginia campus. Third-party profiles indicate roughly 165,000+ sq ft of space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":165000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Wasabi Technologies (on Iron Mountain’s Manassas campus; not VA-4-specific)","verified_name":"Iron Mountain Data Centers VA-4","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Data Centers VA 4/5 Subsidiary LLC (Iron Mountain Incorporated REIT affiliate)","cooling_type":"unknown","tier_level":"N+1 redundancy; no public Uptime Institute Tier certification found","fiber_providers":"carrier-neutral; Megaport available; multi-carrier campus connectivity (e.g., >10 carriers campus-wide).","num_buildings":9,"campus_acres":142,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales and Use Tax Exemption; Prince William County local incentive programs (e.g., technology zone/accelerated depreciation tools).","natural_hazard_zone":""},"246":{"description":"Iron Mountain VA-5 is a colocation data center operated by Iron Mountain Data Centers at 11580 Hayden Road in Manassas, Virginia, within the company’s 142-acre Northern Virginia campus.","verified_status":"operational","power_capacity_mw":40,"total_sqft":165000,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Iron Mountain VA-5","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Incorporated","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":5,"campus_acres":142,"utility_provider":"","tax_incentives":"$500,000 in water and sewer availability fee credits from Prince William County Industrial Development Authority","natural_hazard_zone":""},"247":{"description":"Iron Mountain VA-6 is a green colocation data center operated by Iron Mountain Data Centers on its Manassas/Northern Virginia campus at 7745 Wellington Road. It totals about 230,000 square feet with 32 MW total capacity (28 MW critical IT load).","verified_status":"operational","power_capacity_mw":32,"total_sqft":230000,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"No VA-6-specific anchor tenant has been publicly disclosed. Campus-level customer references include Wasabi Technologies at Iron Mountain’s Manassas, Virginia facility.","verified_name":"Iron Mountain Data Centers VA-6","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Information Management LLC (subsidiary of Iron Mountain Incorporated)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":142,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (through June 30, 2035, subject to meeting program requirements).","natural_hazard_zone":""},"248":{"description":"Iron Mountain VA-7 is an operational colocation data center operated by Iron Mountain Data Centers at 8330 Bethlehem Road, Manassas, VA. The two‑story, four‑data‑hall facility is specified at a 36 MW critical load and about 290,750 SF.","verified_status":"operational","power_capacity_mw":36,"total_sqft":290750,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Iron Mountain Data Centers VA-7","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Incorporated (via Iron Mountain Information Management, LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":9,"campus_acres":142,"utility_provider":"","tax_incentives":"Virginia data center retail sales & use tax exemption for qualifying equipment; Prince William County local incentives available; location marketed as offering better tax incentives than Ashburn.","natural_hazard_zone":"low risk; USACE notice cites minor wetland/stream impacts; no site-specific FEMA flood-zone designation found in provided sources"},"249":{"description":"QTS Manassas DC5 is a QTS Data Centers facility at 9301 Freedom Center Blvd in Manassas, Virginia, within the company’s Manassas campus. County records show the building was completed and finaled in April 2023 with about 310,000 sq ft, and third‑party facility listings note roughly 42 MW of commissioned power.","verified_status":"operational","power_capacity_mw":42,"total_sqft":310000,"year_online":"2023","construction_update":"","recent_news":"February 2026: QTS/Blackstone pursued a ~$2.0–$2.05 billion CMBS refinancing across three QTS properties, explicitly including the Manassas asset (reported as 19.6 MW built capacity).","notable_tenants":"","verified_name":"QTS Manassas DC5","verified_operator":"QTS Data Centers","verified_owner":"Blackstone/QTS","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":6,"campus_acres":105,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (qualifying equipment purchases; available through June 30, 2035).","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard; between 100- and 500-year flood limits)."},"250":{"description":"QTS Manassas DC4 is a QTS Data Centers expansion within the Manassas wholesale/hyperscale campus, a 105-acre planned six‑building site with 190+ MW of critical campus capacity. The expansion has been associated with the parcel at 10680 University Blvd adjacent to QTS’s existing Manassas facilities.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":315862,"year_online":"unknown","construction_update":"As of 2025–2026, the project is listed as Under Construction (permit BLD2025-03459) and associated with 9351 Freedom Center Blvd; earlier reporting in Dec 2022 noted an application tied to the 10680 University Blvd expansion for up to 323,526 sq ft.","recent_news":"","notable_tenants":"","verified_name":"QTS Manassas DC4","verified_operator":"QTS Data Centers","verified_owner":"Blackstone (jointly held by Blackstone Infrastructure Partners and Blackstone Real Estate Income Trust/BREIT)","cooling_type":"air-cooled","tier_level":"Tier III equivalent design","fiber_providers":"carrier-neutral","num_buildings":6,"campus_acres":105,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (Va. Code §58.1‑609.3(18)) for qualifying data center equipment.","natural_hazard_zone":"Portions of the University Blvd expansion area are reported to include FEMA 100‑year floodplain and are within nearby flight overlay corridors; confirm during site plan."},"251":{"description":"CloudHQ MCC2 is an operational hyperscale/colocation data center at 10100 Harry J. Parrish Boulevard in Manassas, Virginia, within CloudHQ’s MCC Campus, listed at 64 MW and 341,803 sq ft and fully leased since 2018. Some directories report different figures (e.g., 250,144–392,500 sq ft) and an alternate 2019 online date.","verified_status":"operational","power_capacity_mw":64,"total_sqft":341803,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CloudHQ MCC2","verified_operator":"CloudHQ, LLC","verified_owner":"Bourzou Ventures LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":7,"campus_acres":23.22,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption; within Prince William County’s Data Center Opportunity Zone Overlay District.","natural_hazard_zone":""},"252":{"description":"CloudHQ MCC7 is a planned hyperscale data center by CloudHQ at 10101 Harry J. Parrish Boulevard in Manassas, Virginia, as part of the company’s MCC campus. County records list the site as vacant and in the planning/permitting process.","verified_status":"planned","power_capacity_mw":36,"total_sqft":0,"year_online":"unknown","construction_update":"June 2026: County filing BLD2026-04432 exists for 10101 HARRY J PARRISH BLVD (Building – Commercial). May 28, 2025: PRA REZ2024-00025 appeared before the Planning Commission; property use listed as VACANT W/INCIDENTAL STRUCTURES.","recent_news":"","notable_tenants":"","verified_name":"CloudHQ MCC7","verified_operator":"CloudHQ","verified_owner":"Unicorn Retail LLC (CloudHQ affiliate)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":22.5163,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption","natural_hazard_zone":""},"253":{"description":"Operational wholesale/colocation data center at 9651 Hornbaker Road, originally known as COPT DC-6, now owned by CloudHQ/Cloud Capital after a January 2022 sale; VAZATA offers its Manassas MAA/NoVA I colocation services within the facility.","verified_status":"operational","power_capacity_mw":19.25,"total_sqft":243000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"VAZATA (NoVA I / Manassas MAA) at 9651 Hornbaker Road","verified_name":"CloudHQ Manassas Hornbaker Data Center (formerly COPT DC-6)","verified_operator":"CloudHQ","verified_owner":"Cloud Capital (CloudHQ affiliate) investment vehicle","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":19.5,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (program available; site-specific enrollment not confirmed).","natural_hazard_zone":"FEMA Zone X (low risk)"},"254":{"description":"STACK Infrastructure NVA02B is a wholesale/hyperscale‑ready data center operated by STACK within the NVA02 campus in Prince William County (Bristow/Manassas area). The campus provides 420 MW across up to ten facilities and is supported by two dedicated 300 MW substations.","verified_status":"operational","power_capacity_mw":40,"total_sqft":217502,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"STACK Infrastructure NVA02B (Building B of STACK NVA02 – Manassas campus)","verified_operator":"STACK Infrastructure","verified_owner":"SI NVA02A-C, LLC","cooling_type":"air-cooled","tier_level":"N+1 block-redundant UPS/cooling/standby-power design; no Uptime Institute Tier I–IV certification found","fiber_providers":"carrier-neutral; Atlantic Broadband, Crown Castle, FiberLight, Lumen, NOVEC, Segra, Summit IG, Unity Fiber, Windstream, Zayo Metro","num_buildings":10,"campus_acres":200,"utility_provider":"Northern Virginia Electric Cooperative (NOVEC)","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (state program) applies if eligibility criteria are met; no facility-specific local abatement identified.","natural_hazard_zone":"FEMA Flood Zone X / low flood risk"},"255":{"description":"STACK Infrastructure NVA05B is the Building B wholesale/hyperscale data center at 9001 Freedom Center Boulevard in Manassas, Virginia, within STACK’s NVA05 campus, planned at about 340,000 sq ft with a 48MW HYPERSTACK phase.","verified_status":"under-construction","power_capacity_mw":48,"total_sqft":340000,"year_online":"2026","construction_update":"2026-04: Listed as under construction for the NVA05 campus in Manassas; earlier milestone: January 2025 green financing secured to fully develop the NVA05 campus.","recent_news":"As of early 2026, the NVA05 campus (including NVA05B) is listed as under construction in Manassas; no facility-specific tenant or regulatory developments were found in the last six months.","notable_tenants":"","verified_name":"STACK Infrastructure NVA05B (NVA05 – Manassas, Building B / Phase 2)","verified_operator":"STACK Infrastructure","verified_owner":"SI NVA05B, LLC","cooling_type":"air-cooled","tier_level":"N+1 block-redundant design; no Uptime Institute Tier certification found","fiber_providers":"","num_buildings":0,"campus_acres":62,"utility_provider":"","tax_incentives":"Virginia’s Data Center Retail Sales & Use Tax Exemption is generally available to qualifying data centers; no facility-specific award identified.","natural_hazard_zone":""},"256":{"description":"STACK Infrastructure NVA05C is a wholesale data center building on STACK’s NVA05 campus in Manassas, Virginia, along Wellington Road. Campus profiles cite roughly 150 MW across multiple buildings on ~54 acres, and permit records list NVA05C under a commercial building permit at 8930 Wellington Road.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Building permit BLD2025-03019 for “Stack Northern Virginia NVA05C” at 8930 Wellington Road (commercial building; two‑story white‑box shell to be superseded by tenant) indicates the project is progressing through construction permitting and fit‑out phases.","recent_news":"","notable_tenants":"","verified_name":"STACK Infrastructure NVA05C","verified_operator":"STACK Infrastructure","verified_owner":"SI NVA05 LLC (affiliate of STACK Infrastructure; STACK sponsored by IPI Partners)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":62,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption for qualifying data center computer equipment and software, applicable through June 30, 2035.","natural_hazard_zone":""},"257":{"description":"STACK Infrastructure NVA05D is a planned wholesale data center building on STACK’s NVA05 Manassas campus, located along Wellington Rd, with an estimated 364,998 sq ft footprint.","verified_status":"planned","power_capacity_mw":0,"total_sqft":364998,"year_online":"unknown","construction_update":"Jan 14–16, 2025: STACK secured $900 million in green financing to fully develop the NVA05 campus in Northern Virginia.","recent_news":"","notable_tenants":"","verified_name":"STACK Infrastructure NVA05D","verified_operator":"STACK Infrastructure","verified_owner":"TPC Stoneview LC and 8625 Wellington Road LLC","cooling_type":"air-cooled","tier_level":"Tier III-equivalent (no public Uptime certification)","fiber_providers":"carrier-neutral","num_buildings":4,"campus_acres":62,"utility_provider":"NOVEC (Northern Virginia Electric Cooperative)","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide program for qualifying equipment).","natural_hazard_zone":"low risk (no FEMA 100‑year floodplain identified on the subject Wellington Road property)"},"258":{"description":"Yondr Bristow Campus – Building 1 is a hyperscale data center operated by Yondr Group in Bristow, Virginia, located at 13051 Rollins Ford Rd (within the Bristow campus often referenced at 12981 Rollins Ford Rd). Prince William County records show the building is completed/finaled, totals 324,580 sq ft, and was built in 2025.","verified_status":"operational","power_capacity_mw":0,"total_sqft":324580,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Yondr Bristow Campus Building 1","verified_operator":"Yondr Group","verified_owner":"Yondr Group; under joint control by DigitalBridge-managed investment vehicles and La Caisse (formerly CDPQ) as of July 1, 2025","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption likely applicable if statutory thresholds are met; no site-specific local abatement identified.","natural_hazard_zone":"unknown"},"259":{"description":"Corscale Gainesville Crossing Building 1 is a 72 MW hyperscale data center operated by Corscale at 13760 University Boulevard in Gainesville, Virginia, featuring eight 9 MW data halls and roughly 503,000 sq ft of space. It is the first building within the 130-acre Gainesville Crossing campus planned for about 2.3 million sq ft and 326 MW.","verified_status":"operational","power_capacity_mw":72,"total_sqft":503000,"year_online":"2024","construction_update":"","recent_news":"June 2026: Blue Owl provided $975 million in financing/refinancing for “Project Helios,” a newly constructed, fully leased 72 MW data center at Corscale’s Gainesville Crossing campus (the first/completed building).","notable_tenants":"","verified_name":"Corscale Gainesville - Bldg 1 (Gainesville Crossing Data Campus Building 1)","verified_operator":"Corscale Data Centers","verified_owner":"GCDC Purchaser LLC (and GCDC Purchaser Phase 1 LLC for Phase 1/SPV)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":5,"campus_acres":130,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption; Prince William County incentives including accelerated computer-equipment depreciation and other tools for targeted industries.","natural_hazard_zone":""},"260":{"description":"CorScale Gainesville Crossing Building 2 is a two‑story, 288,000 sq ft, 72 MW hyperscale data center at the Gainesville Crossing campus (13760 University Blvd) operated by Corscale. Announced as fully leased to an undisclosed hyperscale tenant when construction began in 2024, it subsequently came online in 2025.","verified_status":"operational","power_capacity_mw":72,"total_sqft":288000,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"Fully leased to an undisclosed hyperscale tenant","verified_name":"Corscale Gainesville - Bldg 2","verified_operator":"Corscale Data Centers","verified_owner":"GCDC Purchaser LLC / GCDC Purchaser Phase 1 LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":130,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption for qualifying data centers","natural_hazard_zone":"low risk; exact FEMA flood-zone designation not publicly determined"},"261":{"description":"CorScale Gainesville Crossing Building 3 (Gainesville 3) is a hyperscale data center under construction by Corscale at the Gainesville Crossing campus, 13760 University Boulevard, Gainesville, Virginia. It is part of a planned five-building campus totaling about 2.3 million sq ft and 326 MW.","verified_status":"under-construction","power_capacity_mw":54,"total_sqft":244000,"year_online":"unknown","construction_update":"July 1, 2025: Building 3 structurally topped out (final beam placed). Earlier Feb. 4, 2025 reporting noted ground-breaking/vertical construction commencement.","recent_news":"","notable_tenants":"","verified_name":"Corscale Gainesville Crossing Building 3","verified_operator":"Corscale Data Centers","verified_owner":"Affinius Capital and Corscale joint venture","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":130,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide, if qualification thresholds are met)","natural_hazard_zone":""},"262":{"description":"CorScale Gainesville Crossing Building 4 is a planned hyperscale data center building on Corscale’s Gainesville Crossing campus in Prince William County, Virginia; county permit BLD2026-04211 lists “Corscale Gainesville Crossing 4” at 13746 University Blvd as under review, and the campus targets ~2.3 million sq ft at full buildout.","verified_status":"planned","power_capacity_mw":0,"total_sqft":600000,"year_online":"unknown","construction_update":"Permit BLD2026-04211 for “Corscale Gainesville Crossing 4” is listed as Pending/Under Review; no public groundbreaking or start-of-construction notice for Building 4 has been issued.","recent_news":"June 11, 2026: Blue Owl provided a $975M refinancing for the 72MW first building at Gainesville Crossing; the report notes Buildings 4 and 5 remain planned for a combined 128 MW.","notable_tenants":"","verified_name":"Corscale Gainesville - Bldg 4","verified_operator":"Corscale Data Centers","verified_owner":"Affinius Capital and Corscale (joint venture for the GCDC/Gainesville Crossing campus)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":5,"campus_acres":130,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (for qualifying purchases; generally through June 30, 2035). Prince William County applies a special local tax rate for data center computer equipment and peripherals.","natural_hazard_zone":""},"263":{"description":"CorScale Gainesville Crossing Building 5 is a planned two‑story hyperscale data center at 13760 University Blvd, Building 5, in Gainesville, Virginia, within CorScale’s five‑building Gainesville Crossing campus. The campus spans ~130 acres and targets about 2.3 million sq ft and ~326 MW at full buildout.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"As of June 11, 2026, Buildings 4 and 5 remain planned for a combined 128 MW; no Building 5 construction start or delivery date is publicly stated.","recent_news":"June 11, 2026: A financing update noted Gainesville Crossing as a 130‑acre, five‑building campus and stated Buildings 4 and 5 are planned for a combined 128 MW.","notable_tenants":"","verified_name":"Corscale Gainesville - Bldg 5","verified_operator":"Corscale Data Centers","verified_owner":"Affinius Capital and Corscale Data Centers joint venture (Corscale is a Patrinely affiliate).","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":130,"utility_provider":"Dominion Energy (Dominion Virginia Power)","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption is available to qualifying data centers.","natural_hazard_zone":""},"264":{"description":"Amazon AWS IAD – 9020 Freedom Building 1 (IAD‑131) is an AWS-operated hyperscale data center at 9020 Freedom Center Blvd in Manassas, Virginia, within the company’s Freedom Campus. Market listings indicate the site is operational and part of AWS’s Northern Virginia (us‑east‑1) footprint.","verified_status":"operational","power_capacity_mw":50,"total_sqft":202626,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Amazon AWS IAD-131 (Amazon AWS IAD - 9020 Freedom Building 1)","verified_operator":"Amazon Web Services (Amazon Data Services, Inc.)","verified_owner":"MANASSAS NCP LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":18.75,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide program; facility-specific enrollment not confirmed).","natural_hazard_zone":""},"265":{"description":"A planned hyperscale data center building by Amazon Web Services at 5845 Wellington Road in Gainesville/Bristow, Virginia, within AWS’s multi‑building Wellington/Gainesville campus. Coverage and county documents note SUP applications for a roughly multi‑million‑sq‑ft campus across 5845/5945 and planned on‑site substations.","verified_status":"planned","power_capacity_mw":0,"total_sqft":453000,"year_online":"unknown","construction_update":"Dec 2022: AWS submitted two special‑use permit requests for a large Gainesville campus; Dec 11, 2024: County staff report posted for a NOVEC electric substation at 5945 Wellington Road (owned by Amazon Data Services), indicating active campus power‑infrastructure planning; no construction start for 5845 Wellington Building 1 is publicly disclosed.","recent_news":"Mar 11, 2026: County staff posted PFR2026-00005 for a 300‑MW NOVEC electric substation with a collocated Dominion Energy switching station in the Wellington Road area, indicating ongoing power‑infrastructure planning for the campus; no building‑specific milestone for 5845 Wellington Building 1 was announced in that period.","notable_tenants":"","verified_name":"Amazon AWS IAD - 5845 Wellington","verified_operator":"Amazon Web Services","verified_owner":"Amazon Data Services Inc.","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":58.53,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (DCRSUT): 6% state sales and use tax exemption on qualifying computer equipment and enabling software for eligible data centers meeting investment and job thresholds.","natural_hazard_zone":""},"266":{"description":"A planned hyperscale AWS data center building on the Wellington Road/Gainesville campus, operated by Amazon Web Services and associated with 5945 Wellington Road (GPIN 7497-41-7199). Industry reports describe a three-building AWS complex in the Wellington Road area acquired by AWS in 2022–2023.","verified_status":"planned","power_capacity_mw":0,"total_sqft":218391,"year_online":"unknown","construction_update":"As of 2026-06-29, a permit filing (BLD2026-00592) for Amazon AWS IAD C lists 218,391 sq ft at 7701 Deacon Falls Dr in Prince William County; no issuance or completion details are shown in the provided materials.","recent_news":"Prince William County launched its interactive data center map on Feb 10, 2026, and a current permit filing exists for Amazon AWS IAD C (BLD2026-00592) at 7701 Deacon Falls Dr, reflecting ongoing review activity for the Wellington Road campus.","notable_tenants":"","verified_name":"Gainesville East Data Center (AWS) at 5945 Wellington Road; not the 'Wellington Road Building 3' (IAD‑103) which is at Tanner Way in Manassas","verified_operator":"Amazon Web Services","verified_owner":"Amazon Data Services, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":58.5,"utility_provider":"NOVEC (primary utility); Dominion Energy provides transmission/switching support","tax_incentives":"State: Virginia Data Center Retail Sales & Use Tax Exemption (equipment). Local: Prince William County fiscal analysis indicates no local tax incentives to deduct from data center taxes.","natural_hazard_zone":"Former industrial/RCRA corrective action site with institutional controls (EPA RCRA ID VAD023741705) at 5945 Wellington Road."},"267":{"description":"Digital Realty’s IAD53 at 9905 Godwin Drive in Manassas, VA is an operational, sole-tenant (wholesale) data center developed on the former brickyard site. The project is listed by USGBC as a LEED BD+C: Data Centers v4 project at this address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":184242,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty IAD53 (9905 Godwin Drive)","verified_operator":"Digital Realty","verified_owner":"Digital Third Second Manassas LLC / Digital Carver Brickyard LLC (subsidiaries of Digital Realty Trust)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":20.8,"utility_provider":"Dominion Energy Virginia","tax_incentives":"No discretionary abatement identified. Local policy issue: reported tenant exemption from certain local business personal property taxes; City discussed revenue implications.","natural_hazard_zone":""},"268":{"description":"Equinix Washington DC DC14 is an operational carrier-neutral Equinix IBX colocation facility at 7400 Infantry Ridge Road in Manassas, Virginia, with about 42,539 sq ft of colocation space and positioned for large deployments.","verified_status":"operational","power_capacity_mw":8,"total_sqft":109781,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix DC14","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":7.31,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (state program for qualifying data centers).","natural_hazard_zone":""},"269":{"description":"Microsoft Azure MNZ03 is a Microsoft hyperscale data center building in Prince William County tied to the Devlin/Hansen Farm campus; the county lists it at 13060 Hansen Farm Rd with permit BLD2023-07492 and status under construction. Directories associate the campus with 8008 Devlin Road in Bristow.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":495709,"year_online":"unknown","construction_update":"County record lists MNZ03 as Under Construction with permit BLD2023-07492 (Issued); Planned GFA 495,709 sq ft and Building Permit GFA 312,931 sq ft. Microsoft notes construction is expected to continue 18–24 months.","recent_news":"Feb 10, 2026 — Prince William County launched an interactive data center map to improve public access to data center development information; MNZ03 remains listed as Under Construction in the county dataset.","notable_tenants":"","verified_name":"Microsoft - Gainesville Data Center - MNZ03 (8008 Devlin Rd, Bristow, VA)","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":83,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Potential eligibility for Virginia’s Data Center Retail Sales & Use Tax Exemption, subject to meeting investment and job thresholds.","natural_hazard_zone":""},"270":{"description":"A planned Microsoft hyperscale data center campus at 13490 University Boulevard and 5941 Wellington Road in Gainesville (Prince William County), Virginia. Microsoft bought the roughly 124-acre assemblage in March 2024 and has not publicly disclosed build or go-live details.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Mar 1, 2024: Microsoft acquired about 124 acres across 13490 University Blvd. and 5941 Wellington Rd. in Gainesville for a reported $465 million; no public confirmation of construction start or permits since.","recent_news":"","notable_tenants":"","verified_name":"Microsoft Azure (University Business Park) — 13490 University Blvd Campus","verified_operator":"Microsoft","verified_owner":"Microsoft Corp.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":6,"campus_acres":117.28,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide program; site-specific local abatements not found).","natural_hazard_zone":"unknown"},"271":{"description":"Planned Microsoft hyperscale data center site in Gainesville, Virginia, spanning 5941 Wellington Road and 13490 University Blvd; Microsoft acquired about 124 acres here for ~$465.5M in March 2024, and public directories list it as a future/land-banked project rather than operational.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Mar 4, 2024: Microsoft acquired approximately 124 acres across 13490 University Blvd. and 5941 Wellington Road in Prince William County; no public confirmation of construction start since.","recent_news":"","notable_tenants":"","verified_name":"University Blvd. Campus (Microsoft) — 13490 University Blvd & 5941 Wellington Rd, Gainesville, VA","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":124,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide) — available to qualifying facilities meeting statutory thresholds; no site-specific local incentive identified.","natural_hazard_zone":""},"272":{"description":"Aligned Manassas / Balls Ford (IAD05) is Aligned’s planned wholesale data center development at 10920 Balls Ford Road in Manassas, Virginia, currently characterized as a land bank/proposed site.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"As of March 2024, the project appears in county-focused materials as not approved (REZ2022-00023), and remains characterized publicly as a proposed/land bank site.","recent_news":"","notable_tenants":"","verified_name":"Aligned Data Centers Balls Ford (IAD05)","verified_operator":"Aligned Data Centers","verified_owner":"Aligned Data Centers (Balls Ford) Propco LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":28.35,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (subject to meeting statutory capital investment and job thresholds).","natural_hazard_zone":"low risk"},"273":{"description":"A planned data-center redevelopment by JK Land Holdings of the former Comcast facility at 11101 University Blvd in Manassas, VA; the site includes an existing ~104,655-sf building on ~17–18 acres and remains in planning rather than active data-center operation.","verified_status":"planned","power_capacity_mw":0,"total_sqft":104655,"year_online":"unknown","construction_update":"Dec 5, 2022: Reporting noted JK Land’s plan to develop/redevelop the former Comcast site at 11101 University Blvd and pursue increased building height; no public 2026 construction start identified.","recent_news":"Q1 2026: Market report lists Mobile Sentrix renewing 104,655 sf at 11101 University Blvd with landlord University Boulevard LLC.","notable_tenants":"Mobile Sentrix (current building tenant). No public data-center anchor/customer announced.","verified_name":"JK Land: Comcast Center","verified_operator":"JK Land Holdings, LLC","verified_owner":"JK Land Holdings (via affiliate University Blvd LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; access to multiple providers (Innovation Park lists access to 17 fiber optic providers).","num_buildings":1,"campus_acres":17.73,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide); site lies within a county framework that promotes data centers via the Data Center Opportunity Zone Overlay.","natural_hazard_zone":""},"274":{"description":"CloudHQ MCC2 is an operational hyperscale data center operated by CloudHQ at 10100 Harry J. Parrish Blvd in Manassas, Virginia, and is part of CloudHQ’s MCC campus. Local records indicate a ~347,876 sq ft building on ~23 acres built in 2020.","verified_status":"operational","power_capacity_mw":64,"total_sqft":347876,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CloudHQ MCC2","verified_operator":"CloudHQ","verified_owner":"Cashvad Ventures LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; direct fiber connection to CloudHQ MDC campus","num_buildings":7,"campus_acres":23.22,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption for qualifying data center equipment; no MCC2-specific local abatement found","natural_hazard_zone":"FEMA Flood Zone AE (100-year) on/near portions of the site"},"275":{"description":"Corscale Gainesville Crossing – Building 1 is a Corscale-operated hyperscale data center at 13760 University Blvd in Gainesville, Virginia, and the first building on the Gainesville Crossing campus, offering 72 MW across roughly 483,000 sq ft.","verified_status":"operational","power_capacity_mw":72,"total_sqft":483000,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Corscale Gainesville Crossing - Building 1","verified_operator":"Corscale Data Centers","verified_owner":"Affinius Capital and Corscale (joint venture)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":5,"campus_acres":130,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption on qualifying computer equipment (through June 30, 2035, subject to statutory thresholds). Prince William County also levies business personal property taxes on data center equipment.","natural_hazard_zone":"low risk"},"276":{"description":"STACK Infrastructure’s NVA05B (Building B) at 9001 Freedom Center Blvd in Manassas is a hyperscale data center on the NVA05 campus; it is a 340,000‑sq‑ft Phase 2 facility with 48MW planned capacity.","verified_status":"under-construction","power_capacity_mw":48,"total_sqft":340000,"year_online":"2026","construction_update":"Sep 24, 2024: Prince William County rezoning approval for NVA05A/NVA05B; as of 2026 listings, NVA05B at 9001 Freedom Center Blvd is still shown as under construction with no confirmed commissioning date.","recent_news":"","notable_tenants":"","verified_name":"STACK Infrastructure NVA05B (Building B), 9001 Freedom Center Blvd","verified_operator":"STACK Infrastructure","verified_owner":"SI NVA05B, LLC (STACK Infrastructure entity; STACK is owned by Blue Owl Digital Infrastructure)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":23.25,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption for qualifying data center equipment/software.","natural_hazard_zone":""},"277":{"description":"A 365 Data Centers-operated colocation facility at 11650 Great Oaks Way in Alpharetta (Atlanta metro), offering 4.3 MW of power and about 77,300 sq ft with 24/7/365 on-site support and diverse connectivity.","verified_status":"operational","power_capacity_mw":4.3,"total_sqft":77300,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers Alpharetta Data Center (GA1)","verified_operator":"365 Data Centers","verified_owner":"Mapletree Industrial Trust","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral with multiple on-net providers: AT&T; Charter; Cogent; Comcast; Crown Castle; FiberLight; Lumen; Megaport; Verizon; Verizon Business (MCI); Zayo; AGL Fibernet; American Fiber Systems.","num_buildings":1,"campus_acres":15.68,"utility_provider":"Georgia Power","tax_incentives":"","natural_hazard_zone":"low risk"},"278":{"description":"365 Data Centers’ Smyrna (GA2) is an operational colocation facility at 5600 United Dr. SE in Smyrna, Georgia, offering a 77,300 sq ft data center and 4 MW of capacity with robust connectivity options.","verified_status":"operational","power_capacity_mw":4,"total_sqft":77300,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers Smyrna Data Center (GA2)","verified_operator":"365 Data Centers","verified_owner":"Landmark Dividend (DigitalBridge portfolio company)","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; AT&T, Cogent, Comcast, FiberLight, Lumen, Verizon Business, Zayo","num_buildings":1,"campus_acres":11.24,"utility_provider":"Georgia Power","tax_incentives":"Georgia Data Center Sales & Use Tax Exemption (O.C.G.A. § 48-8-3(68.1)) — statewide exemption on high-technology data center equipment for qualifying facilities meeting minimum investment and job-creation thresholds","natural_hazard_zone":"FEMA Flood Zone B and X (moderate to low flood risk)"},"279":{"description":"American Tower’s ColoATL is a carrier‑neutral colocation and interconnection facility inside the 55 Marietta Street carrier hotel in downtown Atlanta, operated by American Tower and focused on dense network connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2001","construction_update":"Jan 6, 2026: Building-level expansion announced by RadiusDC to add 8 MW of utility capacity at 55 Marietta, bringing the carrier hotel to 18 MW; no AMT/ColoATL-specific project disclosed.","recent_news":"Jan 6, 2026: RadiusDC announced an 8 MW utility-capacity expansion to the 55 Marietta carrier hotel, bringing the building to 18 MW; this is a building-level update impacting all operators/tenants.","notable_tenants":"No named anchor colocation customers publicly disclosed. Building-level interconnection ecosystem at 55 Marietta includes AT&T, CenturyLink/Lumen, Cogent, Comcast, FiberLight, Verizon, Windstream, Zayo, and CoreSite AT1.","verified_name":"CoreSite AT1 (55 Marietta)","verified_operator":"CoreSite","verified_owner":"RadiusDC","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral; carriers include CoreSite, AT&T, Cogent, Comcast, FiberLight, Lumen, Verizon, Windstream, Zayo; approximately 22 carriers onsite.","num_buildings":1,"campus_acres":0.47,"utility_provider":"","tax_incentives":"Georgia High‑Technology Data Center Equipment Exemption may apply if statutory thresholds are met; no site‑specific award found.","natural_hazard_zone":"Outside 100-year flood plain"},"280":{"description":"American Tower SW Atlanta is an operational American Tower edge data center located at 2374 Fairburn Road Southwest, Atlanta, GA 30331, and is part of the company’s standardized, tower-based Edge Data Centers program.","verified_status":"operational","power_capacity_mw":0.096,"total_sqft":360,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"American Tower EDC Atlanta","verified_operator":"American Tower","verified_owner":"American Tower Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia data center sales/use tax exemption program exists but issuance of new certificates was suspended July 1, 2024–June 30, 2026 (exceptions for certain pre‑July 1, 2024 contracts). No site‑specific abatement found.","natural_hazard_zone":"unknown"},"281":{"description":"Aptum Atlanta is an operational colocation/managed hosting data center presence at 101 Marietta Street NW in Atlanta, operated by Aptum Technologies (formerly Cogeco Peer 1). The address and operational status are documented by third‑party listings, and Aptum’s 2019 acquisition by Digital Colony provides corporate context.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aptum Atlanta (Legacy Peer 1) — 101 Marietta Street NW","verified_operator":"Aptum Technologies","verified_owner":"Real Capital Solutions","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia’s High-Technology Data Center Equipment sales & use tax exemption may apply if investment thresholds are met; no facility-specific certificate found.","natural_hazard_zone":""},"282":{"description":"Historic AT&T communications/telephone-exchange building at 51 Peachtree Center Ave NE in downtown Atlanta, originally completed in 1929 with later additions and still operated by AT&T as a communications & maintenance/central office facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"1929","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"AT&T Communications Building (formerly Southern Bell Telephone Company Building; data-center listing name: AT&T Southern Bell Telephone Company Building)","verified_operator":"AT&T","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T (Service Node Routing Complex/peering hub at 51 Peachtree Center Avenue); not advertised as carrier-neutral.","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"","natural_hazard_zone":"Moderate neighborhood-level flood risk (Peachtree Center). Parcel-specific FEMA designation not verified."},"283":{"description":"Centersquare ATL1 is an operational colocation data center at 375 Riverside Parkway, Suite 100, Lithia Springs (greater Atlanta metro), operated under the Centersquare brand. The 375 Riverside Parkway property is a single‑storey data center owned by Mapletree Industrial Trust.","verified_status":"operational","power_capacity_mw":81.5,"total_sqft":137203,"year_online":"1998","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare ATL1-D Lithia Springs Data Center","verified_operator":"Centersquare","verified_owner":"Mapletree Industrial Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; providers include AT&T, Bandwidth IG, Cogent, Comcast, Lumen (CenturyLink), and Zayo.","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Georgia High-Technology/Data Center Equipment Sales & Use Tax Exemption (subject to minimum investment thresholds).","natural_hazard_zone":"Outside mapped flood zone (low flood risk)"},"284":{"description":"Centersquare ATL1-A is a carrier-neutral colocation data center at 375 Riverside Parkway, Suite 150, Lithia Springs, GA, operated by Centersquare (the rebranded combination of Evoque and Cyxtera). Listings indicate about 1.175 MW of capacity and roughly 86,005 sq ft of raised-floor space as part of the ATL1 campus.","verified_status":"operational","power_capacity_mw":1.175,"total_sqft":86005,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare (Csquare) ATL1-A Lithia Springs Data Center","verified_operator":"Centersquare (Csquare)","verified_owner":"Mapletree Industrial Trust / Mapletree Investments","cooling_type":"chilled water","tier_level":"Tier III-equivalent design (no public Uptime certification found)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":31.99,"utility_provider":"","tax_incentives":"Georgia high-technology data center equipment sales-and-use-tax exemption is active for qualifying data centers; no facility-specific abatement found for this address.","natural_hazard_zone":"Outside 300-year flood zone (low flood risk)"},"285":{"description":"Cogent Atlanta 2 is an operational, carrier‑neutral colocation/telecom data center at 1190 Allene Ave SW in Atlanta operated by Cogent Communications; Cogent lists 36,172 sq ft of colocation space, while a DCD report describes the site as a 64,200 sq ft facility with 7.5 MW of power.","verified_status":"operational","power_capacity_mw":7.5,"total_sqft":64200,"year_online":"unknown","construction_update":"","recent_news":"May 26, 2026: Cogent entered a definitive agreement to sell 10 data centers; closing expected on or after June 12, 2026 subject to HSR. DCD reports 1190 Allene Ave SW (Atlanta 2) is among the included assets.","notable_tenants":"","verified_name":"Cogent Data Center - Atlanta 2","verified_operator":"Cogent Communications","verified_owner":"Cogent Fiber, LLC (Cogent Communications) — sale to a newly formed I Squared Capital–sponsored entity announced; closing expected on or after June 12, 2026; no public confirmation of closing found as of 2026-06-29.","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; available carriers include Zayo, Verizon Business, and AT&T; wave-enabled; ports up to 100GE","num_buildings":1,"campus_acres":2.7,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"286":{"description":"Coloblox ATL1 is a carrier‑neutral colocation/interconnection facility operated by Coloblox at 1100 Circle 75 Parkway in Atlanta, notable for on‑site peering and multiple networks.","verified_status":"operational","power_capacity_mw":0,"total_sqft":19752,"year_online":"1998","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Coloblox ATL1","verified_operator":"Coloblox Data Centers","verified_owner":"Goldenrod Companies and SK Commercial Realty (joint venture)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Georgia high-technology data center equipment sales and use tax exemption (statewide; threshold-based). No site-specific abatement found.","natural_hazard_zone":"low risk"},"287":{"description":"Coloblox ATL2 (also referred to as SMY2) is an operational, carrier-neutral colocation facility operated by Coloblox at 900 Circle 75 Parkway in Atlanta. It serves as one of Coloblox’s metro Atlanta sites with carrier-neutral connectivity.","verified_status":"operational","power_capacity_mw":3,"total_sqft":21571,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Coloblox ATL2 (also known as SMY2)","verified_operator":"Coloblox Data Centers","verified_owner":"Goldenrod Companies (Fund II) / SK Commercial Realty JV","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; connections to major carriers including AT&T, Verizon, Level 3 (Lumen), Hurricane Electric, and TW Telecom, with additional networks available.","num_buildings":1,"campus_acres":6.95,"utility_provider":"Georgia Power","tax_incentives":"Georgia sales and use tax exemption exists for qualifying data center equipment; HB 696 extends eligibility to hyperscale colocation facilities meeting minimum investment thresholds. Applicability to this small (≈1 MW) site is unconfirmed.","natural_hazard_zone":"FEMA Flood Zone B/X – moderate flood hazard (area between 100-year and 500-year flood limits)"},"288":{"description":"CoreSite AT1 is CoreSite’s operational, carrier-neutral colocation data center at 55 Marietta St. NW in downtown Atlanta, offering a 62,000-square-foot facility with secure, low‑latency interconnection. CoreSite notes AT1 is in the second‑most interconnected building downtown and integrated the site into its portfolio in 2022.","verified_status":"operational","power_capacity_mw":0,"total_sqft":62000,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"No single anchor customer is publicly disclosed. Public sources indicate networks present in the 55 Marietta carrier hotel that interconnect with or are accessible from CoreSite AT1 include AT&T, Cogent Communications, Comcast, and FiberLight.","verified_name":"CoreSite AT1 - Atlanta Data Center","verified_operator":"CoreSite","verified_owner":"RadiusDC","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; 16 carriers in-building; direct access to 100+ across the street","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia statewide high-technology data center equipment sales and use tax exemption available to qualifying data centers; not confirmed for this facility.","natural_hazard_zone":""},"289":{"description":"CoreSite AT2 is CoreSite’s colocation data center at 1130 Powers Ferry Place in Marietta (part of its Atlanta campus), offering secure colocation, interconnection, and direct cloud connectivity. The facility totals about 67,000 square feet.","verified_status":"operational","power_capacity_mw":0,"total_sqft":67000,"year_online":"2004","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CoreSite AT2 - Marietta Data Center","verified_operator":"CoreSite","verified_owner":"American Tower Corporation","cooling_type":"chilled water","tier_level":"Tier III design standard","fiber_providers":"Carrier-neutral; access to Open Cloud Exchange (OCX) and Any2Exchange peering","num_buildings":1,"campus_acres":7.5,"utility_provider":"Marietta Power","tax_incentives":"Georgia statewide sales and use tax exemption for qualifying high-technology data centers (O.C.G.A. \u0000a7 48-8-3(68.1)) may apply if thresholds are met; participation by this facility is not confirmed. CoreSite highlights Virginia and Illinois programs on its site.","natural_hazard_zone":"low risk"},"290":{"description":"DataBank ATL1 is an operational colocation and high‑performance computing facility operated by DataBank at 760 W Peachtree St NW in Midtown Atlanta’s Georgia Tech Technology Square/CODA complex, offering 7.1 MW of critical IT load and 38,260 sq ft of IT space.","verified_status":"operational","power_capacity_mw":7.1,"total_sqft":94000,"year_online":"2019","construction_update":"Apr 6, 2026 — Commercial Alteration for “DATABANK-ATL1 GT DCR” (permit BB-202510750) noted as Issued; filing date Dec 22, 2025.","recent_news":"April 6, 2026: City of Atlanta permit listing for “DataBank ATL1 GT DCR” shows status Issued; detailed record BB-202510750 indicates a Commercial Alteration filed Dec 22, 2025.","notable_tenants":"Georgia Institute of Technology","verified_name":"DataBank ATL1 Midtown Atlanta Data Center","verified_operator":"DataBank","verified_owner":"HSRE and Portman Holdings LLC","cooling_type":"hybrid","tier_level":"Tier III design","fiber_providers":"Carrier-neutral; 8 onsite carriers","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia high-technology data center equipment sales and use tax exemption (HB 696, effective January 1, 2019)","natural_hazard_zone":"low risk"},"291":{"description":"DataBank ATL2 (Atlanta West End) is an operational colocation data center at 1100 White Street SW, operated by DataBank, offering 4MW critical IT load, 52,610 IT sq ft, and 18 onsite carriers.","verified_status":"operational","power_capacity_mw":4,"total_sqft":74000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank ATL2 – Atlanta West End Data Center","verified_operator":"DataBank","verified_owner":"Colo Facilities Atlanta LLC","cooling_type":"unknown","tier_level":"Tier III equivalent (design: 2N power, N+1 cooling); not Uptime-certified","fiber_providers":"Carrier-neutral; onsite carriers include Cogent. Dark-fiber providers on-net include BigFiber. DataBank indicates multiple onsite carriers.","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia high-technology data center equipment sales-and-use tax exemption (O.C.G.A. § 48-8-3(68.1)) may apply if thresholds are met; no ATL2-specific local abatement found.","natural_hazard_zone":"FEMA Flood Zone X (minimal flood hazard)"},"292":{"description":"DataBank ATL3 is an operational colocation data center at 1150 White Street SW in Atlanta’s West End, offering 47,490 IT square feet and 6MW critical IT load. DataBank completed an expansion of ATL3 in 2022.","verified_status":"operational","power_capacity_mw":6,"total_sqft":47490,"year_online":"unknown","construction_update":"","recent_news":"A Fire Occupancy permit for “Data Bank - 1150 WHITE SW ST” (FIRE-INSPECT-26-01926) was filed on May 6, 2026.","notable_tenants":"","verified_name":"DataBank ATL3 (Atlanta West End Data Center)","verified_operator":"DataBank","verified_owner":"DataBank (portfolio company backed by an investor consortium including DigitalBridge, Swiss Life Asset Managers & EDF Invest; later investments by TJC and IMCO)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Georgia High-Technology Data Center Equipment Sales & Use Tax Exemption (subject to investment thresholds); 2026 bills proposed to limit/eliminate the exemption.","natural_hazard_zone":""},"293":{"description":"DataBank ATL4 is a DataBank-operated, single-tenant colocation data center at 200 Selig Dr SW in Atlanta, adjacent to a Georgia Power substation and offering up to 40MW of critical IT load across about 212,710 sq ft of IT space.","verified_status":"operational","power_capacity_mw":40,"total_sqft":212710,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank ATL4 – South Fulton Data Center","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Eligible for Georgia High-Technology Data Center Equipment Exemption (state sales & use tax exemption on qualified data center equipment); no ATL4-specific local abatement identified.","natural_hazard_zone":""},"294":{"description":"DataBank ATL5 is a colocation data center under construction at 4764 Bakers Ferry Rd. SW in South Fulton, Georgia, and the first facility on DataBank’s new Lithia Springs campus. It is planned for 48MW of critical IT load and 160,200 IT square feet as part of a larger, 95-acre campus development.","verified_status":"under-construction","power_capacity_mw":48,"total_sqft":160200,"year_online":"unknown","construction_update":"May 4, 2023: Contractor announced groundbreaking for the new campus data center.","recent_news":"","notable_tenants":"","verified_name":"Lithia Springs Campus Data Center (ATL5)","verified_operator":"DataBank","verified_owner":"DB Data Center Boulder Park, LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"1 onsite carrier","num_buildings":2,"campus_acres":95,"utility_provider":"Georgia Power","tax_incentives":"Georgia Data Center Sales & Use Tax Exemption may apply to qualifying data center equipment purchases; no facility-specific local abatement verified.","natural_hazard_zone":""},"295":{"description":"DataCanopy operates a colocation data center at 2480 Rock House Rd, Lithia Springs, GA 30122. Built in 2009, the site currently offers up to 10 MW of critical power.","verified_status":"operational","power_capacity_mw":10,"total_sqft":0,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"PwC (PricewaterhouseCoopers) — directory-listed at/near 2480 Rock House Rd (no official operator announcement).","verified_name":"Data Canopy - Atlanta","verified_operator":"Data Canopy","verified_owner":"","cooling_type":"unknown","tier_level":"Tier 3+ / concurrently maintainable; LEED Gold Certified","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":18,"utility_provider":"","tax_incentives":"Georgia provides a 10-year sales and use tax exemption for qualifying hyperscale data centers; no facility-specific incentive was verified for this site.","natural_hazard_zone":"150 mph wind rating; FEMA flood zone not verified."},"296":{"description":"DC BLOX Atlanta West (ATL1) is a hyperscale-ready data center campus operated by DC BLOX at 1701 North River Road in Lithia Springs/Douglas County, Georgia, designed for large-scale hyperscale deployments.","verified_status":"under-construction","power_capacity_mw":200,"total_sqft":1370000,"year_online":"unknown","construction_update":"Aug 14, 2025 — DC BLOX closed a $1.15 billion green-loan financing for construction of the Douglas County (Atlanta West) hyperscale campus.","recent_news":"","notable_tenants":"","verified_name":"DC BLOX Atlanta West (ATL1) Hyperscale Data Center Campus","verified_operator":"DC BLOX","verified_owner":"DCB Atlanta West, LLC","cooling_type":"air-cooled","tier_level":"Tier III basis of design","fiber_providers":"Carrier‑neutral via DC BLOX dark fiber; direct dark‑fiber connections to 55/56 Marietta and 180 Peachtree in Atlanta, plus DC BLOX dark fiber to the Myrtle Beach CLS.","num_buildings":3,"campus_acres":100,"utility_provider":"GreyStone Power","tax_incentives":"Robust tax incentives coordinated by Elevate Douglas; local approvals include an amended tax incentive agreement for DCB Atlanta West, LLC and reporting of approximately $98M in incentives over 11 years.","natural_hazard_zone":"FEMA flood-zone designation not confirmed; regional review emphasizes flood-damage-prevention and stream/erosion controls. Facility designed with hardened construction (e.g., 150 mph wind rating)."},"297":{"description":"DC BLOX Atlanta East (ATL2) is DC BLOX’s hyperscale-ready data center campus under construction at 1726 Farmer Road in Conyers (Rockdale County), Georgia; the campus is listed as Coming Soon with 154 Critical MW (committed/planned) and 747,787 sq ft.","verified_status":"under-construction","power_capacity_mw":154,"total_sqft":747787,"year_online":"unknown","construction_update":"Oct 8, 2024: DC BLOX ‘breaks ground’/construction began. May 12, 2026: County materials reiterated DC BLOX as the one approved campus on Farmer Road while extending a countywide moratorium for new/expanded applications.","recent_news":"May 12, 2026: Rockdale County extended its moratorium on new/expanded data center applications through September 8, 2026; county materials the same day noted DC BLOX as the county’s one approved campus on Farmer Road.","notable_tenants":"","verified_name":"Atlanta East Hyperscale Data Center Campus – Rockdale County, GA","verified_operator":"DC BLOX","verified_owner":"DCB Atlanta East, LLC (DC BLOX)","cooling_type":"unknown","tier_level":"","fiber_providers":"DC BLOX dark fiber; routes to 55/56 Marietta, 180 Peachtree, and Myrtle Beach CLS; multiple diverse POEs/MMRs.","num_buildings":0,"campus_acres":72,"utility_provider":"","tax_incentives":"Georgia High-Technology Data Center equipment sales and use tax exemption (state program) may apply, subject to investment thresholds.","natural_hazard_zone":"Proximity to state waters/stream buffers; site-specific FEMA flood zone not determined."},"298":{"description":"Digital Realty ATL11 at 101 Aquila Way is a former wholesale data center built in 1999 that is no longer operating as a data center. In April 2026, BGO acquired the vacant site for redevelopment, and it is now marketed as a fully repositioned ~313,581 SF industrial/distribution facility available for lease.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":313581,"year_online":"1999","construction_update":"Apr 23, 2026: BGO announced redevelopment of the former data center into modern industrial space; the property is shown as Under Construction and listed with renovation completed in 2026.","recent_news":"Apr 23, 2026: BGO announced acquisition of the vacant former data center at 101 Aquila Way for redevelopment into modern industrial space; the facility is now marketed as a fully repositioned ~313,581 SF distribution building, with renovation completed in 2026.","notable_tenants":"","verified_name":"Digital Realty ATL11","verified_operator":"Digital Realty","verified_owner":"BGO (BentallGreenOak)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":17.46,"utility_provider":"","tax_incentives":"Georgia High-Technology Data Center Equipment Sales & Use Tax Exemption (O.C.G.A. 48-8-3(68.1))","natural_hazard_zone":"FEMA Flood Zone AE"},"299":{"description":"Digital Realty ATL13 is an operational, carrier‑neutral colocation and interconnection facility at 56 Marietta Street in downtown Atlanta, run by Digital Realty and noted for hosting the Southeast’s largest concentration of telecommunications companies.","verified_status":"operational","power_capacity_mw":5.5,"total_sqft":153000,"year_online":"unknown","construction_update":"","recent_news":"Apr–May 2026: Digital Realty pursued zoning changes for a proposed West End/Adair Park data center, citing the need to be near its 56 Marietta carrier‑hotel hub; the City of Atlanta was reviewing a text amendment enabling such development.","notable_tenants":"Cogent Communications; Level 3/Lumen; Clouvider (present). Historical: Equinix AT2/AT3 (decommissioned/lease exit). No single anchor tenant publicly named by the operator.","verified_name":"Atlanta ATL13 - 56 Marietta Street","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia offers a data center sales and use tax exemption, but issuance of new certificates was suspended July 1, 2024–June 30, 2026 (grandfathering applies). No ATL13-specific award identified; the separate West End proposal states it is not seeking tax breaks or public funding.","natural_hazard_zone":"Outside 100-year floodplain; Seismic Zone 2A"},"300":{"description":"ATL14 is Digital Realty’s operational colocation facility at 250 Williams Street NW in downtown Atlanta, totaling 18,000 ft². Digital Realty describes it as one of the largest multi‑tenant data centers in the Southeast.","verified_status":"operational","power_capacity_mw":1.6,"total_sqft":18000,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ATL14 Data Center / 250 Williams Street NW","verified_operator":"Digital Realty","verified_owner":"Mapletree Industrial Trust (MIT)","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; multiple network providers present (see PeeringDB facility entry); direct cloud connectivity options available.","num_buildings":1,"campus_acres":3.41,"utility_provider":"Georgia Power","tax_incentives":"Georgia high-technology data center equipment sales/use tax exemption is available statewide for qualifying investments; no ATL14-specific confirmation found.","natural_hazard_zone":"FEMA Flood Zones C and X (minimal flood hazard); overall low natural hazard exposure noted for the site."},"301":{"description":"Digital Realty ATL15 is one of two planned hyperscale data center buildings (ATL15/ATL16) on the former Fort Gillem site in Forest Park, GA, operated by Digital Realty; coverage cites a ~1.9 million sq ft campus across ~97 acres.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"June 2025: reporting noted Digital Realty filed to develop a two-building campus in Forest Park; Sept 3, 2025: Clayton County adopted a data center moratorium while noting a campus within Forest Park city limits; no public construction start/permit identified.","recent_news":"","notable_tenants":"","verified_name":"Digital Realty ATL15 (Fort Gillem)","verified_operator":"Digital Realty","verified_owner":"Digital Fort Gillem, LLC (Digital Realty Trust affiliate)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":97,"utility_provider":"Georgia Power","tax_incentives":"Clayton County Development Authority approved a $1B bond inducement and a county agency approved a property tax break likely worth tens of millions for the project in June 2025.","natural_hazard_zone":"FEMA Zone X (moderate risk; outside 100-year floodplain) – city-level indicator"},"302":{"description":"Planned Digital Realty colocation data center at 10 Forsyth St NW in downtown Atlanta: a proposed 10‑story, ~300,000‑sq‑ft facility with about 130,000 sq ft of white space, positioned as an effective expansion of Digital Realty’s downtown presence.","verified_status":"planned","power_capacity_mw":0,"total_sqft":300000,"year_online":"unknown","construction_update":"Sep 2024: Special Administrative Permit filing for a 300,000-sq-ft data center at 10 Forsyth St NW with an Oct 24, 2024 hearing; reporting also noted the project could move forward despite new Atlanta data-center restrictions. Earlier, the city application was reported in Jun 2022.","recent_news":"","notable_tenants":"","verified_name":"Digital Realty 10 Forsyth Street NW","verified_operator":"Digital Realty","verified_owner":"Spring Street (Atlanta), LLC (Centennial Yards Company, led by CIM Group)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral (adjacent to ATL13 with extensive carrier presence)","num_buildings":1,"campus_acres":1.08,"utility_provider":"","tax_incentives":"Georgia High‑Technology Data Center Equipment Sales & Use Tax Exemption (applicability to this site not confirmed).","natural_hazard_zone":""},"303":{"description":"375 Riverside Parkway is an operational, multi-tenant data center building in Lithia Springs (Atlanta area), owned by Mapletree and historically marketed by Digital Realty; it houses provider-operated suites including Centersquare/Csquare (formerly Cyxtera) and AT&T. The whole-building footprint is about 250,191–250,193 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":250191,"year_online":"1998","construction_update":"","recent_news":"","notable_tenants":"Cyxtera (now Centersquare/Csquare), AT&T, CenturyLink, and Zayo","verified_name":"Csquare ATL1 (375 Riverside Parkway, Lithia Springs)","verified_operator":"Csquare (Centersquare)","verified_owner":"Mapletree Industrial Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":31.99,"utility_provider":"","tax_incentives":"Georgia statewide high-technology data center equipment sales & use tax exemption (subject to statutory investment/job thresholds).","natural_hazard_zone":"Described as outside the flood zone (no FEMA zone letter cited)."},"304":{"description":"Edged Atlanta ATL01-01 (ATL1) is a colocation data center operated by Edged at 1800 Thomas Street NW in Atlanta, the first building on a ~70+ acre, 169 MW campus near downtown. Launched in August 2024, it features ultra‑efficient, waterless cooling optimized for high‑density and AI workloads.","verified_status":"operational","power_capacity_mw":27,"total_sqft":208000,"year_online":"2024","construction_update":"ATL01-01 is operational. Campus expansion: ATL01-03 topped out on Apr 24, 2026 and is expected to be operational in early 2027.","recent_news":"Apr 24–28, 2026: Edged topped out the 42 MW ATL01-03 building on the Atlanta campus, with operations expected in early 2027; trade press reported all three data centers on the 169 MW campus are fully leased.","notable_tenants":"","verified_name":"Edged Atlanta ATL01-01","verified_operator":"Edged Energy","verified_owner":"Endeavour","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":80,"utility_provider":"","tax_incentives":"$32 million in tax savings approved by Fulton board for the Tilford Yard data center project.","natural_hazard_zone":"ZIP 30318 has a major flood risk; low seismicity region under legacy UBC zoning."},"305":{"description":"Edged Energy’s Atlanta01-02 (ATL01-02 / ATL2) is the second colocation data center on Edged’s Tilford Yard Atlanta campus, located at 1760 Thomas Street NW, offering a ~450k sq ft facility within a 169 MW campus.","verified_status":"operational","power_capacity_mw":100,"total_sqft":452280,"year_online":"2026","construction_update":"","recent_news":"Apr 24–28, 2026: Edged topped out the Atlanta campus’s third 42 MW building (ATL01-3) and said the campus is fully leased; trade press reported the top-out and campus details the same week.","notable_tenants":"","verified_name":"Edged ATL01-02 (also listed as Atlanta01-02 / Edged Atlanta ATL2), 1760 Thomas Street NW, Atlanta, GA 30318","verified_operator":"Edged Energy","verified_owner":"Edged Atlanta Tilford 2 LLC","cooling_type":"air-cooled","tier_level":"Tier III design","fiber_providers":"carrier-neutral; multiple fiber providers; four diverse fiber entry points; dual MMRs per building","num_buildings":3,"campus_acres":80,"utility_provider":"Georgia Power","tax_incentives":"DAFC bond/tax-abatement package for the Edged Atlanta campus; ~$32M abatement line item and projected ~$198M in local taxes over 10 years despite the abatement.","natural_hazard_zone":"unknown"},"306":{"description":"Edged Energy’s Atlanta01-03 (ATL01-3/ATL3) is the third data center at 1740 Thomas Street NW in Atlanta, designed for 42 MW on an 80+ acre campus and using waterless ThermalWorks cooling; the single‑story facility is approximately 220,000 sq ft.","verified_status":"under-construction","power_capacity_mw":42,"total_sqft":220000,"year_online":"2027","construction_update":"Topped out in April 2026; expected to be operational in early 2027.","recent_news":"On April 24, 2026, Edged announced it had topped out the 42 MW ATL01‑3 facility at 1740 Thomas Street NW, with operations expected in early 2027; DCD reported the milestone on April 28, 2026.","notable_tenants":"","verified_name":"Edged ATL01-03","verified_operator":"Edged Energy","verified_owner":"Edged Atlanta LLC (subsidiary of Endeavour)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":80,"utility_provider":"Georgia Power","tax_incentives":"Georgia data center sales and use tax exemption under O.C.G.A. § 48-8-3(68.1) (HB 696) for qualifying colocation facilities meeting investment and job thresholds.","natural_hazard_zone":"Localized flood risk associated with the Proctor Creek watershed; no specific FEMA high-risk (Zone AE) designation confirmed for the parcel."},"307":{"description":"EdgeConneX Atlanta ATL01 is an operational edge colocation data center at 1003 Donnelly Avenue SW, Atlanta, GA, operated by EdgeConneX. The two-hall site offers about 2.1 MW of N+1 power and 29,527 sq ft of space.","verified_status":"operational","power_capacity_mw":2.1,"total_sqft":29527,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"Charter, Comcast, Netflix, Twitch","verified_name":"EdgeConneX Atlanta - ATL01","verified_operator":"EdgeConneX","verified_owner":"EdgeConneX (building owner/operator); EdgeConneX is controlled by EQT Infrastructure, with Sixth Street as a minority investor","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Southern Telecom","num_buildings":2,"campus_acres":0,"utility_provider":"Georgia Power Co.","tax_incentives":"Georgia data-center sales/use tax exemption potentially available for qualifying investments; no ATL01-specific award confirmed","natural_hazard_zone":""},"308":{"description":"EdgeConneX Atlanta ATL02 is an operational EdgeConneX edge/colocation data center at 1101 Donnelly Avenue SW in Atlanta. It is part of the company’s two-site Atlanta campus and has earned ENERGY STAR certification; the site is built to expand, with full build-out planned up to ~14 MW.","verified_status":"operational","power_capacity_mw":9,"total_sqft":91980,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX ATL02","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Megaport; BIG Fiber (Bandwidth IG)","num_buildings":2,"campus_acres":0,"utility_provider":"","tax_incentives":"Georgia high-technology/data-center equipment sales and use tax exemption may be available to qualifying data centers; no ATL02-specific award identified.","natural_hazard_zone":""},"309":{"description":"EdgeConneX Atlanta ATL11–13 is a three‑building hyperscale data center campus in Union City (Fulton County), Georgia, developed/operated by EdgeConneX and associated with Microsoft’s new Union City project along Stonewall Tell Road.","verified_status":"under-construction","power_capacity_mw":202,"total_sqft":2101500,"year_online":"2026","construction_update":"2025-05-30: Banks launched a US$2.2–2.3B project financing for EdgeConneX’s Atlanta campus; 2024-06-25: DAFC approved a $75M tax incentive for the Microsoft data center; 2024-06-24: Land Disturbance Permit filed.","recent_news":"","notable_tenants":"Microsoft (end user/landowner)","verified_name":"EdgeConneX ATL11-13","verified_operator":"EdgeConneX","verified_owner":"EdgeConneX / TA Realty JV (EQT Infrastructure-backed EdgeConneX)","cooling_type":"unknown","tier_level":"Tier III (designed)","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"$75M tax abatement from the Development Authority of Fulton County","natural_hazard_zone":"FEMA Flood Zone X (low flood risk)"},"310":{"description":"Equinix AT1 is an operational, carrier-neutral Equinix IBX colocation facility at 180 Peachtree Street NW occupying the 2nd, 3rd, and 6th floors in downtown Atlanta.","verified_status":"operational","power_capacity_mw":4,"total_sqft":79200,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix AT1 (Atlanta IBX Data Center)","verified_operator":"Equinix","verified_owner":"Mapletree Industrial Trust (via Mapletree Redwood Data Centre Trust JV)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Equinix Fabric/Internet Exchange; connectivity to Microsoft Azure ExpressRoute, PacketFabric, and Megaport","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia High-Technology Data Center Equipment sales/use tax exemption (statewide, for qualifying colocation data centers; facility-specific participation not confirmed)","natural_hazard_zone":""},"311":{"description":"Equinix AT2 was an Equinix IBX colocation facility in the 56 Marietta carrier hotel in Atlanta. Equinix has exited leased sites in the U.S., and the AT2 listing is no longer active.","verified_status":"decommissioned","power_capacity_mw":0.478,"total_sqft":13999,"year_online":"unknown","construction_update":"No active construction or expansion. Most recent milestone: Equinix exited leased U.S. sites in 2024 and the AT2 listing is no longer active.","recent_news":"","notable_tenants":"","verified_name":"Equinix AT2","verified_operator":"Equinix","verified_owner":"Digital Realty Trust","cooling_type":"evaporative","tier_level":"Tier II equivalent","fiber_providers":"Carrier-neutral; 27+ carriers including EXA Infrastructure, FiberLight, and i3D.net; marketplace listings cite 50+ providers.","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia statewide data center sales and use tax exemption for qualifying data centers (investment threshold $100M–$250M and 20+ jobs).","natural_hazard_zone":"FEMA Flood Zone X (Shaded) — outside 100-year flood plain."},"312":{"description":"Equinix AT4 is an operational Equinix IBX colocation data center located at 450 Interstate North Parkway, Atlanta, GA 30339, offering carrier-neutral colocation and interconnection services.","verified_status":"operational","power_capacity_mw":12,"total_sqft":87971,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix AT4 (Atlanta AT4 IBX Data Center)","verified_operator":"Equinix","verified_owner":"","cooling_type":"chilled water","tier_level":"Tier 2 equivalent","fiber_providers":"carrier-neutral; examples include Zayo, Coloblox Data Centers, Fiber Fast Homes, Southeast Networks, C3Aero","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia statewide data center sales/use tax exemption (HB 696) potentially available if AT4 or its tenants meet the program’s job and investment thresholds; no AT4-specific award identified.","natural_hazard_zone":""},"313":{"description":"Equinix AT5 was a carrier-neutral colocation data center at 2836 Peterson Place NW in Norcross (Atlanta metro). Equinix exited the leased site by June 30, 2024, and the location is no longer active on Equinix’s Atlanta roster.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":40949,"year_online":"unknown","construction_update":"June 30, 2024: Equinix exited the AT5 lease/decommissioned the site; no active construction or expansion.","recent_news":"","notable_tenants":"","verified_name":"Equinix AT5 (Atlanta/Norcross) IBX Data Center — 2836 Peterson Place NW, Norcross, GA 30071 (decommissioned mid-2024)","verified_operator":"Equinix (former operator; facility decommissioned circa mid‑2024)","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; access to a wide range of carriers (Equinix Atlanta peering ecosystem present)","num_buildings":1,"campus_acres":0,"utility_provider":"City of Norcross (Norcross Electric)","tax_incentives":"Georgia Data Center Sales & Use Tax Exemption available to qualifying projects (e.g., 20+ quality jobs and $100M–$250M investment thresholds depending on county); no AT5-specific award confirmed.","natural_hazard_zone":""},"314":{"description":"Flexential Atlanta - Norcross 1 is an operational data center operated by Flexential at 2775 Northwoods Pkwy in Peachtree Corners/Norcross, Georgia.","verified_status":"operational","power_capacity_mw":1.8,"total_sqft":32740,"year_online":"2007","construction_update":"Peachtree Corners advanced SUP2025-002 for a data processing facility covering 2755 and 2775 Northwoods Parkway (late 2025), aligning with Flexential’s announced adjacent Norcross 2 expansion plans.","recent_news":"On April 14, 2026, Flexential announced the adjacent Atlanta – Norcross 2 facility at 2755 Northwoods Parkway with delivery expected in the first half of 2028.","notable_tenants":"","verified_name":"Atlanta - Norcross 1 data center","verified_operator":"Flexential","verified_owner":"Flexential","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; access to 80+ carriers; examples include AT&T, Lumen, Zayo, Comcast, Arelion; marketplace listings also note Megaport and FiberLight","num_buildings":1,"campus_acres":3.23,"utility_provider":"","tax_incentives":"Georgia High-Technology Data Center Equipment sales/use tax exemption exists; in counties >50,000 population, the threshold is generally $250M in expenditures over seven consecutive years plus job requirements. No facility-specific award identified.","natural_hazard_zone":"FEMA Flood Zone X (low-to-moderate flood risk); Low seismic risk (Gwinnett County)"},"315":{"description":"Flexential Atlanta – Norcross 2 is a planned Flexential colocation data center at 2755 Northwoods Parkway in Norcross/Peachtree Corners, adjacent to the existing Norcross facility, and represents the company’s fifth Atlanta-area site, designed for secure, high‑density and AI-ready workloads.","verified_status":"planned","power_capacity_mw":4.5,"total_sqft":48000,"year_online":"2028 (expected first half)","construction_update":"Dec 2025: Peachtree Corners approved SUP2025-002 allowing Flexential to retrofit/expand data center operations at 2755 and 2775 Northwoods Parkway. Apr 14, 2026: Flexential announced the Norcross 2 development with an expected H1 2028 go‑live.","recent_news":"On April 14, 2026, Flexential announced the Atlanta – Norcross 2 data center at 2755 Northwoods Parkway, with an expected go‑live in the first half of 2028; the launch was covered by industry media.","notable_tenants":"","verified_name":"Flexential Atlanta - Norcross 2 Data Center","verified_operator":"Flexential","verified_owner":"Flexential","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":0,"utility_provider":"","tax_incentives":"Georgia High-Technology Data Center Equipment Sales & Use Tax Exemption (statewide program; qualification depends on meeting statutory thresholds).","natural_hazard_zone":""},"316":{"description":"Flexential Atlanta - Alpharetta is an operational colocation data center at 12655 Edison Drive, Alpharetta, GA, offering a 142,475-square-foot footprint and 6 MW of critical power. The site was originally opened by Peak 10 in 2014 and is now operated by Flexential.","verified_status":"operational","power_capacity_mw":6,"total_sqft":142475,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Atlanta - Alpharetta","verified_operator":"Flexential","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Georgia sales and use tax exemption for qualifying data center equipment remains active (veto preserved the program).","natural_hazard_zone":"low risk"},"317":{"description":"Flexential Atlanta–Douglasville 1 is an operational Flexential colocation data center at 1700 N. River Road, Douglasville, GA, offering a 205,000+ square‑foot footprint and 22.5 MW of critical power.","verified_status":"operational","power_capacity_mw":22.5,"total_sqft":205000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"DigitalOcean; CoreWeave","verified_name":"Atlanta - Douglasville 1 Data Center","verified_operator":"Flexential","verified_owner":"Flexential","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; 360+ on-net carriers","num_buildings":1,"campus_acres":0,"utility_provider":"GreyStone Power Corporation","tax_incentives":"Georgia statewide high-technology data center equipment sales and use tax exemption (subject to investment thresholds); no site-specific abatement identified.","natural_hazard_zone":""},"318":{"description":"Flexential Atlanta – Douglasville 2 is an operational Flexential colocation data center at 1750 N. River Road, Douglasville, GA, designed for high‑density AI/ML workloads and offering 36 MW of capacity across 358,000 sq ft.","verified_status":"operational","power_capacity_mw":36,"total_sqft":358000,"year_online":"2024","construction_update":"May 12–13, 2025: Flexential acquired Douglasville 2 (transitioned from leased to owned).","recent_news":"","notable_tenants":"CoreWeave","verified_name":"Flexential Atlanta - Douglasville 2 data center","verified_operator":"Flexential","verified_owner":"Flexential","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":44,"utility_provider":"","tax_incentives":"2017 City of Douglasville property-tax abatement for a ~$200M data center at this site (Project Smart). Current abatement terms under Flexential ownership not publicly confirmed.","natural_hazard_zone":"Tornado/severe-storm risk (regional); FEMA flood zone unknown"},"319":{"description":"GI Partners Alpharetta is an operational data center at 4905 North Point Parkway in Alpharetta, GA, acquired by GI Partners in October 2025. The single-site facility spans about 185,000 sq ft on roughly 38–39 acres and has been expanded to around 15 MW of capacity.","verified_status":"operational","power_capacity_mw":15.2,"total_sqft":185000,"year_online":"unknown","construction_update":"June 2026: Alpharetta docketed PH-26-12 (Royal 400 Data Center – Change of Condition) for 4905 North Point Parkway, tied to a potential expansion at the existing facility.","recent_news":"In June 2026, Alpharetta listed PH-26-12, “Royal 400 Data Center – Change of Condition,” for 4905 North Point Parkway regarding an expansion at the existing data center.","notable_tenants":"","verified_name":"GI Partners ATL2 (GI Partners Alpharetta)","verified_operator":"GI Partners","verified_owner":"GI Partners","cooling_type":"chilled water","tier_level":"Tier III design (concurrently maintainable); not Uptime-certified","fiber_providers":"Zayo; Crown Castle; fiber-rich corridor (carrier-neutral).","num_buildings":1,"campus_acres":38,"utility_provider":"Georgia Power Company","tax_incentives":"Georgia statewide data center sales/use tax exemption may apply if statutory thresholds are met; no facility-specific local abatement identified.","natural_hazard_zone":""},"320":{"description":"H5 Data Centers operates an interconnection-focused colocation data center and carrier hotel at 345 Courtland St. NE in downtown Atlanta, totaling about 110,000 square feet. The site serves as a network-dense hub for regional connectivity.","verified_status":"operational","power_capacity_mw":35,"total_sqft":110000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"NewCloud Networks; Southern Telecom","verified_name":"H5 Atlanta Data Center","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers","cooling_type":"chilled water","tier_level":"Tier III equivalent","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.52,"utility_provider":"Georgia Power","tax_incentives":"Eligible for Georgia Data Center Sales & Use Tax Exemption (subject to state thresholds/qualifications); operator materials note 100% sales tax exemption on IT equipment and software.","natural_hazard_zone":"low risk"},"321":{"description":"Colocation data center at 40 Perimeter Center East operated by HorizonIQ (INAP’s successor), situated in an 88,000 sq ft Tier III facility with 10 MW available and an estimated 45,000 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":10,"total_sqft":88000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Internap Atlanta: 40 Perimeter Center (also known as HorizonIQ Atlanta 2)","verified_operator":"HorizonIQ","verified_owner":"Lincoln Property Company affiliate: BBK Coke Data Center, LLC","cooling_type":"chilled water","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":12.76,"utility_provider":"Georgia Power","tax_incentives":"Georgia High‑Technology Data Center Equipment sales & use tax exemption (subject to minimum investment thresholds).","natural_hazard_zone":"low risk"},"322":{"description":"Internap Atlanta ACS003 is an operational HorizonIQ (formerly INAP) colocation facility at 1033 Jefferson St NW in Atlanta, located within QTS’s larger Atlanta 1 campus. It is a leased presence inside QTS rather than a standalone site, so campus-scale specs should not be applied to ACS003.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"HorizonIQ Atlanta 3 (legacy Internap Atlanta ACS003), located within QTS Atlanta 1 / Atlanta-Metro DC1 at 1033 Jefferson St NW","verified_operator":"HorizonIQ for the ACS003 colocation presence; host campus operated by QTS Data Centers","verified_owner":"QTS Data Centers / QTS Realty Trust, owned by Blackstone funds including Blackstone Infrastructure Partners, Blackstone Real Estate Income Trust (BREIT), and Blackstone Property Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":99,"utility_provider":"Georgia Power","tax_incentives":"Georgia high-technology data center equipment sales/use tax exemption (HB 696), effective Jan. 1, 2019 through Dec. 31, 2028; Fulton/Atlanta threshold commonly cited as $250M of qualifying expenditures over 7 years. Site-specific use by ACS003 not confirmed.","natural_hazard_zone":""},"323":{"description":"Lumen Atlanta 1 is a Lumen Technologies colocation/telecom facility located at 345 Courtland St NE in downtown Atlanta, housed within H5 Data Centers’ 110,000 sq ft carrier-hotel building. Its downtown carrier-hotel location provides dense interconnection options.","verified_status":"operational","power_capacity_mw":6,"total_sqft":42194,"year_online":"1998","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Atlanta 1","verified_operator":"Lumen Technologies","verified_owner":"H5 Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; notable providers include AT&T, Lumen/Level 3, FiberLight, Verizon, Zayo, Windstream, Southern Telecom, Atlantic Broadband","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Georgia High-Technology Data Center Equipment sales/use tax exemption may apply to qualifying investments; no facility-specific abatement identified.","natural_hazard_zone":""},"324":{"description":"Lumen Atlanta 2 is an operational Lumen Technologies colocation/telecom facility in the Peachtree data center building at 180 Peachtree Street NW, occupying the 3rd and 4th floors. Public listings show ~120,280 sq ft total space with ~45,000 sq ft of raised floor.","verified_status":"operational","power_capacity_mw":0,"total_sqft":120280,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Atlanta 2","verified_operator":"Lumen Technologies","verified_owner":"Mapletree Industrial Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia high-technology data center equipment sales and use tax exemption (subject to meeting county-based investment thresholds).","natural_hazard_zone":""},"325":{"description":"Lumen Atlanta 5 is a Lumen Technologies telecom/colocation facility at 953 Donnelly Ave SW in Atlanta, GA, listed with approximately 2,400 sq ft total and 792 sq ft of colocation space. It is described by marketplace listings as a fully operational legacy site on Lumen’s network footprint.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Atlanta 5","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia high-technology data center equipment sales & use tax exemption (subject to meeting minimum investment thresholds); no site-specific participation identified.","natural_hazard_zone":"Fulton County: very low seismic risk; some tornado and inland flood exposure (regional)."},"326":{"description":"Lumen Atlanta 6 is an operational Lumen Technologies telecom/colocation data center at 874 DeKalb Avenue Northeast, Atlanta, GA 30307, listed with 21,658 sq ft total and 6,151 sq ft of colocation/raised-floor space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":21658,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Atlanta 6","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia high-technology data center equipment sales and use tax exemption (statewide program; qualification depends on meeting investment/job thresholds).","natural_hazard_zone":"unknown"},"327":{"description":"Lumen College Park 1 is an operational Lumen Technologies telecom/colocation data center at 4311 Best Rd, College Park, Georgia. Public facility listings confirm the site and operator, while property records show an 8,364 sq ft building from 1998 and no published power capacity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8364,"year_online":"1998 (building year; online date unknown)","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen College Park 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"College Park Power","tax_incentives":"Georgia Data Center Sales & Use Tax Exemption (statewide program; eligibility depends on meeting investment and job thresholds).","natural_hazard_zone":""},"328":{"description":"Lumen Doraville 1 is an operational Lumen Technologies colocation/telecom data center at 6855 Crescent Ave/Dr NE in the Doraville/Atlanta, GA 30340 area, noted for approximately 43,120 sq ft of total space and 10,449 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":43120,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Doraville 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen/Level 3","num_buildings":0,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia high-tech data center sales and use tax exemption may apply to qualifying projects; no site-specific abatement found.","natural_hazard_zone":"Inland DeKalb County; moderate flood/storm risk; site-specific FEMA zone not determined."},"329":{"description":"Mapletree 180 Peachtree is a multi-tenant data center at 180 Peachtree Street NW in downtown Atlanta, held within Mapletree Industrial Trust’s US data center portfolio and operated via the Mapletree Redwood Data Centre Trust JV; the six‑storey property lists 370,498 sq ft of lettable area.","verified_status":"operational","power_capacity_mw":0,"total_sqft":370498,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"Equinix (AT1), Lumen (Atlanta 2), and Lunavi.","verified_name":"180 Peachtree Street NW, Atlanta","verified_operator":"Equinix (AT1) and Lumen (Atlanta 2)","verified_owner":"Mapletree Industrial Trust (MIT)","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral; >35 network providers (example: Cogent present at Equinix AT1)","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X; Seismic Design Category 1"},"330":{"description":"Mapletree 1001 Windward is a data center at 1001 Windward Concourse in Alpharetta, Georgia, held within Mapletree Industrial Trust’s Mapletree Redwood Data Centre Trust portfolio; the property is listed as a Data Centre with 184,553 sq ft of lettable area.","verified_status":"operational","power_capacity_mw":0,"total_sqft":184553,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"1001 Windward Concourse (Mapletree: 1001 Windward Data Center)","verified_operator":"Mapletree Redwood Data Centre Trust / Mapletree Industrial Trust","verified_owner":"Cumberland DC Assets LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":19.4,"utility_provider":"","tax_incentives":"Georgia High-Tech Data Center Equipment Sales & Use Tax Exemption (statewide program; facility-specific qualification not confirmed).","natural_hazard_zone":"General floodplain guidance available; parcel-specific FEMA flood zone not confirmed in sources (likely outside SFHA)."},"331":{"description":"Menlo Digital Atlanta is an operational colocation data center at 760 Doug Davis Dr (Hapeville/Atlanta), GA 30354, operated by Menlo Digital after Menlo Equities acquired the former Digital Realty ATL12 facility in July 2025. Public listings peg the building at roughly 31,000 sqm (~334k sq ft).","verified_status":"operational","power_capacity_mw":0,"total_sqft":333681,"year_online":"1992","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Menlo Digital: Atlanta, GA (760 Doug Davis Drive; former Digital Realty ATL12)","verified_operator":"Menlo Digital","verified_owner":"Menlo Equities","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multiple carriers and diverse fiber paths (specific carriers not confirmed)","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia High‑Technology Data Center Equipment sales & use tax exemption is available subject to meeting investment/job thresholds; no facility‑specific award identified.","natural_hazard_zone":"FEMA Flood Zone A (1% annual-chance flood)"},"332":{"description":"QTS Atlanta 1 DC2 is a hyperscale data center operated by QTS Data Centers at 1025 Jefferson St NW on the Atlanta 1 campus, opened in Oct 2020 with 72 MW of capacity, 240,000 sq ft of data hall space, and roughly 495,000 gross sq ft.","verified_status":"operational","power_capacity_mw":72,"total_sqft":495000,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"Two existing strategic hyperscale customers/anchor tenants (unnamed) with ~16 MW total initial commitments.","verified_name":"QTS Atlanta 1 DC2","verified_operator":"QTS Data Centers","verified_owner":"QTS Realty Trust (Blackstone)","cooling_type":"air-cooled","tier_level":"Tier IIB (design)","fiber_providers":"carrier-neutral","num_buildings":4,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"State: Georgia sales/use tax exemption for data centers (HB 696) through Dec 31, 2028 for qualifying projects. Local: DAFC considered/granted a 10-year property tax abatement tied to a $700M tenant equipment deployment at 1025 Jefferson St NW.","natural_hazard_zone":"unknown"},"333":{"description":"QTS Atlanta 1 DC3 is an operational hyperscale data center operated by QTS Data Centers at 953 Herndon St NW, within the Atlanta 1 mega-campus that spans 99 acres and offers 278+ MW of campus power.","verified_status":"operational","power_capacity_mw":20,"total_sqft":200000,"year_online":"unknown","construction_update":"Aug 7–13, 2024: Multiple DC3 data hall fit-out permits filed (DC3 DH 2200, DC3 DH 1200, DC3 DH 1100).","recent_news":"","notable_tenants":"","verified_name":"QTS Atlanta 1 DC3","verified_operator":"QTS Data Centers","verified_owner":"Blackstone funds via QTS Realty Trust (QTS Data Centers); expansion developer entity: West Midtown Acquisition Company, LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; direct fiber access; redundant campus fiber conduit","num_buildings":0,"campus_acres":99,"utility_provider":"Georgia Power","tax_incentives":"No active local abatement confirmed; QTS withdrew a requested $45M Development Authority of Fulton County tax break for the BeltLine/Westside campus expansion in 2023.","natural_hazard_zone":""},"334":{"description":"QTS Atlanta 1 DC4 is a hyperscale data center building operated by QTS Data Centers on the Atlanta 1 mega campus in Atlanta, Georgia. The campus at 1103 Herndon St NW features on‑site Georgia Power substations and offers 278MW+ campus capacity across 99 acres.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Atlanta 1 DC4","verified_operator":"QTS Data Centers (QTS Realty Trust, LLC)","verified_owner":"Blackstone (BREIT & Blackstone Infrastructure Partners) via QTS Realty Trust","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; direct fiber access to a wide variety of carrier alternatives.","num_buildings":0,"campus_acres":99,"utility_provider":"Georgia Power","tax_incentives":"No active local abatement confirmed; a proposed ~$45M/10‑year tax break tied to the BeltLine-area expansion was paused then withdrawn in 2023.","natural_hazard_zone":"Regional flood exposure in the Proctor Creek watershed; inland/low hurricane exposure; generally low seismic risk."},"335":{"description":"QTS Atlanta 1 is a hyperscale/mega data center campus in Atlanta, Georgia operated by QTS Data Centers, notable for on-site Georgia Power substations and rich carrier connectivity.","verified_status":"operational","power_capacity_mw":278,"total_sqft":970000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Atlanta 1","verified_operator":"QTS Data Centers","verified_owner":"Blackstone (via QTS Realty Trust, acquired in 2021)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":99,"utility_provider":"Georgia Power","tax_incentives":"Georgia statewide data center sales & use tax exemption; 2023 proposed ~$45M local property tax abatement for the Atlanta site was paused/shelved.","natural_hazard_zone":""},"336":{"description":"QTS Suwanee 1 DC1 is an operational QTS Data Centers colocation/hyperscale facility at 300 Satellite Blvd NW in Suwanee, Georgia, on the Suwanee 1 campus; marketplace listings indicate roughly 385,000 sq ft with about 26 MW of capacity.","verified_status":"operational","power_capacity_mw":26,"total_sqft":385000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Suwanee 1 DC1","verified_operator":"QTS Data Centers","verified_owner":"Blackstone (QTS Realty Trust)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia data center equipment sales tax exemption (effective 2019) with a statewide pause from July 1, 2024 to June 30, 2026.","natural_hazard_zone":"Moderate city-level risk; flood is the most significant hazard in Suwanee."},"337":{"description":"QTS Suwanee 1 DC2 is an operational hyperscale data center owned and operated by QTS at 120 Satellite Blvd NW in Suwanee, Georgia, on the Suwanee 1 campus. QTS lists the campus at 50+ MW of critical capacity, and directories report the DC2 building at about 376,900 square feet.","verified_status":"operational","power_capacity_mw":30,"total_sqft":376900,"year_online":"unknown","construction_update":"No active construction: DataCenterHawk shows no leaseable power under construction for DC2. The last noted milestone was QTS’s expansion/refresh announcement for DC2 adding space and power on the Suwanee campus.","recent_news":"","notable_tenants":"","verified_name":"QTS Suwanee 1 DC2 (also marketed as Atlanta Suwanee DC2)","verified_operator":"QTS Data Centers","verified_owner":"Quality Investment Properties Suwanee, LLC (QTS); ultimate ownership via Blackstone Infrastructure Partners and Blackstone Real Estate Income Trust (BREIT)","cooling_type":"chilled water","tier_level":"Not Uptime-certified; N+1 redundancy design elements (e.g., N+1 chiller plant)","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":53,"utility_provider":"","tax_incentives":"Georgia data center sales & use tax exemption under O.C.G.A. § 48-8-3(68.1), subject to investment and job thresholds.","natural_hazard_zone":"County exposure to flood, tornado, and hurricane remnant winds (Gwinnett County Hazard Mitigation Plan); specific FEMA flood zone for 120 Satellite Blvd NW not cited."},"338":{"description":"QTS Fayetteville (Project Excalibur) is a QTS Data Centers hyperscale campus at 1435 Hwy 54 W in Fayetteville, Georgia, planned for roughly 7 million sq ft across up to 16 buildings with ~6.6M sq ft of data-center space and ~400k sq ft of office. It serves as a large-scale East Coast hub for hyperscale and AI workloads and continues to expand.","verified_status":"operational","power_capacity_mw":250,"total_sqft":7000000,"year_online":"2026","construction_update":"Jan 15, 2026: QTS filed for the “ATL2 East” expansion (approx. 2M sq ft on ~313 acres). Feb 22, 2026: Local report quoted QTS describing the site as an active construction site.","recent_news":"Jan 15, 2026: QTS filed to expand the Fayetteville campus with “ATL2 East,” a 2 million sq ft development on approximately 313 acres.","notable_tenants":"Microsoft","verified_name":"QTS Fayetteville Data Center Campus (also called QTS Atlanta-Fayetteville; Project Excalibur)","verified_operator":"QTS Data Centers","verified_owner":"Blackstone/QTS Data Centers","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":16,"campus_acres":615,"utility_provider":"Georgia Power Company","tax_incentives":"Georgia high-technology data center equipment sales and use tax exemption may apply if statutory investment and job thresholds are met.","natural_hazard_zone":""},"339":{"description":"QTS ATL2 East Campus is a planned QTS Data Centers hyperscale expansion in Fayetteville, Georgia (DRI #4603), described as a ~2,000,000-sq-ft technological facility on roughly 313 acres within the broader QTS Fayetteville campus.","verified_status":"planned","power_capacity_mw":0,"total_sqft":2000000,"year_online":"2029","construction_update":"Jan 13, 2026 — Georgia DCA DRI #4603 initial filing submitted for ATL2 East (2,000,000 sq ft on ~313 acres) and proceeding through planning/entitlements; no evidence ATL2 East is under vertical construction yet.","recent_news":"January 2026: media reported QTS filed to develop a large Fayetteville expansion; June 2026: local coverage highlighted resident concerns and noted construction on the campus is expected to continue into 2029.","notable_tenants":"","verified_name":"QTS ATL2 East Campus","verified_operator":"QTS Data Centers","verified_owner":"Blackstone (via QTS Data Centers)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":313,"utility_provider":"Georgia Power","tax_incentives":"Georgia High-Technology Data Center Equipment Sales & Use Tax Exemption (statewide 100% sales & use tax exemption on qualifying data center equipment for eligible projects).","natural_hazard_zone":"Moderate natural hazard exposure; FEMA Special Flood Hazard Areas exist within the City (NFIP participant) and county risk is rated moderate (score 39%)."},"340":{"description":"An operational downtown Atlanta colocation/telecom facility at 270 Peachtree operated by Southern Telecom, a telecommunications subsidiary of Southern Company; it provides about 5,400 sq ft of colocation space on Southern’s underground network.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"GigSouth (selected the facility as a network hub in 2019).","verified_name":"Southern Telecom Atlanta – 270 Peachtree Colocation Facility","verified_operator":"Southern Telecom, Inc.","verified_owner":"Richard Bowers & Co.","cooling_type":"unknown","tier_level":"","fiber_providers":"Southern Telecom-owned dark fiber metro ring connecting 270 Peachtree to local carrier hotels; cross-connects via STI network.","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia High-Technology Data Center Equipment sales/use tax exemption exists for qualifying projects; no public, facility-specific incentive identified for 270 Peachtree.","natural_hazard_zone":"low risk"},"341":{"description":"STACK Atlanta ATL01 is STACK Infrastructure’s colocation campus at 3200 Webb Bridge Road in Alpharetta, GA, delivering 20MW across two buildings (ATL01A and ATL01B).","verified_status":"operational","power_capacity_mw":20,"total_sqft":238000,"year_online":"2012","construction_update":"May 2020: STACK announced and began development of a two-story, 12MW expansion (ATL01B) on a six-acre parcel adjacent to its existing Alpharetta campus.","recent_news":"","notable_tenants":"","verified_name":"STACK ATL01 – Alpharetta (ATL01A and ATL01B)","verified_operator":"STACK Infrastructure","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III-equivalent (design; not Uptime-certified)","fiber_providers":"","num_buildings":2,"campus_acres":18,"utility_provider":"Georgia Power","tax_incentives":"Potential eligibility for Georgia’s High-Technology Data Center Equipment Exemption (statewide program); no facility-specific certificate or local abatement found in the provided sources.","natural_hazard_zone":""},"342":{"description":"STACK Atlanta ATL02 is STACK Infrastructure’s hyperscale data center campus at 808 Factory Shoals Road in Lithia Springs, Georgia, planned for up to 160 MW across a 64‑acre site.","verified_status":"under-construction","power_capacity_mw":160,"total_sqft":878886,"year_online":"2026","construction_update":"Oct 16, 2023: Filings to develop two three‑story data centers at 808 Factory Shoals Road. Nov 12, 2024: STACK filed to add two more data centers outside Atlanta (Lithia Springs campus).","recent_news":"","notable_tenants":"","verified_name":"STACK ATL02 – Lithia Springs","verified_operator":"STACK Infrastructure","verified_owner":"IPI Atlanta II, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":64,"utility_provider":"","tax_incentives":"Georgia High-Technology Data Center Equipment Sales & Use Tax Exemption is active for qualifying projects; HB 1192’s proposed pause was vetoed in 2024.","natural_hazard_zone":"Flood mitigation/stream-buffer considerations noted by ARC DRI #4087; specific FEMA zone not stated."},"343":{"description":"T5@Atlanta Building 1 is a T5 Data Centers-operated facility at 1456 Trae Lane in Lithia Springs and is part of the company’s T5@Atlanta hyperscale campus.","verified_status":"operational","power_capacity_mw":20,"total_sqft":162500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"T5@Atlanta 5 (Building 5), within the T5 @ Atlanta III campus","verified_operator":"T5 Data Centers","verified_owner":"T5 Data Centers","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":80,"utility_provider":"","tax_incentives":"Georgia high-technology/data center sales and use tax exemption (O.C.G.A. § 48-8-3(68.1)) effective through December 31, 2028 for qualifying purchases.","natural_hazard_zone":""},"344":{"description":"T5@Atlanta III Building 1 is the first facility on T5 Data Centers’ hyperscale T5@Atlanta III campus in Lithia Springs, Georgia, designed for 20 MW across 162,500 sq ft. The campus is positioned as a major hyperscale development.","verified_status":"under-construction","power_capacity_mw":20,"total_sqft":162500,"year_online":"unknown","construction_update":"2025-07-01: Building 1 topped out (final steel sequence) per industry report.","recent_news":"","notable_tenants":"","verified_name":"T5 @ Atlanta III Building 1","verified_operator":"T5 Data Centers","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"EarthLink, Zayo, Verizon Communications","num_buildings":0,"campus_acres":80,"utility_provider":"Georgia Power","tax_incentives":"Georgia high-technology data center equipment sales & use tax exemption remains active for qualifying data centers meeting the investment thresholds; a 2024 bill to pause the incentive was vetoed.","natural_hazard_zone":""},"345":{"description":"T5 ATL IV is a planned hyperscale data center campus by T5 Data Centers on a 91‑acre site in South Fulton County near Palmetto/Fairburn, designed for AI/HPC workloads, with initial plans around 200 MW and scalability up to 300 MW.","verified_status":"planned","power_capacity_mw":200,"total_sqft":0,"year_online":"unknown","construction_update":"Jan 7, 2026: City of Palmetto posted a special called council agenda referencing T5 Atlanta IV along Gullatt & Williams Road; earlier filings/refilings were noted in May 2025.","recent_news":"Jan 7, 2026: City of Palmetto special called council agenda referenced T5 Atlanta IV along Gullatt and Williams Road.","notable_tenants":"","verified_name":"T5 @ Atlanta IV","verified_operator":"T5 Data Centers","verified_owner":"T5 Properties (T5 Data Centers)","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":91,"utility_provider":"","tax_incentives":"Georgia High-Technology Data Center Equipment Sales & Use Tax Exemption (statewide program for qualifying projects).","natural_hazard_zone":""},"346":{"description":"Switch Atlanta The KEEP is Switch’s hyperscale (Tier 5/exascale) data center campus at 1 Switch Way in Lithia Springs, Georgia, designed for up to 150 MW and more than 1 million sq ft at full build.","verified_status":"operational","power_capacity_mw":150,"total_sqft":1000000,"year_online":"2020","construction_update":"Nov 17, 2020 — Broke ground on Buildings 2 and 3 at The KEEP; second building targeted for 2022 (+50 MW) and the next for 2023.","recent_news":"","notable_tenants":"Unnamed global logistics company (anchor tenant announced Nov. 17, 2020).","verified_name":"Switch Atlanta - The KEEP","verified_operator":"Switch","verified_owner":"DigitalBridge / IFM Investors","cooling_type":"hybrid","tier_level":"Tier 5 Platinum","fiber_providers":"carrier-neutral; BIG Fiber","num_buildings":4,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia HB 696 — 10-year sales and use tax exemption on equipment and software for qualifying hyperscale colocation data centers.","natural_hazard_zone":""},"347":{"description":"A Google‑owned hyperscale data center campus in Lithia Springs (Douglas County) near Atlanta that powers Google services, with the campus dating to 2007.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1300000,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Google Douglas County Data Center Campus","verified_operator":"Google","verified_owner":"Google","cooling_type":"evaporative","tier_level":"","fiber_providers":"BIG Fiber (on-net at 300 Riverside Pkwy, Lithia Springs); others not publicly listed","num_buildings":2,"campus_acres":45,"utility_provider":"Georgia Power","tax_incentives":"Eligible for Georgia’s 10-year sales and use tax exemption for hyperscale data center equipment (2018 law); local property tax abatements available via Douglasville/Douglas County development authorities.","natural_hazard_zone":"Elevated area flood risk in Lithia Springs (localized flooding reported); parcel-specific FEMA flood zone not confirmed"},"348":{"description":"Google’s owner-operated Douglas County data center campus at 300 Riverside Pkwy in Lithia Springs (near Douglasville/Atlanta) opened in 2007 and powers Google services; it is notable for using recycled water for cooling.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Google Douglas County Data Center (Lithia Springs, GA)","verified_operator":"Google","verified_owner":"Google","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":45,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (approximate; not parcel-verified)"},"349":{"description":"Microsoft Douglasville Campus is a Microsoft-owned, Azure-operated hyperscale data center campus at 1601 N River Rd, Lithia Springs (Douglas County, GA), developed as part of the East US 3 Azure region.","verified_status":"under-construction","power_capacity_mw":300,"total_sqft":980000,"year_online":"2027","construction_update":"Dec 9, 2025 — Microsoft stated the East US 3 region (which includes Douglas County) is planned to launch for all customer workloads in early 2027.","recent_news":"","notable_tenants":"","verified_name":"Microsoft Douglasville Campus","verified_operator":"Microsoft Azure (Microsoft)","verified_owner":"Microsoft Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":160,"utility_provider":"Georgia Power","tax_incentives":"Potentially eligible for Georgia’s High-Technology Data Center Equipment Sales & Use Tax Exemption if statutory thresholds are met; no Microsoft-specific local abatement identified.","natural_hazard_zone":"FEMA Flood Zones B and X (moderate hazard; between 100- and 500-year flood limits)."},"350":{"description":"Microsoft Fairwater 2 (also called Microsoft Fairwater Atlanta) is an operational, two‑story Microsoft Azure AI datacenter located within QTS’s 615‑acre Fayetteville/Project Excalibur campus south of Atlanta; it is part of Microsoft’s cross‑state Azure AI “superfactory” linked with the Wisconsin Fairwater site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2025","construction_update":"January 15, 2026: QTS filed for the adjacent ATL2 East expansion (approx. 2,000,000 sq ft) next to the Fayetteville campus.","recent_news":"January 15, 2026: QTS filed for a 2 million sq ft “ATL2 East” expansion next to the existing Fayetteville data center campus.","notable_tenants":"Microsoft (self-tenant/operator). No other tenants are publicly disclosed.","verified_name":"Microsoft Fairwater 2","verified_operator":"Microsoft","verified_owner":"QTS Data Centers (Blackstone)","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":16,"campus_acres":615,"utility_provider":"Georgia Power Company","tax_incentives":"Georgia high-technology data center equipment sales and use tax exemption (statewide program for qualifying data centers).","natural_hazard_zone":"Floodplain areas present on-site; FEMA zone not determinable from cited documents."},"351":{"description":"Microsoft Union City Campus (Project Steamboat) is a Microsoft Azure hyperscale data center campus in Union City, Georgia, near 4810 Stonewall Tell Rd. Local and trade reports describe a three‑building development totaling about 2.1 million sq ft.","verified_status":"under-construction","power_capacity_mw":324,"total_sqft":2101500,"year_online":"2026","construction_update":"Key milestones: Jun 24, 2024 — Fulton board considered a $75M tax break for “Project Steamboat” in Union City; Feb 14, 2025 — local news highlighted the Union City site as the first of Microsoft’s three Atlanta‑area data centers, indicating active development momentum.","recent_news":"Jan 13, 2026: Regional press reported ongoing debate over incentives and Microsoft’s commitments for Georgia data centers, noting the company “was granted a $75 million tax break for a Union City” campus.","notable_tenants":"Microsoft (self-use; no third-party tenants publicly disclosed)","verified_name":"Microsoft Union City Campus","verified_operator":"Microsoft Azure","verified_owner":"Microsoft","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":136,"utility_provider":"Georgia Power","tax_incentives":"$75 million in tax savings over a 10-year period approved by the Development Authority of Fulton County (DAFC).","natural_hazard_zone":"low risk"},"352":{"description":"Microsoft East Point is a Microsoft Azure hyperscale datacenter campus under construction in East Point (Fulton County), Georgia, at/near 4165 Ben Hill Road. Phase 1 includes one datacenter building and a power substation with privacy screening and support facilities.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":250000,"year_online":"unknown","construction_update":"As of October 2025, Microsoft stated it was building new datacenters in East Point; the East Point project update notes Phase 1 includes one datacenter building, a power substation, privacy screening, and support facilities.","recent_news":"","notable_tenants":"","verified_name":"Microsoft East Point Campus (ATL06 / ATL07)","verified_operator":"Microsoft (Microsoft Azure)","verified_owner":"Microsoft Corporation","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":125,"utility_provider":"","tax_incentives":"Georgia High‑Technology Data Center Equipment sales/use tax exemption; local economic development support via Development Authority of Fulton County for Microsoft’s Fulton County projects.","natural_hazard_zone":"FEMA Flood Zone X (outside 100‑year floodplain) at the city level; localized flood risks present."},"353":{"description":"Microsoft Palmetto Campus is a Microsoft-owned, Microsoft Azure hyperscale data center project in Palmetto, Georgia; construction began in April 2024 and the campus remains in development.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"2028","construction_update":"Construction began in April 2024; Microsoft broke ground in July 2024; site support/fiber installation activity was noted on Oct 6, 2025; Microsoft’s October 2025 Georgia update confirms Palmetto remains under construction.","recent_news":"Feb 6, 2026: An industry roundup listed Microsoft’s Palmetto data center as under construction in Palmetto, GA, with completion targeted by 2028; no additional facility-specific actions (new tenant, expansion, or regulatory changes) were identified in the last six months.","notable_tenants":"","verified_name":"Microsoft Palmetto datacenter (CCO06/Shugart Data Center)","verified_operator":"Microsoft Azure","verified_owner":"Microsoft Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":8,"campus_acres":116,"utility_provider":"","tax_incentives":"Approximately $14 million property-tax abatement approved by Fulton County authorities for the Microsoft Palmetto data center project.","natural_hazard_zone":"FEMA Flood Zone X / Area of Minimal Flood Hazard"},"354":{"description":"Amazon Web Services/Amazon Data Services is developing a hyperscale data center campus along Alcovy Road in Covington (Newton County) in the Atlanta metro. Local reporting and planning materials describe a ~430‑acre site with about 1.4 million sq ft of facilities and a $100 million reclaimed‑water/cooling infrastructure agreement approved in December 2025; no verified MW capacity has been disclosed publicly.","verified_status":"planned","power_capacity_mw":0,"total_sqft":1410000,"year_online":"2026 (planned)","construction_update":"Dec 15–16, 2025: Covington approved four measures tied to Amazon Data Services’ Alcovy Road campus, including a $100 million agreement to build a reclaimed‑water treatment and cooling facility supporting the data center.","recent_news":"Jan 2026 local coverage highlighted fiscal impacts and the PILOT/tax debate: officials anticipated more than $500 million in collections over 16 years from the incoming Amazon data center, and a guest column analyzed the reported 1.4M sq ft campus and incentives structure.","notable_tenants":"Amazon Web Services / Amazon Data Services (owner-occupant); no third-party tenants disclosed.","verified_name":"Amazon: Alcovy Rd Campus (Covington, GA)","verified_operator":"Amazon Web Services (AWS) / Amazon Data Services Inc.","verified_owner":"Amazon Data Services Inc.","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":9,"campus_acres":430,"utility_provider":"","tax_incentives":"16-year property-tax abatement/PILOT approved; PILOT payments total $301M beginning in 2026. Local reporting estimates ~$500M in total governmental collections over 16 years and up to $215M in city franchise fees from electricity sales.","natural_hazard_zone":"Alcovy River/Cornish Creek watersheds; potential floodplain/wetland sensitivity nearby; specific FEMA zone not publicly identified."},"355":{"description":"A planned Amazon Web Services hyperscale data center campus associated with Flat Rock Road in the Covington/Newton County area of the Atlanta metro, operated by AWS; notable for being part of an emerging multi-phase development cluster in the area.","verified_status":"planned","power_capacity_mw":0,"total_sqft":1410000,"year_online":"2027","construction_update":"Dec 15, 2025: Covington City Council approved measures including a $100 million water-reuse/cooling facility agreement to support the Amazon data center project on Alcovy Road.","recent_news":"Jan 20, 2026: Local governments anticipated more than $500 million in collections over 16 years tied to the incoming Amazon data center in Newton County.","notable_tenants":"None publicly disclosed beyond Amazon Web Services (operator)","verified_name":"Amazon AWS Rock House Road / Echo Road Data Center Site (Lithia Springs, GA 30122)","verified_operator":"Amazon Web Services (AWS) / Amazon Data Services, Inc.","verified_owner":"Amazon Data Services, Inc. (purchased from Taylor & Mathis)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":118,"utility_provider":"","tax_incentives":"Georgia high‑technology data center equipment sales and use tax exemption may apply; no facility‑specific local property‑tax abatement publicly disclosed.","natural_hazard_zone":"low risk (citywide flood risk is minor in Lithia Springs)"},"356":{"description":"Meta’s Stanton Springs (Newton) Data Center is a Meta‑operated hyperscale campus in Newton County, Georgia, initially built as a 970,000‑square‑foot facility and later expanded with three additional buildings.","verified_status":"operational","power_capacity_mw":435,"total_sqft":2500000,"year_online":"2020","construction_update":"2026: Building 9 is expected to become operational in 2026.","recent_news":"May 2026: Reports alleged the Meta Stanton Springs data center’s construction contributed to muddy/contaminated water in neighboring areas; an EPA official agreed to review the concerns while Meta disputed the link.","notable_tenants":"","verified_name":"Meta Stanton Springs Data Center","verified_operator":"Meta Platforms, Inc.","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":0,"utility_provider":"Walton Electric Membership Corporation (Walton EMC)","tax_incentives":"Local PILOT payments via the Joint Development Authority (e.g., $1.125M and $750,000 distributions) and eligibility under Georgia’s data center sales tax exemptions.","natural_hazard_zone":""},"357":{"description":"CleanSpark College Park is CleanSpark’s first bitcoin‑mining data center in College Park, Georgia, created via its December 2020 acquisition of ATL Data Centers; it sits on roughly six acres near Hartsfield‑Jackson and is listed at 47 MW.","verified_status":"operational","power_capacity_mw":47,"total_sqft":41837,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CleanSpark College Park","verified_operator":"CleanSpark, Inc.","verified_owner":"CleanSpark, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":6,"utility_provider":"College Park Power (City of College Park municipal utility)","tax_incentives":"Georgia has a statewide data-center sales-and-use-tax exemption for qualifying facilities; applicability to this specific site is not confirmed.","natural_hazard_zone":"FEMA Flood Zones X and B (moderate flood hazard)"},"358":{"description":"Fairburn Technology Center is a planned hyperscale data center campus at 8125 Bohannon Drive in Fairburn (Fulton County), Georgia, proposed by Bohannon Road Venture LLC; public materials describe three two‑story buildings totaling about 1.2 million sq ft on roughly 60 acres with completion targeted for 2028. State business records list Bohannon Road Venture LLC as administratively dissolved.","verified_status":"planned","power_capacity_mw":0,"total_sqft":1190000,"year_online":"2028","construction_update":"As of 2026-05-10, satellite monitoring reported construction-like site changes at 8125 Bohannon Drive; prior filings show the project in DRI review during mid-2024.","recent_news":"Satellite monitoring flagged construction-like change at the site on 2026-05-10 at 8125 Bohannon Drive; no public tenant or regulatory announcements surfaced in the same period.","notable_tenants":"","verified_name":"Fairburn Technology Center","verified_operator":"Bohannon Road Venture LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":59,"utility_provider":"","tax_incentives":"Georgia high-technology data center equipment sales and use tax exemption may apply if statutory investment thresholds are met.","natural_hazard_zone":"Adjacent to Trickum Creek; FEMA flood zone status not specified in cited documents."},"359":{"description":"TA Realty Red Oak ATL03 is a planned hyperscale data center campus at 7170 Red Oak Road in Union City, Georgia, developed by TA Realty/TA Digital Group with EdgeConneX. Announced as a 324 MW campus, filings describe four 250,000 sq ft buildings totaling 1,000,000 sq ft.","verified_status":"planned","power_capacity_mw":324,"total_sqft":1000000,"year_online":"2026 projected first phase; 2030 projected full build-out/completion","construction_update":"Dec 24, 2024: ARC DRI review for ATL03 Red Oak documented as a proposed data center on ~67.8 acres at 7170 Red Oak Rd; May 3, 2026: satellite tracker detected 2.85 ha of construction-like change while status remained 'Proposed.'","recent_news":"On Mar 31, 2026, Union City enacted a 180-day moratorium on accepting and processing certain rezoning, text-amendment, and conditional-use applications during a zoning ordinance rewrite.","notable_tenants":"","verified_name":"TA Realty Red Oak ATL03","verified_operator":"TA Realty LLC","verified_owner":"TA Realty LLC (via Bright Star Commercial Properties LLC)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":67.8,"utility_provider":"Georgia Power","tax_incentives":"Georgia High‑Technology Data Center Equipment Exemption (state sales & use tax exemption on qualifying data center equipment that meets investment/job thresholds).","natural_hazard_zone":"FEMA Flood Zone X (0.2% annual chance / 500-year floodplain)"},"360":{"description":"TA Realty’s Ellenwood ATL is a hyperscale data center development at 4350 E Tanners Church Rd in Ellenwood (Clayton County), Georgia, led by TA Realty. The project received county approvals in late 2024 and a June 2025 incentive for a large-capacity (180 MW) deployment.","verified_status":"planned","power_capacity_mw":180,"total_sqft":700000,"year_online":"unknown","construction_update":"June 17, 2025 — County agency approved an incentive/tax break for TA Realty’s data center project; September 3, 2025 — Clayton County enacted a moratorium on new data centers while noting the TA Realty Ellenwood project had already been approved.","recent_news":"","notable_tenants":"","verified_name":"TA Realty: Ellenwood, ATL – 4350 E Tanners Church Rd","verified_operator":"TA Realty","verified_owner":"TA Realty (via a subsidiary)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":34.68,"utility_provider":"Georgia Power","tax_incentives":"Clayton County Development Authority approved an incentive/bond package for a TA Realty subsidiary for a $959M data center project, including a 50% property-tax reduction in year one with taxes increasing gradually thereafter.","natural_hazard_zone":"low risk"},"361":{"description":"Strategic Real Palmetto (Project Peach) is a planned hyperscale data center campus at 300 Johnston Circle in the Palmetto area of Coweta County, Georgia, proposed by North Coweta Investors, LLC/Strategic Real Estate Partners. Plans call for up to eight buildings totaling about 2.1 million sq ft on roughly 320 acres, with completion targeted for 2036.","verified_status":"planned","power_capacity_mw":0,"total_sqft":2100000,"year_online":"2036","construction_update":"Rezoning approved by Coweta County commissioners in mid-April 2025; on Oct. 26, 2025, commissioners granted an additional 12 months for the developer to obtain a Georgia Power power purchase agreement. As of a June 2, 2026 local roundup, the project remained in the proposed pipeline with no indication that vertical construction had begun.","recent_news":"On June 2, 2026, The Newnan Times-Herald published a roundup on “Where Coweta’s five proposed data centers stand” that included Project Peach, reflecting it remains a proposed/planned project.","notable_tenants":"","verified_name":"Project Peach (Palmetto, GA)","verified_operator":"CyrusOne","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":8,"campus_acres":320,"utility_provider":"Georgia Power","tax_incentives":"Eligible for Georgia's high-technology data center equipment sales & use tax exemption if statutory investment/job thresholds are met.","natural_hazard_zone":""},"362":{"description":"Hampton Technology Park is a proposed multi-building data center campus in Hampton, Henry County, Georgia, being developed by Hampton Technology Park Owner LLC. The project is in the planning/permitting stage.","verified_status":"planned","power_capacity_mw":0,"total_sqft":4000000,"year_online":"unknown","construction_update":"As of Feb–Jun 2026, the project advanced through DRI review (application filed; DRI determination made) and remains in planning/permitting; no verified start of construction.","recent_news":"February–March 2026: The developer filed a Development of Regional Impact (DRI) application for the campus, and regional press reported the 4 million‑sq ft Hampton Technology Park had joined the local data‑center pipeline.","notable_tenants":"","verified_name":"Hampton Technology Park","verified_operator":"Hampton Technology Park Owner, LLC","verified_owner":"Hampton Technology Park Owner, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":603.56,"utility_provider":"","tax_incentives":"Georgia High-Technology Data Center Equipment Sales & Use Tax Exemption (statewide program; site-specific abatements not identified).","natural_hazard_zone":""},"363":{"description":"Grindcap Marietta Campus is a proposed hyperscale data center campus at 1751 Bells Ferry Road, Marietta, GA 30066, developed by Grind Capital Group (via MMM Acquisitions/James Freeman LLC), planned as two buildings totaling 347,200 sq ft with zoning approval in June 2025 and an originally proposed 108MW capacity.","verified_status":"planned","power_capacity_mw":108,"total_sqft":347200,"year_online":"unknown","construction_update":"June 11, 2025: Marietta City Council approved rezoning and a Special Land Use Permit for ~31 acres at 1751 Bells Ferry Road (Case Z2025-11). As of June 2026, the City states construction has not started and no site-development or building permits have been obtained.","recent_news":"June 2026: Residents protested the Bells Ferry Road data center plan at City Hall, while the City of Marietta stated there was no scheduled hearing and reinforced that construction had not begun and no site-development or building permits had been obtained.","notable_tenants":"","verified_name":"GrindCap Marietta Campus","verified_operator":"Grind Capital Group","verified_owner":"James Freeman","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":31.4,"utility_provider":"Marietta Power","tax_incentives":"","natural_hazard_zone":""},"364":{"description":"Vantage Georgia GA2 (Westlake) is a hyperscale data center development by Vantage Data Centers in South Fulton, Georgia, near Plummer Rd SW & Riverside Dr SW, totaling roughly 754,220 sq ft and planned for completion in 2028. Public listings indicate a planned 96 MW total power capacity.","verified_status":"under-construction","power_capacity_mw":96,"total_sqft":754220,"year_online":"2028","construction_update":"Jan 27, 2025: Atlanta Regional Commission DRI #4256 preliminary report opened regional review for Vantage Data Center – Westlake (approx. 754,221 sq ft); comments due Feb 11, 2025. Industry reports indicate the project targets January 2028 completion.","recent_news":"","notable_tenants":"","verified_name":"Vantage Data Centers – Westlake (GA2)","verified_operator":"Vantage Data Centers","verified_owner":"Vantage Data Centers","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":0,"utility_provider":"","tax_incentives":"Eligible for Georgia’s high‑technology data center equipment sales and use tax exemption if statutory thresholds are met; no site‑specific abatement found.","natural_hazard_zone":""},"365":{"description":"Serverfarm is developing a hyperscale data center in Covington, Georgia (10835 Hazelbrand Rd), converting the 498,960 sq ft East Atlanta Logistics Center II into a 60 MW, single-tenant facility. The project is in the Atlanta market and remains under development.","verified_status":"under-construction","power_capacity_mw":60,"total_sqft":498960,"year_online":"unknown","construction_update":"Jan 6–9, 2025: Covington approved annexation/zoning steps for the Hazelbrand Rd property. Jan 29, 2026: Serverfarm announced a $3.0B credit facility closing (Dec 2025) to accelerate development including the Covington project.","recent_news":"Jan 29, 2026: Serverfarm announced closing a $3.0B credit facility to accelerate hyperscale campuses; the release lists Covington as a 498,960 sq ft build offering 60 MW for a single hyperscale tenant, with coverage on Jan 30 and Feb 4, 2026.","notable_tenants":"","verified_name":"Serverfarm Atlanta Data Center ATL2","verified_operator":"Serverfarm","verified_owner":"Serverfarm (Manulife Investment Management-controlled); property-owning SPV not publicly disclosed","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":95.556,"utility_provider":"Georgia Power (planned)","tax_incentives":"State: Georgia’s High-Technology Data Center sales/use-tax exemption existed, but S.B. 410 ended the exemption for new data centers in 2026; grandfathering applies only to projects that already hold an exemption. No project-specific local abatement identified.","natural_hazard_zone":"FEMA Flood Zone A"},"366":{"description":"Intero Systems operates a colocation/managed-hosting data center at 1800 Phoenix Blvd, Suite 201, College Park, GA, providing data center and network services. The operator’s site actively markets these services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Intero Systems Data Center","verified_operator":"Intero Systems, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"College Park Power (City of College Park, GA)","tax_incentives":"Georgia Data Center Sales & Use Tax Exemption exists (eligibility-dependent); no facility-specific incentive verified.","natural_hazard_zone":"unknown"},"367":{"description":"Verizon 4000 Highland is an operational Verizon Enterprise colocation/telecom data center at 4000 Highland(s) Parkway SE in Smyrna, Georgia, commonly listed as the Verizon Atlanta site and described as a former XO Communications facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":52466,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Atlanta","verified_operator":"Verizon Communications Inc.","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Georgia High-Technology Data Center Equipment Sales & Use Tax Exemption (facility enrollment not confirmed); bills proposed to curb/eliminate the exemption (SB 408/SB 410).","natural_hazard_zone":""},"368":{"description":"H5 Data Centers’ Atlanta facility is a 110,000‑sq‑ft, carrier‑neutral colocation/carrier‑hotel at 345 Courtland St. NE in downtown Atlanta, operated by H5 Data Centers; it serves as a key interconnection alternative to 56 Marietta and 180 Peachtree.","verified_status":"operational","power_capacity_mw":8.5,"total_sqft":110000,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"No named anchor tenant publicly disclosed. Public network presence includes Lumen (Level 3) at 345 Courtland St NE; the site operates as a carrier hotel with multiple carriers.","verified_name":"H5 Data Centers Atlanta","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; numerous long-haul fiber cables; alternative access to 56 Marietta and 180 Peachtree","num_buildings":1,"campus_acres":0.52,"utility_provider":"Georgia Power","tax_incentives":"Georgia Data Center Sales & Use Tax Exemption (subject to meeting statutory investment thresholds).","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard)"},"369":{"description":"DataBank ATL2 (Atlanta West End) is an operational colocation data center at 1100 White St SW in Atlanta, offering 4 MW of critical IT load and 52,610 IT square feet. It is staffed 24x7 and positioned in the historic West End district.","verified_status":"operational","power_capacity_mw":4,"total_sqft":75000,"year_online":"unknown","construction_update":"","recent_news":"May 6, 2026: A fire inspection permit (FIRE-INSPECT-26-01921) was filed for “Data Bank - 1100 WHITE SW ST” in Atlanta.","notable_tenants":"","verified_name":"DataBank ATL2 - Atlanta West End Data Center","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"air-cooled","tier_level":"Tier III equivalent design","fiber_providers":"carrier-neutral; 18 on-site carriers","num_buildings":1,"campus_acres":3.64,"utility_provider":"Georgia Power","tax_incentives":"Georgia Data Center Sales & Use Tax Exemption (HB 696, 2018); 2026 bills (SB 408/SB 410) proposed curbing/eliminating the exemption.","natural_hazard_zone":""},"370":{"description":"Proposed Digital Realty data center at 10 Forsyth Street NW in downtown Atlanta, planned as a 10‑story facility totaling roughly 300,000 sq ft.","verified_status":"planned","power_capacity_mw":0,"total_sqft":300000,"year_online":"unknown","construction_update":"Sep 5, 2024: Plans filed for a 300,000‑sq‑ft data center at 10 Forsyth St. NW; permitting sought.","recent_news":"","notable_tenants":"","verified_name":"Digital Realty Atlanta 10 Forsyth St. NW (ATL15) / Digital Realty - 10 Forsyth Street NW","verified_operator":"Digital Realty","verified_owner":"Spring Street Atlanta LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; adjacency to ATL13 (56 Marietta) provides access to carriers such as Cogent Communications, Arelion, and Peer 1","num_buildings":1,"campus_acres":1.08,"utility_provider":"Georgia Power","tax_incentives":"Georgia High‑Technology Data Center Equipment sales and use tax exemption may apply if thresholds are met; no site‑specific award confirmed.","natural_hazard_zone":"unknown"},"371":{"description":"Digital Realty ORD10 at 350 East Cermak Road is an operational, carrier‑hotel/colocation facility in Chicago’s historic Lakeside Technology Center, operated by Digital Realty and widely regarded as the Midwest’s most interconnected multi‑tenant data center with a 1,133,000 ft² building footprint.","verified_status":"operational","power_capacity_mw":109,"total_sqft":1133000,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"No publicly disclosed anchor tenant. The building hosts an extensive interconnection ecosystem; Equinix CH1 operates in the same building (5th floor), and Hivelocity’s colocation business at 350 E. Cermak was acquired by Digital Realty in 2025.","verified_name":"Digital Realty ORD10 / 350 East Cermak (Lakeside Technology Center)","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; 70+ network providers (e.g., AT&T, Lumen, Verizon, Zayo, Cogent, Arelion, GTT, NTT, PacketFabric, Tata, Comcast, etc.)","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Illinois Data Center Investment Program: state/local sales & use tax exemptions for qualifying data centers (certificate-based, multi-year).","natural_hazard_zone":"Above 500-year FEMA base flood elevation; low seismic risk"},"372":{"description":"Equinix CH1 is an operational, carrier-neutral Equinix IBX colocation data center on the 5th floor of 350 East Cermak Road in Chicago, located within Digital Realty’s highly interconnected multi-tenant data center building at 350 E. Cermak.","verified_status":"operational","power_capacity_mw":3.5,"total_sqft":143630,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix Chicago CH1 IBX Data Center","verified_operator":"Equinix","verified_owner":"Digital Realty","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":4.05,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Illinois Data Centers Investment Program: state/local sales-tax exemptions for qualifying data-center equipment; long-term exemption for certified facilities.","natural_hazard_zone":"Outside 500-year floodplain; low seismic (Zone 0 per building sheet)."},"373":{"description":"Equinix CH2 is an Equinix IBX carrier-neutral colocation facility located on the 6th floor at 350 East Cermak Road in Chicago, within Digital Realty’s highly interconnected ORD10/Lakeside Technology Center.","verified_status":"operational","power_capacity_mw":8,"total_sqft":143630,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix CH2","verified_operator":"Equinix","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"","natural_hazard_zone":"Outside 500-year floodplain; Seismic Zone 0"},"374":{"description":"Equinix CH4 is an operational, carrier-neutral Equinix IBX colocation facility located on the 8th floor of 350 East Cermak Road in Chicago, inside Digital Realty’s 350 E. Cermak (ORD10) carrier-hotel building, one of the most interconnected sites in the Midwest.","verified_status":"operational","power_capacity_mw":0,"total_sqft":26560,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix Chicago CH4","verified_operator":"Equinix","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison Co. (ComEd)","tax_incentives":"Illinois Data Center Investment Program: sales and use tax exemptions for qualifying data center equipment and, in some cases, construction-wage tax credits for up to 20 years.","natural_hazard_zone":"Outside 500-year floodplain; Seismic Zone 0 (low seismic risk)."},"375":{"description":"Summit Chicago (formerly Deft) is an operational colocation facility operated by Summit inside Digital Realty’s Lakeside Technology Center (ORD10) at 350 E. Cermak in Chicago. The 1,133,000‑ft² carrier hotel is one of the Midwest’s most interconnected sites, with building-level utility power of ~109 MW and 70 MW of UPS capacity.","verified_status":"operational","power_capacity_mw":109,"total_sqft":1133000,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"Equinix (CH1); Hivelocity/ColoHouse","verified_name":"Summit Chicago Data Center (within Digital Realty ORD10 / Lakeside Technology Center at 350 East Cermak)","verified_operator":"Summit (formerly Deft / ServerCentral)","verified_owner":"Digital Realty Trust, Inc. (Digital Realty)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; 70+ network providers","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Illinois Data Center Investment Tax Exemptions and Credits program; Digital Realty marked the state’s 2019 incentives; sources also note 350 E. Cermak qualifies for a 100% sales tax exemption on IT equipment/software.","natural_hazard_zone":"Outside 500-year flood plain; seismic Zone 0"},"376":{"description":"Colocation America CHIDC1 is the company’s colocation suite in Suite 8 at 350 E. Cermak Road inside Digital Realty’s ORD10/Lakeside Technology Center in Chicago, operating 24/7. The site sits within one of the Midwest’s most interconnected multi-tenant data centers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Colocation America Chicago DC 1 (CHIDC1)","verified_operator":"Colocation America","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; hundreds of providers; dark fiber metro ring / meet-me-room ecosystem","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Illinois Data Center Investment Tax Exemptions and Credits program is active; Digital Realty commemorated the new incentives in 2019.","natural_hazard_zone":"Flood control features; built above sea-level (low flood risk indicator)."},"377":{"description":"Digital Realty’s ORD10 at 350 East Cermak in Chicago is an operational, highly interconnected multi-tenant carrier-hotel/colocation hub of roughly 1.13 million sq ft, with Digital Realty operating the building and its meet‑me room.","verified_status":"operational","power_capacity_mw":109,"total_sqft":1133739,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"Equinix (CH1) and ColoHouse operate within the multi-tenant carrier hotel at 350 East Cermak; specific end-customer anchor tenants are not publicly disclosed.","verified_name":"Red Anvil Chicago Data Center","verified_operator":"Red Anvil","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; numerous providers (e.g., Mad City Broadband; Omni Fiber AS15081; Alentus; RCI Communications).","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Illinois data center sales tax exemption on IT equipment and software (100% exemption for qualifying facilities).","natural_hazard_zone":""},"378":{"description":"CoreSite CH1 is CoreSite’s operational colocation data center at 427 S. LaSalle Street in downtown Chicago, adjacent to the Board of Trade, with approximately 180,000+ sq ft of space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":180000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No publicly confirmed anchor tenants. Connectivity/carrier participants listed include US Signal, Verizon Business, and Level 3 (Lumen).","verified_name":"CoreSite CH1 - Chicago Data Center","verified_operator":"CoreSite","verified_owner":"CoreSite Realty Corporation (an American Tower company)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; examples: US Signal; Verizon Business; Level 3 (Lumen Technologies)","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Illinois Data Centers Investment Program sales-tax exemptions for qualifying facilities; CoreSite indicates a 10.25% sales-tax incentive available to participating customers in Chicago.","natural_hazard_zone":""},"379":{"description":"CoreSite CH2 is a CoreSite-operated colocation data center at 1432 S. Clinton Street in Chicago’s South Loop. It is the company’s first purpose-built, greenfield data center in downtown Chicago, offering about 18 MW across roughly 168,000+ square feet with high-density interconnection on the Chicago campus.","verified_status":"operational","power_capacity_mw":18,"total_sqft":168000,"year_online":"2020","construction_update":"","recent_news":"Jan 15, 2026: CoreSite’s Chicago data center campus now offers AWS Native 400G Direct Connect for enhanced cloud and AI performance (campus-level; CH2 not explicitly named).","notable_tenants":"STN, Inc. (GPU One platform operated within CH2; >1,500 NVIDIA B200 GPUs)","verified_name":"CoreSite CH2","verified_operator":"CoreSite","verified_owner":"American Tower Corporation (via CoreSite Realty Corporation subsidiary)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; three diverse fiber entry routes; dark fiber to CH1; AMS-IX Chicago available","num_buildings":1,"campus_acres":2,"utility_provider":"ComEd","tax_incentives":"Illinois Data Centers Investment Program – sales-tax exemption (10.25% savings on qualifying IT equipment/software for eligible CH2 customers)","natural_hazard_zone":"not publicly determinable"},"380":{"description":"Netrality Chicago - 717 South Wells is an operational, carrier-neutral interconnection and colocation data center in Chicago owned and operated by Netrality, offering about 100k sq ft with 30+ on-net providers.","verified_status":"operational","power_capacity_mw":5.7,"total_sqft":100000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"PacketFabric; BSO","verified_name":"Chicago Data Center – 717 South Wells","verified_operator":"Netrality Data Centers","verified_owner":"Netrality Data Centers (owner-operator; backed by Macquarie Infrastructure Partners IV / Macquarie Asset Management)","cooling_type":"unknown","tier_level":"Tier III equivalent/design-compliant; no Uptime Institute facility certification found","fiber_providers":"carrier-neutral; 30+ on-net network providers","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"","natural_hazard_zone":"Outside 100-year and 500-year FEMA floodplains"},"381":{"description":"DataBank ORD1 is an operational colocation and interconnection data center at 600 South Federal Street, Suites 150 & 142 in Chicago’s Loop, offering 10,130 IT sq ft, 1 MW critical IT load, and access to 18 onsite carriers.","verified_status":"operational","power_capacity_mw":1,"total_sqft":10130,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank ORD1 - Downtown Chicago Loop Data Center","verified_operator":"DataBank","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"Tier III equivalent/design standard","fiber_providers":"carrier-neutral; 18 onsite carriers","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"","natural_hazard_zone":""},"382":{"description":"DataBank ORD2 is an operational colocation and interconnection data center operated by DataBank at 840 S. Canal Street in downtown Chicago, offering 2MW critical IT load and 11,470 IT square feet with a 2N power design.","verified_status":"operational","power_capacity_mw":2,"total_sqft":14500,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank ORD2 – Downtown Chicago Metro Data Center","verified_operator":"DataBank","verified_owner":"Server Farm Realty (Serverfarm)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; 3 onsite carriers","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"383":{"description":"H5 Data Centers Chicago is a planned colocation/wholesale data center at 1951 W. Hastings Street in Chicago’s Illinois Medical District, being developed with Metro Edge and operated by H5 Data Centers, with a scalable 36 MW, purpose-built 185,000 SF design near 350 E. Cermak.","verified_status":"planned","power_capacity_mw":36,"total_sqft":185000,"year_online":"2027","construction_update":"June 24–28, 2023: Site plan approval for IMD1 at 1951 W. Hastings (Illinois Medical District). As of current listings, the facility remains under development with service readiness targeted for 2027.","recent_news":"","notable_tenants":"","verified_name":"H5 Data Centers Chicago","verified_operator":"H5 Data Centers","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III design / N+1 concurrently maintainable","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":3.6,"utility_provider":"ComEd","tax_incentives":"Eligible for Illinois Data Center Investment tax exemptions (including 100% sales/use tax exemption on qualifying IT equipment and software) if program requirements are met.","natural_hazard_zone":""},"384":{"description":"QTS Chicago 1 is an operational colocation data center operated by QTS at 2800 S. Ashland Ave on a 30-acre campus near Chicago\u0019s downtown corridor.","verified_status":"operational","power_capacity_mw":38.6,"total_sqft":467000,"year_online":"2016","construction_update":"Dec 17, 2024 \u0014 Chicago City Council approved QTS\u0019s new data center building at 2800 S. Ashland as part of the campus expansion.","recent_news":"Feb 16, 2026 \u0014 QTS sought a $2 billion CMBS refinancing covering three U.S. campuses, including Chicago; the closing was expected on Feb 25, 2026.","notable_tenants":"","verified_name":"QTS Chicago 1 (CHI1)","verified_operator":"QTS Data Centers","verified_owner":"QTS Investment Properties Chicago, LLC (owned by Blackstone funds including BREIT and Blackstone Infrastructure Partners)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":30,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Illinois Data Center Investment Program (state and local sales/use tax exemptions); potential Cook County Class 6b incentive.","natural_hazard_zone":"Adjacent to the South Branch of the Chicago River; FEMA flood zone not determined from provided sources."},"385":{"description":"Legacy FDCServers colocation site at 141 W. Jackson Blvd., Suite 1135 in the Chicago Board of Trade Building; FDC vacated the site in July 2019 and now offers Chicago services via partner facilities like CoreSite CH2.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"FDCServers Chicago Data Center (141 W. Jackson Blvd., Suite 1135)","verified_operator":"FDCservers.net LLC","verified_owner":"Apollo Global Management","cooling_type":"chilled water","tier_level":"Tier III (not Uptime-certified in cited sources)","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard area)"},"386":{"description":"Lumen Chicago 2 is an operational Lumen (formerly Level 3) colocation data center at 900 N Kingsbury St in Chicago, offering about 182,016 sq ft of total space and access to 8.0 MW of power.","verified_status":"operational","power_capacity_mw":8,"total_sqft":182016,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Chicago 2","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (on-net); carrier-neutral with alternate carriers available","num_buildings":1,"campus_acres":2.64,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone A (1% annual-chance flood area)"},"387":{"description":"Digital Realty CH1 is an operational colocation data center at 2200 Busse Road in Elk Grove Village, Illinois. The 485,000‑sq‑ft facility is part of Digital Realty’s Chicago/Elk Grove campus; in 2023, GI Partners acquired a 65% ownership interest in a two‑data‑center portfolio in the Midwest that includes this site.","verified_status":"operational","power_capacity_mw":80,"total_sqft":485000,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"Summit (formerly Deft); Rackspace (ORD1); ColoCrossing/HostPapa","verified_name":"Digital Realty CH1 (2200 Busse Road)","verified_operator":"Digital Realty","verified_owner":"GI Partners (80%) and Digital Realty (20%) joint venture","cooling_type":"evaporative","tier_level":"Tier III-equivalent","fiber_providers":"Cogent","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Tax Exemptions and Credits program available statewide for qualifying certified data centers; no facility-specific certification verified for CH1.","natural_hazard_zone":"FEMA Flood Zone B/X – area of moderate flood hazard (between 100-year and 500-year floods)"},"388":{"description":"Digital Realty CH2 is an operational colocation and interconnection data center at 2299 Busse Road, Elk Grove Village, IL, offering scalable deployments. The facility totals about 336,000 square feet with a full-build critical load of 25.6 MW.","verified_status":"operational","power_capacity_mw":25.6,"total_sqft":336000,"year_online":"2015","construction_update":"","recent_news":"No CH2-specific expansion or regulatory updates found in the last 6 months. AMS-IX announced it will close its Chicago Internet Exchange in March 2026, affecting any prior AMS-IX presence tied to CH2.","notable_tenants":"No publicly disclosed current anchor tenants. Historically: AMS-IX Chicago PoP at CH2; Rackspace activity tied to CH2 via AMS-IX case study. AMS-IX announced closure of its U.S. exchanges (including Chicago) in March 2026.","verified_name":"Digital Realty CH2 Data Center (2299 Busse Road)","verified_operator":"Digital Realty","verified_owner":"GI Partners (65%) and Digital Realty (35%) joint venture","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent (on-net)","num_buildings":1,"campus_acres":15.04,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Illinois Data Center Investment Program (state/local sales & use tax exemptions; construction jobs credit eligibility). Facility-specific award for 2299 Busse not confirmed in public citations.","natural_hazard_zone":"FEMA Flood Zone B/X (moderate risk)"},"389":{"description":"Digital Realty CH3 is an operational Digital Realty colocation/data center at 1400 East Devon Avenue in Elk Grove Village, Illinois, with a 305,000 ft² facility footprint.","verified_status":"operational","power_capacity_mw":28.833,"total_sqft":305000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CH3 Data Center | 1400 East Devon Avenue","verified_operator":"Digital Realty","verified_owner":"GI Partners–Digital Realty joint venture (GI Partners 80%, Digital Realty 20%)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":12,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Illinois Data Centers Investment Program: sales/use-tax exemptions (and in some cases tax credits) for qualifying data centers; duration up to 20 years per program documentation.","natural_hazard_zone":"Outside 500-year floodplain (per facility brochure)."},"390":{"description":"Equinix CH3 is an operational Equinix carrier-neutral IBX colocation data center at 1905 Lunt Avenue in Elk Grove Village serving the Chicago metro interconnection ecosystem.","verified_status":"operational","power_capacity_mw":10,"total_sqft":379662,"year_online":"2007","construction_update":"","recent_news":"June 18, 2026: Cboe implemented new disaster-recovery customer switches at CH3; earlier, on Jan. 26, 2026 it was reported that Cboe’s U.S. Common DR would relocate to CH3 effective Feb. 7, 2026.","notable_tenants":"Cboe Global Markets (CFE and U.S. Common disaster-recovery environments)","verified_name":"Equinix CH3","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"chilled water","tier_level":"Tier IV (design standard; no Uptime certification cited)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":7.87,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Potential eligibility for the Illinois Data Center Investment Tax Exemptions program; no confirmation that CH3 is enrolled.","natural_hazard_zone":"FEMA Zone X (minimal flood risk) likely; Equinix materials indicate elevation above 500-year base flood; regional Seismic Design Category D."},"391":{"description":"Equinix CH5 is a new Equinix-operated colocation (IBX) data center at 2001 Lunt Avenue in Elk Grove Village (Chicago metro), noted by Equinix as a state‑of‑the‑art site with modern efficiency and high‑density capabilities, and an official spec of 193,110 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":193110,"year_online":"2026","construction_update":"2026-05-06: Illinois EPA FESOP air operating‑permit public‑notice period for Equinix CH‑5 (BoA ID 031440AVZ) ended, reflecting regulatory steps toward ongoing operations.","recent_news":"Illinois EPA posted a new FESOP air operating‑permit public notice for Equinix CH‑5 (BoA ID 031440AVZ) at 2001 Lunt Ave; the public‑notice period ended 2026‑05‑06.","notable_tenants":"","verified_name":"Equinix CH5","verified_operator":"Equinix","verified_owner":"","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"carrier-neutral; Campus Cross Connects and Metro Connect available (CH5 shows 2 Campus Cross Connect and 4 Metro Connect)","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Illinois Data Center Investment Program sales/use-tax exemptions for qualifying data centers","natural_hazard_zone":""},"392":{"description":"EdgeConneX CHI01 is the operator’s edge data center at 1800 Nicholas Blvd in Elk Grove Village, established in 2017, providing 24 MW of N+1 capacity in a 131,728‑sq‑ft building.","verified_status":"operational","power_capacity_mw":24,"total_sqft":131728,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX CHI01","verified_operator":"EdgeConneX","verified_owner":"EQT Infrastructure (via EdgeConneX; Sixth Street minority stake)","cooling_type":"air-cooled","tier_level":"Tier III design","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":6.74,"utility_provider":"ComEd","tax_incentives":"Cook County Class 6B property tax incentive on campus parcels; Illinois Data Center Investment Tax Exemption program available for qualifying facilities.","natural_hazard_zone":"FEMA Flood Zone B/X (moderate)"},"393":{"description":"EdgeConneX CHI02 is EdgeConneX’s carrier‑neutral colocation data center at 2021 Lunt Avenue in Elk Grove Village, Illinois, offering 7 MW of N+1 capacity as part of the company’s Chicago campus.","verified_status":"operational","power_capacity_mw":7,"total_sqft":64000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX CHI02","verified_operator":"EdgeConneX","verified_owner":"EdgeConneX Chicago Holdings LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Cook County property tax break (Class 6B) associated with a 22MW data center project at 2021 Lunt Avenue.","natural_hazard_zone":""},"394":{"description":"EdgeConneX CHI03 is a carrier-neutral data center operated by EdgeConneX at 2055 Lunt Avenue in Elk Grove Village (Chicago market), planned as a two‑story, 167,000‑sq‑ft facility with roughly 22MW of capacity.","verified_status":"under-construction","power_capacity_mw":22.4,"total_sqft":167000,"year_online":"unknown","construction_update":"Apr 16, 2025 — Contractor reports precast panel installation in full swing at CHI03, with the exterior shell being formed.","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX CHI03","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Cook County Class 6B property tax exemption","natural_hazard_zone":""},"395":{"description":"Stream Chicago I (also referenced as ORDA) is Stream Data Centers’ hyperscale-oriented facility at 2080 Lunt Avenue in Elk Grove Village, Illinois, originally described as a ~126,689‑sq‑ft, ~15MW site for hyperscale or enterprise workloads.","verified_status":"operational","power_capacity_mw":15,"total_sqft":126689,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"A major cloud customer (unnamed).","verified_name":"Stream Chicago I","verified_operator":"Stream Data Centers","verified_owner":"Stream Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Illinois Data Center Investment Program sales/use tax exemptions and credits (facility-specific certification not cited).","natural_hazard_zone":"Outside FEMA 500-year floodplain; low flood risk"},"396":{"description":"Stream Chicago II / ORDB is a Stream Data Centers hyperscale facility at 1925 Busse Road in Elk Grove Village, Illinois. The fully leased site offers about 226,000 square feet and 32 MW of critical capacity.","verified_status":"operational","power_capacity_mw":32,"total_sqft":226000,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Stream Data Centers Chicago II","verified_operator":"Stream Data Centers","verified_owner":"SDC CHI II Busse, LLC (Stream Data Centers platform); majority platform owner: Apollo-managed funds.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":10.35,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Program certification for SDC CHI II Busse, LLC; reported investment $636,558,570; estimated tax benefits $39,784,911; 20 jobs; underserved-area status.","natural_hazard_zone":"FEMA Flood Zone B/X (area of moderate flood hazard, between 100- and 500-year flood limits)."},"397":{"description":"Stream Chicago III (ORDC) is Stream Data Centers’ third Chicago-area hyperscale campus at 2000 Landmeier Rd in Elk Grove Village, IL. The in-development, multi-building campus lists building one at 40 MW and roughly 2,000,000 sq ft total.","verified_status":"under-construction","power_capacity_mw":260,"total_sqft":2000000,"year_online":"2027","construction_update":"Sep 10, 2025: Stream and ComEd broke ground on a dedicated ComEd substation to serve the ORDC campus. Prior steps included annexation/rezoning approvals (Sep 2023) and fencing/demolition preparation (Feb 2024).","recent_news":"","notable_tenants":"","verified_name":"Stream DC Chicago III (ORDC campus)","verified_operator":"Stream Data Centers","verified_owner":"Stream U.S. Data Centers, L.L.C. (Stream Data Centers); majority-owned by Apollo-managed funds","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":35,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Potentially eligible for Illinois Data Center Investment Program (state and local sales/use tax exemptions) and local incentives; no site-specific certification located.","natural_hazard_zone":"FEMA Flood Zone X (moderate risk; outside 100-year floodplain); low seismic risk typical for NE Illinois"},"398":{"description":"STACK CHI01B is a wholesale/hyperscale‑ready data center operated by STACK Infrastructure in Elk Grove Village, adjacent to CHI01A, delivering 24 MW across 202,000 sq ft and commonly listed at 1301 Touhy Ave rather than the legacy 1441 Touhy address.","verified_status":"operational","power_capacity_mw":24,"total_sqft":202000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"STACK CHI01A Chicago Data Center (1441 Touhy Avenue, Elk Grove Village, IL)","verified_operator":"STACK Infrastructure","verified_owner":"IPI Partners","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Zayo; Time Warner Telecom; Comcast","num_buildings":2,"campus_acres":0,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Illinois data center sales-tax exemption (STACK-qualified; pass-through for client equipment purchases).","natural_hazard_zone":""},"399":{"description":"Iron Mountain CHI-1 is a carrier-neutral colocation data center operated by Iron Mountain Data Centers at 1680 Touhy Avenue, Des Plaines, Illinois. It features a 36 MW IT design and an approximately 315,000 sq ft building on a 13-acre site.","verified_status":"operational","power_capacity_mw":36,"total_sqft":315000,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Iron Mountain Data Centers CHI-1 (Chicago Data Center)","verified_operator":"Iron Mountain Data Centers","verified_owner":"1680 Touhy Investors, LLC","cooling_type":"unknown","tier_level":"ANSI/TIA-942-B Rated 3; Uptime Institute Tier III aligned","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":13,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Cook County Class 6b property tax incentive","natural_hazard_zone":"low risk"},"400":{"description":"T5 @ Chicago II is an operational T5 Data Centers colocation/enterprise data center at 200 Innovation Drive in Elk Grove Village, Illinois, offering 30 MW across roughly 170,000 square feet.","verified_status":"operational","power_capacity_mw":30,"total_sqft":170000,"year_online":"2018 (T5 @ Chicago II expansion activity; original Elk Grove facility was initiated by Forsythe in 2014)","construction_update":"","recent_news":"Regulatory: An Illinois EPA Bureau of Air permit notice for T5@Chicago II LP at 200 Innovation Dr (BoA ID 031804ACM / Permit 21080029) carried a public-notice end date of 2026-01-02; the filing does not indicate active physical construction.","notable_tenants":"No named tenants are publicly disclosed. Public sources only identify unnamed customers: T5’s Nov. 8, 2022 final-phase announcement says Phase 1 was leased to Fortune 100 companies, and a Jan. 11, 2018 report cited an unnamed hospital network and an unnamed S&P 500 enterprise client.","verified_name":"T5 @ Chicago II","verified_operator":"T5 Data Centers","verified_owner":"T5@Chicago II, LP / T5@Chicago II, LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":36.6,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Certified under the Illinois Data Center Investment Program (state/local sales & use tax exemptions for qualifying projects).","natural_hazard_zone":"Midwest severe-storm/tornado/hail exposure; likely FEMA Zone X (low flood risk), but address-specific flood zone not confirmed."},"401":{"description":"Microsoft Elk Grove - Building 1 is an operational Microsoft hyperscale data center located at the Elk Grove Technology Park (Innovation Dr & Oakton St) in Elk Grove Village, Illinois. Public profiles list 31.5 MW of total power capacity and about 107,500 sq ft of data center space.","verified_status":"operational","power_capacity_mw":31.5,"total_sqft":107500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Microsoft Elk Grove - Building 1","verified_operator":"Microsoft","verified_owner":"Microsoft","cooling_type":"unknown","tier_level":"","fiber_providers":"Comcast","num_buildings":3,"campus_acres":36.6,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Program: exemptions on use tax, service use tax, service occupation tax, and state and local retailers’ occupation taxes for qualifying data centers.","natural_hazard_zone":"FEMA Flood Zone X (low flood risk)"},"402":{"description":"TA Realty’s Elk Grove Village wholesale/hyperscale data center campus is a four-building development at Elmhurst Road and Old Higgins Road, totaling about 1.183 million sq ft with 250MW planned capacity. The campus spans roughly 45–47 acres and comprises four two‑story buildings.","verified_status":"under-construction","power_capacity_mw":250,"total_sqft":1183000,"year_online":"unknown","construction_update":"Oct 3–6, 2025: Demolition to clear the 47-acre site for TA Realty’s four-building campus was underway.","recent_news":"June 10, 2026: ComEd bought land for a fifth Elk Grove Village substation to support rising industrial/data center demand; the article notes TA Realty’s forthcoming 47-acre campus but says the substation site isn’t tied to a specific facility.","notable_tenants":"","verified_name":"TA Realty Elk Grove Data Center Campus","verified_operator":"TA Realty","verified_owner":"TA Realty LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":47,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Program (state and local tax exemptions for qualifying data centers).","natural_hazard_zone":"low risk"},"403":{"description":"Aligned ORD-03 is an under-construction hyperscale data center operated by Aligned Data Centers at 50 NW Point Blvd., Elk Grove Village, on a 36-acre Chicago campus; it is the first of two 520,000-sq-ft buildings (ORD-03/ORD-04) with the combined campus listed at 100 MW and the first building targeted for late 2028.","verified_status":"under-construction","power_capacity_mw":100,"total_sqft":520000,"year_online":"2028","construction_update":"Project listed as under construction with a combined 100 MW campus capacity; first building targeted for late 2028.","recent_news":"","notable_tenants":"","verified_name":"Aligned ORD-03 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"Funds managed by Macquarie Asset Management (platform-level equity owner); sale of all Aligned equity to AIP, MGX, and BlackRock’s GIP announced Oct 2025 (pending/expected close per announcement).","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":36,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Cook County property tax break granted for the Elk Grove campus (commonly Class 6B for such projects).","natural_hazard_zone":"FEMA Flood Zone X"},"404":{"description":"Aligned ORD-01 is Aligned Data Centers’ hyperscale data center at 505 Northwest Ave, Northlake, Illinois, the first building on its 18.5‑acre Chicago campus. It is a 220,000‑square‑foot facility delivering 48 MW (expandable to about 60 MW) that launched in 2022.","verified_status":"operational","power_capacity_mw":48,"total_sqft":220000,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aligned ORD-01 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"Aligned Energy / Aligned Data Centers (building owner listed as Aligned Energy; Macquarie Asset Management-managed funds as prior controlling equity; sale to AIP/MGX/BlackRock GIP announced with expected close in 1H 2026)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":18.5,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Program sales/use tax exemptions","natural_hazard_zone":"FEMA Flood Zones B and X (moderate/500-year hazard); city-level flood risk moderate; low seismic risk; no notable hurricane exposure"},"405":{"description":"Aligned ORD-02 is an operational hyperscale data center operated by Aligned Data Centers at 501 Northwest Avenue in Northlake, Illinois. It sits on Aligned’s Chicago campus and is notable for achieving OCP Ready for Hyperscale certification.","verified_status":"operational","power_capacity_mw":36,"total_sqft":228768,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aligned ORD-02 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"","cooling_type":"hybrid","tier_level":"OCP Ready for Hyperscale","fiber_providers":"carrier-neutral; over 12 metro/long-haul networks","num_buildings":2,"campus_acres":18.5,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Program: state and local sales/use tax exemptions for qualifying data centers (20-year certificates in 5-year increments). No facility-specific certificate located.","natural_hazard_zone":"Moderate citywide flood risk; tornado/severe-storm exposure typical of northern Illinois; relatively low seismic risk vs. southern IL zones."},"406":{"description":"Digital Realty ORD12 is an operational colocation data center at 9333 Grand Avenue in Franklin Park, Illinois, on Digital Realty’s Franklin Park campus.","verified_status":"operational","power_capacity_mw":10,"total_sqft":124700,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"TierPoint (Chicago – West) is a tenant at 9333 W Grand Ave (ORD12). No other publicly confirmed anchor tenants identified.","verified_name":"Chicago ORD12","verified_operator":"Digital Realty","verified_owner":"Digital Grand Avenue, LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":40,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Tax Incentives (2019); local property tax-related renewal application for 9333/9355/9377 W Grand Ave by Digital Grand Avenue, LLC","natural_hazard_zone":"Outside the 500-year FEMA floodplain"},"407":{"description":"Digital Realty ORD13 is an operational colocation data center at 9355 Grand Avenue, Franklin Park, IL, within Digital Realty’s 40‑acre Franklin Park campus, offering access to Chicago network, cloud, and content ecosystems. The facility is approximately 292,000 ft² with N+1 power and cooling.","verified_status":"operational","power_capacity_mw":26,"total_sqft":292000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ORD13 Data Center","verified_operator":"Digital Realty","verified_owner":"Digital Grand Avenue, LLC (subsidiary of Digital Realty Trust, Inc.)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":40,"utility_provider":"ComEd","tax_incentives":"Village of Franklin Park: renewal application by Digital Grand Avenue, LLC for the industrial facility at 9333, 9355 and 9377 W. Grand Ave; the Village has also applied for Enterprise Zone designation covering commercial and industrial properties.","natural_hazard_zone":"FEMA flood risk: moderate flood hazard (per listing for 9355 Grand Ave)"},"408":{"description":"Digital Realty ORD14 is an operational colocation data center at 9377 Grand Avenue in Franklin Park, Illinois, on Digital Realty’s 40-acre Franklin Park campus. The facility’s footprint is cited around 179,000 ft².","verified_status":"operational","power_capacity_mw":20,"total_sqft":179000,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ORD14 Data Center","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"Tier 3+","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":40,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Program exemptions may apply if certified; program offers exemptions on various state and local taxes. New agreements/applications have been suspended as of mid-2026; no ORD14-specific certificate found.","natural_hazard_zone":"FEMA Flood Zone X (outside 100-year floodplain; area-level assessment)"},"409":{"description":"NTT Chicago CH1 is an operational hyperscale data center at 255 Pierce Rd, Itasca, Illinois, operated by NTT Global Data Centers. It provides 36MW of critical IT load and has about 126,000 sq ft of data-floor space on NTT’s Chicago campus.","verified_status":"operational","power_capacity_mw":36,"total_sqft":0,"year_online":"2021","construction_update":"CH1 remains operational with no active CH1-specific construction disclosed. On the same campus, CH3 is available for prelease and scheduled to open in December 2026.","recent_news":"On March 4, 2026, Data Center Dynamics reported NTT secured four US data center leases totaling 115MW, including activity at the Chicago campus; customers were not named.","notable_tenants":"","verified_name":"Chicago CH1 Data Center","verified_operator":"NTT Global Data Centers (NTT DATA)","verified_owner":"NTT Global Data Centers CH, LLC (NTT-affiliated real estate/development entity) within a campus joint venture that includes Tokyo Century and, as of 2026, JICT.","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":19,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Program sales/use-tax exemptions via DCEO MOU (active for the Itasca campus).","natural_hazard_zone":""},"410":{"description":"Equinix CH7 is a carrier-neutral Equinix IBX colocation data center at 111 Plaza Drive, Westmont, Illinois, offering interconnection services.","verified_status":"operational","power_capacity_mw":12,"total_sqft":46743,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix CH7","verified_operator":"Equinix","verified_owner":"Equinix, LLC (subsidiary of Equinix, Inc.)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral (interconnection via Equinix platforms and cross-connects; specific carrier list not publicly enumerated)","num_buildings":0,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"","natural_hazard_zone":""},"411":{"description":"SBA Edge Chicago is an operational edge/colocation data center at 603 Discovery Drive in West Chicago, Illinois, operated by SBA Edge (a subsidiary of SBA Communications). The 80,000 sq ft, carrier-neutral site offers private suites/cages and robust connectivity options.","verified_status":"operational","power_capacity_mw":7,"total_sqft":80000,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"ISI Communications; Trilogy Networks","verified_name":"SBA Edge West Chicago","verified_operator":"SBA Edge","verified_owner":"SBA Communications","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral with 8 direct fiber providers; Windstream, Comcast, AT&T, ISI Communications; connected to United Internet Exchange (UIX)","num_buildings":1,"campus_acres":5.81,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Tax Exemption program is available to qualifying data centers; no public confirmation of this facility’s enrollment.","natural_hazard_zone":"FEMA Flood Zone X/B (moderate risk, outside the 100-year floodplain); low seismic risk"},"412":{"description":"DataBank ORD4 is an operational colocation data center at 1808 Swift Drive, Suites B & C, Oak Brook, IL, operated by DataBank and offering 77,510 IT sq ft with 8.75 MW of critical IT load. The facility’s total footprint is about 147,400 sq ft.","verified_status":"operational","power_capacity_mw":8.75,"total_sqft":147400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank ORD4 - Chicago Tri-State Data Center","verified_operator":"DataBank","verified_owner":"CenterPoint Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; at least 8 onsite carriers; Zayo present at 1808 Swift Dr","num_buildings":1,"campus_acres":9,"utility_provider":"ComEd","tax_incentives":"Illinois Data Centers Investment Program exists (state/local tax exemptions); as of 2026, a two-year suspension for new data center incentives was announced.","natural_hazard_zone":""},"413":{"description":"A colocation data center at 800 E. Business Center Drive in Mount Prospect, IL, operated by DataBank as its ORD3 Mount Prospect facility; Colocation America also markets services at this address. It is notable for its suburban location outside central Chicago and roughly 28,950 IT sq ft of space.","verified_status":"operational","power_capacity_mw":6.5,"total_sqft":81610,"year_online":"2010","construction_update":"","recent_news":"The property at 800 E Business Center Dr is currently being marketed for sale on LoopNet by Cushman & Wakefield (showing as “currently available for Sale”).","notable_tenants":"","verified_name":"DataBank ORD3 – Mount Prospect Data Center (also marketed by Colocation America as Chicago DC 3 / CHIDC3)","verified_operator":"DataBank Holdings, Ltd.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 8 onsite carriers","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment program exists statewide; no facility-specific award identified.","natural_hazard_zone":"Local hazards identified in the Mount Prospect hazard mitigation annex; parcel-level FEMA flood zone not verified."},"414":{"description":"Colocation America CHIDC4 is an operational colocation data center run by Colocation America at 1808 Swift Dr., Suite A, Oak Brook, IL. It is listed as open 24/7 and sits in a multi-tenant building that also houses other operators (e.g., DataBank ORD4 in Suites B/C).","verified_status":"operational","power_capacity_mw":6,"total_sqft":48000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Colocation America CHIDC4","verified_operator":"Colocation America","verified_owner":"CenterPoint Properties","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":9,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate/low risk)"},"415":{"description":"CloudHQ ORD Campus is CloudHQ’s hyperscale data center campus at 1200 E. Algonquin Road in Mount Prospect, Illinois, on the former United Airlines headquarters site. The official campus page lists 1,700,000 sq. ft. and 252 MW of available/total critical IT load with RFS within 20 months, and Village records indicate the project remains in active development.","verified_status":"under-construction","power_capacity_mw":252,"total_sqft":1700000,"year_online":"unknown","construction_update":"Under construction and in active development. Latest milestones: January 6, 2026 Village change order for the Algonquin Road Path & Lighting Project Phase II; Major PUD Amendment on October 28, 2025 adjusting the campus configuration to two three-story buildings. The campus is marketed as “RFS within 20 months.”","recent_news":"January 6, 2026: Village of Mount Prospect approved a change order for the Algonquin Road Path & Lighting Project Phase II associated with the CloudHQ data center project; an October 28, 2025 Major PUD Amendment consolidated the plan into two three-story buildings.","notable_tenants":"","verified_name":"CloudHQ ORD Campus (Mount Prospect Technology Campus)","verified_operator":"CloudHQ","verified_owner":"Tur Ventures, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; access to high-density fiber and multiple carriers","num_buildings":2,"campus_acres":0,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Cook County Class 6b property‑tax incentive; Illinois Data Center Investment Program sales/use‑tax exemptions.","natural_hazard_zone":""},"416":{"description":"CyrusOne CHI1 is an operational data center at 2905 Diehl Road in Aurora, Illinois, operated by CyrusOne as part of its CHI1–CHI3 campus. It is notable as the former CME Group Aurora/DC3 site, where CME continues to operate market infrastructure and customer colocation.","verified_status":"operational","power_capacity_mw":48,"total_sqft":428000,"year_online":"2009","construction_update":"","recent_news":"June 25, 2026: CyrusOne updated its Aurora campus (including 2905 Diehl Rd.) noise‑mitigation and generator‑schedule communication, reflecting ongoing sound‑abatement and operational coordination in 2026.","notable_tenants":"CME Group","verified_name":"CyrusOne: CHI1 Chicago Aurora Data Center","verified_operator":"CyrusOne","verified_owner":"CyrusOne (owned by funds managed by KKR and Global Infrastructure Partners)","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; AWS Direct Connect available","num_buildings":3,"campus_acres":16,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Tax Exemptions and Credits program (eligibility for state and local tax exemptions/credits; specific award not confirmed).","natural_hazard_zone":"No parcel-specific FEMA flood-zone designation found; local floodplain mapping available via City of Aurora; hurricane exposure not applicable inland."},"417":{"description":"CyrusOne CHI2 is an operational hyperscale/colocation data center at 2805 Diehl Road in Aurora, Illinois, within the CHI1–CHI3 campus. It is about 428,000 sq ft with roughly 50 MW and is notable for hosting CME Group’s CME Globex trading platform.","verified_status":"operational","power_capacity_mw":50,"total_sqft":428000,"year_online":"2010","construction_update":"","recent_news":"June 25, 2026: CyrusOne reported continued progress on sound‑mitigation work at Building 2 (CHI2); work at Building 3 (CHI3) was substantially complete.","notable_tenants":"CME Group (CME Globex)","verified_name":"CyrusOne CHI2 - Aurora","verified_operator":"CyrusOne","verified_owner":"CyrusOne (corporate parent owned by funds managed by KKR and Global Infrastructure Partners)","cooling_type":"unknown","tier_level":"Tier III design (not Uptime-certified)","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":16,"utility_provider":"ComEd","tax_incentives":"","natural_hazard_zone":""},"418":{"description":"CyrusOne CHI5 is an operational CyrusOne colocation data center at 1850 Springer Drive in Lombard, Illinois, serving the Chicago market.","verified_status":"operational","power_capacity_mw":12,"total_sqft":60000,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne CHI5","verified_operator":"CyrusOne","verified_owner":"CyrusOne","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Tax Exemptions program; DuPage County promotes incentives. Note: reports indicate a suspension for new developments beginning in 2026.","natural_hazard_zone":"FEMA flood status requires parcel check on DuPage/FEMA FIRM maps; region is low seismic risk relative to Wabash Valley/New Madrid zones; typical Midwest tornado exposure."},"419":{"description":"Apotech Illinois 1 (IL-1) is an operational colocation data center operated by Apotech Group at 1331 E Business Center Drive in Mount Prospect, Illinois, with a building size of about 32,000 sq ft and scalable utility power capacity up to 10.0 MW.","verified_status":"operational","power_capacity_mw":10,"total_sqft":32000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Apotech IL-1","verified_operator":"Apotech Group","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III design","fiber_providers":"carrier-neutral; 7 lit carriers","num_buildings":1,"campus_acres":3.12,"utility_provider":"ComEd","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (outside the 1% annual-chance floodplain)"},"420":{"description":"H5 Data Centers Chicago is a planned, purpose-built Tier III colocation/wholesale facility operated by H5 Data Centers at 1951 W. Hastings St., Chicago, IL, designed for hyperscale, cloud, and enterprise needs. The four-story building totals about 185,000 square feet.","verified_status":"planned","power_capacity_mw":36,"total_sqft":185000,"year_online":"2027","construction_update":"Site plan approval was granted for a data center at 1951 W. Hastings on June 24–28, 2023 (IMD1 plan). No newer, verifiable construction milestone has been publicly documented; H5 currently markets readiness in 2H 2027.","recent_news":"","notable_tenants":"","verified_name":"H5 Data Centers Chicago","verified_operator":"H5 Data Centers","verified_owner":"Metro Edge Development Partners","cooling_type":"unknown","tier_level":"Tier III design","fiber_providers":"","num_buildings":1,"campus_acres":3.6,"utility_provider":"","tax_incentives":"Potential eligibility for Illinois Data Centers Investment Program (state/local tax exemptions) and local 6b incentives; note Illinois announced a two-year suspension for new data center incentive awards in 2026—eligibility depends on certification timing.","natural_hazard_zone":""},"421":{"description":"Digital Realty’s ORD11 is an operational colocation and interconnection data center at 600–780 South Federal Street in downtown Chicago, noted for rich connectivity and proximity/direct connection to the 350 E. Cermak hub.","verified_status":"operational","power_capacity_mw":10,"total_sqft":162000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty ORD11 — 600 South Federal Street","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"unknown","tier_level":"Tier III (design standard)","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (Unshaded)"},"422":{"description":"Equinix CH5 is Equinix’s Chicago‑area IBX colocation data center at 2001 Lunt Ave, Elk Grove Village, IL, described by Equinix as a state‑of‑the‑art, new Chicago data center in a highly interconnected metro.","verified_status":"operational","power_capacity_mw":0,"total_sqft":193110,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No anchor tenant or single major customer is publicly disclosed for CH5. Public ecosystem/service providers listed include Hivelocity, PhoenixNAP, STACKS INC, MassiveGRID Inc, Latitude.sh, PacketFabric Japan, Hurricane Electric, and Global Telecom & others.","verified_name":"Equinix CH5","verified_operator":"Equinix","verified_owner":"Equinix, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; ecosystem includes Hivelocity, PhoenixNAP, Hurricane Electric, PacketFabric, Global Telecom & Technology (GTT), and others","num_buildings":0,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Program: sales/use tax exemptions (up to 20 years) and potential 20% construction wage tax credit for projects in underserved areas.","natural_hazard_zone":""},"423":{"description":"EdgeConneX CHI03 is an EdgeConneX-operated colocation data center at 2055 Lunt Ave, Elk Grove Village, IL, on the company’s Chicago campus; it is a roughly 167,000 sq ft facility with about 22 MW of capacity.","verified_status":"operational","power_capacity_mw":22,"total_sqft":167000,"year_online":"unknown","construction_update":"Illinois EPA construction permit issued for the CHI03 Expansion Project at 2055 Lunt Ave (early January 2026), authorizing construction work including new emergency generator installations.","recent_news":"In January 2026, the Illinois EPA issued a construction permit for an expansion project at 2055 Lunt Ave (CHI03), authorizing construction activity at the site.","notable_tenants":"","verified_name":"EdgeConneX CHI03","verified_operator":"EdgeConneX","verified_owner":"EQT Infrastructure (via EdgeConneX Chicago Holdings, LLC)","cooling_type":"air-cooled","tier_level":"Tier III designed","fiber_providers":"Carrier-neutral; AT&T, Cogent, Zayo, Megaport, Chicago IX","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Cook County Class 6B property tax exemption (12-year reduced assessment) for parcels including 2055 Lunt Ave.","natural_hazard_zone":"FEMA Zone X (minimal flood hazard); low seismic risk"},"424":{"description":"NTT Chicago CH1 is an operational colocation data center operated by NTT Global Data Centers at 255 Pierce Rd in Itasca, Illinois, offering 36MW of critical IT load and 126,000 ft² of data-floor space within a larger engineered facility.","verified_status":"operational","power_capacity_mw":36,"total_sqft":225000,"year_online":"2021","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Chicago CH1 Data Center","verified_operator":"NTT Global Data Centers","verified_owner":"NTT Global Data Centers CH, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":19,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Illinois Data Center Investment Program sales and use tax exemptions (and possible tax credits) for up to 20 years.","natural_hazard_zone":""},"425":{"description":"Iron Mountain CHI-1 is a colocation data center operated by Iron Mountain Data Centers at 1680 Touhy Ave, Des Plaines, IL. The facility is ~315,000 sq ft and is designed for 36 MW of IT capacity, with initial 8 MW available from June 2025 and a ramp to 36 MW by January 2026.","verified_status":"operational","power_capacity_mw":36,"total_sqft":315000,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Iron Mountain CHI-1 (Chicago Data Center)","verified_operator":"Iron Mountain Data Centers","verified_owner":"1680 Touhy Investors, LLC (c/o Pritzker Realty Group)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":13,"utility_provider":"ComEd","tax_incentives":"Cook County property tax incentive (Class 6b program referenced by county), noted in local reporting in connection with the Des Plaines data center project.","natural_hazard_zone":"low risk"},"426":{"description":"1623 Farnam is an operational, carrier-neutral colocation and interconnection carrier-hotel at 1623 Farnam Street in Omaha, operated by 1623 Farnam (under the BERKS/NPG umbrella). It serves as a major Midwest interconnection hub with a long-standing network ecosystem.","verified_status":"operational","power_capacity_mw":8,"total_sqft":75000,"year_online":"unknown","construction_update":"June 2025: expansion completed at the 1623 Farnam Street facility, adding 1.5 MW of capacity.","recent_news":"On Jan 16, 2026, 1623 Farnam announced a second Omaha interconnection facility planned to be operational in 2028 with at least 5 MW, complementing the existing 1623 Farnam Street flagship.","notable_tenants":"Omaha IX; Microsoft Azure ExpressRoute/Microsoft 365 connectivity; Console Connect-enabled on-demand interconnection; Trump Media & Technology Group/Truth Social (as reported).","verified_name":"1623 Farnam","verified_operator":"1623 Farnam, LLC","verified_owner":"News-Press & Gazette Co. (Berks Group)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; host of Omaha IX; connectivity to 60+ carriers","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk (outside 500-year floodplain; no hurricanes or earthquakes)"},"427":{"description":"H5 Omaha Data Center Campus is an operational colocation campus operated by H5 Data Centers in La Vista, Nebraska, totaling 234,500 sq ft on 32 acres with carrier connectivity for enterprise and cloud workloads.","verified_status":"operational","power_capacity_mw":17.3,"total_sqft":234500,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"Yahoo is the only publicly named company associated with the site (originally built/operated by Yahoo); H5 does not publicly disclose current tenants.","verified_name":"H5 Data Centers Omaha Data Center","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers","cooling_type":"chilled water","tier_level":"Tier III design","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":32,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"Nebraska data center incentives apply, including sales/use tax exemptions on qualifying data center equipment and related infrastructure; Nebraska also offers tiers of sales and property tax benefits for data centers.","natural_hazard_zone":"Conflicting flood info: LoopNet shows FEMA Flood Zone AE; local mitigation profile notes limited flood impacts and no repetitive loss properties. Tornado/severe storm risk is regionally present; seismic/hurricane risk is low."},"428":{"description":"Lumen Premier Elite Omaha Data Center (Lumen Omaha 1) is an operational Lumen colocation/telecom facility at 6805 Pine Street, Omaha, Nebraska, within the Scott Data Center building. Lumen lists more than 10,000 sq ft of raised floor and up to 2 MW of critical load.","verified_status":"operational","power_capacity_mw":2,"total_sqft":110000,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Premier Elite Omaha Data Center (Lumen Omaha 1)","verified_operator":"Lumen Technologies","verified_owner":"Scott Technology Center (Suzanne & Walter Scott Foundation)","cooling_type":"chilled water","tier_level":"Tier III","fiber_providers":"Carrier-neutral; Lumen, AT&T, Cox, Verizon","num_buildings":0,"campus_acres":20,"utility_provider":"Omaha Public Power District","tax_incentives":"ImagiNE Nebraska Act participation associated with the Pine Street campus (addresses including 6825 Pine St listed in the state’s annual report for a key employer).","natural_hazard_zone":"Outside 100-year flood plain; tornado exposure region; storm-hardened to >200 mph winds"},"429":{"description":"Scott Data Center Omaha is an operational multi-tenant colocation/HPC facility operated by Scott Data at 6825 Pine Street, Suite 141, Omaha, Nebraska, with Uptime Institute Tier III-certified infrastructure.","verified_status":"operational","power_capacity_mw":20,"total_sqft":110000,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"Lumen (Lumen Omaha) leases its site from Scott Data Center.","verified_name":"Scott Data Center (Omaha)","verified_operator":"Scott Data Center","verified_owner":"Scott Technology Center (governed by the Suzanne & Walter Scott Foundation)","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"","num_buildings":1,"campus_acres":20,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"","natural_hazard_zone":""},"430":{"description":"TierPoint operates the Omaha–Bellevue colocation data center at 1001 North Fort Crook Road in Bellevue, Nebraska. It serves as a regional telecommunications hub located outside the 500‑year flood plain with roughly 100,000+ sq ft of facility space.","verified_status":"operational","power_capacity_mw":8,"total_sqft":100000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Omaha - Bellevue Data Center","verified_operator":"TierPoint","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"ImagiNE Nebraska Act incentives available (broader subsidy program remains despite repeal of a narrow data-center-specific carveout).","natural_hazard_zone":"Minor flood risk area (Southeast Bellevue); not identified as a high-risk FEMA flood zone."},"431":{"description":"TierPoint Omaha - Midlands is an operational colocation data center operated by TierPoint at 11425 South 84th Street, Papillion, Nebraska, serving the Omaha metro.","verified_status":"operational","power_capacity_mw":12,"total_sqft":63000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Omaha - Midlands Data Center","verified_operator":"TierPoint","verified_owner":"Tierpoint LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"Nebraska sales/use tax exemption for data centers’ qualifying tangible personal property; potential ImagiNE Nebraska Act benefits (e.g., sales/use tax refunds) if statutory investment and job thresholds are met.","natural_hazard_zone":"Local flood hazards in Papillion (nearby creeks); tornado-prone region; site-specific FEMA flood zone not documented in provided excerpts."},"432":{"description":"FNTS operates a colocation and managed-services data center at 201 N 16th St in downtown Omaha with approximately 4 MW of capacity and roughly 190–193k sq ft of facility space.","verified_status":"operational","power_capacity_mw":4,"total_sqft":193380,"year_online":"unknown","construction_update":"","recent_news":"Jan 14, 2026: FNTS outlined 2026 infrastructure/platform refreshes and capacity additions tied to Mainframe-as-a-Service and hybrid cloud. Apr 2026: FNTS launched a Nutanix-powered private cloud offering (service/platform expansion, not building construction).","notable_tenants":"Metropolitan Utilities District (MUD)","verified_name":"First National Technology Solutions (FNTS) Omaha Data Center","verified_operator":"First National Technology Solutions (FNTS)","verified_owner":"First National Bank","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":3.22,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"","natural_hazard_zone":""},"433":{"description":"LightEdge Omaha Data Center is an operational colocation facility at 1148 American Parkway in Papillion, Nebraska, operated by LightEdge. Originally built for Cabela’s and acquired/retrofitted by LightEdge in 2017, it serves as a multi-tenant data center.","verified_status":"operational","power_capacity_mw":1.25,"total_sqft":21377,"year_online":"2017","construction_update":"Q2 2022: Local report lists a “Lightedge Omaha Equipment Building Upgrade” permit at 1148 American Parkway, valued at $5,767,996.","recent_news":"","notable_tenants":"Cabela's","verified_name":"LightEdge Omaha Data Center","verified_operator":"LightEdge","verified_owner":"LightEdge Solutions (a GI Partners portfolio company)","cooling_type":"chilled water","tier_level":"Tier III-equivalent","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"Nebraska provides data center sales/use tax exemptions and ImagiNE Nebraska investment tax credits/personal property tax benefits for qualifying projects and equipment.","natural_hazard_zone":"120 mph wind rating; other hazards not specified"},"434":{"description":"LoCoCoLo Omaha is a small colocation data center operated by Power Protection Products, Inc. in Omaha, offering about 2,000 sq ft of built-out IT whitespace and estimated to have come online in 2011.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2000,"year_online":"2011","construction_update":"","recent_news":"Property encompassing 1205–1207 S 75th St was listed for sale on Jun 9, 2026 (asking $1,475,000); no facility-specific expansion, tenant, or regulatory updates were found in the same period.","notable_tenants":"","verified_name":"LoCoCoLo","verified_operator":"Power Protection Products, Inc. (P3)","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; multiple connection feeds (specific carriers not listed)","num_buildings":1,"campus_acres":0,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"","natural_hazard_zone":"Moderate city-level flood risk; exact FEMA flood zone undetermined"},"435":{"description":"Windstream Omaha is a Windstream-operated telecom/colocation facility at 1721 St Marys Ave, Omaha, Nebraska. Public listings confirm the site but do not disclose power capacity or building size.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Omaha","verified_operator":"Windstream (subsidiary of Uniti Group Inc.)","verified_owner":"Terrapact Digital Assets LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream/Uniti","num_buildings":1,"campus_acres":0.58,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"Nebraska ImagiNE Act available for qualifying data centers (e.g., sales/use tax exemptions, property tax exemptions, investment/wage credits); no evidence this specific facility has received incentives.","natural_hazard_zone":"FEMA Zone X (minimal flood risk); located in Tornado Alley; low seismic risk"},"436":{"description":"IP Pathways Omaha is an operational colocation data center operated by IP Pathways at 5940 S 118th Cir, Omaha, NE, featuring 4,000 sq. ft. of white space and 5,000 kW of critical power.","verified_status":"operational","power_capacity_mw":5,"total_sqft":4000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"IP Pathways Omaha Data Center","verified_operator":"IP Pathways","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"","natural_hazard_zone":""},"437":{"description":"Cogent Data Center - Omaha is a Cogent Communications wholesale colocation facility at 810 South 7th St, Omaha, NE, offering Internet, VPN, Transport, and Colocation services. The site is a 30,361 sq ft data center with 2.00 MW of total power.","verified_status":"operational","power_capacity_mw":2,"total_sqft":30361,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Omaha Data Center (Cogent)","verified_operator":"Cogent Communications","verified_owner":"US Sprint Communications Co","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; Cogent, Windstream, UPRR, SDN, Qwest, Nebraska Link, Cox","num_buildings":0,"campus_acres":1.6,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X — Area of Minimal Flood Hazard (not in SFHA)"},"438":{"description":"CyrusOne OCB1 is an operational wholesale colocation data center operated by CyrusOne at 4700 Gifford Rd., Council Bluffs, Iowa, totaling 216,000 sq ft (about 120,000 sq ft of raised floor) with 18 MW of total IT capacity. The site is noted as being powered by 100% renewable electricity.","verified_status":"operational","power_capacity_mw":18,"total_sqft":216000,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne OCB1 - Council Bluffs","verified_operator":"CyrusOne","verified_owner":"CyrusOne Inc. (privately owned by funds managed by KKR and Global Infrastructure Partners; asset-level deed owner not publicly disclosed)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; CyrusOne National IX / various carriers and providers","num_buildings":1,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"No facility-specific award verified. Iowa data center sales/use tax exemptions exist for qualifying large projects; Council Bluffs offers TIF/Urban Renewal programs, but OCB1 qualification not confirmed.","natural_hazard_zone":"FEMA Flood Zone X (protected by levee); residual Missouri River flood exposure highlighted by June 2024 voluntary evacuations covering the Gifford Road area"},"439":{"description":"A ~61.5–62k sq ft, 5 MW data center in the Windsor Dr / S 158th St area of Papillion, Nebraska, being developed and operated by Connect Data Centers (Oppidan), with city permits tied to 11684 S 158th St and active construction in 2025–2026.","verified_status":"under-construction","power_capacity_mw":5,"total_sqft":61550,"year_online":"2026","construction_update":"Mar 17, 2026: Installation of a fire alarm and VESDA smoke detection system for the 5MW Papillion Data Center.","recent_news":"Mar 17, 2026: City report notes installation of a fire alarm and VESDA smoke detection system for the 5MW Papillion Data Center.","notable_tenants":"","verified_name":"Connect Data Centers: Papillion, NE","verified_operator":"Connect Data Centers","verified_owner":"CLOP Omaha NE, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"Nebraska programs may apply, including: (a) a sales tax exemption for data centers on qualifying tangible personal property; and (b) ImagiNE Nebraska Act incentives, where “Data centers may earn a sales tax exemption if $50 million is invested and 25 new jobs are created.” Actual eligibility depends on final investment and jobs.","natural_hazard_zone":"Minor flood risk area (Papillion) with local hazards from Big Papillion Creek and West Papillion Creek."},"440":{"description":"Fidelity Omaha West DC is Fidelity Investments’ private enterprise data center at 11050 Cornhusker Rd, Papillion, Nebraska; it is operational, built in 2014, and listed at 8 MW. The project was announced in 2012 as a roughly $200 million data center expected to be online in 2014.","verified_status":"operational","power_capacity_mw":8,"total_sqft":96970,"year_online":"2014","construction_update":"Permit Finaled on 2025-12-29 for the Fidelity Data Center Expansion (new immersion-cooling data centers, standalone foundation structure, and MEP equipment) at 11050 Cornhusker Rd.","recent_news":"City of Papillion reports in Jan and Feb 2026 show a Fidelity Data Center Expansion at 11050 Cornhusker Rd with a Commercial New permit Finaled on 12/29/2025 for new immersion-cooling data centers, a standalone foundation structure, and MEP equipment at the existing facility.","notable_tenants":"","verified_name":"Fidelity Omaha West DC","verified_operator":"Fidelity Investments","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Nebraska Advantage (large data center) incentives; eligible for a 6% wage credit and a 10% investment credit that can be applied to sales tax, income tax, and site-specific real property tax.","natural_hazard_zone":""},"441":{"description":"A Google-operated hyperscale data center in Council Bluffs, Iowa, located at/near 1430 Veterans Memorial Hwy, notable as one of Google’s long-running U.S. campuses with ongoing investment and expansion.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2890000,"year_online":"2009","construction_update":"Dec 10, 2025: Google announced a $1 billion expansion at Council Bluffs adding two new buildings; on May 30, 2025, Google also announced a $7 billion Iowa investment including expansion of the existing Council Bluffs facility.","recent_news":"June 18, 2026: The Council Bluffs City Council rejected the mayor’s proposal for a temporary moratorium on new data center construction, following debate over infrastructure and development impacts.","notable_tenants":"","verified_name":"Google Council Bluffs Data Center","verified_operator":"Google","verified_owner":"Google","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":52.44,"utility_provider":"MidAmerican Energy","tax_incentives":"IEDA approved an additional $19.8M in tax credit benefits (Phase II); the IEDA board approved a $16.6M local tax break in 2022; Iowa’s Data Center Sales and Use Tax Incentives program applies to eligible projects.","natural_hazard_zone":"Levee-protected Missouri River area; nearby areas include FEMA Zone A/AE (Lake Manawa/Lateral 5). Exact parcel FEMA designation not confirmed."},"442":{"description":"Google Southlands - Building 1 is a Google-operated hyperscale data center at 10420 Bunge Ave, Council Bluffs, Iowa, on the Southlands campus. Project listings report it as operating with 149 MW of capacity.","verified_status":"operational","power_capacity_mw":149,"total_sqft":871262,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Google Southlands – Building 1 (Council Bluffs Southlands 1)","verified_operator":"Google","verified_owner":"Google, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Google private network; redundant long-haul paths (e.g., to Denver, Salt Lake City, Omaha).","num_buildings":7,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa High Quality Jobs incentives (income tax credits, sales/use tax refunds, property-tax exemptions) and local Council Bluffs property-tax exemptions (e.g., $33M over 20 years).","natural_hazard_zone":""},"443":{"description":"Google Omaha - Building 1 is a self-operated Google hyperscale data center at 11110 State St in northwest Omaha and represents the first phase of the Omaha campus, which was reported operational in 2024.","verified_status":"operational","power_capacity_mw":100,"total_sqft":700000,"year_online":"2024","construction_update":"Jan 11, 2025: Local coverage reported Google continues to build out its campus in northwest Omaha; Phase 2 is listed as planned, following 2023 expansion filings.","recent_news":"","notable_tenants":"","verified_name":"Google Omaha - Building 1","verified_operator":"Google","verified_owner":"Westwood Solutions LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":460,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"Nebraska data center sales/use tax exemption for qualifying tangible personal property; broader ImagiNE Nebraska Act incentives/credits remain available after repeal of one narrow data-center-specific carveout.","natural_hazard_zone":"Tornado/severe convective storm exposure; low seismic hazard; FEMA flood zone for 11110 State St not confirmed in public docs cited."},"444":{"description":"Google Papillion - Building 1 is a Google-operated hyperscale data center at 14651 Gold Coast Rd in Papillion, Nebraska, part of the company’s Papillion campus; CleanView lists it as developed by Google with 59 MW and operational since 2020, and Google confirms ongoing investment in the Papillion data center community.","verified_status":"operational","power_capacity_mw":59,"total_sqft":0,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Google Papillion - Building 1","verified_operator":"Google","verified_owner":"Fireball Group LLC","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":275,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"State data center incentives under Nebraska policy (e.g., ImagiNE Nebraska Act) and local concern about shifting tax burdens; OPPD Rate 261M large-customer tariff associated with the project.","natural_hazard_zone":"Minor citywide flood risk (riverine floodplains present); no site-specific FEMA flood zone cited."},"445":{"description":"Google Papillion - Building 3 is a Google-operated hyperscale data center at 15249 Gold Coast Rd in Papillion, Nebraska, part of the Google Papillion campus; directories list it as operating with 116 MW capacity and 297,442 sq ft, online in 2023.","verified_status":"operational","power_capacity_mw":116,"total_sqft":297442,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Google Papillion - Building 3","verified_operator":"Google","verified_owner":"Google LLC","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":275,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"State-level incentives include sales/use tax exemptions for qualifying data-center equipment and potential ImagiNE Nebraska investment/wage credits; no Papillion Building 3-specific abatement amount found.","natural_hazard_zone":"FEMA Flood Zone X (shaded/B) – moderate flood hazard; regional severe-weather/tornado exposure"},"446":{"description":"Google Papillion – Building 4 is a Google‑operated hyperscale data center building at 15203 Gold Coast Rd within Google’s Papillion, Nebraska campus. Public listings and project pages indicate it was developed by Google and is operational with large‑scale capacity.","verified_status":"operational","power_capacity_mw":116,"total_sqft":297417,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Google Papillion - Building 4","verified_operator":"Google","verified_owner":"Fireball Group LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":275,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"State incentives available under Nebraska’s programs (e.g., sales/use tax exemptions on data center equipment; broader subsidy programs under current law). No facility-specific award disclosed.","natural_hazard_zone":"Minor flood risk citywide; local hazards include Big Papillion Creek, West Papillion Creek, Walnut Creek, and Midland Creek. No notable hurricane or seismic zone."},"447":{"description":"Meta Sarpy Data Center is a Meta-operated hyperscale campus in Sarpy County, Nebraska, originally announced at Highway 50 and Capehart Road in Papillion and later expanded to a nine‑building campus totaling about 4 million sq ft. It supports Meta’s platforms and is one of the state’s largest data center campuses.","verified_status":"operational","power_capacity_mw":160,"total_sqft":4000000,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"None publicly disclosed; the campus powers Meta’s own apps (e.g., Facebook, Instagram).","verified_name":"Meta Sarpy Data Center","verified_operator":"Meta","verified_owner":"","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":9,"campus_acres":146,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"Nebraska data center incentives (Nebraska Advantage/ImagiNE), including sales/use-tax exemptions and related credits for qualifying data center investments.","natural_hazard_zone":""},"448":{"description":"Meta Sarpy East Campus / Tower Two is a Meta-operated hyperscale data center building within the company’s Sarpy Data Center campus at 14734 Friend Plaza in Springfield (Sarpy County) near Omaha, Nebraska; the campus was announced to grow to a roughly 4 million-square-foot, nine-building footprint.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No publicly disclosed third-party tenants; owner-operator use by Meta.","verified_name":"Meta Sarpy – Building 2 (East Campus)","verified_operator":"Meta","verified_owner":"Raven Northbrook LLC (Meta Platforms, Inc. affiliate)","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":9,"campus_acres":0,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"State incentives (Nebraska) — Raven Northbrook LLC/Meta received substantial state tax credits/refunds linked to data center investment.","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard)"},"449":{"description":"Project Lola is a data center campus in Council Bluffs, Iowa being developed by Edged, comprising two buildings of roughly 285,445 sq ft each and a campus-scale power goal of about 200MW.","verified_status":"under-construction","power_capacity_mw":200,"total_sqft":285445,"year_online":"unknown","construction_update":"June 26, 2026: First building topped out; campus remains under construction.","recent_news":"June 26, 2026: DCD reported the first Project Lola building in Council Bluffs has topped out. May 28, 2026: Edged announced nearly $2B in financing to accelerate growth across U.S. markets including Council Bluffs.","notable_tenants":"","verified_name":"Edged Council Bluffs - Building 1 (Project Lola)","verified_operator":"Edged US (Edged Energy)","verified_owner":"EDC Omaha Landco LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":81.55,"utility_provider":"MidAmerican Energy","tax_incentives":"","natural_hazard_zone":"Levee-protected floodplain context; verify parcel zone via FEMA MSC"},"450":{"description":"TierPoint Omaha – Bellevue (BEL) is an operational TierPoint colocation and business-continuity data center at 1001 Fort Crook Road North, Bellevue, NE, offering 100,000+ total square feet and raised-floor space.","verified_status":"operational","power_capacity_mw":6,"total_sqft":100000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Omaha - Bellevue Data Center","verified_operator":"TierPoint","verified_owner":"Namdar Realty Group","cooling_type":"unknown","tier_level":"Tier III-equivalent (design); no Uptime Institute certification cited","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"","natural_hazard_zone":""},"451":{"description":"TierPoint Omaha - Midlands (MID) is TierPoint’s operational colocation data center at 11425 South 84th Street in Papillion, Nebraska, notable for a Tier IV–hardened design and LEED Gold recognition.","verified_status":"operational","power_capacity_mw":6.5,"total_sqft":63000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Omaha - Midlands (MID)","verified_operator":"TierPoint","verified_owner":"","cooling_type":"chilled water","tier_level":"Not Uptime-certified; Tier III equivalent (current listings) with original Tier IV-hardened design.","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":4.13,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"Statewide Nebraska data center incentives (e.g., Nebraska Advantage) are available; no facility-specific abatement/award identified.","natural_hazard_zone":"Tornado/wind exposure area; facility hardened to 250 mph wind design."},"452":{"description":"Cogent Communications operates a telecom/colocation data center at 810 South 7th St, Omaha, NE 68108, providing Internet, Ethernet, and colocation services.","verified_status":"operational","power_capacity_mw":2,"total_sqft":30361,"year_online":"unknown","construction_update":"","recent_news":"No facility-specific updates in the last 6 months. On May 26, 2026, Cogent announced a sale of 10 data centers (Phoenix, Anaheim, Burbank, Stockton, Atlanta, Chicago, Elkridge, Kansas City, Nashville, Houston), which did not include Omaha.","notable_tenants":"","verified_name":"Cogent Data Center - Omaha","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent; Windstream; UPRR; SDN; Qwest; Nebraska Link; Cox","num_buildings":0,"campus_acres":0,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"","natural_hazard_zone":"low risk"},"453":{"description":"Digital Realty MIA10 is an operational colocation/carrier-hotel facility at 36 NE 2nd Street in downtown Miami operated by Digital Realty; the site is listed at 162,000 ft² and is described as an international gateway engineered to withstand Category 5 hurricanes and located outside the FEMA 100‑year flood zone.","verified_status":"operational","power_capacity_mw":12.4,"total_sqft":162000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty MIA10 - 36 NE 2nd Street","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc. (via Digital Realty Trust, L.P.)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 31 networks and 3 IXs (e.g., FL-IX/Miami IX ecosystems present via the building’s interconnection fabric)","num_buildings":1,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida’s data center sales/use tax exemption exists but, as of Aug 1, 2025, is limited to ≥100 MW IT load; MIA10’s 1.3 MW load is below the threshold, so no facility-specific exemption applies.","natural_hazard_zone":"Outside FEMA 100-year flood zone; Category 5 hurricane–hardened building"},"454":{"description":"Equinix MI1 (formerly NAP of the Americas) is an operational, carrier‑neutral colocation and Internet exchange facility operated by Equinix at 50 NE 9th Street in downtown Miami. It is a premier U.S.–Latin America interconnection hub within a six‑story building of roughly 750,000 sq ft, with ~255k sq ft of data center space.","verified_status":"operational","power_capacity_mw":20,"total_sqft":750000,"year_online":"2001","construction_update":"Sept 10, 2024: Local report noted sixth‑floor construction at MI1 with more than 1,000 additional cabinets expected by February 2025; current listings show no leaseable power under construction and only master‑planned additional capacity.","recent_news":"","notable_tenants":"Equinix reports 600+ customers, 130+ telecom carriers, and seven Tier 1 networks at MI1, with named customers including World Fuel Services and Citrix; interconnection includes access to AWS, Microsoft Azure, and Google Cloud. Active networks listed include Akamai, Amazon, Apple, Cloudflare, Google, Meta, Microsoft, Netflix, and TikTok U.S. Data Security; carriers present include Zayo, Windstream Wholesale, and Arelion.","verified_name":"Equinix MI1 (NAP of the Americas)","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida data center sales and use tax exemption (Section 212.08(5)(r)); extended through June 30, 2027.","natural_hazard_zone":"Hurricane zone; built 32 ft above sea level; designed to withstand Category 5 winds."},"455":{"description":"CoreSite MI1 is CoreSite’s operational colocation data center at 2115 NW 22nd Street in Miami, Florida, offering more than 45,000 sq ft and a dense interconnection ecosystem.","verified_status":"operational","power_capacity_mw":0,"total_sqft":45000,"year_online":"2006","construction_update":"","recent_news":"Feb 26, 2026: Community IX’s FL‑IX established at CoreSite (including Miami/MI1), expanding Internet exchange/interconnection options.","notable_tenants":"","verified_name":"CoreSite MI1","verified_operator":"CoreSite","verified_owner":"American Tower Corporation","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral with numerous on-net networks; examples include AT&T, Cogent, Comcast, Crown Castle Fiber, Hurricane Electric, Lumen/Level 3, NTT, Tata Communications, Verizon, Zayo; exchanges include FL-IX and CoreSite Any2/OCX; campus ring connectivity with MI2 and NAP of the Americas.","num_buildings":1,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida data center sales/use tax exemption (Section 212.08(5)(r), F.S.) active through June 30, 2027; requires high investment and IT load thresholds. CoreSite’s published tax program list references Virginia and Illinois.","natural_hazard_zone":"Hurricane zone; facility built to withstand Category 5 hurricanes; flood exposure present in Miami-Dade (local flood risk varies by parcel)."},"456":{"description":"CoreSite MI2 is an operational CoreSite colocation data center at 2100 NW 84th Avenue in Doral, Florida, offering ~103,000 sq ft and high-density, low-latency interconnection. MI2 is linked to CoreSite’s MI1 for enhanced campus connectivity.","verified_status":"operational","power_capacity_mw":4.3,"total_sqft":103000,"year_online":"unknown (acquired and rebranded as MI2 on 2022-09-27)","construction_update":"","recent_news":"Feb 26, 2026: CoreSite announced hosting Community IX’s FL-IX; FL-IX lists CoreSite MI2 (2100 NW 84th Ave) as a facility.","notable_tenants":"Community IX’s FL-IX internet exchange is hosted at MI2; no other anchor tenants are publicly confirmed. Baptist Health South Florida previously owned the data center at this address (offered for sale in 2022), but ongoing tenancy is not publicly confirmed.","verified_name":"CoreSite MI2","verified_operator":"CoreSite","verified_owner":"CoreSite, L.P. (American Tower company)","cooling_type":"chilled water","tier_level":"concurrently maintainable design / Tier III-equivalent (no public Uptime certification cited)","fiber_providers":"carrier-neutral; lit fiber to MI1 up to 100Gbps; examples present on public peering listings include Interphase Communications and Macarne","num_buildings":1,"campus_acres":4.54,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida statewide data center sales/use tax exemption under Fla. Stat. §212.08(5)(r); no MI2-specific local abatement identified","natural_hazard_zone":"Hurricane-prone region; built to withstand Category 5 hurricane winds with a 185-mph-gust-rated roof (FEMA flood-zone designation for parcel not cited)"},"457":{"description":"EdgeConneX MIA01 is an edge colocation data center at 2132 NW 114th Avenue, Miami, FL, operated by EdgeConneX. It is a 27,000 sq ft facility with 11,300 sq ft of raised floor and rich network connectivity options.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":27000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX MIA01","verified_operator":"EdgeConneX","verified_owner":"EdgeConneX","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Megaport Cloud SDN available; FiberLight connectivity to the Miami edge data center","num_buildings":1,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida data center sales/use tax exemption under Section 212.08(5)(r), Florida Statutes (site-specific award not found).","natural_hazard_zone":"Hurricane-prone region; FEMA flood hazard mapping applies (exact flood zone for 2132 NW 114th Ave not captured here)."},"458":{"description":"EdgeConneX MIA02 is an operational EdgeConneX colocation/edge data center in the Miami, Florida market, offering carrier‑neutral connectivity and recognized sustainability credentials.","verified_status":"operational","power_capacity_mw":6,"total_sqft":65518,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX MIA02","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III-designed / concurrently maintainable N+1 (no public Uptime Institute certification found)","fiber_providers":"carrier-neutral; AT&T, Breezeline, Cogent, Comcast, Crown Castle, Lumen, WhiteSky, Megaport","num_buildings":1,"campus_acres":4.55,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE (high-risk flood zone)"},"459":{"description":"Equinix MI3 is an Equinix-operated colocation and interconnection data center at 4680 Conference Way South, Suite 150, Boca Raton, Florida, serving the Miami market as an internet exchange/interconnection site.","verified_status":"operational","power_capacity_mw":2,"total_sqft":31310,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"No single anchor colocation tenant publicly confirmed. Networks present include AMPATH, Angola Cables, Arelion (Twelve99), Adylnet Telecom, and C3Aero.","verified_name":"Equinix MI3","verified_operator":"Equinix","verified_owner":"Crocker Partners","cooling_type":"hybrid","tier_level":"Tier III equivalent","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"Hurricane zone (outside evacuation zone up to Cat 5); above 100‑year Base Flood Elevation; Seismic Design Category 0"},"460":{"description":"Equinix MI6 is an operational Equinix IBX carrier‑neutral colocation data center at 1525 NW 98th Court in Doral (Miami market). The site’s total building area is about 108,336 sq ft with roughly 75,043 sq ft of raised‑floor/colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":108336,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix MI6","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"air-cooled","tier_level":"Tier 2 Equivalent (no formal Uptime certification)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":7.74,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida data center sales & use tax exemption (effective 2017; extended to June 30, 2027). Note: 2025 legislation seeks to end the exemption for existing data centers with <100 MW critical IT load.","natural_hazard_zone":"FEMA Flood Zone X/AH (per parcel data) and hurricane-prone region (South Florida)."},"461":{"description":"365 Data Centers Fort Lauderdale is an operational colocation data center at 3250 W Commercial Blvd., Fort Lauderdale, FL, operated by 365 Data Centers and offering carrier connectivity including AT&T, Breezeline (ABB), Comcast, Crown Castle, Hotwire, Lumen (CenturyLink), and Windstream.","verified_status":"operational","power_capacity_mw":1,"total_sqft":11400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers Fort Lauderdale Data Center","verified_operator":"365 Data Centers","verified_owner":"MYP Commercial Place, LLC (managed by YMP Real Estate Management)","cooling_type":"unknown","tier_level":"Tier 2 (electrical tier equivalent; no Uptime certification cited)","fiber_providers":"carrier-neutral; IX-friendly; facility listed on PeeringDB (365 Data Centers Ft. Lauderdale – FLL)","num_buildings":0,"campus_acres":10.5,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida’s data center sales/use tax exemption was limited beginning in 2025 to facilities with at least 100 MW critical IT load; this sub-100 MW site likely does not qualify.","natural_hazard_zone":"Hurricane-prone South Florida/Broward County; FEMA Broward flood maps effective July 31, 2024 (address-specific FEMA flood zone not determined)."},"462":{"description":"Flexential operates an operational colocation data center at 5301 NW 33rd Avenue in Fort Lauderdale with a 64,164‑sq‑ft footprint and 3.15 MW of critical power, offering a 100% SLA on power, cooling, and network.","verified_status":"operational","power_capacity_mw":3.15,"total_sqft":64164,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Monet subsea cable presence was reported at the facility in 2022; no anchor colocation tenants or major enterprise customers are publicly disclosed.","verified_name":"Flexential Fort Lauderdale Data Center","verified_operator":"Flexential","verified_owner":"LANDMARK DIGITAL INFRASTRUCTURE OPERATING COMPANY LLC","cooling_type":"unknown","tier_level":"N+1 power and fully redundant cooling; no Uptime Institute Tier certification cited","fiber_providers":"carrier-neutral; dual fiber entry; Monet subsea cable extension (Angola Cables)","num_buildings":1,"campus_acres":4.31,"utility_provider":"Florida Power & Light Company (FPL)","tax_incentives":"Florida statewide data center sales/use tax exemption exists for qualifying facilities; facility-specific qualification not confirmed.","natural_hazard_zone":"South Florida hurricane exposure; marketed as Category 5 hurricane-resistant; address-specific FEMA flood zone not confirmed."},"463":{"description":"RadiusDC Miami I is an operational colocation data center operated by RadiusDC at 11300 NW 25th Street, Sweetwater, FL. It is a CAT5-rated facility with two data halls currently offering up to 12MW of N+1 critical-load capacity.","verified_status":"operational","power_capacity_mw":12,"total_sqft":175000,"year_online":"unknown","construction_update":"Planned expansion: initial phase targeted for completion in H1 2026, with Data Hall 8 (6MW) RFS in Q3 2026.","recent_news":"","notable_tenants":"","verified_name":"RadiusDC Miami I","verified_operator":"RadiusDC","verified_owner":"RadiusDC","cooling_type":"hybrid","tier_level":"Tier III claimed/equivalent; Uptime Institute certification not independently confirmed","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida eliminated the sales/use‑tax exemption for sub‑100 MW data centers effective Aug 1, 2025 (HB 7031); no facility‑specific local incentive found.","natural_hazard_zone":"Hurricane-prone region; facility constructed to withstand Category 5 hurricane winds."},"464":{"description":"Iron Mountain MIA-1 is Iron Mountain’s purpose-built, multi-tenant colocation data center at 2925 NW 120th Terrace in Miami, designed as an AI/GPU‑ready facility with 150,000 sq ft and up to 16 MW of customer IT load (26 MVA redundant operational power), targeted for 2026 completion.","verified_status":"under-construction","power_capacity_mw":16,"total_sqft":150000,"year_online":"2026","construction_update":"Feb 27, 2025: Groundbreaking for MIA-1. Aug 8, 2025: Structure topped out.","recent_news":"Local coverage in April–May 2026 reported resident opposition/concerns about the MIA-1 project in Westview, including issues around notification, noise, air quality, generators, and infrastructure impacts.","notable_tenants":"","verified_name":"Iron Mountain MIA-1","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Incorporated (NYSE: IRM)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":3.4,"utility_provider":"","tax_incentives":"Florida’s data center sales tax exemption excludes facilities under 100 MW IT load effective Aug 1, 2025; at 16 MW, MIA-1 does not qualify. Florida also requires at least $150M cumulative capital investment.","natural_hazard_zone":"Hurricane-prone region; ZIP 33167 has minor flood risk over the next 30 years."},"465":{"description":"Metrobloks MIA A1 (MIA‑MB01) is a planned Metrobloks colocation data center at 500 NW 137th Avenue, Miami, FL, marketed as “coming soon” with 16.8 MW of critical IT capacity. The site was acquired in March 2025 and is targeted to launch in Q4 2026.","verified_status":"planned","power_capacity_mw":16.8,"total_sqft":112900,"year_online":"2026 (expected)","construction_update":"Mar 31, 2025: Metrobloks announced it had acquired the 4.05-acre site at 500 NW 137th Avenue to develop a 15.2 MW AI-ready data center; as of April 2026, a regional map still lists the site as Proposed (15.0–15.2 MW).","recent_news":"April 2026: A regional council’s data-center map lists “Metrobloks Miami Data Center (MIA-A1)” at 500 NW 137th Ave as Proposed (15.0–15.2 MW), indicating the project remains in planning.","notable_tenants":"","verified_name":"Metrobloks MIA A1","verified_operator":"Metrobloks","verified_owner":"MB Sweetwater Site LLC","cooling_type":"hybrid","tier_level":"Designed to Uptime Institute Tier III standards (certification not publicly confirmed)","fiber_providers":"","num_buildings":1,"campus_acres":4.05,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"Hurricane-prone region; FEMA flood zone not specified"},"466":{"description":"AT&T Miami MIA1 is a telecom/colocation data center at 444 NW 79th Ave, Miami, with 189,003 sq ft of space and active directory listings. Built by AT&T, the asset was moved under Brookfield’s Evoque in 2018 and rebranded under Centersquare in 2024; public listings still show the site operational.","verified_status":"operational","power_capacity_mw":7,"total_sqft":189003,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"AT&T Miami MIA1","verified_operator":"AT&T","verified_owner":"Bellsouth Telecommunications, LLC (AT&T) / Southern Bell Telephone & Telegraph Company","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":24.93,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"No facility-specific incentive found. Florida limited its data center sales/use tax exemption beginning Aug 1, 2025 to projects with ≥100 MW IT load; at ~7 MW, this facility would not qualify.","natural_hazard_zone":"Hurricane/storm-surge exposure; FEMA flood hazard mapping in Miami-Dade (site-specific zone not quoted)."},"467":{"description":"Cogent 200 SE 1st is an operational Cogent Communications colocation/telecom data center at 200 SE 1st Street in downtown Miami, offering about 5,368 sq ft of space with roughly 0.4 MW capacity. It sits within a 12‑story, ~142,233‑sq‑ft office/data‑center building acquired by Triple Double and Stonerock Capital Partners in 2022.","verified_status":"operational","power_capacity_mw":0.4,"total_sqft":5368,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Miami","verified_operator":"Cogent Communications, Inc.","verified_owner":"SRCTD 44-200 LLC and FS Equity Investments II LLC (affiliated with Triple Double/Stonerock Capital Partners ownership group).","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Cogent","num_buildings":1,"campus_acres":0.32,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida data center sales/use tax exemption exists under Section 212.08(5)(r), but policy changes reported in 2025 indicate hyperscale campuses >100MW retain exemptions. No site-specific incentive found for this facility.","natural_hazard_zone":"FEMA Flood Zone X (minimal risk); within Miami-Dade County’s High Velocity Hurricane Zone (HVHZ)"},"468":{"description":"A Cogent Communications telecom/colocation data center at 5050 Conference Way North, Suite 100, Boca Raton, FL, offering Internet, VPN, Transport and Colocation services; the site lists 10,011 sq ft with UPS-backed power and a backup generator.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":10011,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Boca Raton","verified_operator":"Cogent Communications","verified_owner":"CP Group (formerly Crocker Partners)","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications","num_buildings":1,"campus_acres":123,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"Hurricane zone (South Florida; Boca Raton evacuation planning area)"},"469":{"description":"Telxius Boca Raton Data Center (TBOC01) is an operational telecom/data center and submarine cable landing station operated by Telxius Cable at 6503 W Rogers Circle, Boca Raton, Florida. It serves as the Boca Raton landing point for Telxius’ SAm‑1 system and is the licensed landing site for the forthcoming TIKAL‑AMX3 cable.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2001","construction_update":"2025-06-13: FCC Public Notice DA-25-514 confirms the TIKAL‑AMX3 cable landing license and that the Boca Raton landing station will be owned/controlled by Telxius USA; Telxius targets mid‑2026 RFS.","recent_news":"","notable_tenants":"Arelion","verified_name":"Telxius Boca Raton Data Center (TBOC01) / Boca Raton Cable Landing Station","verified_operator":"Telxius Cable","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Telxius subsea network; Arelion connectivity at the Boca Raton landing station","num_buildings":0,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida data center sales/use tax exemption under Fla. Stat. §212.08(5)(r); facility-specific eligibility not confirmed.","natural_hazard_zone":"Hurricane-exposed South Florida; FEMA flood-zone designation not determined from available excerpts."},"470":{"description":"3EX Hosting operates an active colocation data center at 6601 Park of Commerce Blvd in Boca Raton, offering cabinet and cage solutions; the facility sits in a 61,274‑sq‑ft building and has 16 MW utility power with potential expansion to 45 MW within roughly 18 months.","verified_status":"operational","power_capacity_mw":16,"total_sqft":61274,"year_online":"unknown","construction_update":"Planned utility power expansion: an additional 29 MW can be installed and delivered within 18 months (to reach 45 MW total), with no specific construction start date disclosed.","recent_news":"May 19–20, 2026: 3EX Hosting announced expansion of Florida data services with Miami NAP fiber connectivity, citing faster speeds and stronger connectivity.","notable_tenants":"","verified_name":"3EX Hosting Data Center – Boca Raton","verified_operator":"3EX Hosting","verified_owner":"6601 PARK OF COMMERCE HOLDINGS LLLP","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5.3,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (not in Special Flood Hazard Area)"},"471":{"description":"Lumen Miami 1 is a Lumen-operated telecom colocation/data center at 49 NW 5th Street in Miami. Multiple directories still list it as an active site, with DataCenterMap showing 39,450 sq ft total and 9,134 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":39450,"year_online":"unknown","construction_update":"Jan 17, 2025: UDRB approval announced for the First & Fifth redevelopment at 49 NW 5th St; Jan 11, 2025: report of site acquisition and plan submission. No demolition/groundbreaking or Lumen closure notice found.","recent_news":"Mar 5, 2026: City of Miami Registered Lobbyists and Active Issues report lists 49 NW 5 Street LLC for \"Zoning Entitlements\" tied to UDRB at this address.","notable_tenants":"","verified_name":"Lumen Miami 1","verified_operator":"Lumen Technologies","verified_owner":"49 Northwest 5th Street, LLC (affiliated with Oak Row Equities)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen/Level 3 on-net; alternate carrier networks available","num_buildings":0,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida Data Center Sales Tax Exemption is active statewide through June 30, 2027 for qualifying data centers; no public evidence that this site has claimed it.","natural_hazard_zone":"High Velocity Hurricane Zone (Miami-Dade County)"},"472":{"description":"Lumen operates a telecom/data center gateway at 1109 Northwest 22nd Street in Miami, built as part of the company’s Miami network gateway to support regional connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":100000,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Miami 5 (1109 NW 22nd St, Miami, FL 33127)","verified_operator":"Lumen Technologies","verified_owner":"Level 3 Communications LLC (a subsidiary of Lumen Technologies)","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen","num_buildings":0,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"Hurricane and flood-prone (FEMA flood risk area; exact zone for parcel not confirmed)"},"473":{"description":"Lumen West Palm Beach 1 is a Lumen-operated telecom/colocation data center at 410 Hampton Road, West Palm Beach, Florida, totaling 4,897 sq ft with about 1,616 sq ft of colocation/raised-floor space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4897,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen West Palm Beach 1","verified_operator":"Lumen","verified_owner":"Williams Communications Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (Level 3) on-net","num_buildings":0,"campus_acres":0.34,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"State-level data center sales/use tax exemption exists, but since Aug 1, 2025 applies only to facilities with ≥100 MW IT load; no site-specific local abatement found.","natural_hazard_zone":"Hurricane/wind exposure typical of Palm Beach County; parcel flood zone not confirmed from available sources"},"474":{"description":"Cloud South West Palm Beach is an operational colocation data center at 424 Hampton Road operated by Cloud South; the operator describes a Tier 4, 6,500‑sq‑ft facility originally built by Global Crossing in 2003, while a 2025 report notes 2.8 MW of IT capacity.","verified_status":"operational","power_capacity_mw":2.8,"total_sqft":6500,"year_online":"2003","construction_update":"","recent_news":"As of May 27, 2026, the 424 Hampton Rd data center property was being marketed for sale on LoopNet.","notable_tenants":"","verified_name":"Cloud South - West Palm Beach Data Center","verified_operator":"Cloud South","verified_owner":"Cloud South Inc.","cooling_type":"unknown","tier_level":"Tier IV (claimed; no public Uptime certification cited)","fiber_providers":"carrier-neutral; Cogent on-net","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Hurricane-prone region; city parcel record lists Flood Elev: 0.00 (zone unspecified)"},"475":{"description":"iM Critical Miami Data Center is an operational colocation and managed IT facility operated by iM Critical at 100 NE 80th Terrace, Miami, FL, featuring a 100,000 sq ft building and 5 MW of capacity.","verified_status":"operational","power_capacity_mw":5,"total_sqft":100000,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"C3 Complete; Florida Internet Exchange (FL-IX).","verified_name":"iM Critical Miami Data Center","verified_operator":"iM Critical","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; connectivity to multiple carriers","num_buildings":1,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida data center sales tax exemption previously applied, but legislation passed in June 2025 ends the exemption for facilities with critical IT load under 100 MW effective August 1, 2025.","natural_hazard_zone":"Hurricane-prone region; FEMA flood risk maps apply (specific parcel zone not cited)"},"476":{"description":"Verizon Miami is a telecom/colocation data center operated by Verizon Communications Inc. at 16563 NW 15th Ave, Miami, FL 33169; the site is noted as a former XO Communications facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Miami","verified_operator":"Verizon Communications Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"No site-specific incentive found; Florida’s sales-tax exemption for data centers no longer applies to facilities under 100 MW IT load as of 2025-08-01.","natural_hazard_zone":"Hurricane-prone region; FEMA flood zone undetermined from cited sources"},"477":{"description":"Aptum’s Miami Data Center is an operational colocation facility operated by Aptum at 2300 NW 89th Place in Doral/Miami, Florida. The site was converted into a data center in 2001.","verified_status":"operational","power_capacity_mw":2,"total_sqft":64174,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aptum Miami Data Center (MIA-89P)","verified_operator":"Aptum Technologies","verified_owner":"89TH PLACE DORAL OWNER, LLC","cooling_type":"unknown","tier_level":"N+1 redundancy design; no public Uptime Institute Tier certification","fiber_providers":"carrier-neutral; multiple on-net carriers available (specific names not listed publicly)","num_buildings":1,"campus_acres":2.82,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida data center sales/use tax exemption exists under Section 212.08(5)(r); eligibility for this small facility is uncertain and no site-specific approval found.","natural_hazard_zone":"Hurricane-prone region; exact FEMA flood zone not determined"},"478":{"description":"Project Tango is a planned hyperscale AI/data and information processing campus at 20125 Southern Blvd in Loxahatchee, Florida, within the Central Park Commerce Center; the applicant/property owner is PBA Holdings and no end-user/operator has been publicly disclosed. County and applicant materials describe a 600 MW campus.","verified_status":"planned","power_capacity_mw":600,"total_sqft":3700000,"year_online":"unknown","construction_update":"As of June 2026, the project remains under county review with no construction start; a June 10, 2026 site tour reported revisions ahead of a July zoning hearing, the School Board voted June 3, 2026 to ask commissioners to pause the project, and the applicant filed a June 19, 2026 response addressing those concerns.","recent_news":"June 2026 developments included the Palm Beach County School Board voting to ask commissioners to pause Project Tango, the applicant (PBA Holdings) filing a June 19, 2026 response to the School Board’s concerns, and a legal dispute between landowners over dueling applications.","notable_tenants":"","verified_name":"Project Tango (Central Park Commerce Center) data center","verified_operator":"unknown","verified_owner":"PBA Holdings, Inc.; WPB Logistics Owner, LLC (TPA Group–backed); and Central Park Commerce Center Master Association, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":202,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Potential eligibility for Florida’s statewide data center sales and use tax exemption (subject to statutory thresholds and approval); no project-specific local incentive identified.","natural_hazard_zone":""},"479":{"description":"EdgeConneX MIA02 is an operational edge/colocation data center at 475 NE 185th Street in the Miami market, operated by EdgeConneX. It is a staffed, purpose-built facility measuring 65,518 sq ft with 34,800 sq ft of raised floor.","verified_status":"operational","power_capacity_mw":6,"total_sqft":65518,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX MIA02","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida data center sales/use tax exemption program under Section 212.08(5)(r), Florida Statutes (application-based); no facility-specific certificate located.","natural_hazard_zone":"Hurricane/windstorm exposure; flood zone designation not confirmed from citable sources"},"480":{"description":"Equinix MI6 is an operational, carrier-neutral Equinix IBX colocation data center at 1525 NW 98th Court in Doral, Florida, offering interconnection services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":108336,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"No anchor tenant or major customer is publicly disclosed. deeserve states it owns/manages racks at MI6.","verified_name":"Equinix MI6","verified_operator":"Equinix","verified_owner":"Equinix LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":7.73,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida data center sales tax exemption under Section 212.08(5)(r), Florida Statutes. Effective July 1, 2017 and noted in materials through June 30, 2027; legislation passed in June 2025 ends the exemption for existing data centers with <100 MW critical IT load at their next five-year certification review.","natural_hazard_zone":"FEMA Flood Zone X (unshaded); facility elevation above 500-year Base Flood Elevation; located in Miami-Dade County hurricane zone"},"481":{"description":"Volico MIA1 is an operational colocation data center operated by Volico Data Centers at 100 N. Biscayne Blvd. in downtown Miami, located on the 6th floor plus roof. It is positioned as a communications hub for connectivity with Latin America.","verified_status":"operational","power_capacity_mw":3,"total_sqft":5005,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Volico MIA1 Miami Data Center","verified_operator":"Volico Data Centers","verified_owner":"RFR Realty","cooling_type":"air-cooled","tier_level":"Tier IV (operator-claimed, not Uptime Institute certified)","fiber_providers":"Carrier-neutral; 25+ carriers including AT&T, Comcast, Fiberlight, Level 3, Verizon, XO, TW Telecom, Global Crossing, INTERNAP, Qwest, Savvis","num_buildings":1,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida has favorable business tax posture; Volico notes it can take advantage of multiple tax exemptions in Miami-Dade County.","natural_hazard_zone":"FEMA flood zone AE (moderate to high flood risk); hurricane zone (Miami-Dade coastal exposure)"},"482":{"description":"AT&T Los Angeles 2 is an operational AT&T telecom/colocation facility at 600 West 7th Street in downtown Los Angeles, located within Digital Realty’s LAX10 multi-tenant carrier-hotel building. The building is a secure colocation site with seismically rated infrastructure.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"AT&T Los Angeles 2","verified_operator":"AT&T","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; highly connected (one of the best-connected buildings in Los Angeles)","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"Seismic risk area; facility features seismically rated infrastructure"},"483":{"description":"China Telecom Los Angeles is China Telecom Americas’ 6,500‑sq‑ft colocation/telecom suite at 600 West 7th Street, Suite 570, in downtown Los Angeles, located inside Digital Realty’s LAX10 carrier-hotel building. The site opened in 2011.","verified_status":"operational","power_capacity_mw":0,"total_sqft":6500,"year_online":"2011","construction_update":"","recent_news":"No facility-specific updates in the last six months. On April 9, 2026, the FCC issued an NPRM seeking comment on prohibiting interconnection with facilities (including PoPs and data centers) owned or operated by Covered List entities, which includes China Telecom (Americas).","notable_tenants":"","verified_name":"China Telecom Los Angeles Data Center (inside Digital Realty LAX10)","verified_operator":"China Telecom (Americas)","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; examples include China Telecom, Cogent, Cox Communications, Crown Castle, Tata Communications","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Earthquake exposure; property lies in an earthquake-induced liquefaction area; seismically rated infrastructure noted"},"484":{"description":"Cogent Los Angeles is an operational Cogent Communications colocation/data center located at 530 West 6th Street, 10th Floor, within the Telecom Center LA building in downtown Los Angeles, offering about 8,400 sq ft of space.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":8400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Los Angeles (530 West 6th Street)","verified_operator":"Cogent Communications","verified_owner":"Laeroc Partners affiliate","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; Crown Castle fiber present; directly connected/adjacent to regional carrier ecosystem centered on One Wilshire.","num_buildings":1,"campus_acres":0.38,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE; seismic/liquefaction hazard area (Los Angeles County liquefaction zones)."},"485":{"description":"A small Cogent Communications colocation/telecom suite at 300 S Harbor Blvd in Anaheim, CA, commonly referenced as an Anaheim data center, with footprint figures in public listings around 1,100–1,211 sq ft.","verified_status":"operational","power_capacity_mw":0.06,"total_sqft":1211,"year_online":"unknown","construction_update":"","recent_news":"May 26, 2026: Cogent announced a deal to sell 10 data center facilities; no source confirms that 300 S Harbor is included. A June 2026 leasing record shows Suite 510 is built out as a data center and marked “OCCUPIED,” with no other changes noted.","notable_tenants":"","verified_name":"Cogent Data Center - Anaheim","verified_operator":"Cogent Communications, Inc.","verified_owner":"KF Properties, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Anaheim Public Utilities","tax_incentives":"General Anaheim programs noted (e.g., Opportunity Zones; Business/Enterprise Zone programs). No site-specific abatement for 300 S Harbor Blvd was found.","natural_hazard_zone":"Seismic hazard exposure (California/USGS mapping for Anaheim quadrangle); FEMA flood zone not confirmed for this address."},"486":{"description":"Operational telecom/colocation data center operated by Cogent Communications at 2947 Bradley Street, Pasadena, offering Internet, VPN, Transport, and Colocation services; third‑party directories list 2.7 MW capacity and 48,627 sq ft total space.","verified_status":"operational","power_capacity_mw":2.7,"total_sqft":48627,"year_online":"unknown","construction_update":"","recent_news":"No facility-specific expansion, tenant, opposition, or regulatory updates in the last 6 months; a May 20, 2026 property listing notes campus renovations, not a data-center expansion.","notable_tenants":"","verified_name":"Cogent Data Center - Pasadena","verified_operator":"Cogent Communications, Inc.","verified_owner":"Graymark Capital Inc. and Eightfold Real Estate Capital","cooling_type":"unknown","tier_level":"Tier 2 equivalent","fiber_providers":"Cogent","num_buildings":2,"campus_acres":6.07,"utility_provider":"Pasadena Water and Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X / B-X (outside 100-year floodplain); Southern California seismic exposure (Alquist-Priolo context)"},"487":{"description":"Cogent Communications operates the Cogent Data Center – La Mirada at 16680 Valley View Ave in La Mirada, CA, providing colocation and connectivity services in approximately 16,500 sq ft of space.","verified_status":"operational","power_capacity_mw":2.2,"total_sqft":16500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - La Mirada (LAM-DC)","verified_operator":"Cogent Communications, Inc.","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; Cogent Communications on-net","num_buildings":1,"campus_acres":1.77,"utility_provider":"Southern California Edison","tax_incentives":"No facility-specific abatement identified; general California programs (e.g., California Competes, partial sales/use-tax exemptions) may be available to qualifying investments.","natural_hazard_zone":"FEMA Flood Zone B and X (outside 100‑year SFHA)"},"488":{"description":"CoreSite LA1 is CoreSite’s operational colocation and interconnection data center located within One Wilshire at 624 S. Grand Ave., Los Angeles, with about 171,000 sq ft. One Wilshire is a major carrier-hotel hub for the Pacific Rim.","verified_status":"operational","power_capacity_mw":0,"total_sqft":171000,"year_online":"1992","construction_update":"","recent_news":"","notable_tenants":"Zayo Group","verified_name":"CoreSite LA1 - Los Angeles Data Center (One Wilshire)","verified_operator":"CoreSite","verified_owner":"GI Partners (via TechCore, LLC; managed by GI Property Management)","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; access to 250+ fiber providers in One Wilshire; connectivity to 330+ networks in the CoreSite LA market; major carriers accessible via the building meet-me ecosystem.","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"No active state or local data center tax incentives identified for this Los Angeles facility; CoreSite’s sales tax exemption programs apply only in Virginia and Illinois.","natural_hazard_zone":"FEMA Flood Zones AE and X; located in Southern California subject to California Seismic Hazard Zones (earthquake-related hazards)."},"489":{"description":"CoreSite LA2 is an operational multi-tenant colocation and interconnection data center operated by CoreSite at 900 N. Alameda St. in downtown Los Angeles, offering access to hundreds of cloud, network and IT providers and designed for high‑density, high‑scalability deployments.","verified_status":"operational","power_capacity_mw":26,"total_sqft":432000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CoreSite LA2 - Los Angeles Data Center","verified_operator":"CoreSite","verified_owner":"CoreSite Realty Corporation (an American Tower company)","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; dense interconnection ecosystem; LA2 is part of CoreSite’s LA campus and is connected to LA1 and LA3","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"LADWP energy-efficiency rebate for LA2 cooling-system upgrades; no standing California/Los Angeles data center sales-tax incentive identified.","natural_hazard_zone":""},"490":{"description":"CoreSite LA3 is CoreSite’s purpose-built colocation data center at 200 Bauchet St. in downtown Los Angeles, described as the first ground-up data center in downtown LA, offering roughly 160,000 sq ft and 18 MW of capacity.","verified_status":"operational","power_capacity_mw":18,"total_sqft":160000,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CoreSite LA3 - Los Angeles Data Center","verified_operator":"CoreSite","verified_owner":"American Tower Corporation (via CoreSite Realty Corporation subsidiary)","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral; connectivity includes Etisalat, DIDWW, and Globe Teleservices.","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"Earthquake risk area; potential liquefaction zone (Los Angeles seismic region)."},"491":{"description":"DataBank SNA1 is an operational colocation data center at 17222 Von Karman Avenue in Irvine, California, operated by DataBank; it features 36,720 IT square feet and 2.64 MW of critical IT power with N+1 infrastructure.","verified_status":"operational","power_capacity_mw":2.64,"total_sqft":36720,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank SNA1 (Irvine Data Center)","verified_operator":"DataBank","verified_owner":"","cooling_type":"unknown","tier_level":"N+1 design; no Uptime Institute certification publicly listed","fiber_providers":"carrier-neutral; 12 onsite carriers","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"","natural_hazard_zone":"High seismic risk area; building described as Zone 4 earthquake-reinforced; neighborhood flood risk minor; elevated regional wildfire risk."},"492":{"description":"DataBank LAX1 is an operational colocation data center in One Wilshire at 624 South Grand Avenue, Suite #2900, offering 18,480 IT square feet and 2 MW critical IT load. The One Wilshire carrier-hotel is owned via TechCore managed by GI Partners; the current LAX1 footprint traces to zColo’s 2017 One Wilshire expansion later absorbed by DataBank in 2020.","verified_status":"operational","power_capacity_mw":2,"total_sqft":18480,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank LAX1 - Los Angeles One Wilshire","verified_operator":"DataBank","verified_owner":"GI Partners (via TechCore fund; managed by GI Property Management)","cooling_type":"unknown","tier_level":"Tier III design standard","fiber_providers":"Carrier-neutral with 200+ carriers; access to over 250 fiber providers.","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA flood zones AE and X"},"493":{"description":"DataBank SNA2 is an operational colocation data center at 17400 Von Karman Avenue in Irvine, CA, operated by DataBank. The site offers 53,150 IT square feet and 8 MW critical IT load and completed a 4 MW, 24,000 sq ft raised-floor expansion in April 2023.","verified_status":"operational","power_capacity_mw":8,"total_sqft":53150,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank SNA2","verified_operator":"DataBank","verified_owner":"DigitalBridge (controlling shareholder) with significant co-investors Swiss Life Asset Managers and EDF Invest (27% equity for approximately $1.2B, 2022 recap).","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"Carrier-neutral; 14 onsite carriers including AT&T, Zayo, and Cogent.","num_buildings":1,"campus_acres":3.9,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"","natural_hazard_zone":"Seismic risk area (Southern California); check FEMA flood maps for parcel-specific flood zone."},"494":{"description":"DataBank LAX2 (Goodman LAX01 Vernon) is a hyperscale/AI‑ready data center at 3094 E. Vernon Avenue in Vernon, CA, to be operated by DataBank through a joint venture with Goodman, delivering over 140,000 sq ft of data center space and 32 MW of critical IT power.","verified_status":"under-construction","power_capacity_mw":32,"total_sqft":263409,"year_online":"2026 (expected first 6 MW in December 2026; full 32 MW by September 2027)","construction_update":"Groundbreaking: Mar 2025; structural topping out: Sep 2025; power shell readiness targeted mid‑2026; under construction with first capacity expected Dec 2026.","recent_news":"Apr 2026: DataBank and Goodman announced a JV to open/market LAX2 at 3094 E. Vernon Ave., with initial capacity targeted for December 2026.","notable_tenants":"","verified_name":"DataBank LAX2 / Los Angeles Vernon Data Center (Goodman LAX01 Vernon)","verified_operator":"DataBank","verified_owner":"DataBank and Goodman Group joint venture","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":5.6,"utility_provider":"Vernon Public Utilities (City of Vernon)","tax_incentives":"","natural_hazard_zone":"California Seismic Hazard Zone (liquefaction) region"},"495":{"description":"Digital Realty LAX11 is an operational colocation data center at 200 North Nash Street in El Segundo, California, operated by Digital Realty, with a 60,000 ft² facility and approximately 10 MW of power capacity.","verified_status":"operational","power_capacity_mw":10,"total_sqft":60000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Centersquare (formerly Cyxtera) — the building is reported as fully leased to Cyxtera/LA1; carriers list the site as Digital Realty (fka Cyxtera LA1). No named end-customers publicly disclosed.","verified_name":"Digital Realty LAX11","verified_operator":"Digital Realty","verified_owner":"Digital Core REIT (90%) / Digital Realty Trust (10%)","cooling_type":"unknown","tier_level":"Tier III equivalent","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":4.03,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard); Southern California seismic risk"},"496":{"description":"Digital Realty LAX12 is an operational Digital Realty colocation data center at 2260 East El Segundo Boulevard in El Segundo, California, totaling 132,000 sq ft and offering solutions from individual cabinets to private suites.","verified_status":"operational","power_capacity_mw":18,"total_sqft":132000,"year_online":"2005","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty LAX12","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"Tier III design","fiber_providers":"Carrier-neutral; providers include AT&T, Cogent Communications, Megaport, Zayo, Akamai Technologies, Unitas Global, Evocative Global, NHN Cloud, Ultahost, AboveNet.","num_buildings":1,"campus_acres":4.39,"utility_provider":"Southern California Edison","tax_incentives":"","natural_hazard_zone":"Outside 500-year flood plain; Seismic Rating D"},"497":{"description":"Digital Realty BUR10 is an operational colocation data center at 3015 Winona Avenue in Burbank operated by Digital Realty, positioned for the region’s media and entertainment ecosystem. The site lists 15,350 sq ft of customer space within an 82,911 sq ft retrofit building.","verified_status":"operational","power_capacity_mw":10,"total_sqft":82911,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty BUR10","verified_operator":"Digital Realty","verified_owner":"Digital Core REIT (90% ownership interest)","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":3.07,"utility_provider":"Burbank Water & Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard); high seismic risk area"},"498":{"description":"Planned data center project by Digital Realty at 4400–4458 Pacific Blvd in Vernon, California, envisioned to support about 32 MW. The 5.4-acre site currently has a 253,200 sq ft industrial building acquired for redevelopment.","verified_status":"planned","power_capacity_mw":32,"total_sqft":253200,"year_online":"unknown","construction_update":"Nov 2025: Digital Realty acquired the 5.0–5.4 acre site at 4400–4458 Pacific Blvd., Vernon, CA (existing 253,200 sq ft building) for a planned 32 MW data center; no development timeline disclosed.","recent_news":"","notable_tenants":"","verified_name":"Digital Realty Vernon Data Center","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Vernon Public Utilities fiber optic services; specific carriers not publicly disclosed","num_buildings":1,"campus_acres":5.39,"utility_provider":"Vernon Public Utilities (VPU)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X"},"499":{"description":"Lumen Los Angeles is an operational colocation facility operated by Lumen Technologies at 818 W. 7th St in downtown Los Angeles, within the 818 Plaza building. It totals about 75,031 sq ft with 33,430 sq ft of raised-floor space, in a network-dense property marketed with dedicated power infrastructure.","verified_status":"operational","power_capacity_mw":0,"total_sqft":75031,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Los Angeles","verified_operator":"Lumen Technologies","verified_owner":"Downtown Properties, LLC (affiliate of Gaw Capital USA)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; Lumen, Verizon (XO), Zayo","num_buildings":1,"campus_acres":0,"utility_provider":"LADWP (Los Angeles Department of Water and Power)","tax_incentives":"","natural_hazard_zone":"Seismic hazard zone; Downtown LA shows non-zero flood risk (parcel-level FEMA determination recommended)"},"500":{"description":"Equinix LA1 is an operational, carrier-neutral IBX colocation facility at 600 W 7th Street on the 6th and 7th floors in downtown Los Angeles, positioned for interconnection-centric internet content-delivery and entertainment workloads. It resides within the 600 West 7th Street data center operated by Digital Realty.","verified_status":"operational","power_capacity_mw":2,"total_sqft":60719,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix LA1","verified_operator":"Equinix","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; access to 25+ network providers","num_buildings":1,"campus_acres":1.608,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"Seismic hazard exposure (Los Angeles); facility features seismically rated infrastructure"},"501":{"description":"Equinix LA3 is an operational, carrier-neutral Equinix IBX colocation data center at 1920 East Maple Avenue in El Segundo, California. It offers about 78,318 sq ft of colocation space in a roughly 106,885 sq ft building with around 7.8 MW of critical power.","verified_status":"operational","power_capacity_mw":7.8,"total_sqft":106885,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix LA3 Los Angeles IBX Data Center","verified_operator":"Equinix","verified_owner":"Equinix LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Southern California Edison","tax_incentives":"Southern California Edison energy-efficiency rebate of $1,060,000 (2013) for LA3 efficiency upgrades","natural_hazard_zone":"FEMA Flood Zone X (minimal flood risk)"},"502":{"description":"Equinix LA4 is an operational Equinix IBX colocation data center at 445 North Douglas Street in El Segundo (Los Angeles market), providing carrier and cloud interconnection services. It serves content, media, and network workloads requiring proximity and peering in the region.","verified_status":"operational","power_capacity_mw":17.5,"total_sqft":177469,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"No anchor tenants are publicly disclosed. Ecosystem listings show networks/cloud connectivity at LA4/LA3–LA4, including Google and PacketFabric, alongside other carriers and exchange participation.","verified_name":"Equinix LA4 (Los Angeles IBX Data Center)","verified_operator":"Equinix","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":11.41,"utility_provider":"Southern California Edison","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard)"},"503":{"description":"Equinix LA7 is a carrier-neutral Equinix IBX colocation data center at 1501 Francisco Street in Torrance (Los Angeles metro), notable for rich interconnection options and approximately 74,981 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":12,"total_sqft":108336,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix LA7 IBX Data Center","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison","tax_incentives":"","natural_hazard_zone":"Seismic hazard (LA County earthquake/liquefaction exposure); FEMA flood zone not determined"},"504":{"description":"Lumen Anaheim 1 is a Lumen Technologies telecom/colocation data center at 2461 West La Palma Avenue, Anaheim, CA, listed with 51,149 sq ft of space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":51149,"year_online":"unknown","construction_update":"","recent_news":"June 18, 2026: A leasing listing for 2461–2463 W La Palma was updated, noting on-site data center capabilities and 29,254 sq ft of space available; no Lumen-specific operational changes were announced.","notable_tenants":"","verified_name":"Lumen Anaheim 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":7.49,"utility_provider":"Anaheim Public Utilities","tax_incentives":"","natural_hazard_zone":"low risk"},"505":{"description":"Lumen Tustin 1 is a Lumen Technologies telecom/colocation data center at 14452 Franklin Avenue, Tustin, California, with about 53,000 sq ft and 12,294 sq ft of raised-floor colocation space.","verified_status":"operational","power_capacity_mw":0.823,"total_sqft":53000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Tustin 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison","tax_incentives":"","natural_hazard_zone":"High seismic risk area; low flood risk (citywide)"},"506":{"description":"Telecom Center LA is a multi-tenant carrier-hotel/colocation facility at 530 W 6th Street in downtown Los Angeles operated by Morlin Asset Management. It sits directly adjacent to One Wilshire and is listed with 170,310 SF of rentable building area.","verified_status":"operational","power_capacity_mw":0,"total_sqft":170310,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"QuadraNet (largest tenant), Windstream, Multipoint, OC3 Networks, ServerExperte, Cogent Communications, Colocation America, and Crown Castle/Wilcon.","verified_name":"Telecom Center LA (Telecom Center LA Building)","verified_operator":"Morlin Asset Management, LP (Morlin Management)","verified_owner":"LaeRoc Partners affiliate","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; adjacent to One Wilshire; on-site providers include Cogent and AT&T; Crown Castle operates a suite in the building","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE"},"507":{"description":"NYI Los Angeles is an NYI-operated colocation suite inside the Bullocks Building at 800 South Hope Street in Downtown Los Angeles, offering SSAE 16 Type-II infrastructure with more than 10,000 sq ft of usable space and dark-fiber access to One Wilshire. The building owner is Verizon, which acquired 800 S. Hope St. in December 2022.","verified_status":"operational","power_capacity_mw":2,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"NYI Los Angeles","verified_operator":"NYI","verified_owner":"Verizon Communications","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; direct dark fiber to One Wilshire","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"Seismic risk zone (earthquake-prone region of Los Angeles)"},"508":{"description":"OC Online Anaheim was a colocation suite attributed to Orange County Online at 300 S Harbor Blvd, Suite 716. Current operator and property evidence indicate the suite is not an active OCO data center, while data‑center space in the building is attributed to other suites/operators.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"OC Online Anaheim","verified_operator":"Orange County Online","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent (in-building, Suite 510); others not listed","num_buildings":1,"campus_acres":0,"utility_provider":"Anaheim Public Utilities","tax_incentives":"Anaheim Business Programs page notes an Enterprise Zone providing special tax incentives; no facility-specific incentive identified.","natural_hazard_zone":"Seismic risk area (Southern California); FEMA flood zone for 300 S Harbor Blvd not determined."},"509":{"description":"Serverfarm LAX1 is an operational colocation data center at 444 North Nash Street in El Segundo, California, operated by Serverfarm. The facility totals about 117,500 square feet and serves large enterprise and hyperscale use cases.","verified_status":"operational","power_capacity_mw":17.3,"total_sqft":117500,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"No named anchor tenant is publicly disclosed. Serverfarm describes LAX1 as hosting hyperscale, transportation, healthcare and government tenants; PeeringDB shows network presences Amazon.com, Cogent and VPLS (network presences, not confirmed colocation tenants).","verified_name":"Serverfarm LAX1 – Los Angeles Data Center","verified_operator":"Serverfarm","verified_owner":"Serverfarm and NantWorks","cooling_type":"evaporative","tier_level":"Tier III-based / concurrently maintainable design","fiber_providers":"carrier-neutral; connected to Tier 1 and dark fiber providers","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison","tax_incentives":"","natural_hazard_zone":"Seismic hazard exposure (California Seismic Hazard Zones); FEMA flood zone not determined from cited sources"},"510":{"description":"Telehouse 626 Wilshire (also known as Telehouse Los Angeles or 626W) is an operational, carrier-neutral colocation data center operated by Telehouse at 626 Wilshire Blvd in downtown Los Angeles, notable for NYIIX Los Angeles access and connectivity to the area’s carrier ecosystem.","verified_status":"operational","power_capacity_mw":0.665,"total_sqft":156000,"year_online":"1998","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Telehouse Los Angeles (626W)","verified_operator":"Telehouse America","verified_owner":"Golden Boy Enterprises (majority) and Barker Pacific Group (minority).","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; direct access to NYIIX; zero-mile distance to One Wilshire.","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"None identified; California’s Enterprise Zone program is archived/not active.","natural_hazard_zone":"Seismic hazard area (SoCal; potential liquefaction exposure); FEMA flood zone likely Zone X (minimal) for downtown Los Angeles; parcel-specific FIRM not confirmed."},"511":{"description":"UnitedLayer LA4 – One Wilshire is a colocation presence operated by UnitedLayer inside the One Wilshire carrier hotel at 624 S. Grand Ave., Los Angeles, a major West Coast interconnection hub owned by GI Partners/TechCore. Some directories label “LA4” at a different downtown address, but UnitedLayer is also listed with a One Wilshire presence.","verified_status":"operational","power_capacity_mw":30,"total_sqft":664248,"year_online":"unknown","construction_update":"","recent_news":"May 15, 2026: Leasing listing shows available space at One Wilshire (each floor ~24,000 sq ft; 2.285 MW per floor). No UnitedLayer-specific news identified in the last six months.","notable_tenants":"No UnitedLayer-specific customer list is public. Building-level tenants at One Wilshire include CoreSite, DataBank, China Telecom, Verizon, and Sirius XM Radio.","verified_name":"UnitedLayer One Wilshire Data Center","verified_operator":"UnitedLayer","verified_owner":"GI Partners","cooling_type":"chilled water","tier_level":"Tier III design standard; no Uptime Institute certification found","fiber_providers":"carrier-neutral; access to 250+ fiber providers","num_buildings":1,"campus_acres":0.99,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"FEMA flood zones AE and X"},"512":{"description":"Verizon (818 West 7th) is a Verizon-operated telecom/colocation data center at 818 West 7th Street in downtown Los Angeles, located within the network-dense 818 Plaza carrier-hotel building.","verified_status":"operational","power_capacity_mw":3,"total_sqft":30000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Equinix; Lumen; Verizon; Zayo. Verizon-specific customer/tenant names are not publicly listed.","verified_name":"Verizon (818 West 7th)","verified_operator":"Verizon Enterprise / Verizon Communications Inc. (XO)","verified_owner":"Downtown Properties, LLC (affiliate/associate of Gaw Capital USA)","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T, Verizon, Lumen, Zayo, Crown Castle, Frontier, Cogent","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":""},"513":{"description":"Verizon: Santa Ana is a Verizon Enterprise telecom/data center site at 1928 East Deere St (1st Floor) in Santa Ana, CA, listed as operational. The address sits within the Alton Deere Plaza office park and has a legacy history as the former XO Santa Ana colocation location.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Santa Ana","verified_operator":"Verizon Enterprise","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon (formerly XO Communications)","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison","tax_incentives":"","natural_hazard_zone":"Liquefaction-susceptible area; high regional seismicity (Southern California)."},"514":{"description":"Crown Castle Los Angeles LA2 is a carrier-grade telecom/colocation facility at 609 W 7th Street in downtown Los Angeles, operated by Crown Castle Fiber. It is one of Crown Castle’s Los Angeles colocation sites in the DTLA interconnection cluster.","verified_status":"operational","power_capacity_mw":7.5,"total_sqft":6500,"year_online":"unknown","construction_update":"","recent_news":"No facility-specific developments identified in the last six months. Operator-level: On May 1, 2026, Crown Castle closed the sale of its Fiber Solutions business to Zayo (and Small Cell to EQT/Arium), but the announcements did not specifically mention 609 W 7th Street/LA2.","notable_tenants":"No anchor tenants or major customers are publicly disclosed. Cogent lists 609 W 7th Street as an on-net service location, indicating carrier presence.","verified_name":"Crown Castle Los Angeles LA2","verified_operator":"Zayo Group","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; connected providers include Zayo, Lumen, Cogent, and Crown Castle.","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"Seismic hazard area; FEMA Flood Zone X (low flood risk) likely for downtown Los Angeles."},"515":{"description":"Evocative Redondo Beach LAX14 is an operational Tier-3 design colocation data center operated by Evocative at 3690 Redondo Beach Avenue in Redondo Beach, serving the greater Los Angeles market.","verified_status":"operational","power_capacity_mw":20,"total_sqft":104000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Redondo Beach Data Center (LAX14)","verified_operator":"Evocative","verified_owner":"","cooling_type":"chilled water","tier_level":"Tier 3-design","fiber_providers":"carrier-neutral; dark fiber and multiple carriers available","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison","tax_incentives":"","natural_hazard_zone":"Seismic Zone 4"},"516":{"description":"Evocative Los Angeles LAX10 is an operational colocation deployment inside Digital Realty’s LAX12 facility at 2260 E El Segundo Blvd in El Segundo. Notably, Digital Realty’s separate LAX10 facility is at 600 West 7th Street in downtown Los Angeles.","verified_status":"operational","power_capacity_mw":18,"total_sqft":132000,"year_online":"2005","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Evocative LAX10 (El Segundo)","verified_operator":"Evocative Data Centers","verified_owner":"Digital Realty Trust (property entity: Digital 2260 East El Segundo LLC)","cooling_type":"unknown","tier_level":"Tier III-equivalent (design) – no public Uptime certification found","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"City of El Segundo business-license tax credit: 40% of sales tax generated, up to $25,000 over three years.","natural_hazard_zone":"FEMA Zone X (outside 500-year floodplain); Seismic Rating D / Zone 4 construction."},"517":{"description":"Prime Data Centers LAX01-01 is a three-story hyperscale, AI-ready data center at 4701 S. Santa Fe Ave. in Vernon, CA, operated by Prime Data Centers; it provides 33 MW across six data halls and about 242,495 sq ft, and is fully leased and operational.","verified_status":"operational","power_capacity_mw":33,"total_sqft":242495,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"Lambda (leasing 21 MW for AI infrastructure). A previously announced 12 MW anchor tenant was not named publicly.","verified_name":"Prime Los Angeles (LAX01-01)","verified_operator":"Prime Data Centers","verified_owner":"","cooling_type":"hybrid","tier_level":"Concurrently maintainable / N+1 design (Tier III-equivalent design standard; no Uptime Institute certification found)","fiber_providers":"carrier-neutral; dark fiber access to LA carrier hotels","num_buildings":1,"campus_acres":0,"utility_provider":"Vernon Public Utilities (VPU)","tax_incentives":"","natural_hazard_zone":""},"518":{"description":"Alchemy LAX (also marketed as QuadraNet LAX – Century) is an operational colocation data center operated by QuadraNet at 6171 West Century Boulevard in Los Angeles, with a total footprint of about 80,000 sq ft.","verified_status":"operational","power_capacity_mw":2,"total_sqft":80000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QuadraNet Los Angeles - Century Data Center","verified_operator":"QuadraNet","verified_owner":"6171 Century LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":""},"519":{"description":"QuadraNet LAX (Century) is an operational carrier-neutral colocation data center at 6171 West Century Boulevard in Los Angeles, operated by QuadraNet, with approximately 80,000 sq ft of space and about 2.0 MW of power capacity. In 2024, Edge Centres acquired QuadraNet.","verified_status":"operational","power_capacity_mw":2,"total_sqft":80000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QuadraNet Los Angeles - Century Data Center","verified_operator":"QuadraNet","verified_owner":"6171 Century LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"QuadraNet, Cogent, Level 3/Time Warner, Zayo","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"Seismic hazard exposure (liquefaction/earthquake risk) in Los Angeles; FEMA flood-zone for the parcel not determined"},"520":{"description":"A colocation data center operated by QuadraNet in the multi-tenant Telecom Center LA building at 530 W 6th St, Los Angeles, with a private footprint of about 60,000 sq ft across multiple floors.","verified_status":"operational","power_capacity_mw":6.25,"total_sqft":60000,"year_online":"2004","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Telecom Center LA (530 W 6th St) — QuadraNet Los Angeles – Downtown HQ (LAX1)","verified_operator":"Uncertain/transitioning (historically QuadraNet; 2025 notice said LAX1 would no longer be operated by QuadraNet)","verified_owner":"Morlin Asset Management (Telecom Center LA)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.38,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"Seismic hazard zone (liquefaction potential) area; parcel-specific FEMA flood zone not confirmed"},"521":{"description":"Centersquare Los Angeles LA2-Irvine is an operational retail colocation data center at 2681 Kelvin Avenue in Irvine, California, operated by Centersquare (Csquare). It is also referenced in directories as LAX2/LAX5-A and offers carrier ecosystem connectivity.","verified_status":"operational","power_capacity_mw":15,"total_sqft":150000,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare LAX5-A Irvine Data Center (aka Centersquare Los Angeles LA2-Irvine)","verified_operator":"Csquare (Centersquare)","verified_owner":"2681 Kelvin Avenue LLC (managed by Phoenix Data Center Parent LLC)","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"Cogent Communications; CenturyLink (Lumen)","num_buildings":1,"campus_acres":9.07,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"","natural_hazard_zone":"Minor flood risk area (Irvine / Irvine Business Complex)"},"522":{"description":"Centersquare El Segundo LA1 is Centersquare’s colocation deployment within Digital Realty’s LAX11 facility at 200 North Nash Street in El Segundo. It is a carrier‑neutral data center of about 60,000 sq ft, with the underlying powered‑shell property completed in 1976.","verified_status":"operational","power_capacity_mw":10,"total_sqft":60000,"year_online":"1976","construction_update":"","recent_news":"","notable_tenants":"Network/carrier presences: Cogent Communications; China Telecom. The site has historically been branded as Cyxtera LA1 and is now Centersquare LA1.","verified_name":"Centersquare El Segundo LA1 (LAX1-A), within Digital Realty LAX11 at 200 North Nash Street","verified_operator":"Centersquare","verified_owner":"Digital Core REIT","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison","tax_incentives":"El Segundo local incentive: Credit equal to 40% of sales tax generated, up to $25,000 over three years.","natural_hazard_zone":"FEMA Flood Zone B and X (moderate hazard); California seismic hazard region"},"523":{"description":"Centersquare Irvine OC2 / LAX3-A is an operational carrier-neutral colocation data center at 17836 Gillette Ave, Irvine, CA, operated by Centersquare (formerly Cyxtera OC2), with a campus footprint around 132,000 sq ft.","verified_status":"operational","power_capacity_mw":20,"total_sqft":132000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare LAX3-A,B","verified_operator":"Csquare","verified_owner":"","cooling_type":"chilled water","tier_level":"Tier III","fiber_providers":"Carrier-neutral; providers include Cogent and Level 3 (Lumen), with additional carriers available.","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"","natural_hazard_zone":""},"524":{"description":"A colocation data center at 2301 West 120th Street in Hawthorne, CA, operated by Centersquare and serving the greater LAX area.","verified_status":"operational","power_capacity_mw":25.9,"total_sqft":288583,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare Hawthorne LAX4 Data Center","verified_operator":"Centersquare","verified_owner":"Mapletree Industrial Trust (MIT)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; 9 service providers","num_buildings":1,"campus_acres":14.38,"utility_provider":"Southern California Edison","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (low-to-moderate flood hazard); Southern California seismic exposure"},"525":{"description":"2301 West 120th Street in Hawthorne, CA is a single‑storey data center owned in Mapletree Industrial Trust’s portfolio, while the site is marketed and operated under Centersquare/Csquare branding; directories list 288,583 sq ft and 28 MW at this address.","verified_status":"operational","power_capacity_mw":28,"total_sqft":288583,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare: Los Angeles (LAX1-Hawthorne) Data Center","verified_operator":"Centersquare (Csquare)","verified_owner":"Mapletree Industrial Trust (MIT)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":14.375,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"","natural_hazard_zone":""},"526":{"description":"Edge Centres EC101 Los Angeles is an edge/colocation data center operated by Edge Centres in the Aon Center at 707 Wilshire Blvd (4th floor) in Downtown Los Angeles; Edge Centres acquired Multacom in July 2023 and the site continues to operate at this address.","verified_status":"operational","power_capacity_mw":1,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Edge Centres EC101 Los Angeles (Multacom)","verified_operator":"Edge Centres (via Multacom, integrating with QuadraNet)","verified_owner":"Carolwood LP / Carolwood Equities LP","cooling_type":"unknown","tier_level":"","fiber_providers":"Multacom network on-site; point-to-point demarcation at 707 Wilshire; proximity to CoreSite LA1 (One Wilshire) carrier hotel.","num_buildings":1,"campus_acres":1.01,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"Seismic hazard exposure (Los Angeles); FEMA flood zone not determined from available tools."},"527":{"description":"West 7 Center is an operational Tier III data center with on-site office space at 1200 W. 7th Street in downtown Los Angeles, owned and managed by Rising Realty Partners, with T5 Data Centers as the facility-management partner.","verified_status":"operational","power_capacity_mw":16.9,"total_sqft":733000,"year_online":"1983","construction_update":"","recent_news":"On March 18, 2026, The Real Deal reported that Rising Realty Partners defaulted on a $200 million loan backing West 7 Center at 1200 W 7th Street; no shutdown of data center operations was reported.","notable_tenants":"ColoCrossing (LA1); Dynascale","verified_name":"West7Center","verified_operator":"Rising Realty Partners (owner/manager); T5 Data Centers (facility management partner)","verified_owner":"Partnership led by Rising Realty Partners with H.I.G. Realty Partners; owner/manager: Rising Realty Partners","cooling_type":"unknown","tier_level":"Tier III (marketed); N+1 redundancy","fiber_providers":"carrier-neutral; 16+ carriers; examples include Cogent (Evocative LA1 and Garland Connect/building MMR) at 1200 West 7th Street","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Seismic hazard exposure (Los Angeles, California); FEMA flood zone not identified from cited sources"},"528":{"description":"ColoCrossing LA1 is an operational colocation data center at 1200 W 7th St in Los Angeles, operated by ColoCrossing, offering enterprise uptime and 24/7 operations. It sits within the 733,000-sq-ft West7Center building, which advertises 22.5 MVA building-level power.","verified_status":"operational","power_capacity_mw":1.2,"total_sqft":733000,"year_online":"2024","construction_update":"","recent_news":"Mar 18, 2026: Report of a $200M loan default tied to West7Center (the 1200 W 7th St building housing LA1); property-level finance news, not an LA1 operational change.","notable_tenants":"","verified_name":"ColoCrossing LA1","verified_operator":"ColoCrossing","verified_owner":"Rising Realty Partners","cooling_type":"chilled water","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"High seismic risk region; likely FEMA Flood Zone X (minimal flood hazard), but parcel-specific verification recommended."},"529":{"description":"CoreSite LA2 is an operational CoreSite colocation and interconnection data center at 900 N. Alameda Street in downtown Los Angeles, offering a 432,000+ sq. ft. facility and robust connectivity options including peering exchanges.","verified_status":"operational","power_capacity_mw":26,"total_sqft":432000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Any2West internet exchange; China Telecom; Voxility; DataPacket","verified_name":"CoreSite LA2 - Los Angeles Data Center","verified_operator":"CoreSite","verified_owner":"American Tower Corporation","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"LADWP Custom Performance Program incentive for LA2 cooling retrofit.","natural_hazard_zone":"Flood: systems above 500-year flood plain"},"530":{"description":"Crown Castle Los Angeles LA2 is an operational, carrier-neutral colocation data center at 609 W 7th St, Los Angeles, CA, publicly listed under Crown Castle Fiber with on-net carriers including Cogent. Crown Castle closed the sale of its Fiber Solutions business to Zayo on May 1, 2026.","verified_status":"operational","power_capacity_mw":7.5,"total_sqft":6500,"year_online":"unknown","construction_update":"","recent_news":"May 1, 2026: Crown Castle closed the sale of its Fiber Solutions business to Zayo; while not naming LA2 specifically, it affects the platform that includes LA2.","notable_tenants":"No anchor tenant publicly disclosed. On-net carrier present: Cogent (network/service provider, not a confirmed colocation anchor tenant).","verified_name":"Crown Castle Los Angeles LA2 Data Center","verified_operator":"Zayo Group Holdings","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"Seismic hazard (earthquake/liquefaction) zone"},"531":{"description":"Equinix LA3 is an operational, carrier‑neutral Equinix IBX colocation data center at 1920 East Maple Avenue in El Segundo, serving the broader Los Angeles interconnection ecosystem. Third‑party directories indicate approximately 106,885 sq ft of facility space and about 7.8 MW of critical power.","verified_status":"operational","power_capacity_mw":7.8,"total_sqft":106885,"year_online":"unknown","construction_update":"","recent_news":"June 15, 2026: CoStar reported that Landmark Dividend bought the El Segundo property home to Equinix from Link Logistics.","notable_tenants":"","verified_name":"Equinix LA3 IBX Data Center","verified_operator":"Equinix, Inc.","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III equivalent / N+1 design; no public Uptime Institute certification found","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"No facility-specific incentive identified; California has no statewide data-center-specific tax incentive. El Segundo offers general business credits (e.g., up to $25,000 over three years).","natural_hazard_zone":"Seismic Zone 4"},"532":{"description":"Cologix COL1 is an operational colocation and interconnection data center operated by Cologix at 535 Scherers Court in Columbus, Ohio, noted for dense connectivity. The facility is described at ~44,000 sq ft with utility power available on site up to 30 MW.","verified_status":"operational","power_capacity_mw":30,"total_sqft":44000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cologix COL1","verified_operator":"Cologix","verified_owner":"Stonepeak Infrastructure Partners","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; 45+ network service providers","num_buildings":1,"campus_acres":9,"utility_provider":"AEP Ohio","tax_incentives":"Ohio Job Creation Tax Credit: 75% for 10 years (2023–2032) for Cologix, Inc. Additionally, a 10-year, 50% data center sales tax exemption was approved in June 2026 for Cologix’s Central Ohio expansion.","natural_hazard_zone":"Low risk — Seismic zone 0 and outside of floodplain"},"533":{"description":"Cologix COL2 is an operational, carrier-neutral colocation and interconnection data center operated by Cologix at 555 Scherers Court in Columbus, Ohio. It offers a 44,000 sq ft purpose-built facility on a 9‑acre campus with dense network connectivity.","verified_status":"operational","power_capacity_mw":30,"total_sqft":44000,"year_online":"unknown","construction_update":"","recent_news":"No COL2‑specific development reported in the last six months; on June 2, 2026, Ohio approved incentives for a $1.1B Cologix expansion in Orange Township and Johnstown, which are separate from COL2.","notable_tenants":"No anchor enterprise tenant is publicly disclosed. Connectivity/IX present includes Ohio IX and 30+ networks in the meet‑me‑room; the site also offers a 150‑seat emergency workspace.","verified_name":"Cologix COL2","verified_operator":"Cologix","verified_owner":"Stonepeak","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":9,"utility_provider":"","tax_incentives":"Ohio approved a sales tax exemption valued at about $42.3M for new Cologix data center projects in 2026; this pertains to newer expansions in Central Ohio, not specifically to COL2.","natural_hazard_zone":"low risk"},"534":{"description":"Cologix COL3/COL3-S is an operational, carrier-neutral colocation (Scalelogix) data center in Columbus operated by Cologix, marketed as a 160K SQFT, 18+ MW facility directly linked to COL1/COL2 within a dense interconnect ecosystem.","verified_status":"operational","power_capacity_mw":18,"total_sqft":160000,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cologix COL3 Data Center (also referred to as COL3-S)","verified_operator":"Cologix","verified_owner":"","cooling_type":"air-cooled","tier_level":"Uptime Institute Tier III Certified Constructed Facility","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Outside FEMA 100- and 500-year floodplains; low seismic risk"},"535":{"description":"Cologix Johnstown COL7 is an AI-ready colocation facility operated by Cologix at 12017 Duncan Plains Road, Johnstown, OH, designed to support both Scalelogix and Digital Edge deployments as part of the company’s Johnstown campus.","verified_status":"under-construction","power_capacity_mw":36,"total_sqft":120000,"year_online":"2027 (planned)","construction_update":"June 2026: Ohio approved a sales-tax exemption/incentive supporting Cologix’s Central Ohio build-out (including Johnstown). Earlier milestone: June 23, 2025 groundbreaking for Central Ohio expansion.","recent_news":"June 2026: Ohio approved a sales-tax exemption/incentive package supporting Cologix’s Central Ohio expansion, including the Johnstown campus where COL7 is located.","notable_tenants":"","verified_name":"Cologix COL7 Data Center","verified_operator":"Cologix","verified_owner":"COLOGIX JOHNSTOWN LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":8,"campus_acres":154,"utility_provider":"AEP Ohio (American Electric Power)","tax_incentives":"State of Ohio data center sales-tax exemption approved for Cologix at the June 2026 Ohio Tax Credit Authority meeting; statewide pause on new exemptions announced immediately thereafter.","natural_hazard_zone":"low risk"},"536":{"description":"COL8 is Cologix’s purpose-built Scalelogix colocation data center at 11719 Duncan Plains Road in Johnstown, OH, designed for high‑density, liquid‑cooling‑ready workloads. It sits on Cologix’s Johnstown campus, which is planned for eight AI‑ready data centers totaling up to 800 MW and about 2.0 million sq ft.","verified_status":"under-construction","power_capacity_mw":21,"total_sqft":0,"year_online":"unknown","construction_update":"June 2026: Ohio approved a 50%, 10‑year sales‑tax exemption for Cologix’s projects and the company announced over $1.1B in new Central Ohio investment including the Johnstown/Licking campus. Prior milestones: June 2025 reports of ground‑breaking in Central Ohio with work slated to begin on the 154‑acre Johnstown campus later in 2025; Nov 20, 2024 land acquisition and plan for an eight‑facility, 800‑MW Johnstown campus.","recent_news":"June 2026: Cologix secured approval for a 50%, 10‑year Ohio sales‑tax exemption and announced over $1.1B in new data‑center investment in Central Ohio, including the Johnstown/Licking County campus that will host COL8.","notable_tenants":"","verified_name":"Cologix COL8","verified_operator":"Cologix","verified_owner":"Stonepeak Infrastructure Partners","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral; 50+ unique network and cloud service providers; two public cloud onramps","num_buildings":8,"campus_acres":154,"utility_provider":"AEP Ohio","tax_incentives":"Ohio Tax Credit Authority approved a 50% 10-year data center sales tax exemption for the project.","natural_hazard_zone":"low risk"},"537":{"description":"Expedient CMH1 / Upper Arlington is an operational Expedient colocation data center at 5000 Arlington Centre Blvd., Building One, Upper Arlington, Ohio. The site provides approximately 21,591 sq ft of data center space and serves the Columbus market.","verified_status":"operational","power_capacity_mw":1.6,"total_sqft":21591,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Expedient Columbus – Upper Arlington (CMH1)","verified_operator":"Expedient","verified_owner":"Landmark Dividend","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":2.06,"utility_provider":"AEP Ohio","tax_incentives":"OAQDA approved $6.7M bond financing and City of Upper Arlington approved PACE financing for improvements at 5000 Arlington Centre Blvd (building-level; not DC-specific).","natural_hazard_zone":"unknown"},"538":{"description":"Expedient CMH2 / Dublin is an operational colocation/cloud data center operated by Expedient at 5700 Innovation Drive, Dublin, Ohio, offering about 29,000 sq ft of data center space and around 4.8 MW of critical IT load. The facility opened in 2015 and continues to be listed by the operator.","verified_status":"operational","power_capacity_mw":4.8,"total_sqft":29208,"year_online":"2015","construction_update":"","recent_news":"April 30, 2026: DCD reported a Columbus data center sale to its occupier, naming Expedient as the likely buyer; May 14, 2026: Five 9s Digital announced the sale of a 6 MW single-tenant Columbus data center to its long-term tenant.","notable_tenants":"","verified_name":"Expedient Columbus - Dublin Data Center","verified_operator":"Expedient","verified_owner":"Continental Broadband LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":4.369,"utility_provider":"AEP Ohio","tax_incentives":"","natural_hazard_zone":""},"539":{"description":"Expedient CMH3 (Lewis Center) is an operational colocation/managed cloud data center operated by Expedient at 281 E. Powell Road in Lewis Center, Ohio. The former Nationwide facility was brought online under Expedient in February 2024 and is listed with 7 MW critical IT load and a 102,000 sq ft data center footprint.","verified_status":"operational","power_capacity_mw":7,"total_sqft":102000,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"Nationwide","verified_name":"Expedient CMH3 (Lewis Center)","verified_operator":"Expedient","verified_owner":"Nationwide Mutual Insurance","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; 4 on-net carriers","num_buildings":1,"campus_acres":0,"utility_provider":"AEP Ohio","tax_incentives":"Ohio Data Center Sales and Use Tax Exemption program exists; applications for new exemptions were paused on May 27, 2026. No public confirmation that CMH3 received this incentive.","natural_hazard_zone":"low risk"},"540":{"description":"Centersquare operates the CMH1 Lewis Center colocation data center at 8180 Green Meadows Dr N, Lewis Center, Ohio; it is actively marketed for colocation services, and the building totals about 60,000 square feet.","verified_status":"operational","power_capacity_mw":0,"total_sqft":60000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare Columbus CMH1 (Lewis Center CMH1)","verified_operator":"Centersquare Data Centers (Csquare)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard, between 100-year and 500-year limits)"},"541":{"description":"WeConnect Community Data Center (WeConnect Westerville) is the City of Westerville’s municipally owned and operated colocation/data center and fiber network hub at 35 Collegeview Road. The 16,000‑sq‑ft facility is described by the city as the first municipally owned, managed and operated data center in the United States.","verified_status":"operational","power_capacity_mw":1.2,"total_sqft":16000,"year_online":"2011","construction_update":"","recent_news":"Mar 20, 2026: City of Westerville proposed an altafiber partnership that would use the WeConnect data center as the hub for citywide residential service.","notable_tenants":"","verified_name":"WēConnect Community Data Center","verified_operator":"City of Westerville (WeConnect / Data Center Division), managed and operated by Metro Data Center (DartPoints)","verified_owner":"City of Westerville","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.4,"utility_provider":"Westerville Electric Division","tax_incentives":"Property tax abatements; income tax offsets; forgivable loans; rebates for energy efficiency and conservation projects.","natural_hazard_zone":"Low risk; FEMA Flood Zone X likely (parcel-level confirmation recommended)"},"542":{"description":"A Cogent Communications-operated data center and office at 240 N 5th St, Suite 210, Columbus, providing colocation alongside Internet, VPN, and transport services.","verified_status":"operational","power_capacity_mw":0.1,"total_sqft":5400,"year_online":"unknown","construction_update":"","recent_news":"May 2026: Cogent announced an agreement to sell 10 data centers to I Squared Capital, with the buyer planning $1B in platform investment.","notable_tenants":"","verified_name":"Cogent Data Center - Columbus","verified_operator":"Cogent Communications","verified_owner":"HCP Columbus Warehouse District I LLC (Hackman Capital Partners)","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Downtown Columbus moderate flood risk; exact FEMA zone not determinable"},"543":{"description":"An operational WOW! Business colocation and interconnection data center at 226 N. 5th Street (Suite 200) in Columbus, originally the Bluemile facility WOW acquired in November 2013, offering about 26,000 sq ft of raised floor expandable to 52,000 sq ft.","verified_status":"operational","power_capacity_mw":2.6,"total_sqft":26000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"WOW! Business Columbus Datacenter","verified_operator":"WOW! Business","verified_owner":"Hackman Capital Partners (via HCP Columbus Warehouse District I LLC)","cooling_type":"air-cooled","tier_level":"Tier III design","fiber_providers":"Carrier-neutral; Lumen present (in-building)","num_buildings":1,"campus_acres":1.45,"utility_provider":"AEP Ohio","tax_incentives":"","natural_hazard_zone":"low risk"},"544":{"description":"Lumen Columbus 1 is an operational Lumen Technologies telecom/colocation data center at 266 North 5th Street in Columbus, Ohio. Public listings indicate a roughly 15,400 sq ft facility with about 2.5 MW total power capacity.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":15400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Columbus 1","verified_operator":"Lumen Technologies","verified_owner":"HCP Columbus Warehouse District I LLC (Hackman Capital Partners)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk (no site-specific FEMA zone identified; county-level risk is low)"},"545":{"description":"Lumen 580 North 4th is a Lumen Technologies colocation/data center located at 580 North 4th Street in Columbus, Ohio. It represents Lumen’s colocation/data center services in the Columbus market.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen: 580 North 4th","verified_operator":"Lumen Technologies","verified_owner":"SBHI INC C/O CAPITOL EQUITIES","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen Technologies network (legacy CenturyLink / Level 3 / Global Crossing / TW Telecom assets); no public carrier-neutral provider list found for this specific suite","num_buildings":2,"campus_acres":1.382,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard)"},"546":{"description":"Carrier-neutral colocation/data center at 101 E Town St in downtown Columbus, historically Datacenter101/Lightower and currently listed as Crown Castle Columbus (101 E Town) on facility directories; it occupies about 10,950 sq ft on the third floor.","verified_status":"operational","power_capacity_mw":2,"total_sqft":10950,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Crown Castle Columbus (101 E Town)","verified_operator":"Crown Castle","verified_owner":"150 Commerce Holdings LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Crown Castle Fiber (formerly Lightower); cross connects available","num_buildings":1,"campus_acres":0.62,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X - Area of Minimal Flood Hazard"},"547":{"description":"Racksquared Data Centers LLC operates an operational colocation facility at 325 E. Spring Street, Columbus, Ohio, with about 4,000 sq ft of PCI‑compliant, static‑dissipative colocation floor within an ~11,291 sq ft building. The site serves regional businesses with colocation and related services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":11291,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"No anchor colocation tenant publicly disclosed. Publicly named customer: Ryder Last Mile.","verified_name":"Racksquared 325 E Spring St","verified_operator":"Racksquared Data Centers, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"548":{"description":"Racksquared 2560 Value Way is a Columbus, Ohio colocation/data-center site operated by Racksquared Data Centers, LLC, noted for backup and disaster recovery services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":72816,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No anchor tenants or customers are publicly tied specifically to the 2560 Value Way site. Racksquared’s published client stories mention Compass Health Brands, SC Codeworks, and Nickles Bakery, but these pages do not identify the serving facility.","verified_name":"Racksquared Value Way Datacenter","verified_operator":"Racksquared Data Centers, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"549":{"description":"CENTRA CMH01 is a carrier-neutral interconnection facility operated by CENTRA Digital Interconnect (formerly Deep Edge Realty) inside the 34‑story Continental Plaza/Borden (Hexion) building at 180 E Broad St in downtown Columbus; the site is recognized as a market carrier hotel for the region.","verified_status":"operational","power_capacity_mw":2,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 7, 2026: The Hexion-anchored office tower at 180 E Broad St entered receivership amid landlord legal and financial disputes.","notable_tenants":"","verified_name":"CENTRA CMH01 - Columbus Ohio (180 E Broad)","verified_operator":"CENTRA Digital Interconnect (formerly Deep Edge Realty)","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; providers include AT&T, Bresco Broadband, Verizon, and Zayo","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"550":{"description":"QTS New Albany 1 DC1 is a wholesale data center operated by QTS Data Centers at 1235 Beech Rd SW in New Albany, Ohio, forming part of the two‑building New Albany 1 site. The site is within QTS’s larger four‑building New Albany campus and is reported to offer 144 MW across its first two facilities.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":442521,"year_online":"unknown","construction_update":"Construction started in 2024 with targeted completion in 2025 (projected).","recent_news":"","notable_tenants":"","verified_name":"QTS New Albany 1 DC1","verified_operator":"QTS Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":38.79,"utility_provider":"AEP Ohio (American Electric Power)","tax_incentives":"City of New Albany CRA: 100% real property tax abatement for 15 years; Ohio state job-creation incentive approved for QTS.","natural_hazard_zone":""},"551":{"description":"QTS New Albany 1 DC2 is a wholesale/hyperscale data center operated by QTS Data Centers on the New Albany 1 campus at 1225 Beech Rd SW in New Albany, Ohio, built as a new 442,521 sq ft facility. It sits within a multi-facility campus planned at 200+ MW of critical power across multiple buildings.","verified_status":"operational","power_capacity_mw":0,"total_sqft":442521,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS New Albany 1 DC2","verified_operator":"QTS Data Centers","verified_owner":"Blackstone/QTS (QTS New Albany 1 LLC)","cooling_type":"chilled water","tier_level":"Tier IV equivalent design","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":56,"utility_provider":"AEP Ohio","tax_incentives":"15-year 100% property tax abatement via Community Reinvestment Area (CRA) and an Ohio Job Creation Tax Credit (JCTC) with QTS New Albany Infrastructure I, LLC as a grantee.","natural_hazard_zone":"low risk"},"552":{"description":"CyrusOne New Albany COL-1 is an under-construction data center development by CyrusOne at 12181 Jug St. in the New Albany/Johnstown, Ohio area, tied to a roughly $150 million project; CyrusOne is the operator, with ownership associated with KKR/GIP/BlackRock. Third-party profiles list the first building at about 274,518 sq ft.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":274518,"year_online":"unknown","construction_update":"Groundbreaking held in September 2025; project confirmed as under construction in New Albany.","recent_news":"","notable_tenants":"","verified_name":"CyrusOne New Albany COL-1","verified_operator":"CyrusOne","verified_owner":"KKR & Global Infrastructure Partners (GIP)","cooling_type":"air-cooled","tier_level":"Designed for concurrent maintainability (Tier III equivalent)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":93.8,"utility_provider":"AEP Ohio (American Electric Power)","tax_incentives":"10-year, 75% Ohio data center sales tax exemption; 15-year, 100% data center tax exemption/real property abatement.","natural_hazard_zone":"Low risk overall. FEMA Zone X (low-risk areas) context; citywide minor flood risk; historical F2 tornado event (2006)."},"553":{"description":"Edged US operates Edged Columbus (CMH01), a hyperscale/AI‑ready data center in New Albany, Ohio.","verified_status":"operational","power_capacity_mw":24,"total_sqft":206000,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Edged Columbus Data Center","verified_operator":"Edged","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":15,"utility_provider":"AEP Ohio","tax_incentives":"15-year, 100% real property tax abatement from New Albany; state-level sales tax exemption action referenced in the same period.","natural_hazard_zone":"low risk"},"554":{"description":"A planned, land-banked hyperscale data center site operated by DBT Data at 2214 Harrison Rd in New Albany/Columbus, Ohio; DBT acquired 44 acres in March 2022 with the intention to develop a data center on the site. Nearby DBT projects and land sales (e.g., 2565 Harrison Rd NW to Google) are separate and do not define this site’s specs.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"March 2022: DBT Data acquired 44 acres at 2214 Harrison Rd with the intention to develop a data center.","recent_news":"","notable_tenants":"","verified_name":"DBT Data: 2214 Harrison Rd","verified_operator":"DBT Data","verified_owner":"DBT Data (affiliate of DBT Development Group, LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":44,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk (minimal flood risk)"},"555":{"description":"Aligned Pataskala is a proposed Aligned Data Centers campus at 6770 Mink Street SW in Pataskala, Ohio, described in local reporting as a three‑building development still seeking city approvals.","verified_status":"planned","power_capacity_mw":200,"total_sqft":0,"year_online":"unknown","construction_update":"Application PM-25-001 for the Aligned CMH01 campus is filed and under review; an economic analysis dated Mar. 27, 2026 cites an estimated $2.70B investment. No construction start identified.","recent_news":"The Pataskala Planning Board recommended that City Council reject Aligned’s proposed data center campus; City Council will make the final decision.","notable_tenants":"","verified_name":"Aligned CMH01 (Pataskala) Data Center Campus","verified_operator":"Aligned Data Centers","verified_owner":"Aligned Data Centers","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":89.41,"utility_provider":"","tax_incentives":"No local property-tax abatements; company stated it would not seek or accept them.","natural_hazard_zone":""},"556":{"description":"Karis Critical’s Smart Farm (New Albany, OH) is a planned hyperscale data-center campus at 4500 Beech Road NW; the company markets it as a fully entitled, shovel‑ready 113.5‑acre site in Central Ohio’s technology corridor.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Jan 23, 2026: Local report noted an eight‑building proposal at Beech & Green Chapel. The site is marketed as fully entitled/shovel‑ready; the Smart Farms Zoning District was approved with conditions in May 2025; market data shows no leaseable power under construction.","recent_news":"Jan 23, 2026: Local reporting noted an eight‑building data‑center complex proposed at the corner of Beech and Green Chapel roads near Rt. 62.","notable_tenants":"","verified_name":"Smart Farm (Karis Critical New Albany data center campus)","verified_operator":"Karis Critical","verified_owner":"Karis Critical","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":113.5,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"557":{"description":"AWS operates a hyperscale data center at 2570 Beech Road NW, Johnstown (New Albany area), as part of its US East (Ohio) region. Reporting identifies the site as an existing 459,000-sq-ft facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":459000,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Amazon: 2570 Beech Road Data Center","verified_operator":"Amazon Web Services","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"AEP Ohio / American Electric Power","tax_incentives":"Ohio’s statewide 100% sales tax exemption on data center equipment applies to Amazon; broader AWS Ohio incentive agreements are in place (not specific to 2570 Beech Road).","natural_hazard_zone":"low risk"},"558":{"description":"Operational Amazon Web Services hyperscale data center at 5109 Hayden Run Rd in Hilliard, Ohio, part of AWS’s US East (Ohio) region. Third-party listings confirm the site and show a Hayden Building with 154,000 sq ft, while no public MW capacity is disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":154000,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Amazon AWS CMH - 5109 Hayden","verified_operator":"Amazon Web Services (AWS)","verified_owner":"Vadata, Inc. (Amazon affiliate)","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":58.2,"utility_provider":"AEP Ohio (Ohio Power Company)","tax_incentives":"Hilliard 15-year, 100% property tax abatement (estimated ~$5.4M) and Ohio statewide data-center sales/use tax exemptions.","natural_hazard_zone":"FEMA Flood Zone X (low flood risk)"},"559":{"description":"A five‑building hyperscale data center campus operated by Amazon Web Services along Beech Road and Miller Road in New Albany, Ohio, totaling about 1.25 million square feet across the site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1250000,"year_online":"2025","construction_update":"Aug 7, 2025: City reported two AWS New Albany campus buildings completed and staffed; remaining facilities were under construction and targeted to be operational by year-end 2025. Feb 24, 2025: BZA packet for Amazon Data Center – Campus 4 at 13360 Miller Road showed active construction with completion/screening requirements extending to Nov 2027.","recent_news":"","notable_tenants":"","verified_name":"Amazon: Miller Rd Campus Data Center","verified_operator":"Amazon Web Services (AWS)","verified_owner":"Amazon Data Services, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; connected to New Albany’s multiple-path fiber and municipal broadband; specific third-party carriers not disclosed.","num_buildings":5,"campus_acres":85,"utility_provider":"AEP Ohio (American Electric Power)","tax_incentives":"30-year local tax abatement for AWS data centers in the New Albany area; Ohio data center sales-tax exemptions may also apply.","natural_hazard_zone":"Low risk (citywide minor flood risk; typical Midwest wind/tornado exposure)."},"560":{"description":"Planned Google hyperscale data center site at 2565 Harrison Road NW in the New Albany/Johnstown area near Columbus, Ohio, owned via Google’s subsidiary Montauk Innovations LLC after an ~85‑acre, $63M purchase in June 2025; development remains a potential project with no confirmed timeline.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"June 2025: Google’s subsidiary Montauk Innovations LLC purchased ~85 acres at 2565 Harrison Road NW in New Albany for a potential data center; no public construction timeline has been announced.","recent_news":"","notable_tenants":"","verified_name":"Google: 2565 Harrison Rd","verified_operator":"Google","verified_owner":"Montauk Innovations LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":84.74,"utility_provider":"AEP Ohio (American Electric Power)","tax_incentives":"No site-specific incentives publicly confirmed as of June 2026. Ohio’s data center sales-tax exemption exists, but new proposals are paused as of May 27, 2026; prior Google/Montauk New Albany abatements do not confirm applicability to this parcel.","natural_hazard_zone":"low risk (regional context indicates minor flood risk; parcel-specific FEMA zone not cited)"},"561":{"description":"Microsoft is developing a hyperscale Azure data center at 3287 Beech Rd in New Albany, Ohio, with Phase I estimated at $420 million and about 245,000 sq ft on roughly 200 acres; the project has a 15-year tax abatement and has entered its first phase of construction.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":245000,"year_online":"2027","construction_update":"First phase underway with Ames Construction as general contractor (spring 2026).","recent_news":"Spring 2026: Microsoft confirms Ames Construction as GC and that the first phase of construction is underway at the New Albany site.","notable_tenants":"","verified_name":"Microsoft New Albany datacenter (3287 Beech Rd NW)","verified_operator":"Microsoft (Microsoft Azure)","verified_owner":"Microsoft Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":200,"utility_provider":"AEP Ohio (American Electric Power)","tax_incentives":"100% property-tax abatement for 15 years approved by New Albany City Council for Microsoft’s Beech Road data center project.","natural_hazard_zone":"unknown"},"562":{"description":"Cogent Communications operates a carrier-neutral data center at 240 N 5th St, Suite 210, Columbus, OH that offers Internet, VPN, transport, and colocation services. The site provides 5,400 sq ft of raised-floor space and backup power options.","verified_status":"operational","power_capacity_mw":0.1,"total_sqft":5400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Columbus - Columbus Office & Data Center","verified_operator":"Cogent Communications, Inc.","verified_owner":"Hackman Capital Partners (HCP Columbus Warehouse District I LLC)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; carriers include SBC, ICG, Time Warner, and XO Fiber","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"563":{"description":"Cologix COL4 is a Cologix‑operated, AI‑ready Scalelogix colocation data center at 7500 Alta View Blvd. in Columbus, Ohio. It spans 256,000 sq ft and provides 50 MW total power across three data halls (with 33 MW IT/critical capacity), designed for high‑density workloads.","verified_status":"operational","power_capacity_mw":50,"total_sqft":256000,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"Lambda","verified_name":"Cologix COL4","verified_operator":"Cologix","verified_owner":"COLOGIX COL4 LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":7,"utility_provider":"AEP Ohio","tax_incentives":"","natural_hazard_zone":"low risk"},"564":{"description":"165 Halsey Street is a carrier-neutral telecom carrier hotel and colocation data center in Newark, NJ, totaling 1.2 million sq ft with over 80 MW of power and operating since 1999. It is owned by Market Halsey Urban Renewal, with Tishman Real Estate Services serving as third‑party leasing and licensing manager.","verified_status":"operational","power_capacity_mw":80,"total_sqft":1200000,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"Equinix NY1 (8th floor) and DataBank EWR1 (Suite 500); the on-site 165 Halsey Meet-Me Room (Suite 9) serves numerous networks.","verified_name":"165 Halsey Street","verified_operator":"165 Halsey Street","verified_owner":"Market Halsey Urban Renewal","cooling_type":"hybrid","tier_level":"Tier III design standard","fiber_providers":"Carrier-neutral with 60+ on-net networks including XO Communications, Cologix, Zayo, and Crosslake Fiber","num_buildings":1,"campus_acres":1.64,"utility_provider":"PSE&G","tax_incentives":"Located in a Newark Urban Enterprise Zone (UEZ), which offers participating businesses benefits including reduced sales tax; New Jersey has enacted statewide data center tax incentives providing expanded exemptions/credits for qualifying investments.","natural_hazard_zone":""},"565":{"description":"Equinix NY2 is an operational, carrier-neutral Equinix IBX colocation data center at 275 Hartz Way, Secaucus, New Jersey, serving the New York metro interconnection ecosystem.","verified_status":"operational","power_capacity_mw":6,"total_sqft":403869,"year_online":"2002","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix NY2 (New York IBX Data Center)","verified_operator":"Equinix","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"Statewide sales and use tax exemptions for data centers in New Jersey; no NY2-specific award identified.","natural_hazard_zone":""},"566":{"description":"Equinix NY4 is an operational Equinix International Business Exchange (IBX) carrier-neutral colocation data center at 755 Secaucus Road, Secaucus, NJ, serving major financial, media and enterprise customers in the New York metro.","verified_status":"operational","power_capacity_mw":18,"total_sqft":338967,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"Knight Capital Group; Zayo; FXecosystem; Crosslake Fibre","verified_name":"Equinix NY4","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"chilled water","tier_level":"Tier III equivalent","fiber_providers":"Carrier-neutral; notable networks include Zayo, FXecosystem, and Crosslake Fibre; extensive additional providers via the Equinix Secaucus campus.","num_buildings":1,"campus_acres":18.956,"utility_provider":"Public Service Electric & Gas (PSE&G)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE; flood-resilient design measures implemented by operator."},"567":{"description":"Equinix NY5 is an Equinix-operated, carrier-neutral IBX colocation data center at 800 Secaucus Road in Secaucus, New Jersey, and part of the company’s Secaucus/New York metro campus. It serves major financial and trading ecosystems and has an approximate building footprint of 275,322 square feet.","verified_status":"operational","power_capacity_mw":10,"total_sqft":275322,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"NYSE Technologies (SFTI Access Center)","verified_name":"Equinix NY5","verified_operator":"Equinix","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":13,"utility_provider":"Public Service Electric & Gas (PSE&G)","tax_incentives":"","natural_hazard_zone":"Flood-resiliency construction noted (no specific FEMA zone stated)."},"568":{"description":"Equinix NY6 is an operational Equinix International Business Exchange (IBX) colocation data center at 105 Enterprise Avenue South in Secaucus, New Jersey, serving financial, media, and enterprise customers in the New York metro campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":70183,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"No NY6-specific anchor tenant/customer list is publicly available. On-net providers at 105 Enterprise Ave S include PacketFabric and Cogent.","verified_name":"New York NY6 (Equinix NY6)","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; includes Equinix Internet Exchange New York and carriers such as Cogent at 105 Enterprise Avenue South","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G","tax_incentives":"","natural_hazard_zone":"Above 500-year base flood elevation; seismic design category C"},"569":{"description":"Equinix NY7 is a carrier-neutral IBX/colocation data center operated by Equinix at 5851 West Side Avenue, North Bergen, NJ, serving major financial, media, and enterprise ecosystems.","verified_status":"operational","power_capacity_mw":5,"total_sqft":163537,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix NY7 (New York IBX Data Center)","verified_operator":"Equinix","verified_owner":"5851 Westside Avenue Associates, L.L.C.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":4.89,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"570":{"description":"CoreSite NY2 is CoreSite’s operational colocation data center at 2 Emerson Lane in Secaucus, New Jersey, serving the New York metro with high-density capacity and interconnection options.","verified_status":"operational","power_capacity_mw":22,"total_sqft":256000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No named anchor tenants publicly disclosed. Connectivity ecosystem includes AWS Direct Connect at NY2.","verified_name":"CoreSite NY2","verified_operator":"CoreSite","verified_owner":"CORESITE RE 2 EMERSON LANE LLC (ultimate parent: American Tower Corporation)","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral; dark-fiber tether to NY1","num_buildings":1,"campus_acres":10.19,"utility_provider":"PSE&G","tax_incentives":"","natural_hazard_zone":"Built above the 500-year flood plain (flood-mitigation design)"},"571":{"description":"H5 Data Centers operates a carrier-neutral Tier III colocation facility at 200B Meadowlands Parkway in Secaucus, NJ, offering 38,000+ sq ft and industry compliance certifications near New York City.","verified_status":"operational","power_capacity_mw":5,"total_sqft":47000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"On The Spot Media; no large anchor/hyperscale tenant publicly disclosed.","verified_name":"H5 Data Centers New Jersey Data Center","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers","cooling_type":"unknown","tier_level":"Tier III design","fiber_providers":"Carrier-neutral; on-net examples include Cogent, InterServer, and Metanet.","num_buildings":1,"campus_acres":4.5,"utility_provider":"Public Service Electric & Gas (PSE&G)","tax_incentives":"No site-specific award found. New Jersey created AI-related credits in 2024, but no evidence that this facility has received them.","natural_hazard_zone":"Flood exposure: Meadowlands/Secaucus area with documented Meadowlands Parkway flooding; exact FEMA zone at 200B Meadowlands Pkwy not confirmed."},"572":{"description":"Centersquare operates a carrier-neutral colocation facility at 15 Enterprise Avenue North in Secaucus, known as NYC3/EWR5, serving the NY/NJ market; listings show it operational with a roughly 154,691 sq ft building footprint and published power figures ranging from 12 MW IT to 26.3 MW utility capacity.","verified_status":"operational","power_capacity_mw":26.3,"total_sqft":154691,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare Secaucus EWR5 (also listed as EWR5-A; formerly NYC3) ","verified_operator":"Csquare","verified_owner":"Brookfield Infrastructure Partners and institutional partners (ultimate owner of the Csquare data center platform); parcel-level titleholder for 15 Enterprise Ave N not determined from public records.","cooling_type":"chilled water","tier_level":"Tier III equivalent; no Uptime Institute certification found","fiber_providers":"carrier-neutral; examples include Verizon Telecom, Zayo, Cogent, AT&T, and Crown Castle","num_buildings":1,"campus_acres":8.4,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"","natural_hazard_zone":"Regional flood exposure indicated in Meadowlands mapping; low-to-moderate seismic (Seismic Zone 2) for Northern New Jersey."},"573":{"description":"Digital Realty EWR11 is an operational, three‑story colocation data center at 3 Corporate Place, Piscataway Township, NJ, owned and operated by Digital Realty, with a total building size of 277,000 ft² on the Digital Piscataway campus. Third‑party profiles indicate access to 26 MW total facility power capacity, while some marketplace figures (~5 MW) refer to delivered/market critical power rather than total utility/UPS capacity.","verified_status":"operational","power_capacity_mw":26,"total_sqft":277000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Centersquare (formerly Cyxtera) operates EWR3 suites at 3 Corporate Place; no named enterprise/cloud anchor customers are publicly disclosed.","verified_name":"Digital Realty EWR11","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; known on-net: Pilot Fiber; Flowbird","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G","tax_incentives":"","natural_hazard_zone":""},"574":{"description":"Digital Realty EWR12 is an operational colocation data center operated by Digital Realty at 365 S. Randolphville Road in Piscataway, New Jersey, with a 351,000 ft² building footprint and connectivity as part of the Digital Piscataway campus.","verified_status":"operational","power_capacity_mw":14.4,"total_sqft":351000,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty EWR12","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Outside 500-year flood zone; low risk"},"575":{"description":"Digital Realty EWR19 is an operational colocation data center operated by Digital Realty at 1115 Centennial Avenue in Piscataway, New Jersey. Third‑party listings place the facility within the Piscataway campus and show a building size of about 127,000 square feet.","verified_status":"operational","power_capacity_mw":16.8,"total_sqft":127000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty EWR19 (1115 Centennial Avenue; also listed as 3 Corporate Place Annex)","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; access to 575+ networks","num_buildings":1,"campus_acres":27.46,"utility_provider":"PSE&G","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone A (1% annual-chance floodplain)"},"576":{"description":"QTS Piscataway 1 is an operational wholesale/colocation data center campus in Piscataway, NJ operated by QTS, serving the New Jersey/New York market and offering around 65 MW of capacity on a 38-acre site.","verified_status":"operational","power_capacity_mw":65,"total_sqft":450000,"year_online":"unknown","construction_update":"Piscataway Planning Board case 23-PB-30/31V for QTS Investment Properties Piscataway, LLC received preliminary/final approval on March 13, 2024 and was memorialized on April 10, 2024.","recent_news":"","notable_tenants":"","verified_name":"QTS Piscataway 1","verified_operator":"QTS Data Centers","verified_owner":"Blackstone/QTS (QTS Investment Properties Piscataway, LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":38,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"State-level incentives: Next NJ Program – AI transferable tax credits for eligible AI data centers; extended sales and use tax exemptions for qualifying data center equipment (site-specific participation not confirmed).","natural_hazard_zone":"Partial FEMA AE flood zone/floodway on site; majority Zone X (low risk)."},"577":{"description":"DataBank EWR2 is an operational colocation data center at 25 Corporate Place South in Piscataway, New Jersey, operated by DataBank. It offers 3 MW of critical IT capacity across 22,590 square feet of raised-floor space, and DataBank acquired the previously leased building in May 2025.","verified_status":"operational","power_capacity_mw":3,"total_sqft":22590,"year_online":"1985","construction_update":"","recent_news":"","notable_tenants":"New Jersey Institute of Technology (NJIT) – Wulver high‑performance computing (HPC)","verified_name":"(EWR2) Piscataway Data Center","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"unknown","tier_level":"Tier III-equivalent (N+1 power, N+1 cooling); not Uptime-certified","fiber_providers":"Carrier-neutral; 9 on-site carriers. Examples reported by directories include major networks (e.g., Verizon, Lumen/CenturyLink). The facility also advertises direct access to 60 Hudson, 111 8th Avenue, and 165 Halsey.","num_buildings":1,"campus_acres":7.36,"utility_provider":"PSE&G","tax_incentives":"","natural_hazard_zone":"low risk"},"578":{"description":"QTS Jersey City 1 DC1 is a QTS-operated colocation data center located on the 16th floor at 95 Christopher Columbus Drive, Jersey City, NJ, offering carrier-neutral interconnection. QTS identifies the site as JCY1/DC1 at this address.","verified_status":"operational","power_capacity_mw":3,"total_sqft":120000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Jersey City 1 DC1","verified_operator":"QTS Data Centers","verified_owner":"Columbia Property Trust","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"579":{"description":"Centersquare EWR1-A (New York EWR1) is an operational colocation data center at 210 Hudson Street in Jersey City, operated by Centersquare and totaling about 74,222 square feet.","verified_status":"operational","power_capacity_mw":3.6,"total_sqft":74222,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare New York EWR1 (EWR1-A)","verified_operator":"Centersquare (Csquare)","verified_owner":"601W Companies (via RS Harborside Owner 1 LLC)","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G","tax_incentives":"","natural_hazard_zone":"Hudson River/Jersey City waterfront coastal flood and sea-level-rise exposure; exact FEMA flood-zone designation for 210 Hudson Street was not determinable from accessible sources."},"580":{"description":"Digital Realty EWR20 is an operational colocation data center at 100 Delawanna Avenue, Clifton, NJ, operated by Digital Realty. The 183,000 ft² site features N+1 cooling and strong interconnection, including direct connectivity to financial exchange networks such as SFTI, BATS, and ARCA.","verified_status":"operational","power_capacity_mw":3.95,"total_sqft":183000,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty New Jersey EWR20","verified_operator":"Digital Realty","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Hundreds of network operators; direct connections to SFTI, BATS, and ARCA.","num_buildings":1,"campus_acres":0,"utility_provider":"Public Service Electric and Gas Company (PSE&G)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (outside 500-year floodplain); seismic Zone 2A"},"581":{"description":"Digital Realty EWR21 is an operational colocation data center operated by Digital Realty at 2 Peekay Drive, Clifton, NJ, with a three-story, 214,900 ft² building. It opened in 2013 (originally branded Telx NJR3).","verified_status":"operational","power_capacity_mw":30,"total_sqft":214900,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty EWR21","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G","tax_incentives":"New Jersey EDA’s Next NJ Program – AI provides tax credits for eligible AI/data center projects; no facility-specific abatement or award identified for EWR21.","natural_hazard_zone":"unknown"},"582":{"description":"365 Data Centers Carlstadt (NJ3 / CRL-410) is an operational, carrier‑neutral colocation facility at 410 Commerce Boulevard in Carlstadt, New Jersey, near Manhattan, operated by 365 Data Centers. Following 365’s November 2022 acquisition of Sungard AS’s U.S. colocation and network business, the site offers 18 MW of power and roughly 187,600 sq ft across eight data halls.","verified_status":"operational","power_capacity_mw":18,"total_sqft":187600,"year_online":"2000","construction_update":"2026-03-02: Planned +6 MW capacity expansion, targeted for Q4 2026 / Q1 2027.","recent_news":"Baxtel’s March 2, 2026 update notes a planned +6 MW expansion at 365 Data Centers Carlstadt, targeted for Q4 2026 / Q1 2027.","notable_tenants":"","verified_name":"365 Data Centers Carlstadt (NJ3)","verified_operator":"365 Data Centers","verified_owner":"Digital Realty","cooling_type":"chilled water","tier_level":"Not Uptime-certified publicly; design: 2N UPS, N+1 generators, N+1 cooling","fiber_providers":"carrier-neutral; examples include AT&T, Verizon, Zayo, Lumen/Level 3, Optimum Lightpath/Altice, Crown Castle/Lightower, Cogent, Comcast, Hudson Fiber, Megaport; PeeringDB lists Contabo USA, Pilot Fiber, and Rackdog networks","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G / Public Service Electric and Gas","tax_incentives":"No facility-specific tax abatement or award found. New Jersey’s Next New Jersey Program – AI offers tax credits for eligible projects, but no evidence shows this facility has received them.","natural_hazard_zone":"Meadowlands flood exposure; FEMA Bergen County FIRM covers the area. Exact parcel FEMA zone for 410 Commerce Blvd not confirmed."},"583":{"description":"Operational colocation/disaster-recovery data center operated by 11:11 Systems at 777 Central Blvd, Carlstadt, NJ. The facility spans 326,000 sq ft and the property features a dedicated 25 MW substation; the site was formerly associated with Sungard AS.","verified_status":"operational","power_capacity_mw":25,"total_sqft":326000,"year_online":"1998 (built; commissioning date not found)","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"11:11 Systems Carlstadt Data Center","verified_operator":"11:11 Systems","verified_owner":"Russo Development","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; Verizon (Legacy/Core), Verizon Business/MCI, AT&T/LNS, Lightpath (Cablevision/Altice/4Connections), Crown Castle/Lightower/Fibertech/Sidera, Cogent/Yipes, Zayo/Abovenet/CenturyLink/Level 3, Hudson Fiber, SUNESYS","num_buildings":1,"campus_acres":11.97,"utility_provider":"PSE&G","tax_incentives":"Statewide New Jersey data center incentives: extended sales and use tax exemptions for qualifying data center equipment (enacted 2025).","natural_hazard_zone":"Flood exposure (conflicting sources): LoopNet lists Flood Zone AE; NJPropertyRecords shows Flood Zone CO / SFHA No. City-level assessment indicates moderate flood risk."},"584":{"description":"Centersquare Weehawken EWR2-A/B is an operational, carrier-neutral colocation data center operated by Centersquare at 300 J. F. Kennedy Boulevard East in Weehawken, New Jersey, offering low-latency connectivity to the New York financial district.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare New York EWR2-A,B (Weehawken EWR2 Data Center)","verified_operator":"Centersquare","verified_owner":"","cooling_type":"chilled water","tier_level":"Tier III-equivalent","fiber_providers":"carrier-neutral; ~30 network providers","num_buildings":1,"campus_acres":9.91,"utility_provider":"PSE&G","tax_incentives":"","natural_hazard_zone":"Outside the 100-year FEMA flood zone per campus listing; local area shows Severe flood risk and storm-surge exposure."},"585":{"description":"Centersquare EWR2-C/D is an operational colocation data center at 1919 Park Avenue in Weehawken, New Jersey, forming part of Centersquare’s EWR2 campus serving the New York/New Jersey market.","verified_status":"operational","power_capacity_mw":12,"total_sqft":432259,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare EWR2-C,D Weehawken Data Center","verified_operator":"Centersquare (Csquare)","verified_owner":"W. P. Carey Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G","tax_incentives":"No facility-specific incentive identified; New Jersey has no dedicated data center incentive program. A general five-year local abatement exists in code, but no evidence shows it applies to this site.","natural_hazard_zone":"FEMA Flood Zone AE; coastal/Hudson River flood exposure."},"586":{"description":"Iron Mountain NJE-1 is an operational colocation data center at 3003 Woodbridge Avenue, Edison, NJ, operated by Iron Mountain. The operator lists 830,000 sq ft, 30 MW, 100% renewable energy matching, 24/7 Smart Hands, and 20+ carriers, serving the greater NYC/NJ market.","verified_status":"operational","power_capacity_mw":30,"total_sqft":830000,"year_online":"2011","construction_update":"Feb–Apr 2026: Iron Mountain and Calibrant Energy announced and detailed a 23 MWh on-site battery energy storage system for the Edison (NJE-1) facility, integrated with the site’s rooftop solar; project ownership by Calibrant was confirmed.","recent_news":"Feb–Apr 2026: Iron Mountain partnered with Calibrant Energy to deploy a 23 MWh on-site battery energy storage system at the Edison (NJE-1) data center, integrated with the facility’s 7.2 MW rooftop solar; coverage confirms Calibrant will own and operate the system.","notable_tenants":"","verified_name":"Iron Mountain Data Centers NJE-1","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Incorporated / Iron Mountain Data Centers, LLC","cooling_type":"unknown","tier_level":"TIA-942 certified","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":43,"utility_provider":"Public Service Electric & Gas (PSE&G)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard, generally between 100-year and 500-year flood limits)"},"587":{"description":"365 Data Centers NJ1 Bridgewater is an operational colocation facility at 999 Frontier Rd, Bridgewater, NJ, operated by 365 Data Centers. The site is listed at 25,600 sq ft with 2.3MW of power and is located about 40 miles west of New York City.","verified_status":"operational","power_capacity_mw":2.3,"total_sqft":25600,"year_online":"2009/2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers NJ1 Bridgewater","verified_operator":"365 Data Centers","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.24,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"588":{"description":"Rackspace NYC1 (New York Metro) is a Rackspace‑operated enterprise data center at 125 Belmont Drive, Somerset, New Jersey. Official materials list 2 MW total utility power with 1.2 MW UPS and a roughly 56,000 sq ft total building footprint (about 11,000 sq ft raised floor).","verified_status":"operational","power_capacity_mw":2,"total_sqft":56000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Rackspace NYC1 New York Metro Data Center (Rackspace New York 1)","verified_operator":"Rackspace Technology","verified_owner":"Belmont Associates, LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"Cogent","num_buildings":1,"campus_acres":5.85,"utility_provider":"Public Service Electric & Gas (PSE&G)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (not a Special Flood Hazard Area)"},"589":{"description":"QTS East Windsor 1 is a wholesale/colocation data center operated by QTS at 159 Princeton-Hightstown Road in East Windsor, New Jersey. It advertises large-scale capacity and features a 50-acre, 14.1MW private solar field, with the facility commonly cited around 560,000 sq ft.","verified_status":"operational","power_capacity_mw":70,"total_sqft":553930,"year_online":"unknown","construction_update":"May 4, 2026: East Windsor Planning Board approved QTS’s application for a second data center on the campus with environmental safeguards after multiple public hearings.","recent_news":"May 2026: Local coverage reported significant public opposition as the East Windsor Planning Board considered QTS’s expansion on the former McGraw-Hill campus.","notable_tenants":"No current anchor tenant has been publicly confirmed. Historical named customers/partners include McGraw Hill Financial (sale-leaseback after QTS acquired the site in 2014) and Atos (strategic partnership announced in 2014).","verified_name":"QTS East Windsor 1 DC1","verified_operator":"QTS Data Centers","verified_owner":"QTS Investment Properties Princeton, LLC (property owner); ultimate corporate owner: Blackstone funds via QTS Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon Communications","num_buildings":2,"campus_acres":52,"utility_provider":"Jersey Central Power & Light (JCP&L)","tax_incentives":"","natural_hazard_zone":"Regional hurricane/tropical-storm exposure; FEMA flood zone unknown"},"590":{"description":"Operational enterprise/financial-markets data center at 492 River Road, Nutley, NJ, owned by GI Partners and long leased/operated by BT Radianz; it is a core Radianz Compute location serving capital-markets customers. On Feb 2, 2026, BT completed the sale of its Radianz business to Transaction Network Services (TNS).","verified_status":"operational","power_capacity_mw":0,"total_sqft":130000,"year_online":"unknown","construction_update":"","recent_news":"BT completed the sale of its Radianz business to Transaction Network Services (TNS) on Feb 2, 2026; no facility-specific construction/expansion or tenant updates were identified in the last six months.","notable_tenants":"BT Americas / BT Radianz (operator/lessee); former occupant: Thomson Reuters. End customers are described generally as capital-markets financial institutions (no named anchors publicly).","verified_name":"BT Radianz: 492 River Road Data Center","verified_operator":"BT Americas / BT Radianz","verified_owner":"GI Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Public Service Electric & Gas (PSE&G)","tax_incentives":"","natural_hazard_zone":""},"591":{"description":"ON3 Data Center is a planned wholesale/build-to-suit data center development by Prism Capital Partners on the ON3 campus at Cathedral Ave & Kingsland Street (near 275 Kingsland Street) in Nutley, NJ, on an approved 11-acre parcel suitable for a major data center.","verified_status":"planned","power_capacity_mw":0,"total_sqft":150000,"year_online":"unknown","construction_update":"June–July 2025: Nutley advanced/approved redevelopment for a data center at 275 Kingsland Street (ON3). On Jun 18, 2025, officials noted the plan contemplates a data center at the Kingsland site; on Jul 9, 2025, Prism announced Nutley approved redevelopment of 11 acres at 275 Kingsland Street to accommodate a major data center. No construction start has been disclosed.","recent_news":"","notable_tenants":"","verified_name":"ON3 Data Center","verified_operator":"Prism Capital Partners","verified_owner":"PB Nutclif Master, LLC (affiliate of Prism Capital Partners)","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":11,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"PILOTs have been approved for multiple ON3 properties; ON3’s central plant modernization received support from PSE&G, indicating available energy-efficiency incentives.","natural_hazard_zone":"unknown"},"592":{"description":"Cologix NNJ2 is Cologix’s operational, carrier-neutral colocation data center at 9 Wing Drive in Cedar Knolls, New Jersey, offering high‑density deployments up to 20 kW per rack across roughly 50,000 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":50000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No publicly named anchor tenant or major end-customer was found. On-net carriers/network providers include Verizon, Level 3 (Lumen), Zayo, Lightpath, Lightower, Sunesys, and Fibertech.","verified_name":"Cologix NNJ2","verified_operator":"Cologix","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; examples include Sunesys, Level 3 (Lumen Technologies), and Crown Castle; 75+ unique networks across Cologix NJ facilities","num_buildings":1,"campus_acres":0,"utility_provider":"Public Service Electric and Gas Company (PSE&G)","tax_incentives":"","natural_hazard_zone":"low flood risk; situated well above the FEMA 500-year floodplain"},"593":{"description":"Cologix NNJ3 is an operational colocation data center operated by Cologix at 200 Webro Road, Parsippany, New Jersey, housed in a purpose-built 120,000 sq ft facility with multiple independent, redundant power systems.","verified_status":"operational","power_capacity_mw":5,"total_sqft":120000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cologix NNJ3","verified_operator":"Cologix","verified_owner":"Cologix","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":6,"utility_provider":"JCP&L (Jersey Central Power & Light)","tax_incentives":"","natural_hazard_zone":"Outside FEMA 500-year floodplain (low flood risk)"},"594":{"description":"Cologix NNJ4 is Cologix’s move‑in‑ready disaster recovery facility at 16 Wing Drive in Cedar Knolls, New Jersey, offering furnished, connected workspace for displaced teams. The official spec sheet lists 20K SQFT with a 750 kW site power capacity.","verified_status":"operational","power_capacity_mw":0.75,"total_sqft":20000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cologix NNJ4 Data Center (Disaster Recovery Facility)","verified_operator":"Cologix Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; access to 75+ network providers via Cologix’s New Jersey ecosystem.","num_buildings":1,"campus_acres":4.54,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Minor flood risk area; elevation >250 ft above sea level; regional severe-weather hazards noted."},"595":{"description":"Whitelabel ITSolutions operates a colocation data center in Hackensack, NJ, with official specs listing 18,000 sq ft of space and 4,000 kW of utility power. The operator has been established since 2015.","verified_status":"operational","power_capacity_mw":4,"total_sqft":18000,"year_online":"2015","construction_update":"","recent_news":"Jan 12, 2026: Whitelabel ITSolutions introduced optimized BareMetal servers aimed at high-performance workloads.","notable_tenants":"","verified_name":"Whitelabel IT Solutions New Jersey Data Center","verified_operator":"Whitelabel IT Solutions","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III (marketing claim); no formal Uptime Institute certification found","fiber_providers":"carrier-neutral; reported carriers include Zayo, GTT, Cogent, Verizon, Telia Sonera, and Lightpath","num_buildings":1,"campus_acres":0.3237,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"No facility-specific incentive identified; New Jersey provides a general sales-tax exemption for data center/server equipment. Hackensack not found on the state UEZ list.","natural_hazard_zone":"FEMA Zone X / outside 500-year floodplain"},"596":{"description":"Enterprise data center at 905 Main St, Hackensack, NJ, operated by Garden State Backup (Carroll‑Net, Inc.), providing backup, hosting/colocation and disaster‑recovery services with UPS battery backup, diesel generator, Verizon fiber, and data center‑grade HVAC.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Hackensack HQ - Garden State Backup","verified_operator":"Garden State Backup / Carroll-Net, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon","num_buildings":1,"campus_acres":0.1435,"utility_provider":"Public Service Electric & Gas (PSE&G)","tax_incentives":"","natural_hazard_zone":"FEMA SFHA: No; likely Zone X/low flood risk"},"597":{"description":"Cogent Data Center - Hackensack is an operational Cogent-operated colocation/data center at 280 State Street, Hackensack, NJ, offering Internet, VPN, Transport, and Colocation services. The facility lists 7,720 sq ft of space.","verified_status":"operational","power_capacity_mw":0.75,"total_sqft":7720,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Hackensack","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Cogent","num_buildings":1,"campus_acres":0.28,"utility_provider":"PSE&G","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate)"},"598":{"description":"ICE US Liquidity Center (USLC) is Intercontinental Exchange’s purpose‑built data center in Mahwah, New Jersey that hosts NYSE markets and offers low‑latency colocation. The facility is approximately 398,000 sq ft with about 28 MW of total site power.","verified_status":"operational","power_capacity_mw":28,"total_sqft":398000,"year_online":"2010","construction_update":"","recent_news":"Jan 6, 2026: ICE reported record 2025 colocation milestones, noting billable kilowatt-hours increased 50% and capacity has more than doubled since 2020.","notable_tenants":"","verified_name":"US Liquidity Center (USLC)","verified_operator":"ICE Data Services (Intercontinental Exchange, Inc.)","verified_owner":"","cooling_type":"unknown","tier_level":"Tier IV-guided design; 99.995% availability (no public Uptime certification).","fiber_providers":"Carrier-neutral interconnection with ICE Global Network (IGN) present.","num_buildings":1,"campus_acres":0,"utility_provider":"Rockland Electric Company (Orange & Rockland)","tax_incentives":"","natural_hazard_zone":"FEMA flood zones AE, X, and 0.2% annual-chance flood hazard."},"599":{"description":"Digital Realty EWR12 is an operational colocation data center at 365 South Randolphville Road in Piscataway, NJ, operated by Digital Realty within its Digital Piscataway campus along major fiber routes about 37 miles from Manhattan. The facility is approximately 351,000 square feet.","verified_status":"operational","power_capacity_mw":34,"total_sqft":351000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Centersquare (EWR3-B, formerly Cyxtera NJ4) leases space from Digital Realty at 365 S. Randolphville Rd; carrier networks present include Verizon, Zayo, XO Communications, and Cross River Fiber. No named end-customer anchor tenants are publicly disclosed.","verified_name":"Digital Realty EWR12","verified_operator":"Digital Realty","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III equivalent (concurrently maintainable)","fiber_providers":"Zayo","num_buildings":3,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"outside 500-year flood zone (low flood risk)"},"600":{"description":"Digital Fortress Piscataway (PNJ) is an operational, carrier‑neutral colocation data center at 201B Centennial Ave, Piscataway, NJ, operated by Digital Fortress, with roughly 96.5k sq ft and 1.8 MW UPS N+1 on-site, and 5 MW fully built‑out capacity.","verified_status":"operational","power_capacity_mw":5,"total_sqft":96573,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Piscataway, New Jersey Data Center (Digital Fortress)","verified_operator":"Digital Fortress","verified_owner":"Chirisa (Chirisa Investments / Chirisa Technology Parks)","cooling_type":"unknown","tier_level":"Tier III / Tier 3 equivalent; 2N critical systems","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"","natural_hazard_zone":""},"601":{"description":"DataBank SLC1 is an operational multi-tenant colocation and carrier-hotel facility at 179 E Social Hall Ave Suite #200 in downtown Salt Lake City, operated by DataBank; published specs list about 0.5 MW critical IT load and 10,610 sq ft of whitespace.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":10610,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank SLC1 - Downtown Salt Lake City","verified_operator":"DataBank","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; 40 onsite carriers","num_buildings":1,"campus_acres":0.45,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah sales/use tax exemption applies to ≥150,000 sq ft data centers built after July 1, 2016; SLC1 (10,610 sq ft) likely not eligible; no SLC1-specific incentive found.","natural_hazard_zone":"Seismic risk: Wasatch fault (Salt Lake City segment), M7 potential; FEMA flood zone not determined"},"602":{"description":"DataBank SLC2 – Granite Point is an operational, carrier‑neutral colocation data center operated by DataBank at 14944 S Pony Express Rd in Bluffdale, Utah, on the 23‑acre Granite Point Campus. It offers 43,820 IT square feet and a 3.25 MW critical IT load.","verified_status":"operational","power_capacity_mw":3.25,"total_sqft":43820,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SLC2 - Granite Point Data Center","verified_operator":"DataBank","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier II","fiber_providers":"carrier-neutral; 41 onsite carriers; examples: Hurricane Electric, Comcast","num_buildings":5,"campus_acres":23,"utility_provider":"","tax_incentives":"Utah qualified data center sales/use tax exemption for owners/operators/clients on qualifying equipment purchases.","natural_hazard_zone":"Seismic hazard (Wasatch Fault; liquefaction susceptibility in Wasatch Front valleys); FEMA flood zone not determined."},"603":{"description":"DataBank SLC3 (Granite Point) is an operational colocation data center at 14926 S Pony Express Rd, Bluffdale, Utah, on DataBank’s Granite Point Campus. It offers about 7 MW of critical IT load and roughly 55,780 sq ft of IT space within a 95,000 sq ft purpose-built facility.","verified_status":"operational","power_capacity_mw":7,"total_sqft":95000,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank SLC3 – Granite Point Data Center","verified_operator":"DataBank","verified_owner":"","cooling_type":"unknown","tier_level":"Tier II (design/marketing; no public Uptime certification cited)","fiber_providers":"carrier-neutral; 39 onsite carriers; carriers include Lumen (Level 3)","num_buildings":5,"campus_acres":23,"utility_provider":"","tax_incentives":"Utah sales and use tax exemption for qualified data center owners/operators/occupants and qualifying equipment (subject to program requirements).","natural_hazard_zone":"Outside the 100-year floodplain; regional seismic risk (Wasatch Front)."},"604":{"description":"DataBank SLC4 – Granite Point is an operational DataBank colocation data center at 14860 S Pony Express Rd in Bluffdale, Utah, the campus’s third facility, leveraging a private substation for high‑density colocation.","verified_status":"operational","power_capacity_mw":3.67,"total_sqft":34000,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank SLC4 – Granite Point Data Center","verified_operator":"DataBank","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier II","fiber_providers":"carrier-neutral; 41 onsite carriers; Cogent","num_buildings":5,"campus_acres":23,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah data center sales-tax exemption for qualifying equipment; ~7.25% savings for customers at the Salt Lake/Bluffdale facilities.","natural_hazard_zone":"low risk"},"605":{"description":"DataBank SLC5 is an operational colocation data center operated by DataBank on its Granite Point Campus at 14850 S Pony Express Rd in Bluffdale, Utah. The facility opened in 2020.","verified_status":"operational","power_capacity_mw":10,"total_sqft":49180,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SLC5 Granite Point Data Center","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":5,"campus_acres":23,"utility_provider":"","tax_incentives":"Utah data center sales-tax exemption for qualified owners, operators, and clients.","natural_hazard_zone":"Seismic risk (Wasatch Fault); FEMA flood zone not determined"},"606":{"description":"DataBank SLC6 – Granite Point is a DataBank-operated colocation data center at 14870 S Pony Express Road in Bluffdale, Utah, on the company’s Granite Point campus, featuring 88,250 IT square feet, 22MW critical IT load, and 41 onsite carriers.","verified_status":"operational","power_capacity_mw":22,"total_sqft":88250,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank SLC6 - Granite Point","verified_operator":"DataBank","verified_owner":"DigitalBridge (lead investor) with co-investors Swiss Life AM, EDF Invest, IMCO, AustralianSuper, and TJC","cooling_type":"hybrid","tier_level":"Tier III equivalent design","fiber_providers":"carrier-neutral; 41 onsite carriers","num_buildings":5,"campus_acres":23,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah sales tax exemption for qualified data center owners, operators, and clients on eligible equipment purchases.","natural_hazard_zone":"Seismic zone (Wasatch Fault)"},"607":{"description":"Flexential Salt Lake City - Downtown is an operational Flexential colocation data center at 572 South Delong St, Suite 100, Salt Lake City, UT, featuring a 44,550 sq ft footprint and 2.65 MW of critical power.","verified_status":"operational","power_capacity_mw":2.65,"total_sqft":44550,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Salt Lake City - Downtown (SLC04)","verified_operator":"Flexential","verified_owner":"Level 3","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah state sales and use tax exemption is available for qualifying enterprise data centers; no site-specific local abatement identified.","natural_hazard_zone":"Seismic/liquefaction risk (Wasatch Front, Salt Lake County)"},"608":{"description":"Flexential Salt Lake City - Fair Park is an operational Flexential colocation data center at 118 South 1000 West, Salt Lake City, UT, offering a 22,539 sq ft footprint and 490 kW of critical IT power with robust carrier and cloud connectivity.","verified_status":"operational","power_capacity_mw":0.49,"total_sqft":22539,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Salt Lake City - Fair Park Data Center","verified_operator":"Flexential","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah’s statewide sales/use tax exemption requires at least 150,000 sq ft; at 22,539 sq ft, this facility does not appear to qualify.","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard); seismic exposure along the Wasatch Front."},"609":{"description":"Flexential Salt Lake City - Millcreek is an operational Flexential data center at 3949 South 200 East, Suite B1, in the Salt Lake City/Millcreek area, featuring a 36,000-square-foot footprint and 1.92 MW of critical power with 2N UPS and N+1 cooling. The site offers carrier and cloud connectivity options.","verified_status":"operational","power_capacity_mw":1.92,"total_sqft":36000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Salt Lake City - Millcreek","verified_operator":"Flexential","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; XO Communications, Verizon Communications, and Zayo reported; broader access includes AT&T, Lumen, Zayo, Comcast, and Arelion","num_buildings":1,"campus_acres":1.37,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah offers a statewide sales/use-tax exemption for qualifying data centers; no facility-specific incentive or abatement confirmed.","natural_hazard_zone":"High regional seismic risk (Wasatch Front); FEMA NRI High risk rating for Salt Lake City; site-specific FEMA flood zone not confirmed."},"610":{"description":"Flexential’s Salt Lake City – South Valley is an operational colocation data center at 7202 South Campus View Drive in West Jordan, Utah, with a 30,512‑square‑foot data center footprint and 1.2 MW of capacity. It offers secure colocation along with cloud, connectivity, and disaster‑recovery services.","verified_status":"operational","power_capacity_mw":1.2,"total_sqft":30512,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Salt Lake City - South Valley","verified_operator":"Flexential","verified_owner":"GI Partners","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; 29+ carriers including AT&T, Lumen, Zayo, Comcast, and Arelion.","num_buildings":1,"campus_acres":2.08,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah offers a sales and use tax exemption for qualifying data centers with a minimum 150,000 sq ft; at 30,512 sq ft, this facility is below the threshold and does not qualify.","natural_hazard_zone":"Seismic exposure: approximately seven miles west of the primary Wasatch Fault (moderate regional risk)."},"611":{"description":"Flexential SLC08 / Presidents (also known as Presidents/Stonebridge) is an operational Flexential colocation data center at 2282 Presidents Drive in the Salt Lake City–West Valley City area, Utah. Third‑party facility directories list it as active and operated by Flexential.","verified_status":"operational","power_capacity_mw":0.6,"total_sqft":21236,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Salt Lake (Presidents) Data Center (SLC08)","verified_operator":"Flexential","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 29+ carriers and service providers","num_buildings":0,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah sales and use tax exemption for qualifying enterprise data centers (generally ≥150,000 sq ft). No facility-specific award identified.","natural_hazard_zone":"Seismic risk (Wasatch/West Valley fault zone) and regional liquefaction hazard; FEMA flood-zone for this address not determined here."},"612":{"description":"EdgeConneX SLC01 is EdgeConneX’s operational edge data center at 2302 South President’s Dr., Suite A/B, West Valley City, UT, offering a 25,000 sq ft facility with 4,875 sq ft of raised floor. It provides carrier-neutral connectivity and services in the Salt Lake City market.","verified_status":"operational","power_capacity_mw":2,"total_sqft":25000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX SLC01","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; Arelion, Cloudflare, Cogent, Comcast, Comcast Business, Hurricane Electric, InterNexa, Lumen, NexGen Networks, SLIX, Sumo Fiber, WhiteSky, Xmission Utopia, Zayo","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah offers a statewide sales and use tax exemption for qualifying data centers ≥150,000 sq ft; at 25,000 sq ft, this facility does not qualify. No facility-specific incentives identified.","natural_hazard_zone":"Seismic hazard near the Wasatch/West Valley Fault Zones with elevated liquefaction risk; FEMA flood zones in West Valley City commonly include Zone AE and Zone X (parcel-specific flood zone not confirmed)."},"613":{"description":"Aligned SLC-01 is an operational wholesale/colocation data center operated by Aligned Data Centers at 3333 W 9000 S, West Jordan, Utah, on its Salt Lake City campus. The facility is about 300,000 sq ft with roughly 34 MW of capacity.","verified_status":"operational","power_capacity_mw":34,"total_sqft":300000,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aligned SLC-01 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"ALIGNED ENERGY DATA CENTERS (SLC) PROPCO, LLC","cooling_type":"air-cooled","tier_level":"Designed to Tier III standards","fiber_providers":"","num_buildings":3,"campus_acres":55,"utility_provider":"","tax_incentives":"Utah sales and use tax exemptions for large data centers (≥150,000 sq ft); Aligned notes Salt Lake City customers can leverage incentives for significant savings.","natural_hazard_zone":"Seismic: outside city’s noted moderate-to-high liquefaction corridor (between Jordan River and ~2200 W); FEMA flood zone: not determined from provided excerpts."},"614":{"description":"A four‑phase wholesale/colocation campus in West Jordan, Utah operated by Novva Data Centers; unveiled as a 1.5 million sq ft flagship site and most recently described alongside financing as a flagship 175MW build-out.","verified_status":"operational","power_capacity_mw":175,"total_sqft":1500000,"year_online":"2023","construction_update":"Financing secured Mar 2025 to complete the flagship campus; Phase 2 (started Dec 2023) and Phase 3 (started Jan 2024) are underway, with full completion expected in 2026; Phase 2 is profiled at 75MW and ~318,000 sq ft targeting 2026.","recent_news":"","notable_tenants":"","verified_name":"Novva Utah Data Center (West Jordan Campus)","verified_operator":"Novva Data Centers","verified_owner":"VAST SLC CAMPUS, LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Zayo; carrier-neutral","num_buildings":3,"campus_acres":100,"utility_provider":"Rocky Mountain Power (PacifiCorp)","tax_incentives":"Utah sales and use tax exemptions for qualifying enterprise data centers (including machinery/equipment and repair/replacement parts).","natural_hazard_zone":"Seismic exposure: West Jordan is approximately seven miles west of the primary Wasatch Fault seismic zone; flood zone not specifically identified for this parcel."},"615":{"description":"XMission Data Center is an operational, XMission-operated, carrier‑neutral colocation facility at 51 East 400 South in downtown Salt Lake City, offering redundant power and bandwidth. XMission’s technical specifications cite a 2 MW transformer and a 10,000 sq ft facility with dedicated raised‑floor colocation space.","verified_status":"operational","power_capacity_mw":2,"total_sqft":10000,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"XMission Data Center","verified_operator":"XMission","verified_owner":"","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"","natural_hazard_zone":"Seismic zone (Wasatch Fault); FEMA Zone X likely (low flood risk)"},"616":{"description":"Fibernet ORM1 is Fibernet’s operational colocation/data center at 1145 S 800 East in Orem, Utah, totaling 40,000 sq ft with access to 1.5 MW of power. Reporting notes the site was built/online in 2002.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":40000,"year_online":"2002","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fibernet ORM1 Data Center","verified_operator":"Fibernet Corp.","verified_owner":"","cooling_type":"chilled water","tier_level":"Tier IV (third-party listing; no Uptime certification found)","fiber_providers":"carrier-neutral; American Fork City, CentraCom, Lumen, Comcast, Zayo, UTOPIA Fiber, Verizon, Hurricane Electric","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"","natural_hazard_zone":"Seismic exposure: Wasatch Fault Zone; FEMA flood zone unknown for 1145 S 800 E"},"617":{"description":"Lumen Salt Lake City 2 is an operational Lumen Technologies colocation/telecom data center at 5035 Harold Gatty Drive in Salt Lake City, Utah, totaling 35,826 sq ft with about 10,370 sq ft of raised-floor space and a listed 7.5 MW total power capacity.","verified_status":"operational","power_capacity_mw":7.5,"total_sqft":35826,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Salt Lake City 2","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multiple fiber providers","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"","natural_hazard_zone":"Seismic risk: Salt Lake Valley/Wasatch fault earthquake exposure"},"618":{"description":"Carrier-neutral telecom colocation data center operated by Lumen Technologies at 3670 W 500 S in Salt Lake City; public listings label this site as Lumen Salt Lake City 3 or 4 and show it is operational, with a total building size of 35,826 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":35826,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Salt Lake City 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah sales/use‑tax exemption exists for qualifying enterprise data centers (SB3002; often cited as applying to 150,000+ sq ft), but applicability to this site is not confirmed. Utah’s Enterprise Zone Tax Credit Program concludes in 2027 and current designations have expired.","natural_hazard_zone":"Seismic/liquefaction exposure; exact FEMA flood zone for 3670 W 500 S not determined."},"619":{"description":"Corrected: 572 South Delong Street is Flexential’s Salt Lake City – Downtown colocation data center, not Lumen Salt Lake City 3. Lumen SLC3 is located at 3670 W 500 S in Salt Lake City.","verified_status":"operational","power_capacity_mw":2.65,"total_sqft":44550,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Salt Lake City - Downtown","verified_operator":"Flexential","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral / multi-carrier","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power (PacifiCorp)","tax_incentives":"","natural_hazard_zone":"Seismic hazard: Wasatch/West Valley fault zones; FEMA flood risk undetermined"},"620":{"description":"Lumen Ogden 1 is an operational telecom/colocation data center operated by Lumen Technologies at 526 West 17th Street, Ogden, Utah.","verified_status":"operational","power_capacity_mw":0,"total_sqft":20000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Ogden 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"Designed to meet Tier III standards; Uptime Institute certification not found","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah statewide framework: sales/use-tax exemption for qualifying data centers and customers; no site-specific abatement found.","natural_hazard_zone":"Seismic risk: Wasatch Front (Weber segment of the Wasatch fault zone); parcel-level FEMA flood zone not determined."},"621":{"description":"Verizon SZCXUT is a Verizon-operated telecom/colocation data center at 8871 Sandy Parkway, Sandy, UT 84070, identified by Inflect and Baxtel. The site corresponds to the former XO Communications Salt Lake City facility at the same address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon SZCXUT (8871 South Sandy)","verified_operator":"Verizon","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"","natural_hazard_zone":"Seismic exposure (Wasatch Fault zone); FEMA flood zone not determined"},"622":{"description":"SenaWave operates a small colocation/data center at 3047 Parkway Blvd in West Valley City (Salt Lake City area), offering data‑center rack space and connectivity services. Multiple industry directories list the same address and facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SenaWave Salt Lake City","verified_operator":"SenaWave","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"SenaWave-provided connectivity (up to 10 Gbps)","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah sales and use tax exemption exists for qualifying data centers (≥150,000 sq ft); no facility-specific incentive identified.","natural_hazard_zone":"Seismic hazard: West Valley fault zone (Wasatch Front) and potential liquefaction."},"623":{"description":"Oracle West Jordan (Project Sequoia) is a secured, hyperscale data center operated by Oracle America, Inc., located at 6136 West 10120 South in West Jordan, Utah.","verified_status":"operational","power_capacity_mw":0,"total_sqft":250910,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Oracle West Jordan","verified_operator":"Oracle America, Incorporated","verified_owner":"Oracle America, Inc.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":51.07,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah offered a state tax rebate of more than $15 million, and local government incentives were expected to total nearly $10 million.","natural_hazard_zone":"Regional seismic exposure (Wasatch Fault area); FEMA flood zone undetermined from provided sources."},"624":{"description":"eBay Topaz SLC01 is eBay’s first wholly owned enterprise data center in South Jordan, Utah, opened in 2010 and operated by eBay. Phase I is a two‑story ~240,000 sq ft facility with three 20,000 sq ft data halls and about 7.2 MW of IT capacity, supported by an on‑site substation scalable to ~30 MW.","verified_status":"operational","power_capacity_mw":7.2,"total_sqft":240000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"eBay Topaz SLC01","verified_operator":"eBay Inc.","verified_owner":"eBay Inc.","cooling_type":"hybrid","tier_level":"Tier IV-equivalent design (not Uptime-certified)","fiber_providers":"Lumen (in-building); Zayo (nearby)","num_buildings":0,"campus_acres":60.46,"utility_provider":"","tax_incentives":"Historical: EDTIF incentive discussion for an eBay Utah data center project (2008); a later $38.2M incentive applied to Draper expansion (2011), not South Jordan; Topaz solar project referenced tax incentives.","natural_hazard_zone":"Wasatch Fault seismic risk; local hazards include earthquakes and floods"},"625":{"description":"Edged Energy is developing a wholesale colocation data center campus (Project Inabi) at 600 W 14600 S in Bluffdale, Utah, on a 22.91-acre site. The project is progressing through city approvals and is aligned with Edged’s waterless cooling design approach.","verified_status":"planned","power_capacity_mw":75,"total_sqft":213886,"year_online":"unknown","construction_update":"Dec 6, 2023: Bluffdale Planning Commission approved the Edged Data Center site plan for 22.91 acres at 600 W 14600 S, subject to conditions. June 5, 2024: City materials addressed Project Inabi General Plan Land Use and Zoning Map Amendments for 600 W 14600 S (0.89 acres).","recent_news":"","notable_tenants":"","verified_name":"Edged Energy SLC01-1 (Edged Salt Lake City)","verified_operator":"Edged Energy","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":22.91,"utility_provider":"","tax_incentives":"Utah sales and use tax exemption for qualifying data centers (SB3002; Utah Code 59-12-104); claimed via TC-721 exemption certificate.","natural_hazard_zone":"Seismic hazard (Wasatch Front) and local flood-prone areas near Rose Creek/Jordan River in Bluffdale."},"626":{"description":"Aligned SLC-03 is Aligned Data Centers’ third hyperscale/wholesale build-to-scale data center on its 55-acre West Jordan campus at 3333 W 9000 S; the two-story, 80 MW facility earned a Three Green Globes rating for new construction.","verified_status":"operational","power_capacity_mw":80,"total_sqft":480000,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aligned SLC-03 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"ALIGNED ENERGY DATA CENTERS (SLC) PROPCO, LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; on-net: Cogent, Comcast, FirstDigital Telecom, Lumen, PacketFabric, UTOPIA Fiber, Zayo, Verizon","num_buildings":3,"campus_acres":58.649,"utility_provider":"","tax_incentives":"Utah data center sales and use tax exemption (≥150,000 sq ft; retroactive to July 1, 2016) available; Aligned highlights substantial customer savings.","natural_hazard_zone":"seismic hazard (proximity to the Wasatch Fault zone)"},"627":{"description":"EdgeConneX SLC01 is an EdgeConneX-operated data center at 2302 South President’s Dr., Suite A/B, West Valley City, UT 84120, serving the Salt Lake City market. The facility totals 25,000 sq ft (4,875 sq ft raised floor) with 500 kW N+1 power, scalable to 2 MW.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":25000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX SLC01","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III design (concurrently maintainable)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"Not eligible for Utah’s data center sales and use tax exemption (threshold ≥150,000 sq ft). 2026 Executive Order by Governor Cox established a higher bar for data center development in Utah.","natural_hazard_zone":"High seismic risk (Wasatch and West Valley fault zones)"},"628":{"description":"Google Henderson Data Center 1 is an owned-and-operated hyperscale data center at 560 W Warm Springs Rd in Henderson, Nevada. Public reports describe a roughly $600 million, ~750,000‑sq‑ft facility that came online in 2020.","verified_status":"operational","power_capacity_mw":0,"total_sqft":750000,"year_online":"2020","construction_update":"","recent_news":"June 2026: Henderson officials considered a 180‑day pause on accepting new data‑center applications (temporary moratorium) to study impacts, affecting future approvals citywide.","notable_tenants":"","verified_name":"Google Henderson data center","verified_operator":"Google","verified_owner":"Design LLC (Google subsidiary). Land acquired/developer-of-record: Jasmine Development LLC.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":64,"utility_provider":"NV Energy","tax_incentives":"Nevada state abatements of about $25–25.2 million over 20 years for the Henderson data center project.","natural_hazard_zone":"Likely FEMA Zone X (minimal flood hazard)"},"629":{"description":"Switch LAS VEGAS 2 is a Switch-operated colocation data center at 2475 S Arden St in Las Vegas, offering colocation with cloud connectivity options.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Switch LAS VEGAS 2","verified_operator":"Switch","verified_owner":"N V L A S N A P 2 L L C","cooling_type":"hybrid","tier_level":"Switch Tier 5® Platinum (proprietary standard); no Uptime Institute Tier certification published for LAS VEGAS 2","fiber_providers":"","num_buildings":9,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements: 75% abatement of local business personal property tax and partial abatement of sales and use tax on qualifying data center equipment.","natural_hazard_zone":""},"630":{"description":"Switch LAS VEGAS 3 is a Switch-operated colocation data center at 4485 E Sahara Ave in Las Vegas, Nevada, and is part of the company’s Las Vegas Core Campus, which is marketed as Tier 5 Platinum and planned to reach up to 495 MW across the campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Switch LAS VEGAS 3","verified_operator":"Switch","verified_owner":"DigitalBridge (55.8%), IFM Investors (37.2%), Switch management (7.0%)","cooling_type":"unknown","tier_level":"Tier 5 (Switch proprietary); Tier IV achieved on other Las Vegas facilities (e.g., SUPERNAP 8)","fiber_providers":"Carrier-neutral with 50+ providers; Telia Carrier on campus","num_buildings":0,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements: maximum 2% use tax on qualifying data center equipment; additional local personal property tax abatements available per program terms.","natural_hazard_zone":"Low risk — minor flood risk (ZIP 89104) and low–moderate seismic (Zone 2A)."},"631":{"description":"Switch LAS VEGAS 4 (also known as SuperNAP 4) is an operational colocation data center operated by Switch at 4495 E Sahara Ave in Las Vegas and is part of the company’s Las Vegas Core Campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":53760,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No LAS VEGAS 4-specific tenants are publicly listed. Switch names clients including Amazon Web Services, eBay, and Marvel for its Las Vegas Core Campus.","verified_name":"Switch LAS VEGAS 4 / SUPERNAP 4","verified_operator":"Switch","verified_owner":"NV L A S 4 LLC","cooling_type":"air-cooled","tier_level":"Tier 5 Platinum (Switch proprietary standard)","fiber_providers":"carrier-neutral; 50+ providers","num_buildings":1,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Eligible for Nevada data center abatements (e.g., sales/use tax reduced to 2% and up to 75% personal property tax abatement for qualifying projects).","natural_hazard_zone":""},"632":{"description":"Switch LAS VEGAS 5 is a Switch-operated colocation data center at 4489 E Sahara Ave in Las Vegas, part of the company’s Las Vegas Core Campus and listed as operational.","verified_status":"operational","power_capacity_mw":0,"total_sqft":14980,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No LAS VEGAS 5–specific tenants are publicly identified. Switch has named campus-wide clients including Amazon Web Services, eBay, Marvel, Shutterfly, FOX, Amgen, Lionsgate, Zappos, Intuit, DreamWorks, Intel, MGM, HP, State of Nevada, PayPal, Hulu, Machine Zone, Boeing, Warner Brothers, NASA and Verizon (campus-level, not specific to LAS VEGAS 5).","verified_name":"Switch LAS VEGAS 5","verified_operator":"Switch","verified_owner":"","cooling_type":"hybrid","tier_level":"Switch Tier 5 Platinum (proprietary standard; no Uptime listing cited for LAS VEGAS 5)","fiber_providers":"carrier-neutral; PacketFabric","num_buildings":1,"campus_acres":1,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements: potential partial abatements of sales/use and personal property taxes for qualifying data centers; Switch advertises up to a 2% use tax cap and personal property tax abatements for colocated customers in Nevada.","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard)"},"633":{"description":"Switch LAS VEGAS 6 is a Switch-operated colocation data center at 4475 E Sahara Ave in Las Vegas. Public listings confirm the site and use as a communication/computer center, with a small 3,200 sq ft building and no facility-specific power capacity disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3200,"year_online":"2008","construction_update":"","recent_news":"No LV6-specific news in the last six months. Separately on June 17, 2026, Clark County approved a nearly 57,000 sq ft Switch data center at its southwest valley campus near Warm Springs Rd/Decatur Blvd (not the Sahara Ave site).","notable_tenants":"","verified_name":"Switch LAS VEGAS 6","verified_operator":"Switch","verified_owner":"DigitalBridge and IFM Investors","cooling_type":"evaporative","tier_level":"Tier 5 Platinum (Switch proprietary); no Uptime certification published for LAS VEGAS 6 (SUPERNAP 8 on the campus holds Uptime Tier IV CF).","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.68,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements: maximum 2% sales/use tax on eligible equipment purchases; 75% abatement of local personal property tax; commonly a 15-year term subject to program eligibility and approvals.","natural_hazard_zone":"Minor flood risk (ZIP 89104), moderate seismic risk; no hurricane exposure (inland desert)."},"634":{"description":"Switch LAS VEGAS 7 (SUPERNAP 7) is an operational, purpose-built Switch colocation data center at 7135 S Decatur Boulevard on the company’s Las Vegas Core campus; it totals about 515,047 sq ft and is cited with 100 MW of power capacity.","verified_status":"operational","power_capacity_mw":100,"total_sqft":515047,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"Intel Cherry Creek supercomputer (awarded to UNLV); Contegix Las Vegas (leases space in the Switch Las Vegas 7 building).","verified_name":"Switch LAS VEGAS 7","verified_operator":"Switch","verified_owner":"SWITCH LTD","cooling_type":"hybrid","tier_level":"Switch Tier 5 Platinum (no LV7-specific Uptime certification found; SUPERNAP 8 achieved Uptime Tier IV CF)","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Nevada data center abatements: 2% sales/use tax and 75% personal property tax abatement (10 or 20 years).","natural_hazard_zone":""},"635":{"description":"Switch LAS VEGAS 9 (formerly SUPERNAP LAS VEGAS 9) is a Switch-operated colocation data center within the Las Vegas Core Campus, notable for its large-scale footprint and up to 50 MVA of power capacity.","verified_status":"operational","power_capacity_mw":50,"total_sqft":471248,"year_online":"2015","construction_update":"","recent_news":"No LAS VEGAS 9–specific recent news found. Related campus-area development: on June 17, 2026, Clark County approved a separate ~57,000‑sq‑ft Switch data center near the Core Campus after public discussion of power, water, landscaping, and future regulation.","notable_tenants":"No LAS VEGAS 9–specific anchor tenant publicly confirmed. Campus-level examples at Switch’s Las Vegas Core Campus include CoreWeave and FedEx; Switch’s published client list includes AWS, eBay, Intel, MGM, HP, State of Nevada, PayPal, Hulu, Boeing, NASA, and Verizon.","verified_name":"Switch LAS VEGAS 9 (formerly SUPERNAP LAS VEGAS 9)","verified_operator":"Switch","verified_owner":"Switch (private), owned by funds managed by DigitalBridge and IFM Investors","cooling_type":"hybrid","tier_level":"Switch Tier 5 Platinum standard; no public Uptime certification cited specifically for LAS VEGAS 9","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements: sales/use tax reduced to 2% and 75% personal property tax abatement for 10–20 years (subject to qualification).","natural_hazard_zone":"Low flood risk (FEMA Zone X likely); outside 100‑year floodplain implied by Switch siting standards"},"636":{"description":"Switch LAS VEGAS 10 is an operational Switch colocation data center on the Las Vegas Core Campus at 7375 Lindell Road. Opened in June 2017, it adds nearly 350,000 sq ft and up to 40 MW of capacity to the campus.","verified_status":"operational","power_capacity_mw":40,"total_sqft":343436,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"No anchor tenant is publicly confirmed for LAS VEGAS 10. A notable campus-level customer is FedEx, which signed a 10-year agreement for Switch to host its western U.S. data center (2.5 MW in year one); the specific building is not disclosed.","verified_name":"Switch LAS VEGAS 10","verified_operator":"Switch","verified_owner":"NV LAS N A P 10 LLC (c/o Switch Ltd.)","cooling_type":"hybrid","tier_level":"Switch Tier 5 Platinum (proprietary); campus includes SUPERNAP 8 with Uptime Institute Tier IV Gold for Operations","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":13.18,"utility_provider":"NV Energy (distribution); retail supply via open market after 2016 exit","tax_incentives":"Nevada data center abatements: maximum 2% use tax and partial personal‑property tax abatement for qualifying colocated businesses; eligibility via GOED data center program (10‑ or 20‑year abatements if thresholds are met).","natural_hazard_zone":"FEMA Flood Zone X (minimal flood hazard)"},"637":{"description":"Switch LAS VEGAS 11 is a purpose-built colocation data center operated by Switch at 7380 Lindell Road in Las Vegas, part of the company’s Las Vegas CORE campus. Public profiles list it as commissioned/operational and approximately 343,436 square feet.","verified_status":"operational","power_capacity_mw":0,"total_sqft":343436,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Switch LAS VEGAS 11","verified_operator":"Switch","verified_owner":"N V L A S N A P 11 L L C","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral; Switch SUPERLOOP","num_buildings":1,"campus_acres":16.99,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements: sales/use tax reduced to 2% and 75% personal property tax abatement for 10 or 20 years (GOED-administered, subject to approval).","natural_hazard_zone":"FEMA Flood Zone C/X (minimal flood hazard)"},"638":{"description":"Switch LAS VEGAS 14 is a Switch-operated colocation data center at 5680 Badura Ave in the Las Vegas/Enterprise area and is part of the company’s Las Vegas Core exascale ecosystem, marketed as Tier 5 Platinum within a campus planned for up to 495 MW.","verified_status":"operational","power_capacity_mw":0,"total_sqft":214000,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Switch LAS VEGAS 14","verified_operator":"Switch","verified_owner":"NV LASNAP 14 LLC","cooling_type":"hybrid","tier_level":"Tier 5\u0000ae Platinum (proprietary standard)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":8.42,"utility_provider":"NV Energy","tax_incentives":"Nevada abatements: maximum 2% sales/use tax on qualifying purchases and 75% reduction in personal property tax (subject to qualification).","natural_hazard_zone":"Minor flood risk; seismic exposure (active faults in Clark County)."},"639":{"description":"Switch LAS VEGAS 15 is an operational Switch colocation data center at 5660 West Badura Avenue in the company’s Las Vegas “Core” campus (some listings show 6050 Badura Avenue). It is part of Switch’s Tier 5 campus, which is planned to reach up to 495 MW upon completion.","verified_status":"operational","power_capacity_mw":0,"total_sqft":300000,"year_online":"unknown","construction_update":"","recent_news":"No LV15-specific updates found in the last six months. Related campus-area news: in mid-June 2026, Clark County advanced approvals for a nearly 57,000-sq-ft Switch data center near Warm Springs/Decatur amid some opposition; the project is not identified as LAS VEGAS 15.","notable_tenants":"","verified_name":"Switch LAS VEGAS 15","verified_operator":"Switch","verified_owner":"Switch (private; controlled by DigitalBridge and IFM Investors following the 2022 take-private)","cooling_type":"hybrid","tier_level":"Switch Tier 5 Platinum (proprietary; exceeds Tier IV). Some earlier Core Campus facilities achieved Uptime Institute Tier IV Design Certification.","fiber_providers":"carrier-neutral","num_buildings":11,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements: 75% personal property tax abatement and sales/use tax rate reduced to 2% for 10 or 20 years (applicable to qualifying Switch LAS VEGAS customers).","natural_hazard_zone":"low risk"},"640":{"description":"Switch Armory Building 1 is a planned Switch colocation data-center building at 9380 S Decatur Blvd, Enterprise, Nevada, within a proposed three-building “Switch Armory Campus” of roughly 52.5 acres. Public listings characterize the project as proposed/planned, with no building-level capacity or tenants disclosed.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Planned; no construction start or online date posted. Latest public milestones: Enterprise Town Advisory Board design-review agenda on Apr 1, 2026 and Clark County Zoning Commission docketing of ZC-26-0103 on Apr 8, 2026.","recent_news":"In the last six months, the site’s cases were docketed in Clark County: an Enterprise Town Advisory Board agenda on Apr 1, 2026 listed a design review for a data center with an electric substation, and the Clark County Zoning Commission’s Apr 8, 2026 agenda included zone-change case ZC-26-0103 for Decatur Silverado Industrial, LLC.","notable_tenants":"","verified_name":"Switch Armory Campus - Building 1","verified_operator":"Switch","verified_owner":"I 15 Mountain, LLC; Decatur Silverado Industrial, LLC","cooling_type":"hybrid","tier_level":"Tier 5 (proprietary; not Uptime-certified)","fiber_providers":"carrier-neutral; 50+ providers","num_buildings":3,"campus_acres":52.5,"utility_provider":"NV Energy","tax_incentives":"Nevada data-center abatements under NRS 360.754: 75% personal-property tax abatement and sales/use tax reduced to 2% for 10 or 20 years if requirements and GOED approval are met; no Armory-specific award found.","natural_hazard_zone":""},"641":{"description":"Flexential Las Vegas - North is an operational colocation data center at 3330 East Lone Mountain Road in North Las Vegas offering a 111,240 sq ft footprint and 9 MW of power. Formerly ViaWest Lone Mountain, it was online by December preceding its 2013 grand opening and was promoted as a Tier IV Design Certified colocation facility.","verified_status":"operational","power_capacity_mw":9,"total_sqft":111240,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"HMS (announced October 2012 as anchor tenant for the ViaWest Lone Mountain facility). No current tenant roster is publicly disclosed.","verified_name":"Flexential Las Vegas - North data center","verified_operator":"Flexential","verified_owner":"Operating Engineers Funds","cooling_type":"hybrid","tier_level":"Uptime Institute Tier IV Design Certification (design)","fiber_providers":"carrier-neutral; on-net: AT&T, Lumen, Zayo, Comcast, Arelion; others available via the carrier-neutral meet-me ecosystem","num_buildings":1,"campus_acres":6.39,"utility_provider":"NV Energy","tax_incentives":"Nevada Data Center Tax Abatement program (supports qualifying clients; benefits include up to 75% personal property tax abatement and sales/use tax reduced to 2% for 10–20 years, subject to program requirements).","natural_hazard_zone":"Regional hazards: extreme heat and seismic risk; no hurricane exposure. FEMA parcel flood zone not confirmed."},"642":{"description":"Flexential Las Vegas - Downtown is an operational colocation data center operated by Flexential at 304 East Carson Avenue, Suite 370, Las Vegas, NV. The official site lists a 33,135-square-foot data center footprint and 1.37 MW of critical power.","verified_status":"operational","power_capacity_mw":1.37,"total_sqft":33135,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Las Vegas - Downtown data center","verified_operator":"Flexential","verified_owner":"DROCK 3RD STREET LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.71,"utility_provider":"NV Energy","tax_incentives":"Nevada Data Center Tax Abatement program available: 75% personal property tax abatement and sales/use tax reduced to 2% for 10 or 20 years if qualified.","natural_hazard_zone":"FEMA Flood Zones B/X (moderate to low flood hazard)"},"643":{"description":"EdgeConneX LAS01 (EDCLAS01) is an operational edge colocation data center operated by EdgeConneX at 1541 East Pama Lane in Las Vegas, purpose-built and located to optimize low‑latency reach in the Las Vegas market.","verified_status":"operational","power_capacity_mw":0.75,"total_sqft":24400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No anchor tenant or single major customer is publicly disclosed. On-net networks/interconnection at this site include Zayo, Lumen (Level 3), and Cox; Cloudflare lists EdgeConneX LAS01 as a CNI location; and Vegas-IX operates a node at 1541 Pama Lane.","verified_name":"EdgeConneX Las Vegas (LAS1 / EDCLAS01)","verified_operator":"EdgeConneX","verified_owner":"EDGECONNEX L V HOLDINGS L L C","cooling_type":"unknown","tier_level":"Concurrently maintainable design (no public Uptime certification cited)","fiber_providers":"carrier-neutral; Zayo, Lumen (Level 3), Cox","num_buildings":1,"campus_acres":1.44,"utility_provider":"NV Energy","tax_incentives":"","natural_hazard_zone":""},"644":{"description":"DataBank LAS1 is an operational colocation and interconnection data center at 7185 Pollock Drive in Las Vegas, operated by DataBank. It offers about 57,364 raised square feet, 3.35 MW of critical IT load, and connectivity from a dozen onsite carriers.","verified_status":"operational","power_capacity_mw":3.35,"total_sqft":57364,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank LAS1","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 5+ onsite carriers; redundant fiber entry paths","num_buildings":0,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Nevada offers data center tax abatements (e.g., up to 75% personal property tax abatement and reduced sales/use tax to ~2%) for qualifying projects; no LAS1-specific award identified.","natural_hazard_zone":"Outside 100-year and 500-year FEMA floodplains"},"645":{"description":"Fiberhub LAS1 is Fiberhub’s operational flagship Tier-III colocation data center and headquarters at 1110 Palms Airport Dr, Suite 110, Las Vegas, minutes from the airport and the Strip.","verified_status":"operational","power_capacity_mw":0,"total_sqft":7000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fiberhub LAS1","verified_operator":"Fiberhub (VegasNAP LLC)","verified_owner":"HARSCH INVESTMENT PPTYS-NV L L C","cooling_type":"unknown","tier_level":"Tier III (design standard; not Uptime-certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":2.47,"utility_provider":"NV Energy","tax_incentives":"No facility-specific abatement identified. Nevada offers data-center abatements (e.g., sales/use tax to 2% and 75% personal property) statewide.","natural_hazard_zone":"unknown"},"646":{"description":"TPx Communications Las Vegas is an operational telecom/colocation data center at 1181 Grier Dr, Las Vegas, NV, offering SSAE 18 audited colocation services and a listed footprint of 32,326 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":32326,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TPx Communications Las Vegas Data Center","verified_operator":"TPx Communications","verified_owner":"Lincoln Property Company","cooling_type":"unknown","tier_level":"","fiber_providers":"Multiple network carriers; redundant fiber paths","num_buildings":1,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"","natural_hazard_zone":""},"647":{"description":"ColoXchange Las Vegas is an operational colocation/hosting data center operated by ColoXchange at 3422 Neeham Road in North Las Vegas, Nevada, offering carrier-neutral colocation and related services with a 100% uptime SLA; industry listings show about 1.00 MW of capacity and 6,500 sq ft.","verified_status":"operational","power_capacity_mw":1,"total_sqft":6500,"year_online":"unknown","construction_update":"","recent_news":"No facility-specific expansion, new-tenant, or regulatory news in the last six months; a May 21, 2026 local report simply listed “ColoXchange Nevada” among existing North Las Vegas data centers.","notable_tenants":"Cirrrusnet International is publicly identified in a ColoXchange testimonial as a customer; no tenant specific to 3422 Neeham Rd is confirmed.","verified_name":"ColoXchange Las Vegas","verified_operator":"ColoXchange","verified_owner":"Colo X LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.52,"utility_provider":"NV Energy","tax_incentives":"Nevada offers data center tax abatements (partial abatement from personal property tax and sales/use tax) for qualifying projects.","natural_hazard_zone":"Moderate seismic risk (U.S. Seismic Zone 2A/2B); inland Nevada (no hurricane risk); parcel-specific FEMA flood zone requires MSC lookup."},"648":{"description":"Operational telecom/colocation data center at 2240 Corporate Cir, Henderson, NV, operated by Verizon Enterprise; also listed as ColoVegas/NocRoom at the same address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon: 2240 Corporate Cir Data Center","verified_operator":"Verizon (Verizon Enterprise / Verizon Business)","verified_owner":"Brentwood Green Valley LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements available to qualifying projects: 75% personal property tax abatement and sales/use tax reduced to 2% for 10 or 20 years, subject to approval.","natural_hazard_zone":""},"649":{"description":"ISP.Net DC1 is a colocation/telecom data center operated by ISP.Net at 2595 Fremont Street in Las Vegas, providing server hosting and colocation services from this facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"isp.net Data Center (DC1), 2595 Fremont Street","verified_operator":"ISP.Net (ISP Industries LLC)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements available statewide (eligibility-based), including 75% personal property tax abatement and sales/use tax reduced to 2% for 10 or 20 years; no ISP.Net-specific award identified.","natural_hazard_zone":"unknown"},"650":{"description":"Operational Lumen Technologies network colocation data center at 1 Aerojet Way North in North Las Vegas (formerly associated with Level 3), offering a 37,500 sq ft facility footprint and access to 3.0 MW of power.","verified_status":"operational","power_capacity_mw":3,"total_sqft":37500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Las Vegas 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (on-net)","num_buildings":1,"campus_acres":3.25,"utility_provider":"NV Energy","tax_incentives":"","natural_hazard_zone":"low risk; regional exposure to earthquakes, flooding, drought, and extreme heat"},"651":{"description":"Lumen Las Vegas 3 is a Lumen Technologies telecom/colocation facility located at 3944 E Silvestri Ln, Las Vegas, NV, listed by multiple directories as an active site. The property record for that address shows a 15,656 sqft building footprint.","verified_status":"operational","power_capacity_mw":0,"total_sqft":15656,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Las Vegas 3","verified_operator":"Lumen Technologies","verified_owner":"J G D SILVESTRI L L C","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; includes Lumen/tw telecom IP Transit","num_buildings":1,"campus_acres":0.82,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements available: sales/use tax reduced to 2% and 75% personal property tax abatement for 10–20 years (no site-specific award found).","natural_hazard_zone":"Minor flood risk (East Las Vegas area-level); FEMA zone not confirmed"},"652":{"description":"Contegix Las Vegas is a colocation data center operated by Contegix in Las Vegas, associated with Switch’s Core Campus at 7135 S Decatur Blvd. Host-building references indicate the LAS VEGAS 7/SUPERNAP 7 facility is about 515,047 sq ft with roughly 100 MW; Contegix’s suite-level capacity and area are not publicly disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"June 2026: Clark County approved items for a Switch data center expansion near Warm Springs Rd and Decatur Blvd; no construction update specific to Contegix’s space.","recent_news":"June 2026: Clark County approved zoning/development items for a Switch data center expansion in the southwest Las Vegas Valley near Warm Springs Rd and Decatur Blvd; no Contegix-specific update was mentioned.","notable_tenants":"","verified_name":"Contegix Las Vegas (leased colocation presence inside Switch LAS VEGAS 7 at 7135 S. Decatur Blvd, Las Vegas, NV)","verified_operator":"Contegix","verified_owner":"Switch, Inc. (building owner/operator); ultimate ownership by funds affiliated with DigitalBridge and an affiliate of IFM Investors","cooling_type":"unknown","tier_level":"Tier 5 Platinum (proprietary design standard; not an Uptime certification)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements potentially available to Switch LAS VEGAS colocations: maximum 2% use tax on qualified purchases and up to 75% abatement of personal property tax (subject to state eligibility requirements).","natural_hazard_zone":""},"653":{"description":"Roller Network Reno is a retail colocation data center operated by Roller Network at 3545 Airway Dr in Reno, NV, offering rack-space colocation and connectivity. Notable connectivity includes an on-site Hurricane Electric POP and access to TahoeIX.","verified_status":"operational","power_capacity_mw":0.9,"total_sqft":7000,"year_online":"2009","construction_update":"","recent_news":"On May 29, 2026, local coverage listed Roller Network (3545 Airway Dr., Suite 114) among Reno’s six data centers and noted it was built before a conditional-use permit was required; no expansion or new regulatory actions were reported.","notable_tenants":"Hurricane Electric POP on-site; free access to TahoeIX for colocation customers. No public anchor/end-customer tenants named.","verified_name":"Roller Network Colocation Data Center","verified_operator":"Roller Network LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":1.89,"utility_provider":"NV Energy","tax_incentives":"","natural_hazard_zone":"Seismic hazard: Western Nevada (Reno) near the Mt. Rose fault"},"654":{"description":"CENTRA Reno RNO1 is an operational, carrier-neutral meet-me-room and small colocation facility at 200 S. Virginia St. in downtown Reno, operated by CENTRA (formerly Deep Edge Realty). It serves as a building interconnection point with access to multiple networks and the local IX.","verified_status":"operational","power_capacity_mw":0.08,"total_sqft":4600,"year_online":"2021","construction_update":"","recent_news":"","notable_tenants":"No publicly named anchor colocation customer. Interconnection listings show TahoeIX at 200 South Virginia and networks including CENTRA Digital Interconnect, NETNV, Roller Network, and TahoeIX route servers/services.","verified_name":"CENTRA Reno 1 (RNO1)","verified_operator":"CENTRA Digital Interconnect (CENTRA)","verified_owner":"Basin Street Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; interconnections to 10+ service providers","num_buildings":1,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"No RNO1-specific abatement found. Nevada offers data center abatements: sales/use tax reduced (10–20 years) and 75% personal property tax abatement for qualifying facilities.","natural_hazard_zone":"High seismic hazard (Reno–Carson City urban corridor); downtown flood risk managed via FEMA/City mapping (address-specific FEMA zone not cited)."},"655":{"description":"Lumen Reno 1 is a telecom/colocation data center operated by Lumen Technologies at 220 Gardner Street in Reno, Nevada; the site originated in 1999 and the on-site building is 5,925 sq ft, while some directories list 12,600 sq ft of total space. The facility remains an existing, permitted operation.","verified_status":"operational","power_capacity_mw":2,"total_sqft":5925,"year_online":"1999","construction_update":"","recent_news":"May 29, 2026: Local coverage described the site as an existing minor data center needing a conditional-use permit; no active construction or new-tenant announcements were reported.","notable_tenants":"","verified_name":"Lumen Reno 1","verified_operator":"Lumen Technologies","verified_owner":"Lumen Technologies","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.56,"utility_provider":"NV Energy","tax_incentives":"Nevada offers data center tax abatements (e.g., up to 75% personal property tax abatement and sales/use tax reduced to 2% for 10 or 20 years) for qualifying investments; no facility-specific abatement is confirmed.","natural_hazard_zone":"FEMA Flood Zone X (minimal flood hazard); high regional seismic hazard."},"656":{"description":"DataBank LAS1 is an operational colocation data center at 7185 Pollock Drive in Las Vegas, operated by DataBank, located minutes from the airport and offering a 2N power design with multiple carrier connectivity options.","verified_status":"operational","power_capacity_mw":3.35,"total_sqft":57364,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank LAS1 – 7185 Pollock Drive (Las Vegas, NV Data Center)","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"hybrid","tier_level":"Tier III","fiber_providers":"carrier-neutral; 12 onsite carriers","num_buildings":1,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"","natural_hazard_zone":""},"657":{"description":"EdgeConneX Las Vegas (EDCLAS01) is an operational, carrier-neutral colocation edge data center at 1541 East Pama Lane in Las Vegas, operated by EdgeConneX and designed for low‑latency local content and application delivery.","verified_status":"operational","power_capacity_mw":0.75,"total_sqft":24400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX Las Vegas (EDCLAS01)","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.44,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements are available (75% personal property tax abatement; sales/use tax reduced to 2% for qualifying projects); no EDCLAS01-specific award identified.","natural_hazard_zone":"Flood risk present in Las Vegas; specific FEMA flood zone for 1541 Pama Ln not determined."},"658":{"description":"Lumen Reno 1 is an operational telecom/colocation data center operated by Lumen Technologies at 220 Gardner St, Reno, NV. It runs in an approximately 5,925‑sq‑ft building originally set up in 1999, while market listings show 12,600 sq ft of total data center space.","verified_status":"operational","power_capacity_mw":1.6,"total_sqft":5925,"year_online":"1999","construction_update":"","recent_news":"June 2026: The City of Reno approved a citywide moratorium on new data center development through August 31, 2027; no Lumen-specific expansion or tenant news was identified in the last six months.","notable_tenants":"","verified_name":"Lumen Reno 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"Williams Communications Inc. (c/o Level 3 Communications LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (Level 3)","num_buildings":1,"campus_acres":0.28,"utility_provider":"NV Energy","tax_incentives":"","natural_hazard_zone":"seismic exposure"},"659":{"description":"365 Data Centers New York (NY10) is an operational colocation and network facility operated by 365 Data Centers at 65 Broadway, New York, NY 10006, featuring 3 x 203 kW UPS (N+1) and DC A/B power options.","verified_status":"operational","power_capacity_mw":3,"total_sqft":16583,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers New York - NY10","verified_operator":"365 Data Centers","verified_owner":"Chetrit Group / Chetrit Organization","cooling_type":"unknown","tier_level":"Tier 2 equivalent","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Con Edison (Consolidated Edison Company of New York)","tax_incentives":"New York State Internet Data Center sales/use tax exemption (NY Tax Bulletin ST-405) may apply to qualifying equipment/services; no site-specific local abatement identified.","natural_hazard_zone":"Moderate seismic exposure; address-specific flood risk requires FEMA map lookup."},"660":{"description":"Cogent 33 Whitehall is a Cogent Communications on-net colocation/data center site at Broad Financial Center, 33 Whitehall Street, New York, NY 10004, listed in Cogent’s service-location directory and industry data center directories.","verified_status":"operational","power_capacity_mw":2,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Broad Financial Center — 33 Whitehall Street (Cogent on‑net location)","verified_operator":"Cogent Communications","verified_owner":"Stawski Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications; building is fiber‑optic ready (no verified full carrier list published)","num_buildings":1,"campus_acres":0,"utility_provider":"Con Edison","tax_incentives":"","natural_hazard_zone":""},"661":{"description":"CoreSite NY1 is an operational colocation and interconnection data center operated by CoreSite at 32 Avenue of the Americas in Manhattan, within one of the most connected carrier-hotel buildings. It offers access to major internet exchanges and cloud interconnection platforms for low-latency connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":48000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CoreSite NY1 - New York Data Center","verified_operator":"CoreSite (an American Tower company)","verified_owner":"32 Sixth Avenue Company LLC (Rudin Management Company)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 80+ network providers in the CoreSite New York campus","num_buildings":1,"campus_acres":0,"utility_provider":"Con Edison","tax_incentives":"New York State Internet data center sales/use tax exemption may apply under Tax Law provisions for qualifying Internet data centers.","natural_hazard_zone":""},"662":{"description":"DataBank LGA1 is an operational colocation data center operated by DataBank at 60 Hudson Street Suite #1903 in downtown New York City’s leading carrier-hotel, offering 23,940 IT sq ft, 0.74 MW critical IT load, and access to 92 onsite carriers.","verified_status":"operational","power_capacity_mw":0.74,"total_sqft":23940,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank LGA1 - Downtown New York City Data Center","verified_operator":"DataBank","verified_owner":"60 Hudson Street LLC / 60 Hudson Owner LLC (Stahl-affiliated; building owner; managed by Colliers)","cooling_type":"chilled water","tier_level":"No public Uptime certification; design is 2N power, N+1 cooling","fiber_providers":"carrier-neutral; ~90–92 on-site carriers; examples include Arelion, BT, Cogent","num_buildings":1,"campus_acres":1.204,"utility_provider":"Con Edison","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (outside 100/500-year floodplains); Seismic Zone 2A"},"663":{"description":"DataBank LGA2 is an operational colocation data center inside the 111 Eighth Avenue carrier hotel in Manhattan (Suite #311A), offering 0.68 MW of critical IT load and about 10,200 IT square feet, with 51 on‑site carriers.","verified_status":"operational","power_capacity_mw":0.68,"total_sqft":10200,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank LGA2 - Downtown New York City Data Center","verified_operator":"DataBank","verified_owner":"Google (Alphabet Inc.)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; 50 onsite carriers","num_buildings":1,"campus_acres":0,"utility_provider":"Con Edison","tax_incentives":"New York State sales tax exemption for Internet data center equipment and related services (Tax Law Sections 1115(a)(37) and 1115(y))","natural_hazard_zone":"FEMA Flood Zone X (minimal flood risk)"},"664":{"description":"Digital Realty’s JFK10 is a live colocation and interconnection facility at 111 8th Avenue in Manhattan, serving as a central hub for hundreds of carriers and home to New York City’s first Quantum‑AI data center.","verified_status":"operational","power_capacity_mw":5.5,"total_sqft":109600,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Oxford Quantum Circuits (OQC); NVIDIA","verified_name":"Digital Realty New York JFK10 - 111 8th Avenue","verified_operator":"Digital Realty","verified_owner":"Google (Alphabet Inc.)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; hub for domestic and international carriers along the Hudson Street/Ninth Avenue fiber highway","num_buildings":1,"campus_acres":0,"utility_provider":"Con Edison / Consolidated Edison Company of New York","tax_incentives":"New York State Internet Data Center sales/use-tax exemption for qualifying data-center machinery and equipment","natural_hazard_zone":"FEMA Flood Zones B and X (area of moderate flood hazard, between 100-year and 500-year flood limits)"},"665":{"description":"Digital Realty JFK12 is a carrier- and cloud-neutral colocation and interconnection facility operated by Digital Realty at 60 Hudson Street in Manhattan, widely regarded as a key global carrier-hotel location. The site offers about 164,000 sq ft with around 6 MW of power capacity.","verified_status":"operational","power_capacity_mw":6,"total_sqft":164000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"New York JFK12 - 60 Hudson Street","verified_operator":"Digital Realty","verified_owner":"60 Hudson Street LLC (Stahl Organization)","cooling_type":"chilled water","tier_level":"Tier III Equivalent","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Con Edison","tax_incentives":"","natural_hazard_zone":"Outside 500-year floodplain; Seismic Zone 2A"},"666":{"description":"Equinix NY9 is an operational Equinix IBX carrier‑neutral colocation data center at 111 8th Avenue in Manhattan, offering services like Equinix interconnection platforms to a mix of financial, media, and enterprise customers. Third‑party listings show 55,721 sq ft total space and about 35.9k sq ft of raised floor/colocation area.","verified_status":"operational","power_capacity_mw":1.215,"total_sqft":55721,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix NY9 IBX Data Center","verified_operator":"Equinix","verified_owner":"Google LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":3.79,"utility_provider":"Consolidated Edison (Con Edison)","tax_incentives":"New York State Internet Data Center sales/use tax exemption may apply to qualifying operators/equipment.","natural_hazard_zone":"Seismic design category 2B; described as flood zone C; building experienced extended generator operations and outages during Hurricane Sandy (2012)."},"667":{"description":"An operational, carrier-neutral colocation and interconnection facility operated by H5 Data Centers at 325 Hudson Street in lower Manhattan, totaling about 240,000 sq ft with access to DE-CIX and 40+ networks; the building is owned by DivcoWest, which maintains H5-managed interconnection/colocation space.","verified_status":"operational","power_capacity_mw":5,"total_sqft":240000,"year_online":"1998","construction_update":"","recent_news":"","notable_tenants":"DE-CIX New York; access to 40+ on-net networks/carriers","verified_name":"H5 Data Centers New York Data Center (325 Hudson)","verified_operator":"H5 Data Centers","verified_owner":"DivcoWest / DWF VI 325 HUDSON, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; access to 40+ networks; Lightower Fiber Networks PoP","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Zone X; NYC Hurricane Evacuation Zone 2"},"668":{"description":"Telecom colocation facility operated by Lumen Technologies (legacy Level 3/Looking Glass Networks) at 150 Varick Street, New York, offering cabinet and private‑suite colocation. The site is listed on PeeringDB as the Looking Glass Networks NYC Node and is described by third‑party directories as an active colocation node.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen LG Networks NYC Node (150 Varick Street)","verified_operator":"Lumen Technologies","verified_owner":"W. & M. Operating, L.L.C.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.62,"utility_provider":"Consolidated Edison (Con Edison)","tax_incentives":"","natural_hazard_zone":""},"669":{"description":"Lumen Technologies operates a telecom/data center presence at 32 Old Slip (One Financial Square) in Lower Manhattan, New York. It sits within the 36‑story office tower; public listings do not publish facility‑specific power or space details.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen: 32 Old Slip","verified_operator":"Lumen Technologies","verified_owner":"RXR Realty (leasehold owner); ground/leased-fee interest held by Safehold and Melohn Capital/Melohn Group","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.97,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Coastal flood/storm-surge exposure (Hurricane Sandy impact history)"},"670":{"description":"Lumen New York 7 (also listed as Lumen New York 2) is an operational Lumen Technologies colocation/telecom facility at 601 W 26th Street in Manhattan’s Starrett‑Lehigh Building. Listings show 73,822 sq ft total space with 20,000 sq ft raised-floor, and Lumen’s site list confirms 601 W 26th St as a wavelength RapidRoutes location.","verified_status":"operational","power_capacity_mw":0,"total_sqft":73822,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen New York 7: 601 West 26th","verified_operator":"Lumen Technologies","verified_owner":"RXR SL OWNER LLC (managed by RXR Realty)","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; providers present include Lumen and Windstream/Uniti.","num_buildings":1,"campus_acres":0,"utility_provider":"Con Edison (Consolidated Edison Company of New York)","tax_incentives":"","natural_hazard_zone":"Coastal floodplain exposure (FEMA 1% and 0.2% annual chance floodplains) with building floodproofing measures."},"671":{"description":"NYI Broad Street Connect is an operational colocation and interconnection hub at 75 Broad Street in Lower Manhattan, operated by NYI in partnership with building owner JEMB Realty. It leverages the building’s extensive telecom assets to provide connectivity-focused services.","verified_status":"operational","power_capacity_mw":12.5,"total_sqft":22000,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"No anchor colocation customer is publicly named. Public sources highlight connectivity and network/operator presences rather than anchor tenants.","verified_name":"Broad Street Connect","verified_operator":"NYI","verified_owner":"JEMB Realty","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.6,"utility_provider":"Con Edison","tax_incentives":"Eligible programs in Lower Manhattan include: Commercial Revitalization Program (CRP) with $2.50/sq ft real estate tax abatement and associated Commercial Rent Tax benefits; other Downtown incentives may apply subject to program rules and tenant eligibility.","natural_hazard_zone":"FEMA Flood Zone AE and 0.2% (moderate-to-high flood risk); NYC Hurricane Evacuation Zone 2; impacted during Hurricane Sandy (2012)."},"672":{"description":"SDC Manhattan (Intergate.Manhattan) is Sabey Data Centers’ operational colocation/powered‑shell facility at 375 Pearl Street in Lower Manhattan, the former Verizon Building. Sabey lists 18 MW of capacity and 23 carriers, with a dedicated data center footprint of roughly 222,000 sq ft.","verified_status":"operational","power_capacity_mw":18,"total_sqft":1000000,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"Publicly named data-center/customer tenant: Windstream Corp. (Intergate.Manhattan). Public building/office tenants at 375 Pearl Street include NYPD, NYC Human Resources Administration, and Rafael Viñoly Architects.","verified_name":"SDC Manhattan (also known as Intergate.Manhattan / 375 Pearl Street)","verified_operator":"Sabey Data Centers","verified_owner":"Sabey Data Center Properties (via Intergate Manhattan LLC)","cooling_type":"chilled water","tier_level":"Tier III equivalent","fiber_providers":"carrier-neutral; 23 carriers","num_buildings":1,"campus_acres":1.34,"utility_provider":"Con Edison","tax_incentives":"NYSERDA energy-efficiency program support (case study documented)","natural_hazard_zone":"unknown"},"673":{"description":"A Verizon Enterprise colocation/data center facility located at 15 West 37th Street in Manhattan and operated by Verizon. Public listings identify the site as a Verizon data center, while detailed site-specific specs are not disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon: 15th W 37th","verified_operator":"Verizon Enterprise","verified_owner":"Kamber Management Company","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Consolidated Edison Company of New York (Con Edison)","tax_incentives":"","natural_hazard_zone":""},"674":{"description":"Citigroup 390 Greenwich is an enterprise data center within Citi’s 388/390 Greenwich Street headquarters campus in New York, operated by Citigroup/Citigroup Technology as part of the integrated HQ complex.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Citigroup: 390 Greenwich","verified_operator":"Citigroup","verified_owner":"Citigroup Inc.","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0,"utility_provider":"Consolidated Edison (Con Edison)","tax_incentives":"","natural_hazard_zone":"Coastal storm surge/flood exposure; closures during Hurricane Sandy (2012). Located within NYC’s mapped coastal flood risk/evacuation zones."},"675":{"description":"Carrier-neutral colocation and interconnection data center operated by DataVerge at 882 3rd Avenue in Industry City, Brooklyn, billed as Brooklyn’s only carrier-neutral meet-me room/carrier hotel.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":50000,"year_online":"unknown","construction_update":"Jun 20, 2024: Opened a second Meet-Me Room to increase capacity and redundancy. May 25, 2026: Public note that DataVerge is looking to expand its Industry City data center.","recent_news":"May 19, 2026: Mathpix expanded AI training/inference at DataVerge’s Brooklyn facility, deploying Nvidia B300 GPUs.","notable_tenants":"Mathpix (joined 2024; active at the facility)","verified_name":"DataVerge Brooklyn Data Center (Industry City, 882 3rd Avenue)","verified_operator":"DataVerge","verified_owner":"1-10 Bush Terminal Owner LP (Industry City JV led by Jamestown and Belvedere Capital)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Con Edison (ConEd)","tax_incentives":"New York State Internet Data Centers sales-tax exemption (applicable if qualifying).","natural_hazard_zone":""},"676":{"description":"Long Island Interconnect (formerly 1025Connect) operates a carrier-neutral colocation and interconnection hub at 1025 Old Country Road in Westbury, NY. The facility relaunched under the Long Island Interconnect brand in 2022.","verified_status":"operational","power_capacity_mw":0,"total_sqft":186000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"DE-CIX; Aqua Comms","verified_name":"Long Island Interconnect","verified_operator":"Long Island Interconnect","verified_owner":"1025 II LLC","cooling_type":"unknown","tier_level":"Modified Tier II (no Uptime certification found)","fiber_providers":"carrier-neutral; direct access to subsea cable systems and Manhattan-bypass fiber routes","num_buildings":1,"campus_acres":1.956,"utility_provider":"PSEG Long Island (operating the LIPA system)","tax_incentives":"Nassau County IDA financial assistance/PILOT structure for the project (1025 OCR LLC / Mazel Productions LLC; later 1025 II LLC), including exemptions or partial exemptions from sales/use tax, mortgage recording tax, and real property tax.","natural_hazard_zone":"FEMA Flood Zone X (low flood risk; outside the 100-year floodplain)"},"677":{"description":"DataBank LGA3 is an operational colocation data center at 2000 Corporate Dr., Orangeburg, NY, operated by DataBank and anchoring the company’s Orangeburg campus. The site offers five data halls and roughly 110,000 sq ft of data center space designed for high-density workloads near NYC.","verified_status":"operational","power_capacity_mw":20,"total_sqft":110000,"year_online":"2025","construction_update":"Campus expansion (Phase Two/LGA4) is in municipal review: Orangetown records list a March 25, 2026 Planning Board item and July 1–2, 2026 ZBA/ACABOR reviews.","recent_news":"June 2026: Orangetown postponed the Planning Board hearing for DataBank Orangeburg Phase Two (same campus), with multiple July 2026 review meetings scheduled.","notable_tenants":"CoreWeave","verified_name":"DataBank LGA3 - Orangeburg Data Center","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; 7 onsite carriers","num_buildings":2,"campus_acres":34,"utility_provider":"Orange & Rockland Utilities (O&R)","tax_incentives":"Reported Rockland County IDA tax benefits associated with the Orangeburg data center activity; advocacy reporting claims combined benefits to CoreWeave and DataBank may total up to $58M, while a separate $77M package applies to a different JPMorgan data center project in the county.","natural_hazard_zone":"Adjacent to Lake Tappan protected reservoir; specific FEMA flood-zone designation not determined from provided sources"},"678":{"description":"1547 ORNY1 at 1 Ramland Road in Orangeburg, NY is an operational colocation data center operated by Fifteenfortyseven Critical Systems Realty, spanning 232,000 square feet with 24 MW provisioned. As of late April/early May 2026, it is fully leased and near-full utilization with expansion underway.","verified_status":"operational","power_capacity_mw":24,"total_sqft":232000,"year_online":"2015","construction_update":"April 28, 2026: Full occupancy announced with expansion underway; site pre-approved for an additional 230,000 sq ft building supported by a planned on-site 60 MW substation.","recent_news":"April–May 2026: 1547/Harrison Street announced the Orangeburg data center reached full occupancy and is near-full utilization, with expansion underway, including a pre-approved additional 230,000 sq ft building supported by a planned on-site 60 MW substation.","notable_tenants":"Unnamed ‘Top Telecommunications Firm’ (2015); ColoHouse (expansion in 2022); Green House Data/Lunavi (at 1 Ramland Rd., Suite 2).","verified_name":"1547 Orangeburg NY (ORNY1) – 1 Ramland Road","verified_operator":"fifteenfortyseven Critical Systems Realty (1547)","verified_owner":"Harrison Street Asset Management and fifteenfortyseven Critical Systems Realty (1547) joint venture (project entity: 1547 CSR-Orangeburg, LLC).","cooling_type":"unknown","tier_level":"Tier III-equivalent (built to Tier III standards; not Uptime-certified in sources provided)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":23,"utility_provider":"Orange & Rockland Utilities (O&R)","tax_incentives":"Rockland County IDA incentives, including sales tax abatement; facility marketed with full sales tax abatement.","natural_hazard_zone":"FEMA Flood Zones B and X (moderate hazard between 100- and 500-year flood limits)"},"679":{"description":"TierPoint Hawthorne is an operational colocation/data center at 11 Skyline Drive in Hawthorne, NY, operated by TierPoint, with approximately 46,000 sq ft of facility space.","verified_status":"operational","power_capacity_mw":7,"total_sqft":46000,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"No anchor tenant is publicly disclosed. Public customer references include American Customer Care and Touro College of Dental Medicine.","verified_name":"TierPoint New York – Hawthorne Data Center","verified_operator":"TierPoint","verified_owner":"","cooling_type":"unknown","tier_level":"Not Uptime certified; design: 2N UPS, N+1 generators","fiber_providers":"Megaport","num_buildings":2,"campus_acres":3.56,"utility_provider":"Con Edison","tax_incentives":"","natural_hazard_zone":"low risk"},"680":{"description":"TierPoint Hawthorne 2 (HW2) is an operational TierPoint colocation data center at 17 Skyline Drive in Hawthorne, NY, and part of the company’s two‑building Hawthorne campus. The facility provides redundant power and connectivity suitable for hybrid IT and colocation workloads.","verified_status":"operational","power_capacity_mw":4,"total_sqft":172000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Hudson River HealthCare (HRHCare) (campus-level; building-specific tenant for HW2 not disclosed)","verified_name":"TierPoint New York – Hawthorne (HW2), 17 Skyline Dr","verified_operator":"TierPoint","verified_owner":"Landmark Dividend LLC","cooling_type":"unknown","tier_level":"Tier III equivalent","fiber_providers":"carrier-neutral; AT&T available","num_buildings":2,"campus_acres":0,"utility_provider":"Con Edison (Consolidated Edison Company of New York)","tax_incentives":"NYSERDA energy-efficiency program support (legacy Xand/TierPoint Hawthorne facility)","natural_hazard_zone":"FEMA Flood Zone X / B-X (moderate-to-low flood hazard; generally outside the 100-year floodplain)"},"681":{"description":"Crown Castle New York (NY2) is a carrier-neutral telecom/colocation data center operated by Crown Castle at 360 Hamilton Ave, White Plains, NY, featuring approximately 8,200 sq ft of built-out whitespace and in service since 2000.","verified_status":"operational","power_capacity_mw":3,"total_sqft":8200,"year_online":"2000","construction_update":"","recent_news":"No facility-specific expansion or tenant news found in the last six months. Related items: the 360 Hamilton Ave property sold for $67.5M on Mar 20, 2026; Zayo completed acquisition of Crown Castle’s Fiber Solutions business on May 1, 2026.","notable_tenants":"","verified_name":"Crown Castle New York (NY2), 360 Hamilton Ave, White Plains, NY","verified_operator":"Zayo Group Holdings Inc.","verified_owner":"TKF Burnside Real Estate Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"Zayo (formerly Crown Castle Fiber); others not determinable","num_buildings":1,"campus_acres":0,"utility_provider":"Consolidated Edison (Con Edison)","tax_incentives":"","natural_hazard_zone":"FEMA FIRM panel 36119C0267F (White Plains); specific flood zone at 360 Hamilton Ave not determined"},"682":{"description":"Cohere Westchester is a listed colocation/managed-services data center operated by Cohere Communications (now part of Dataprise) at 777 Old Saw Mill River Rd in Tarrytown, NY. It appears in current data center and connectivity listings for Westchester County.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cohere Westchester","verified_operator":"Dataprise","verified_owner":"BA Leasing BSC, LLC (title/lessor under lease-financing); Old Saw Mill Holdings LLC (Regeneron subsidiary) as lessee at 777 Old Saw Mill River Road","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Consolidated Edison (Con Edison)","tax_incentives":"Westchester County IDA-approved incentives for Regeneron’s campus near 777 Old Saw Mill River Rd; New York State Internet Data Center sales-tax exemption for qualifying equipment.","natural_hazard_zone":""},"683":{"description":"Equinix NY1 is an operational, carrier-neutral Equinix IBX colocation facility located on the 8th floor of 165 Halsey Street in Newark, New Jersey. Independent profiles list approximately 46,465 sq ft total with about 21,771 sq ft of raised-floor/colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":46465,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix NY1 (New York NY1 IBX Data Center)","verified_operator":"Equinix","verified_owner":"JJ Operating (JJOP)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G","tax_incentives":"","natural_hazard_zone":""},"684":{"description":"Equinix NY3 is an Equinix-operated, carrier-neutral IBX colocation data center at 600 Jefferson Avenue in Secaucus, New Jersey, offering interconnection services and certifications. Equinix lists 250,853 square feet for this facility.","verified_status":"operational","power_capacity_mw":13,"total_sqft":250853,"year_online":"unknown","construction_update":"Q1 2026: Phase 2 involving installation of six emergency engine-generators scheduled to begin (per NJDEP preconstruction permit notice dated June 12, 2023).","recent_news":"","notable_tenants":"","verified_name":"Equinix NY3","verified_operator":"Equinix","verified_owner":"Hartz Mountain Industries, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G / Public Service Electric and Gas","tax_incentives":"No facility-specific incentive verified; New Jersey enacted data center sales and use tax exemptions in 2025.","natural_hazard_zone":"Moderate flood risk area (Secaucus); no site-specific FEMA flood zone code verified for 600 Jefferson Avenue."},"685":{"description":"Equinix NY4 is Equinix’s carrier‑neutral IBX colocation data center at 755 Secaucus Road in Secaucus, New Jersey, with 151,771 sq ft of raised-floor space. It is a major low‑latency trading hub in the New York metro, described as nearly 340,000 sq ft and “where Wall Street actually transacts.”","verified_status":"operational","power_capacity_mw":18,"total_sqft":338967,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix NY4 (New York NY4 IBX Data Center)","verified_operator":"Equinix","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; examples include Zayo, FXecosystem, Crosslake Fibre","num_buildings":1,"campus_acres":18.5,"utility_provider":"Public Service Electric and Gas Company (PSE&G)","tax_incentives":"","natural_hazard_zone":"Flood risk (Meadowlands/Secaucus; moderate citywide flood risk; facility built with flood‑resiliency features)"},"686":{"description":"Equinix NY5 is an operational Equinix IBX, carrier-neutral colocation data center at 800 Secaucus Road, Secaucus, NJ, serving dense interconnection ecosystems within the Secaucus campus.","verified_status":"operational","power_capacity_mw":10,"total_sqft":275322,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"NYSE Technologies (SFTI access center)","verified_name":"Equinix NY5 IBX Data Center","verified_operator":"Equinix","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":4,"campus_acres":0,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"","natural_hazard_zone":"Moderate flood risk citywide; facility enhanced for flood resiliency."},"687":{"description":"Equinix NY7 is an operational, carrier-neutral Equinix IBX colocation data center at 5851 West Side Avenue, North Bergen, NJ, serving New York’s dense financial, cloud and network interconnection ecosystems.","verified_status":"operational","power_capacity_mw":9.85,"total_sqft":163537,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix NY7 (NY7 New York IBX Data Center)","verified_operator":"Equinix","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":4.89,"utility_provider":"Public Service Electric & Gas (PSE&G)","tax_incentives":"","natural_hazard_zone":""},"688":{"description":"Evocative EWR1 is an operational colocation data center operated by Evocative at 1 Enterprise Avenue North, Secaucus, New Jersey, serving the NY/NJ metro. It offers 10 MW of power across approximately 105,000 square feet.","verified_status":"operational","power_capacity_mw":10,"total_sqft":105000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Evocative EWR1","verified_operator":"Evocative","verified_owner":"","cooling_type":"chilled water","tier_level":"N+1 design standard (no formal Uptime Institute certification)","fiber_providers":"Carrier-neutral; Megaport, Verizon, Zayo, Crown Castle, Cogent, Comcast, Cross River Fiber, Lightpath, Lumen, PacketFabric, AT&T, NTT","num_buildings":1,"campus_acres":6.6,"utility_provider":"PSE&G","tax_incentives":"","natural_hazard_zone":"Seismic Zone 2A; FEMA Flood Zone X (low risk)"},"689":{"description":"Centersquare EWR5-A Secaucus (also listed as NYC3) is an operational carrier-neutral colocation data center operated by Centersquare at 15 Enterprise Avenue North, Secaucus, NJ, offering a total building size of 154,691 sq ft with about 59,572 sq ft of live whitespace.","verified_status":"operational","power_capacity_mw":11.6,"total_sqft":154691,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare – Secaucus EWR5 (EWR5-A) Data Center","verified_operator":"Csquare","verified_owner":"Dawn US Holdings, LLC (d/b/a Evoque Data Center Solutions; Brookfield Infrastructure Partners-backed platform)","cooling_type":"chilled water","tier_level":"Tier III equivalent","fiber_providers":"carrier-neutral; providers include Cogent, Verizon, Zayo, Lightpath, Lumen, AT&T, Crown Castle, Megaport","num_buildings":1,"campus_acres":8.4,"utility_provider":"Public Service Electric and Gas (PSE&G)","tax_incentives":"","natural_hazard_zone":"Meadowlands flood exposure (local maps show flood-prone areas; verify FEMA FIRM for exact zone)"},"690":{"description":"Digital Realty EWR11 is an operational colocation data center at 3 Corporate Place in Piscataway Township, NJ, operated by Digital Realty. The 3‑story facility totals 277,000 ft², with third‑party listings indicating access to 26.0 MW of power.","verified_status":"operational","power_capacity_mw":26,"total_sqft":277000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Centersquare (Csquare) EWR3-A has a presence at 3 Corporate Place; no specific anchor tenant for EWR11 is publicly named.","verified_name":"Digital Realty EWR11","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"14 providers (Cloudscene); campus along major fiber routes","num_buildings":3,"campus_acres":0,"utility_provider":"PSE&G (Public Service Electric and Gas)","tax_incentives":"New Jersey data center incentives, including sales and use tax exemptions (signed into law on July 25).","natural_hazard_zone":"Outside 500-year flood plain; Seismic Zone 2A"},"691":{"description":"Digital Realty EWR12 is a two‑story, 351,000‑ft² colocation data center operated by Digital Realty at 365 S. Randolphville Road in Piscataway, NJ. It sits on the Digital Piscataway campus along major fiber routes roughly 37 miles from Manhattan.","verified_status":"operational","power_capacity_mw":34,"total_sqft":351000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Centersquare (EWR3-B) leases space in the 365 S. Randolphville Road building; other tenants are not publicly disclosed.","verified_name":"Digital Realty EWR12","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"Tier III equivalent (not Uptime-certified)","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":22.5,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"","natural_hazard_zone":"outside 500-year flood zone (low flood risk)"},"692":{"description":"Colocation America NJDC1 is a colocation facility marketed and operated by Colocation America inside Digital Realty’s EWR20 building at 100 Delawanna Ave, Clifton, NJ. It is an operational, multi-tenant site at this address.","verified_status":"operational","power_capacity_mw":33,"total_sqft":211000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Colocation America NJDC1 (New Jersey DC 1)","verified_operator":"Colocation America","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Public Service Electric and Gas Company (PSE&G)","tax_incentives":"","natural_hazard_zone":""},"693":{"description":"Iron Mountain Data Centers NJE-1 is an operational colocation facility at 3003 Woodbridge Ave, Edison, NJ, serving the Greater New York region; it spans about 830,000 sq ft and is notable for a large rooftop solar installation, with total capacity cited around 30 MW.","verified_status":"operational","power_capacity_mw":30,"total_sqft":830000,"year_online":"2011","construction_update":"Mar 26, 2026: Trellis reported permitting took nine months and Iron Mountain expected to break ground in June 2026 for a 23 MWh BESS; the project was announced Feb 19, 2026 by Calibrant Energy/Iron Mountain.","recent_news":"Feb–Mar 2026: Iron Mountain and Calibrant Energy announced a 23 MWh on‑site battery energy storage system at the Edison NJE‑1 campus; permitting took about nine months and Iron Mountain expected to break ground in June 2026.","notable_tenants":"","verified_name":"Iron Mountain Data Centers NJE-1","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Data Centers, LLC (Iron Mountain Incorporated)","cooling_type":"chilled water","tier_level":"Tier III / TIA-942 certified","fiber_providers":"carrier-neutral; 20+ carriers including Cross River Fiber, Hurricane Electric, Arelion (Telia), Lumen/CenturyLink, Cogent, Lightpath, Verizon, and Zayo; IXPs include DE-CIX and IX-Reach; cloud on-ramps via Megaport","num_buildings":1,"campus_acres":43,"utility_provider":"Public Service Electric & Gas (PSE&G)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (low to moderate risk)"},"694":{"description":"QTS Jersey City 1 DC1 is an operational colocation facility operated by QTS Data Centers at 95 Christopher Columbus Dr, 16th Floor, Jersey City, NJ. It is identified by QTS as JCY1/DC1 and offers carrier-neutral connectivity with providers such as PacketFabric and AT&T.","verified_status":"operational","power_capacity_mw":3,"total_sqft":120000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Jersey City 1 DC1","verified_operator":"QTS Data Centers","verified_owner":"Columbia Property Trust, Inc. (owned by affiliates of funds managed by PIMCO)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"No facility-specific incentive or abatement identified; statewide DC-specific incentives are not known, and NJEDA’s Next New Jersey Program – AI offers tax credits for eligible AI businesses, but no evidence indicates this facility received them.","natural_hazard_zone":""},"695":{"description":"365 Data Centers Carlstadt is an operational, carrier-neutral colocation facility at 410 Commerce Blvd, Carlstadt, NJ, featuring 8 data halls and over 200,000 sq ft with 18 MW total power. It is operated by 365 Data Centers and serves the Northern New Jersey/New York metro.","verified_status":"operational","power_capacity_mw":18,"total_sqft":200000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"InterServer; on-site network providers include AT&T, Comcast, Sunesys (Crown Castle), and Cogent.","verified_name":"365 Data Centers Carlstadt (NJ3)","verified_operator":"365 Data Centers","verified_owner":"Digital Realty","cooling_type":"unknown","tier_level":"Tier III equivalent","fiber_providers":"carrier-neutral; Sunesys, AT&T, Comcast","num_buildings":1,"campus_acres":11.59,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Moderate flood risk area; exact FEMA flood zone for the parcel not identified"},"696":{"description":"365 Data Centers’ Bridgewater (NJ1) facility is an operational colocation and network data center at 999 Frontier Rd, Bridgewater Township, NJ, offering 2.3 MW across approximately 25,600 sq ft. It serves the New York metro area from a location about 40 miles west of NYC.","verified_status":"operational","power_capacity_mw":2.3,"total_sqft":25600,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers Bridgewater New Jersey Data Center (NJ1)","verified_operator":"365 Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"No known New Jersey data center–specific tax incentives.","natural_hazard_zone":"low risk"},"697":{"description":"Centersquare (Csquare) New York EWR2-C,D is an operational, carrier‑neutral colocation facility at 1919 Park Ave, Weehawken, NJ, part of the low‑latency EWR2 campus serving the New York financial markets.","verified_status":"operational","power_capacity_mw":12,"total_sqft":209237,"year_online":"1987","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare New York EWR2-C,D","verified_operator":"Csquare","verified_owner":"Brookfield Infrastructure Partners","cooling_type":"chilled water","tier_level":"Tier III equivalent","fiber_providers":"carrier-neutral; major providers include Zayo, Lumen, AT&T, Cogent, Crown Castle, Megaport, Hibernia, CFN Services, Verizon Business, GTT","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"New Jersey Next NJ Program – AI (S3432) provides transferable tax credits for qualifying AI/data center investments; no site-specific award confirmed.","natural_hazard_zone":"FEMA Flood Zone AE; coastal flood exposure per FEMA ABFE mapping for Weehawken"},"698":{"description":"11:11 Systems operates a colocation and disaster‑recovery data center in Carlstadt, New Jersey. The site delivers colocation and related services for enterprise workloads.","verified_status":"operational","power_capacity_mw":25,"total_sqft":326000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"11:11 Systems Carlstadt","verified_operator":"11:11 Systems","verified_owner":"Russo Development","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":12,"utility_provider":"PSE&G","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE (1% annual chance floodplain)"},"699":{"description":"Telehouse New York Teleport is a carrier‑neutral colocation and disaster‑recovery data center operated by Telehouse/KDDI at 7 Teleport Dr, Staten Island, offering colocation suites and strong connectivity (including access to major exchange points), opened in 1989 and totaling about 162,000 sq ft.","verified_status":"operational","power_capacity_mw":10,"total_sqft":162000,"year_online":"1989","construction_update":"","recent_news":"Mar 17, 2026: Telehouse highlighted high‑density colocation at the Teleport campus (up to 20 kW per rack) for AI/HPC/GPU workloads; no separate expansion, new‑tenant, or regulatory news located in the last six months.","notable_tenants":"","verified_name":"Telehouse New York Teleport Data Center","verified_operator":"Telehouse America (Telehouse International Corporation of America, KDDI Group)","verified_owner":"City of New York","cooling_type":"chilled water","tier_level":"Tier III (equivalent), N+1","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":100,"utility_provider":"Con Edison and PSE&G","tax_incentives":"","natural_hazard_zone":"low risk (no flood threat during Hurricane Sandy)"},"700":{"description":"DataVerge Brooklyn Data Center is an operational, carrier‑neutral colocation and interconnection facility operated by DataVerge at 882 3rd Ave in Industry City, Brooklyn. The site is described as Brooklyn’s only carrier‑neutral interconnection facility, offering about 50,000 sq ft (40,000 sq ft raised floor), connectivity to 40+ carriers, and support for up to 10 MW of power.","verified_status":"operational","power_capacity_mw":10,"total_sqft":50000,"year_online":"unknown","construction_update":"June 9, 2026: Reported facility expansion with 3 MW being added; May 25, 2026: reported plan to expand from 50,000 to 68,000 sq ft.","recent_news":"May–June 2026: DataVerge announced Mathpix expanded its AI infrastructure at the Brooklyn facility (deploying NVIDIA B300 GPUs), and industry coverage reported DataVerge will host Nvidia hardware for Mathpix and expand the site.","notable_tenants":"Mathpix","verified_name":"DataVerge Brooklyn Data Center","verified_operator":"DataVerge","verified_owner":"Industry City ownership (1-10 Bush Terminal Owner LP; 19-20 Bush Terminal Owner LP)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; 30+ carriers/networks","num_buildings":1,"campus_acres":0,"utility_provider":"Con Edison","tax_incentives":"New York State Internet Data Center sales/use tax exemption may apply; no facility-specific award identified.","natural_hazard_zone":""},"701":{"description":"Digital Realty SEA10 is the Westin Building Exchange at 2001 Sixth Avenue in downtown Seattle, a 34‑story, carrier‑neutral colocation facility with premier Meet‑Me Rooms (MMRs) operated by Digital Realty.","verified_status":"operational","power_capacity_mw":9,"total_sqft":400400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty Seattle SEA10 – 2001 Sixth Avenue (Westin Building / Westin Building Exchange)","verified_operator":"Digital Realty","verified_owner":"Digital Realty (majority owner) with Clise Properties as minority JV partner","cooling_type":"hybrid","tier_level":"Tier III (design; no Uptime certification found)","fiber_providers":"carrier-neutral; extensive carrier/IX presence via meet-me rooms (major carrier hotel)","num_buildings":1,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"Washington State sales/use tax exemption for qualifying data centers or qualifying tenants (subject to program criteria); no facility-specific award located","natural_hazard_zone":"Seismic/earthquake exposure (Seattle urban core)"},"702":{"description":"Equinix SE2 is an operational Equinix IBX colocation data center at 2001 6th Avenue in Seattle’s Westin Building, offering extensive network choice and cloud/IT ecosystems with Zone 3 seismic design. Third‑party listings cite 43,610 total sq ft with 36,382 sq ft of raised floor.","verified_status":"operational","power_capacity_mw":0,"total_sqft":43610,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix SE2","verified_operator":"Equinix","verified_owner":"Clise Properties (51%) / Digital Realty (49%) joint venture","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"Washington State data centers sales and use tax exemption is available for qualifying operators/tenants; SE2-specific eligibility not confirmed.","natural_hazard_zone":"Seismic Zone 3"},"703":{"description":"DataBank SEA1 - Downtown Seattle is a DataBank-operated colocation facility on the 12th floor (Suite #12500) of the Westin Building at 2001 6th Ave, a major downtown carrier-hotel/interconnection hub that sits within a Digital Realty–owned property.","verified_status":"operational","power_capacity_mw":0.21,"total_sqft":4050,"year_online":"unknown","construction_update":"","recent_news":"June 2026: Seattle City Council passed a one-year moratorium on approvals for new and expanding data centers, a citywide regulatory action that could constrain any expansion plans at downtown sites such as the Westin Building.","notable_tenants":"","verified_name":"DataBank SEA1 - Downtown Seattle Data Center","verified_operator":"DataBank","verified_owner":"Westin Building Exchange JV: Digital Realty and Clise Properties (Digital Realty holds a 49% interest announced in 2020).","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; access to 115+ on-site carriers via the Westin Building Exchange meet-me rooms","num_buildings":1,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"Washington State sales and use tax exemptions exist for qualifying data centers and tenants, including nonrural data centers; eligibility for this specific SEA1 suite is not documented.","natural_hazard_zone":"Regional seismic risk with mapped liquefaction-prone areas in central Seattle; FEMA flood zone for the exact address not confirmed here."},"704":{"description":"Equinix SE3 is Equinix’s operational SE3 IBX carrier-neutral colocation facility at 2020 Fifth Avenue in Seattle that provides colocation and connectivity, positioned as an extension to deployments in the adjacent Westin Building Exchange.","verified_status":"operational","power_capacity_mw":7,"total_sqft":36457,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix SE3","verified_operator":"Equinix","verified_owner":"Clise Properties","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.3,"utility_provider":"Seattle City Light","tax_incentives":"Washington State data center sales/use tax exemption exists for qualifying data centers (primarily rural); applicability to Seattle/King County is uncertain. A 2026 bill sought to end a related exemption.","natural_hazard_zone":"Seismic Design Category D"},"705":{"description":"Lumen Seattle 3 is a telecom/data center presence operated by Lumen/Level 3 at 1505 5th Ave in downtown Seattle, with multiple on‑net fiber providers and roughly 24,000 sq ft across two data‑center floors.","verified_status":"operational","power_capacity_mw":0,"total_sqft":24000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Seattle 3 Data Center","verified_operator":"Lumen Technologies (legacy Level 3 Communications)","verified_owner":"Unico Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multiple on-net fiber providers; Lumen/Level 3 on-net","num_buildings":1,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"Washington retail sales and use tax exemption exists for qualifying data centers/tenants; no facility-specific incentive found for this site.","natural_hazard_zone":"Seismic/liquefaction hazard (central Seattle); flood zone unspecified"},"706":{"description":"Digital Fortress Downtown Seattle (SEA) is an operational colocation data center operated by Digital Fortress at 3101 Western Avenue (Suite C) in Seattle’s downtown core.","verified_status":"operational","power_capacity_mw":6,"total_sqft":24000,"year_online":"2012","construction_update":"","recent_news":"Seattle City Council adopted an emergency data center moratorium/policy framework on 2026-06-09 focused on preventing siting of large (>20 MVA) new data centers; no facility-specific change for this existing site was announced.","notable_tenants":"","verified_name":"Digital Fortress Downtown Seattle (SEA)","verified_operator":"Digital Fortress","verified_owner":"Martin Selig Real Estate","cooling_type":"chilled water","tier_level":"Tier III design (N+1)","fiber_providers":"Carrier-neutral; CenturyLink, Comcast, Level 3, XO Communications; direct dark fiber to Westin Building Exchange; connection to Seattle Internet Exchange (SIX).","num_buildings":1,"campus_acres":0.95,"utility_provider":"Seattle City Light","tax_incentives":"Washington offers sales and use tax exemptions for qualifying data centers and tenants (RCW 82.08.986). Eligibility involves investment and job-creation thresholds. As of July 1, 2026, exemptions for equipment replacement/refurbishment are curtailed.","natural_hazard_zone":"Moderate-to-high seismic risk (Cascadia Subduction Zone and Seattle Fault) with mapped liquefaction-prone areas; some flood risk in Downtown Seattle."},"707":{"description":"Digital Realty plans a six-story, network-dense colocation data center at 301 Virginia St / 1930 3rd Ave in downtown Seattle, with four data-center floors plus R&D/lab, office, and ground-floor retail space.","verified_status":"planned","power_capacity_mw":0,"total_sqft":380000,"year_online":"unknown","construction_update":"May 29, 2026: Digital Realty filed permits to demolish the existing retail/parking structure and build a six‑story, ~380,000 sq ft data center with R&D/office/retail at 301 Virginia / 1930 3rd Ave; subsequent reports note demolition and construction could start thereafter, subject to conditions.","recent_news":"On June 9, 2026, the Seattle City Council adopted a one‑year moratorium on new large data centers, effective immediately (with an optional six‑month extension), temporarily pausing applications and reviews while the city studies impacts.","notable_tenants":"","verified_name":"Digital Realty 301 Virginia Street","verified_operator":"Digital Realty","verified_owner":"Clise Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; proximity to Digital Realty SEA10 (Westin Building) with access to major carriers and SIX (Seattle Internet Exchange); carrier-neutral Meet-Me Rooms available at SEA10","num_buildings":1,"campus_acres":0.64,"utility_provider":"Seattle City Light","tax_incentives":"Washington State retail sales and use tax exemption for qualifying data centers (RCW 82.08.986), per WA Department of Revenue guidance; eligibility depends on meeting statutory criteria.","natural_hazard_zone":"Seismic zone with potential liquefaction; likely FEMA Flood Zone X (minimal flood hazard) for this inland downtown location"},"708":{"description":"KOMO Plaza (formerly Fisher Plaza) is an operational two‑building carrier hotel and colocation/office/retail complex at 140 4th Avenue North in Seattle, owned by GI Partners and operated by GI Property Management, notable for carrier‑neutral connectivity within a 294,000 sq ft footprint.","verified_status":"operational","power_capacity_mw":16,"total_sqft":294000,"year_online":"2003","construction_update":"","recent_news":"","notable_tenants":"Evocative SEA1 (2nd floor of KOMO Plaza); media tenants include Univision Seattle, KVI Radio, and Star 101.5; carrier meet‑me ecosystem includes AT&T, Bell Canada/BCE Nexxia, CenturyLink/Lumen, Cogent, Comcast, Frontier, GCI, Integra/Electric Lightwave (plus others).","verified_name":"KOMO Plaza (formerly Fisher Plaza)","verified_operator":"GI Property Management","verified_owner":"GI Partners (via affiliate GI TC Seattle LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; meet-me room with 15+ carriers","num_buildings":2,"campus_acres":1.91,"utility_provider":"Seattle City Light","tax_incentives":"Washington state retail sales and use tax exemption available for qualifying data centers and their tenants; site-specific applicability not confirmed.","natural_hazard_zone":"Seismic Zone 3 Essential Facility"},"709":{"description":"Evocative SEA1 is an operational colocation data center operated by Evocative on the 2nd floor of KOMO Plaza at 140 4th Avenue North in Seattle, a multi‑use carrier‑hotel complex owned by GI Partners.","verified_status":"operational","power_capacity_mw":4.5,"total_sqft":40000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Evocative SEA1 (Seattle Data Center)","verified_operator":"Evocative","verified_owner":"GI Partners","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral (multiple carriers via KOMO Plaza’s diverse fiber entries and direct carrier access)","num_buildings":2,"campus_acres":1.9,"utility_provider":"Seattle City Light","tax_incentives":"Washington retail sales and use tax exemption for qualifying data centers (RCW 82.08.986); SEA1 eligibility/claim status not publicly confirmed.","natural_hazard_zone":"Seismic Zone 3 Essential Facility"},"710":{"description":"TierPoint Seattle at KOMO Plaza is an operational colocation data center offering secure colocation space, connectivity, and managed IT services, with 33,000+ total square feet and 25,000+ square feet of raised floor. The facility resides within GI Partners–owned KOMO Plaza (formerly Fisher Plaza), a 294,000‑square‑foot, two‑building telecom/data center complex.","verified_status":"operational","power_capacity_mw":3.5,"total_sqft":33000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Seattle Data Center (SEA) at KOMO Plaza","verified_operator":"TierPoint","verified_owner":"GI Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral (carrier hotel); long- and short-haul carriers and dark fiber providers on-site","num_buildings":2,"campus_acres":1.91,"utility_provider":"Seattle City Light","tax_incentives":"Washington retail sales/use tax exemption is available for qualifying data centers/tenants in nonrural counties (including Seattle); no facility-specific exemption certificate located.","natural_hazard_zone":"Earthquake/seismic risk; central Seattle includes liquefaction-prone areas; exact FEMA flood zone for 140/100 4th Ave N not determined here."},"711":{"description":"H5 Data Centers’ Seattle facility at 1000 Denny Way is a 293,000‑square‑foot colocation and carrier‑hotel site operated by H5 Data Centers, noted for dense connectivity with 40+ on‑site carriers. It sits a few blocks from Seattle’s Westin Building hub.","verified_status":"operational","power_capacity_mw":30,"total_sqft":293000,"year_online":"2017","construction_update":"","recent_news":"June 9, 2026: Seattle City Council adopted an emergency moratorium/policy framework to prevent siting of large data centers in Seattle; the item does not name this existing H5 facility.","notable_tenants":"Level 3 (Lumen); Ziply Fiber; 40+ on-site carriers (carrier hotel).","verified_name":"H5 Data Centers Seattle","verified_operator":"H5 Data Centers","verified_owner":"H5 Capital-Seattle Real Estate, LLC","cooling_type":"unknown","tier_level":"Tier III (design standard; not an Uptime certification)","fiber_providers":"Carrier-neutral; presence of multiple networks (e.g., Level(3)/Lumen at 1000 Denny Way) and 55 companies listed; near the Westin Building and SIX.","num_buildings":1,"campus_acres":1.38,"utility_provider":"Seattle City Light","tax_incentives":"Washington offers a retail sales and use tax exemption for qualifying data centers/tenants (RCW 82.08.986); no public confirmation that this specific facility utilizes the incentive.","natural_hazard_zone":"Seismic risk area; the buildings at 121 Boren Ave N / 1000 Denny Way were seismically retrofitted in 2003."},"712":{"description":"Lumen Seattle is a Lumen‑operated telecom/data‑center suite on the 4th floor of 1000 Denny Way inside H5 Data Centers’ carrier‑neutral facility; H5 owns and markets the 293,000‑SF building.","verified_status":"operational","power_capacity_mw":30,"total_sqft":293000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Lumen/Level 3 (operator/tenant suite on the 4th floor), Verizon, Ziply Fiber.","verified_name":"Lumen Seattle 1 (1000 Denny Way), within H5 Data Centers Seattle","verified_operator":"Lumen Technologies","verified_owner":"H5 Capital–Seattle Real Estate (affiliated with H5 Data Centers)","cooling_type":"hybrid","tier_level":"Tier III design","fiber_providers":"carrier-neutral; 40+ on-net carriers (examples: Lumen/Level 3, Ziply Fiber, SIX, Hurricane Electric, Wave Business, Verizon/XO, CenturyLink, AWS/Azure on-ramps via partners)","num_buildings":1,"campus_acres":1.38,"utility_provider":"Seattle City Light","tax_incentives":"","natural_hazard_zone":"High seismic/liquefaction risk area; FEMA flood zone not confirmed"},"713":{"description":"Equinix SE4 is an operational Equinix IBX colocation data center at 6906 South 204th Street, Kent, Washington. Equinix lists 75,003 ft² of colocation space; directories report 108,336 total SF and about 12 MW total capacity, with 8.925 MW currently commissioned.","verified_status":"operational","power_capacity_mw":12,"total_sqft":108336,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix SE4","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"air-cooled","tier_level":"Tier II equivalent","fiber_providers":"carrier-neutral; CenturyLink (Lumen), Verizon","num_buildings":0,"campus_acres":0,"utility_provider":"Puget Sound Energy (PSE)","tax_incentives":"Washington State retail sales and use tax exemption for qualifying data center equipment and power infrastructure.","natural_hazard_zone":"Outside 100- and 500-year floodplains"},"714":{"description":"EdgeConneX SEA01 (EDCSEA01) is an operational, carrier-neutral Edge Data Center operated by EdgeConneX at 3425 S 116th Street, Building 6, Suite 133, in the Seattle/Tukwila market. It is a purpose-built colocation site designed for low-latency content and application delivery.","verified_status":"operational","power_capacity_mw":4.5,"total_sqft":47000,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX SEA01 (EDCSEA01)","verified_operator":"EdgeConneX","verified_owner":"Northwest Building LLC","cooling_type":"air-cooled","tier_level":"Tier III designed","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Puget Sound Energy","tax_incentives":"Washington’s data center sales and use tax exemptions (RCW 82.08.986) apply to qualifying projects; King County’s program requires large floor area and other criteria. Given SEA01’s 47,000 sq ft, it likely does not qualify for the King County-sized exemption.","natural_hazard_zone":"Seismic zone (Seattle Fault and Cascadia Subduction Zone influence in the Puget Sound region)"},"715":{"description":"SDC Seattle – Building A is a Sabey Data Centers-operated colocation facility at 3411 S 120th Pl in Tukwila, WA, part of the SDC Seattle (Intergate.East) campus. The campus is described as the West Coast’s largest privately owned data center hub with 54MW campus power.","verified_status":"operational","power_capacity_mw":28,"total_sqft":98564,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SDC Seattle - Building A","verified_operator":"Sabey Data Centers","verified_owner":"International Gateway East LLC","cooling_type":"unknown","tier_level":"Tier-3 type (not Uptime certified)","fiber_providers":"carrier-neutral; 20+ carriers","num_buildings":6,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"Washington retail sales and use tax exemption for qualifying data centers and tenants under RCW 82.08.986/82.12.986.","natural_hazard_zone":"Seismic hazard area; FEMA flood zone not determined"},"716":{"description":"SDC Seattle – Building B is an operational Sabey Data Centers colocation facility at 3311 S 120th Pl in Tukwila (listed as SDC East Building 2 within the Intergate East campus), with about 108,000 sq ft and 28.8 MW at the building level, within Sabey’s ~54 MW Seattle campus.","verified_status":"operational","power_capacity_mw":28.8,"total_sqft":108000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"DataBank (SEA2) at 3311 South 120th Place, Suite #120, Tukwila.","verified_name":"SDC East Building 2 (also known as SDC Seattle - Building B)","verified_operator":"Sabey Data Centers","verified_owner":"Sabey Data Center Properties LLC","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral; 20+ campus carriers including Lumen, Zayo, Ziply, Cogent, Astound, Comcast, Megaport, The SIX; building-specific listings also include HopOne, Level 3/CenturyLink, ELI/Integra, SpectrumNet, AboveNet, and XO Communications","num_buildings":0,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"Washington’s retail sales and use tax exemption exists for qualifying data centers/tenants; no facility-specific exemption documentation for this Tukwila building was found.","natural_hazard_zone":"Seismic liquefaction susceptibility and general floodplain exposure (Tukwila area); exact FEMA flood-zone for 3311 S 120th Pl not verified."},"717":{"description":"A multi-tenant colocation data center at 3333 S 120th Place in Tukwila, operated by Sabey Data Center Properties LLC as part of the SDC Seattle (Intergate.East) campus; this building is also referenced as SDC Seattle East 3.","verified_status":"operational","power_capacity_mw":28,"total_sqft":248000,"year_online":"unknown","construction_update":"Oct 17, 2025: Sabey reported SDC Seattle had 3.5 MW available and 12 MW coming online in 2027; Apr 23, 2025: Sabey announced a 30 MW Pacific Northwest expansion with 6 MW slated for Seattle in Q4 2025.","recent_news":"","notable_tenants":"","verified_name":"SDC Seattle - Building C","verified_operator":"Sabey Data Centers","verified_owner":"Sabey Data Center Properties LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 20+ carriers","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Washington state retail sales and use tax exemption for qualifying data centers (expanded to urban counties in 2022); no facility-specific award identified.","natural_hazard_zone":"Outside FEMA/Army Corps flood areas per Sabey statement (2009); regional seismic exposure (Puget Sound)."},"718":{"description":"SDC Seattle – Building D is a Sabey-operated colocation data center at 3433 S 120th Place in Tukwila, WA, within the SDC Seattle campus. The campus offers 54 MW of capacity and 20+ carriers, with this building commonly referenced in directories as “Seattle East 4.”","verified_status":"operational","power_capacity_mw":0,"total_sqft":114000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SDC Seattle - Building D","verified_operator":"Sabey Data Centers","verified_owner":"Sabey Data Center Properties LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 20+ carriers","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Washington sales and use tax exemption for nonrural data centers is available to qualifying owners/tenants (application required).","natural_hazard_zone":"Outside 500-year floodplain; seismic zone 2B"},"719":{"description":"SDC Seattle - Building E is a Sabey Data Centers colocation facility on Sabey’s SDC Seattle (Intergate.East) campus at 3355 35th Ave S, Tukwila, WA. The flagship campus offers single- or multi-tenant buildings and totals about 1.2 million sq ft with access to ~54 MW of power.","verified_status":"operational","power_capacity_mw":6,"total_sqft":0,"year_online":"2025","construction_update":"2025-12-01: 6 MW of tier-3 type critical power scheduled to come online at SDC Seattle.","recent_news":"","notable_tenants":"","verified_name":"SDC Seattle - Building E","verified_operator":"Sabey Data Centers","verified_owner":"International Gateway East LLC","cooling_type":"unknown","tier_level":"Tier III standard equivalent","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"Washington state retail sales and use tax exemption for qualifying data centers/tenants; broader reporting covers WA data center tax incentives and impacts.","natural_hazard_zone":"Flood: assessed via FEMA flood maps; Seismic/liquefaction: King County mapping indicates liquefaction susceptibility in Tukwila."},"720":{"description":"DataBank SEA2 – SeaTac is an operational colocation data center operated by DataBank at 3311 South 120th Place, Suite #120, Tukwila, WA, within Sabey’s Intergate East campus. The site lists 28,240 IT square feet, 3MW of critical IT load, and 16 onsite carriers.","verified_status":"operational","power_capacity_mw":3,"total_sqft":28240,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank SEA2 - SeaTac","verified_operator":"DataBank","verified_owner":"Sabey Data Center Properties LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 16 onsite carriers","num_buildings":0,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"Washington state retail sales and use tax exemption for qualifying data centers and tenants (equipment and power infrastructure) subject to eligibility.","natural_hazard_zone":"Seismic hazard area; local flood exposure (Green/Duwamish River corridor) — check parcel-specific FEMA FIRM for precise zone."},"721":{"description":"CherryRoad SEA2 is an operational colocation data center run by CherryRoad Technologies (via Superb/HopOne) at 3311 South 120th Place, Tukwila, within Sabey’s SDC East campus. The CherryRoad footprint lists about 6,500 sq ft of raised floor and access to ~1.5 MW of generator power, distinct from larger same-address space associated with Sabey or DataBank.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":6500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CherryRoad SEA2","verified_operator":"CherryRoad Technologies","verified_owner":"Sabey Data Center Properties LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 20+ carriers on campus","num_buildings":0,"campus_acres":27.5,"utility_provider":"","tax_incentives":"Washington State retail sales and use tax exemption for qualifying data centers and their tenants; program expanded in 2022 to include urban counties (e.g., King County) and extended to 2048.","natural_hazard_zone":"Flood and seismic risk (Green/Duwamish River flooding exposure; regional liquefaction hazard in seismic events)."},"722":{"description":"Centersquare Seattle SEA1‑A (marketed as Tukwila SEA1) is an operational, carrier‑neutral colocation facility operated by Centersquare Data Centers at 12301 Tukwila International Boulevard in Tukwila, WA. It is near Sea‑Tac and I‑5, and the operator’s spec lists 10.8 MW of UPS capacity.","verified_status":"operational","power_capacity_mw":10.8,"total_sqft":103809,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare Seattle SEA1-A","verified_operator":"Centersquare Data Centers (Csquare)","verified_owner":"Sabey Data Center Properties LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; multiple Tier-1 ISPs and dark fiber providers","num_buildings":1,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"Washington retail sales and use tax exemption for qualifying data centers and tenants; no confirmation this facility claimed it","natural_hazard_zone":"Flood risk near Green/Duwamish River; FEMA zone for parcel not confirmed"},"723":{"description":"Centersquare Seattle SEA1-B is an operational colocation and interconnection facility operated by Centersquare Data Centers in Tukwila, WA. A carrier on-net listing confirms the site as “Centersquare SEA1-B” at 3355 South 120th Place.","verified_status":"operational","power_capacity_mw":4,"total_sqft":80891,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare / Centersquare Seattle SEA1-B","verified_operator":"Centersquare Data Centers (Csquare)","verified_owner":"Sabey Data Center Properties LLC / Sabey Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; example provider confirmed: Cogent","num_buildings":1,"campus_acres":12.25,"utility_provider":"","tax_incentives":"Washington state sales and use tax exemption is available for qualifying data centers/tenants; note scheduled changes/sunsets in 2026 for certain refurbishment/replacement provisions.","natural_hazard_zone":"Outside flood-prone areas per Sabey statement; seismic Zone 3 design context"},"724":{"description":"An operational Centersquare colocation data center at 6101 S 180th St in Tukwila (SEA2), noted as ENERGY STAR-certified, with listed utility capacity of 8.6 MW and 29,279 sq ft of white space.","verified_status":"operational","power_capacity_mw":8.6,"total_sqft":72000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare Tukwila SEA2 Data Center (SEA2-A)","verified_operator":"Centersquare Data Centers (Csquare)","verified_owner":"DCCO TUKWILA LLC","cooling_type":"unknown","tier_level":"Tier III (design standard; not Uptime-certified in public sources)","fiber_providers":"Cogent (on-net); carrier-neutral with multiple providers","num_buildings":1,"campus_acres":0,"utility_provider":"Puget Sound Energy (PSE)","tax_incentives":"","natural_hazard_zone":"Flood risk (Green River floodplain area) and regional seismic risk; no hurricane exposure"},"725":{"description":"Digital Fortress South Seattle / TUK is an operational, carrier-neutral colocation facility operated by Digital Fortress at 12101 Tukwila International Blvd., Suite 410, in the Intergate West campus area; the Tukwila NOC totals 45,600 sq ft.","verified_status":"operational","power_capacity_mw":4,"total_sqft":45600,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"PeakColo (2012). No current publicly listed anchor tenants for TUK.","verified_name":"Digital Fortress South Seattle (Tukwila) Data Center (TUK)","verified_operator":"Digital Fortress","verified_owner":"Sabey Data Center Properties LLC (Sabey Data Centers)","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"Washington State sales/use tax exemptions for qualifying data centers and tenants (including nonrural program) are available; no facility‑specific award identified.","natural_hazard_zone":""},"726":{"description":"Colocation/data center at 12201 Tukwila International Boulevard, Suite 200, within Sabey’s Intergate/SDC Seattle West campus; formerly Zayo/zColo, it has been operated by DataBank since Zayo’s 2020 divestiture, with Zayo remaining on‑net as a carrier.","verified_status":"operational","power_capacity_mw":0.82,"total_sqft":240000,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Zayo Seattle, Washington","verified_operator":"Zayo","verified_owner":"Sabey Data Center Properties LLC","cooling_type":"evaporative","tier_level":"Tier III equivalent design","fiber_providers":"Carrier-neutral; multiple fiber providers (examples commonly present on campus include Zayo, Lumen, Cogent, Comcast, Ziply, Astound, Megaport, The SIX, PacketFabric).","num_buildings":3,"campus_acres":0,"utility_provider":"","tax_incentives":"Washington State retail sales and use tax exemption for qualifying data centers and tenants (RCW 82.08.986/related guidance); partial repeal effective July 1, 2026 eliminates the exemption for replacement/refurbishment of old server equipment.","natural_hazard_zone":"Seismic risk zone (earthquake-prone area near Seattle Fault/Cascadia Subduction Zone)."},"727":{"description":"Wowrack Tukwila (SEA1) is Wowrack’s operational Seattle-area colocation facility and U.S. headquarters at 12201 Tukwila International Blvd #100, located within Sabey’s Intergate.West (SDC Seattle West) campus. The site is listed at 18,000 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":3,"total_sqft":18000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"Denali Federal Credit Union","verified_name":"Wowrack Tukwila (Seattle Data Center #1)","verified_operator":"Wowrack (Wow Technologies, Inc.)","verified_owner":"Sabey Data Center Properties LLC (Sabey Data Centers)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 20+ carriers","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Washington retail sales and use tax exemption is available for qualifying data centers/tenants.","natural_hazard_zone":"Seismic risk area; FEMA flood zone undetermined"},"728":{"description":"ColoCrossing SEA1 is an operational colocation facility operated by ColoCrossing at 12201 Tukwila International Blvd within Sabey’s Intergate.Seattle West campus. It is notable for approximately 10 MW of built-out power and about 18,000 sq ft of whitespace.","verified_status":"operational","power_capacity_mw":10,"total_sqft":18000,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ColoCrossing SEA1 (ColoCrossing Seattle)","verified_operator":"ColoCrossing","verified_owner":"Sabey Data Center Properties LLC (Sabey Data Centers)","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":0,"utility_provider":"","tax_incentives":"Potentially eligible for Washington’s nonrural data center sales-and-use tax exemption for qualifying purchases (effective June 9, 2022). Facility-specific certificate not found.","natural_hazard_zone":"Flood risk context noted for Tukwila; Sabey previously stated its campus is outside projected inundation areas tied to upstream dam issues. Exact FEMA zone for 12201 not determined."},"729":{"description":"Zenlayer SEA1 is a Zenlayer-listed colocation presence at 3433 South 120th Place in Tukwila, housed within Sabey Data Centers’ SDC Seattle East 4 facility. Third‑party address‑specific listings report approximately 116,000 sq ft and 2.4 MW of critical power available at this site.","verified_status":"operational","power_capacity_mw":2.4,"total_sqft":116000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Zenlayer SEA1 Seattle","verified_operator":"Zenlayer","verified_owner":"Sabey Data Center Properties LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral; 20+ carriers","num_buildings":0,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"Washington’s retail sales and use tax exemption for qualifying data centers and tenants (RCW 82.08.986/82.12.986) applies; SB 6231 (2026) ends the exemption for replacing/refurbishing equipment effective July 1, 2026, while new qualifying data centers can still apply.","natural_hazard_zone":"Outside FEMA 100-year floodplain; Seismic Zone 3 (area context)"},"730":{"description":"A former small colocation facility at 1300 SW 7th St, Suite 112 (Renton/Tukwila, WA) historically operated by WORLDLINK/Pacific Internet and listed by directories at about 1 MW; an April 2026 leasing flyer shows Suite 112 available, indicating the data-center use has ceased.","verified_status":"decommissioned","power_capacity_mw":1,"total_sqft":5954,"year_online":"unknown","construction_update":"","recent_news":"April 2026: Colliers’ Oakesdale Center flyer lists Building E, Suite 112 (1300 SW 7th St) as \u0000b15,954 RSF available for lease, conflicting with older directory listings of an operational data center.","notable_tenants":"","verified_name":"Pacific Internet South Datacenter (also listed as WORLDLINK Seattle Data Center #2 / WORLDLINK Seattle South)","verified_operator":"Pacific Internet / Worldlink Inc.","verified_owner":"B33 OAKESDALE II LLC (Bridge33 Capital)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":7.78,"utility_provider":"Puget Sound Energy (PSE)","tax_incentives":"Washington state sales and use tax exemption for qualifying data centers/tenants (RCW 82.08.986/82.12.986) — applicability subject to program criteria; no facility-specific incentive found.","natural_hazard_zone":"Flood risk area (per FEMA/King County floodplain resources) and high seismic risk region (Seattle/Cascadia faults)."},"731":{"description":"Operational colocation data center at 4200 194th St SW in Lynnwood, WA, long marketed by Digital Fortress as the North Seattle site (6 MW N+1, 34,600 sq ft), and now a 10MW standalone facility under Chirisa Technology Parks ownership.","verified_status":"operational","power_capacity_mw":10,"total_sqft":47820,"year_online":"2006","construction_update":"Jan 22, 2024: CTP announced acquisition and refit for AI workloads with an initial edge deployment; a 2025 refit/edge installation is later noted.","recent_news":"","notable_tenants":"HostPapa SEA1 is listed at 4200 194th St SW; Megaport connectivity is available at the facility; Chirisa/CTP disclosed an unnamed AI-focused customer for an initial edge deployment and noted a former unnamed hyperscale tenant.","verified_name":"Digital Fortress: North Seattle - Lynnwood (SEA1)","verified_operator":"Digital Fortress","verified_owner":"Chirisa Investments (via Chirisa Technology Parks)","cooling_type":"unknown","tier_level":"Tier III (equivalent design)","fiber_providers":"AWS Direct Connect; Seattle Internet Exchange peering","num_buildings":1,"campus_acres":1.54,"utility_provider":"Snohomish County PUD","tax_incentives":"Washington State sales and use tax exemption may be available to qualifying data center businesses/tenants.","natural_hazard_zone":""},"732":{"description":"Centersquare SEA3-A (Lynnwood SEA3) is an operational carrier-neutral colocation data center at 17300 Highway 99, Lynnwood, Washington, operated by Centersquare. It serves the Seattle–Everett corridor in a roughly 103,920 sq ft facility.","verified_status":"operational","power_capacity_mw":17.3,"total_sqft":103920,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare Lynnwood SEA3 Data Center","verified_operator":"Csquare (Centersquare Data Centers)","verified_owner":"","cooling_type":"chilled water","tier_level":"Tier 3 equivalent / graded","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Snohomish County Public Utility District (SnoPUD)","tax_incentives":"Washington State sales/use tax exemption for qualifying data centers and tenants under RCW 82.08.986 / 82.12.986; facility-specific usage not identified.","natural_hazard_zone":"Outside 100-year and 500-year floodplains; Seismic Zone 3"},"733":{"description":"A small Lumen-operated colocation/data-center facility at 22722 29th Drive SE in Bothell, WA, originally opened by tw telecom and later integrated into Lumen’s portfolio after industry acquisitions; it offers a modest ~1,900 sq ft colocation footprint.","verified_status":"operational","power_capacity_mw":0.16,"total_sqft":1900,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Seattle 5 (Bothell) (aka Lumen Bothell; formerly tw telecom Bothell)","verified_operator":"Lumen Technologies","verified_owner":"ARE SEATTLE NO 44 HOLDING LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; Lumen on-net; dual fiber entrances","num_buildings":1,"campus_acres":8.46,"utility_provider":"Snohomish County PUD","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE"},"734":{"description":"WORLDLINK Seattle Data Center #1 is a WORLDLINK-operated colocation facility at 22522 29th Dr SE in Bothell, WA, commonly referred to as the North/Seattle North site and listed as active in data center directories.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"WORLDLINK – Seattle Data Center #1","verified_operator":"WORLDLINK (also operating as Pacific Internet / Pacific Colocation)","verified_owner":"Alexandria Real Estate Equities, Inc. (ARE)","cooling_type":"air-cooled","tier_level":"Tier III infrastructure","fiber_providers":"Carrier neutral – Level 3, Cogent, Sprint, Savvis, MCI/UUnet, AboveNet, Time Warner; connected to Westin POP meet-me-room and Seattle Internet Exchange (SIX)","num_buildings":1,"campus_acres":3.27,"utility_provider":"Snohomish County PUD","tax_incentives":"Washington sales and use tax exemption for qualifying data centers; exemption for equipment replacement/refurbishment ended July 1, 2026 (SB 6231)","natural_hazard_zone":"Seismic zone (earthquake risk); also exposed to landslide, flooding, and volcanic hazards"},"735":{"description":"Colocation data center at 3301 Monte Villa Pkwy in Bothell, WA, operated by Kanobe LLC/Bothell Data Services; it sits within the Monte Villa Farms campus where a Wowrack Bothell presence is also noted.","verified_status":"operational","power_capacity_mw":3,"total_sqft":100000,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Bothell Data Services","verified_operator":"Kanobe LLC (Bothell Data Services)","verified_owner":"Alexandria Real Estate Equities, Inc. (ARE)","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; Spectrum","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Washington data center sales/use tax exemption exists (RCW 82.08.986), but eligibility for this facility is not confirmed.","natural_hazard_zone":"FEMA Flood Zone X (low flood risk); regional seismic risk present; described as outside FEMA floodplain"},"736":{"description":"An operational, multi-tenant colocation data center in Redmond, WA operated by Colocation Northwest, offering 2,500 ft² of retail colocation space with 42U cabinets up to 10 kW. The operator’s product sheet lists a 250 kW site capacity.","verified_status":"operational","power_capacity_mw":0.25,"total_sqft":4000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"F5 Networks","verified_name":"Colocation Northwest - Redmond (Redmond Data Center)","verified_operator":"Colocation Northwest (IsoFusion)","verified_owner":"Link Logistics (Link Parks), a Blackstone Real Estate affiliate","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; IsoFusion present (others commonly include Lumen, Zayo, Frontier)","num_buildings":1,"campus_acres":0,"utility_provider":"Puget Sound Energy (PSE)","tax_incentives":"Washington retail sales/use-tax exemption for qualifying data centers is available statewide; no site-specific abatement confirmed for this facility.","natural_hazard_zone":"FEMA Flood Zone X (low flood risk) area; notable regional seismic hazard per City of Redmond mapping"},"737":{"description":"A small retail colocation facility in Redmond’s Overlake area operated under ISOMEDIA/IsoFusion’s Colocation Northwest brand, offering about 2,500 sq ft with redundant UPS/generator power and in‑row chilled‑water cooling, divided into two capacity groups totaling roughly 0.275 MW.","verified_status":"operational","power_capacity_mw":0.275,"total_sqft":2500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Colocation Northwest - Redmond Data Center","verified_operator":"Colocation Northwest (IsoFusion)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; redundant fiber ring interconnecting to Seattle/Bellevue/Tacoma carrier hotels","num_buildings":1,"campus_acres":0,"utility_provider":"Puget Sound Energy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (low flood risk); City-identified seismic liquefaction exposure"},"738":{"description":"Microsoft Redmond Ridge (Redmond Ridge 1) is an enterprise data center operated by Microsoft at 23050 NE 102ND ST in unincorporated King County near Redmond, Washington; opened in July 2009, it consolidates servers for Microsoft’s research units and labs.","verified_status":"operational","power_capacity_mw":17,"total_sqft":50615,"year_online":"2009","construction_update":"Sep 30, 2025: King County permit application ADDC25-0580 for REDMOND RIDGE-1 at 23050 NE 102ND ST — Installation of new HVAC equipment.","recent_news":"","notable_tenants":"","verified_name":"Microsoft Redmond Ridge Data Center (Redmond Ridge 1)","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":3.37,"utility_provider":"Puget Sound Energy","tax_incentives":"Washington state data center sales and use tax exemptions under RCW 82.08.986 and RCW 82.12.986; Microsoft has received >$300M in WA data center tax exemptions since 2018 (site-specific usage not confirmed).","natural_hazard_zone":""},"739":{"description":"Colocation Northwest’s Bellevue (Eastgate) colocation data center at 15400 SE 30th Place provides a 1 MW facility in an upgraded, multi-tenant setting.","verified_status":"operational","power_capacity_mw":1,"total_sqft":7000,"year_online":"unknown","construction_update":"Commissioned; no leaseable power currently under construction, with plans to add additional leaseable power (per listing).","recent_news":"","notable_tenants":"","verified_name":"Colocation Northwest Bellevue Data Center","verified_operator":"Colocation Northwest","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; connected to Colocation Northwest 180 Gbps dark fiber","num_buildings":1,"campus_acres":0,"utility_provider":"Puget Sound Energy","tax_incentives":"Washington sales and use tax exemption for qualifying data centers/tenants (eligibility-based; not facility-specific).","natural_hazard_zone":"Seismic hazard exposure (earthquake/liquefaction risk in Bellevue); FEMA flood status not determined from provided excerpts."},"740":{"description":"Carrier-owned colocation facility and office operated by Cogent Communications at 32275 32nd Ave S (Seattle market/Federal Way), offering Internet, VPN, Transport, and Colocation services.","verified_status":"operational","power_capacity_mw":5.3,"total_sqft":33223,"year_online":"unknown","construction_update":"","recent_news":"The building housing the site is currently marketed for sale as a “Data Center Investment Opportunity” (Tier III) in 2026; no facility‑specific expansions, new tenants, or regulatory actions were identified in the last six months.","notable_tenants":"","verified_name":"Cogent Seattle Office & Data Center","verified_operator":"Cogent Communications","verified_owner":"Cogent Communications","cooling_type":"chilled water","tier_level":"","fiber_providers":"Cogent, CenturyLink","num_buildings":1,"campus_acres":10.29,"utility_provider":"Puget Sound Energy","tax_incentives":"Washington State data center retail sales and use tax exemptions may apply to eligible facilities (including a King County program) subject to server space, job creation, and certification requirements (RCW 82.08.986; RCW 82.12.986).","natural_hazard_zone":"FEMA low flood risk context (citywide minor risk); Pacific Northwest seismic zone exposure"},"741":{"description":"Cogent Communications operates the Cogent Data Center - Tacoma, a telecom/colocation facility at 2210 South 35th St, Tacoma, WA, offering Internet, VPN, Transport, and Colocation services. Public listings cite approximately 2.3 MW of capacity and about 26,514 sq ft of space.","verified_status":"operational","power_capacity_mw":2.3,"total_sqft":26514,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Tacoma","verified_operator":"Cogent Communications","verified_owner":"Cogent Communications Holdings, Inc. (via subsidiary Cogent Fiber LLC)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Cogent Communications (carrier-neutral, multiple carriers on-site)","num_buildings":1,"campus_acres":1.7,"utility_provider":"Tacoma Power (Tacoma Public Utilities)","tax_incentives":"Washington State data center sales and use tax exemption (RCW 82.08.986) may apply if eligibility criteria are met; note SB 6231 ends exemptions for equipment replacements/refurbishments starting July 1, 2026.","natural_hazard_zone":"Outside FEMA 100-year and 500-year flood zones; low-to-moderate seismic/liquefaction exposure in the Tacoma area within the broader Cascadia subduction zone."},"742":{"description":"Operational, carrier-neutral colocation data center in the historic Perkins Building at 1101 A St, Suite 400, Tacoma, operated by Optic Fusion / Colocation Northwest (IsoFusion) and serving as the operator’s 24/7 Network Operations Center.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Colocation Northwest Tacoma Data Center (Optic Fusion – Perkins Building)","verified_operator":"IsoFusion (Colocation Northwest); Optic Fusion (legacy brand at Perkins Building)","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Tacoma Power (Tacoma Public Utilities)","tax_incentives":"","natural_hazard_zone":"High seismic/liquefaction susceptibility (Tacoma Fault area); FEMA flood zone not confirmed"},"743":{"description":"Operational high‑density colocation data center on Centeris’ South Hill campus at 1023 39th Ave SE (owner: Centeris/Benaroya), where ScaleMatrix offers its Seattle/US‑West 02 services; the site has been upgraded to 24 MW and supports modern, AI/HPC workloads.","verified_status":"operational","power_capacity_mw":24,"total_sqft":80000,"year_online":"2016","construction_update":"Oct 22, 2025: Trade press reported the 24 MW Puyallup data center was for sale; Centeris notes upgrades to 24 MW.","recent_news":"January 21, 2026: Voltage Park merged with Lightning AI; industry coverage lists Puyallup among the company’s data center locations.","notable_tenants":"Voltage Park; ScaleMatrix","verified_name":"ScaleMatrix Seattle Data Center (US-West 02) at Centeris South Hill SH1","verified_operator":"ScaleMatrix","verified_owner":"BENAROYA CAPITAL COMPANY LLC (The Benaroya Company, via Centeris)","cooling_type":"unknown","tier_level":"","fiber_providers":"Comcast, Zayo, Lumen (Level 3)","num_buildings":2,"campus_acres":86,"utility_provider":"Puget Sound Energy (PSE)","tax_incentives":"Washington non-rural (urban) data center sales and use tax exemption for eligible IT and power infrastructure.","natural_hazard_zone":"Regional Mount Rainier lahar hazard context; city flood hazard areas exist; site design notes seismic mitigation (bedrock, exceeds seismic specs)."},"744":{"description":"Centeris South Hill SH2 is an operational data center operated by Centeris at 1015 39th Ave SE on the company’s 86-acre South Hill campus in Puyallup, Washington, a site reported at 24 MW capacity. It serves wholesale and high-density needs within the Greater Seattle region.","verified_status":"operational","power_capacity_mw":24,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"January 2026: Forbes notes Voltage Park merged with the PyTorchLightning/Lightning AI startup to form a full‑stack AI cloud provider.","notable_tenants":"Voltage Park; ScaleMatrix","verified_name":"Centeris – Seattle Data Center SH2 (South Hill Campus)","verified_operator":"Centeris Data Centers","verified_owner":"The Benaroya Company (Benaroya Capital Company LLC)","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":86,"utility_provider":"Puget Sound Energy (PSE)","tax_incentives":"Washington sales and use tax exemption for qualifying urban data centers under HB 1846 (Pierce County eligible for the urban incentive).","natural_hazard_zone":"Seismic (Cascadia Subduction Zone) and regional volcanic lahar risk from Mount Rainier."},"745":{"description":"Equinix SE4 is an Equinix-operated, carrier-neutral colocation data center at 6906 South 204th Street in Kent, Washington, known for a network-rich ecosystem with connectivity to key carriers.","verified_status":"operational","power_capacity_mw":12,"total_sqft":108336,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix SE4 (Seattle SE4) IBX Data Center","verified_operator":"Equinix","verified_owner":"Equinix LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; CenturyLink (Lumen), Verizon","num_buildings":1,"campus_acres":8.6,"utility_provider":"Puget Sound Energy","tax_incentives":"Washington data center sales/use tax exemptions may apply (e.g., eligible server equipment and power infrastructure); program terms changed as of July 1, 2026. No facility-specific award identified.","natural_hazard_zone":"Mapped floodplains per 2020 FEMA FIRM (address-specific zone not confirmed); regional seismic liquefaction susceptibility present."},"746":{"description":"Lumen Seattle 3 (also listed as Seattle 1) is an operational Lumen telecom/colocation data center at 1505 5th Avenue in downtown Seattle. It has about 54,898 sq ft total (18,600 sq ft colocation) and was retrofitted for data center use in 1999.","verified_status":"operational","power_capacity_mw":0,"total_sqft":54898,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Seattle 3 Data Center","verified_operator":"Lumen Technologies","verified_owner":"Goldman Sachs (Broad Street Principal Investments LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; multiple Tier 1 carriers and fiber providers on-net, including Lumen/Level 3 network services","num_buildings":1,"campus_acres":0.3,"utility_provider":"Seattle City Light","tax_incentives":"Washington State sales and use tax exemption on eligible server equipment and power infrastructure for qualifying data centers; policy expanded to include urban areas such as King County (including downtown Seattle), subject to program requirements.","natural_hazard_zone":"Seismic Zone 3 (high seismic risk); FEMA Flood Zone X (minimal-to-moderate flood hazard likely for downtown Seattle)"},"747":{"description":"Lumen Seattle 4 was a small legacy telecom/colocation data center at 223 Taylor Ave N in Seattle, originally a tw telecom site later associated with Lumen, with about 2,000 sq ft of raised floor. The building has since been demolished and redeveloped into the Siteline apartments/mixed-use property, so the facility is decommissioned.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":2000,"year_online":"unknown","construction_update":"Demolition permit for 223 Taylor Ave N was issued May 25, 2021; the site was redeveloped as an 8‑story, 220‑unit apartment building with retail/office/storage (Siteline), replacing the former data center.","recent_news":"","notable_tenants":"","verified_name":"Siteline (current property at 223 Taylor Ave N; former legacy listing: Lumen Seattle 4 / tw telecom)","verified_operator":"None (former data center closed; legacy operator was Lumen Technologies)","verified_owner":"MainStreet Property Group (with partner Grousemont Associates)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.73,"utility_provider":"Seattle City Light","tax_incentives":"","natural_hazard_zone":"low risk"},"748":{"description":"A Verizon-operated telecom/colocation data center at 1100 Second Avenue in downtown Seattle, also listed as “Verizon Seattle 1100 2nd.” The site traces back to a former XO Communications facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon: Seattle 1100 2nd Data Center","verified_operator":"Verizon Communications Inc.","verified_owner":"Unico (via SECOND & SPRING PROPERTY SE; AEW–Unico JV owner of Second & Spring)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.3196,"utility_provider":"Seattle City Light","tax_incentives":"","natural_hazard_zone":"Seismic risk zone (earthquake-prone Seattle); no specific FEMA floodplain exposure cited."},"749":{"description":"Centersquare’s SEA3/SEA3-A Lynnwood is an operational, carrier-neutral colocation data center at 17300 Hwy 99 in Lynnwood, WA, operated by Centersquare following the April 2024 rebrand. It is the Lynnwood SEA3 site situated on Highway 99 serving the greater Seattle/Everett area.","verified_status":"operational","power_capacity_mw":17.3,"total_sqft":103920,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare SEA3-A Lynnwood Data Center","verified_operator":"Centersquare (Csquare)","verified_owner":"Centersquare (Csquare), owned by Brookfield Infrastructure","cooling_type":"unknown","tier_level":"Tier III-equivalent (Tier 3 graded listing; no Uptime certification cited)","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Snohomish County PUD","tax_incentives":"Washington State retail sales and use tax exemption for qualifying data centers and tenants; expanded to include large counties (including Snohomish) subject to statutory criteria.","natural_hazard_zone":"Seismic risk area; nearby Scriber Creek floodplain along Highway 99 indicates localized flood exposure."},"750":{"description":"TierPoint Seattle is an operational colocation data center operated by TierPoint at the KOMO Plaza/Fisher Plaza campus in downtown Seattle, with facility listings placing it at 140 4th Ave N. The site provides secure colocation and related services in a multitenant carrier-hotel environment.","verified_status":"operational","power_capacity_mw":10,"total_sqft":33000,"year_online":"unknown","construction_update":"","recent_news":"June 2026: Seattle enacted a one-year moratorium on creating or expanding large data centers, affecting any new growth citywide, including in the KOMO Plaza area.","notable_tenants":"","verified_name":"TierPoint Seattle Data Center (SEA – Seattle DC1 at KOMO Plaza)","verified_operator":"TierPoint, LLC","verified_owner":"GI Partners (through affiliates)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0.93,"utility_provider":"Seattle City Light","tax_incentives":"Washington provides sales/use tax exemptions for qualifying data centers (including a nonrural program covering King County) subject to statutory eligibility; no facility-specific local abatement identified.","natural_hazard_zone":"Seismic Zone 3; essential-facility design"},"751":{"description":"Colocation Northwest’s Bellevue Data Center is an operational multi-tenant colocation facility in the Eastgate area of Bellevue (3181 156th Ave SE), operated by Colocation Northwest (IsoFusion), featuring 1 MW of capacity and about 4,300 sq ft of space.","verified_status":"operational","power_capacity_mw":1,"total_sqft":4300,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"An unnamed global top-5 video game publisher and distributor occupied the state-of-the-art wing added in the 2018 expansion; no tenant name was publicly disclosed.","verified_name":"Colocation Northwest Bellevue Data Center","verified_operator":"Colocation Northwest","verified_owner":"NCR Building LLC (associated with Martin Selig Real Estate)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; connected to Colocation Northwest’s 180 Gbps dark fiber loop","num_buildings":1,"campus_acres":0,"utility_provider":"Puget Sound Energy (PSE)","tax_incentives":"Washington data center retail sales and use tax exemption for qualifying operators/tenants; limited to six certificates per year in urban counties.","natural_hazard_zone":""},"752":{"description":"Carrier-neutral colocation facility operated by Optic Fusion (an IsoFusion brand) in the historic Perkins Building at 1101 A St, Suite 400 in downtown Tacoma, Washington.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Colocation Northwest – Tacoma (Perkins Building)","verified_operator":"Colocation Northwest (IsoFusion)","verified_owner":"B&H LLC (associated with Gary Bodenstab and Bob Hollister)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; access to multiple networks via the Perkins Building and regional interconnects","num_buildings":1,"campus_acres":0,"utility_provider":"Tacoma Power (Tacoma Public Utilities)","tax_incentives":"City participates in federal Opportunity Zone program; confirm parcel OZ eligibility. No facility-specific incentives found.","natural_hazard_zone":"Regional seismic and modeled tsunami exposure; FEMA flood zone for this parcel not confirmed."},"753":{"description":"Bothell Data Services, operated by Kanobe LLC, is a colocation facility at 3301 Monte Villa Parkway, Suite 125 in Bothell, Washington. It is listed on industry directories at this address and remains an active, small suite within the larger multi-tenant building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"June 24, 2026: BioLife Solutions opened the Aby J. Mathew Center for Biopreservation Excellence in the 3301 Monte Villa Parkway building (building-level, not data-center-specific).","notable_tenants":"","verified_name":"Bothell Data Services – Bothell Data Center (Kanobe LLC)","verified_operator":"Kanobe LLC (operating as Bothell Data Services LLC)","verified_owner":"Alexandria Real Estate Equities, Inc. (via Monte Villa Farms LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Spectrum Networks on-net connection announced","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Outside FEMA floodplain and outside Seattle core earthquake zone (relative lower risk per provider’s siting statement)"},"754":{"description":"Digital Realty CLT10 is an operational, three-story colocation data center at 113 North Myers Street in Charlotte, NC, operated by Digital Realty. It offers a 29,200 ft² footprint with abundant connectivity and sits on a top-priority power grid.","verified_status":"operational","power_capacity_mw":2,"total_sqft":29200,"year_online":"unknown","construction_update":"Oct 21, 2025: Digital Realty acquired and planned to demolish the nearby Court Arcade office building to enable data center expansion on the CLT10 block.","recent_news":"","notable_tenants":"","verified_name":"Charlotte CLT10 - 113 North Myers Street","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc. / Digital Realty","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 25+ cloud and network providers","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Eligible for North Carolina data center sales & use tax exemptions (statewide program).","natural_hazard_zone":""},"755":{"description":"Lumen Charlotte 2 is a Lumen-operated telecom colocation data center at 112 North Myers Street in Charlotte, North Carolina, totaling about 20,000 sq ft with 3,341 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":20000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Charlotte 2 Data Center","verified_operator":"Lumen Technologies","verified_owner":"VYVX INC","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (Level 3)","num_buildings":0,"campus_acres":0.187,"utility_provider":"Duke Energy","tax_incentives":"North Carolina provides data center sales and use tax exemptions; no site-specific incentive identified.","natural_hazard_zone":"unknown"},"756":{"description":"TierPoint Charlotte – North Myers (CL2) is an operational TierPoint colocation data center at 125 North Myers Street in Charlotte, NC. The building at this address is part of Digital Realty’s Charlotte portfolio (CLT11).","verified_status":"operational","power_capacity_mw":3.5,"total_sqft":30600,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Charlotte - North Myers (CL2)","verified_operator":"TierPoint","verified_owner":"Digital Realty","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent, Telia Sonera, tw telecom, Windstream Wholesale","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy","tax_incentives":"North Carolina data center sales & use tax exemptions may apply if eligibility thresholds are met; no facility-specific incentive confirmed.","natural_hazard_zone":""},"757":{"description":"CENTRA Charlotte CLT1 is an operational, carrier-neutral interconnection/colocation facility (carrier hotel) at 701 E Trade St in Charlotte, operated by CENTRA (rebranded from Deep Edge). The official CLT1 sheet lists a 24.9K SF, Tier III design with 2N power/N+1 cooling.","verified_status":"operational","power_capacity_mw":5,"total_sqft":24900,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CENTRA CLT1","verified_operator":"CENTRA Digital Interconnect","verified_owner":"CENTRA (formerly Deep Edge Realty)","cooling_type":"hybrid","tier_level":"Tier III","fiber_providers":"Carrier-neutral; examples include AT&T, AGL Networks, CenturyLink/Lumen, Zayo, GTT, Time Warner Telecom/Spectrum, Verizon, Windstream, Charter; NC-IX present.","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy Carolinas","tax_incentives":"North Carolina data center sales & use tax exemptions (including qualifying data center exemption for electricity and support equipment, and software exemption, subject to statutory investment and employment thresholds).","natural_hazard_zone":""},"758":{"description":"Digital Realty CLT12 is an operational colocation data center at 731 East Trade Street in Charlotte’s First Ward, operated by Digital Realty. It is part of the company’s uptown Charlotte footprint serving enterprise and network customers.","verified_status":"operational","power_capacity_mw":2,"total_sqft":40879,"year_online":"2000","construction_update":"Active development is adjacent to CLT12: the 725 E. Trade redevelopment for a new Digital Realty data center is moving ahead with demolition, and is described as adjacent to the existing CLT10 buildings at 731 E. Trade and nearby addresses.","recent_news":"June 2026: A nearby uptown project is moving ahead with demolition to redevelop for a new Digital Realty data center, while Charlotte enacted a 150‑day moratorium on new data centers that allows existing and already‑approved projects to continue.","notable_tenants":"","verified_name":"Digital Realty CLT12","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; 13 on-net carriers","num_buildings":1,"campus_acres":0.33,"utility_provider":"Duke Energy","tax_incentives":"North Carolina sales & use tax exemptions for qualifying data centers (electricity and data center support equipment; additional software exemption for data centers).","natural_hazard_zone":"FEMA Flood Zone B/X (area of moderate flood hazard)"},"759":{"description":"Digital Realty is developing a four‑story, 12 MW colocation data center at 725 E. Trade St. in uptown Charlotte, replacing the historic Court Arcade building and expanding its footprint near the existing CLT10 site.","verified_status":"under-construction","power_capacity_mw":12,"total_sqft":0,"year_online":"unknown","construction_update":"June 2026: Demolition is moving ahead, with a land‑disturbance permit filed for 725 E. Trade St.; the plan remains a four‑story, 12 MW build replacing the Court Arcade building.","recent_news":"On June 27, 2026, local reporting said the uptown Charlotte data center is moving ahead with demolition, noting a land‑disturbance permit filing for 725 E. Trade St.","notable_tenants":"","verified_name":"Digital Realty: 725 E. Trade","verified_operator":"Digital Realty","verified_owner":"Digital Trade Street 2 LLC (c/o Digital Realty Trust LP)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 725-specific not disclosed. Nearby CLT10 on-net: Windstream Wholesale, Arelion, Cogent Communications.","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy Carolinas","tax_incentives":"North Carolina data center sales & use tax exemptions for qualifying data centers (electricity, equipment, software) subject to thresholds.","natural_hazard_zone":""},"760":{"description":"Lumen operates a telecom colocation/data center known as Lumen Charlotte 1 at 4021 Rose Lake Drive in Charlotte. It is a multi-tenant data center location within the Rose Lake address cluster.","verified_status":"operational","power_capacity_mw":0,"total_sqft":40000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Charlotte 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen; Windstream","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy Carolinas","tax_incentives":"","natural_hazard_zone":""},"761":{"description":"Lumen Charlotte 4 is an operational Lumen telecom/colocation data center at 5001 Airport Center Pkwy in Charlotte, near Charlotte Douglas International Airport, totaling about 19,200 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":19200,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"No third-party anchor tenants or major customers were publicly identified. Property/real-estate listings identify Level 3 Telecom (now part of Lumen) as the occupant/lessee rather than a separate customer.","verified_name":"Lumen Charlotte 4","verified_operator":"Lumen Technologies","verified_owner":"Pacific National Group LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen","num_buildings":1,"campus_acres":2.91,"utility_provider":"Duke Energy","tax_incentives":"North Carolina offers sales & use tax exemptions for qualifying data centers (notably at $75M+ investment); this facility likely does not meet eligibility thresholds.","natural_hazard_zone":"FEMA Flood Zone AE"},"762":{"description":"Segra Charlotte Two (DC74) is an operational Segra colocation data center at 3101 International Airport Drive in Charlotte, NC, opened in 2012 and totaling 28,000 sq ft near Charlotte-Douglas International Airport.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":28000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Segra Charlotte Two Data Center (Charlotte 2)","verified_operator":"Segra","verified_owner":"Segra","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"North Carolina provides statewide data-center sales and use tax exemptions; no facility-specific incentive verified for this site.","natural_hazard_zone":"FEMA Zone X / low flood risk"},"763":{"description":"H5 Data Centers’ Charlotte campus is a 207,000 sq ft mixed-use colocation/data center facility on 28 acres at 10105 David Taylor Drive, with Flexential operating a 62,589 sq ft, 3.3 MW colocation footprint at this address. Third-party listings associate the campus with up to 20 MW capacity, indicating campus-level potential beyond the currently advertised tenant power.","verified_status":"operational","power_capacity_mw":3.3,"total_sqft":207000,"year_online":"unknown","construction_update":"Operational campus; latest development is H5’s March 2026 zoning-verification request regarding additional data-center use near the site. No leaseable power under construction is indicated for the current Flexential footprint; expansion remains prospective.","recent_news":"Mar 12, 2026: H5 sought a zoning verification regarding nearby/adjacent University-area properties for telecom/data-storage uses near the 10105 David Taylor Dr campus. Jun 8, 2026: Charlotte approved a 150-day citywide data-center moratorium (through Nov 5, 2026); existing data centers may continue operating.","notable_tenants":"Flexential (operator/tenant at 10105 David Taylor Drive; 62,589 sq ft, 3.3 MW)","verified_name":"Flexential Charlotte - North","verified_operator":"Flexential","verified_owner":"H5 Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":28,"utility_provider":"Duke Energy","tax_incentives":"North Carolina data centers may qualify for sales and use tax exemptions on electricity and certain equipment, subject to statutory investment thresholds.","natural_hazard_zone":""},"764":{"description":"Planned wholesale data center expansion by H5 Data Centers on land adjacent to its existing campus at 10105 David Taylor Drive in Charlotte’s University Research Park, with H5 exploring zoning for nearby properties to add capacity in the market.","verified_status":"planned","power_capacity_mw":20,"total_sqft":0,"year_online":"unknown","construction_update":"Mar 12, 2026: H5 submitted a zoning verification request to confirm whether two nearby properties are approved for use as a telecommunications/data‑storage facility; no construction start or permits reported.","recent_news":"Mar 12, 2026: H5 submitted a zoning‑verification request to Charlotte for two nearby properties to confirm telecommunications/data‑storage use. Jun 8, 2026: Charlotte City Council approved a 150‑day moratorium on new data centers through Nov 5, 2026 (citywide; H5 not named).","notable_tenants":"","verified_name":"H5 Data Centers Charlotte Expansion (adjacent parcels near 10105 David Taylor Drive)","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":28.7,"utility_provider":"Duke Energy","tax_incentives":"North Carolina provides data center sales and use tax exemptions (e.g., for electricity and qualifying equipment) when statutory thresholds are met.","natural_hazard_zone":""},"765":{"description":"Flexential Charlotte – South is a Flexential-operated colocation data center at 8910 Lenox Pointe Drive B in Charlotte, North Carolina, offering a 66,666-square-foot data center footprint and 2.36 MW of critical power.","verified_status":"operational","power_capacity_mw":2.36,"total_sqft":66666,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Charlotte - South Data Center","verified_operator":"Flexential","verified_owner":"New Forum","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; XO Communications; Cogent","num_buildings":1,"campus_acres":3.07,"utility_provider":"Duke Energy Carolinas","tax_incentives":"North Carolina data center sales and use tax exemptions may apply if statutory thresholds (e.g., $75M investment) are met; no site-specific abatement identified.","natural_hazard_zone":"FEMA Flood Zone X (outside the 100-year floodplain; minimal-to-moderate risk)"},"766":{"description":"Formerly NaviSite Charlotte, the data center at 1612 Cross Beam Drive is no longer operated by NaviSite; after Segra/DC74 began migrating out, it has been marketed for lease as a fully built-out, fiber-dense facility with 18,068 sq ft, 1.5 MW active today, and a path to 5 MW by December 2026.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":18068,"year_online":"2009","construction_update":"Capacity plan: increase from 1.5 MW to 5 MW by December 2026 (via Duke Energy path), per current property specs.","recent_news":"May–June 2026: The 1612 Cross Beam Drive facility is actively listed for lease in Charlotte, with 18,068 sq ft available.","notable_tenants":"","verified_name":"5 MW Charlotte Data Center (Charlotte Data Center)","verified_operator":"Vacant/available for lease (no current operating tenant identified). Legacy operators included NaviSite, DC74/Lumos, and Segra.","verified_owner":"PCA LLC (Piedmont Capital Asset Management)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; on-site meet-me room with metro and long-haul fiber (specific carriers not listed)","num_buildings":1,"campus_acres":1.42,"utility_provider":"Duke Energy","tax_incentives":"Eligible for North Carolina data center sales and use tax exemptions (subject to program requirements).","natural_hazard_zone":""},"767":{"description":"TierPoint Charlotte – Center Park (CL4) is an operational, carrier‑neutral colocation data center operated by TierPoint at 1805 Center Park Drive, Charlotte, NC; the single‑storey facility is owned by Mapletree (Mapletree Redwood Data Centre Trust).","verified_status":"operational","power_capacity_mw":2,"total_sqft":60850,"year_online":"unknown","construction_update":"","recent_news":"Charlotte City Council adopted a citywide data‑center moratorium on June 8, 2026; it doesn’t name this facility and existing data centers may continue operating under the policy.","notable_tenants":"","verified_name":"TierPoint Charlotte - Center Park","verified_operator":"TierPoint","verified_owner":"Mapletree Industrial Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":6.72,"utility_provider":"Duke Energy Carolinas","tax_incentives":"North Carolina data center sales and use tax exemptions for electricity and qualifying support equipment may apply; no facility-specific award identified.","natural_hazard_zone":""},"768":{"description":"Enterprise data center at 7910 Crescent Executive Dr in Charlotte, originally opened by Time Warner Cable in 2012 and now operated by Charter Communications/Spectrum. It is a 178,000-sq-ft facility reported at up to 15 MW utility capacity and served as TWC’s National Data Center East.","verified_status":"operational","power_capacity_mw":15,"total_sqft":178000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Spectrum Charlotte National Data Center","verified_operator":"Charter Communications / Spectrum","verified_owner":"Columbus Circle Indemnity, Inc.","cooling_type":"unknown","tier_level":"Tier III (design standard; no Uptime certification cited)","fiber_providers":"carrier-neutral (telco-owned)","num_buildings":0,"campus_acres":0,"utility_provider":"Duke Energy Carolinas","tax_incentives":"North Carolina awarded a $2.9M JDIG grant for this project; the state also provides data-center sales/use tax exemptions for qualifying investments.","natural_hazard_zone":""},"769":{"description":"GIGA CLT-1 is GIGA Data Centers’ colocation facility at 1035 Mecklenburg Hwy in Mooresville, NC; it opened in 2019 with a 165,800-sq-ft footprint and a design capacity up to 60 MW, and became the first North American data center to achieve OCP Ready status. As of 2026, commercial real-estate listings are marketing the property for sale, indicating a change in operational status.","verified_status":"decommissioned","power_capacity_mw":60,"total_sqft":165800,"year_online":"2019","construction_update":"","recent_news":"June 2026: The 1035 Mecklenburg Hwy property is listed for sale on CREXI and showcased as an industrial property for sale, indicating a change in use/operations.","notable_tenants":"","verified_name":"GIGA CLT-1 (GIGA Charlotte - Mooresville)","verified_operator":"GIGA Data Centers","verified_owner":"","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral; access to eight major long-haul fiber carriers via diverse routes into dual MMRs","num_buildings":1,"campus_acres":21.25,"utility_provider":"Duke Energy","tax_incentives":"Sales and use tax exemption for customers until 2029; property tax rebate up to 80% at the site.","natural_hazard_zone":""},"770":{"description":"PowerHouse Charlotte is a hyperscale data-center campus under development by PowerHouse Data Centers (a division of American Real Estate Partners) in a joint venture with Town Lane on a 122-acre site in north Charlotte, planned for up to five two-story buildings totaling about 1.5M sq ft and up to 300 MW of utility power. The listed address 12899 Moores Chapel Road refers to a separate Digital Realty rezoning/campus, not PowerHouse Charlotte.","verified_status":"under-construction","power_capacity_mw":300,"total_sqft":1500000,"year_online":"2027","construction_update":"Grading is underway on the 122-acre site; earlier guidance targeted vertical construction beginning March 2026 and delivery of the first building in April 2027.","recent_news":"June 4, 2026: Local news reported calls for a city moratorium on data centers citing the five-building, 122-acre PowerHouse Charlotte project; on May 11, 2026, City Council debate coverage noted the first PowerHouse Charlotte center is expected in April 2027.","notable_tenants":"","verified_name":"PowerHouse Charlotte (University City Boulevard campus; 12899 Moores Chapel Road is a separate Digital Realty project)","verified_operator":"PowerHouse Data Centers","verified_owner":"Town Lane and PowerHouse Data Centers joint venture","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; direct access to Tier 1 carriers, local ISPs, and dark fiber providers","num_buildings":5,"campus_acres":122,"utility_provider":"Duke Energy","tax_incentives":"North Carolina statutory data-center sales and use tax exemptions may apply (qualifying data center threshold of at least $75M invested within five years, plus wage/health requirements; separate category for eligible internet data centers). No project-specific local abatement identified.","natural_hazard_zone":"FEMA flood zone for the specific parcel is not confirmed; the University City North area has moderate flood risk at the neighborhood level."},"771":{"description":"QTS York County is a multi-building data center campus under development by QTS in York County (Charlotte market), located at 2143 Hands Mill Hwy near Hands Mill Highway and Campbell Road. County and local reporting describe a phased project with more than $8 billion in long-term investment and an approximate 5.3 million-square-foot buildout.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":5300000,"year_online":"unknown","construction_update":"Construction began in 2025 and is ongoing as of May 14, 2026, with multi-year buildout continuing.","recent_news":"June 2026: York County advanced a nine-month moratorium on new data-center applications (first approval June 15), while reports noted QTS said it continues to advance its permitted York County campus.","notable_tenants":"","verified_name":"QTS York County","verified_operator":"QTS Data Centers","verified_owner":"Blackstone (via Blackstone Infrastructure Partners and Blackstone Real Estate Income Trust/BREIT)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":800,"utility_provider":"York Electric Cooperative (power sourced from Duke Energy via Central Electric Power Cooperative)","tax_incentives":"Fee in Lieu of Taxes (FILOT) approved by York County in 2023; $200,000 Set‑Aside grant from the S.C. Coordinating Council for Economic Development for site preparation.","natural_hazard_zone":"Elevated hurricane/storm risk (York County storm events risk score 42.14%)."},"772":{"description":"Operational colocation data center at 5150 McCrimmon Parkway #423, Morrisville, NC, operated by Flexential and owned via Mapletree’s US data center platform (Mapletree Redwood Data Centre Trust/Mapletree Industrial Trust). Flexential lists a 99,976 sq ft data-center footprint and 4.31 MW of critical power.","verified_status":"operational","power_capacity_mw":4.31,"total_sqft":99976,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Raleigh Data Center","verified_operator":"Flexential","verified_owner":"Mapletree Industrial Trust (MIT)","cooling_type":"unknown","tier_level":"Tier 2 equivalent; no Uptime Institute certification found","fiber_providers":"carrier-neutral; AT&T; Time Warner","num_buildings":3,"campus_acres":12.22,"utility_provider":"Duke Energy Progress","tax_incentives":"","natural_hazard_zone":"low risk"},"773":{"description":"TierPoint Raleigh – RAL is an operational TierPoint colocation data center at 5301 Departure Drive, Raleigh, NC, featuring a 65,000-sq-ft building and five redundant 2,000 kW generators (10 MW standby power).","verified_status":"operational","power_capacity_mw":10,"total_sqft":65000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Corevist (public TierPoint customer testimonial); no anchor tenant publicly disclosed.","verified_name":"TierPoint Raleigh Data Center (RAL)","verified_operator":"TierPoint","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; CenturyLink/Lumen","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy Progress","tax_incentives":"North Carolina data center sales & use tax exemption for qualifying data centers under G.S. 105-164.13(55a); media reference to Tierpoint Properties at 5301 Departure Dr indicates participation/eligibility.","natural_hazard_zone":""},"774":{"description":"Operational LightEdge colocation/hybrid IT data center at 8020 Arco Corporate Drive in Raleigh, NC; opened by OnRamp in 2013 and integrated into LightEdge following the 2018 OnRamp acquisition. Current specs list 11,978 sq ft data center space, 4,836 sq ft whitespace, 0.24 MW critical IT load, and 1.5 MW generator capacity.","verified_status":"operational","power_capacity_mw":0.24,"total_sqft":11978,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"LightEdge Raleigh Data Center","verified_operator":"LightEdge","verified_owner":"American Asset Corporation (AAC)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 4 on-net carriers","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy Progress","tax_incentives":"","natural_hazard_zone":""},"775":{"description":"Segra Raleigh is an operational Segra-operated colocation data center at 2100 Garner Station Blvd. in Raleigh, NC, described by the operator as a 50,000‑square‑foot facility with enterprise certifications and 24x7 operations.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":50000,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"North State Communications retained partial tenancy per a LoopNet sale listing; no publicly named current third-party colocation tenants found.","verified_name":"Segra Raleigh Data Center","verified_operator":"Segra","verified_owner":"DATACHAMBERS LLC","cooling_type":"unknown","tier_level":"Tier III-equivalent; no Uptime Institute certification found","fiber_providers":"carrier-neutral; Segra network; cloud connectivity available (e.g., AWS, Azure) via Segra services","num_buildings":1,"campus_acres":7.59,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Category 3 hurricane-rated facility; FEMA flood-zone designation not determined"},"776":{"description":"American Tower/CoreSite RA1 is an operational edge colocation and interconnection data center at 6011 Chapel Hill Road in Raleigh, NC, serving the Research Triangle. It provides access to CoreSite services including the Any2Exchange/Open Cloud Exchange for low‑latency connectivity.","verified_status":"operational","power_capacity_mw":4,"total_sqft":4000,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"American Tower RA1 - Raleigh Data Center","verified_operator":"American Tower / CoreSite","verified_owner":"American Tower Corporation","cooling_type":"hybrid","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy Progress","tax_incentives":"North Carolina provides three data center sales & use tax exemptions (Qualifying Data Center; Eligible Internet Data Center; Computer Software at a Data Center). Eligibility for RA1 is not publicly confirmed.","natural_hazard_zone":"low risk"},"777":{"description":"Cisco RTP Data Center (RTP1/Raleigh 1) is an enterprise data center operated by Cisco Systems at 7025-1 Kit Creek Rd in Morrisville/Research Triangle Park, NC, featuring about 19,200 sq ft of raised-floor space and ~2.8 MW of power. It is a single-tenant, Tier 2 facility notable for Cisco IT’s dual-purpose use for development/testing and disaster recovery.","verified_status":"operational","power_capacity_mw":2.8,"total_sqft":19200,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"Cisco Systems internal use only / sole-tenant; no publicly listed third-party tenants.","verified_name":"Cisco RTP 1 Data Center (RTP1)","verified_operator":"Cisco Systems","verified_owner":"Cisco Systems","cooling_type":"chilled water","tier_level":"Tier II","fiber_providers":"","num_buildings":1,"campus_acres":300,"utility_provider":"Duke Energy","tax_incentives":"JDIG award eligibility (up to 12 annual grants at 75% of eligible withholdings) and North Carolina data center sales and use tax exemptions for qualifying data centers.","natural_hazard_zone":"low risk"},"778":{"description":"NetActuate’s Cary Data Center is an operational colocation and edge facility at 500 Gregson Dr in Cary, NC, operated by NetActuate. It provides services including cloud and virtual machines.","verified_status":"operational","power_capacity_mw":0,"total_sqft":108000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"NetActuate Cary Data Center","verified_operator":"NetActuate","verified_owner":"Serac Capital Partners, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":24.8,"utility_provider":"Duke Energy Progress","tax_incentives":"North Carolina offers statewide data center sales and use tax exemptions; no evidence this facility specifically receives them.","natural_hazard_zone":""},"779":{"description":"CyrusOne DUR1 (Raleigh‑Durham I) is an operational wholesale/colocation data center at 2223 NE Creek Pkwy, Durham, NC, operated by CyrusOne, spanning more than 420,000 sq ft with 50 MW total IT capacity.","verified_status":"operational","power_capacity_mw":50,"total_sqft":420000,"year_online":"2013","construction_update":"","recent_news":"Durham enacted a 60‑day moratorium on new data‑center plans in early May 2026; coverage did not identify DUR1 as directly affected.","notable_tenants":"","verified_name":"CyrusOne DUR1 (Raleigh-Durham I)","verified_operator":"CyrusOne","verified_owner":"CyrusOne (portfolio company of KKR and Global Infrastructure Partners)","cooling_type":"chilled water","tier_level":"Tier III equivalent","fiber_providers":"carrier-neutral; XO Communications; Level 3 (Lumen Technologies); Time Warner Cable/Spectrum","num_buildings":1,"campus_acres":29.02,"utility_provider":"Duke Energy","tax_incentives":"North Carolina data center sales and use tax exemptions; this Durham facility qualified in 2016 under Sentinel’s application.","natural_hazard_zone":"FEMA Zone X flood zone (low risk)"},"780":{"description":"MCNC operates an RTP data center/telecom colocation facility at 3021 East Cornwallis Road, Building 3, Durham, NC, described as a Tier 3 site with dual power and multiple 10 G uplinks. It provides colocation, data backup and recovery, managed hosting, and virtual machines services with 24x7x365 monitored access.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"MCNC Research Triangle Park Data Center","verified_operator":"MCNC","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"MCNC/NCREN backbone; carrier-neutral; multiple 10 Gig uplinks","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy Progress (Duke Energy)","tax_incentives":"North Carolina provides data center sales & use tax exemptions; no MCNC-specific incentive identified.","natural_hazard_zone":""},"781":{"description":"Caronet (Carolina Internet) operates an operational colocation data center at 900 Center Park Dr. in Charlotte’s Center Park. Listings cite about 116,500 sq ft total (roughly 35,000 sq ft data hall), and the building itself is 117,672 sq ft, built in 2000.","verified_status":"operational","power_capacity_mw":0,"total_sqft":116500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Charlotte Colocation Center (Carolina Internet / CaroNet) – 900 Center Park Drive, Suite A","verified_operator":"Carolina Internet / CaroNet","verified_owner":"","cooling_type":"unknown","tier_level":"Tier II-equivalent (marketing 'Tier 2+'); not Uptime certified","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"North Carolina provides data center sales and use tax exemptions; no facility-specific incentive identified.","natural_hazard_zone":""},"782":{"description":"Caronet Charlotte Data Center (XB) is an operational colocation facility operated by CaroNet/Carolina Internet in Charlotte, NC, offering colocation and cloud/hosting services.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Caronet - Charlotte Data Center (XB)","verified_operator":"Caronet / Charlotte Colocation Center","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; connectivity to multiple carriers and service providers","num_buildings":1,"campus_acres":1.4,"utility_provider":"","tax_incentives":"North Carolina offers sales and use tax exemptions for qualifying data centers; no site-specific award confirmed.","natural_hazard_zone":"unknown"},"783":{"description":"A single‑storey colocation data center at 1400 Cross Beam Drive in Charlotte owned by Mapletree Industrial Trust; directories list it as the “Altos Charlotte NC” site and indicate it is operational, with a building area of about 52,924 sq ft.","verified_status":"operational","power_capacity_mw":2.2,"total_sqft":52924,"year_online":"unknown","construction_update":"","recent_news":"No facility‑specific developments found in the last 6 months. Context: Charlotte enacted a 150‑day moratorium on new data‑center construction on 2026‑06‑08; it targets new projects, not existing facilities.","notable_tenants":"No current anchor tenant is publicly confirmed. Historical reporting notes prior use by Atos and Xerox; ACS/Xerox is also listed at 1400 Cross Beam Dr.","verified_name":"1400 Cross Beam Drive, Charlotte","verified_operator":"Atos IT Solutions and Services Inc.","verified_owner":"Mapletree Industrial Trust (MIT)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":4.18,"utility_provider":"Duke Energy Carolinas","tax_incentives":"North Carolina statewide data-center sales and use tax exemptions for qualifying data centers (electricity and data center support equipment) may apply if eligibility criteria are met; no address-specific local abatement identified.","natural_hazard_zone":"low risk"},"784":{"description":"Operational colocation/dedicated-hosting facility operated by Charlotte Colocation Center at 5821 Fairview Road in Charlotte, NC, featuring dual 130 kVA Liebert UPS systems and a 402 kW standby diesel generator with a 1200A/480V ATS.","verified_status":"operational","power_capacity_mw":1,"total_sqft":50000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Charlotte Colocation Center","verified_operator":"Charlotte Colocation Center LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":4.05,"utility_provider":"Duke Energy Carolinas, LLC","tax_incentives":"Statewide sales and use tax exemptions are available for qualifying data centers in North Carolina; no facility-specific incentive identified.","natural_hazard_zone":""},"785":{"description":"Lumen Raleigh 2 is an operational Lumen telecom/colocation data center at 1918 Wake Forest Road in Raleigh, NC, listed with 8,000 sq ft total space and 2,541 sq ft of colocation space. Multiple directories corroborate the site and its colocation function.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Raleigh 2","verified_operator":"Lumen","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen/Level 3; access to alternate carriers not enumerated","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"786":{"description":"Lumen Raleigh 3 is an operational Lumen (formerly Level 3) telecom/colocation data center at 3440 Tarheel Drive, Suite 105, Raleigh, NC. Public listings report total space between 8,000 sq ft [1] and 12,600 sq ft [3].","verified_status":"operational","power_capacity_mw":0,"total_sqft":8000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Raleigh 3 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (Level 3)","num_buildings":0,"campus_acres":0,"utility_provider":"Duke Energy Progress","tax_incentives":"","natural_hazard_zone":""},"787":{"description":"Segra operates a telecom/colocation data center at 2100 Garner Station Blvd. in Raleigh, NC, providing secure environments for customer equipment on Segra’s network.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":50000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Segra Raleigh Data Center","verified_operator":"Segra","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":7.59,"utility_provider":"","tax_incentives":"North Carolina Data Centers Sales & Use Tax Exemptions (statewide program).","natural_hazard_zone":"Category 3 hurricane-rated (wind exposure). FEMA flood-zone not determined."},"788":{"description":"Operational Cogent Communications colocation/telecom data center (RAL-DC) at 608 W Hargett St, Raleigh, NC, offering 3,954 sq ft with 42U cabinets, multiple power options/UPS and a diesel generator, and connectivity up to 100GE.","verified_status":"operational","power_capacity_mw":0.9,"total_sqft":3954,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Raleigh","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent (on-net); Ethernet/Internet ports up to 100GE; wavelength services available","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy Progress","tax_incentives":"","natural_hazard_zone":""},"789":{"description":"Celito Data Center is a Raleigh, North Carolina facility operated by Celito Communications at 1400 Sunday Drive. It provides data center services to regional customers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":22000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Celito Data Center","verified_operator":"Celito Communications, Inc.","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III","fiber_providers":"Celito owns and operates its own fiber network with access to three additional providers","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy Carolinas","tax_incentives":"North Carolina offers data center sales & use tax exemptions with high investment thresholds; no facility-specific incentives identified.","natural_hazard_zone":"FEMA Zone X (minimal flood risk); moderate inland hurricane/wind exposure for Raleigh"},"790":{"description":"CyrusOne DUR1 is an operational wholesale/colocation data center operated by CyrusOne at 2223 NE Creek Pkwy, Durham, NC, offering more than 420,000 sq ft and around 50 MW of total IT capacity.","verified_status":"operational","power_capacity_mw":50,"total_sqft":420000,"year_online":"2013","construction_update":"As of mid‑2026, DUR1 is commissioned with no leaseable power under construction and no additional leaseable power planned.","recent_news":"May–June 2026: Durham implemented a short-term moratorium and moved toward longer-term restrictions on new data center approvals, while Durham County advanced its own moratorium—regulatory actions impacting new construction/expansion rather than DUR1’s existing operations.","notable_tenants":"","verified_name":"CyrusOne DUR1 (Raleigh-Durham I / Durham, NC)","verified_operator":"CyrusOne","verified_owner":"CyrusOne (owned by funds managed by KKR and Global Infrastructure Partners)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy","tax_incentives":"North Carolina data-center sales and use tax exemptions (e.g., electricity and qualifying support equipment) may apply to eligible data centers under state law.","natural_hazard_zone":"low risk"},"791":{"description":"Colocation data center at 1020 W. College St., Murfreesboro, TN, operated by Data Suites; locally owned and positioned for AI/HPC workloads. Opened in 2018 and listed among operating Middle Tennessee facilities as of 2026.","verified_status":"operational","power_capacity_mw":2,"total_sqft":10000,"year_online":"2018","construction_update":"January 2026: Facility announced a major integration to expand power and cooling across the Data Suites AI Colo Datacenter; powered-shell space with 2 MW at 415V is available for AI/HPC build-outs.","recent_news":"January 2026: Announced a major upgrade to expand power and cooling across the Data Suites AI Colo Datacenter.","notable_tenants":"","verified_name":"Data Suites Murfreesboro","verified_operator":"Data Suites","verified_owner":"","cooling_type":"chilled water","tier_level":"Tier III-ready (not Uptime-certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Middle Tennessee Electric","tax_incentives":"Zero tax dollars and zero incentives reported by the operator.","natural_hazard_zone":"FEMA flood zone undetermined; regional tornado/wind exposure (Middle Tennessee)."},"792":{"description":"Cogent Data Center - Nashville is a telecom colocation facility operated by Cogent Communications at 338 Woodycrest Ave, Nashville, TN, offering about 27,502 sq ft of space and carrier connectivity.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":27502,"year_online":"unknown","construction_update":"Feb 26, 2026: Cogent said it completed converting legacy Sprint sites into data centers; May 26, 2026: I Squared announced an AI inference/edge platform to invest post-close. No Nashville-specific construction start is reported.","recent_news":"May 27, 2026: I Squared Capital agreed to acquire 10 data centers from Cogent, explicitly including 338 Woodycrest Ave, Nashville; the deal was expected to close in Q3 2026.","notable_tenants":"","verified_name":"Cogent Data Center - Nashville","verified_operator":"Cogent Communications, Inc.","verified_owner":"Cogent Fiber, LLC (under definitive agreement to sell to an I Squared Capital–sponsored entity; closing not confirmed as of 2026-06-29)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.8,"utility_provider":"Nashville Electric Service","tax_incentives":"Tennessee data center program: exemptions on qualifying purchases and a reduced 1.5% sales tax rate on electricity for qualified data centers (site-specific qualification not confirmed).","natural_hazard_zone":"Tornado/severe-storm exposure (Middle Tennessee) and New Madrid seismic-zone influence; parcel-specific FEMA flood zone not determined."},"793":{"description":"Carrier-neutral colocation data center at 147 Fourth Avenue N., 8th Floor, Nashville; now operated by H5 Data Centers after acquiring the site from 365 Data Centers in February 2026.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":19700,"year_online":"unknown","construction_update":"","recent_news":"Feb 2026: H5 Data Centers and Novacap formed a JV platform and acquired the Nashville carrier-hotel facility from 365 Data Centers.","notable_tenants":"","verified_name":"HyscaleIX Nashville Carrier Hotel","verified_operator":"H5 Data Centers (operating as HyscaleIX Data Centers)","verified_owner":"Unico Properties LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.67,"utility_provider":"Nashville Electric Service (NES)","tax_incentives":"Tennessee provides sales/use tax exemptions for qualified data centers that invest at least $250 million; a reduced rate may also apply. This site’s scale suggests it likely does not meet the threshold.","natural_hazard_zone":"FEMA Flood Zones B and X (moderate risk; outside the 100-year floodplain)"},"794":{"description":"H5 Data Centers operates an operational colocation facility at 211 Commerce St., Suite 700, Nashville, Tennessee, occupying about 22,000 sq ft on the seventh floor of an 11‑story building built in 2000. H5 acquired the site from vXchnge in 2022.","verified_status":"operational","power_capacity_mw":3,"total_sqft":22000,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"H5 Data Centers Nashville Data Center","verified_operator":"H5 Data Centers","verified_owner":"","cooling_type":"chilled water","tier_level":"Tier III-equivalent","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Nashville Electric Service (NES)","tax_incentives":"Tennessee statewide Qualified Data Center incentives may apply if statutory thresholds are met (e.g., sales/use tax exemptions for qualified data center equipment and a reduced electricity tax rate). No facility-specific confirmation that H5 Nashville has claimed the incentive was found.","natural_hazard_zone":"FEMA flood zone not verified; downtown Nashville faces flood risk per FIRMs and regional severe-weather/tornado hazards; inland (no coastal hurricane exposure)."},"795":{"description":"DataBank operates a colocation/interconnection facility at 209 10th Ave South in Nashville, TN, formerly a zColo site; DataBank closed its acquisition of zColo’s U.S. and U.K. data center assets on Dec 15, 2020. Public listings report a 3.0 MW power capacity for the facility.","verified_status":"operational","power_capacity_mw":3,"total_sqft":11000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Tractor Supply Company (AS27632) is publicly listed as a connected network at the facility; no anchor colocation tenant/customer is explicitly disclosed.","verified_name":"DataBank - 209 10th Ave South","verified_operator":"DataBank","verified_owner":"DZL Management (owner/landlord of Cummins Station at 209 10th Ave S)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Nashville Electric Service (NES)","tax_incentives":"Tennessee Qualified Data Center sales/use-tax incentives exist (including 1.5% electricity tax rate and exemptions for qualifying cooling and backup power infrastructure); applicability to this facility not verified.","natural_hazard_zone":""},"796":{"description":"EdgeConneX NAS01 / EDCNAS01 is an operational edge colocation data center operated by EdgeConneX at 1841 Air Lane Dr., Bldg. 3, Nashville, TN 37210. The facility totals 42,500 sq ft with 9,355 sq ft of raised floor and is ENERGY STAR‑certified.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":42500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX NAS01 Nashville (EDCNAS01)","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Nashville Electric Service (NES)","tax_incentives":"Tennessee Qualified Data Center incentive may apply if certified: sales/use-tax exemptions for qualifying data center equipment and 1.5% reduced electricity sales-tax rate; requires, among other criteria, >$100M capital investment.","natural_hazard_zone":""},"797":{"description":"Lumen Nashville 1 is an operational Lumen Technologies (legacy Level 3) colocation/interconnection facility at 2990 Sidco Drive in Nashville. DataCenterMap lists 9,561 sq ft total space and 3,155 sq ft colocation space, with DC power, generator/battery backup, and N+1 HVAC.","verified_status":"operational","power_capacity_mw":0,"total_sqft":9561,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No anchor tenant/customer is publicly identified for this specific facility; publicly listed network participants at Level(3) Nashville (Sidco Drive) include Comcast, Energy Sciences Network (ESnet), iRis Networks, and Southern Crossroads (SoX).","verified_name":"Lumen Nashville 1","verified_operator":"Lumen Technologies","verified_owner":"LEVEL 3 COMMUNICATIONS, LLC","cooling_type":"air-cooled","tier_level":"Tier III design standard (reported); not Uptime-certified","fiber_providers":"Lumen/Level 3; Southern Crossroads (SoX)","num_buildings":0,"campus_acres":5,"utility_provider":"Nashville Electric Service (NES)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X — Area of Minimal Flood Hazard (SFHA_TF=F)"},"798":{"description":"Lumen Nashville 2 is an operational Lumen Technologies telecom/colocation data center at 2530 Perimeter Place Drive in Nashville, offering a total of 30,400 sq ft of space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":30400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Nashville 2","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":4.14,"utility_provider":"Nashville Electric Service (NES)","tax_incentives":"","natural_hazard_zone":"FEMA flood zone undetermined for this parcel; verify using Metro Nashville FEMA Flood Hazard Areas map."},"799":{"description":"Lumen Nashville 3 is an operational Lumen Technologies telecom/colocation data center at 2208 9th Avenue North in Nashville, Tennessee, with a total footprint of 40,000 sq ft and about 5,719 sq ft of raised-floor colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":40000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Nashville 3","verified_operator":"Lumen Technologies","verified_owner":"Lumen Technologies","cooling_type":"unknown","tier_level":"Tier III-equivalent (not Uptime certified)","fiber_providers":"Lumen (Level 3) backbone; carrier-neutral with cross-connects; ENA present","num_buildings":0,"campus_acres":5.59,"utility_provider":"Nashville Electric Service (NES)","tax_incentives":"Tennessee Qualified Data Center sales and use tax exemption available for eligible projects (>$100M capex and ≥15 new full-time jobs). No confirmation this facility participates.","natural_hazard_zone":"FEMA flood hazard areas present in Metro Nashville (Zone X widely, with nearby Zone AE along waterways); regional moderate seismic and tornado risk."},"800":{"description":"Lumen Berry Hill (Nashville 4) is an operational Lumen Technologies telecom/colocation data center at 708 Melrose Ave in Berry Hill/Nashville, Tennessee, notable for its compact 2,500 sq ft footprint.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Nashville 4 (Lumen Berry Hill)","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Nashville Electric Service (NES)","tax_incentives":"Tennessee offers a sales/use-tax exemption for qualified data centers (minimum $100M investment) and a 1.5% reduced electricity sales-tax rate for qualified facilities; no facility-specific abatement was found.","natural_hazard_zone":"Regional risks: moderate flood exposure (Berry Hill), tornado/severe storms, and Tennessee seismic hazard; no site-specific FEMA flood-zone identified."},"801":{"description":"Verizon Nashville (formerly XO Nashville) at 101 Molloy Street, Suite 300, is an operational telecom/data-center and network-switch facility that Verizon operates following its 2017 acquisition of XO Communications; the building was renovated in 1995–1997 for XO and remains fully occupied by Verizon.","verified_status":"operational","power_capacity_mw":4.53,"total_sqft":55299,"year_online":"1995","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Nashville / XO Nashville","verified_operator":"Verizon","verified_owner":"C.B. Ragland Company (CBR 300 2nd Avenue, LLC)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; access to Verizon/XO metro and long-haul network facilities","num_buildings":1,"campus_acres":0.67,"utility_provider":"Nashville Electric Service (NES)","tax_incentives":"Tennessee offers sales/use tax exemptions for qualified data centers (minimum $100M investment); no facility-specific incentives confirmed.","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard)"},"802":{"description":"Windstream Nashville is a Windstream-operated telecom/colocation facility at 940 3rd Ave North in Nashville offering about 7,200 sq ft of secure colocation space in a SAS 70 Type I / Tier II environment.","verified_status":"operational","power_capacity_mw":0,"total_sqft":9479,"year_online":"unknown","construction_update":"","recent_news":"Property at 940 3rd Ave N listed for sale as of May 20, 2026 on LoopNet; no expansion, new tenant, opposition, or regulatory action specific to the facility found in the last six months.","notable_tenants":"","verified_name":"Windstream Nashville","verified_operator":"Windstream","verified_owner":"Steven E. Wilson","cooling_type":"unknown","tier_level":"Tier II","fiber_providers":"AT&T; XO Communications; Level 3 Communications","num_buildings":1,"campus_acres":0.36,"utility_provider":"Nashville Electric Service (NES)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X / moderate flood hazard"},"803":{"description":"Flexential Nashville - Brentwood is an operational colocation data center operated by Flexential at 7100 Commerce Way, Suite 25, Brentwood, Tennessee, with a 19,150 sq ft footprint and 1.49 MW of power capacity.","verified_status":"operational","power_capacity_mw":1.49,"total_sqft":19150,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Nashville - Brentwood Data Center","verified_operator":"Flexential","verified_owner":"Emerald Investment Management partners and clients (2016 buyer of Cool Springs Commons at 7100 Commerce Way; current owner not confirmed)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":23,"utility_provider":"Middle Tennessee Electric Membership Cooperative (MTE)","tax_incentives":"Tennessee Qualified Data Center sales/use-tax exemption is available statewide for eligible projects; no public evidence of participation by this facility.","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard)"},"804":{"description":"Flexential Nashville - Cool Springs is an operational Flexential colocation data center at 425 Duke Drive, Suite 400, Franklin, Tennessee, with 3.15 MW of critical power. The facility spans approximately 74,679 square feet.","verified_status":"operational","power_capacity_mw":3.15,"total_sqft":74679,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Nashville - Cool Springs Data Center","verified_operator":"Flexential","verified_owner":"Menlo Equities","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; on-net: AT&T, Lumen, Zayo, Comcast Business, Arelion (Telia). Additional listings: Cogent and Windstream.","num_buildings":1,"campus_acres":7.66,"utility_provider":"Middle Tennessee Electric (MTE)","tax_incentives":"State program available: Tennessee Qualified Data Center sales/use tax exemptions and 1.5% reduced sales tax rate on electricity for qualified data centers; no facility-specific award identified.","natural_hazard_zone":""},"805":{"description":"Flexential operates an operational colocation data center at 4600 Carothers Parkway in Franklin, Tennessee, featuring an 80,000-square-foot footprint and 6 MW of critical power. The facility opened in 2016 (then Peak 10) per the Nashville Chamber’s grand opening at this address.","verified_status":"operational","power_capacity_mw":6,"total_sqft":80000,"year_online":"2016","construction_update":"No active construction identified as of 2026. Latest milestones: Jul 22, 2021 permits reported to expand the facility at 4600 Carothers Parkway (Turner Construction); Oct 29, 2019 ribbon-cutting for a 40,000 sq ft expansion.","recent_news":"","notable_tenants":"","verified_name":"Flexential Nashville - Franklin Data Center","verified_operator":"Flexential","verified_owner":"Mapletree Industrial Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent (on-net)","num_buildings":1,"campus_acres":0,"utility_provider":"Middle Tennessee Electric","tax_incentives":"Tennessee Qualified Data Center sales/use-tax exemption with a reduced 1.5% electricity tax rate may be available to certified facilities.","natural_hazard_zone":""},"806":{"description":"TierPoint Nashville (NSH) is an operational colocation data center operated by TierPoint at 311 Eddy Lane in Franklin, Tennessee, serving the greater Nashville market, with an overall footprint of about 52,000 square feet.","verified_status":"operational","power_capacity_mw":2.4,"total_sqft":52000,"year_online":"2013","construction_update":"June 2026: City workshop noted TierPoint’s Eddy Lane site plan allows up to five buildings; no new construction starts were announced.","recent_news":"Late June 2026: Franklin city leaders held a workshop on data centers; TierPoint’s Eddy Lane site plan allows up to five buildings, with the company specifically referenced during the discussion.","notable_tenants":"","verified_name":"TierPoint Nashville (NSH)","verified_operator":"TierPoint","verified_owner":"Compass Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; providers include Telia Sonera (Arelion) and AT&T","num_buildings":1,"campus_acres":0,"utility_provider":"Middle Tennessee Electric (MTE)","tax_incentives":"Tennessee Qualified Data Center incentives: sales/use tax exemption for qualifying data center equipment and electricity taxed at a reduced 1.5% rate for qualified data centers.","natural_hazard_zone":"Regional exposure to tornadoes/severe storms; FEMA flood zone not confirmed (contact City of Franklin Floodplain Manager for address-specific determination); low seismic activity historically in Williamson County."},"807":{"description":"Colocation data center at 1661 Murfreesboro Pike in Nashville, originally the Nexus Regional Exchange Point (NREP) and now operated by Scipio Technologies following the company’s rebrand.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Scipio Technologies NREP - Nashville","verified_operator":"Scipio Technologies (formerly The Nexus Group / Peace Communications)","verified_owner":"RealOp Investments","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Nashville Electric Service (NES)","tax_incentives":"Tennessee Qualified Data Center Sales and Use Tax Exemption (state program; eligibility for this facility not confirmed).","natural_hazard_zone":"Low flood risk (likely FEMA Zone X); localized street flooding along Murfreesboro Pike"},"808":{"description":"Csquare (formerly Centersquare, formed from Evoque and Cyxtera) operates the Nashville/Gallatin data center campus at 1398 Gateway Dr developed in partnership with Archer Datacenters, planned to scale toward ~100MW and 500k+ sq ft across multiple phases.","verified_status":"operational","power_capacity_mw":100,"total_sqft":500000,"year_online":"unknown","construction_update":"May 12, 2026: Archer Datacenters reiterated its partnership with Evoque to expand the Nashville (Gallatin) campus; the project continues as a multi-phase build toward 100+ MW and 500k+ sq ft.","recent_news":"May 12, 2026: Archer Datacenters highlighted its partnership with Evoque to expand the Nashville (Gallatin) data center campus.","notable_tenants":"","verified_name":"Csquare Nashville (Gallatin, TN)","verified_operator":"Csquare","verified_owner":"Brookfield Infrastructure Partners","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":4,"campus_acres":61,"utility_provider":"","tax_incentives":"Tennessee Qualified Data Center sales/use tax exemptions on equipment/software/infrastructure and a reduced 1.5% sales tax rate on electricity (subject to qualification).","natural_hazard_zone":"Moderate flood risk (Gallatin citywide); tornado-prone region"},"809":{"description":"RadiusDC Nashville I is a purpose-built urban/edge colocation data center under construction by RadiusDC at 2902 Brick Church Pike in Nashville, planned for 12 MW of critical power across roughly 102,500 sq ft with a 2026 opening target.","verified_status":"under-construction","power_capacity_mw":12,"total_sqft":102500,"year_online":"2026","construction_update":"Groundbreaking occurred in early September 2025; the project has an active TDEC construction permit (TNR248139) for 2902/2906/2912 Brick Church Pike describing a 102,200 s.f. building, and local records show building and electrical permits issued in mid/late September 2025.","recent_news":"","notable_tenants":"","verified_name":"RadiusDC Nashville I","verified_operator":"RadiusDC","verified_owner":"RadiusDC","cooling_type":"hybrid","tier_level":"","fiber_providers":"Arelion, Crown Castle, IRis Networks, Sprint, Uniti Fiber, Windstream, Zayo","num_buildings":1,"campus_acres":12,"utility_provider":"Nashville Electric Service (NES) and Tennessee Valley Authority (TVA)","tax_incentives":"","natural_hazard_zone":"Minimal flood and wildfire risk at 2902 Brick Church Pike (no FEMA zone code cited)."},"810":{"description":"402 Franklin Road in Brentwood, TN is a former AT&T enterprise data center owned by a Mapletree trust that has been leased and subsequently secured by Vanderbilt University Medical Center/Vanderbilt Health for redevelopment into healthcare facilities. The site spans roughly 347,500 sq ft on a 43-acre parcel and is no longer an active AT&T-operated data center.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":347515,"year_online":"1975","construction_update":"Dec 3–4, 2025: Vanderbilt Health (with Williamson Health) announced they secured/acquired the 43-acre former AT&T site at 402 Franklin Road and planned renovations to create outpatient services including cancer care, heart/vascular, orthopedics, labs/imaging, pediatrics, and walk-in clinics.","recent_news":"","notable_tenants":"Former anchor tenant/operator: AT&T; Current occupant/redevelopment user: Vanderbilt University Medical Center / Vanderbilt Health (with Williamson Health referenced as a partner in 2025 coverage).","verified_name":"Former AT&T Data Center (402 Franklin Road, Brentwood, TN)","verified_operator":"Vanderbilt University Medical Center (VUMC) / Vanderbilt Health (current); AT&T (former operator)","verified_owner":"Vanderbilt Health","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":43,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE"},"811":{"description":"Planned 100,000‑sq‑ft Fisk Data and Technology Center (Quantum Leap Data Center) on Fisk University’s campus in North Nashville, comprising a 70,000‑sq‑ft, 30MW technology/data‑center shell and 30,000 sq ft of academic/innovation space, sited near Herman St. and 17th Ave N. Fisk will operate the broader innovation center while seeking a data‑center partner for the shell.","verified_status":"planned","power_capacity_mw":30,"total_sqft":100000,"year_online":"unknown","construction_update":"Announced May 14, 2026 as part of Fisk University’s Quantum Leap master plan; as of late June 2026, the data center remains proposed/planned while Metro considers a temporary moratorium and new restrictions.","recent_news":"June 2026: Community opposition intensified and Nashville officials advanced restrictions — the Metro Council voted on first reading to advance a 90‑day moratorium while the Planning Commission weighed new rules; Fisk publicly supported regulating environmentally harmful data centers and pledged to 'do no harm.'","notable_tenants":"","verified_name":"Quantum Leap Innovation & Technology Center","verified_operator":"Fisk University","verified_owner":"Fisk University","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"812":{"description":"DataBank MEM1 is an operational, carrier‑neutral colocation data center operated by DataBank at 7620 Appling Center Drive in Memphis, Tennessee. Official materials list 7,090 IT square feet and 0.45 MW critical IT load, and describe the site as a disaster‑recovery backup hub for the region.","verified_status":"operational","power_capacity_mw":0.45,"total_sqft":47350,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank MEM1 - Memphis Data Center","verified_operator":"DataBank","verified_owner":"Bill Anderson Acos","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 13 onsite carriers","num_buildings":1,"campus_acres":0,"utility_provider":"Memphis Light, Gas and Water (MLGW)","tax_incentives":"","natural_hazard_zone":"New Madrid Seismic Zone earthquake exposure; FEMA flood zone undetermined"},"813":{"description":"Expedient Memphis (MEM1) is an operational colocation data center at 3180 Players Lane in Memphis, operated by Expedient Data Centers within the single-tenant facility commonly listed as Sentinel TN-1; it offers ~35,000 sq ft of space and 1.5 MW of critical IT load.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":35000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Expedient Data Centers (single tenant/lessee and colocation operator); no named end-customer tenants publicly disclosed.","verified_name":"Expedient Memphis Data Center","verified_operator":"Expedient Data Centers","verified_owner":"Landmark Dividend","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Memphis Light, Gas and Water (MLGW)","tax_incentives":"No facility-specific incentive found. Tennessee offers a data center sales/use tax exemption (and related benefits) for Qualified Data Centers with a minimum $100M investment; Expedient reported $6M for this site, below the threshold.","natural_hazard_zone":"New Madrid Seismic Zone earthquake/liquefaction exposure"},"814":{"description":"EdgeConneX MEM01 (EDCMEM01) is an operational, carrier-neutral edge colocation data center operated by EdgeConneX at 4005 S Mendenhall Rd #6, Memphis, Tennessee. The site is listed at 16,700 sq ft.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":16700,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX MEM01 Memphis Data Center","verified_operator":"EdgeConneX","verified_owner":"EQT Infrastructure","cooling_type":"air-cooled","tier_level":"Tier III equivalent design (not Uptime Institute certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Tennessee offers a sales and use tax exemption for qualified data centers (including equipment and infrastructure) and a reduced 1.5% electricity tax rate, generally requiring substantial investment and jobs thresholds.","natural_hazard_zone":"New Madrid Seismic Zone; FEMA flood zone undetermined"},"815":{"description":"Lumen Memphis 1 is a Lumen Technologies telecom/colocation data center at 3993 Crowfarn Drive, Memphis, TN, with 13,000 sq ft total space and 1,514 sq ft raised-floor/colocation space. Multiple listings show it as a Lumen-operated site currently offered in the market.","verified_status":"operational","power_capacity_mw":0,"total_sqft":13000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Memphis 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen/Level 3 on-net; third-party carrier presence not publicly listed; Lumen offers cloud-connect options (e.g., to major clouds) via its ecosystem.","num_buildings":1,"campus_acres":5.33,"utility_provider":"Memphis Light, Gas and Water (MLGW)","tax_incentives":"Tennessee Qualified Data Center program available (sales/use tax exemptions on eligible equipment and reduced electricity sales-tax rate), subject to meeting state criteria; no facility-specific award identified.","natural_hazard_zone":"New Madrid Seismic Zone exposure; high regional disaster risk with seasonal severe wind/tornado potential; address-specific FEMA flood zone not confirmed."},"816":{"description":"Lumen Memphis 2 is an operational Lumen Technologies colocation/telecom data center at 5425 E Raines Rd, Memphis, Tennessee, associated with the legacy tw telecom “Memphis #2” at the same address. The data-center footprint is 6,216 sq ft of raised floor within a larger multi-tenant building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":6216,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Memphis 2 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen / Level 3 (tw telecom)","num_buildings":1,"campus_acres":4.6,"utility_provider":"Memphis Light, Gas and Water (MLGW)","tax_incentives":"","natural_hazard_zone":"New Madrid Seismic Zone exposure (regional seismic risk)"},"817":{"description":"Verizon-operated telecom/data-center facility at 5127 Truse Rd, Memphis, serving as a Verizon/XO network site; the building is 25,200 SF and was built in 1970.","verified_status":"operational","power_capacity_mw":0.35,"total_sqft":25200,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Memphis","verified_operator":"Verizon Communications Inc. / Verizon Business (legacy XO Operations)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon/XO network","num_buildings":1,"campus_acres":0,"utility_provider":"Memphis Light, Gas and Water (MLGW)","tax_incentives":"","natural_hazard_zone":"FEMA NFHL Zone X (minimal flood hazard); within New Madrid seismic zone"},"818":{"description":"An operational Cogent-owned and operated edge data center at 2632 Jackson Avenue, Memphis, TN 38108, listed as “Cogent Edge Data Center - Memphis.” It is part of Cogent’s North American Edge Data Centers portfolio.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Edge Data Center - Memphis","verified_operator":"Cogent Communications","verified_owner":"US Sprint Communications Co Ltd PSO","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications","num_buildings":0,"campus_acres":1,"utility_provider":"Memphis Light, Gas and Water (MLGW)","tax_incentives":"","natural_hazard_zone":"Seismic: New Madrid Seismic Zone; FEMA flood zone: undetermined"},"819":{"description":"WorldSpice Data Center is an operational colocation facility run by WorldSpice Technologies at 5050 Poplar Ave (White Station Tower) in Memphis, providing managed/unmanaged server colocation and related network services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"WorldSpice Data Center","verified_operator":"WorldSpice Technologies","verified_owner":"In-Rel Properties / White Station Building LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"WorldSpice (multiple fiber connections; specific carriers not publicly disclosed)","num_buildings":1,"campus_acres":0,"utility_provider":"Memphis Light, Gas and Water (MLGW)","tax_incentives":"","natural_hazard_zone":"New Madrid Seismic Zone earthquake exposure; FEMA flood zone unknown"},"820":{"description":"5CDC Memphis (MEM01) is 5C Group’s Memphis AI/colocation data-center redevelopment of the former Fred’s headquarters/distribution complex on Getwell Road, listed at 20 MW current capacity (fully committed) with a 35 MW expansion and positioned as a Frontier AI Factory jointly built with Together AI.","verified_status":"under-construction","power_capacity_mw":20,"total_sqft":0,"year_online":"2026","construction_update":"June 10, 2026: Property records show 5C MEM01 LLC purchased the former Fred’s headquarters/distribution building at 4300 Getwell Road for $25M. Earlier milestones: Apr 28, 2025 reporting that the Fred’s warehouse would be transformed into a data center; Nov 17, 2025 reporting on a $152M redevelopment incentive request.","recent_news":"June 10, 2026: Property records showed a sale to 5C MEM01 LLC for $25 million for the former Fred’s building at 4300 Getwell Road; the report also noted 5C lists 20 MW current capacity and a 35 MW expansion.","notable_tenants":"Together AI (joint development partner); no specific colocation anchor tenants publicly disclosed.","verified_name":"5CDC Memphis - MEM01","verified_operator":"5C Group Inc. (5C Data Centers)","verified_owner":"5C MEM01 LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; direct connections to Atlanta, Dallas, St. Louis, and Chicago; on-ramps to AWS US East, Azure US Central, and Google Cloud US East","num_buildings":0,"campus_acres":57.64,"utility_provider":"Memphis Light, Gas and Water (MLGW)","tax_incentives":"EDGE PILOT tax incentive sought for the project; approval status not confirmed in cited reporting.","natural_hazard_zone":"New Madrid Seismic Zone (elevated regional seismic and liquefaction hazard for Memphis)"},"821":{"description":"Enterprise data processing facility at 9 FedEx Pkwy, Collierville, TN, operated by Aphorio Carter since its November 2023 acquisition, on the 118-acre FedEx World Technology Center campus and currently operational. Listings indicate about 86,000 sq ft total with roughly 41,000 sq ft raised floor and 10 MW power.","verified_status":"operational","power_capacity_mw":10,"total_sqft":86000,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Collierville Enterprise Data Center","verified_operator":"","verified_owner":"Aphorio Carter Fund Management Company, LLC (Carter Funds)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":4.62,"utility_provider":"Memphis Light, Gas & Water (MLGW)","tax_incentives":"FedEx World Technology Center retention PILOT through 2038; reporting cites ~$979k/year in tax breaks with required payments to Collierville.","natural_hazard_zone":"New Madrid Seismic Zone earthquake exposure (regional seismic risk)."},"822":{"description":"xAI Colossus 1 is an operational hyperscale AI training data center at 3231 Paul R. Lowry Road in Memphis, operated by xAI, housed in the former 785,000‑sq‑ft Electrolux facility. It is notable for its rapid 122‑day build and a 2026 agreement granting Anthropic access to its compute.","verified_status":"operational","power_capacity_mw":300,"total_sqft":785000,"year_online":"2024","construction_update":"Feb 11, 2026: Permit filings for a water‑recycling plant foundation at/associated with 3231 Paul R. Lowry Road (site infrastructure activity while Colossus 1 remains operational).","recent_news":"May 6, 2026: xAI announced a compute partnership granting Anthropic access to Colossus 1; reporting says Anthropic will use all Colossus 1 compute (more than 300 MW, >220,000 GPUs).","notable_tenants":"Anthropic (sole tenant/use of all Colossus 1 compute per May 2026 deal).","verified_name":"xAI Colossus 1","verified_operator":"xAI Corp","verified_owner":"SpaceX (purchased from a Phoenix Investors affiliate in May 2026)","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":216.98,"utility_provider":"Memphis Light, Gas and Water (MLGW), with TVA wholesale power","tax_incentives":"No verified local/state tax incentives.","natural_hazard_zone":"New Madrid Seismic Zone exposure"},"823":{"description":"xAI Colossus 2 is xAI Corp’s second hyperscale AI data-center/supercomputer campus at 5400 Tulane Rd in Memphis, acquired in 2025 to expand the Colossus platform. It is notable for dedicated offsite generation via a 41‑turbine natural‑gas plant in Southaven, Mississippi, permitted in March 2026 to power the nearby data centers.","verified_status":"operational","power_capacity_mw":1200,"total_sqft":1000000,"year_online":"2025","construction_update":"June 26–27, 2026: xAI filed $300M+ in permits for Memphis facilities, including a new construction permit at the Colossus II campus at 5408 Tulane; an electrical permit submitted June 15 was withdrawn.","recent_news":"On Mar 10, 2026, Mississippi approved an air permit for 41 gas turbines in Southaven to power xAI’s nearby data centers, followed by an appeal from environmental groups in April; in June, local reports noted 57 turbines installed and more than $300 million in new permits filed for Memphis facilities.","notable_tenants":"","verified_name":"xAI Colossus 2","verified_operator":"xAI Corp","verified_owner":"CTC Property LLC / CTC Properties (xAI-affiliated entity)","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":100,"utility_provider":"Memphis Light, Gas and Water (MLGW) / Tennessee Valley Authority (TVA)","tax_incentives":"Reports indicate xAI had not sought local tax incentives for the Memphis project; no facility-specific PILOT/abatement for Colossus 2 was verified.","natural_hazard_zone":"Seismic risk: New Madrid Seismic Zone exposure noted by Shelby County’s seismic vulnerability focus; parcel-specific FEMA flood zone not determined."},"824":{"description":"xAI Corp’s 5414 Tulane Road Expansion is a permitted hyperscale AI data-center building in Memphis: a 312,000 sq ft, four-story (75-foot) facility at 5414 Tulane Road, situated by xAI’s Colossus 2 campus.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":312000,"year_online":"unknown","construction_update":"Mar 3–4, 2026: $659M permit filed for a 312,000‑sq‑ft, four‑story PEMB at 5414 Tulane Rd; Mar 10, 2026: $15M office buildout permit filed at Colossus 2 campus; Apr 17, 2026: $20M construction permit issued for a >300k‑sq‑ft building on the Tulane Road campus.","recent_news":"Apr 17, 2026: A $20M construction permit was issued for a new >300,000-sq-ft building on the Tulane Road campus; Apr 14, 2026: environmental groups sued xAI over alleged Clean Air Act violations tied to gas turbines powering its Memphis-area data centers.","notable_tenants":"","verified_name":"xAI 5414 Tulane Road / Colossus 2 expansion","verified_operator":"xAI Corp","verified_owner":"CTC Property LLC / CTC Properties (xAI-affiliated entity)","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":79,"utility_provider":"Memphis Light, Gas and Water (MLGW)","tax_incentives":"No active state or local tax incentives identified; reporting indicates xAI did not seek or accept incentives for the Memphis projects.","natural_hazard_zone":"New Madrid Seismic Zone (elevated seismic risk); FEMA flood zone for 5414 Tulane Rd not confirmed"},"825":{"description":"The STEM Practice Memphis is a planned modular AI data center at 1341 Sycamore View Rd, owned by Golden Acquisitions and operated by The STEM Practice. It will convert an existing four‑story office building and is cited at roughly 38,500 sq ft with up to about 9 MW at full build‑out.","verified_status":"planned","power_capacity_mw":9,"total_sqft":38500,"year_online":"2026 expected","construction_update":"Jan 2026: Following a late‑Dec 2025 purchase, Golden Acquisitions outlined plans to convert the building into a modular AI data center for The STEM Practice, targeting initial operations around May 2026.","recent_news":"January 2026 local and trade coverage reported Golden Acquisitions’ purchase of 1341 Sycamore View Rd and plans to develop a modular AI data center for The STEM Practice, targeting initial operations around May 2026.","notable_tenants":"The STEM Practice (operator/user); no separate anchor tenants disclosed. Oracle noted as STEM’s technology/cloud partner, not a tenant.","verified_name":"The STEM Practice Memphis","verified_operator":"The STEM Practice","verified_owner":"Golden Acquisitions (via affiliated entity)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Memphis Light, Gas and Water (MLGW)","tax_incentives":"","natural_hazard_zone":"New Madrid Seismic Zone exposure"},"826":{"description":"MACROHARDRR is xAI Corp’s AI data center project in Southaven, Mississippi, where xAI has purchased and is retrofitting a building for new data center operations, to be known as MACROHARDRR.","verified_status":"under-construction","power_capacity_mw":2000,"total_sqft":810258,"year_online":"2026","construction_update":"Jan 8, 2026: State announced xAI’s investment and retrofit plan in Southaven. Mar 10, 2026: Mississippi regulators approved an air permit for 41 gas turbines to power xAI’s operations in Southaven.","recent_news":"May 6, 2026: NAACP and partners filed for emergency court action alleging illegal air pollution from xAI’s Southaven gas-turbine power plant tied to the data center.","notable_tenants":"","verified_name":"xAI MACROHARDRR","verified_operator":"xAI Corp","verified_owner":"xAI Corp","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":48.6,"utility_provider":"Entergy Mississippi","tax_incentives":"Mississippi Data Center Incentive (sales and use tax exemption for computing and equipment software). 2024 Mississippi data center incentive law exemptions for corporate income and franchise taxes for qualifying companies.","natural_hazard_zone":"New Madrid Seismic Zone exposure; local FEMA flood zones A/AE"},"827":{"description":"Lumen Nashville 1 is an operational colocation data center operated by Lumen Technologies at 2990 Sidco Drive in Nashville, Tennessee.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8456,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Nashville 1","verified_operator":"Lumen Technologies","verified_owner":"Level 3 Communications, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":5,"utility_provider":"Nashville Electric Service (NES)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X / Area of Minimal Flood Hazard; not a Special Flood Hazard Area (SFHA_TF=false)"},"828":{"description":"Downtown Nashville telecom/data center and network-switch facility at 101 Molloy Street, operated by Verizon following its acquisition of XO Communications. The building (55,299 SF) was renovated in the mid-1990s for XO and remains Verizon-occupied.","verified_status":"operational","power_capacity_mw":0.98,"total_sqft":55299,"year_online":"1995","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Nashville (XO)","verified_operator":"Verizon Communications Inc.","verified_owner":"C.B. Ragland Company (CBR)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; Verizon/XO Communications network (metro and long-haul fiber)","num_buildings":1,"campus_acres":0.67,"utility_provider":"Nashville Electric Service (NES)","tax_incentives":"Tennessee Qualified Data Center sales and use tax exemption (and reduced electricity sales tax rate) available to eligible projects; no site-specific incentives confirmed for this facility.","natural_hazard_zone":"Moderate flood hazard (FEMA Zone X/B area of moderate risk); elevated regional risk scores for earthquake and tornado (earthquake risk 7/10)."},"829":{"description":"Windstream Communications operates a colocation facility at 940 3rd Ave N in Nashville offering secure colocation space and managed services, noted for SAS 70/Tier II features and a regional footprint.","verified_status":"operational","power_capacity_mw":0,"total_sqft":9479,"year_online":"unknown","construction_update":"","recent_news":"May 20, 2026: The 940 3rd Ave N property was listed as currently available on LoopNet; Colliers is marketing it for sale/lease.","notable_tenants":"","verified_name":"Windstream Nashville","verified_operator":"Windstream","verified_owner":"Steven E. Wilson","cooling_type":"air-cooled","tier_level":"Tier II","fiber_providers":"AT&T; XO Communications (now Verizon); Level 3 (now Lumen Technologies)","num_buildings":1,"campus_acres":0.36,"utility_provider":"Nashville Electric Service (NES)","tax_incentives":"Tennessee provides a sales and use tax exemption for qualified data centers, including backup power and cooling equipment; no facility-specific incentive or abatement was found for this site.","natural_hazard_zone":"Flood risk present near FEMA Flood Hazard Areas along the Cumberland River; exact FEMA zone for 940 3rd Ave N not confirmed here."},"830":{"description":"EdgeConneX MEM01 (EDCMEM01) is an operational, carrier‑neutral edge colocation data center at 4005 S Mendenhall Rd #6 in Memphis, operated by EdgeConneX, featuring a 16,700 sq ft footprint and 500 kW N+1 power scalable to a total 1.5 MW with ENERGY STAR certification.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":16700,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX MEM01 Memphis","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III designed (concurrently maintainable)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Memphis Light, Gas and Water (MLGW)","tax_incentives":"Tennessee sales/use tax exemption for qualified data centers on eligible hardware/software and a reduced 1.5% sales tax rate on electricity (subject to qualification thresholds).","natural_hazard_zone":"New Madrid Seismic Zone proximity"},"831":{"description":"Carrier-neutral colocation data center at 251 Neilston St, Columbus, operated by DataBank with 2 MW fully built-out power. The address has legacy listings under 365 Data Centers/Citynet, and DataBank’s presence follows its December 2020 acquisition of zColo assets.","verified_status":"operational","power_capacity_mw":2,"total_sqft":14484,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank - 251 Neilston St Data Center","verified_operator":"DataBank","verified_owner":"HCP COLUMBUS WAREHOUSE DISTRICT I LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T; Summit Broadband; Cogent; carrier-neutral","num_buildings":1,"campus_acres":0.8712,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Low seismic risk; flood zone not determinable"},"832":{"description":"Cogent Columbus 2 is an operational Cogent Communications carrier-neutral colocation/telecom data center at 161 East Goodale St in Columbus, Ohio, offering 4,717 sq ft with 42U cabinets, multiple power options, and a backup generator.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4717,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Columbus 2","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0.36,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"833":{"description":"WOW! Business operates a commissioned colocation/telecom data center at 226 N. 5th St., Suite 200, Columbus, Ohio, notable for 2.6 MW of commissioned power and roughly 26,000 sq ft of data-center space within a larger 131,406 SF retrofit building.","verified_status":"operational","power_capacity_mw":2.6,"total_sqft":26000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"WOW! Data Center","verified_operator":"WOW Business/E Solutions (WOW! Business)","verified_owner":"HCP COLUMBUS WAREHOUSE DISTRICT I LLC (Hackman Capital Partners)","cooling_type":"air-cooled","tier_level":"Tier 3","fiber_providers":"carrier-neutral; multiple fiber routes and diverse points of entry; connects with 20+ fiber-based carriers and on-net access to 150+ networks","num_buildings":1,"campus_acres":1.45,"utility_provider":"AEP Ohio","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X"},"834":{"description":"Lumen Columbus is an operational Lumen Technologies colocation/data center at 226 North Fifth Street, Suite 100, Columbus, Ohio, offering standard and high‑density cabinet options. It operates as a carrier‑neutral colocation facility within a historic, multi‑tenant building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen: Columbus 3 Data Center","verified_operator":"Lumen Technologies","verified_owner":"HCP COLUMBUS WAREHOUSE DISTRICT I LLC (Hackman Capital Partners)","cooling_type":"unknown","tier_level":"Tier III-equivalent (no public Uptime certification shown)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.4462,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Low seismic risk; FEMA flood zone undetermined"},"835":{"description":"Lumen Columbus 1 is an operational Lumen Technologies telecom/network colocation data center at 266 North 5th St, Columbus, Ohio, featuring 15,400 sq ft total space and 1,734 sq ft of colocation with N+1 HVAC and standard backup power infrastructure.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":15400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Columbus 1","verified_operator":"Lumen Technologies","verified_owner":"Hackman Capital Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (Level 3)","num_buildings":1,"campus_acres":0,"utility_provider":"AEP Ohio","tax_incentives":"Ohio ORC 122.175 sales and use tax exemption for qualifying computer data center equipment; approval required to participate.","natural_hazard_zone":"Low flood risk (likely FEMA Zone X); low seismic risk; moderate tornado exposure typical for central Ohio"},"836":{"description":"eNET Columbus (CMH-1) is an operational colocation facility operated by eNET at 3000 E Dublin Granville Rd in Columbus, Ohio, described by the operator as a wholly owned and operated site. Public directories list the facility at this address as an active data center.","verified_status":"operational","power_capacity_mw":1,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"eNET CMH-1 (eNET Columbus)","verified_operator":"eNET, Inc.","verified_owner":"Saeed Kharazi","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":1.762,"utility_provider":"AEP Ohio","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (outside Special Flood Hazard Area) — approximate"},"837":{"description":"Racksquared Value Way is a Racksquared data center location at 2560 Value Way Drive in Columbus, Ohio, listed by third‑party directories as providing colocation and backup/disaster‑recovery services. Racksquared promotes cloud, colocation, backup, and disaster‑recovery offerings across its sites.","verified_status":"operational","power_capacity_mw":0,"total_sqft":72816,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Racksquared Value Way Datacenter","verified_operator":"Racksquared Data Centers, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":18.11,"utility_provider":"AEP Ohio / American Electric Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard, generally between the 100-year and 500-year flood limits)"},"838":{"description":"Kyndryl Columbus is an operational enterprise data center at 4499 Fisher Rd, Columbus, OH, occupied and operated by Kyndryl in a roughly 206,883‑sq‑ft facility originally built in 1989 and later remodeled; public listings and trackers continue to show it in operation.","verified_status":"operational","power_capacity_mw":2.295,"total_sqft":206883,"year_online":"1989","construction_update":"","recent_news":"No data-center-specific news in the last 6 months; a May 20, 2026 listing for paved trailer/container storage at the address does not reflect a change in data center status.","notable_tenants":"Kyndryl (sole documented occupant/tenant); no public anchor customers disclosed.","verified_name":"Kyndryl Data Center (Columbus)","verified_operator":"Kyndryl","verified_owner":"Realty Income","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":27.66,"utility_provider":"AEP Ohio (American Electric Power)","tax_incentives":"Historical incentives (City of Columbus) for IBM’s expansion at 4499 Fisher Road; no active incentive confirmed.","natural_hazard_zone":""},"839":{"description":"Compass Groveport AEP II is an enterprise backup data center in Groveport, Ohio, developed by Compass Datacenters for American Electric Power (AEP). Public reports describe a Tier III facility of approximately 22,000 square feet.","verified_status":"operational","power_capacity_mw":0,"total_sqft":22000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"American Electric Power (AEP)","verified_name":"Compass Groveport AEP II (also known as AEP Groveport Data Center)","verified_operator":"Compass Datacenters","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"AEP private fiber (inter-facility connectivity)","num_buildings":1,"campus_acres":6.02,"utility_provider":"AEP Ohio","tax_incentives":"CRA program present in Groveport; no definitive abatement approval located for this site.","natural_hazard_zone":"FEMA Flood Zones B/X (moderate flood hazard); overall city flood risk minor"},"840":{"description":"QTS New Albany 2 DC1 is a QTS wholesale/hyperscale data center at 785 Beech Rd SW in New Albany, Ohio, within the New Albany 2 campus. City records list a 320,200‑sq‑ft new data center at this address, and market trackers show the facility is commissioned.","verified_status":"operational","power_capacity_mw":39,"total_sqft":320200,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS New Albany 2 DC1","verified_operator":"QTS Data Centers","verified_owner":"QTS (owned by Blackstone funds)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; municipal broadband / multiple-path fiber network","num_buildings":2,"campus_acres":38.79,"utility_provider":"AEP Ohio / American Electric Power","tax_incentives":"City of New Albany: 100% property-tax abatement for 15 years; State of Ohio: data center sales-tax exemption for QTS’s $1.5B New Albany project; additional state job-creation incentive noted in coverage.","natural_hazard_zone":"unknown"},"841":{"description":"QTS New Albany 2 DC2 is a large-scale QTS data center at 675 Beech Rd SW in New Albany, Ohio, built as part of the New Albany 2 campus to support rapid, large‑scale deployments. The City lists the DC2 building at 292,500 sq ft.","verified_status":"operational","power_capacity_mw":39,"total_sqft":292500,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS New Albany 2 DC2","verified_operator":"QTS Data Centers","verified_owner":"Blackstone (via QTS Realty Trust affiliates)","cooling_type":"air-cooled","tier_level":"Tier IV-equivalent (design standard; no public Uptime certification found)","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":0,"utility_provider":"AEP Ohio (American Electric Power)","tax_incentives":"15-year, 100% real property tax abatement (CRA) approved by New Albany; Ohio JCTC agreement updated to include QTS New Albany II DC2, LLC and related entities.","natural_hazard_zone":"Nearby FEMA Flood Zone B/X (moderate flood hazard between 100- and 500-year limits); low seismic/hurricane exposure for central Ohio."},"842":{"description":"Operational Amazon Web Services hyperscale data center at 2570 Beech Road in New Albany/Johnstown, Ohio (US East/Ohio region), reported at 459,000 sq ft and run by AWS.","verified_status":"operational","power_capacity_mw":0,"total_sqft":459000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Amazon AWS CMH - 2570 Beech","verified_operator":"Amazon Web Services (AWS)","verified_owner":"Amazon Data Services, Inc. (Amazon)","cooling_type":"hybrid","tier_level":"","fiber_providers":"Municipal fiber along Beech Road corridor; carrier-neutral (no named carriers verified)","num_buildings":5,"campus_acres":447,"utility_provider":"AEP Ohio","tax_incentives":"30-year property tax abatement in New Albany for AWS data centers (100% first 15 years; 75% next 15 years).","natural_hazard_zone":"Low risk; First Street indicates minor flood risk for New Albany"},"843":{"description":"Amazon AWS Central Park / 5109 Hayden Run is an Amazon Web Services–operated hyperscale data center at 5109 Hayden Run Rd in Hilliard, Ohio, associated with AWS’s Hilliard campus. It is noted as AWS’s first Hilliard facility (construction began in 2015) and “Hayden Building 1” is listed at 154,000 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":154000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Amazon AWS CMH - 5109 Hayden (AWS CMH091 Building 1), Hayden Run Campus","verified_operator":"Amazon Web Services (AWS) / Amazon Data Services, Inc.","verified_owner":"Vadata Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":0,"utility_provider":"AEP Ohio / Ohio Power Company","tax_incentives":"Property-tax exemption at 5109 Hayden Run (Vadata Inc., $157M exempt). Statewide data-center sales-tax exemption agreements provide 100% sales-tax relief on qualifying equipment for Amazon’s Ohio data centers.","natural_hazard_zone":"unknown"},"844":{"description":"Amazon AWS Center Three / 5117 Hayden Run is an AWS-operated hyperscale data center located at 5117 Hayden Run Rd in Hilliard, Ohio, serving the company’s US East (Ohio/us‑east‑2) region footprint. Multiple data center directories list the address and identify the facility as part of AWS’s hyperscale campus in Hilliard.","verified_status":"operational","power_capacity_mw":0,"total_sqft":154000,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Amazon AWS CMH - 5117 Hayden","verified_operator":"Amazon Web Services (AWS)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":0,"utility_provider":"","tax_incentives":"Ohio statewide 100% sales-tax exemption on qualifying data center equipment; no site-specific local abatement verified for 5117 Hayden Run.","natural_hazard_zone":""},"845":{"description":"Amazon AWS 5113 Hayden Run is an AWS-operated hyperscale data center at 5113 Hayden Run Rd in Hilliard, Ohio, and is part of AWS’s US East (Ohio) region (us-east-2).","verified_status":"operational","power_capacity_mw":0,"total_sqft":154000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Amazon AWS CMH - Hayden Building 2 (AWS-CMH091-5113)","verified_operator":"Amazon Web Services (AWS)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":0,"utility_provider":"AEP Ohio (American Electric Power)","tax_incentives":"Ohio statewide 100% sales/use tax exemption for qualifying data center equipment; approvals for major operators extend through 2055.","natural_hazard_zone":""},"846":{"description":"Amazon AWS Cosgray Campus is a hyperscale AWS-operated data center campus at 4600–4636 Cosgray Road in Hilliard, Ohio, consisting of four data center buildings with associated AEP switching and substation infrastructure.","verified_status":"operational","power_capacity_mw":264,"total_sqft":0,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Amazon AWS Cosgray Campus (Amazon AWS CMH - 4600 Cosgray)","verified_operator":"Amazon Web Services (AWS)","verified_owner":"Amazon Data Services, Inc. (Amazon Web Services)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":104,"utility_provider":"AEP Ohio (Ohio Power Company)","tax_incentives":"City of Hilliard/Franklin County property-tax abatement benefiting the Hilliard AWS site; Ohio’s 100% sales-tax exemption on qualifying data-center equipment.","natural_hazard_zone":"Tornado/severe-storm exposure (EF1 tornado confirmed in Hilliard on Feb 28, 2024); parcel-specific FEMA flood zone not determined."},"847":{"description":"A hyperscale data center operated by Amazon Web Services at 5125 Hayden Run Rd in Hilliard, Ohio, and part of the AWS CMH Hayden Campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Amazon AWS CMH - 5125 Hayden","verified_operator":"Amazon Web Services (AWS)","verified_owner":"Amazon Data Services, Inc. (ADSI)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":0,"utility_provider":"AEP Ohio","tax_incentives":"Ohio Data Center Tax Exemption: 100% sales-and-use tax exemption on eligible data center equipment (contracts include Amazon); Ohio paused new applications in 2026, with existing exemptions unaffected.","natural_hazard_zone":""},"848":{"description":"Amazon AWS CMH – 5121 Hayden is an AWS-operated hyperscale data center at 5121 Hayden Run Rd in Hilliard, Ohio, within the us-east-2 (US East–Ohio) region and the Hayden campus cluster.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Amazon AWS CMH - 5121 Hayden","verified_operator":"Amazon Web Services (Amazon AWS)","verified_owner":"Vadata Inc. (Amazon Web Services affiliate)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":58.2,"utility_provider":"AEP Ohio","tax_incentives":"Franklin County abatement: Vadata Inc. (AWS) at 5109 Hayden Run Rd had about $157M of property value exempt from property taxes; AWS also benefits from Ohio’s statewide sales-tax exemption for qualifying data center equipment.","natural_hazard_zone":""},"849":{"description":"Amazon AWS’s data center at 2540 Beech Rd (New Albany/Johnstown, OH) is an owner-operated hyperscale facility that is part of the AWS US East (Ohio) region and the Beech South campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Amazon AWS CMH - 2540 Beech","verified_operator":"Amazon Web Services (AWS)","verified_owner":"Amazon Data Services Inc. (Amazon)","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":0,"utility_provider":"AEP Ohio","tax_incentives":"30-year property tax abatement; participation in Ohio’s data center sales‑tax exemption program.","natural_hazard_zone":"low risk (FEMA Zone B/X vicinity; minor community flood risk)"},"850":{"description":"Whitelabel IT Solutions operates a colocation and hosting data center at 150 Atlantic Street, Floor 2, Hackensack, NJ, with approximately 18,000 sq ft of space and 4,000 kW utility power.","verified_status":"operational","power_capacity_mw":4,"total_sqft":18000,"year_online":"unknown","construction_update":"","recent_news":"January 12, 2026: Whitelabel IT Solutions launched optimized BareMetal servers; no facility expansion or new anchor tenant announcements identified in the last six months.","notable_tenants":"","verified_name":"Whitelabel IT Solutions 150 Atlantic Street Data Center","verified_operator":"Whitelabel IT Solutions","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III (claimed; no Uptime Institute certification found)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.34,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (moderate risk)"},"851":{"description":"QTS Jersey City 1 (JCY1/DC1) is an operational QTS carrier-neutral colocation data center located at 95 Christopher Columbus Drive in Jersey City, NJ. Public listings most consistently show a 120,000 sq ft facility with approximately 3.0 MW of available power.","verified_status":"operational","power_capacity_mw":3,"total_sqft":120000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Jersey City 1 DC1","verified_operator":"QTS Data Centers","verified_owner":"Columbia Property Trust (PIMCO)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; examples: AT&T, PacketFabric","num_buildings":1,"campus_acres":1.72,"utility_provider":"PSE&G","tax_incentives":"State: Next New Jersey Program – AI data center incentives (transferable credits/extended exemptions). Local: Jersey City Urban Enterprise Zone (reduced sales tax and certain exemptions). No facility-specific award confirmed.","natural_hazard_zone":"FEMA Flood Zone AE"},"852":{"description":"InterServer TEB4 is an operational InterServer colocation/hosting facility at 200 Meadowlands Parkway in Secaucus, NJ, offering colocation, dedicated servers, VPS, and web hosting. The site is listed at 48,000 sq ft with 2.5 MW of capacity.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":48000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"InterServer TEB4","verified_operator":"InterServer, Inc.","verified_owner":"Alma Realty Corp","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; examples include Cogent Communications (at 200B Meadowlands) and other on-net providers at the H5 New Jersey site","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G (Public Service Electric and Gas)","tax_incentives":"No facility-specific incentive identified; New Jersey’s Next NJ Program–AI offers potential incentives for qualifying AI-related data centers.","natural_hazard_zone":"Flood risk: Meadowlands area includes FEMA 100‑year flood zones (A/AE/AH); Meadowlands Parkway has experienced flooding (e.g., Hurricane Sandy)."},"853":{"description":"Digital Fortress Piscataway (PNJ) is an operational carrier-neutral colocation data center at 201B Centennial Avenue in Piscataway, New Jersey. The facility totals 96,573 sq ft and offers Tier III-style redundancy and cloud/carrier connectivity.","verified_status":"operational","power_capacity_mw":5,"total_sqft":96573,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Fortress Piscataway, New Jersey Data Center (PNJ)","verified_operator":"Digital Fortress","verified_owner":"Chirisa Technology Parks (Chirisa)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":17.3,"utility_provider":"PSE&G","tax_incentives":"","natural_hazard_zone":""},"854":{"description":"Hammer Piscataway was a carrier-neutral colocation/telecom facility at 15 Corporate Place South, Suite 100, Piscataway, NJ, operated by Open Data Centers under Hammer. Operations were discontinued on April 30, 2020, the Piscataway data center was shut down, and Open Data Centers, LLC was dissolved on December 30, 2020.","verified_status":"decommissioned","power_capacity_mw":1.2,"total_sqft":15000,"year_online":"unknown","construction_update":"","recent_news":"No facility-specific updates in the last 6 months; on June 15, 2026, coverage of Hammer Technology Holdings’ quarterly filing reported the company has fully pivoted to fintech and generated $0 revenue for the nine months ended April 30, 2026.","notable_tenants":"Historical/publicly named users include iAreaNet (2013) and ecosystem participant Silicon Servers. No current tenants are verified after the 2020 shutdown and dissolution.","verified_name":"Hammer Piscataway Data Center (also listed as Open Data Centers – Piscataway Data Center)","verified_operator":"Hammer Technology Holdings Corp. / Hammer Fiber (Open Data Centers)","verified_owner":"15 Corporate Place LLC","cooling_type":"air-cooled","tier_level":"2N+1 design (no Uptime Institute Tier certification found)","fiber_providers":"Carrier-neutral; on-net networks include Lumen (CenturyLink), Cogent Communications, Zayo, and Lightpath.","num_buildings":1,"campus_acres":6.06,"utility_provider":"Public Service Electric & Gas (PSE&G)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard)"},"855":{"description":"CyrusOne NYM2 is an operational wholesale/colocation data center at 50 Madison Road in Totowa, NJ, with two buildings totaling 200,000 sq ft, 50,000 sq ft of data center space, and up to 16 MW of IT capacity, located about 17 miles from Midtown Manhattan.","verified_status":"operational","power_capacity_mw":16,"total_sqft":200000,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne NYM2","verified_operator":"CyrusOne","verified_owner":"Russo Development","cooling_type":"chilled water","tier_level":"Tier III equivalent design","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":0,"utility_provider":"PSE&G","tax_incentives":"New Jersey has no known data center-specific tax incentive legislation. The NJEDA Next NJ Program – AI provides tax credits for qualifying AI-related investments; no NYM2-specific incentive was identified.","natural_hazard_zone":"FEMA Flood Zone X (minimal flood risk)"},"856":{"description":"Digital Realty EWR15 is an operational colocation data center at 701 Union Boulevard, Totowa, NJ, operated by Digital Realty. Building B is a 127,000 SF retrofit facility with listings citing 1.5 MW, while a separate Building A at the same campus is planned at 275,000 SF with 19.2 MW.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":127000,"year_online":"unknown","construction_update":"Planned expansion: a separate “Building A” at 701 Union Boulevard is listed at 275,000 SF with 19.2 MW; no timeline disclosed.","recent_news":"","notable_tenants":"","verified_name":"Digital Realty EWR15 Data Center","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust / Digital Realty","cooling_type":"unknown","tier_level":"Tier 3 Equivalent","fiber_providers":"","num_buildings":2,"campus_acres":34.3,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"","natural_hazard_zone":""},"857":{"description":"Digital Realty operates EWR16 at 703 Union Boulevard in Totowa, NJ, an operational colocation data center listed at 2.4 MW and described as Tier 3-equivalent.","verified_status":"operational","power_capacity_mw":2.4,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty EWR16 Data Center (New York EWR16 - Totowa)","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"unknown","tier_level":"Tier 3 Equivalent","fiber_providers":"carrier-neutral; diverse fiber paths; specific EWR16 carriers not publicly listed","num_buildings":2,"campus_acres":35.392,"utility_provider":"Public Service Electric & Gas (PSE&G)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (Area of Minimal Flood Hazard)"},"858":{"description":"An enterprise data center at 201 Main Avenue, Clifton, NJ, originally opened in 2011 for Credit Suisse and acquired by DXC Technology in 2019 to deliver managed colocation for Credit Suisse. Though some contractor materials label the address as “Sentinel Data Center – Clifton,” current facility and transaction coverage tie the site to DXC/Credit Suisse.","verified_status":"operational","power_capacity_mw":0,"total_sqft":285000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"Credit Suisse","verified_name":"Credit Suisse: Clifton Data Center (operated by DXC Technology)","verified_operator":"DXC Technology","verified_owner":"201 Main Avenue, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":9.38,"utility_provider":"Public Service Electric & Gas (PSE&G)","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (low to moderate flood risk)"},"859":{"description":"CyrusOne NYM1 is an operational wholesale/colocation data center at 800 Cottontail Lane in Somerset, New Jersey, operated by CyrusOne. It totals about 430,000 sq ft (185,000 sq ft IT) with a verified 30 MW IT capacity.","verified_status":"operational","power_capacity_mw":30,"total_sqft":430000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne NYM1","verified_operator":"CyrusOne","verified_owner":"KKR and Global Infrastructure Partners (GIP, now a BlackRock subsidiary)","cooling_type":"chilled water","tier_level":"Tier III+ design standard","fiber_providers":"Carrier-neutral; Cross River Fiber, Sunesys, Lightower, Verizon Communications, Atlantic Metro, Hudson Fiber","num_buildings":2,"campus_acres":22.51,"utility_provider":"Public Service Electric and Gas Co. (PSE&G)","tax_incentives":"Next New Jersey Program – AI (state tax credits up to $250M for qualifying data center projects); no facility-specific award identified","natural_hazard_zone":"FEMA Flood Zone X (low risk)"},"860":{"description":"Rackspace Technology’s NYC2 New York Metro Data Center is an operational enterprise facility at 202–216 Campus Drive, Somerset, NJ. It features a 35,000‑square‑foot raised-floor environment staffed 24x7x365, with utility/UPS capacity and carrier connectivity appropriate for colocation workloads.","verified_status":"operational","power_capacity_mw":2.7,"total_sqft":35000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Rackspace New York City Data Center (NYC2)","verified_operator":"Rackspace Technology","verified_owner":"","cooling_type":"unknown","tier_level":"No Uptime Institute Tier certification publicly listed; enterprise design with N+N power and N+1 cooling redundancy.","fiber_providers":"","num_buildings":1,"campus_acres":3.12,"utility_provider":"PSE&G / Public Service Electric & Gas","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (low risk / outside special flood hazard area)"},"861":{"description":"365 Data Centers’ Bridgewater facility is an operational colocation site at 999 Frontier Rd, Bridgewater Township, NJ, offering 2.3 MW of installed power and roughly 25,000 sq ft of data hall space within a ~40,000 sq ft building; it opened around 2010 and was acquired from NYI in 2019.","verified_status":"operational","power_capacity_mw":2.3,"total_sqft":40000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers NJ1 (Bridgewater)","verified_operator":"365 Data Centers","verified_owner":"Normandy Realty","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"862":{"description":"Blue Hill NJ is an operational Blue Hill Data Services enterprise/private-hosting and colocation facility at 3434 US‑22 (Route 22), Branchburg, New Jersey. Public listings indicate about 10,000 sq ft for the facility, while a 2023 lease report notes a 7,642‑sq‑ft renewal within the 42,653‑sq‑ft multi‑tenant building at that address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Blue Hill New Jersey","verified_operator":"Blue Hill Data Services","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":6.53,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"863":{"description":"CoreWeave’s Kenilworth / 11 NEST is a hyperscale AI data center under construction at the NEST campus in Kenilworth, NJ, a roughly $1.8B, ~392,600 sq ft project targeting up to 250 MW and expected to be operational in 2027.","verified_status":"under-construction","power_capacity_mw":250,"total_sqft":392600,"year_online":"2027","construction_update":"Planning approval granted in spring 2025; construction commenced by late 2025 and remained active through mid-2026.","recent_news":"June 2026: New Jersey paused its AI tax-incentive program after CoreWeave’s award, amid growing local pushback and rallies over the Kenilworth data center.","notable_tenants":"","verified_name":"CoreWeave: Kenilworth (NEST) Data Center","verified_operator":"CoreWeave","verified_owner":"CoreWeave","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":108,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"Next New Jersey Program – AI tax credit: $50M/year for 5 years (total $250M).","natural_hazard_zone":""},"864":{"description":"Comcast is converting the former TD Bank building at 92 W. Main St., Clinton, NJ into a small enterprise data center for Comcast Cable servers and equipment, with two backup generators.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":2170,"year_online":"unknown","construction_update":"As of Aug 11, 2025, coverage reported town approval for Comcast to convert the former TD Bank at 92 W. Main St. into a data center, including two emergency backup generators.","recent_news":"","notable_tenants":"","verified_name":"Comcast Clinton Data Center","verified_operator":"Comcast","verified_owner":"Comcast Corporation","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.09,"utility_provider":"Jersey Central Power & Light (JCP&L)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B (moderate flood hazard)"},"865":{"description":"Continuity Centers Princeton is an operational workgroup-recovery/business-continuity data center operated by American Business Continuity Centers (Continuity Centers) at 500 College Road East in the Princeton Forrestal Center, launched in 2016.","verified_status":"operational","power_capacity_mw":0,"total_sqft":158235,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Continuity Centers Princeton","verified_operator":"American Business Continuity Centers (Continuity Centers)","verified_owner":"Bergman Real Estate Group / Hornig Capital Partners / Eightfold Capital (JV)","cooling_type":"evaporative","tier_level":"","fiber_providers":"Comcast, AT&T, Sunesys, Lightpath","num_buildings":1,"campus_acres":0,"utility_provider":"Public Service Electric and Gas Company (PSE&G)","tax_incentives":"","natural_hazard_zone":"moderate regional flood/hurricane exposure; exact FEMA flood-zone designation for 500 College Road East not publicly confirmed"},"866":{"description":"A 365 Data Centers colocation/POP site located on the 4th floor at 121 Varick Street in Manhattan, focused on interconnection and colocation services.","verified_status":"operational","power_capacity_mw":2,"total_sqft":0,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers - New York 3","verified_operator":"365 Data Centers","verified_owner":"121 Varick Street Corp.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.23,"utility_provider":"Con Edison","tax_incentives":"New York State sales tax exemption for Internet data center operators on qualifying equipment and certain services (Tax Bulletin ST‑405).","natural_hazard_zone":"High flood risk; NYC hurricane evacuation zone (Hudson Square)"},"867":{"description":"DataBank LGA2 is a DataBank-operated colocation data center in Manhattan’s 111 Eighth Avenue building, a major carrier-hotel location with dense connectivity. The site provides interconnection-focused colocation services in New York City.","verified_status":"operational","power_capacity_mw":0.68,"total_sqft":10200,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Downtown New York City Data Center (LGA2)","verified_operator":"DataBank","verified_owner":"Google","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; ~50 onsite carriers; example: Console Connect","num_buildings":1,"campus_acres":3.79,"utility_provider":"Con Edison","tax_incentives":"New York State Internet data center sales/use-tax exemption (general statewide program; not facility-specific).","natural_hazard_zone":"FEMA Flood Zone X/B; NYC Hurricane Evacuation Zone 4; historic Sandy-related vulnerabilities reported in the building/area"},"868":{"description":"DataBank LGA3 is an operational colocation data center at 2000 Corporate Drive, Orangeburg, NY, offering 20MW of critical IT load across 110,000 sq ft. It is located about 30 miles north of Manhattan.","verified_status":"operational","power_capacity_mw":20,"total_sqft":110000,"year_online":"2025","construction_update":"LGA3 is operational; campus Phase Two/LGA4 review advanced to a July 8, 2026 Planning Board date after a previously scheduled May 27, 2026 hearing was moved.","recent_news":"Mar 27, 2026: Local coverage reported pushback on DataBank’s Orangeburg expansion plans; reps said the expanded operation would use 30 MW. The Orangetown review for Databank Orangeburg Phase Two was moved to a July 8, 2026 Planning Board date.","notable_tenants":"CoreWeave; others not publicly named.","verified_name":"DataBank LGA3 Orangeburg Data Center","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral with 7 onsite carriers; connectivity to 111 8th Avenue, 60 Hudson Street, and 165 Halsey Street","num_buildings":2,"campus_acres":34,"utility_provider":"Orange & Rockland Utilities (O&R), a subsidiary of Consolidated Edison","tax_incentives":"","natural_hazard_zone":"Adjacent to Lake Tappan drinking-water reservoir; consult FEMA flood maps for parcel-level flood risk (no specific high-risk FEMA zone identified in provided excerpts)."},"869":{"description":"Lumen New York 7 is an operational Lumen Technologies colocation/telecom data center in the Starrett–Lehigh Building at 601 West 26th Street, New York, NY, with 73,822 sq ft total and 20,000 sq ft of raised-floor colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":73822,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen: New York 7 Data Center","verified_operator":"Lumen Technologies","verified_owner":"RXR Realty / 601 West Associates LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; Lumen; Windstream/Broadview Networks; Uniti","num_buildings":1,"campus_acres":2.85,"utility_provider":"Con Edison","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE"},"870":{"description":"Equinix NY1 is an Equinix IBX carrier-neutral colocation data center located on the 8th floor of 165 Halsey Street in Newark, NJ, serving major financial, media, and enterprise customers.","verified_status":"operational","power_capacity_mw":3,"total_sqft":46465,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"BATS, CBOE, ICAP, Knight Capital, ISE, and BOX; serves financial, media, and enterprise companies.","verified_name":"Equinix NY1","verified_operator":"Equinix","verified_owner":"Market Halsey Urban Renewal (ownership entity; sponsored/managed by JJ Operating (JJOP))","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; 115+ network service providers at Equinix NY1; 60+ networks building-wide","num_buildings":1,"campus_acres":1.64,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"New Jersey Urban Enterprise Zone (UEZ) in Newark: eligible purchases at UEZ businesses qualify for a reduced 3.3125% sales tax.","natural_hazard_zone":"Above 500-year Base Flood Elevation (site); broader Newark CBD has notable flood risk"},"871":{"description":"DataBank EWR1 Downtown Newark is an operational DataBank colocation suite at 165 Halsey Street, Suite #500, Newark, offering 34,360 IT sq ft and 1.7 MW of critical IT load within the highly interconnected, carrier‑neutral 165 Halsey telecom hotel.","verified_status":"operational","power_capacity_mw":1.7,"total_sqft":34360,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank EWR1 – Downtown Newark Data Center","verified_operator":"DataBank","verified_owner":"Market Halsey Urban Renewal LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; 60+ networks; 21 onsite carriers","num_buildings":1,"campus_acres":1.64,"utility_provider":"PSE&G","tax_incentives":"New Jersey Urban Enterprise Zone (UEZ) benefits available in Newark for participating/certified businesses (e.g., reduced sales tax and related incentives).","natural_hazard_zone":"low risk"},"872":{"description":"Colocation America’s NJDC1 (Clifton) is an operational colocation facility at 100 Delawanna Avenue, Suite 200, Clifton, NJ, operated by Colocation America within Digital Realty’s EWR20 building. The site offers secure, high‑performance colocation in Northern New Jersey.","verified_status":"operational","power_capacity_mw":33,"total_sqft":183000,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Colocation America NJDC1 / Clifton","verified_operator":"Colocation America","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Statewide incentives potentially applicable: Next NJ Program – AI tax credits; general Emerge and Aspire programs. No facility‑specific incentive confirmed.","natural_hazard_zone":"Outside 500-year floodplain (FEMA Zone X); Seismic Zone 2A"},"873":{"description":"Open Data Centers / Hammer Piscataway was a carrier-neutral colocation facility at 15 Corporate Place South, Suite 100, operated by Open Data Centers (acquired by Hammer in 2018). Hammer’s SEC filings report the Piscataway operations were discontinued in 2020 and Open Data Centers, LLC was dissolved in 2020, indicating the site is no longer operational.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Operations discontinued effective April 30, 2020; Open Data Centers, LLC dissolved December 30, 2020.","recent_news":"No facility-specific developments in the last six months; the address is marketed for lease on LoopNet.","notable_tenants":"iAreaNet (2013); no current anchor tenant publicly confirmed.","verified_name":"Hammer Piscataway Data Center","verified_operator":"Hammer Technology Holdings / Hammer Communications (via Open Data Centers LLC)","verified_owner":"15 Corporate Place LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multiple providers present (specific carriers not publicly listed)","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"","natural_hazard_zone":"unknown"},"874":{"description":"Operational colocation data center operated by Digital Fortress at 201 Centennial Avenue (often listed as 201B), Piscataway, NJ, offering roughly 96.5k sq ft with Tier III-style redundant infrastructure [1][2][3][5][6].","verified_status":"operational","power_capacity_mw":0,"total_sqft":96573,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Fortress Piscataway, New Jersey Data Center (PNJ)","verified_operator":"Digital Fortress","verified_owner":"Chirisa Technology Parks (CTP)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; Megaport; diverse fiber entry points","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (area of moderate flood hazard)"},"875":{"description":"CoreWeave NEST Building 11 is a hyperscale AI data center under development by CoreWeave at the Northeast Science & Technology Center (former Merck campus) at 2000 Galloping Hill Road in Kenilworth, NJ, combining a 284,500-sq-ft retrofit with 108,100 sq ft of new construction (~392,600 sq ft) and designed for up to 250 MW of power.","verified_status":"under-construction","power_capacity_mw":250,"total_sqft":392600,"year_online":"unknown","construction_update":"Construction commenced by late 2025 and was actively underway by Apr–May 2026, with local reports noting the project was under construction and ongoing public actions around it.","recent_news":"Apr–Jun 2026: Community opposition escalated while the project was under construction—local coverage highlighted protests/rallies and a planning board meeting canceled for lack of quorum.","notable_tenants":"","verified_name":"CoreWeave Kenilworth (NEST) — 11 NEST","verified_operator":"CoreWeave","verified_owner":"CoreWeave","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"$250 million NJ EDA tax credit ($50 million per year for 5 years) under the new EDA program (Next New Jersey Program – AI).","natural_hazard_zone":"Flood risk present (FEMA SFHAs exist in Kenilworth; First Street shows borough flood risk); hurricane/nor’easter exposure; low-to-moderate seismic risk."},"876":{"description":"CyrusOne Norwalk (NYM5) is an operational, carrier‑neutral colocation data center operated by CyrusOne at 6 Norden Place in Norwalk, Connecticut, offering up to 16 MW of power and 30,000 sq ft of work‑area recovery space.","verified_status":"operational","power_capacity_mw":16,"total_sqft":168000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne NYM5 - Norwalk","verified_operator":"CyrusOne","verified_owner":"Mapletree Industrial Trust","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; Cogent Communications; NexGen Networks","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Building and critical equipment above the 500-year flood zone"},"877":{"description":"CyrusOne Stamford (NYM10) is an operational colocation data center at 10 Riverbend Drive South, Stamford, CT, operated by CyrusOne. The facility offers about 57,000 sq ft total, including roughly 20,000 sq ft of colocation space and around 4 MW of power capacity.","verified_status":"operational","power_capacity_mw":4,"total_sqft":57000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne NYM10 (Stamford)","verified_operator":"CyrusOne","verified_owner":"River Bend Center, LLC (landlord). CyrusOne is privately owned by funds managed by KKR and Global Infrastructure Partners.","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":37,"utility_provider":"Eversource","tax_incentives":"Connecticut Data Center Tax Incentive Program offering sales/use tax and property tax exemptions (20–30 years for qualified projects).","natural_hazard_zone":"FEMA-mapped flood risk; coastal hurricane exposure (exact parcel flood zone to be confirmed on FEMA map)."},"878":{"description":"Planned 13‑story colocation/data-processing facility by Digital Realty (via GIP 7th Street LLC) at 727–737 S. Grand Avenue in Downtown Los Angeles, replacing an existing parking structure and totaling about 486,000 sq ft.","verified_status":"planned","power_capacity_mw":0,"total_sqft":486000,"year_online":"unknown","construction_update":"Jan 8, 2024: City of Los Angeles issued a Notice of Preparation for an Environmental Impact Report for the 727 S. Grand Project (ENV-2023-2247-EIR). Jan 9, 2024: Reported as on track to start work in 2025.","recent_news":"","notable_tenants":"","verified_name":"727 S. Grand Project (727 Grand data center)","verified_operator":"Digital Realty","verified_owner":"GIP 7th Street, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.895,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"Seismic risk area (Los Angeles County). FEMA flood zone for the parcel not identified in reviewed docs."},"879":{"description":"The Quinby Building at 650 S Grand Ave in Downtown Los Angeles is an operational carrier-hotel/colocation facility with a meet‑me room and robust power/HVAC, housing Colocation America’s LADC5 and other colocation suites historically operated by providers such as CoreSite/US Colo.","verified_status":"operational","power_capacity_mw":3,"total_sqft":76760,"year_online":"1996","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Quinby Building","verified_operator":"Colocation America (LADC5, Suite 300); CoreSite (Suites 600/1000). US Colo is legacy (acquired by CoreSite).","verified_owner":"The Grand Quinby Building LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.15,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"Seismic hazard (liquefaction) zone; FEMA flood zone not confirmed."},"880":{"description":"A historic DTLA carrier/data‑center building at 818 W. 7th Street, owned/managed by Downtown Properties (a Gaw Capital affiliate) that hosts multiple telecom operators including Lumen.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":66000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"AT&T, Verizon, Lumen, Zayo, Crown Castle, Frontier, Cogent, Edison Carrier Solutions, Tier Zero, LA DWP, Charter. Equinix LA2 previously operated at this address but its listing is no longer active.","verified_name":"818 Plaza (818 West 7th Street) carrier-hotel/data-center building","verified_operator":"Downtown Properties / DP Data Centers (landlord/facility). Active telecom/data-center tenants include Lumen (Level 3) and Verizon. Equinix LA2 lease exited Jan 31, 2025.","verified_owner":"Downtown Properties Holdings, LLC (Downtown Properties)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; major on-net providers include Lumen (Level 3), Verizon, AT&T, Zayo, Cogent, Crown Castle, Frontier (illustrative, not exhaustive).","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"Seismic/earthquake exposure (Los Angeles). Some flood risk present in Downtown LA; address-specific FEMA SFHA not determined."},"881":{"description":"Aptum Los Angeles is a colocation data center operated by Aptum at 360 E 2nd Street (Ste 804) in downtown Los Angeles, offering a 5,000 sq ft footprint and connectivity on Aptum’s network.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aptum Los Angeles Data Center","verified_operator":"Aptum Technologies","verified_owner":"Jamestown LP","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.58,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (minimal flood risk); high seismic zone (Southern California)"},"882":{"description":"Xfernet Los Angeles is an owner‑operated colocation data center at 3250 Wilshire Blvd in Los Angeles run by Xfernet, offering redundant power/connectivity and compliance‑focused infrastructure across 10,000+ sq ft.","verified_status":"operational","power_capacity_mw":1,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Xfernet Los Angeles Data Center (Wilshire Blvd)","verified_operator":"Xfernet","verified_owner":"3250 Wilshire Blvd Partners (California limited partnership)","cooling_type":"unknown","tier_level":"","fiber_providers":"PCCW, Telia, Cogent, GTT, Zayo; peering at Any2 Los Angeles, Equinix Exchange Los Angeles, MegaIX Los Angeles","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":""},"883":{"description":"Equinix LA4 is an Equinix-operated Los Angeles IBX colocation data center noted for serving network strategies for internet content-delivery and entertainment companies.","verified_status":"operational","power_capacity_mw":0,"total_sqft":177469,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix LA4 (Los Angeles IBX Data Center)","verified_operator":"Equinix","verified_owner":"TRT NOIP Maple El Segundo LP","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":11.41,"utility_provider":"Southern California Edison","tax_incentives":"City of El Segundo business license tax credit: 40% of sales tax generated, usable to offset up to 100% of business license tax liability, capped at $25,000 over three years.","natural_hazard_zone":"FEMA Zone B/X (moderate hazard; between 100-year and 500-year limits); IBX elevation above the 500-year flood level; Seismic Zone 4."},"884":{"description":"Spectrum Networks El Segundo is a Spectrum Networks–operated telecom/data center at 2345 Alaska Ave in El Segundo that supports Charter/Spectrum network and media operations. The facility is listed by industry directories and sits within a 40,494‑sq‑ft building.","verified_status":"operational","power_capacity_mw":4,"total_sqft":40494,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No third-party colocation tenants are publicly listed. The address hosts internal Charter/Spectrum operations including Spectrum News 1 and Spectrum SportsNet LA.","verified_name":"Spectrum Networks El Segundo","verified_operator":"Spectrum Networks","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Spectrum","num_buildings":1,"campus_acres":2.04,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"El Segundo business incentive: sales tax credit equal to 40% of sales tax generated, up to $25,000 over three years (additional program terms apply).","natural_hazard_zone":"Southern California seismic hazard area; FEMA flood zone not determined; citywide flood risk characterized as minor."},"885":{"description":"Goodman LAX01 Vernon / DataBank Los Angeles Vernon (LAX2) is a three‑story wholesale/colocation data center at 3094 E Vernon Ave in Vernon, CA, owned by Goodman and operated via a DataBank–Goodman joint venture. The 263,409‑sq‑ft facility will deliver up to 49.5 MW total site capacity (32 MW critical IT), with initial capacity targeted for December 2026.","verified_status":"under-construction","power_capacity_mw":49.5,"total_sqft":263409,"year_online":"2026","construction_update":"Mar 19, 2025: Groundbreaking; Sep 11, 2025: topped out; Apr 2026: JV confirmed with first 6 MW targeted for Dec 2026.","recent_news":"Apr 7–8, 2026: DataBank and Goodman announced a 50/50 joint venture for the Los Angeles Vernon (LAX2) data center at 3094 E Vernon Ave, with the first 6 MW targeted for December 2026 and additional capacity delivered in phases into 2027.","notable_tenants":"","verified_name":"Goodman LAX01 Vernon","verified_operator":"DataBank","verified_owner":"Goodman Group and DataBank (joint venture)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5.6,"utility_provider":"Vernon Public Utilities (VPU)","tax_incentives":"No California data center-specific state tax incentives; City of Vernon offers general business incentives (e.g., California Competes Tax Credit, Recycling Market Development Zones).","natural_hazard_zone":"FEMA Flood Zone X (minimal flood risk); seismic hazard zone"},"886":{"description":"Lumen Anaheim 1 is a Lumen Technologies colocation/network facility at 2461 West La Palma Avenue in Anaheim, California, listed at approximately 51,149 sq ft. It sits next to a long-standing telecom campus at 2463 W. La Palma that has hosted Level 3/Global Crossing connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":51149,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Anaheim 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral / multi-carrier; Lumen/Level 3/Global Crossing presence plus AT&T, Cogent, Cox, Edison Carrier Solutions, TelePacific, Time Warner Cable/tw telecom (via Anaheim Palms/Aecero campus connectivity)","num_buildings":1,"campus_acres":0,"utility_provider":"Anaheim Public Utilities","tax_incentives":"","natural_hazard_zone":"Southern California seismic exposure; FEMA flood zone not determined (address-specific lookup required); not in a hurricane zone"},"887":{"description":"Cogent Data Center - Anaheim 2 is a Cogent-operated colocation facility at 1750 West Penhall Way in Anaheim, CA, offering about 8.31 MW of capacity across roughly 55,240 sq ft. It is notable for being included in Cogent’s May 2026 announced sale of ten data centers to an entity sponsored by I Squared Capital.","verified_status":"operational","power_capacity_mw":8.31,"total_sqft":55240,"year_online":"unknown","construction_update":"","recent_news":"May 26–27, 2026: Cogent announced a definitive agreement to sell ten data center facilities for $225 million to a new entity sponsored by I Squared Capital; industry reports said the deal was expected to close in Q3 2026.","notable_tenants":"","verified_name":"Cogent Data Center - Anaheim 2","verified_operator":"Cogent Communications, Inc.","verified_owner":"Cogent Fiber, LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":2.5,"utility_provider":"Anaheim Public Utilities","tax_incentives":"","natural_hazard_zone":""},"888":{"description":"A Cogent-operated edge data center at 11230 Brookshire Ave, Downey, CA, listed as “Cogent Edge Data Center - Downey,” providing colocation and connectivity services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Edge Data Center - Downey","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications","num_buildings":0,"campus_acres":0,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"","natural_hazard_zone":"seismic/earthquake exposure"},"889":{"description":"Cogent Edge Data Center - Van Nuys is a Cogent-operated telecom edge facility located at 14525 Raymer St, Van Nuys, CA 91405, listed as an active service-location in Cogent’s directory.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Edge Data Center - Van Nuys","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications (on-net)","num_buildings":0,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (Area of Minimal Flood Hazard); outside CGS mapped liquefaction zone"},"890":{"description":"Cogent Data Center - Burbank is an operational colocation/telecom facility operated by Cogent at 100 S Flower Street in Burbank, offering about 52,768 sq ft of secure space. In May 2026 it was included in a definitive agreement to be sold to a new entity sponsored by I Squared Capital.","verified_status":"operational","power_capacity_mw":2,"total_sqft":52768,"year_online":"unknown","construction_update":"","recent_news":"On May 26–27, 2026, Cogent announced a definitive agreement to sell 10 data centers—including 100 S Flower Street, Burbank—to a new entity sponsored by I Squared Capital; the deal was expected to close in Q3 2026.","notable_tenants":"","verified_name":"Cogent Data Center - Burbank","verified_operator":"Cogent Communications","verified_owner":"Cogent Fiber, LLC (sale to an I Squared Capital entity announced; pending close as of 2026-06-29)","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent; Level 3/Lumen; AT&T; dark fiber available","num_buildings":1,"campus_acres":0,"utility_provider":"Burbank Water and Power (BWP)","tax_incentives":"","natural_hazard_zone":"Seismic hazard exposure (Southern California earthquake risk); FEMA flood mapping applies"},"891":{"description":"Cogent Data Center - Rialto is an operational Cogent-operated telecom/colocation facility at 282 South Sycamore Avenue, Rialto, CA. Cogent’s 2025 wholesale sheet lists a 45,610 sq ft secure facility with 3.00 MW total power, including 2.42 MW protected power and 17,200 sq ft of wholesale colocation space.","verified_status":"operational","power_capacity_mw":3,"total_sqft":45610,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Rialto","verified_operator":"Cogent Communications","verified_owner":"Cogent Communications","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral; Cogent, AT&T, Time Warner, Pacific Lightwave, Edison Carrier Solutions (ECS)","num_buildings":0,"campus_acres":4.4,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"","natural_hazard_zone":"Seismic zone (San Andreas Fault system); citywide moderate flood risk"},"892":{"description":"Fireline Broadband owns and operates a colocation data center at 5900 Wilshire Blvd (Suite 250) in Los Angeles, providing enterprise connectivity and services from this site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fireline Broadband Data Center","verified_operator":"Fireline Broadband","verified_owner":"5900 Wilshire Owner, LLC (Rockpoint Group; Rockhill Management affiliate)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (low risk)"},"893":{"description":"Flexential Las Vegas - North is an operational colocation data center at 3330 East Lone Mountain Road in North Las Vegas operated by Flexential, offering a 111,240-square-foot footprint and 9 MW of critical power; it originally launched in 2013 and was promoted as the industry's first Tier IV Design-Certified multi-tenant data center.","verified_status":"operational","power_capacity_mw":9,"total_sqft":111240,"year_online":"2013","construction_update":"March 20, 2017: ViaWest completed construction on an expansion of the Lone Mountain (North Las Vegas) data center, adding 32k sq ft of raised floor.","recent_news":"","notable_tenants":"Progrexion was publicly named in 2013 as expanding its colocation footprint into the Lone Mountain data center.","verified_name":"Flexential Las Vegas - North Data Center","verified_operator":"Flexential","verified_owner":"GI Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"tw telecom","num_buildings":0,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Nevada Data Center Tax Abatement: 75% personal property tax abatement and sales/use tax reduced to 2% for 10 or 20 years (subject to qualification and approvals).","natural_hazard_zone":""},"894":{"description":"Lumen Las Vegas 3 is a Lumen Technologies telecom/colocation data center at 3944 E Silvestri Ln in Las Vegas. Facility profiles list this address and note approximately 1,900 ft² of colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":15656,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Las Vegas 3","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; multiple DIA providers available","num_buildings":1,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"","natural_hazard_zone":"unknown"},"895":{"description":"An operational colocation/telecom facility at 2240 Corporate Circle in Henderson, NV is listed under Verizon Enterprise, with a conflicting directory entry also listing the same address as ColoVegas (NocRoom), indicating operator ambiguity and a multi-tenant/carrier ecosystem.","verified_status":"operational","power_capacity_mw":0,"total_sqft":54962,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon: 2240 Corporate Cir","verified_operator":"Verizon Enterprise","verified_owner":"Brentwood Green Valley LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon Enterprise; other connected carriers not publicly disclosed","num_buildings":1,"campus_acres":4.84,"utility_provider":"NV Energy","tax_incentives":"No facility-specific incentive identified; Nevada offers data center tax abatements via GOED.","natural_hazard_zone":""},"896":{"description":"Switch Las Vegas 7 (SUPERNAP 7) is an operational Switch colocation data center at 7135 S Decatur Boulevard in Las Vegas, within the company’s Las Vegas Core Campus. The purpose-built facility totals 515,047 square feet.","verified_status":"operational","power_capacity_mw":100,"total_sqft":515047,"year_online":"2008","construction_update":"","recent_news":"No LAS VEGAS 7-specific news in the last six months. Related metro development: on June 17–18, 2026, Clark County approved Switch’s separate LAS 19 data center near Warm Springs Road and Edmond Street after public discussion.","notable_tenants":"","verified_name":"Switch LAS VEGAS 7 (SUPERNAP 7)","verified_operator":"Switch","verified_owner":"","cooling_type":"hybrid","tier_level":"Switch Tier 5 Platinum (proprietary)","fiber_providers":"carrier-neutral; 50+ providers","num_buildings":9,"campus_acres":0,"utility_provider":"NV Energy (Nevada Power)","tax_incentives":"Nevada data center incentives: up to a 2% sales/use tax rate and a 75% personal property tax abatement for 10–20 years for qualifying projects; Switch markets the 2% use tax abatement to colocating customers in Las Vegas.","natural_hazard_zone":"UBC Seismic Zone 2B; FEMA flood zone not determined for 7135 S Decatur Blvd"},"897":{"description":"Switch Las Vegas 9 (SUPERNAP Las Vegas 9) is an operational Switch colocation data center at 7365 S Lindell Road in Las Vegas, part of the company’s Core campus, opened in 2015 and sized ~471k–500k sq ft with up to 50 MW of power.","verified_status":"operational","power_capacity_mw":50,"total_sqft":471248,"year_online":"2015","construction_update":"","recent_news":"No Las Vegas 9-specific developments reported in the last 6 months. A June 18, 2026 approval covered a separate ~57,000 sq ft Switch data center near Warm Springs Rd and Decatur Blvd, not the 7365 S Lindell Rd site.","notable_tenants":"","verified_name":"Switch LAS VEGAS 9 (also known as SUPERNAP LAS VEGAS 9)","verified_operator":"Switch","verified_owner":"Switch (private), owned by funds managed by DigitalBridge and IFM Investors","cooling_type":"hybrid","tier_level":"Uptime Institute Tier IV Gold","fiber_providers":"carrier-neutral","num_buildings":9,"campus_acres":0,"utility_provider":"NV Energy (grid); Switch later approved to self‑procure renewables","tax_incentives":"Nevada data center abatements: partial abatements of sales/use and personal property taxes (GOED); Switch cites a 75% abatement of local business personal property tax for qualifying colocators.","natural_hazard_zone":"FEMA Flood Zones C and X (area of minimal hazard; above 500‑year flood level)"},"898":{"description":"Switch Las Vegas 10 (LV10) is an operational colocation data center operated by Switch in Las Vegas, opened in 2017 as part of the company\u0019s Las Vegas Core Campus.","verified_status":"operational","power_capacity_mw":40,"total_sqft":343436,"year_online":"2017","construction_update":"","recent_news":"June 2026: Clark County approved a nearly 57,000-sf Switch data center expansion near Warm Springs Rd and Edmond/Decatur; sources do not identify the project as LV10.","notable_tenants":"No LV10-specific tenants are publicly disclosed. Example Switch clients cited at the LV10 launch include Amazon Web Services, eBay, Marvel, Shutterfly, FOX, Amgen, Lionsgate, Zappos, Intuit, DreamWorks, Intel, MGM, HP, State of Nevada, PayPal, Hulu, Machine Zone, Boeing, Warner Brothers, NASA, and Verizon.","verified_name":"Switch LAS VEGAS 10","verified_operator":"Switch","verified_owner":"NV LAS N A P 10 L L C","cooling_type":"hybrid","tier_level":"Switch Tier 5 (proprietary; Tier 5 Platinum referenced)","fiber_providers":"carrier-neutral; Reliance Globalcom, Verizon Communications, CenturyLink; 50+ carriers campus-wide","num_buildings":1,"campus_acres":13.18,"utility_provider":"NV Energy","tax_incentives":"Nevada data-center abatements: 75% personal-property-tax abatement for 10 or 20 years and sales/use tax reduced to 2% for 10 or 20 years (subject to state program eligibility).","natural_hazard_zone":"FEMA Flood Zone X (area of minimal flood hazard; historically Zone C)"},"899":{"description":"Switch Las Vegas 11 is an operational colocation data center operated by Switch at 7380 S Lindell Road in Las Vegas, Nevada, and is part of the company’s Las Vegas Core Campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":381881,"year_online":"2018","construction_update":"","recent_news":"June 2026: Clark County approved Switch’s plan for a roughly 57,000 sq ft data center on nine acres along Warm Springs Road near the existing Core Campus—an area expansion adjacent to the campus that includes LV11.","notable_tenants":"","verified_name":"Switch LAS VEGAS 11","verified_operator":"Switch","verified_owner":"DigitalBridge and IFM Investors (owners of Switch)","cooling_type":"hybrid","tier_level":"Tier 5 Platinum (Switch proprietary standard)","fiber_providers":"carrier-neutral","num_buildings":11,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements available; eligible tenants may qualify for a use tax rate capped at 2% on equipment purchases.","natural_hazard_zone":""},"900":{"description":"Flexential Las Vegas – Downtown (Carson I & II / LAS03) is an operational Flexential colocation data center in downtown Las Vegas located at the Carson buildings on E. Carson Avenue.","verified_status":"operational","power_capacity_mw":1.37,"total_sqft":33135,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Las Vegas - Downtown data center","verified_operator":"Flexential","verified_owner":"DROCK 3RD STREET LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Nevada Data Center Tax Abatement program (NRS 360.754) – abatements of sales/use tax to 2% and 75% personal property tax for 10 or 20 years (participation and award details for this specific facility not confirmed).","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard between 100-year and 500-year limits)."},"901":{"description":"CENTRA RNO01 is an operational, carrier-neutral edge/interconnection data center at 200 S Virginia St in downtown Reno, operated by CENTRA (formerly known as Deep Edge Realty/Nevada Core Infrastructure), offering interconnections to more than 10 regional providers across roughly 4,600 sq ft.","verified_status":"operational","power_capacity_mw":0.25,"total_sqft":4600,"year_online":"2021","construction_update":"","recent_news":"May 29, 2026: Local coverage notes Centra at 200 S Virginia as an already existing data center in a shared building; concurrent construction/topping‑out news applies to CENTRA RNO2 at 265 Keystone, not RNO01.","notable_tenants":"","verified_name":"CENTRA: 200 S Virginia (RNO01)","verified_operator":"CENTRA Digital Interconnect (CENTRA)","verified_owner":"Basin Street Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; interconnections to 10+ providers; direct conduit to AT&T regional","num_buildings":1,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"No RNO1-specific tax incentive identified. Nevada has data center abatements; a separate application exists for CADC Reno 265 (RNO2).","natural_hazard_zone":"Flood risk (Downtown Reno/Truckee River corridor)"},"902":{"description":"A Google‑owned and operated hyperscale data center campus at 560 W Warm Springs Rd in Henderson, Nevada, serving Google’s services and infrastructure.","verified_status":"operational","power_capacity_mw":60,"total_sqft":270000,"year_online":"2020","construction_update":"","recent_news":"June 16, 2026: Henderson officials considered a 180‑day pause on accepting new data center permit applications to evaluate power, water, noise, and heat impacts; this applies to new approvals, not existing sites.","notable_tenants":"","verified_name":"Henderson, Nevada – Google Data Center","verified_operator":"Google","verified_owner":"Design LLC (Google subsidiary)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":64,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements approved for the Henderson project, totaling about $25.2 million over 20 years, under state programs offering partial sales/use and property tax abatements.","natural_hazard_zone":"Low flood risk (outside FEMA Special Flood Hazard Area; likely FEMA Zone X)."},"903":{"description":"DataBank SLC6 (Granite Point) is a colocation data center operated by DataBank at 14870 S Pony Express Road in Bluffdale, Utah, offering 88,250 IT sq ft and 22 MW of critical IT load. It is the fifth colocation facility on the company’s Granite Point campus.","verified_status":"operational","power_capacity_mw":22,"total_sqft":88250,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank SLC6 - Granite Point Data Center","verified_operator":"DataBank","verified_owner":"","cooling_type":"hybrid","tier_level":"Tier II (design standard)","fiber_providers":"carrier-neutral; 41 onsite carriers; tether/interconnect to SLC1 carrier hotel","num_buildings":4,"campus_acres":23,"utility_provider":"","tax_incentives":"Utah data center equipment sales/use-tax incentives available for qualifying deployments.","natural_hazard_zone":"Minor regional flood risk (Bluffdale); no facility-specific FEMA designation cited"},"904":{"description":"Flexential Salt Lake City - Millcreek is an operational Flexential colocation data center at 3949 South 200 East, Suite B1, offering a 36,000-square-foot footprint and 1.92 MW of critical power. It serves the Salt Lake Valley market with carrier-neutral infrastructure.","verified_status":"operational","power_capacity_mw":1.92,"total_sqft":36000,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Salt Lake City - Millcreek Data Center","verified_operator":"Flexential","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent","num_buildings":1,"campus_acres":1.37,"utility_provider":"","tax_incentives":"Utah offers a sales & use tax exemption for qualifying data centers (≥150,000 sq ft); this 36,000-sq-ft facility likely does not qualify.","natural_hazard_zone":"Earthquake/liquefaction exposure in the Salt Lake Valley (Wasatch Fault area); Murray identifies earthquake, flooding, and soil hazards. Address-specific FEMA flood zone not determined."},"905":{"description":"Voonami SLC2 is Voonami’s Salt Lake City colocation/data center and HQ at 2302 South Presidents Drive, Lincoln Bldg, Suite F, West Valley City, Utah. Opened in 2010 as an approximately 8,000 sq ft “green” facility with power density over 300 W/sq ft, it features 24x7x365 monitoring and maintains SOC 1 Type 2 SSAE 18 controls.","verified_status":"operational","power_capacity_mw":2.4,"total_sqft":8000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"Backcountry.com (disaster-recovery hosting, 2010)","verified_name":"Salt Lake City Data Center & HQ (SLC2)","verified_operator":"Voonami, Inc.","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah offers a sales and use tax exemption for qualifying data centers (minimum 150,000 sq ft); this facility’s size suggests it likely does not qualify. No site-specific abatements identified.","natural_hazard_zone":"Seismic risk near the West Valley fault zone and Salt Lake City segment of the Wasatch fault; local flood risk primarily along the Jordan River."},"906":{"description":"A Voonami-operated colocation data center at 510 East Technology Avenue Bldg C, Suite 1100 in Orem (SLC1), offering SSAE‑18–compliant facilities that are monitored and staffed 24x7x365. Multiple industry directories list the site at this address as an active data center.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Voonami Orem Data Center (SLC1)","verified_operator":"Voonami, Inc.","verified_owner":"Canyon Park Owner II LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; UTOPIA Fiber","num_buildings":1,"campus_acres":85,"utility_provider":"Rocky Mountain Power (PacifiCorp)","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (very low flood risk); elevated seismic risk along the Wasatch Front"},"907":{"description":"WebNX Ogden (OGD1) is WebNX’s self-operated colocation data center at 119 North 600 West, Bldg 3B, Ogden, Utah, offering over 100,000 sq ft of colocation space and enterprise power/network redundancy.","verified_status":"operational","power_capacity_mw":28.8,"total_sqft":150000,"year_online":"unknown","construction_update":"","recent_news":"Jun 1, 2026: WebNX posted a Data Center Operations Manager role in Ogden (84404), reflecting active operations and hiring.","notable_tenants":"","verified_name":"WebNX Ogden Data Center","verified_operator":"WebNX (WebNX Internet Services)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"","natural_hazard_zone":"Seismic hazard: Wasatch Fault (Weber segment); property-specific FEMA flood zone not determined."},"908":{"description":"Lumen Ogden 1 is an operational Lumen Technologies data center providing colocation services at 526 W 17th Street, Ogden, Utah.","verified_status":"operational","power_capacity_mw":1,"total_sqft":20000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Ogden 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen global IP backbone; diverse fiber/alternate carriers","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power (PacifiCorp)","tax_incentives":"Utah offers a sales/use tax exemption for qualifying enterprise data centers (generally ≥150,000 sq ft); at ~20,000 sq ft, this facility likely does not qualify. No site-specific incentives found.","natural_hazard_zone":"Seismic hazard: Wasatch Fault Zone (Weber segment) exposure; FEMA flood-zone designation not determined."},"909":{"description":"Lumen Salt Lake City 4 is an operational Lumen Technologies telecom/colocation data center at 3670 W 500 S in Salt Lake City; public listings corroborate the site and show a total of 35,826 sq ft with 10,370 sq ft of raised-floor space, though some directories label it Salt Lake City 3.","verified_status":"operational","power_capacity_mw":0,"total_sqft":35826,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Salt Lake City 4 Data Center (also listed as Lumen Technologies Salt Lake City 3 at the same address)","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah offers a statewide sales/use tax exemption for qualified data centers of 150,000+ sq ft; this facility is listed around 35,826 sq ft, so eligibility was not established.","natural_hazard_zone":"Wasatch Front seismic risk; FEMA flood zone not determined from provided sources"},"910":{"description":"A Verizon Enterprise-operated telecom/data center at 8871 South Sandy Parkway in Sandy, Utah—originally an XO Communications site—located within the 29,870‑SF Danbury Corporate Park Building B.","verified_status":"operational","power_capacity_mw":0,"total_sqft":29870,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon: 8871 South Sandy Data Center","verified_operator":"Verizon Enterprise","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; Verizon/XO Communications network connectivity","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah SB3002 provides sales and use tax exemptions for qualifying enterprise data centers; facility-specific qualification not confirmed.","natural_hazard_zone":"Seismic hazard exposure along the Wasatch Fault (Wasatch Front); liquefaction susceptibility in valley soils. Parcel-specific FEMA flood zone not determined."},"911":{"description":"Aligned SLC-03 is a hyperscale, wholesale build-to-scale data center operated by Aligned Data Centers on its West Jordan, Utah campus. It is noted for its two-story, 80MW design and sustainability features, including a Three Green Globes rating for its waterless heat rejection system.","verified_status":"operational","power_capacity_mw":80,"total_sqft":480000,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aligned SLC-03 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"Aligned Energy / Aligned Data Centers","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral; on-net: Cogent, Comcast, FirstDigital Telecom, Lumen, PacketFabric, UTOPIA Fiber, Zayo, Verizon","num_buildings":3,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah sales and use tax exemption for qualifying data centers (≥150,000 sq ft), retroactive to July 1, 2016; exemption applies to data center equipment with ≥1‑year economic life.","natural_hazard_zone":"Seismic hazard: approximately 7 miles west of the primary Wasatch Fault seismic zone"},"912":{"description":"Aligned SLC‑05 is a hyperscale/wholesale data center development in West Jordan, Utah, operated by Aligned Data Centers; it is designed as a ground‑up 450,000‑sq‑ft facility with 72 MW critical load associated with the 6836 W Old Bingham Hwy campus.","verified_status":"under-construction","power_capacity_mw":72,"total_sqft":450000,"year_online":"unknown","construction_update":"2024-03-13: Blackstone provides an initial $600M credit facility to support development of Aligned’s newest and largest data center in West Jordan (SLC‑05). Project scope documented by contractor in Oct 2024 (72 MW, 450,000 SF); parcel/permit records remain active at 6836 W Old Bingham Hwy.","recent_news":"","notable_tenants":"","verified_name":"Aligned Data Centers SLC05 (SLC-5)","verified_operator":"Aligned Data Centers","verified_owner":"ALIGNED DATA CENTER WJU PROPCO LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":93.27,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah data center sales and use tax exemptions for qualified equipment (large facilities), enabling significant customer savings in Salt Lake City.","natural_hazard_zone":"Seismic exposure near the Wasatch Fault; nearby FEMA designation indicates Flood Zone X (minimal)."},"913":{"description":"Building 2 (“Eagle 2”) of Meta’s hyperscale Eagle Mountain campus at 1275 North Community Circle in Eagle Mountain, Utah, owned and operated by Meta. It is one of multiple Meta data center buildings on the campus.","verified_status":"operational","power_capacity_mw":48,"total_sqft":338260,"year_online":"2020","construction_update":"Campus expansion activity noted: ground broken January 27, 2026; no Eagle 2–specific construction active.","recent_news":"January 27, 2026: Ground was broken for an expansion of Meta’s Eagle Mountain data center (campus-level).","notable_tenants":"No third-party tenants disclosed; serves Meta’s own services (e.g., Facebook, Instagram, WhatsApp).","verified_name":"Meta Eagle Mountain - Building 2","verified_operator":"Meta","verified_owner":"Meta Platforms","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":7,"campus_acres":488,"utility_provider":"Rocky Mountain Power","tax_incentives":"Approximately $150M property tax relief and up to $5.8M in state sales tax savings for the Eagle Mountain project; Utah’s statewide data center sales tax exemption also applies.","natural_hazard_zone":"Low flood risk (city-level minor risk; generally FEMA Zone X) and exposure to Wasatch Front seismic activity (earthquake/liquefaction considerations)."},"914":{"description":"Meta Eagle 5 (Eagle Mountain Building 5) is a hyperscale data center building within Meta’s Eagle Mountain, Utah campus, owned and operated by Meta Platforms, located at 1725 N Community Cir in Eagle Mountain.","verified_status":"operational","power_capacity_mw":48,"total_sqft":0,"year_online":"2022","construction_update":"","recent_news":"Feb 24, 2026: Reporting indicates Meta’s Eagle Mountain data campus is expanding.","notable_tenants":"","verified_name":"Meta: Eagle 5 (Meta Eagle Mountain – Building 5)","verified_operator":"Meta Platforms, Inc.","verified_owner":"Meta Platforms, Inc.","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":7,"campus_acres":488,"utility_provider":"","tax_incentives":"Published accounts reference substantial incentives, including Phase 1 tax benefits of roughly $150 million over 20 years, and open-ended agreements enabling additional tax breaks for future expansions; local commentary has cited a $100 million break.","natural_hazard_zone":"FEMA Flood Zone X (very low flood risk); low liquefaction and fault-line risk; elevated Wildland-Urban Interface wildfire exposure."},"915":{"description":"Meta Eagle 6 (Building 6) is a hyperscale data center building on Meta’s Eagle Mountain campus in Eagle Mountain, Utah, operated by Meta. It is part of Meta’s global infrastructure and was brought online in 2025.","verified_status":"operational","power_capacity_mw":99,"total_sqft":378792,"year_online":"2025","construction_update":"","recent_news":"Jan 21, 2026: Grist reported the Eagle Mountain campus withdrew more than 35 million gallons of water in 2024, highlighting scrutiny of data-center water use at the site.","notable_tenants":"","verified_name":"Meta Eagle Mountain - Building 6","verified_operator":"Meta","verified_owner":"Meta Platforms, Inc. (via Stadion, LLC)","cooling_type":"evaporative","tier_level":"LEED Gold; no public Uptime Institute Tier certification","fiber_providers":"","num_buildings":7,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"Property-tax incentives around $150M and sales-tax savings up to $5.8M were reported for the Eagle Mountain data center.","natural_hazard_zone":"Minor flood risk; inland (no hurricane exposure); not identified in FEMA Special Flood Hazard Area at the city level"},"916":{"description":"Oracle West Jordan is Oracle’s enterprise Utah Compute Facility (Project Sequoia) in West Jordan, Utah, operated to support Oracle’s own IT and cloud workloads and recognized as a flagship, ENERGY STAR–certified site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":235000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"No third-party tenants or anchor customers are publicly identified; the facility is used for Oracle’s own operations.","verified_name":"Oracle Utah Computer Center (Project Sequoia), West Jordan","verified_operator":"Oracle","verified_owner":"Oracle America, Inc.","cooling_type":"air-cooled","tier_level":"Tier III","fiber_providers":"","num_buildings":1,"campus_acres":51.07,"utility_provider":"Rocky Mountain Power (PacifiCorp)","tax_incentives":"State tax rebate of more than $15 million and local incentives nearly $10 million for Project Sequoia.","natural_hazard_zone":"Seismic risk: approximately seven miles west of the primary Wasatch Fault seismic zone."},"917":{"description":"The NSA Utah Data Center, code‑named Bumblehive, is a secure U.S. Intelligence Community data facility at Camp Williams near Bluffdale, Utah, operated by the National Security Agency. The campus is about 1 million square feet and was launched in 2014.","verified_status":"operational","power_capacity_mw":65,"total_sqft":1000000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"NSA (U.S. Intelligence Community)","verified_name":"Utah Data Center (UDC) / Intelligence Community Comprehensive National Cybersecurity Initiative Data Center; codename Bumblehive","verified_operator":"National Security Agency","verified_owner":"U.S. federal government (NSA) on Utah National Guard/Camp W.G. Williams land","cooling_type":"unknown","tier_level":"Tier III design standard","fiber_providers":"","num_buildings":0,"campus_acres":200,"utility_provider":"","tax_incentives":"No facility-specific incentive identified; in 2013 Utah enacted a 6% tax on electricity purchases for some military sites that impacted the NSA Utah Data Center.","natural_hazard_zone":"Low risk for fault lines and liquefaction per Camp Williams community risk assessment; no FEMA flood-zone designation identified in provided sources."},"918":{"description":"QTS Data Centers’ Eagle Mountain City campus in Eagle Mountain, Utah is a hyperscale data center development whose first phase includes five buildings across roughly 193 acres. QTS’s materials note building sizes in the 579,000–592,000 sq ft range per building.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"2026 (expected initial availability)","construction_update":"Apr 17, 2026: Topping‑out ceremony for the QTS Eagle Mountain data center campus (QTS + Layton Construction). Apr 20, 2026: Eagle Mountain City highlighted the milestone and first‑phase scope (five buildings, ~193 acres).","recent_news":"Apr 17, 2026: QTS and Layton Construction celebrated a topping‑out milestone for the Eagle Mountain data center campus; local coverage the same day noted the 193‑acre campus “is set to be done this year.”","notable_tenants":"","verified_name":"QTS Eagle Mountain Campus (Salt Lake City 1 / SLC1)","verified_operator":"QTS Data Centers","verified_owner":"Blackstone (via QTS Realty Trust, LLC)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":5,"campus_acres":193,"utility_provider":"Rocky Mountain Power","tax_incentives":"Eagle Mountain Redevelopment Agency incentives associated with the Sweetwater Industrial Park CRA.","natural_hazard_zone":"FEMA Zone X (low flood risk); Wasatch Front seismic zone with local liquefaction potential."},"919":{"description":"QTS Eagle Mountain II is a hyperscale data center by QTS Data Centers at 542 E Hyperscale Wy (Fairfield/Eagle Mountain, Utah), part of QTS’s new Eagle Mountain campus. The campus spans about 193 acres and is actively under construction, with multiple buildings topped out in April 2026.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"2026 (expected)","construction_update":"Apr 17–20, 2026: Topping-out milestone at QTS’s Eagle Mountain campus — QTS and Layton reported the third building was topped out; Eagle Mountain City held a topping-out ceremony.","recent_news":"Apr 17–20, 2026: QTS and Layton marked a topping-out milestone at the Eagle Mountain campus, noting the third building was topped out; the city hosted a ceremony recognizing the milestone.","notable_tenants":"","verified_name":"QTS Eagle Mountain II (QTS EM2)","verified_operator":"QTS Data Centers","verified_owner":"Eagle Mountain Data Center Campus LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":5,"campus_acres":193,"utility_provider":"","tax_incentives":"Local: Eagle Mountain Redevelopment Agency tax increment reimbursement/TIF approved in 2023. State: Utah’s data center sales/use tax incentives program existed but faced new restrictions in 2026.","natural_hazard_zone":"low risk"},"920":{"description":"Pony Express Technology Park is a planned hyperscale data center campus in Eagle Mountain, Utah, developed by Tract. The 225-acre site is listed as Owned & In Development, sits within the city’s RTI overlay, and is contiguous to Meta, Google, and QTS campuses.","verified_status":"planned","power_capacity_mw":120,"total_sqft":0,"year_online":"unknown","construction_update":"Jan 18, 2024: Tract announced acquisition of 668 acres in Eagle Mountain for future data center campuses; no subsequent site-specific construction start for Pony Express is publicly documented.","recent_news":"","notable_tenants":"","verified_name":"Pony Express Technology Park","verified_operator":"Tract","verified_owner":"PONY EXPRESS LAND DEVELOPMENT INC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":668,"utility_provider":"","tax_incentives":"Regional Technology and Industry (RTI) Overlay zoning; Tax Increment Financing eligibility via Eagle Mountain Redevelopment Agency","natural_hazard_zone":"FEMA Flood Zone X; very low flood risk"},"921":{"description":"Tract Pole Canyon Technology Park is a Tract-developed, master‑planned hyperscale/wholesale data center campus in the Pole Canyon area of Eagle Mountain, Utah. It spans 844 acres and sits within the city’s RTI industrial zoning context for data centers.","verified_status":"planned","power_capacity_mw":1700,"total_sqft":0,"year_online":"unknown","construction_update":"2024-01-18 — Tract announced acquisition of 668 acres in Eagle Mountain to support future data center campuses; as of mid-2026, the Pole Canyon project page lists the site as “Owned & In Development,” with no public construction start date announced.","recent_news":"","notable_tenants":"","verified_name":"Pole Canyon Technology Park","verified_operator":"Tract","verified_owner":"UTLCO Eagle Mtn Two LLC (Tract-affiliated landholding entity)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":844,"utility_provider":"","tax_incentives":"RTI Overlay zoning enabling by-right data center use on the site; no facility-specific tax abatement publicly disclosed.","natural_hazard_zone":"Eagle Mountain context: FEMA Zone X (very low flood) citywide, low liquefaction/fault risk, mapped dam-failure/flood hazard areas; regional wildfire exposure."},"922":{"description":"Cirrus DS View 78 Data Center Campus – Phase 1 is a planned hyperscale/wholesale colocation development in Midvale, Utah, marketed by Cirrus Data Services, a subsidiary of Gardner Company, with an expandable campus design up to 160 MW.","verified_status":"planned","power_capacity_mw":32,"total_sqft":224000,"year_online":"unknown","construction_update":"Mar 3, 2020: Midvale City Council agenda item for Amended Subdivision at 983 West Center Street, including ACTION to approve Preliminary Site Plan for a 3-lot subdivision.","recent_news":"","notable_tenants":"","verified_name":"Cirrus DS View 78 Data Center (Campus – Phase 1)","verified_operator":"Cirrus Data Services (CirrusDS)","verified_owner":"Gardner Company (Gardner Group)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":200,"utility_provider":"Rocky Mountain Power","tax_incentives":"Utah sales and use tax exemptions for qualifying data center purchases (Utah Code §59-12-104); no project-specific local abatement identified.","natural_hazard_zone":"Remediated Superfund site context (former Sharon Steel Midvale Tailings) and regional seismic risk from the Wasatch fault."},"923":{"description":"A proposed enterprise data center by B+F Timpanogos Tech Center LLC at 1507 S 180 E in Provo’s East Bay area, planned as a two‑story, ~132,000‑sq‑ft facility starting at 5 MW and scalable to 50 MW with closed‑loop cooling. The required Data Center Overlay rezoning for the site was denied by the Provo Municipal Council on March 10, 2026.","verified_status":"planned","power_capacity_mw":50,"total_sqft":132000,"year_online":"unknown","construction_update":"Feb 11, 2026: Provo Planning Commission approved the project plan and recommended the Data Center Overlay for 1507 S 180 E; Mar 10, 2026: the Municipal Council voted 7–0 to deny the rezoning, and no construction start has been recorded.","recent_news":"On March 10, 2026, the Provo Municipal Council declined the rezoning to apply the Data Center Overlay to 1507 S 180 E, effectively denying the proposal.","notable_tenants":"","verified_name":"B+F Timpanogos: Provo Data Center","verified_operator":"B+F Timpanogos Tech Center LLC","verified_owner":"B+F Timpanogos Tech Center LLC","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Provo City Power","tax_incentives":"","natural_hazard_zone":"Seismic risk (Wasatch Front; regional liquefaction susceptibility). Flood risk requires address-specific FEMA FIRM verification."},"924":{"description":"A planned six‑story Digital Realty colocation facility at 301 Virginia St / 1930 3rd Ave in downtown Seattle, combining a network‑dense data center with R&D/lab, office, and ground‑floor retail.","verified_status":"planned","power_capacity_mw":0,"total_sqft":380000,"year_online":"unknown","construction_update":"Permit applications were filed May 29, 2026 to redevelop the site into a six‑story data center with lab/retail; reporting indicated construction could start in 2027, with no construction start announced as of 2026‑06‑29.","recent_news":"On June 9, 2026, the Seattle City Council unanimously adopted an emergency, one‑year moratorium on new large data centers citywide, while the city studies impacts.","notable_tenants":"","verified_name":"Digital Realty – 301 Virginia Street (Block 50), Seattle – planned","verified_operator":"Digital Realty","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; access to major carriers and SIX Seattle Internet Exchange","num_buildings":1,"campus_acres":0.64,"utility_provider":"Seattle City Light","tax_incentives":"Washington retail sales and use tax exemption may be available to qualifying data centers/tenants; some program elements have been limited or ended in 2026.","natural_hazard_zone":"Seismic/liquefaction hazard context per Seattle ECA maps; address-specific FEMA flood zone undetermined."},"925":{"description":"SDC Seattle East 1 is Sabey Data Centers’ wholesale/carrier‑neutral facility at 3411 South 120th Place in Tukwila, part of the SDC Seattle (Intergate.East) campus known for 54 MW campus capacity, 20+ carriers, and carbon‑free power.","verified_status":"operational","power_capacity_mw":28,"total_sqft":98564,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SDC Seattle East 1 (also known as SDC Seattle - Building A)","verified_operator":"Sabey Data Centers","verified_owner":"International Gateway East LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 20+ carriers","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Washington sales and use tax exemption eligibility for qualifying data centers (RCW 82.08.986) — applicability depends on meeting program criteria.","natural_hazard_zone":"Flood-prone area along the Green/Duwamish River corridor; regional liquefaction susceptibility (no parcel-specific FEMA zone confirmed)."},"926":{"description":"SDC Seattle West Building C is an operational Sabey Data Centers facility on the SDC Seattle campus; official collateral places Building C on the West campus along Tukwila International Blvd, while 3333 South 120th belongs to SDC Seattle East Building 3.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SDC Seattle - Building C","verified_operator":"Sabey Data Center Properties LLC (Sabey Data Centers)","verified_owner":"International Gateway East LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 20+ carriers","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Washington sales and use tax exemption programs for qualifying data centers (including nonrural/King County) are applicable in principle; 2026 changes curtailed some exemptions for equipment replacement/refurbishment. No facility-specific certificate identified.","natural_hazard_zone":"Not in local Flood Control Zone (record shows Flood Control Zone: N); local listing indicates lower flood and fire risk; regional seismic risk exists."},"927":{"description":"SDC Seattle West C (Intergate.West) at 12101 Tukwila International Boulevard is an operational Sabey Data Center Properties facility within the larger SDC Seattle campus, offering a ~45,600 sq ft data center footprint with access to 28 MW of power.","verified_status":"operational","power_capacity_mw":28,"total_sqft":45600,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"Digital Fortress (South Seattle/TUK) and COLOinSeattle (Wowrack).","verified_name":"Intergate.West","verified_operator":"Sabey Data Center Properties LLC","verified_owner":"Sabey Data Center Properties LLC","cooling_type":"unknown","tier_level":"Tier III equivalent design","fiber_providers":"Carrier-neutral; 20+ carriers; includes Cogent","num_buildings":3,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"Washington state sales/use tax exemption for data centers; expanded to urban areas in 2022.","natural_hazard_zone":"High flood risk (Green River floodplain area in Tukwila) and regional seismic risk (Seattle and Cascadia faults)."},"928":{"description":"Intergate.West is a Sabey Data Center Properties facility at 12201 Tukwila International Blvd in Tukwila, part of the larger SDC Seattle campus. The campus advertises 54 MW, and the SDC Seattle West B listing at this address indicates support for up to 28 MW.","verified_status":"operational","power_capacity_mw":28,"total_sqft":109711,"year_online":"unknown","construction_update":"Oct 17, 2025: At the SDC Seattle campus, 3.5 MW was available immediately and 12 MW was available for pre-leasing, expected online in 2027 (campus-level).","recent_news":"","notable_tenants":"Digital Fortress (Tukwila/Intergate West campus); COLOinSeattle (12201 address); Zayo Seattle Data Center #1 (12201, Suite 200); ColoCrossing SEA1 (12201 address).","verified_name":"Intergate.West","verified_operator":"Sabey Data Center Properties LLC","verified_owner":"INTERNATIONAL GATEWAY WEST LLC","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral; 15+ carriers with diverse fiber entrances","num_buildings":0,"campus_acres":2.61,"utility_provider":"Seattle City Light","tax_incentives":"Washington data center retail sales and use tax exemption program under state law for qualifying data centers/tenants; note that 2026 legislation adjusted aspects of the server replacement exemption.","natural_hazard_zone":"Regional seismic hazard (Seattle metro) and local flood risk in Tukwila"},"929":{"description":"EdgeConneX Seattle EDCSEA01 (SEA01) is an operational, carrier-neutral Edge Data Center operated by EdgeConneX at 3425 S 116th Street, Building 6, Suite 133, Tukwila, WA, offering a 47,000 sq ft facility with 4.5 MW of power.","verified_status":"operational","power_capacity_mw":4.5,"total_sqft":47000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"No anchor tenant or major customer is publicly disclosed for EDCSEA01.","verified_name":"EdgeConneX SEA01 (EDCSEA01)","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"","natural_hazard_zone":"Potential FEMA floodplain exposure (verify address-specific zone) and mapped liquefaction susceptibility in Tukwila."},"930":{"description":"Centersquare Seattle SEA2-A is an operational carrier-neutral colocation data center at 6101 S 180th Street in Tukwila, Washington, operated by Centersquare; it is marketed with 8.6 MW utility power and 29,279 sq ft of raised-floor space.","verified_status":"operational","power_capacity_mw":8.6,"total_sqft":72000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare Tukwila SEA2 Data Center (aka Seattle SEA2-A)","verified_operator":"Csquare (Centersquare)","verified_owner":"DCCO Tukwila LLC","cooling_type":"chilled water","tier_level":"Tier III-equivalent (no Uptime Institute certification found)","fiber_providers":"Carrier-neutral; on-net examples include Cogent. Directories also list additional carriers (e.g., AT&T, Lumen/Level 3, Zayo, Comcast, Verizon), though listings vary by source.","num_buildings":1,"campus_acres":7.76,"utility_provider":"Puget Sound Energy","tax_incentives":"Eligible program: Washington nonrural data center sales and use tax exemption (King County) for qualifying projects; no evidence this site has claimed it.","natural_hazard_zone":"Seismic and liquefaction susceptibility; localized flood-mitigation history along S 180th St."},"931":{"description":"Pacific Internet South Datacenter is a small colocation facility operated by Pacific Internet (WORLDLINK) at 1300 SW 7th St, Suite 112, Renton, Washington. Industry directories list it as an active WORLDLINK/Pacific Colocation site at that address.","verified_status":"operational","power_capacity_mw":1,"total_sqft":5954,"year_online":"unknown","construction_update":"","recent_news":"On 2026-06-15, Renton Reporter covered the Renton City Council initiating an AI data-center moratorium; the citywide action does not specifically name this facility.","notable_tenants":"","verified_name":"Pacific Internet South Datacenter (aka WORLDLINK Seattle South)","verified_operator":"Pacific Internet / WORLDLINK Internet Services","verified_owner":"B33 OAKESDALE II LLC (affiliate of Bridge33 Capital)","cooling_type":"unknown","tier_level":"Tier III (design claim; no Uptime certification found)","fiber_providers":"Carrier-neutral; listed carriers include MCI/UUNet, AboveNet, Time Warner, Savvis, Sprint, Level 3, and Cogent","num_buildings":1,"campus_acres":7.78,"utility_provider":"Puget Sound Energy (PSE)","tax_incentives":"Washington sales and use tax exemption is available for qualifying data centers; participation by this facility is not verified.","natural_hazard_zone":"Regional seismic risk: UBC Seismic Zone 3; FEMA flood zone not determined here (check King County iMap/FEMA MSC)"},"932":{"description":"Cogent Tacoma Data Center is an operational Cogent Communications facility at 2210 South 35th Street in Tacoma that offers Internet, VPN, Transport, and Colocation services. Third‑party listings indicate about 2.3 MW of power capacity and roughly 26,514 square feet of space.","verified_status":"operational","power_capacity_mw":2.3,"total_sqft":26514,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Tacoma","verified_operator":"Cogent Communications, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Tacoma Power","tax_incentives":"Washington state sales/use tax exemption for eligible data centers (RCW 82.08.986); Pierce County eligibility expanded per local chamber reporting; some exemptions end July 1, 2026. No site-specific incentive verified.","natural_hazard_zone":"FEMA Flood Zone X (low risk); regional Mount Rainier lahar/volcanic hazard area"},"933":{"description":"Centeris South Hill Campus (SH1) is an operational enterprise colocation data center operated by Centeris Data Centers on an 86‑acre South Hill campus in Puyallup, WA, offering a publicly listed 24 MW capacity for modern workloads.","verified_status":"operational","power_capacity_mw":24,"total_sqft":80000,"year_online":"2016","construction_update":"Active 2026 construction: City of Puyallup lists a Tenant Improvement/Remodel permit for the Centeris data center property, indicating interior build/upgrade work is underway.","recent_news":"City of Puyallup permitting shows a 2026 Tenant Improvement/Remodel for the Centeris data center property, indicating active interior expansion work.","notable_tenants":"ScaleMatrix; Chunghwa Telecom Global (CHT Global)","verified_name":"Centeris South Hill Campus","verified_operator":"Centeris Data Centers","verified_owner":"The Benaroya Company (via Benaroya Capital Company LLC / BCC Puyallup LLC)","cooling_type":"hybrid","tier_level":"Tier III design","fiber_providers":"Carrier-neutral; connectivity to 200+ fiber providers on campus","num_buildings":2,"campus_acres":86,"utility_provider":"Puget Sound Energy","tax_incentives":"Washington State non-rural data center sales and use tax exemption (ESHB 1846; RCW 82.08.9861 / RCW 82.12.9861)","natural_hazard_zone":"FEMA Flood Zone X (low flood risk); built on bedrock and constructed to exceed seismic specifications"},"934":{"description":"Centeris South Hill SH1 is an operational enterprise/colocation data center on Centeris/Benaroya’s 86‑acre South Hill campus in Puyallup, WA, marketed as move‑in‑ready. It features 24 MW of built critical IT load with a dedicated 50 MW onsite substation for growth.","verified_status":"operational","power_capacity_mw":24,"total_sqft":80000,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"CHT Global (Chunghwa Telecom Global).","verified_name":"Centeris South Hill SH1","verified_operator":"Centeris Data Centers","verified_owner":"The Benaroya Company (Benaroya Capital Company LLC)","cooling_type":"evaporative","tier_level":"","fiber_providers":"Carrier-neutral; Lumen/Level 3, Comcast, Zayo, Verizon, Click!, Astound (Wave)","num_buildings":2,"campus_acres":86,"utility_provider":"Puget Sound Energy","tax_incentives":"Washington state sales and use tax exemption for qualifying data centers (available to qualifying businesses and tenants).","natural_hazard_zone":"Mount Rainier lahar risk area"},"935":{"description":"ScaleMatrix Seattle Data Center (US‑West 02) is a high‑density colocation site operated by ScaleMatrix inside the Centeris South Hill campus at 1023 39th Ave SE in Puyallup. Launched in 2019, the site offers around 24 MW of deliverable capacity at the facility level.","verified_status":"operational","power_capacity_mw":24,"total_sqft":200000,"year_online":"2019","construction_update":"2026-05-20: TI permit PRCTI20260575 issued for a 2,424‑sq‑ft expansion of an existing server room; 2026: related Row‑D fire‑sprinkler (PRFS20260843) and fire‑alarm (PRFA20260831, PRFA20260863) permits in review/processing.","recent_news":"Permit PRCTI20260575 was issued on 2026-05-20 for a 2,424‑sq‑ft interior expansion of an existing server room; related Row‑D fire‑sprinkler and fire‑alarm permits (PRFS20260843, PRFA20260831, PRFA20260863) were submitted and under review in 2026.","notable_tenants":"","verified_name":"ScaleMatrix Seattle Data Center (US-West 02)","verified_operator":"ScaleMatrix","verified_owner":"The Benaroya Company (Centeris)","cooling_type":"hybrid","tier_level":"Tier III-design","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":86,"utility_provider":"Puget Sound Energy (PSE)","tax_incentives":"Washington State retail sales and use tax exemption for qualifying data centers and tenants, including the nonrural (urban) data center exemption (subject to meeting program requirements).","natural_hazard_zone":"FEMA Flood Zone B/X (moderate) with regional Mount Rainier lahar exposure; facility notes bedrock construction and exceeding seismic specs."},"936":{"description":"Microsoft Redmond Ridge (Redmond Ridge 1) is a Microsoft‑owned data center at 23050 NE 102nd St in Redmond, Washington, used for internal research/lab and development workloads. Industry profiles describe an operational facility with an approximate footprint around 50–57k sq ft.","verified_status":"operational","power_capacity_mw":17,"total_sqft":50615,"year_online":"2009","construction_update":"Sep 30, 2025 — Installation of new HVAC equipment (permit ADDC25-0580) for “REDMOND RIDGE-1” at 23050 NE 102ND ST; operational upgrade, not an expansion.","recent_news":"","notable_tenants":"","verified_name":"Microsoft Redmond Ridge (Redmond Ridge 1)","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Puget Sound Energy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate/500-year flood hazard)"},"937":{"description":"A small retail colocation facility in Redmond, WA operated by Colocation Northwest (an IsoFusion company), featuring 2,500 ft² of multi-tenant colocation space and connectivity to regional hubs.","verified_status":"operational","power_capacity_mw":0.25,"total_sqft":4000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"F5 Networks (publicly identified by the operator as using the Redmond Data Center for testing projects).","verified_name":"Colocation Northwest Redmond Data Center","verified_operator":"Colocation Northwest (a subsidiary of IsoFusion, Inc.)","verified_owner":"Link Logistics Real Estate (owner of Overlake Business Center campus)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; examples include tw telecom","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Washington State provides sales and use tax exemptions for qualifying data centers and tenants subject to statutory criteria; this facility’s size suggests it is unlikely to qualify.","natural_hazard_zone":"FEMA Flood Zone X (low risk)"},"938":{"description":"Colocation Northwest Bellevue is an operational colocation data center operated by Colocation Northwest at 15400 Southeast 30th Place, Suite 105, Bellevue, WA, featuring 4,300 sq ft and 1 MW of capacity connected to a 180 Gbps dark-fiber loop.","verified_status":"operational","power_capacity_mw":1,"total_sqft":4300,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Bellevue Data Center - Colocation Northwest","verified_operator":"Colocation Northwest","verified_owner":"NCR BUILDING LLC","cooling_type":"air-cooled","tier_level":"N+1 design; no Uptime Institute Tier certification reported","fiber_providers":"","num_buildings":1,"campus_acres":3.17,"utility_provider":"Puget Sound Energy (PSE)","tax_incentives":"Washington offers a sales and use tax exemption for qualifying data centers; applicability to this specific facility is not publicly confirmed.","natural_hazard_zone":"Earthquake/liquefaction risk area (Bellevue/King County). No address-specific FEMA flood-zone determination provided here."},"939":{"description":"Cogent Communications operates the Cogent Seattle Office & Data Center at 32275 32nd Ave S in Federal Way, WA—an operational telecom/colocation facility with approximately 5.30 MW of power and 33,223 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":5.3,"total_sqft":33223,"year_online":"unknown","construction_update":"","recent_news":"May 26, 2026: Operator announced a definitive agreement to sell 10 data centers—listing sites in Phoenix, Anaheim, Burbank, Stockton, Atlanta, Chicago, Elkridge, Kansas City, Nashville, and Houston—without naming Seattle/Federal Way.","notable_tenants":"","verified_name":"Cogent Data Center - Seattle","verified_operator":"Cogent Communications, Inc.","verified_owner":"ARC TRSEAWA001, LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"Cogent; CenturyLink","num_buildings":1,"campus_acres":10.29,"utility_provider":"Puget Sound Energy (PSE)","tax_incentives":"Washington retail sales and use tax exemption for qualifying data centers and tenants (eligibility required).","natural_hazard_zone":"FEMA low risk (Zone X/“Lower Risk” per area characterization)."},"940":{"description":"Expedient CMH1 (Upper Arlington/Columbus) is an operational Expedient colocation data center at 5000 Arlington Centre Blvd., Building One, Upper Arlington, OH 43220, offering 21,591 sq ft of data center space with 1.6 MW total power. It was Expedient’s first Columbus‑area data center, opened around 2010/2011.","verified_status":"operational","power_capacity_mw":1.6,"total_sqft":21591,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Expedient CMH1 Upper Arlington","verified_operator":"Expedient","verified_owner":"Gosh Enterprises","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"AEP Ohio","tax_incentives":"","natural_hazard_zone":"low risk"},"941":{"description":"A Cogent Communications-operated office and carrier-neutral data center at 240 N 5th St, Ste 210 in Columbus providing Internet, VPN, Transport, and Colocation services, with a footprint of about 5,400 sq ft.","verified_status":"operational","power_capacity_mw":0.1,"total_sqft":5400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Columbus Office & Data Center","verified_operator":"Cogent Communications","verified_owner":"Hackman Capital Partners","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; available: SBC, ICG, Time Warner, XO Fiber; Cogent on-net","num_buildings":1,"campus_acres":0,"utility_provider":"AEP Ohio","tax_incentives":"Ohio statewide data center sales tax exemption; no facility-specific abatement identified for this site","natural_hazard_zone":"Low risk (downtown Columbus; low seismic; outside hurricane zones)"},"942":{"description":"CyrusOne New Albany COL-1 is an under-construction wholesale data center at 12181 Jug St in the New Albany/Johnstown, Ohio area, developed by CyrusOne; reports cite a $150m investment and list an initial building of roughly 274,518 sq ft, while capacity/timeline were not publicly disclosed by the company at groundbreaking.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":274518,"year_online":"2026 expected","construction_update":"Groundbreaking held in September 2025; the project has been under construction since then.","recent_news":"","notable_tenants":"","verified_name":"CyrusOne New Albany COL-1","verified_operator":"CyrusOne","verified_owner":"C1 New Albany LLC; CyrusOne platform owned by funds managed by KKR and Global Infrastructure Partners (GIP)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"AEP Ohio (American Electric Power)","tax_incentives":"Ohio Data Center Sales & Use Tax Exemption: 75% for 10 years (approved Apr 1, 2024) for CyrusOne Management Services LLC and C1 New Albany LLC; potential 15-year, up-to-100% New Albany CRA property tax abatement.","natural_hazard_zone":"low risk (minor flood risk; inland Ohio, non-coastal)"},"943":{"description":"Psychz Networks (a Profuse Solutions company) operates a carrier‑neutral colocation data center at 700 Wilshire Blvd, Suite 100 and Suite 200, Los Angeles, CA. The Los Angeles site offers 15,000 sq ft and is near the One Wilshire carrier hub.","verified_status":"operational","power_capacity_mw":0,"total_sqft":15000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Psychz Los Angeles","verified_operator":"Psychz Networks","verified_owner":"","cooling_type":"chilled water","tier_level":"Exceeds Tier III operational performance (not Uptime Institute certified)","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"LADWP (Los Angeles Department of Water and Power)","tax_incentives":"","natural_hazard_zone":"High seismic risk (Los Angeles County ranks No. 1 for estimated annualized earthquake loss)"},"944":{"description":"ColoCrossing LA1 is ColoCrossing’s operational colocation facility inside the West7 Center (1200 W 7th St, Los Angeles), a 733,000‑sq‑ft Tier III mixed office/telecom/data center building, offering N+1 redundancy and connectivity aimed at high‑density/AI workloads with low‑latency paths to major interconnection points including One Wilshire and 600 W 7th.","verified_status":"operational","power_capacity_mw":22.5,"total_sqft":733000,"year_online":"2024","construction_update":"","recent_news":"Mar 18, 2026: The Real Deal reported Rising Realty Partners defaulted on a $200 million loan backing West7 Center (formerly Garland Center), with a notice of default and election to sell filed in early March.","notable_tenants":"","verified_name":"ColoCrossing LA1 (Los Angeles Data Center) at West7Center, 1200 W 7th St, Los Angeles, CA","verified_operator":"ColoCrossing","verified_owner":"Rising Realty Partners","cooling_type":"unknown","tier_level":"Tier III (marketed; certification not cited)","fiber_providers":"carrier-neutral; multiple carriers","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water & Power (LADWP)","tax_incentives":"","natural_hazard_zone":"Seismic Hazard Zone (Los Angeles/California)."},"945":{"description":"Operational colocation data center operated by Cogent Communications at 100 S Flower St, Burbank, CA, branded as Cogent Data Center – Burbank. The facility offers approximately 52,768 sq ft of data center space.","verified_status":"operational","power_capacity_mw":2,"total_sqft":52768,"year_online":"unknown","construction_update":"","recent_news":"May 26–27, 2026: Cogent announced a definitive agreement to sell 10 data centers for $225 million to an entity sponsored by I Squared Capital; the sale is expected to close on the later of June 12, 2026 or expiration/termination of the HSR waiting period, with reporting that the buyer aims to launch a new U.S.-based operator.","notable_tenants":"","verified_name":"Cogent Data Center - Burbank","verified_operator":"Cogent Communications","verified_owner":"Cogent Communications (via Cogent Fiber, LLC); definitive agreement announced to sell 10 data center facilities to an entity sponsored by I Squared Capital for $225M; closing pending.","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Burbank Water and Power","tax_incentives":"","natural_hazard_zone":"Seismic hazard area (Southern California); FEMA flood zone undetermined"},"946":{"description":"An edge data center operated by Cogent Communications at 611 W 6th St in Downtown Los Angeles, listed by the operator as a Cogent Edge Data Center (CDC) service location and part of Cogent’s Edge portfolio.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Edge Data Center - Los Angeles","verified_operator":"Cogent Communications","verified_owner":"Chetrit Group (owned by Joseph Chetrit)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Cogent Communications","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"No enacted California data center-specific tax incentive; SB-58 proposing a partial sales tax exemption was introduced in 2025 but not enacted as of mid-2026.","natural_hazard_zone":"High seismic risk; FEMA flood risk minimal (Zone X likely) in Downtown Los Angeles."},"947":{"description":"Centersquare LAX3 is an operational carrier‑neutral colocation data center at 17836 Gillette Avenue in Irvine, CA, operated by Centersquare; it is notable for utility power capacity of 24.9 MW and robust network connectivity.","verified_status":"operational","power_capacity_mw":24.9,"total_sqft":132000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare Irvine LAX3 Data Center","verified_operator":"Centersquare","verified_owner":"CBRE Investment Management (formerly CBRE Global Investors)","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"carrier-neutral; Cogent","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison","tax_incentives":"","natural_hazard_zone":"Earthquake hazard zone (California); citywide minor flood risk"},"948":{"description":"Centersquare’s Los Angeles LA2–Irvine is an operational colocation data center at 2681 Kelvin Ave in Irvine, CA, serving the LA/Orange County market and offering large, multi-tenant capacity with around 150,000 sq ft and robust power infrastructure.","verified_status":"operational","power_capacity_mw":15,"total_sqft":150000,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"Orange County Assessor (small colocation suite documented for 2024–2025 at 2681 Kelvin Ave; no public evidence of anchor/hyperscale tenants).","verified_name":"Csquare LAX5-A Irvine","verified_operator":"Centersquare (Csquare)","verified_owner":"2681 Kelvin Avenue LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; reported providers include Cogent Communications, CenturyLink (Lumen), Zayo, AT&T, and Megaport","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Seismic Zone 4"},"949":{"description":"Colocation facility historically at 16842 Von Karman Ave in Irvine, formerly operated by Hosting.com/Ntirety and later associated with Data Canopy after acquiring Ntirety’s colocation hosting contracts. Directories list it as “Data Canopy – Irvine.”","verified_status":"decommissioned","power_capacity_mw":2.8,"total_sqft":22000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Data Canopy Irvine Data Center","verified_operator":"Data Canopy","verified_owner":"Dayani Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":4.61,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"No known California statewide data center incentives; no site-specific incentives identified.","natural_hazard_zone":"Seismic design: Earthquake Zone 4. Neighborhood flood risk: minor (Irvine Business Complex); no property-specific FEMA zone confirmed."},"950":{"description":"SMS Datacenter operates a 41,000 sq ft Tier 3+ colocation data center in Irvine, Orange County, CA. Public records show the site as an operational data center in Irvine.","verified_status":"operational","power_capacity_mw":0.913,"total_sqft":41000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SMS Datacenter Irvine Data Center","verified_operator":"SMS Datacenter","verified_owner":"Pacific Tree Capital","cooling_type":"air-cooled","tier_level":"Tier 3+ design / 2N (not Uptime-certified)","fiber_providers":"carrier-neutral; Cogent on-net","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"","natural_hazard_zone":"Seismic Zone 4 design; FEMA Zone X/B (moderate) likely"},"951":{"description":"DigiCo Los Angeles LAX1 (1977 Saturn Data Center) was a proposed wholesale data center at 1977 Saturn St in Monterey Park, developed by HMC Capital/DigiCo Infrastructure REIT with a planned 218,400-sf building. The application was voluntarily withdrawn on Apr 7, 2026.","verified_status":"planned","power_capacity_mw":49.5,"total_sqft":218400,"year_online":"unknown","construction_update":"Oct 31, 2024: CEQA IS/MND noticed; Mar 4, 2026: City hearing; Apr 7, 2026: application withdrawn by DigiCo/HMC. No construction commenced.","recent_news":"Apr 7, 2026: DigiCo/HMC voluntarily withdrew the LAX1 development application amid uncertainty and local opposition coverage.","notable_tenants":"","verified_name":"1977 Saturn Data Center Project (DigiCo Los Angeles LAX1) — application withdrawn April 2026","verified_operator":"DigiCo Infrastructure REIT (proposed; application withdrawn in April 2026)","verified_owner":"DigiCo Infrastructure REIT (ASX:DGT); local applicant entity: HMC StratCap 1977 Saturn, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":15.8,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X"},"952":{"description":"EdgeConneX MIA01 is an operational EdgeConneX edge/colocation data center at 2132 NW 114th Avenue, Miami, FL, totaling 27,000 sq ft with 11,300 sq ft of raised floor.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":27000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX MIA01","verified_operator":"EdgeConneX","verified_owner":"EDGECONNEX MIAMI HOLDINGS LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida sales/use tax exemption exists for qualifying data centers, but sites under the high thresholds (e.g., <100 MW IT load and lower capex) generally do not qualify; no facility-specific incentive found.","natural_hazard_zone":"High-Velocity Hurricane Zone (HVHZ) – Miami-Dade County"},"953":{"description":"An operational colocation data center operated by 365 Data Centers at 3250 W Commercial Blvd., Fort Lauderdale, FL, offering approximately 11,400 sq ft of space.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":11400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers Fort Lauderdale Data Center","verified_operator":"365 Data Centers","verified_owner":"Affiliate of YMP Real Estate Management (acquired Commercial Place I & II in Aug 2024)","cooling_type":"air-cooled","tier_level":"Tier II equivalent","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":10.5,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"Hurricane-exposed region (extreme wind risk); FEMA flood zone undetermined"},"954":{"description":"Volico MIA1 is an operational colocation data center operated by Volico Data Centers at 100 Biscayne Boulevard in Miami, offering 24/7 services and support. The facility provides approximately 5,005 sq ft of space within a carrier-rich downtown building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5005,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Volico MIA1","verified_operator":"Volico Data Centers (Biznesshosting Inc.)","verified_owner":"RFR Realty (100 Biscayne Owner LLC)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral (25+ carriers)","num_buildings":1,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida statewide data-center sales-tax exemption (general, not facility-specific)","natural_hazard_zone":"Hurricane evacuation / storm-surge zone (high coastal flood risk)"},"955":{"description":"QTS Miami 1 (MIA1 DC1) is an operational colocation data center operated by QTS Data Centers at 11234 NW 20th Street, Miami, Florida. The site offers about 2 MW of capacity and ~38,000 sq ft and is built to Category 5 hurricane standards with a 185‑mph wind rating.","verified_status":"operational","power_capacity_mw":2,"total_sqft":38000,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Miami 1 DC1","verified_operator":"QTS Data Centers","verified_owner":"Blackstone funds (via QTS Data Centers/QTS Realty Trust platform; jointly owned by Blackstone Infrastructure Partners and BREIT)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; connected carriers include AT&T, Cogent Communications, and Crown Castle","num_buildings":1,"campus_acres":1,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida sales/use tax exemption for data center property exists under §212.08(5)(r), but as amended effective Aug 1, 2025 (HB 7031) it requires large capital investment; no site-specific incentive identified for this facility.","natural_hazard_zone":"Hurricane exposure; Cat‑5/185‑mph wind‑rated building; listing reports FEMA Flood Zone X (unshaded), ~10 ft above 500‑year floodplain."},"956":{"description":"AT&T’s Miami MIA1 is a telecom/colocation data center at 444 NW 79th Avenue, Miami, FL, with 189,003 sq ft of total space and about 97,843 sq ft of colocation/raised floor. It remains listed as an active AT&T site on major facility directories.","verified_status":"operational","power_capacity_mw":7,"total_sqft":189003,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"AT&T Miami MIA1 Data Center","verified_operator":"AT&T","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"Hurricane-prone region; FEMA flood zone (address-specific designation unknown)"},"957":{"description":"Telecom/colocation data center operated by Lumen at 1109 NW 22nd Street in Miami. Public listings confirm the address and ~100,000 sq ft footprint but disagree on the marketing name (shown as both ‘Lumen Miami 4’ and ‘Lumen Miami 5’).","verified_status":"operational","power_capacity_mw":0,"total_sqft":100000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Miami 4 Data Center","verified_operator":"Lumen","verified_owner":"Level 3 Communications LLC (c/o CenturyLink/Lumen)","cooling_type":"chilled water","tier_level":"","fiber_providers":"Lumen network; Cloud Connect to AWS, Microsoft Azure and Google; three long-haul fiber routes reported for the gateway site","num_buildings":1,"campus_acres":2.68,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"Hurricane/windstorm exposure; site-specific FEMA flood-zone designation not confirmed"},"958":{"description":"Lumen Fort Lauderdale 1 is an operational Lumen telecom/colocation data center at 200 NW 2nd Street in Fort Lauderdale, Florida. Public listings show 9,108 sq ft total with 3,217 sq ft of colocation/raised-floor space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":9108,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Fort Lauderdale 1","verified_operator":"Lumen","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Lumen/Level 3","num_buildings":1,"campus_acres":0.43,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida’s data center sales/use tax exemption no longer applies to facilities under 100 MW of IT load as of Aug. 1, 2025; no active state DC exemption is applicable to this site.","natural_hazard_zone":"Hurricane-prone region; flood risk present (Broward County). FEMA flood zone for this parcel not confirmed."},"959":{"description":"Colocation/telecom data center at 16563 NW 15th Ave, Miami (Miami Gardens area), operated by Verizon Communications Inc.; the site was formerly an XO Communications facility and transitioned under Verizon following the XO acquisition.","verified_status":"operational","power_capacity_mw":0,"total_sqft":44306,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Miami","verified_operator":"Verizon Communications Inc. / Verizon","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"No facility-specific incentive identified; Florida’s sales/use tax exemption now applies only to larger facilities (>=100 MW IT load) after Aug. 1, 2025 (HB 7031).","natural_hazard_zone":"Hurricane-prone region; FEMA flood zone not confirmed."},"960":{"description":"T-Mobile Everglades MSO is a purpose-built telecom/data center at 4850 NW 103rd Avenue in Sunrise, Florida, occupied by T-Mobile under a long-term lease. Developed as a 35,000 sq ft build-to-suit on a 4.34-acre site, it was sold in 2021 to USPP Sunrise DC LLC.","verified_status":"operational","power_capacity_mw":0,"total_sqft":33560,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"T-Mobile US, Inc.","verified_name":"T-Mobile Everglades MSO","verified_operator":"T-Mobile US, Inc.","verified_owner":"USPP Sunrise DC LLC (managed/affiliated with Principal Real Estate Investors)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":4.34,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"Hurricane-prone South Florida; refer to Broward County FEMA flood maps (effective July 31, 2024). Site-specific FEMA flood zone not determined."},"961":{"description":"Telxius Boca Raton (TBOC01) is an operational telecom data center and submarine cable landing station at 6503 W Rogers Circle in Boca Raton, operated by Telxius Cable. It serves as a South Florida subsea hub, including the existing SAm‑1 system and the planned Tikal connection to Boca Raton.","verified_status":"operational","power_capacity_mw":8,"total_sqft":19546,"year_online":"2001","construction_update":"Jun 13, 2025: FCC public notice for the TIKAL-AMX3 system including a Main Trunk to Boca Raton; Telxius estimates RFS mid-2026; Oct 17, 2025: Boca Raton approved a $2.68M Spanish River Park easement for the new fiber route.","recent_news":"","notable_tenants":"Arelion","verified_name":"Telxius Boca Raton Data Center (TBOC01) / Boca Raton Cable Landing Station","verified_operator":"Telxius Cable","verified_owner":"TELEFONICA INT'L WHOLESALE SERVICES USA","cooling_type":"unknown","tier_level":"","fiber_providers":"Arelion; South Reach Networks (SRN); Telxius (SAm-1 and TIKAL-AMX3 submarine cable systems)","num_buildings":1,"campus_acres":2.02,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"Hurricane exposure; address-specific FEMA flood zone not determined"},"962":{"description":"3EX Hosting operates a carrier-neutral colocation data center at 6601 Park of Commerce Blvd in Boca Raton, Florida. The facility offers approximately 15,000 sq ft of colocation within a 61,274‑sq‑ft building, with existing 2N infrastructure, 2 MW critical load and 16 MW utility power available, and an upgrade path to 45 MW noted in the offering materials.","verified_status":"operational","power_capacity_mw":2,"total_sqft":61274,"year_online":"unknown","construction_update":"","recent_news":"On June 12, 2026, a market newsletter listed the 3EX Hosting Data Center at 6601 Park of Commerce Blvd as a data center property for sale.","notable_tenants":"No publicly disclosed colocation customers; the building is occupied by LexisNexis (LexisNexis Risk Solutions) at 6601 Park of Commerce Blvd.","verified_name":"3EX Hosting Data Center – Boca Raton","verified_operator":"3EX Hosting","verified_owner":"6601 Park of Commerce Holdings, LLP","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; diverse ecosystem of network providers; specific on-net carriers not publicly listed","num_buildings":1,"campus_acres":5.3,"utility_provider":"Florida Power & Light Company (FPL)","tax_incentives":"Florida statewide sales/use tax exemption for qualifying data center property (Fla. Stat. §212.08(5)(r)); 2025 legislation would end the exemption for existing data centers under 100 MW critical IT load; no facility-specific award found.","natural_hazard_zone":"Hurricane/coastal-storm exposure; address-specific FEMA flood-zone designation not cited here—verify via City/County lookup tools."},"963":{"description":"IFX Networks operates an “IFX Miami” colocation/data center in the Miami area while listing 520 South Dixie Highway, Hallandale Beach, FL, as its U.S. contact address; directories place the operational facility at 15050 NW 79 Court (Miami Lakes).","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"IFX Managed Data Center – Hallandale Beach","verified_operator":"IFX Networks","verified_owner":"SPATIUS HALLANDALE LLC","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"IFX Networks backbone (AS5855); additional on‑net carriers not publicly listed","num_buildings":1,"campus_acres":0.63,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida statewide data center sales/use tax exemption in effect through June 30, 2027 (eligibility/certification required). Potential limitations for sub‑100 MW facilities have been advanced legislatively. No site‑specific incentive verified for this address.","natural_hazard_zone":"Hurricane‑prone coastal area; FEMA flood risk present — exact flood zone available via the City’s Interactive Flood Map"},"964":{"description":"Telecom cable landing station at 6520 W Rogers Circle in Boca Raton operated by Liberty Networks/Liberty Latin America; it serves as the Liberty Networks Sub-Sea CLS and features hardened construction with dual 500 kW generators, in a building of about 9,508 sq ft.","verified_status":"operational","power_capacity_mw":1,"total_sqft":9508,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"No public anchor/colocation tenants identified. Publicly associated cable systems/parties at this landing station include CFX-1 (Colombia-Florida Express) and BICS/Caribbean Crossings; the site is also listed by South Reach Networks as the 'Liberty Networks Sub-Sea CLS' at 6520 W Rogers Circle.","verified_name":"Boca Raton Cable Landing Station (Liberty Networks Sub-Sea CLS)","verified_operator":"Liberty Networks","verified_owner":"Columbus Networks USA Inc","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Liberty Networks; South Reach Networks (on-net)","num_buildings":1,"campus_acres":0.64,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AH (1% annual chance of shallow flooding, average depth 1–3 ft)"},"965":{"description":"Project Tango (Central Park Commerce Center) is a proposed hyperscale data center campus at 20125 Southern Boulevard in Loxahatchee, Florida, advanced by PBA Holdings; the end user/operator is not publicly disclosed and the campus is planned at roughly 3.7 million square feet.","verified_status":"planned","power_capacity_mw":0,"total_sqft":3690000,"year_online":"unknown","construction_update":"Entitlements pending: county decision delayed and pushed to July 2026; calls for a halt ahead of the July vote; dueling applications have thrown the project into disarray.","recent_news":"June 15, 2026: litigation was filed over control of the Project Tango site while the project heads toward July 2026 county votes; earlier in June, the Palm Beach County School Board called for a halt ahead of the July vote.","notable_tenants":"","verified_name":"Project Tango (Central Park Commerce Center)","verified_operator":"Unknown/undisclosed","verified_owner":"PBA Holdings (majority owner/developer; remainder owned by WPB Logistics/TPA Group)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":202,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida state sales and use tax exemption for qualifying data center property; 2025 legislation ended eligibility for sub-100MW data centers. Details and effective periods vary; consult current Florida guidance for thresholds and dates.","natural_hazard_zone":"Hurricane-prone region with elevated flood risk per updated FEMA flood maps for Palm Beach County."},"966":{"description":"GCI Anchorage Data Center is an operational colocation facility at 6831 Arctic Blvd in Anchorage operated by GCI Communication, marketed as Alaska’s largest and most advanced with 99.9999% uptime. GCI cites a 10,000-square-foot facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"GCI Anchorage Data Center","verified_operator":"GCI Communication","verified_owner":"GCI (via affiliate entity; exact real-estate holding LLC not conclusively determinable)","cooling_type":"unknown","tier_level":"","fiber_providers":"GCI","num_buildings":0,"campus_acres":0,"utility_provider":"Chugach Electric Association","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X; high seismic hazard region (Anchorage, Alaska)"},"967":{"description":"AlasConnect Data Center 5 (DC5) is a colocation facility operated by AlasConnect at 3403 Minnesota Dr, Anchorage, Alaska, and is currently operational. AlasConnect highlights redundant power and cooling among its data center hosting capabilities.","verified_status":"operational","power_capacity_mw":3,"total_sqft":16083,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"AlasConnect Data Center 5","verified_operator":"AlasConnect","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"MTA, ACS, GCI, AT&T, Quintillion; multiple carrier cross-connects","num_buildings":1,"campus_acres":0.69,"utility_provider":"Chugach Electric Association","tax_incentives":"","natural_hazard_zone":"Seismic risk (Anchorage seismic zone); strong shaking documented near Minnesota Drive in the 2018 M7.1 Anchorage earthquake. Site-specific FEMA flood zone not verified."},"968":{"description":"Fairbanks DC1 is AlasConnect's operational colocation/data center at 612 Illinois St, Fairbanks, Alaska, offering local, secure colocation and hosting services. AlasConnect says it launched its state-of-the-art data center in 2009.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Alasconnect Fairbanks Data Center","verified_operator":"Alasconnect","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Golden Valley Electric Association","tax_incentives":"","natural_hazard_zone":"Borough-level hazards include flooding (Chena River), earthquakes (USGS-mapped seismic risk), ground failure/permafrost, severe weather, and wildland fire; 1967 flood inundated the city core. Address-specific FEMA flood zone for 612 Illinois St not found."},"969":{"description":"Alaska Communications operates a colocation/data center at 600 East 36th Ave., Suite 100, Anchorage, AK, offering locking cabinets, raised-floor space, remote hands, and redundant A+B power with UPS and diesel generators. The operator’s materials also reference colocation and remote-hands services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Alaska Communications Systems – Anchorage Data Center","verified_operator":"Alaska Communications","verified_owner":"Whole Family Holdings LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Chugach Electric Association","tax_incentives":"","natural_hazard_zone":"High seismic exposure (Anchorage region); address-specific FEMA flood zone not determined"},"970":{"description":"ACS North Wire Center is a telecom wire-center/local-exchange facility at 1309 E St in Anchorage operated by Alaska Communications Systems Group; it is listed in interconnection directories and hosts the AlaskaIX peering exchange.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"AlaskaIX (Alaska Peering Exchange); Alaska Communications (AS7782) on-net. No other publicly disclosed anchor tenants.","verified_name":"ACS North Wire Center","verified_operator":"Alaska Communications Systems Group, Inc.","verified_owner":"ATN International, Inc. (ATNI)","cooling_type":"unknown","tier_level":"","fiber_providers":"Alaska Communications (AS7782)","num_buildings":0,"campus_acres":0,"utility_provider":"Chugach Electric Association","tax_incentives":"","natural_hazard_zone":"High seismic risk; downtown flood risk minimal (FEMA Zone X–type)."},"971":{"description":"An enterprise data center (Datacenter Operations Center) operated by the State of Alaska Office of Information Technology on the 5th floor of the State Office Building, 333 Willoughby Ave., Juneau, providing datacenter services including colocation and related hosting for State operations.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"State of Alaska executive-branch departments/agencies (internal OIT customers); no external anchor tenants publicly identified.","verified_name":"Juneau State Office Building Data Center (OIT)","verified_operator":"State of Alaska Office of Information Technology (OIT)","verified_owner":"State of Alaska (managed by DOT&PF Division of Facilities Services)","cooling_type":"unknown","tier_level":"","fiber_providers":"GCI, Alaska Communications (ACS)","num_buildings":1,"campus_acres":1,"utility_provider":"Alaska Electric Light & Power (AEL&P)","tax_incentives":"","natural_hazard_zone":"Medium earthquake hazard (ThinkHazard) and mapped FEMA flood zones; additional multi-hazard exposure documented by CBJ Risk Report."},"972":{"description":"AlasConnect Fairbanks Data Center (DC1) is an operational colocation facility at 612 Illinois St in Fairbanks, Alaska, operated by AlasConnect and offering secure colocation and hosting services. AlasConnect notes it launched its data center in 2009.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Alasconnect Fairbanks Data Center","verified_operator":"Alasconnect (a wholly owned subsidiary of Matanuska Telecom Association)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Golden Valley Electric Association (GVEA)","tax_incentives":"","natural_hazard_zone":"Flood hazard present in Fairbanks; parcel-specific FEMA zone not determined"},"973":{"description":"State of Alaska Office of Information Technology data center and colocation facility located on the 5th floor of the State Office Building at 333 Willoughby Ave in Juneau; operated by OIT to provide data center services for state customers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"State of Alaska government agencies (internal OIT customers); no public evidence of external/commercial anchor tenants","verified_name":"State of Alaska OIT Juneau Data Center","verified_operator":"State of Alaska Office of Information Technology (OIT)","verified_owner":"State of Alaska","cooling_type":"chilled water","tier_level":"","fiber_providers":"GCI, Alaska Communications (ACS)","num_buildings":1,"campus_acres":0,"utility_provider":"Alaska Electric Light & Power (AEL&P)","tax_incentives":"","natural_hazard_zone":"High seismic risk; avalanche, landslide, and tsunami hazards"},"974":{"description":"ACS North Wire Center is a telecom colocation and interconnection facility in Anchorage operated by Alaska Communications (ACS), located at 1309 E St. It is listed in peering/colocation directories with Alaska Communications on-net and the Alaska Peering Exchange present.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Alaska Communications Systems Group, Inc. (AS7782); Alaska Peering Exchange (AIX/AlaskaIX).","verified_name":"ACS North Wire Center","verified_operator":"Alaska Communications Systems Group, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Alaska Communications (on-net)","num_buildings":0,"campus_acres":0,"utility_provider":"Chugach Electric Association","tax_incentives":"No active statewide data center incentives in Alaska as of 2026; no facility-specific incentives identified.","natural_hazard_zone":"High seismic hazard (Anchorage region); FEMA flood-zone for this parcel not determined; portions of Anchorage include FEMA Zone D (undetermined flood hazard)."},"975":{"description":"TierPoint Little Rock (LIT) is an operational TierPoint colocation data center at 15707 Chenal Parkway, Little Rock, Arkansas, with about 30,000 sq ft and roughly 5 MW of capacity; it opened in 2012 (originally by Windstream).","verified_status":"operational","power_capacity_mw":5,"total_sqft":30000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Little Rock","verified_operator":"TierPoint","verified_owner":"Argo Infrastructure Partners (majority investor in TierPoint; Apollo Global Management acquired Argo in 2025)","cooling_type":"unknown","tier_level":"Tier III Equivalent","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Entergy Arkansas","tax_incentives":"Arkansas Act 548 of 2025 — expanded sales and use tax exemption for qualifying data centers.","natural_hazard_zone":""},"976":{"description":"Mainstream Technologies, Inc. operates an active colocation/data center at 325 West Capitol Ave., Suite 200 (2nd floor) in Little Rock, offering colocation and related managed services. Published specs list a 325 kVA UPS, a 1 MW backup generator, and about 5,700 sq ft of raised floor.","verified_status":"operational","power_capacity_mw":1,"total_sqft":5700,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"d'Escoto, Inc.","verified_name":"Mainstream Technologies Little Rock","verified_operator":"Mainstream Technologies, Inc.","verified_owner":"Bank OZK and Mainstream Technologies (condo owners of 325 W. Capitol Ave.)","cooling_type":"air-cooled","tier_level":"Tier 2+ (design standard, not formal Uptime Institute certification)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Entergy Arkansas","tax_incentives":"Arkansas data center sales & use tax exemptions (HB1654, 2023), with the threshold reduced to $100M by Act 548 (2025). No facility-specific incentives identified.","natural_hazard_zone":"Downtown Little Rock shows notable flood exposure; 35% of properties have flood risk and portions fall within FEMA Special Flood Hazard Areas (e.g., Zones A/AE)."},"977":{"description":"Ritter Communications’ Data Technology Center in Jonesboro, Arkansas is a multi‑tenant colocation and cloud/disaster‑recovery facility operated by Ritter Communications. The $8 million, 8,544‑square‑foot site provides secure colocation and cloud services for regional enterprises.","verified_status":"operational","power_capacity_mw":0.75,"total_sqft":8544,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"Camfil APC; St. Bernards Healthcare; Central Bank","verified_name":"Ritter Communications Data Technology Center","verified_operator":"Ritter Communications","verified_owner":"Grain Management LLC (majority owner) in partnership with E. Ritter and Company","cooling_type":"chilled water","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"City Water and Light (CWL)","tax_incentives":"Arkansas sales and use tax exemption for qualifying data centers; expanded by Act 548 of 2025.","natural_hazard_zone":"Seismic exposure from the New Madrid Seismic Zone; tornado-prone region (facility built to EF3 tornado and California seismic code standards); local FEMA floodplain mapping applies (no site-specific flood hazard disclosed)."},"978":{"description":"Windstream Little Rock is a Windstream-operated telecom and colocation data center at 4001 N Rodney Parham Rd, Little Rock, Arkansas. The site remains Windstream-branded in directories, while Windstream completed a merger with Uniti in 2025.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Little Rock","verified_operator":"Windstream","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream","num_buildings":0,"campus_acres":0,"utility_provider":"Entergy Arkansas","tax_incentives":"Arkansas state sales and use tax exemption for qualifying data centers; expanded by Act 548 of 2025 (effective Oct 1, 2025). No project-specific abatement identified.","natural_hazard_zone":"Tornado exposure (EF3 event on Mar 31, 2023); Moderate-to-Weak New Madrid seismic zone; site-specific FEMA flood zone requires address lookup—no floodplain designation confirmed here."},"979":{"description":"Windstream operates a telecom switch/data-center facility at 202 Graham St, Harrison, AR, included in an eight-site Windstream portfolio and listed at 34,625 sq ft. Public listings provide the address and operator but limited technical specifications.","verified_status":"operational","power_capacity_mw":0,"total_sqft":34625,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Windstream (Kinetic)","verified_name":"Windstream: Harrison, AR","verified_operator":"Windstream","verified_owner":"Uniti Group","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream","num_buildings":1,"campus_acres":0,"utility_provider":"Entergy Arkansas","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (minimal flood risk)"},"980":{"description":"Brightspeed Russellville is an operational Brightspeed telecom/data‑center/central‑office facility at 214 S Denver Ave, Russellville, AR, consisting of a two‑story office/data center with basement totaling about 44,649–44,650 sq ft, estimated built/online in 2000; it was marketed in April 2025 for a sale‑leaseback.","verified_status":"operational","power_capacity_mw":0,"total_sqft":44649,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Brightspeed Russellville","verified_operator":"Brightspeed","verified_owner":"Brightspeed","cooling_type":"unknown","tier_level":"","fiber_providers":"Brightspeed (on-net); no public carrier-neutral list disclosed","num_buildings":1,"campus_acres":0.43,"utility_provider":"Entergy Arkansas","tax_incentives":"No facility-specific tax abatement identified; Brightspeed’s Arkansas expansion is supported by ~$26.3M in BEAD funding (network-level grants).","natural_hazard_zone":"FEMA Flood Zone X (city/area level; parcel-specific FIRM lookup recommended)"},"981":{"description":"OzarksGo Fayetteville is an operational colocation data center operated by OzarksGo at 3641 W. Wedington Drive in Fayetteville, Arkansas. It offers colocation with UPS- and generator-backed power supplied by multiple substations.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"OzarksGo Fayetteville Data Center","verified_operator":"OzarksGo","verified_owner":"Ozarks Electric Cooperative Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"OzarksGo (AS395662); fiber and CAT6 cross-connects available","num_buildings":0,"campus_acres":0,"utility_provider":"Ozarks Electric Cooperative","tax_incentives":"Arkansas statewide sales and use tax exemption for qualifying data centers (2023), expanded by Act 548 of 2025; no public evidence this facility is certified for it.","natural_hazard_zone":""},"982":{"description":"Sollensys Little Rock is a 5,044 sq ft, purpose-built enterprise data center at 208–216 Atkins Rd in Little Rock, AR, operated by Sollensys. The facility was acquired in April 2022 and is listed as an operational, ready-to-use site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5044,"year_online":"2002","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Sollensys Little Rock","verified_operator":"Sollensys Corp","verified_owner":"Sollensys Corp","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral (high-speed fiber optic loop; specific carriers not listed)","num_buildings":1,"campus_acres":1,"utility_provider":"Entergy Arkansas","tax_incentives":"","natural_hazard_zone":"Tornado exposure (moderate regional risk); generally outside high-risk FEMA flood zones; low seismic risk"},"983":{"description":"Operational Data Canopy colocation and managed‑hosting data center at 350 Pencader Dr., Newark, Delaware; it is the former Ntirety/Hosting.com Newark site, with 22,700 sq ft total space and a listed 6 MW capacity.","verified_status":"operational","power_capacity_mw":6,"total_sqft":22700,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Data Canopy Newark","verified_operator":"Data Canopy (an Intelishift company)","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III enhanced (design standard, not formally Uptime-certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Delmarva Power","tax_incentives":"No Delaware-specific data center incentive program identified; Delaware has no state sales tax (structural benefit).","natural_hazard_zone":""},"984":{"description":"DāSTOR Wilmington Data Center (Wilmington NAP) is an operational colocation facility at 1201 North Market Street in Wilmington, Delaware, operated by DāSTOR, LLC. It offers 4 MW of capacity with 23,000 sq ft of colocation space within a 78,000 sq ft building, features N+1 generators and 2N UPS/network, and was acquired from IPR Secure in 2021.","verified_status":"operational","power_capacity_mw":4,"total_sqft":78000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DāSTOR Wilmington Data Center (Wilmington NAP)","verified_operator":"DāSTOR, LLC","verified_owner":"CMBS Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; multiple carriers present; redundant fiber ring connecting to 401 N Broad St (Philadelphia).","num_buildings":1,"campus_acres":1.28,"utility_provider":"Delmarva Power","tax_incentives":"Delaware offers no data center-specific tax incentives.","natural_hazard_zone":"FEMA Flood Zone X (low to moderate flood risk); regional flood exposure from Brandywine Creek noted."},"985":{"description":"Enterprise colocation/hybrid-cloud data center operated by DāSTOR, LLC at 3 Boulden Circle in New Castle, Delaware; DāSTOR acquired this purpose-built facility in April 2024 as part of its portfolio.","verified_status":"operational","power_capacity_mw":8,"total_sqft":60000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DāSTOR New Castle Delaware Data Center","verified_operator":"DāSTOR, LLC","verified_owner":"Link Logistics Real Estate","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Delmarva Power","tax_incentives":"No Delaware-specific data center tax incentive program identified; general state incentives may apply.","natural_hazard_zone":""},"986":{"description":"Lumen Wilmington 1 is an operational Lumen Technologies telecom/colocation data center at 1603 North Jessup Street, Wilmington, Delaware, reported as a 15,000 sq ft facility with about 1,228 sq ft of raised-floor space and no public total MW figure.","verified_status":"operational","power_capacity_mw":0,"total_sqft":15000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Wilmington 1","verified_operator":"Lumen Technologies","verified_owner":"Lumen Technologies","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Delmarva Power","tax_incentives":"No state sales tax; no known Delaware state data center-specific incentive program; City of Wilmington offers a 5-year property tax abatement on qualified improvements.","natural_hazard_zone":"Low overall risk; moderate earthquake risk for the area."},"987":{"description":"Telecom/colocation facility at 100 Carlson Way, Dover, DE, listed as Crown Castle’s Dover Data Center and operational, located in an 18,788‑SF flex/industrial building; note that Crown Castle sold its Fiber Solutions business to Zayo on May 1, 2026, so the operator listing may be stale.","verified_status":"operational","power_capacity_mw":0,"total_sqft":18788,"year_online":"unknown","construction_update":"","recent_news":"No facility-specific expansion or regulatory news found in the last six months. The most relevant update is Crown Castle’s May 1, 2026 closing of the sale of its Fiber Solutions business to Zayo; the 100 Carlson Way listing was updated Jun 15, 2026 showing space for lease, not construction.","notable_tenants":"","verified_name":"Crown Castle Dover Data Center","verified_operator":"Crown Castle","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.45,"utility_provider":"City of Dover Electric Utilities","tax_incentives":"","natural_hazard_zone":""},"988":{"description":"Amtrak’s Wilmington Unified Operations Center at the Renaissance Centre (405 N. King St., Wilmington, DE) is an enterprise facility being built by Wohlsen Construction that includes a new Tier‑3 data center to support Amtrak’s operational resiliency, with completion targeted for 2027.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":164789,"year_online":"2027","construction_update":"Apr 4, 2024: Amtrak selected Wohlsen Construction Company as the contractor for the Wilmington UOC Facility Project; completion is expected in 2027.","recent_news":"","notable_tenants":"","verified_name":"Amtrak Wilmington Unified Operations Center (UOC) at the Renaissance Centre — Tier-3 data center","verified_operator":"Amtrak","verified_owner":"Amtrak / National Railroad Passenger Corporation","cooling_type":"unknown","tier_level":"Tier III / Tier-3 design standard reported; no public Uptime Institute certification listing found","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Delmarva Power","tax_incentives":"No project-specific incentive award found. Wilmington programs (e.g., city tax abatements/assistance) and Opportunity Zones exist, but applicability to this Amtrak project is not confirmed.","natural_hazard_zone":"Wilmington shows notable flood exposure citywide; address-specific FEMA flood-zone for 405 N King St not verified here."},"989":{"description":"Project Washington is a proposed multi-building hyperscale data center campus in New Castle County, Delaware, led by Starwood Digital Ventures, with 11 two‑story data center buildings along Governor Lea Road and Hamburg/River Road parcels.","verified_status":"planned","power_capacity_mw":1200,"total_sqft":6000000,"year_online":"unknown","construction_update":"As of June 2026, no construction start is verified; New Castle County lists the North (2025-0346-S) and South (2025-0347-S) campuses as Pre‑Exploratory Major Land Development Plans, and DNREC issued a Coastal Zone status decision denying the project.","recent_news":"On March 26, 2026, Delaware’s Coastal Zone Industrial Control Board affirmed DNREC’s decision to prohibit the Project Washington data center in the Coastal Zone; Starwood was likely to appeal to Superior Court.","notable_tenants":"","verified_name":"Project Washington","verified_operator":"Starwood Digital Ventures","verified_owner":"New Castle Campus Development LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":11,"campus_acres":580,"utility_provider":"Delmarva Power & Light","tax_incentives":"None identified","natural_hazard_zone":"FEMA Flood Zone AE"},"990":{"description":"Proposed multi‑building data center redevelopment at the White Clay Center Industrial Park (100 White Clay Center Dr, Newark, DE), filed as New Castle County App. 2025-0716-S. Verdantas submitted the plan to demolish seven existing buildings and redevelop the roughly 44‑acre Shelbourne-owned campus into an ~847k sq ft data center complex; no operator/tenant has been disclosed.","verified_status":"planned","power_capacity_mw":0,"total_sqft":847000,"year_online":"unknown","construction_update":"Nov 18, 2025: Verdantas submitted an exploratory Major Land Development Plan; New Castle County lists App. 2025-0716-S as a pre‑exploratory plan for a proposed data center at White Clay Center Industrial Park. No record of final approval or construction start.","recent_news":"Mar 19, 2026: New Castle County’s new data‑center regulations took effect, but the White Clay project was already in the pipeline and properly zoned, so the new rules did not apply to it.","notable_tenants":"","verified_name":"White Clay Center Industrial Park","verified_operator":"SWC 100, LLC","verified_owner":"Shelbourne Global","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":44.08,"utility_provider":"Delmarva Power","tax_incentives":"","natural_hazard_zone":""},"991":{"description":"A legacy Hosting.com (HOSTING) colocation facility formerly listed at 650 Pencader Drive, Newark, DE with 18,500 sq ft and dedicated data-center space; after HOSTING merged and rebranded to Ntirety and colocation moved to Data Canopy, the active Newark site is at 350 Pencader Drive, while 650 Pencader is marketed as office/industrial space.","verified_status":"decommissioned","power_capacity_mw":3.7,"total_sqft":18500,"year_online":"unknown","construction_update":"May 2026: Property marketed for sublease with existing office infrastructure; flyer notes lease expiration November 30, 2027.","recent_news":"May 27, 2026: 600–650 Pencader Dr is marketed for lease/sublease as 26,374 SF office/industrial space; no data-center expansion or new DC tenants announced.","notable_tenants":"","verified_name":"Hosting.com Newark Data Center","verified_operator":"Data Canopy","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":15.16,"utility_provider":"Delmarva Power","tax_incentives":"Delaware: no sales tax; no dedicated statewide data center incentive program; limited local property tax abatements via New Castle County programs may apply.","natural_hazard_zone":"FEMA Zone X (minimal flood hazard)"},"992":{"description":"William Penn Data Center is an internal State of Delaware facility operated by the Department of Technology & Information (DTI) in the William Penn Building at 801 Silver Lake Boulevard, Dover, DE. DTI’s data center modernization includes addressing “William Penn” by relocating about 10 racks out of state for disaster recovery compliance.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Feb 6, 2026: Delaware Public Media reported DTI still operates two internal data centers but has moved large-scale operations to Microsoft Cloud/out-of-state environments; no William Penn–specific expansion or regulatory action reported in the last six months.","notable_tenants":"","verified_name":"William Penn Data Center","verified_operator":"Delaware Department of Technology & Information","verified_owner":"State of Delaware (Delaware Office of Management and Budget / Division of Facilities Management)","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":3,"utility_provider":"City of Dover Electric Department","tax_incentives":"","natural_hazard_zone":""},"993":{"description":"Verizon WILIDE is a Verizon‑operated telecom/data center presence listed at 222 Delaware Avenue in Wilmington, DE, located within the PNC Bank Center office building. Public sources confirm the address and building but do not publish facility‑specific specs.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon WILIDE","verified_operator":"Verizon","verified_owner":"Douglas Development","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon, Comcast, AT&T","num_buildings":1,"campus_acres":0,"utility_provider":"Delmarva Power","tax_incentives":"Delaware has no known data center-specific tax incentive legislation.","natural_hazard_zone":"FEMA flood zone AE (100-year floodplain)"},"994":{"description":"Trijit Data Center is an operational colocation facility operated by Trijit Corporation at 501 Silverside Rd, Suite 105, Wilmington, DE, offering cabinets and cages. It is listed with 0.3 MW of fully built-out power.","verified_status":"operational","power_capacity_mw":0.3,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Trijit Data Center","verified_operator":"Trijit Corporation","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Delmarva Power","tax_incentives":"No known Delaware data center-specific tax incentive program.","natural_hazard_zone":"Portions of Wilmington include FEMA Flood Zone AE; site appears inland. Low seismic risk historically."},"995":{"description":"DC BLOX Birmingham (BHM1) is an operational multi-tenant colocation data center operated by DC BLOX at 433 6th Street South in Birmingham, Alabama, certified by Uptime Institute for Tier III Design. The site sits near UAB’s campus and Innovation Depot and serves regional enterprises with carrier-grade connectivity.","verified_status":"operational","power_capacity_mw":5,"total_sqft":31000,"year_online":"2019","construction_update":"Planned next-phase extension with construction expected from Q2 2026 through Q4 2027; DC BLOX is also marketing a larger future expansion option of a new 263,000 sq ft facility with 40 MW critical on the Birmingham campus.","recent_news":"April 2026 community outreach indicates a planned next-phase extension at the Birmingham campus with construction expected between Q2 2026 and Q4 2027; DC BLOX is also marketing a larger future expansion option of a new 263,000 sq ft build with 40 MW critical.","notable_tenants":"City of Birmingham; Torch Technologies","verified_name":"DC BLOX Birmingham Data Center (BHM1)","verified_operator":"DC BLOX","verified_owner":"","cooling_type":"hybrid","tier_level":"Tier III (design standard)","fiber_providers":"carrier-neutral; AT&T, Comcast, Charter/Spectrum, Cogent, Zayo, CenturyLink","num_buildings":1,"campus_acres":27,"utility_provider":"","tax_incentives":"Customers at the Birmingham data center qualify for beneficial tax treatment.","natural_hazard_zone":"150‑mph wind‑rated building; FEMA flood zone not determined here"},"996":{"description":"Lumen operates a telecom/network colocation facility at 2001 Park Place North in Birmingham with a listed 3,408 sq ft footprint and 796 sq ft of raised floor. Directory naming varies (sometimes shown as “Birmingham 2”), but the address and specs match the Park Place site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3408,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Birmingham 1","verified_operator":"Lumen Technologies","verified_owner":"Eightfold Real Estate Capital / Cicada Capital Partners (JV)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Alabama Power","tax_incentives":"","natural_hazard_zone":"Tornado-prone region; specific FEMA flood zone for 2001 Park Place North not confirmed (downtown parcels are commonly Zone X, minimal flood risk)."},"997":{"description":"Southern Telecom Birmingham is an operational, carrier-neutral colocation/carrier-hotel facility operated by Southern Telecom at 600 18th St N, Birmingham, AL 35203, offering enterprise colocation and cross-connect services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"University of Alabama System (customer); Cogent Communications (service location/carrier).","verified_name":"Southern Telecom Birmingham","verified_operator":"Southern Telecom (STI)","verified_owner":"Southern Company","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; multiple telecom carriers available","num_buildings":0,"campus_acres":0,"utility_provider":"Alabama Power","tax_incentives":"","natural_hazard_zone":"Tornado risk zone"},"998":{"description":"Digi Power X / US Data Centers, Inc. is developing a 55 MW AI/HPC colocation campus at the former Grede Foundry site at 130 Industrial Pkwy in Columbiana, Alabama.","verified_status":"under-construction","power_capacity_mw":55,"total_sqft":0,"year_online":"2026 initial phase; 2027 full deployment","construction_update":"Site development underway; Phase 1 (15 MW) targeted Ready-for-Service December 2026, with Phase 2 completing the 40 MW deployment by end of Q1 2027.","recent_news":"Cerebras signed for 40 MW at the Columbiana campus under a 10-year deal valued around $1.1B (early May 2026); in February 2026, the city passed new zoning restrictions for data centers.","notable_tenants":"Cerebras Systems — anchor customer for 40 MW under a 10-year agreement valued at about $1.1B.","verified_name":"USDC Columbiana (also known as Digi Power X: Columbiana / Columbiana Data Center)","verified_operator":"Digi Power X Inc.","verified_owner":"Digi Power X Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"No active local abatement; the Council unanimously rejected initiating a tax‑abatement process for the project.","natural_hazard_zone":""},"999":{"description":"DC BLOX Huntsville (HSV1) is an operational Tier III‑equivalent colocation data center operated by DC BLOX at 333 Diamond Drive NW, Huntsville, Alabama, opened in 2018. The current facility provides roughly 9,000 sq ft with about 1.5 MW of critical/UPS power.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":9000,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DC BLOX Huntsville Data Center","verified_operator":"DC BLOX","verified_owner":"DC BLOX Inc.","cooling_type":"unknown","tier_level":"Tier III design","fiber_providers":"Carrier-neutral; DC BLOX Metro Fiber Network available","num_buildings":1,"campus_acres":5.1,"utility_provider":"Huntsville Utilities","tax_incentives":"Up to $1 million in performance-based incentives tied to sales-tax rebates over 10 years.","natural_hazard_zone":""},"1000":{"description":"A colocation data center operated by Simple Helix at 165 West Park Loop NW, Huntsville, AL, marketed as a Tier III facility serving a range of clients.","verified_status":"operational","power_capacity_mw":4.5,"total_sqft":0,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Simple Helix Data Center","verified_operator":"Simple Helix LLC","verified_owner":"","cooling_type":"chilled water","tier_level":"Tier III equivalent","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":2.27,"utility_provider":"Huntsville Utilities","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (low-to-moderate risk); regionally elevated severe thunderstorm/tornado exposure"},"1001":{"description":"Scipio Technologies Huntsville is an operational colocation data center at 2104 West Ferry Way, Huntsville, AL, operated by Scipio Technologies. Scipio lists a 17,000‑square‑foot facility with a 1,250 kW diesel generator and a 280‑ton cooling plant; the site was previously listed in provider directories as Peace Communications “HSV1” at the same address.","verified_status":"operational","power_capacity_mw":1.25,"total_sqft":17000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Scipio Technologies Huntsville","verified_operator":"Scipio Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.47,"utility_provider":"Huntsville Utilities","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone C/X (area of minimal flood hazard); regional exposure to severe thunderstorms and tornadoes"},"1002":{"description":"Meta Huntsville - Building 1 is an operational hyperscale data center operated by Meta at 5400 Prosperity Dr NW, Huntsville, Alabama, with about 48 MW of capacity and roughly 611,174 sq ft that came online in 2021.","verified_status":"operational","power_capacity_mw":48,"total_sqft":611174,"year_online":"2021","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Meta Huntsville - Building 1","verified_operator":"Meta","verified_owner":"Starbelt LLC","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":340,"utility_provider":"Huntsville Utilities (power supplied by TVA)","tax_incentives":"City of Huntsville: $6.6 million in indirect incentives for the North Huntsville Industrial Park infrastructure.","natural_hazard_zone":"Generally FEMA Flood Zone X (minimal risk); elevated tornado/severe weather exposure in the Huntsville region."},"1003":{"description":"A small colocation data center operated by Assurance Technology, LLP at 316 Bel Air Blvd in Mobile, Alabama, serving local businesses with colocation and managed/hosted IT services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Assurance Technology, LLP Data Center","verified_operator":"Assurance Technology, LLP","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.63,"utility_provider":"Alabama Power","tax_incentives":"","natural_hazard_zone":"Hurricane/tropical-storm exposure with localized flooding risk (Bel Air Blvd has observed flooding); address-specific FEMA flood zone not determined; regional seismic risk low."},"1004":{"description":"Lumen Mobile 1 is a Lumen-operated telecom/colocation data center at 50 N. (North) Lawrence Street in Mobile, Alabama. Directory listings confirm the site and footprint, and Lumen offers network colocation services at its data centers.","verified_status":"operational","power_capacity_mw":1,"total_sqft":5625,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Mobile 1","verified_operator":"Lumen","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Lumen (Level 3); diverse fiber connectivity and alternate carrier networks; services include Waves, Dark Fiber, Private Line, and Cloud Connect to AWS, Azure, and Google","num_buildings":0,"campus_acres":0,"utility_provider":"Alabama Power","tax_incentives":"","natural_hazard_zone":"Hurricane-prone Gulf Coast; address-specific FEMA flood zone not determined"},"1005":{"description":"A local edge colocation and IT services data center operated by Sparrow Technology Solutions, LLC at 3015 McGehee Rd in Montgomery, AL, offering secure data center/IT services with 24/7/365 availability.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2567,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Sparrow Technology Solutions: 3015 McGehee Data Center","verified_operator":"Sparrow Technology Solutions, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.93,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1006":{"description":"A micro/edge colocation data center at 3015 McGehee Road in Montgomery, Alabama, operated by Sparrow Technology Solutions, offering locally delivered colocation and IT services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2331,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"3015 McGehee Data Center","verified_operator":"Sparrow Technology Solutions, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.93,"utility_provider":"Alabama Power Company","tax_incentives":"","natural_hazard_zone":"Flood Zone B and X / moderate flood hazard, usually between the 100-year and 500-year flood limits"},"1007":{"description":"EdgeConneX Arcata – EDCACV01 is an operational edge/colocation data center operated by EdgeConneX at 1296 11th St, Arcata, CA, which also serves as the Eureka cable landing station.","verified_status":"operational","power_capacity_mw":1.136,"total_sqft":22250,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX Arcata - EDCACV01","verified_operator":"EdgeConneX","verified_owner":"EdgeConneX (via EdgeConneX Arcata entity)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; serves as a transpacific cable landing/meet-me point","num_buildings":1,"campus_acres":1.43,"utility_provider":"Pacific Gas & Electric Company (PG&E)","tax_incentives":"","natural_hazard_zone":"Outside FEMA special flood hazard area; regional seismic risk present"},"1008":{"description":"Anaheim Palms Telecom Center – Bldg. 2 is a carrier-neutral telecom/data center location at 2421 West La Palma Avenue in Anaheim, CA; Cogent lists it as an on-net CNDC site, and industry listings place it within the Anaheim Palms campus. The specific building operator is not clearly identified in public sources.","verified_status":"operational","power_capacity_mw":0,"total_sqft":19600,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No anchor/customer tenants identified for 2421 W La Palma Bldg. 2. Cogent lists the site as an on-net CNDC location; the adjacent Aecero CBX at 2463 W La Palma lists carriers including AT&T, Cogent, Cox, Level(3), and Verizon.","verified_name":"Anaheim Palms Telecom Center - Bldg. 2","verified_operator":"Anaheim Palms Telecom Center, LLC","verified_owner":"Living Stream, Inc. (dba Anaheim Palms Corporate Center)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent on-net","num_buildings":0,"campus_acres":41,"utility_provider":"Anaheim Public Utilities","tax_incentives":"","natural_hazard_zone":"seismic and citywide multi-hazard exposure; no address-specific FEMA flood-zone designation identified here"},"1009":{"description":"Anaheim Palms Telecom Center is a carrier-neutral telecom/colocation facility on the Anaheim Palms campus at 2441 W. La Palma Avenue in Anaheim; Cogent lists 2441 and adjacent Building 2 (2421) as active service locations. Aecero operates the CBX data center on the same campus at 2463 W. La Palma Avenue, Suite 200.","verified_status":"operational","power_capacity_mw":6,"total_sqft":110000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No publicly disclosed anchor end-customer. Carrier connectivity includes Verizon Communications.","verified_name":"Anaheim Palms Telecom Center","verified_operator":"Anaheim Palms Telecom Center","verified_owner":"Living Stream, Inc. d/b/a Anaheim Palms Corporate Center","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":20.87,"utility_provider":"Anaheim Public Utilities","tax_incentives":"","natural_hazard_zone":"FEMA flood zone: use FEMA/City map tools; regional Southern California seismic exposure; wildfire hazard mapped by Cal Fire (Anaheim FHSZ maps)."},"1010":{"description":"Cogent Communications operates an edge data center at 715 Sumner Street in Bakersfield that provides colocation and connectivity services. It is part of Cogent’s owned-and-operated portfolio of data centers and Edge Data Centers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Edge Data Center - Bakersfield","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications (on-net); carrier-neutral status not indicated","num_buildings":0,"campus_acres":0.26,"utility_provider":"Pacific Gas and Electric Company (PG&E)","tax_incentives":"","natural_hazard_zone":""},"1011":{"description":"Lumen Bakersfield 1 is an operational Lumen Technologies telecom/colocation data center at 2020 P Street in Bakersfield, CA.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Bakersfield 1","verified_operator":"Lumen Technologies","verified_owner":"Lumen Technologies","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (on-net)","num_buildings":1,"campus_acres":0.37,"utility_provider":"PG&E (Pacific Gas & Electric)","tax_incentives":"","natural_hazard_zone":"High seismic hazard (Kern County, CA); FEMA-mapped flood risk area (site-specific flood zone not confirmed from public listings)."},"1012":{"description":"Lumen Bakersfield 2 is an operational Lumen Technologies colocation/telecom data center at 1430 Truxtun Ave (Suite 875), Bakersfield, CA. The site is listed as fully operational and was formerly a tw telecom facility.","verified_status":"operational","power_capacity_mw":0.075,"total_sqft":4917,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Bakersfield 2 Data Center","verified_operator":"Lumen Technologies","verified_owner":"Erwin Property LLC / Erwin LLC (building owner); City of Bakersfield approved a lease with option to purchase in 2026 (no completed purchase confirmed).","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (on-net)","num_buildings":1,"campus_acres":2.31,"utility_provider":"Pacific Gas and Electric Company (PG&E)","tax_incentives":"","natural_hazard_zone":"Seismic risk (Kern County); potential Lake Isabella dam inundation ~1–2 ft across much of Bakersfield; localized urban flooding along Truxtun Ave during heavy rain."},"1013":{"description":"Lumen Emeryville 1 is an operational Lumen (formerly CenturyLink/Level 3) carrier‑neutral telecom colocation data center at 5000 Hollis Street, Emeryville, CA, offering direct access to the Lumen/Level 3 network and 2N power redundancy.","verified_status":"operational","power_capacity_mw":0,"total_sqft":123092,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Emeryville 1","verified_operator":"Lumen Technologies","verified_owner":"BTE Equipment, LLC","cooling_type":"chilled water","tier_level":"Tier III equivalent design (concurrently maintainable) per some listings; not formally Uptime Institute certified","fiber_providers":"Carrier-neutral; connected providers include Lumen, Cogent Communications, Paxio, Comcast, and Zayo","num_buildings":1,"campus_acres":4.6,"utility_provider":"PG&E (Pacific Gas & Electric)","tax_incentives":"","natural_hazard_zone":"Outside 100-year FEMA flood plain; Seismic Zone 4 (meets 1997 UBC Zone 4 seismic code construction standards)"},"1014":{"description":"Telecom/colocation data center at 1313 53rd Street in Emeryville operated by Lumen (legacy Level 3), notable for Zone 4 seismic construction and Lumen/Level 3 network access.","verified_status":"operational","power_capacity_mw":4.384875,"total_sqft":119271,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Oakland","verified_operator":"Lumen","verified_owner":"","cooling_type":"unknown","tier_level":"Tier II equivalent (not Uptime-certified)","fiber_providers":"carrier-neutral; on-net: Lumen (Level 3), Cogent","num_buildings":0,"campus_acres":0,"utility_provider":"PG&E; Ava Community Energy (CCA)","tax_incentives":"","natural_hazard_zone":"Seismic liquefaction hazard area; building noted as Zone 4 seismic code construction"},"1015":{"description":"Hurricane Electric Fremont 1 is an operational colocation facility operated by Hurricane Electric at 760 Mission Ct, Fremont, CA, featuring about 45,000 sq ft, 1,008 cabinets, and a 2‑megawatt backup generator.","verified_status":"operational","power_capacity_mw":2,"total_sqft":45000,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Hurricane Electric Fremont 1 Data Center","verified_operator":"Hurricane Electric","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 3 IXPs (SFMIX, AMS-IX Bay, FCIX); ~70 networks; 7 carriers with diverse fiber","num_buildings":1,"campus_acres":0,"utility_provider":"Pacific Gas & Electric Company (PG&E)","tax_incentives":"","natural_hazard_zone":"Fremont city hazards include Earthquake and Flooding (among others); address-specific FEMA flood zone not confirmed."},"1016":{"description":"Hurricane Electric Fremont 2 (FMT2) is an operational colocation data center operated by Hurricane Electric at 48233 Warm Springs Blvd in Fremont, California. It is a large Internet colocation facility of roughly 208,000 sq ft.","verified_status":"operational","power_capacity_mw":15,"total_sqft":208000,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"No anchor/major tenant is publicly disclosed. IO Cooperative publicly states that its VPS and colocation services are hosted at the Hurricane Electric FMT2 datacenter at 48233 Warm Springs Blvd.","verified_name":"Hurricane Electric Fremont 2","verified_operator":"Hurricane Electric","verified_owner":"","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":14.24,"utility_provider":"PG&E","tax_incentives":"PG&E energy efficiency incentive for the 2009 expansion.","natural_hazard_zone":"FEMA Flood Zone X (low flood risk); near the Hayward Fault with elevated seismic and potential liquefaction risk."},"1017":{"description":"Planned wholesale data center by Valley Oak Partners at 37887 Shinn St. in Fremont, CA, proposed at about 490,000 sq ft and 90 MW on roughly 12–12.5 acres at the former industrial site.","verified_status":"planned","power_capacity_mw":90,"total_sqft":490000,"year_online":"unknown","construction_update":"Feb 24, 2023: Proposal reported; Mar 1, 2023: additional coverage of the proposed 37887 Shinn St. data center; no public evidence since then of construction start or permitting milestones.","recent_news":"","notable_tenants":"","verified_name":"37887 Shinn Street Data Center","verified_operator":"Valley Oak Partners","verified_owner":"Valley Oak Partners LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; specific providers not publicly listed","num_buildings":0,"campus_acres":12.5,"utility_provider":"PG&E","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zones B and X; regional California seismic hazard zone context"},"1018":{"description":"Unwired FAT1 is a colocation/data center in Fresno, California operated by unWired Broadband at 414 W Bedford Ave. The facility offers 24/7 video surveillance, alarm monitoring, and modern cooling and fire suppression systems.","verified_status":"operational","power_capacity_mw":0,"total_sqft":9000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Unwired FAT1","verified_operator":"unWired Broadband","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.53,"utility_provider":"PG&E","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard, between 100-year and 500-year flood limits)"},"1019":{"description":"Lumen Fresno 2 is a Lumen-operated telecom/colocation data center at 7576 N Del Mar Ave in Fresno, California, offering approximately 4,515 sq ft of raised-floor space. Industry directories list the site as operational.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4515,"year_online":"1997","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Fresno 2","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.52,"utility_provider":"Pacific Gas and Electric Company (PG&E)","tax_incentives":"","natural_hazard_zone":""},"1020":{"description":"Lumen Fresno 1 is a Lumen-operated colocation data center at 305 W Napa Ave, Fresno, CA, offering 30,000 sq ft total space with 9,900 sq ft of raised-floor colocation and N+1 HVAC redundancy.","verified_status":"operational","power_capacity_mw":1,"total_sqft":30000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Fresno 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Pacific Gas and Electric Company (PG&E)","tax_incentives":"","natural_hazard_zone":"High earthquake hazard (Fresno); FEMA flood zone for 305 W Napa Ave not confirmed; no hurricane exposure"},"1021":{"description":"Cogent POP Fresno is a Cogent Communications on‑net point of presence/data center at 233 West Voorman Avenue in Fresno, CA, listed by Cogent as a CDC site. Telecom switch listings also reference the same address, underscoring its role as network infrastructure rather than a large hyperscale build.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent POP Fresno","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications","num_buildings":0,"campus_acres":0,"utility_provider":"Pacific Gas and Electric Company (PG&E)","tax_incentives":"","natural_hazard_zone":"Exact FEMA flood-zone designation not verified here; Fresno County indicates flood zones are scattered and must be checked via FEMA/County GIS. California Seismic Hazard Zone mapping applies to liquefaction/landslide areas where designated."},"1022":{"description":"Impulse Goleta is a colocation data center at 6144 Calle Real #200 in Goleta, CA, historically operated by Impulse Advanced Communications (rebranded to Aseva in 2025), with Aseva marketing colocation services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Impulse Goleta","verified_operator":"Aseva (Impulse Advanced Communications)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Aseva/Impulse Advanced Communications (operator network); specific third-party carriers not listed","num_buildings":1,"campus_acres":1.84,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"","natural_hazard_zone":"unknown"},"1023":{"description":"STACK SVY03A is an under-construction wholesale data center campus operated by STACK Infrastructure at 26203 Production Ave, Hayward, CA, featuring a three-story facility with backup generation up to 67.2 MW and roughly 318,700 sf of building area.","verified_status":"under-construction","power_capacity_mw":67.2,"total_sqft":318700,"year_online":"unknown","construction_update":"May 22, 2025: Hayward Planning Commission approved the major site plan review and administrative use permit. By subsequent reporting/listings, the project has begun construction; a June 16, 2026 local article revisited the approval history and project details.","recent_news":"On June 16, 2026, a local news piece highlighted the SVY03A project, recapping Planning Commission approvals and growing scrutiny of data center developments in Hayward.","notable_tenants":"","verified_name":"STACK SVY03A Data Center Campus","verified_operator":"STACK Infrastructure","verified_owner":"SI SVYL3 LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":11.3,"utility_provider":"PG&E (with Ava Community Energy as CCA)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate), near Hayward Fault Zone, area with documented liquefaction susceptibility"},"1024":{"description":"Lumen Hayward 1 is an operational telecom colocation/data center operated by Lumen (formerly Level 3) at 23965 Connecticut St in Hayward, California. It is listed in industry directories and facility registries as a Lumen site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Hayward 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen","num_buildings":0,"campus_acres":0,"utility_provider":"PG&E","tax_incentives":"","natural_hazard_zone":"High seismic risk (proximity to Hayward Fault) with liquefaction susceptibility; FEMA flood zone not confirmed."},"1025":{"description":"AT&T Hayward is a telecom/data-center facility operated by AT&T at 221 W Winton Ave in Hayward, California, and is listed as fully operational. The on-site building is about 50,000 sq ft, while power capacity and online year are not publicly disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":50000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"AT&T Hayward","verified_operator":"AT&T","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T","num_buildings":0,"campus_acres":0,"utility_provider":"PG&E","tax_incentives":"","natural_hazard_zone":"Seismic — Located in the vicinity of the Hayward Fault (Alquist-Priolo Earthquake Fault Zone), with a 33% probability of a M6.7+ event on the Hayward Fault before 2043."},"1026":{"description":"Operational, multi-tenant colocation data center operated by SMS Datacenter (Grupo SMS USA) at 2525 Main Street, Suite 120, Irvine, offering Tier 3+-class infrastructure with 2N power and cooling redundancy.","verified_status":"operational","power_capacity_mw":0,"total_sqft":41000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SMS Datacenter – Irvine Data Center (aka Grupo SMS Datacenter)","verified_operator":"SMS Datacenter (Grupo SMS USA, LLC)","verified_owner":"Pacific Tree Capital","cooling_type":"hybrid","tier_level":"Tier 3+ design (no public Uptime Institute certification found)","fiber_providers":"carrier-neutral; AT&T, Lumen, Cogent, Cox, Crown Castle, Spectrum, XO, Zayo","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"","natural_hazard_zone":"low risk (no SFHA indicated by local references; general Southern California seismic exposure)"},"1027":{"description":"Cogent Data Center - Livermore is a Cogent Communications colocation/telecom facility at 8851 Manning Rd, Livermore, CA, offering Internet, VPN, Transport and Colocation in a 9,095 sq ft space with 42U cabinets and multiple power options.","verified_status":"operational","power_capacity_mw":0,"total_sqft":9095,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Livermore","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications","num_buildings":1,"campus_acres":0,"utility_provider":"PG&E (Pacific Gas & Electric)","tax_incentives":"","natural_hazard_zone":"Seismic Hazard Zone; Wildfire Hazard Severity Zone present in the Livermore area"},"1028":{"description":"AMV Digital Media operates a 12,000‑sq‑ft office/production and broadcast/live‑streaming hub at Suite 200, 12950 Culver Blvd., Los Angeles; carriers list the address as an on‑net, carrier‑neutral data center, and the space features above‑standard electrical infrastructure and dark fiber.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"Apr 13, 2026: AMV Digital Media renewed its 12,000‑sq‑ft lease for five years at 12950 Culver Blvd., keeping its media hub in place.","notable_tenants":"","verified_name":"AMV Digital Media","verified_operator":"AMV Digital Media","verified_owner":"Steaven Jones & Co.","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent; carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"Seismic risk area; FEMA flood zone undetermined"},"1029":{"description":"Telehouse LA Center (626W) is an operational, carrier‑neutral colocation data center operated by Telehouse at 626 Wilshire Boulevard in downtown Los Angeles, notable for on‑site access to NYIIX Los Angeles and zero‑mile fiber proximity to One Wilshire.","verified_status":"operational","power_capacity_mw":0.665,"total_sqft":156000,"year_online":"1998","construction_update":"","recent_news":"2026-04-22: NYIIX announced the Astron platform with 400G connectivity, expanding across New York, New Jersey, Los Angeles and Philadelphia.","notable_tenants":"No anchor colocation tenants publicly disclosed. NYIIX Los Angeles is present at the facility; networks are listed on the facility’s PeeringDB page.","verified_name":"Telehouse Los Angeles (Telehouse Los Angeles Center / 626W)","verified_operator":"Telehouse America (KDDI Group)","verified_owner":"Golden Boy Enterprises/Oscar De La Hoya (controlling interest) with Barker Pacific Group minority interest; a non-performing note was sold to Farzad Essapour in May 2026 (potential deed-in-lieu/foreclosure not confirmed).","cooling_type":"unknown","tier_level":"Tier III-equivalent (no Uptime Institute certification cited for this facility)","fiber_providers":"carrier-neutral with NYIIX/LAIIX; providers include Atlantic Metro, Cogent, PureVoltage, Zayo (and others).","num_buildings":1,"campus_acres":0.453,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X; general Los Angeles seismic exposure"},"1030":{"description":"There is no separate public listing for a Summit-branded meet-me room at 700 Wilshire; Summit Co-Locate, Inc. is a business tenant at Suite 600. The colocation facility at this address is operated by Psychz Networks (LAX1) at 700 Wilshire Blvd #100/#200, with 15,000 sq ft of gross space and 24/7 on-site support.","verified_status":"operational","power_capacity_mw":0,"total_sqft":15000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Summit Co-Locate Meet-Me Room","verified_operator":"Summit Co-Locate","verified_owner":"Xyvest Holdings, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.33,"utility_provider":"Los Angeles Department of Water and Power (LADWP)","tax_incentives":"","natural_hazard_zone":"seismic zone (Southern California earthquake risk)"},"1031":{"description":"A Cogent Communications point-of-presence located at 1101 Los Olivos Ave, within the Morro Bay/Los Osos cable landing station. The cable landing facility (originally by MCI WorldCom, now owned/controlled by Verizon) hosts submarine cable terminations, with Cogent operating an on-net PoP at the site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1231,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent POP Los Osos","verified_operator":"Cogent Communications","verified_owner":"Verizon Business","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications; CenturyLink (Lumen)","num_buildings":0,"campus_acres":0,"utility_provider":"Pacific Gas & Electric (PG&E)","tax_incentives":"","natural_hazard_zone":"Coastal tsunami and sea-level-rise flooding exposure (site-specific FEMA zone not determined)"},"1032":{"description":"NYGC Loyalton is a proposed AI-focused data center by NewYork GreenCloud at 100 Railroad Ave, Loyalton, CA, described as an “AI Factory” powered by an 18 MW biomass source. Local officials said no permit applications had been filed as of May 19, 2026, indicating the site remains at a speculative/planned stage.","verified_status":"planned","power_capacity_mw":10,"total_sqft":0,"year_online":"unknown","construction_update":"May 19, 2026: Sierra County officials stated no permit applications had been filed for the rumored data center at the Loyalton biomass site.","recent_news":"May 19, 2026: At a Sierra County Board meeting, officials confirmed no permit applications had been filed for the rumored AI data center at the Loyalton biomass site.","notable_tenants":"","verified_name":"NYGC Loyalton","verified_operator":"NewYork GreenCloud","verified_owner":"Sierra Valley Enterprises LLC / Sierra Valley Cogen LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Liberty Utilities","tax_incentives":"","natural_hazard_zone":"Special Flood Hazard Area risk (preliminary FEMA mapping) and high wildfire risk (Tier 2/3 area; severe wildfire risk)."},"1033":{"description":"USC/ISI Colo is an enterprise/network colocation presence operated by the USC Information Sciences Institute at 4676 Admiralty Way, Marina del Rey, with carrier access noted by Cogent as “USC/ISI” and “USC/ISI Colo 2 MMR.” ISI’s B-Root presence is listed at the same address, and an archived Marina Towers listing for DigiLink is not treated as current facility specifications.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"USC/ISI Colo","verified_operator":"USC/ISI (University of Southern California Information Sciences Institute)","verified_owner":"Boxer Property","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications; carrier-neutral (CNDC)","num_buildings":1,"campus_acres":1.04,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Tsunami inundation zone; coastal flood risk"},"1034":{"description":"Quest Technology Management operates an operational colocation and Business Resumption Center at 4235 Forcum Avenue in McClellan Park, CA, commonly referenced as the Quest McClellan BRC. Public listings confirm the address and identify the site with 6 MW of capacity.","verified_status":"operational","power_capacity_mw":6,"total_sqft":0,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Quest McClellan BRC (Quest Business Resumption Center)","verified_operator":"Quest Technology Management","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"SMUD (Sacramento Municipal Utility District)","tax_incentives":"McClellan Park programs: Opportunity Zone; California Competes Tax Credit; Target Area Contract Preference Act (TACPA); LAMBRA; plus SMUD rate incentives.","natural_hazard_zone":"FEMA Flood Zone X (shaded) — moderate flood risk (approx. 0.2% annual chance)."},"1035":{"description":"CoreSite SV2 is an operational colocation data center at 1656 McCarthy Blvd., Milpitas, CA, operated by CoreSite. It offers high‑density colocation and interconnection to cloud/network providers and totals over 76,000 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":76000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Oxide Computer Company","verified_name":"CoreSite SV2 - Milpitas Data Center","verified_operator":"CoreSite","verified_owner":"CoreSite Real Estate 1656 McCarthy, LLC (CoreSite; CoreSite is a subsidiary of American Tower Corporation)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":5.19,"utility_provider":"Pacific Gas & Electric (PG&E)","tax_incentives":"","natural_hazard_zone":"FEMA 0.2% annual chance (500-year) flood zone context in Milpitas; outside mapped SFHA for many parcels near the site"},"1036":{"description":"Ayera Technologies operates a colocation/cloud data center in the Modesto City Tower at 801 Tenth Street, Modesto, California.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8000,"year_online":"2006","construction_update":"","recent_news":"April 5, 2026: Ayera announced its Modesto data center is now a Netflix Streaming Cache Node, enabling local delivery of Netflix content to Ayera internet customers.","notable_tenants":"","verified_name":"Ayera Modesto City Tower","verified_operator":"Ayera Technologies, Inc.","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier II","fiber_providers":"carrier-neutral; multiple providers present","num_buildings":1,"campus_acres":0,"utility_provider":"Modesto Irrigation District (MID)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard)"},"1037":{"description":"T5@Silicon Valley is an operational enterprise data center at 39800 Eureka Dr, Newark, CA, owned and operated by T5 Data Centers after acquiring the former Apple facility in October 2020; the site lists 17 MW of capacity and roughly 100k–128k SF of space.","verified_status":"operational","power_capacity_mw":17,"total_sqft":128000,"year_online":"2006","construction_update":"No active construction identified as of 2026. Last milestone: Oct 6–7, 2020 — T5 announced/acquired the Newark site and outlined a campus expansion (Building 2), later listed as a planned development.","recent_news":"","notable_tenants":"Apple","verified_name":"T5@Silicon Valley","verified_operator":"T5 Data Centers","verified_owner":"T5 Data Centers","cooling_type":"unknown","tier_level":"Tier III equivalent","fiber_providers":"AT&T; Verizon Communications","num_buildings":2,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1038":{"description":"Digital Realty OAK10 is an operational, carrier-neutral colocation data center at 720 2nd Street in Oakland, California, operated by Digital Realty. The four‑story facility totals about 122,000 sq ft and advertises connectivity from 15+ providers.","verified_status":"operational","power_capacity_mw":14.5,"total_sqft":122000,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"No anchor tenant or major customer is publicly disclosed. Public interconnection listings show at least Cogent Communications present at “Digital Realty OAK (720 2nd St)”.","verified_name":"Oakland OAK10","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; over 15 Internet providers","num_buildings":1,"campus_acres":0.92,"utility_provider":"PG&E / Pacific Gas and Electric Company","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (outside 500-year floodplain); Seismic Zone Category D"},"1039":{"description":"Equinix SV8 is an operational Equinix IBX carrier-neutral colocation data center at 529 Bryant Street in Palo Alto, historically known as the Palo Alto Internet Exchange (PAIX) and a key Silicon Valley peering hub.","verified_status":"operational","power_capacity_mw":2.6,"total_sqft":45319,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Publicly listed network participants at SV8 include Amazon.com, Alibaba, AARNet, and 365 Data Centers (BroadbandONE) via peering listings; the City of Palo Alto also has an agreement referencing IBX: SV8 at 529 Bryant Street.","verified_name":"Equinix Silicon Valley SV8","verified_operator":"Equinix","verified_owner":"529 Bryant Partners LLC (Menlo Equities / Menlo Digital platform)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Equinix Internet Exchange/PAIX; interconnection via Equinix Cloud Exchange/Fabric","num_buildings":1,"campus_acres":0.165,"utility_provider":"City of Palo Alto Utilities (CPAU)","tax_incentives":"","natural_hazard_zone":"Above 100-year floodplain; Seismic Design Category D"},"1040":{"description":"Carrier-neutral colocation data center at 10815 Gold Center Drive, Rancho Cordova, operated by iBridge Cloud Technologies; the property is listed as a telecom/data-hosting facility with 18,144 rentable square feet (year built 1998).","verified_status":"operational","power_capacity_mw":0,"total_sqft":18144,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Cogent Communications is an on-net carrier/service provider at this facility; no publicly disclosed anchor tenant or major customer is listed.","verified_name":"iBridge Cloud Data Center","verified_operator":"iBridge Cloud Technologies Inc.","verified_owner":"Gold Tailings Investments LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications (on-net)","num_buildings":1,"campus_acres":0,"utility_provider":"Sacramento Municipal Utility District (SMUD)","tax_incentives":"","natural_hazard_zone":""},"1041":{"description":"365 Data Centers operates a colocation data center at 11085 Sun Center Drive in Rancho Cordova, CA, offering approximately 69,000 sq ft and 5 MW of capacity. The site provides carrier-rich colocation services.","verified_status":"operational","power_capacity_mw":5,"total_sqft":69048,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers Rancho Cordova Data Center","verified_operator":"365 Data Centers","verified_owner":"Mapletree Industrial Trust (MIT)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"General City of Rancho Cordova business incentives are available (e.g., Business Incentive Program), but no facility-specific abatement or certification was identified.","natural_hazard_zone":""},"1042":{"description":"Datacate operates an enterprise-class colocation data center (SMF1) at 2999 Gold Canal Drive in Rancho Cordova, CA, offering colocation and related infrastructure services. The site provides roughly 18,000 sq ft and 1.4 MW installed capacity with expansion available.","verified_status":"operational","power_capacity_mw":1.4,"total_sqft":18000,"year_online":"unknown","construction_update":"","recent_news":"June 2026: Alive Commercial Real Estate listed 2991 & 2999 Gold Canal Drive (including Datacate’s 2999 site) for sale; the listing notes capacity expandable to 2.8 MW.","notable_tenants":"","verified_name":"Datacate SMF1 Sacramento Rancho Cordova Data Center","verified_operator":"Datacate, Inc.","verified_owner":"Datacate, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Sacramento Municipal Utility District (SMUD)","tax_incentives":"","natural_hazard_zone":""},"1043":{"description":"Operational Tier III, carrier-neutral colocation data center operated by Conscious Data Centers at 3141 Data Drive, Rancho Cordova, CA, offering 50,000 sq ft of raised floor and 5 MW of power.","verified_status":"operational","power_capacity_mw":5,"total_sqft":75000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Conscious Data Centers (Rancho Cordova Data Center)","verified_operator":"Conscious Data Centers, LLC","verified_owner":"Cerulean Global Services, LLC","cooling_type":"hybrid","tier_level":"Tier III","fiber_providers":"Carrier-neutral; Comcast Business, Cogent Communications","num_buildings":1,"campus_acres":5.41,"utility_provider":"Sacramento Municipal Utility District (SMUD)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (minimal flood hazard); moderate-to-low seismic risk"},"1044":{"description":"EdgeConneX SAC01 is EdgeConneX’s edge colocation facility at 10980 Gold Center Dr in Rancho Cordova (Sacramento metro), purpose‑built for secure, low‑latency interconnection and currently in active operation.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":28500,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"No end-user anchor tenants are publicly disclosed. The Sacramento Internet Exchange (Sacramento‑IX) operates a node in the facility.","verified_name":"EdgeConneX SAC01","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III design","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":2.77,"utility_provider":"SMUD (Sacramento Municipal Utility District)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard between 100-year and 500-year limits)"},"1045":{"description":"Sierra Morena Tower is an operational telecom tower and rack-space site operated by Sierra Morena Tower, LLC at 15040 Skyline Blvd, Redwood City, CA. The historic AT&T Long-Line location sits at the highest telecom tower point on the San Francisco Peninsula and offers tower space, rack space, and multimedia/AI services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Sierra Morena Tower","verified_operator":"Sierra Morena Tower, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Seismic zone (near the San Andreas Fault)"},"1046":{"description":"Colocation/telecom data center at 3175 Spring St, Redwood City (known as Redwood City RWC1), currently listed under Csquare. The site totals 62,516 sq ft with 33,152 sq ft of raised floor and around 4.0 MW of power; it is a legacy AT&T facility that moved under Brookfield/Evoque in 2019 and was rebranded through Centersquare to Csquare by late 2025.","verified_status":"operational","power_capacity_mw":4,"total_sqft":62516,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare Redwood RWC1","verified_operator":"Csquare","verified_owner":"Brookfield Infrastructure Partners","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; AT&T global IP network and multiple local carriers and service providers","num_buildings":4,"campus_acres":6.43,"utility_provider":"Pacific Gas and Electric Company (PG&E)","tax_incentives":"","natural_hazard_zone":"Seismic hazard zone (liquefaction/earthquake-prone region) and potential flood risk per FEMA map updates affecting parts of Redwood City"},"1047":{"description":"Cogent Data Center - Rialto is an operational colocation/telecom facility operated by Cogent Communications at 282 S Sycamore Ave, Rialto, CA. Cogent’s 2025 wholesale sheet lists 45,610 sq ft total and 3.00 MW total power (2.42 MW protected) on a 4.4‑acre site.","verified_status":"operational","power_capacity_mw":3,"total_sqft":45610,"year_online":"unknown","construction_update":"No active expansion reported. The 2025 wholesale sheet notes potential expansion on the 4.4-acre site and that additional power availability is being verified with Southern California Edison.","recent_news":"May 26, 2026: Cogent announced a definitive agreement to sell 10 data center facilities for $225 million in cash; the release did not name the Rialto facility.","notable_tenants":"","verified_name":"Cogent Data Center - Rialto","verified_operator":"Cogent Communications, Inc.","verified_owner":"Cogent Communications, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"seismic hazard exposure (Southern California earthquake zone)"},"1048":{"description":"Viridio operates a small, solar-powered colocation and hosting facility at 25655 Louisa Lane in Romoland/Menifee, California, notable for running its company-owned data center entirely on locally produced renewable solar energy.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2000,"year_online":"2005","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Viridio Solar Powered Data Center","verified_operator":"Viridio","verified_owner":"Viridio","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"","natural_hazard_zone":"City-level flood, seismic/liquefaction, and wildfire hazards identified; address-specific FEMA flood zone not confirmed."},"1049":{"description":"Quest Technology Management operates the Quest High Availability Business Center (HABC), an operational colocation and business-continuity data center at 9000 Foothills Blvd in Roseville, CA. The site is listed at 8 MW with roughly 122,000 sq ft of space and has been operational since 2014.","verified_status":"operational","power_capacity_mw":8,"total_sqft":122000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Quest High Availability Business Center","verified_operator":"Quest Technology Management","verified_owner":"R10 Foothill, LLC","cooling_type":"air-cooled","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":28,"utility_provider":"Roseville Electric Utility","tax_incentives":"","natural_hazard_zone":"Low risk"},"1050":{"description":"QTS Sacramento is an operational colocation data center operated by QTS Data Centers at 1100 N Market Blvd in Sacramento, offering about 4 MW of capacity and roughly 90,000 sq ft of space.","verified_status":"operational","power_capacity_mw":4,"total_sqft":90000,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Sacramento","verified_operator":"QTS Data Centers","verified_owner":"Blackstone-managed funds (via QTS Realty Trust/QualityTech, LP)","cooling_type":"unknown","tier_level":"Tier III equivalent","fiber_providers":"","num_buildings":1,"campus_acres":5.59,"utility_provider":"Sacramento Municipal Utility District (SMUD)","tax_incentives":"","natural_hazard_zone":"low risk (seismically neutral area)"},"1051":{"description":"NTT Sacramento CA1 is an operational colocation data center operated by NTT DATA’s Global Data Centers at 1200 Striker Ave., Sacramento, CA.","verified_status":"operational","power_capacity_mw":12.6,"total_sqft":85000,"year_online":"2001","construction_update":"","recent_news":"No CA1-specific news in the last six months; on March 3, 2026, NTT DATA announced major capacity commitments with hyperscale and enterprise clients (portfolio-level, not CA1-specific).","notable_tenants":"","verified_name":"Sacramento CA1 Data Center","verified_operator":"NTT Global Data Centers Americas, Inc.","verified_owner":"NTT Global Data Centers Americas, Inc. (successor to RagingWire Enterprise Solutions, Inc.)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":0,"utility_provider":"Sacramento Municipal Utility District (SMUD)","tax_incentives":"Historical (2010) Sacramento County utility‑tax rebate to RagingWire; no current active incentive identified.","natural_hazard_zone":"Natomas Basin floodplain; FEMA Zone A99 exposure likely — parcel-level confirmation recommended."},"1052":{"description":"NTT Sacramento CA2 (RagingWire CA2) is an operational colocation data center operated by NTT Global Data Centers/NTT DATA at 1312 Striker Avenue in Sacramento, offering about 26.1 MW of critical IT load and roughly 87,855 sq ft of data-floor space with carrier‑neutral connectivity.","verified_status":"operational","power_capacity_mw":26.1,"total_sqft":250000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Sacramento CA2 Data Center","verified_operator":"NTT DATA (Global Data Centers Americas)","verified_owner":"RagingWire Data Centers, Inc. (NTT Global Data Centers Americas; part of NTT DATA, Inc.)","cooling_type":"hybrid","tier_level":"","fiber_providers":"Zayo; Lumen; NTT DATA; Astound Broadband; Verizon; Comcast; PacketFabric; iTel","num_buildings":3,"campus_acres":0,"utility_provider":"SMUD (Sacramento Municipal Utility District)","tax_incentives":"Sacramento County 10-year utility tax break approved for RagingWire to support expansion.","natural_hazard_zone":"Seismically stable area (low seismic risk)"},"1053":{"description":"NTT Sacramento CA3 is an operational colocation data center operated by NTT Global Data Centers (NTT DATA) at 1625 W. National Dr., Sacramento, and is one of three facilities on NTT’s 52.7MW Sacramento campus.","verified_status":"operational","power_capacity_mw":14,"total_sqft":180000,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"Groupon (signed 1 MW and 5,000 sq ft at CA3 in 2016; current status not confirmed)","verified_name":"Sacramento CA3 Data Center","verified_operator":"NTT Global Data Centers Americas (NTT DATA, Inc.)","verified_owner":"Westcore Northgate, LP","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":7.77,"utility_provider":"SMUD (Sacramento Municipal Utility District)","tax_incentives":"Historical: Sacramento County approved a utility tax rebate for RagingWire’s expansion; no active, facility-specific incentive identified currently.","natural_hazard_zone":"FEMA Flood Zone A99"},"1054":{"description":"770 L Street is a Cogent-operated colocation/telecom facility (SMF01) inside a multi-tenant office building in downtown Sacramento. Inflect lists 5 MW, and the building’s ±5,360 RSF data-center suite includes dedicated backup power, HVAC, and fire suppression.","verified_status":"operational","power_capacity_mw":5,"total_sqft":5360,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"770 L Street","verified_operator":"Ethan Conrad Properties, Inc.","verified_owner":"Ethan Conrad Properties, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications (on-net)","num_buildings":1,"campus_acres":0,"utility_provider":"Sacramento Municipal Utility District (SMUD)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (not in Special Flood Hazard Area); Sacramento subject to state seismic hazard mapping (liquefaction susceptibility)."},"1055":{"description":"TPx Sacramento is a telecom/colocation data center operated by TPx Communications in downtown Sacramento, located at 1099 15th St (also referenced as 1515 K St). It is part of TPx’s SSAE 18 data center portfolio.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TPx Communications Sacramento Data Center","verified_operator":"TPx Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.15,"utility_provider":"SMUD","tax_incentives":"","natural_hazard_zone":""},"1056":{"description":"DataBank SAN1 is a carrier‑neutral colocation and interconnection data center operated by DataBank at 12270 World Trade Drive Suite #100 in San Diego, offering 55,239 IT square feet and 7.2 MW of critical IT load.","verified_status":"operational","power_capacity_mw":7.2,"total_sqft":88000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank SAN1 - San Diego World Trade Data Center","verified_operator":"DataBank","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; 10+ onsite carriers including Zayo and Cox Communications","num_buildings":1,"campus_acres":12.14,"utility_provider":"SDG&E (San Diego Gas & Electric)","tax_incentives":"","natural_hazard_zone":"Seismic zone; elevated flood and wildfire risk (Flood Factor 6/10, Fire Factor 6/10)"},"1057":{"description":"Carrier-neutral MMR/data-center site at 3180 University Ave operated by MDC Data Centers (SDG2), notable for enabling cross‑border U.S.–Mexico interconnection.","verified_status":"operational","power_capacity_mw":0.083,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Cogent Communications (listed as “3180 University Ave MMR” CNDC/COB service location); no other publicly disclosed anchor tenants.","verified_name":"MDC Data Centers SDG2 (3180 University Ave MMR)","verified_operator":"MDC Data Centers","verified_owner":"32ND STREET L P","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent on-net","num_buildings":1,"campus_acres":0,"utility_provider":"San Diego Gas & Electric (SDG&E)","tax_incentives":"","natural_hazard_zone":"Seismic hazard exposure (California); FEMA flood zone undetermined"},"1058":{"description":"EdgeConneX SAND (SDG01) is an operational edge colocation data center at 5761 Copley Drive, Suite 150B, San Diego, CA, operated by EdgeConneX. The facility totals 9,477 sq ft with 2,386 sq ft of raised floor and offers up to 0.5 MW of power capacity.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":9477,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX SDG01 San Diego Data Center","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III designed (not Uptime certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.39,"utility_provider":"San Diego Gas & Electric (SDG&E)","tax_incentives":"","natural_hazard_zone":"Seismic hazard (California earthquake exposure)"},"1059":{"description":"ScaleMatrix’s San Diego data center (US‑WEST 01) at 5775 Kearny Villa Road is an operational high‑density colocation facility using Dynamic Density Control cabinets, offering roughly 50,000 sq ft of space and an aggregate 5 MW power capacity with utility upgrade potential.","verified_status":"operational","power_capacity_mw":5,"total_sqft":50000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"Hewlett Packard Enterprise (HPE) — in-facility Hybrid HPC Center of Excellence at the San Diego headquarters; Bumble Bee Foods — named customer; Yellowbrick Data — named partner/customer","verified_name":"ScaleMatrix San Diego Data Center US-West 01","verified_operator":"ScaleMatrix","verified_owner":"GI Partners","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"San Diego Gas & Electric (SDG&E)","tax_incentives":"","natural_hazard_zone":""},"1060":{"description":"MDC San Diego (SDG1) is a carrier-neutral colocation data center operated by MDC Data Centers at 7014 Manya Circle, San Diego, CA 92154, positioned as the closest carrier-neutral facility to the U.S.–Mexico border.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":7920,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"No anchor tenant is publicly disclosed. Named ecosystem participants include Vívaro Telecom (launch partner) and Uniti Wholesale (expanded into MDC San Diego in Oct 2025).","verified_name":"MDC San Diego - SDG1","verified_operator":"MDC Data Centers","verified_owner":"","cooling_type":"air-cooled","tier_level":"Designed to Tier III standards","fiber_providers":"Carrier-neutral; Uniti Wholesale; Vív·aro Telecom (formerly Marcatel); cross-border connectivity to Mexican carriers via international fiber crossings","num_buildings":1,"campus_acres":0,"utility_provider":"San Diego Gas & Electric (SDG&E)","tax_incentives":"City of San Diego Business Cooperation Program (general sales/use tax rebates); no facility-specific incentives identified","natural_hazard_zone":"Minor flood risk area (Otay Mesa West); seismically active region"},"1061":{"description":"Fiber Alley – 8915 Complex Drive is a carrier‑neutral enterprise colocation and telecom data center at 8915 Complex Dr in San Diego, operated by CARI.net (also known as Fiber Alley Data Centers), offering colocation and managed/bare‑metal with robust BGP connectivity.","verified_status":"operational","power_capacity_mw":1,"total_sqft":3659,"year_online":"1997","construction_update":"","recent_news":"","notable_tenants":"Shodan; Censys; Rapid7; Shadowserver; San Diego State University (SDSU); MessageGears; Doctible","verified_name":"Fiber Alley - 8915 Complex Drive","verified_operator":"CARI.net","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; 14+ Tier-1 and Tier-2 carriers on-net; Cogent CNDC present at 8915 Complex Drive","num_buildings":1,"campus_acres":0,"utility_provider":"San Diego Gas & Electric (SDG&E)","tax_incentives":"","natural_hazard_zone":"Seismic risk per City Seismic Safety Study; inland location with lower flood exposure; outside Very High Fire Hazard Severity Zones (city-mapped)"},"1062":{"description":"Fiber Alley 8917 is a carrier-neutral colocation/data center operated by Fiber Alley Data Centers at 8917 Complex Dr, San Diego, CA 92123; directory listings indicate it is operational with a reported 3.0 MW power capacity.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fiber Alley 8917","verified_operator":"Fiber Alley Datacenters","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent Communications on-net","num_buildings":0,"campus_acres":0,"utility_provider":"San Diego Gas & Electric (SDG&E)","tax_incentives":"No facility-specific incentive identified; general City of San Diego programs like the Partial Sales Tax Exemption exist but eligibility for this facility is unconfirmed.","natural_hazard_zone":"FEMA Flood Zone X (low risk); local seismic hazard per City of San Diego Seismic Safety Study."},"1063":{"description":"Carrier-neutral telecom/colocation data center operated by Lumen at 8929 Aero Dr, San Diego—listed as Lumen San Diego 1/3—with 52,299 sq ft total, 26,631 sq ft of colo space, and redundant power (generator/UPS, N+1 HVAC).","verified_status":"operational","power_capacity_mw":0,"total_sqft":52299,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen San Diego 1 (alias: Lumen/Level 3 San Diego 3) — 8929 Aero Drive, San Diego, CA 92123","verified_operator":"Lumen Technologies (Lumen; formerly CenturyLink/Level 3)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent present","num_buildings":1,"campus_acres":0,"utility_provider":"San Diego Gas & Electric (SDG&E)","tax_incentives":"","natural_hazard_zone":"Regional seismic risk (Southern California); telecom equipment located above grade for flood protection."},"1064":{"description":"AIS Fiber Alley (FADC 2) is a colocation data center at 8939 Complex Drive in San Diego, operated by LightEdge following its 2022 acquisition of NFINIT (formerly AIS). DataCenterHawk lists 42,998 total SF and 303 kW of critical power, and Cogent lists the site as a service location.","verified_status":"operational","power_capacity_mw":0.303,"total_sqft":42998,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No anchor/end-user tenants were publicly disclosed. Carrier presence includes Cogent Communications (on-net/service location at this address).","verified_name":"LightEdge FADC2","verified_operator":"LightEdge","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent on-net","num_buildings":3,"campus_acres":0,"utility_provider":"San Diego Gas & Electric (SDG&E)","tax_incentives":"","natural_hazard_zone":""},"1065":{"description":"i2B Networks operates a colocation data center on Complex Drive in San Diego’s “Fiber Alley,” featuring over 11,000 sq ft and redundant power infrastructure. Third‑party listings indicate the active site is 8830 Complex Drive (SAN02), with legacy references to 8971 Complex Drive (SAN01).","verified_status":"operational","power_capacity_mw":1.25,"total_sqft":11000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"I2B Networks – San Diego Data Center (SAN02)","verified_operator":"I2B Networks, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent","num_buildings":0,"campus_acres":0,"utility_provider":"San Diego Gas & Electric (SDG&E)","tax_incentives":"","natural_hazard_zone":""},"1066":{"description":"LightEdge’s San Diego Data Center #1 (formerly AIS/NFINIT ‘Lightwave’ LWDC) is an operational, carrier‑neutral colocation facility at 9305 Lightwave Ave, San Diego, featuring 2N redundant power and a dedicated central plant across an 80,000‑sq‑ft build.","verified_status":"operational","power_capacity_mw":9.1,"total_sqft":80000,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"M5 Hosting operates at the Lightwave Avenue data center (9305 Lightwave Ave) and continues to list this 80,000 sq ft facility; LightEdge’s datasheet notes the site was originally built to support a large defense contractor (not named).","verified_name":"LightEdge Lightwave Data Center (LWDC)","verified_operator":"LightEdge","verified_owner":"Hines","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; AT&T, Cogent, Comcast, Cox, Crown Castle, GTT, Lumen/Level 3, NTT, Spectrum, TelePacific, TransTelco, Verizon, Wilcon, XO, Zayo","num_buildings":1,"campus_acres":10,"utility_provider":"SDG&E","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (minimal flood hazard); Southern California seismic zone"},"1067":{"description":"LightEdge – San Diego II is an operational colocation data center at 9725 Scranton Rd in San Diego, operated by LightEdge. The site is tied to the former NFINIT/AIS footprint that LightEdge acquired in 2022.","verified_status":"operational","power_capacity_mw":2,"total_sqft":51000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"LightEdge San Diego II Data Center","verified_operator":"LightEdge","verified_owner":"Alexandria Real Estate Equities, Inc. (ARE)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"San Diego Gas & Electric (SDG&E)","tax_incentives":"","natural_hazard_zone":"low risk"},"1068":{"description":"Cogent Data Center - San Diego 1 is a small Cogent Communications colocation site located inside the 525 B Street office tower in downtown San Diego. Cogent lists 525 B Street as a service location (COB/CDC), and independent directories identify the site as “San Diego 1” at this address.","verified_status":"operational","power_capacity_mw":0.1,"total_sqft":5307,"year_online":"unknown","construction_update":"","recent_news":"No facility-specific news in the last 6 months; on May 27, 2026, Cogent agreed to sell 10 other U.S. data centers to I Squared Capital (closing expected in Q3 2026).","notable_tenants":"","verified_name":"Cogent Data Center - San Diego 1","verified_operator":"Cogent Communications, Inc.","verified_owner":"JAJ Pacific Investment, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications (on-net)","num_buildings":1,"campus_acres":0,"utility_provider":"San Diego Gas & Electric (SDG&E)","tax_incentives":"","natural_hazard_zone":"Seismic exposure (Rose Canyon fault); FEMA flood zone not specified"},"1069":{"description":"Cogent Data Center - San Diego 2 is a Cogent Communications colocation/telecom facility at 9530 Towne Centre Drive in San Diego, offering data hall space with customer cages and a total footprint of about 34,612 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":34612,"year_online":"unknown","construction_update":"","recent_news":"No facility-specific developments in the last six months; on May 26, 2026, Cogent announced a sale of 10 data centers in other cities (San Diego not listed).","notable_tenants":"","verified_name":"Cogent Data Center - San Diego 2","verified_operator":"Cogent Communications, Inc.","verified_owner":"Irvine Company","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Cogent, AT&T, Level 3","num_buildings":1,"campus_acres":5.82,"utility_provider":"San Diego Gas & Electric (SDG&E)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X; Southern California seismic exposure"},"1070":{"description":"Cogent Communications operates an operational telecom/colocation data center at 1402 K St in downtown San Diego (“San Diego 3”). It offers secure, flexible colocation with 19,820 sq ft, 42U cabinets, UPS/backup power features, and 24/7/365 security.","verified_status":"operational","power_capacity_mw":0,"total_sqft":19820,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - San Diego 3","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications","num_buildings":0,"campus_acres":0,"utility_provider":"San Diego Gas & Electric (SDG&E)","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (0.2% annual chance); urban San Diego seismic exposure per City Seismic Safety Study"},"1071":{"description":"Digital Realty’s SFO10 at 200 Paul Avenue in San Francisco is an operational, carrier‑neutral colocation and interconnection facility operated by Digital Realty. It serves as a high‑density West Coast interconnection point with connectivity to leading domestic and Asia‑Pacific carriers, housed in a retrofit five‑level building of about 482,000 sq ft.","verified_status":"operational","power_capacity_mw":44,"total_sqft":482000,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"Anchor colocation customers are not publicly disclosed. Publicly documented presences include UnitedLayer (200 Paul Ave, Suite 110), the San Francisco Metropolitan Internet Exchange (SFMIX) at Suite 303, and a broad interconnection ecosystem with 44 local networks listed in PeeringDB at the facility.","verified_name":"Digital Realty SFO10 - 200 Paul Avenue","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (outside the 100- and 500-year floodplains); Seismic Zone 4"},"1072":{"description":"Digital Realty SFO12 is an operational, carrier-neutral colocation data center at 365 Main Street in San Francisco, operated by Digital Realty. Originally built as a military tank assembly plant, it has been upgraded for robust security and resilience.","verified_status":"operational","power_capacity_mw":15,"total_sqft":227000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No operator-disclosed anchor tenants. Notable interconnection presences at 365 Main include SFMIX (San Francisco Metropolitan Internet Exchange), AMS-IX Bay Area, and cloud connectivity platforms Megaport and PacketFabric.","verified_name":"Digital Realty SFO12 / 365 Main Street","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; approximately 28 providers; PacketFabric and Megaport available","num_buildings":1,"campus_acres":0.947,"utility_provider":"PG&E","tax_incentives":"","natural_hazard_zone":"Outside 500-year flood plain; Seismic Zone 4"},"1073":{"description":"Equinix SV1 is an operational, carrier‑neutral Equinix IBX colocation data center on the Equinix Great Oaks campus in San Jose, California, offering direct connections to major networks and tier‑1 cloud providers via Equinix Fabric. Equinix lists 82,850 square feet of colocation space for SV1.","verified_status":"operational","power_capacity_mw":0,"total_sqft":133500,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix SV1","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral, 135+ providers including AT&T, BT, China Telecom, Seaborn Networks, Hurricane Electric, Zayo","num_buildings":1,"campus_acres":3.01,"utility_provider":"Pacific Gas and Electric (PG&E)","tax_incentives":"","natural_hazard_zone":"Seismic zone exposure (San Jose/Bay Area); flood risk not in a mapped Special Flood Hazard Area per general city resources"},"1074":{"description":"Equinix SV3 is an operational Equinix IBX carrier-neutral colocation data center at 1735 Lundy Avenue in San Jose serving the Silicon Valley interconnection market.","verified_status":"operational","power_capacity_mw":4.6,"total_sqft":103420,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix SV3 (Silicon Valley SV3 IBX Data Center)","verified_operator":"Equinix","verified_owner":"Invesco Real Estate / Invesco Advisers","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; examples include Tata Communications, Cogent Communications, Telia Sonera","num_buildings":1,"campus_acres":0,"utility_provider":"PG&E (delivery); San José Clean Energy (generation)","tax_incentives":"","natural_hazard_zone":"Above 500-year base flood elevation; seismic considerations noted"},"1075":{"description":"Equinix SV11 is an operational Equinix IBX/carrier-neutral colocation data center at 5 Great Oaks Boulevard in San Jose, offering 121,930 ft² of colocation space and campus cross-connectivity to SV1 and SV5. Multiple directories list a total facility footprint of 193,000 ft², while no SV11-only total MW power capacity is publicly stated.","verified_status":"operational","power_capacity_mw":0,"total_sqft":193000,"year_online":"2021","construction_update":"","recent_news":"","notable_tenants":"No anchor tenant/customer roster is publicly disclosed. Publicly identified items include availability of AWS Direct Connect and Microsoft Azure ExpressRoute at SV11, and a reported NVIDIA DGX SuperPOD based in SV11.","verified_name":"Equinix SV11 (Silicon Valley SV11)","verified_operator":"Equinix","verified_owner":"Equinix","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":11.5,"utility_provider":"Pacific Gas and Electric Co. (PG&E)","tax_incentives":"","natural_hazard_zone":""},"1076":{"description":"Evocative SJC7 is an operational colocation data center operated by Evocative at 534 Stockton Ave, San Jose, CA. It serves Silicon Valley customers and is marketed as a reliable, high-performance facility.","verified_status":"operational","power_capacity_mw":0.6,"total_sqft":21000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Evocative San Jose (SJC7)","verified_operator":"Evocative","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; on-net providers include AT&T, CenturyLink, Cogent Communications, Level 3 Communications, Limelight, Verizon.","num_buildings":1,"campus_acres":0,"utility_provider":"PG&E","tax_incentives":"","natural_hazard_zone":"Seismic/liquefaction risk in the Northern Santa Clara Valley; address-specific FEMA flood zone not determined."},"1077":{"description":"CoreSite SV1 is an operational colocation and interconnection data center at 55 S. Market St. in downtown San Jose, operated by CoreSite. It serves as an interconnection hub with access to the Open Cloud Exchange, multiple internet exchanges, and more than 65 networks.","verified_status":"operational","power_capacity_mw":0,"total_sqft":309000,"year_online":"unknown","construction_update":"","recent_news":"Jan 19, 2026: BIG Fiber completed a 6,000-foot dark-fiber buildout into CoreSite SV1 at 55 S. Market St., adding a second building entrance and tying SV1 into its regional dark-fiber ring.","notable_tenants":"","verified_name":"CoreSite SV1 - San Jose Data Center","verified_operator":"CoreSite","verified_owner":"American Tower Corporation (via CoreSite)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; more than 65 networks","num_buildings":1,"campus_acres":0.71,"utility_provider":"PG&E delivery; San José Clean Energy generation","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone D; within California Official Seismic Hazard Zone Map area (San Jose West)"},"1078":{"description":"Planned two-building Goodman Group data center campus at 350 & 370 W Trimble Rd in San Jose (Goodman Innovation Centre San Jose), totaling about 414,000 sq ft with up to 97.3 MW of available power by 2028.","verified_status":"planned","power_capacity_mw":97.3,"total_sqft":414000,"year_online":"2028","construction_update":"Mar 12, 2026: Local report noted Lumileds’ shutdown at the site; Oct 2025: Goodman acquired the ~46-acre property and planned two data centers totaling ~414,000 sq ft. No public construction-start milestone found.","recent_news":"Mar 12, 2026: Local report noted Lumileds’ shutdown at the site and Goodman’s plan for an innovation campus including data centers, signaling site transition for redevelopment.","notable_tenants":"","verified_name":"Goodman Innovation Center San Jose","verified_operator":"Goodman Group","verified_owner":"Goodman Group","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":46,"utility_provider":"PG&E (served via San José Clean Energy CCA)","tax_incentives":"No project-specific tax incentives identified.","natural_hazard_zone":""},"1079":{"description":"Impulse Santa Barbara is a colocation data center at 104 W Anapamu St in Santa Barbara, historically operated by Impulse Advanced Communications (rebranded as Aseva in 2025) and offering colocation services with redundant power, cooling, and security.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"June 3, 2026: Aseva reported a UPS maintenance event at its Santa Barbara data center that was extended by 8 hours and completed the same evening.","notable_tenants":"","verified_name":"Impulse Santa Barbara","verified_operator":"Aseva (formerly Impulse Advanced Communications)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison","tax_incentives":"","natural_hazard_zone":"FEMA flood hazard mapping applies (maps being updated); regional seismic risk in Santa Barbara area; parcel-specific zone not determined"},"1080":{"description":"Evocative SJC14 is an operational colocation data center suite at 1525 Comstock Street, Suite 119, Santa Clara, operated by Evocative; it resides within the 1525 Comstock Street (Digital Realty SJC16) facility and is listed at 14,800 sq ft with access to 9.0 MW of power.","verified_status":"operational","power_capacity_mw":9,"total_sqft":14800,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Evocative SJC14","verified_operator":"Evocative","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"Tier III design","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":2.19,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"California State Seismic Hazard Zone (liquefaction); outside FEMA 100-year floodplain"},"1081":{"description":"EdgeConneX SVC01 is EdgeConneX’s carrier‑neutral colocation data center at 1700 Richard Avenue in Santa Clara, providing edge capacity for regional connectivity and cloud access.","verified_status":"operational","power_capacity_mw":3.5,"total_sqft":19800,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX SVC01 (EDCSVC01) – Santa Clara","verified_operator":"EdgeConneX","verified_owner":"EdgeConneX","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; known on-net providers include Comcast Business and WhiteSky","num_buildings":2,"campus_acres":12.6,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Seismic/liquefaction hazard region (Northern Santa Clara Valley); FEMA flood zone not determined from cited excerpts"},"1082":{"description":"CoreSite SV5 is an operational CoreSite colocation data center at 2900 Stender Way in Santa Clara, part of the company’s Silicon Valley campus, with AWS Direct Connect available.","verified_status":"operational","power_capacity_mw":45,"total_sqft":101430,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CoreSite SV5","verified_operator":"CoreSite","verified_owner":"CoreSite (subsidiary of American Tower Corporation)","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral; AWS Direct Connect available; campus peering via Any2Exchange, AMS-IX Bay Area, and SFMIX","num_buildings":1,"campus_acres":0,"utility_provider":"Silicon Valley Power","tax_incentives":"No SV5-specific tax incentives found; Silicon Valley Power offers energy-efficiency rebates.","natural_hazard_zone":"High seismic/liquefaction risk; potential flood exposure north of Hwy 101 (FEMA zone not confirmed)"},"1083":{"description":"QTS Santa Clara I is an operational QTS Data Centers colocation campus at 2805/2807 Mission College Blvd in Santa Clara, offering a multi‑building facility in the heart of Silicon Valley with Energy Star and LEED Silver certifications.","verified_status":"operational","power_capacity_mw":7.5,"total_sqft":135000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Santa Clara (SJC1/SJC2)","verified_operator":"QTS Data Centers","verified_owner":"Blackstone-backed QTS Realty Trust (Blackstone Infrastructure Partners and Blackstone Property Partners/BREIT)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Astound Communications, Level 3/Lumen, Megaport; BIG Fiber (dark fiber)","num_buildings":2,"campus_acres":4,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":""},"1084":{"description":"Lumen Santa Clara 1 (formerly Level 3) is an operational colocation data center at 3045 Raymond Street, Santa Clara, CA, with documented Lumen/Level 3 association rather than Telehouse.","verified_status":"operational","power_capacity_mw":24,"total_sqft":50000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Santa Clara 1 (Level 3) Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen/Level 3; carrier-neutral (diverse fiber options)","num_buildings":1,"campus_acres":0,"utility_provider":"Silicon Valley Power","tax_incentives":"Silicon Valley Power Data Center Rebate — up to $1,500,000 per project/customer-year (Program Year 2025–2026).","natural_hazard_zone":"Outside 100-year floodplain (FEMA Zone X indicated); Bay Area seismic risk."},"1085":{"description":"Evocative SJC3 is an operational carrier-neutral colocation data center at 3080 Raymond St, Santa Clara, CA, operated by Evocative. Public listings indicate a 15,000 sq ft facility with robust connectivity options.","verified_status":"operational","power_capacity_mw":3,"total_sqft":15000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Evocative Santa Clara Data Center (SJC3)","verified_operator":"Evocative","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Silicon Valley Power","tax_incentives":"","natural_hazard_zone":"Seismic and liquefaction hazard; verify parcel-specific FEMA SFHA flood status"},"1086":{"description":"Prime Silicon Valley SJC02 is Prime Data Centers’ single-tenant, wholesale powered-shell facility at 1111 Comstock St in Santa Clara, offering 9 MW of capacity across roughly 123,000 sq ft.","verified_status":"operational","power_capacity_mw":9,"total_sqft":123000,"year_online":"2021","construction_update":"","recent_news":"","notable_tenants":"No current tenant/customer is publicly named by Prime; the listing shows SJC02 is leased but does not identify the lessee. Historical: Cyxtera leased the entire facility in June 2021 but rejected that lease in 2023 during bankruptcy.","verified_name":"Prime Data Centers SJC02 (1111 Comstock St, Santa Clara)","verified_operator":"Prime Data Centers","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral; Bandwidth IG","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1087":{"description":"Prime Silicon Valley SJC03 is Prime Data Centers’ wholesale/enterprise data center development at 2215 Martin in Santa Clara, designed for single- or multi-tenant use. It is a 9 MW, roughly 80,000 sq ft, three-story project with construction launched on Nov 1, 2022.","verified_status":"under-construction","power_capacity_mw":9,"total_sqft":79356,"year_online":"unknown","construction_update":"Nov 1, 2022: Construction launched for SJC03 (about 80,000 sq ft, 9 MW); Phase 1 was then targeted for completion in H2 2023.","recent_news":"","notable_tenants":"","verified_name":"Prime Santa Clara SJC03","verified_operator":"Prime Data Centers","verified_owner":"Prime Data Centers","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.68,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1088":{"description":"StratCap Data Centers operates a purpose-built data center/network switch facility at 3205 Bassett St, Santa Clara, CA, acquired in 2023 and spanning around 33,250 sq ft. The site is 100% leased to an unnamed “top‑tier” wireless carrier and serves as a network switch.","verified_status":"operational","power_capacity_mw":0,"total_sqft":33250,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Undisclosed top-tier wireless carrier","verified_name":"StratCap: 3205 Bassett","verified_operator":"StratCap Data Centers","verified_owner":"Basset California LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Single-tenant network switch facility leased to a top-tier wireless carrier; not carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Silicon Valley Power (SVP)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone C/X (area of minimal flood hazard)"},"1089":{"description":"Cogent Data Center - Stockton is an operational Cogent Communications colocation/telecom facility at 3807 Coronado Ave, Stockton, CA, with published specs of about 6.8 MW and 55,601 sq ft. It is included in Cogent’s May 2026 agreement to sell ten data centers to an I Squared Capital–sponsored platform.","verified_status":"operational","power_capacity_mw":6.8,"total_sqft":55601,"year_online":"unknown","construction_update":"","recent_news":"May 26–27, 2026: Cogent announced a definitive agreement to sell a 10-facility data center portfolio (including Stockton) to an I Squared Capital–sponsored platform for $225 million; closing expected on/after June 12, 2026 subject to approvals, with I Squared guiding to Q3 2026 close.","notable_tenants":"","verified_name":"Cogent Data Center - Stockton","verified_operator":"Cogent Communications","verified_owner":"Cogent Fiber, LLC (Cogent Communications Holdings, Inc.) — pending sale to an I Squared Capital–sponsored entity (no close confirmed as of 2026-06-29)","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications Tier 1 fiber backbone","num_buildings":1,"campus_acres":0,"utility_provider":"Pacific Gas and Electric Company (PG&E)","tax_incentives":"","natural_hazard_zone":"unknown"},"1090":{"description":"Rowan Matterhorn is a planned wholesale/build-to-suit hyperscale data center site operated by Rowan Digital Infrastructure at 19900 Byron Rd, Tracy, California. Public listings identify the site and operator, but specifications are not disclosed.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Jan 25, 2023: Caddlance posted a visualization/design note for “Data Center Rowan-Matterhorn” (infrastructure and utilities). No evidence of construction start, permits, or 2026 facility-specific updates was found.","recent_news":"","notable_tenants":"","verified_name":"Rowan Matterhorn","verified_operator":"Rowan Digital Infrastructure","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1091":{"description":"Got.Net Santa Cruz is a colocation facility at 303 Potrero St, Suite 40‑E, Santa Cruz, CA, operated by Got.Net. It offers server colocation and related services, with public listings confirming the address and services but not disclosing detailed facility specs.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Got.Net Santa Cruz Data Center","verified_operator":"Got.Net","verified_owner":"LeMarCo","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Pacific Gas & Electric (PG&E)","tax_incentives":"","natural_hazard_zone":"Seismic zone; flood and tsunami hazard areas are mapped in Santa Cruz County (exact FEMA zone for 303 Potrero St undetermined)."},"1092":{"description":"H5 Data Centers operates a 44,000‑sq‑ft, carrier‑neutral colocation facility at 3610 Sacramento Dr. in San Luis Obispo, notable for its near‑downtown location and direct backhaul access to US‑Asia submarine‑cable infrastructure.","verified_status":"operational","power_capacity_mw":0,"total_sqft":44000,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"No anchor tenant publicly named; third-party listings indicate the site is fully leased to an unnamed international carrier.","verified_name":"H5 Data Centers San Luis Obispo Data Center","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1,"utility_provider":"Pacific Gas & Electric (PG&E)","tax_incentives":"","natural_hazard_zone":"Seismic exposure typical of coastal/central California; FEMA flood-zone designation not confirmed"},"1093":{"description":"China Mobile San Jose is a China Mobile International colocation data center at 6320–6340 San Ignacio Ave., San Jose, CA. It is described as CMI’s North American flagship and was developed in two phases.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"April 9, 2026: The FCC proposed rules seeking comment on whether to prohibit interconnection with facilities (including data centers) owned by covered entities, potentially affecting China Mobile’s U.S. sites; this is a proposal, not a final order.","notable_tenants":"","verified_name":"China Mobile San Jose","verified_operator":"China Mobile International","verified_owner":"China Mobile International","cooling_type":"unknown","tier_level":"Tier III (design claim)","fiber_providers":"","num_buildings":2,"campus_acres":7.54,"utility_provider":"Pacific Gas and Electric Company (PG&E)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone D (possible but undetermined flood hazards)"},"1094":{"description":"Lumen Bakersfield 2 is an operational colocation data center operated by Lumen Technologies at 1430 Truxtun Ave, Bakersfield, CA, with approximately 4,917 sq ft of space. The site is noted as a former tw telecom facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4917,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Bakersfield 2 Data Center","verified_operator":"Lumen Technologies","verified_owner":"Erwin Property LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (on-net)","num_buildings":1,"campus_acres":0,"utility_provider":"Southern California Edison (SCE)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (regional indication; parcel-specific panel not confirmed); elevated regional seismic risk"},"1095":{"description":"A colocation data center at 9725 Scranton Road (San Diego Tech Center) operated by LightEdge after acquiring NFINIT/AIS, with M5 Hosting providing services from the site. The facility offers a 100,000‑sq‑ft footprint and enterprise power/reliability features.","verified_status":"operational","power_capacity_mw":2.9,"total_sqft":100000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"M5 Hosting SDTC Data Center (San Diego Tech Center)","verified_operator":"M5 Hosting","verified_owner":"Alexandria Real Estate Equities","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"San Diego Gas & Electric (SDG&E)","tax_incentives":"","natural_hazard_zone":"Seismic zone; FEMA flood zone undetermined"},"1096":{"description":"5C Data Centers PHX01 is a hyperscale data center under development at 2802 W Palm Lane in Phoenix, operated by 5C (following Hypertec Cloud’s 2025 acquisition of 5C Data Centers). The first Phoenix facility is planned at about 140,000 sq ft with 20 MW of capacity and was originally slated to go live in 2025.","verified_status":"under-construction","power_capacity_mw":20,"total_sqft":140000,"year_online":"unknown","construction_update":"As of 2026-06-29, PHX01 continues to be listed as being built, with GMP providing owner-side construction management and modular electrical/IT infrastructure; no public revision to the target commissioning date was found.","recent_news":"","notable_tenants":"","verified_name":"5C Group PHX01","verified_operator":"5C Group (5C Data Centers)","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":7.55,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X; 0.2% annual chance flood hazard; not SFHA"},"1097":{"description":"Aligned PHX08 is a colocation data center development by Aligned Data Centers at 3202 W Behrend Dr in Phoenix, AZ, identified by site code PHX08.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Mar 25, 2026: Phoenix City Council formal agenda listed an item for the Behrend parcels (including 3202 W Behrend Dr) with Aligned as owner, signaling ongoing city actions connected to the project.","recent_news":"Mar 25, 2026: Phoenix City Council agenda listed an item covering the Behrend parcels including 3202 W Behrend Dr with Aligned Data Centers as owner, reflecting ongoing municipal action tied to the development.","notable_tenants":"","verified_name":"Aligned: PHX-08 (PHX08), 3202 W Behrend Dr, Phoenix, AZ 85027","verified_operator":"Aligned Data Centers","verified_owner":"Aligned Data Centers (Behrend) PropCo LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Arizona’s data center incentives are available at Aligned’s Phoenix site, including sales/use tax exemptions for qualified data center equipment under the state program; Aligned notes these can generate substantial savings for colocation clients.","natural_hazard_zone":"FEMA Flood Zone C/X (area of minimal flood hazard)"},"1098":{"description":"Aligned PHX09 is a planned colocation/build-to-scale data center by Aligned Data Centers at 3151 W Behrend Dr in Phoenix, AZ, as part of the company’s Phoenix expansion. Public listings mark the site as a planned future facility at that address.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Latest known milestone: Aligned acquired adjacent buildings at 3151 and 3202 W Behrend Dr in September 2022; Aligned announced two new Phoenix land acquisitions on Oct 12, 2022 for expansion.","recent_news":"","notable_tenants":"","verified_name":"Aligned: PHX-09","verified_operator":"Aligned Data Centers","verified_owner":"Aligned Data Centers (Behrend) Propco, LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona data-center incentives available to clients at Aligned’s Phoenix data centers, including sales-tax exemptions on qualified data-center equipment and related local programs.","natural_hazard_zone":"low risk"},"1099":{"description":"Verizon 3930 Watkins is a Verizon Enterprise telecom/colocation data center at 3930 East Watkins Street (1st floor) in Phoenix, AZ, operated by Verizon. The facility is documented as a former XO Communications site at the same address following Verizon’s acquisition of XO’s fiber business.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon: 3930 Watkins","verified_operator":"Verizon","verified_owner":"Meritex","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; Verizon (XO Communications) backbone","num_buildings":1,"campus_acres":7.96,"utility_provider":"","tax_incentives":"Arizona Computer Data Center (CDC) Program: TPT and Use Tax exemptions on qualifying CDC equipment for certified data centers; no facility-specific certification found.","natural_hazard_zone":"FEMA Flood Zone X; Seismic Zone 1 (low risk)"},"1100":{"description":"EdgeConneX PHX01 (EDCPHX01) is an operational edge colocation data center operated by EdgeConneX at 3011 S. 52nd St, Suite 107, Tempe, serving the Phoenix market; it features a 79,200 sq ft building with 17,300 sq ft of raised floor and 4.5 MW (N+1) power scalable to 6.5 MW, with cloud on-ramp connectivity such as AWS Direct Connect.","verified_status":"operational","power_capacity_mw":4.5,"total_sqft":79200,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX PHX01 — 3011 S 52nd St, Suite 107, Tempe, AZ 85282","verified_operator":"EdgeConneX","verified_owner":"3011 South 52nd Street, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":2.04,"utility_provider":"","tax_incentives":"Arizona Computer Data Center (CDC) Program tax exemptions for qualifying data center equipment; no PHX01-specific certification identified.","natural_hazard_zone":"low risk"},"1101":{"description":"Centersquare PHX2-A (formerly Cyxtera PHX2) is a carrier‑neutral colocation data center at 2055 E Technology Cir, Tempe, AZ, offering 6.8 MW utility power, about 34,000 sq ft of raised floor within a 76,350 sq ft, two‑story building.","verified_status":"operational","power_capacity_mw":6.8,"total_sqft":76350,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare Phoenix PHX2-A","verified_operator":"Centersquare Data Centers","verified_owner":"Mapletree Industrial Trust (MIT) and Mapletree Investments (MIPL) – Mapletree Rosewood Data Centre Trust JV","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; 10+ lit carriers","num_buildings":1,"campus_acres":9.08,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center Program (state TPT/use-tax exemptions) – facility-specific certification not found","natural_hazard_zone":"FEMA Flood Zone X; Seismic Zone 1"},"1102":{"description":"Csquare (formerly Centersquare) operates an operational colocation facility at 1301 West University Drive in Mesa, AZ, currently branded as the Mesa/PHX3 site, with 17.3 MW of utility power. Older directories still list it as PHX1‑Mesa and cite a 154,158 sq ft building footprint.","verified_status":"operational","power_capacity_mw":17.3,"total_sqft":154158,"year_online":"1985","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare Mesa PHX3 Data Center","verified_operator":"Csquare","verified_owner":"Evoque Data Center Solutions","cooling_type":"chilled water","tier_level":"Tier III-equivalent","fiber_providers":"carrier-neutral; providers include AT&T, CenturyLink/Lumen, Cogent, Cox, SRP Telecom, and Zayo","num_buildings":0,"campus_acres":0,"utility_provider":"Arizona Public Service","tax_incentives":"Arizona Computer Data Center Program: Transaction Privilege Tax (TPT) and Use Tax exemptions on qualifying purchases (if certified).","natural_hazard_zone":"Seismic Zone 1"},"1103":{"description":"Planned CyrusOne hyperscale data center campus in Mesa’s Elliot Road Technology Corridor, to be developed by C‑1 Mesa LLC/CyrusOne, featuring five two‑story buildings totaling roughly 1.43 million sq ft and including an on‑site SRP switchyard and CyrusOne-owned substation.","verified_status":"planned","power_capacity_mw":0,"total_sqft":1430000,"year_online":"unknown","construction_update":"Jul 22, 2025: Permit entry for “CyrusOne Mesa – Shell Building 1” (two-story shell data hall with adjacent office/storage/loading dock; partial interior data hall fit-out) at the Mesa campus.","recent_news":"","notable_tenants":"","verified_name":"CyrusOne Mesa","verified_operator":"CyrusOne","verified_owner":"C1-MESA LLC (CyrusOne affiliate); ultimate owner: CyrusOne, wholly owned by funds managed by KKR and Global Infrastructure Partners (GIP).","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; SRP redundant dark fiber in the Elliot Road Technology Corridor.","num_buildings":5,"campus_acres":62,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center Program provides Transaction Privilege Tax and Use Tax exemptions at state, county, and local levels for qualifying data centers.","natural_hazard_zone":"FEMA flood zone undetermined; drainage improvements along Elliot Road will discharge into the East Maricopa Floodway (EMF)."},"1104":{"description":"Google Mesa Campus (Project Red Hawk) is a Google-operated hyperscale data center campus at East Elliot Rd & S Sossaman Rd in Mesa, Arizona, using air-cooling and developed on roughly 187 acres with multiple phased buildings.","verified_status":"operational","power_capacity_mw":138,"total_sqft":750000,"year_online":"2025","construction_update":"May 17, 2026: Reported as moving forward with plans for a seven‑building campus and a private SRP power substation. Previously, Oct 16, 2025: Mesa board discussed Phase 3 design (two server halls and support rooms).","recent_news":"May 17, 2026: Local report said the project is moving forward, with plans for a seven‑building campus and a private power substation with Salt River Project.","notable_tenants":"","verified_name":"Google Mesa Campus (Project Red Hawk)","verified_operator":"Google","verified_owner":"Stone Applications LLC (Google affiliate)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Zayo, SRP, Cox, Lumen","num_buildings":3,"campus_acres":187,"utility_provider":"Salt River Project (SRP)","tax_incentives":"City-approved property tax break (~$16M) associated with a long-term city lease structure; eligibility for Arizona Computer Data Center Program (state/county/local TPT and Use Tax exemptions on qualifying data center equipment).","natural_hazard_zone":"Generally low flood hazard (outside SFHA in much of Mesa); nearby planning references FEMA Zone D (undetermined) and city drainage improvements; low seismic, no hurricane exposure."},"1105":{"description":"Novva Mesa is a planned hyperscale data center campus by Novva Data Centers in southeast Mesa, Arizona near S Ellsworth Rd & E Warner Rd, designed for up to 300 MW across a 160-acre site with five data halls and sustainability features like water-free cooling and rainfall capture.","verified_status":"planned","power_capacity_mw":300,"total_sqft":1300000,"year_online":"2026","construction_update":"Latest publicly reported milestones: project announced Aug 21, 2024; local reporting says the $3B Mesa campus “gets green light,” indicating approvals/entitlements are in place, with first phase slated for late 2026.","recent_news":"","notable_tenants":"","verified_name":"Novva Mesa Data Center Campus (Project Borealis)","verified_operator":"Novva Data Centers","verified_owner":"Novva Holdings, LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":160,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center (CDC) Program potentially applicable: Transaction Privilege Tax and Use Tax exemptions for qualifying purchases at certified data centers; no Novva-specific certification found.","natural_hazard_zone":""},"1106":{"description":"NTT Phoenix PH1 is an NTT DATA/NTT Global Data Centers colocation facility at 10256 E. Elliot Rd in Mesa, Arizona, offering 36 MW of critical IT load and 126,000 ft² of data-floor space on the Elliot Road Technology Corridor. It is part of NTT’s Phoenix campus.","verified_status":"operational","power_capacity_mw":36,"total_sqft":126000,"year_online":"2022","construction_update":"","recent_news":"Jan 14, 2026: Local coverage reported NTT Data Centers PH6 is to be built at 10256 E. Elliot Road in Mesa, described as a 195,000-square-foot data center.","notable_tenants":"","verified_name":"Phoenix PH1 Data Center","verified_operator":"NTT Global Data Centers Americas, Inc. (NTT DATA)","verified_owner":"NTT Global Data Centers Americas, Inc.","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":7,"campus_acres":101.68,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center Tax Relief (ARS 41-1519) with exemptions applicable to qualifying operators/tenants; benefits extended through 2033. Mesa’s Elliot Road Technology Corridor overlay offers a quick entitlement process and pro-development provisions.","natural_hazard_zone":"FEMA Flood Zone D (possible but undetermined hazards); Baxtel lists Flood Zone X and Seismic Zone 1 (low risk)."},"1107":{"description":"Compass Datacenters operates an operational hyperscale data center campus at 400 S Bullard Ave in Goodyear (Phoenix market), built for cloud and hyperscale workloads and publicly listed at 212 MW campus capacity.","verified_status":"operational","power_capacity_mw":212,"total_sqft":0,"year_online":"2021","construction_update":"Planning & Zoning activity at the campus address: filing P26-00102 for 400 S Bullard (Goodyear, AZ) is listed in 2026; related item P25-00283 for COMPASS DATACENTERS PHX IE LLC shows status Completed on Dec 17, 2025.","recent_news":"Feb 11, 2026: New ABS funding backed in part by Compass’s Phoenix assets (PHX1A–PHX1E), reported as 100% leased to four investment‑grade hyperscale tenants.","notable_tenants":"No named tenants are publicly disclosed. Multiple reports state the Phoenix assets are 100% leased to four unnamed investment-grade hyperscale tenants.","verified_name":"Compass Datacenters Phoenix (Goodyear) Campus (PHX I) — 400 S Bullard Avenue, Goodyear, AZ","verified_operator":"Compass Datacenters","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":8,"campus_acres":225,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona Computer Data Center (CDC) Program: TPT and use-tax exemptions on qualifying data center purchases for eligible owners/operators/tenants for up to 10 years (or up to 20 years for Sustainable Redevelopment Projects).","natural_hazard_zone":"low risk"},"1108":{"description":"DCX‑GYR1 is DCX’s six‑acre, move‑in‑ready high‑density colocation data center at 16422 W Commerce Dr in Goodyear, AZ, built for AI/ML and HPC workloads; it began operations in Oct 2022 with 6 MW and two suites online and can scale to ~12 MW across six private suites.","verified_status":"operational","power_capacity_mw":12,"total_sqft":29575,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DCX-GYR1 Data Center","verified_operator":"DCX","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III-equivalent (design), not shown as Uptime-certified","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Arizona Computer Data Center Program (TPT and use-tax exemptions for qualifying data center equipment).","natural_hazard_zone":""},"1109":{"description":"Microsoft Goodyear PHX70 is a Microsoft‑operated hyperscale/Azure data center at 3785 N Citrus Rd in Goodyear, Arizona (site code PHX70), part of Microsoft’s West US 3 region launched in 2021.","verified_status":"operational","power_capacity_mw":57,"total_sqft":264000,"year_online":"2021","construction_update":"2026: Permit activity at 3785 N CITRUS (Change of Contractor request for Civil Construction Permit E23-04231) and a June 2026 purchase of ~100 acres in Goodyear signal continued campus expansion, while PHX70 itself remains operational.","recent_news":"June 2026: Microsoft purchased about 100 acres in Goodyear for roughly $130–$131 million to expand its West Valley data center footprint.","notable_tenants":"","verified_name":"Microsoft Goodyear (PHX70)","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":250,"utility_provider":"","tax_incentives":"Arizona Computer Data Center (CDC) Program – Transaction Privilege Tax and Use Tax exemptions for qualifying CDC equipment (state/county/local levels).","natural_hazard_zone":""},"1110":{"description":"A hyperscale data center campus operated by Stream Data Centers at 2950 S. Litchfield Road in Goodyear, Arizona, designed on 157 acres to support up to 280 MW of critical load and about 2 million sq ft at full build.","verified_status":"operational","power_capacity_mw":280,"total_sqft":2000000,"year_online":"2021","construction_update":"Aug 21, 2024: PHX II topped out (second of seven planned facilities); expected operational in 2025.","recent_news":"Jan 6, 2026: Stream published a case study on partnering with the City of Goodyear to develop the PHXA campus.","notable_tenants":"","verified_name":"Stream PHXA (Phoenix I–VII) Hyperscale Campus","verified_operator":"Stream Data Centers","verified_owner":"Stream Data Centers; controlling owner is Apollo-managed funds (majority interest completed Nov. 3, 2025). Exact parcel-holding LLC not publicly determinable.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":7,"campus_acres":157,"utility_provider":"Arizona Public Service Electric Company (APS)","tax_incentives":"Arizona Computer Data Center (CDC) Program — TPT and Use Tax exemptions for qualifying data center equipment/purchases.","natural_hazard_zone":""},"1111":{"description":"QTS Avondale (also referred to by QTS as Phoenix 4) is a planned hyperscale data center campus operated by QTS Data Centers at the southwest corner of S Avondale Blvd and W Lower Buckeye Rd in Avondale, Arizona. QTS lists the site as in development and industry reports note the ~200-acre land acquisition after city approvals.","verified_status":"planned","power_capacity_mw":0,"total_sqft":3300000,"year_online":"unknown","construction_update":"Jul 8, 2025: City permit record PL-23-0205 shows an approved 212-acre, 8-building data center totaling ~3.3M sq ft. Earlier steps: Apr 17, 2024 Planning Commission hearing; May 6, 2024 City Council rezoning; Jul 2024 QTS acquired ~200 acres at Avondale Blvd & Lower Buckeye Rd.","recent_news":"","notable_tenants":"","verified_name":"QTS Avondale Data Center (Phoenix Avondale)","verified_operator":"QTS Data Centers","verified_owner":"QTS Realty Trust (a Blackstone affiliate)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":206,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center (CDC) incentive program is available; no site-specific certification found.","natural_hazard_zone":"low risk"},"1112":{"description":"Microsoft Azure West US 3–Arizona is a Microsoft-operated hyperscale data center at 12901 W Olive Ave in El Mirage, Arizona, forming part of the Azure West US 3 region launched on June 15, 2021. The profiled facility is operational and listed at 244,666 sq ft.","verified_status":"operational","power_capacity_mw":80.545,"total_sqft":244666,"year_online":"2021","construction_update":"Expansion ongoing: after filings to add a fourth El Mirage building (PHX83) alongside operational PHX80 and under‑construction PHX81/PHX82 (reported Nov 2024), new 2026 permits show a PHX83 canopy/laydown-area system on May 27, 2026 and PHX82 temporary power on May 1, 2026.","recent_news":"Active 2026 permits indicate ongoing campus expansion: PHX83 canopy/laydown-area permit filed May 27, 2026 and PHX82 temporary power filed May 1, 2026, at 12901 W Olive Ave.","notable_tenants":"","verified_name":"Microsoft Azure West US 3-Arizona","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":433,"utility_provider":"","tax_incentives":"Arizona Computer Data Center (CDC) Program — Transaction Privilege Tax (TPT) and Use Tax exemptions on qualifying data center equipment; program structured to encourage data center operation and expansion.","natural_hazard_zone":"FEMA Flood Zone X (area of minimal flood hazard)"},"1113":{"description":"MDC Nogales NOG1 is a carrier-neutral colocation and interconnection facility operated by MDC Data Centers at 81 N Sonoita Ave in Nogales, AZ, serving as a gateway for U.S.–Mexico cross‑border connectivity.","verified_status":"operational","power_capacity_mw":0.072,"total_sqft":2174,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"NGX Networks (AS398013); IENTC Telecom Mexico (AS28458); Zayo (AS6461). MDC markets the site as serving Tier-1 networks, leading CDNs, and Mexican carriers.","verified_name":"MDC Nogales - NOG1","verified_operator":"MDC Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.18,"utility_provider":"UniSource Energy Services","tax_incentives":"","natural_hazard_zone":"Downtown Nogales flood hazard area along/near Nogales Wash; exact FEMA zone at 81 N Sonoita Ave undetermined."},"1114":{"description":"Ark Data Centers operates an operational colocation data center in Tucson with roughly 38,000+ sq ft and hosts the Tucson Internet Exchange (TUSIX), enhancing local connectivity.","verified_status":"operational","power_capacity_mw":2.072,"total_sqft":38000,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Ark Data Centers Tucson","verified_operator":"Ark Data Centers","verified_owner":"INVOLTA LLC (Carlyle Group portfolio company Ark Data Centers)","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Tucson Electric Power (TEP)","tax_incentives":"Arizona Computer Data Center (CDC) Program: exemptions from transaction privilege tax and use tax for qualifying data center purchases; certain colocation tenants also qualify during the program’s certification period.","natural_hazard_zone":""},"1115":{"description":"FirstDigital Tucson is an operational telecom/colocation data center operated by FirstDigital at 3836 S Evans Blvd in Tucson, Arizona.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10570,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"FirstDigital Tucson","verified_operator":"FirstDigital Telecom","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"FirstDigital Telecom","num_buildings":1,"campus_acres":0.72,"utility_provider":"Tucson Electric Power (TEP)","tax_incentives":"Arizona Computer Data Center (CDC) Program – TPT and Use Tax exemptions for qualified data centers (facility enrollment not confirmed).","natural_hazard_zone":"FEMA Flood Zone X (low risk)"},"1116":{"description":"Login DC1 is an operational, carrier‑neutral colocation data center operated by Login, LLC at 4003 East Speedway Boulevard in Tucson, Arizona. Public listings confirm the site and colocation services offered by Login, LLC.","verified_status":"operational","power_capacity_mw":1.2,"total_sqft":0,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Login DC1","verified_operator":"Login, LLC","verified_owner":"AZ CENTRAL POINT EAST LLC","cooling_type":"air-cooled","tier_level":"Not Uptime-certified; N+1 power and N+1 cooling design","fiber_providers":"carrier-neutral; multiple-carrier, redundant fiber","num_buildings":1,"campus_acres":1.24,"utility_provider":"Tucson Electric Power (TEP)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (shaded) – moderate risk (500-year)"},"1117":{"description":"Login DC2 is an operational, carrier-neutral colocation data center operated by Login, LLC at 1855 N 6th Ave, Tucson, Arizona.","verified_status":"operational","power_capacity_mw":1,"total_sqft":17177,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Login DC2","verified_operator":"Login, LLC","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier 3 (directory-reported; Uptime Institute certification not found)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1,"utility_provider":"Tucson Electric Power (TEP)","tax_incentives":"","natural_hazard_zone":""},"1118":{"description":"Lumen Tucson (also listed as Lumen: Tucson 1) is a Lumen-operated network colocation/telecom data center at 135 N. 6th Avenue in Tucson, Arizona. Public directories list approximately 5,000 sq ft of total space with N+1 HVAC and standard backup power/connectivity features.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Tucson 1 Data Center","verified_operator":"Lumen","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (Level 3)","num_buildings":0,"campus_acres":0,"utility_provider":"Tucson Electric Power (TEP)","tax_incentives":"","natural_hazard_zone":""},"1119":{"description":"Simply Bits Vault is a small, operational colocation data center at 5225 N Sabino Canyon Rd in Tucson, operated by Simply Bits LLLC; it is listed as active with a 1,000 sq ft footprint and interconnection options via its ecosystem. Simply Bits became part of Ting/Tucows following the 2021 acquisition announcement.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1000,"year_online":"1995","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Simply Bits Vault","verified_operator":"Simply Bits LLC (a Ting company)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Tucson Electric Power (TEP)","tax_incentives":"","natural_hazard_zone":"Nearby Sabino Creek/Bear Canyon Wash flood-risk remapping area; parcel-specific FEMA zone not confirmed"},"1120":{"description":"TECfusions Tucson (Tucson Tech Data Center) is an operational, fully leased data center operated by TECfusions at 3701 E Columbia St in Tucson, Arizona, and owned by Aphorio Carter. TECfusions lists 16 MW IT capacity delivered quickly, while an official flyer lists 15 MW IT Load across a 213,000 sq ft facility.","verified_status":"operational","power_capacity_mw":16,"total_sqft":213000,"year_online":"2004","construction_update":"Jan 14, 2026: TECfusions/TensorWave announced an additional 10 MW at the Tucson site, scheduled for delivery in H1 2026.","recent_news":"Jan 14–15, 2026: TensorWave and TECfusions announced a further 10 MW at the Tucson site, on top of 14.4 MW delivered in 2025, with the new capacity scheduled for H1 2026.","notable_tenants":"TensorWave","verified_name":"Tucson Tech Data Center","verified_operator":"TECfusions","verified_owner":"Aphorio Carter (Carter Funds)","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Tucson Electric Power","tax_incentives":"TECfusions markets incentives at the site; Arizona’s Computer Data Center Program offers TPT/use‑tax exemptions to qualified data centers and tenants.","natural_hazard_zone":""},"1121":{"description":"Winsor Colocation (CompleteColo) is a colocation service offered by Winsor Consulting Group in Tucson and publicly tied to 3821 E Broadway Blvd. Directory specs of 2 MW/38,000+ sq ft appear conflated with Ark/Involta’s 1215 E Pennsylvania St facility, while 3821 E Broadway is a small 1970 office/retail building, so Winsor’s actual capacity and size are not publicly verifiable.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Winsor Colocation","verified_operator":"Winsor Consulting Group LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Tucson Electric Power (TEP)","tax_incentives":"Arizona Computer Data Center Program offers TPT/use-tax exemptions for certified computer data centers and qualified colocation tenants; no facility-specific certification found for this site.","natural_hazard_zone":""},"1122":{"description":"Flexential Phoenix - Deer Valley is an operational Flexential colocation data center at 1850 West Deer Valley Road in Phoenix, offering a 109,476‑sq‑ft footprint and 5.02 MW of critical-load capacity [1]. It opened in 2014 when ViaWest launched its first Arizona data center in Phoenix [2].","verified_status":"operational","power_capacity_mw":5.02,"total_sqft":109476,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Phoenix - Deer Valley","verified_operator":"Flexential","verified_owner":"GI Partners","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; AT&T, Lumen (CenturyLink), Zayo, Comcast, Arelion, Megaport","num_buildings":1,"campus_acres":0,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona Computer Data Center Program — TPT and Use Tax exemptions on qualifying data center equipment for up to 10 years (A.R.S. § 41-1519), available to eligible owners/operators/tenants.","natural_hazard_zone":"Low risk — Deer Valley neighborhood has minor flood risk over the next 30 years."},"1123":{"description":"Ark Data Centers’ Tucson site at 1215 East Pennsylvania Street is an operational colocation facility originally opened by Involta and now branded Ark, offering interconnection and hosting the Tucson Internet Exchange. It totals roughly 38,000 sq ft and earned ENERGY STAR certification in 2023.","verified_status":"operational","power_capacity_mw":1,"total_sqft":38000,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Ark Data Centers Tucson Data Center","verified_operator":"Ark Data Centers (formerly Involta)","verified_owner":"Ark Data Centers (formerly Involta); corporate parent: funds managed by Carlyle","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; multiple network carriers","num_buildings":1,"campus_acres":0,"utility_provider":"Tucson Electric Power (TEP)","tax_incentives":"Arizona Computer Data Center Program: qualified owners, operators, and qualified co-location tenants may receive transaction privilege tax and use-tax exemptions for up to 10 full calendar years; Ark markets the Tucson facility as supporting tax-advantaged deployments.","natural_hazard_zone":""},"1124":{"description":"TierPoint Waterbury (WAT) is an operational colocation data center at 108 Bank Street, 5th Floor, Waterbury, Connecticut. Listings indicate about 3,000 sq ft total (≈1,600 sq ft raised floor) and roughly 1.0 MW of power capacity.","verified_status":"operational","power_capacity_mw":1,"total_sqft":3000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Waterbury Data Center (WAT)","verified_operator":"TierPoint","verified_owner":"96-108 BANK STREET LLC","cooling_type":"air-cooled","tier_level":"Tier II equivalent (not Uptime-certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.15,"utility_provider":"Eversource","tax_incentives":"Connecticut’s Qualified Data Center program (PA 21-1) offers sales/use and property tax exemptions by agreement; the 96–108 Bank St building is noted as within an Information Technology Zone.","natural_hazard_zone":"Downtown Waterbury Historic District: major 30-year flood risk (First Street Foundation)"},"1125":{"description":"Omega Systems Stamford (also known via Cloudpath/Omega CT1) is an operational colocation data center at 26 Fahey Street, Stamford, CT, operated by Omega Systems following its 2024 acquisition of Amnet and Cloudpath. The site is a Megaport-enabled location, reflecting active connectivity.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Amnet Technology Solutions (sole tenant). No third-party anchor tenants publicly disclosed.","verified_name":"Omega Systems Stamford","verified_operator":"Omega Systems","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III (design standard)","fiber_providers":"Megaport (100G-enabled); dark fiber and direct connects available","num_buildings":1,"campus_acres":0.38,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE (1% annual chance floodplain)"},"1126":{"description":"Crown Castle Stamford 1 (aka HPN04) is a carrier-neutral telecom/edge colocation site at 1351 Washington Blvd in Stamford, CT, listed and operated under Crown Castle in industry directories. On May 1, 2026, Crown Castle closed the sale of its Fiber Solutions business to Zayo, which may impact associated fiber assets at this legacy Fibertech/Lightower location.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 1, 2026: Crown Castle closed the sale of its Fiber Solutions business to Zayo, potentially impacting fiber assets associated with this site.","notable_tenants":"","verified_name":"Crown Castle Stamford 1 (HPN04)","verified_operator":"Crown Castle","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Crown Castle fiber; Cogent on-net","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":""},"1127":{"description":"Lumen Stamford is a Lumen-operated telecom/colocation data center at 21 Harborview Avenue in Stamford, Connecticut, also listed as “Stamford 1”.","verified_status":"operational","power_capacity_mw":0,"total_sqft":23125,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No anchor tenants publicly disclosed; known network presence includes Cogent Communications.","verified_name":"Lumen Stamford 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent; Lumen/Level 3","num_buildings":0,"campus_acres":0,"utility_provider":"Eversource Energy","tax_incentives":"","natural_hazard_zone":"Seismic Zone 2"},"1128":{"description":"Trumbull Data Center (formerly Digital Realty HVN10), at 60 & 80 Merritt Boulevard in Trumbull, CT, is an operational multi-tenant colocation/disaster-recovery facility now owned by Aphorio Carter and operated/marketed by CogNOVUM (CNYC1). It totals about 227,552 sq ft with roughly 15 MW of utility power and is notable as a former Nasdaq campus.","verified_status":"operational","power_capacity_mw":15,"total_sqft":227552,"year_online":"unknown","construction_update":"Oct 2025: Town announcements and local coverage detail CogNOVUM as the new operator with a planned $200M multi-year upgrade program. May 6, 2026: 365 Data Centers and Aphorio Carter announced a ~200 MW AI-ready pipeline that includes Trumbull. No public building-permit or groundbreaking date identified.","recent_news":"May 2026: 365 Data Centers and Aphorio Carter announced a ~200 MW AI-ready data-center pipeline that includes Trumbull as a subsequent planned LOI site; local media reported the Trumbull facility is being considered for AI/high-density upgrades.","notable_tenants":"Historic/original user: Nasdaq. Current anchor tenants are not publicly disclosed.","verified_name":"Trumbull Data Center (HVN10)","verified_operator":"cogNOVUM","verified_owner":"AC Trumbull LLC / Aphorio Carter Critical Infrastructure Fund, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":8.26,"utility_provider":"United Illuminating (UI / Avangrid)","tax_incentives":"Connecticut Data Center Tax Incentive Program; Host Municipality Fee Agreement between Town of Trumbull and AC Trumbull LLC.","natural_hazard_zone":"Outside 500-year floodplain; seismic Zone 2A"},"1129":{"description":"Crown Castle Hartford (CT1) is a small carrier-class telecom colocation and interconnection facility at 960 Main Street, Hartford, CT, operated by Crown Castle, with public listings indicating about 2,125 sq ft of data center space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2125,"year_online":"unknown","construction_update":"","recent_news":"On May 1, 2026, Crown Castle closed the sale of its Fiber Solutions business to Zayo, a corporate change that could affect branding/operations for former Crown Castle Fiber facilities, including Hartford/960 Main.","notable_tenants":"","verified_name":"Crown Castle Hartford (960 Main)","verified_operator":"Crown Castle Inc.","verified_owner":"Olymbec Hartford Limited Partnership","cooling_type":"unknown","tier_level":"","fiber_providers":"Crown Castle Fiber (formerly Lightower)","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"Minimal flood risk (Flood Factor: Minimal); hurricane/wind exposure regionally; low-to-moderate seismic hazard."},"1130":{"description":"NWI Networks Data Center is an operational colocation facility operated by New Wave Industries’ NWI Networks at 135 Day Street, Newington, CT, offering secure colocation, dedicated servers, load balancing, and disaster recovery from its flagship Hartford-corridor site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"NWI Networks Data Center","verified_operator":"New Wave Industries, Inc. / NWI Networks","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.6,"utility_provider":"Eversource Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"1131":{"description":"Lumen Hartford 1 is an operational Lumen (legacy Level 3) telecom-colocation facility at 155 Locust Street, Hartford, CT, with about 11,000 sq ft total and approximately 1,436 sq ft of raised-floor/colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":11000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Hartford 1","verified_operator":"Lumen","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (Level 3)","num_buildings":0,"campus_acres":3.01,"utility_provider":"Eversource Energy","tax_incentives":"","natural_hazard_zone":"Nearby flood risk: Hartford map shows Locust Street and Connecticut River Flood Zone A (100‑year) with flood-protection structures; address-specific FEMA zone not confirmed."},"1132":{"description":"CVM Data Center is a colocation facility at 780 East Main Street, Branford, CT, operated by CVM (now part of Complete), offering co-location services with modern data center standards. The address and services are confirmed on CVM’s site and listings.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1700,"year_online":"unknown","construction_update":"","recent_news":"April 2026: CVM announced it is now part of Complete (brand transition).","notable_tenants":"","verified_name":"CVM Data Center","verified_operator":"CVM, Inc. (now part of Complete)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"United Illuminating (UI)","tax_incentives":"","natural_hazard_zone":""},"1133":{"description":"ChimeNet Data Center is an operational colocation/private-cloud facility operated by ChimeNet, Inc. at 110 Barnes Road in Wallingford, Connecticut, notable for being in a town with its own municipal power and for delivering 24/7 supported services. The site hosts ChimeNet’s private cloud and colocation offerings.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ChimeNet Data Center","verified_operator":"ChimeNet, Inc.","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"Fiber cross-connects; multiple carriers present (see DataCenterMap ecosystem).","num_buildings":1,"campus_acres":10,"utility_provider":"Wallingford Electric Division","tax_incentives":"Town of Wallingford Office Personal Property Tax Incentive: taxes abated on personal property for up to five years based on lease term (program availability; not site-specific).","natural_hazard_zone":""},"1134":{"description":"Cloudsmart 1 Branford is a Cloudsmart-operated colocation data center at 4 Pin Oak Drive in Branford, CT, offering Tier 3/SOC 2 infrastructure. Listings show approximately 20,000 sq ft with access to 1.0 MW, with redundant power and connectivity.","verified_status":"operational","power_capacity_mw":1,"total_sqft":20000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cloudsmart 1 Branford Data Center","verified_operator":"Cloudsmart, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Connecticut statewide data center incentives (sales/use and property tax exemptions for qualified facilities); no Cloudsmart-specific award identified.","natural_hazard_zone":"Coastal hurricane exposure; FEMA flood mapping applies but address-specific flood zone not determined from provided sources."},"1135":{"description":"Lumen New Haven is an operational telecom/colocation data center operated by Lumen at 54 Meadow Street, New Haven, CT, with approximately 13,294 sq ft of total space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":13294,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen New Haven","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (Level 3)","num_buildings":1,"campus_acres":0,"utility_provider":"United Illuminating (UI)","tax_incentives":"","natural_hazard_zone":"Coastal flood/hurricane exposure (New Haven shoreline); address-specific FEMA flood zone not determined"},"1136":{"description":"Formerly the Cervalis Connecticut facility, the site is now operated by CyrusOne as the NYM5 colocation and business‑continuity data center at 6 Norden Place, Norwalk, CT. Opened in 2014, it offers up to 16 MW of IT power across a roughly 168,000‑sq‑ft building (CyrusOne markets 150,000 sq ft).","verified_status":"operational","power_capacity_mw":16,"total_sqft":168000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cervalis – Connecticut Data Center","verified_operator":"CyrusOne","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III compliant/design equivalent (not Uptime-certified)","fiber_providers":"carrier-neutral; Fibertech, Lightower/Optimum Lightpath, Zayo","num_buildings":1,"campus_acres":4.64,"utility_provider":"United Illuminating (UI)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate/500-year)"},"1137":{"description":"A small colocation data center marketed by HorizonIQ in the Danbury–Bethel, CT area, listed at 12,000 sq ft total with 6,000 sq ft of raised-floor colocation space and no published power rating [1]. Public records indicate 60 Backus Ave is an industrial/Waterworks site, while a data center building at 6 Berkshire Blvd (Bethel) has been publicly listed, clarifying address ambiguity in third‑party directories [2][3][4].","verified_status":"operational","power_capacity_mw":0,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"HorizonIQ Connecticut Danbury Data Center","verified_operator":"HorizonIQ","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III design standard (not site-certified)","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"unknown"},"1138":{"description":"HorizonIQ Danbury Data Center (Backus 70) is a HorizonIQ colocation facility at 70 Backus Avenue in Danbury, Connecticut, listed with access to 40.0 MW of power.","verified_status":"operational","power_capacity_mw":40,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"HorizonIQ Danbury Data Center","verified_operator":"HorizonIQ","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":3.5,"utility_provider":"Eversource Energy","tax_incentives":"Potential eligibility: Connecticut Data Center Tax Incentive (statewide) and Danbury local high-tech personal property tax discount; no site-specific award identified.","natural_hazard_zone":"FEMA Special Flood Hazard Area (1% annual chance flood)"},"1139":{"description":"Planned data center at 234 Riverside Avenue in Bristol, CT operated by Gray Wolf Data Centers, to be powered by an on-site 4.0 MW fuel-cell; filings describe a two-story 7,279-sf data center with an adjacent 7,016-sf fuel-cell facility.","verified_status":"planned","power_capacity_mw":4,"total_sqft":14295,"year_online":"unknown","construction_update":"April 6, 2026: Inland Wetlands/Conservation Commission approved the Riverside Avenue data-center permit with conditions. Prior notices and approvals include a March 2, 2026 legal notice scheduling the April 6 hearing for a 7,016-sf fuel-cell facility, and earlier CT Siting Council recognition of a 4.0 MW fuel-cell at 234 Riverside Avenue.","recent_news":"April 6, 2026: Inland Wetlands/Conservation Commission approved the Riverside Avenue data-center permit with conditions, including a 25-year stormwater-management plan; later in April, the mayor published an overview addressing the proposed project.","notable_tenants":"","verified_name":"Gray Wolf: Bristol, CT","verified_operator":"Gray Wolf Data Centers","verified_owner":"ReNew Riverside, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.52,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Near Pequabuck River with Inland Wetlands/Watercourses review; city FEMA map resources reference Riverside Ave flood mitigation. Specific FEMA flood zone for this parcel not confirmed."},"1140":{"description":"Planned data-center project in Wallingford’s Watershed Interchange district at/near 1181 Barnes Road led by Charter Development Group/LLC; the town approved a December 2024 zoning text amendment to permit data centers by special permit, and no facility is yet operating.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Jun 16, 2026: LoopNet lists 673–675 Williams Rd as a 26-acre development site with approval for data-center use; no building permits or construction start are disclosed.","recent_news":"Broker continues to market 673–675 Williams Rd as land for sale with approval for data-center use; no tenant, financing, or groundbreaking announced in the last six months.","notable_tenants":"","verified_name":"Charter Development: Wallingford, CT Data Center","verified_operator":"Charter Development Group LLC (applicant/developer; operator not yet designated)","verified_owner":"Gillespie Land Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":26,"utility_provider":"Wallingford Electric Division (Town of Wallingford Department of Public Utilities)","tax_incentives":"Connecticut Data Center Tax Incentive Program: potential 20–30-year sales and use tax exemptions and related property tax relief for qualified data centers; no site-specific agreement publicly posted.","natural_hazard_zone":"FEMA Zone X (low-to-moderate flood risk) — parcel-specific FEMA map not confirmed"},"1141":{"description":"Lumen Stamford is an operational Lumen Technologies colocation data center at 21 Harborview Avenue, Stamford, CT, marketed as a highly secure facility. Public listings confirm the site and services; total MW capacity and online year are not published.","verified_status":"operational","power_capacity_mw":0,"total_sqft":23125,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Stamford","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent","num_buildings":0,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE"},"1142":{"description":"A legacy directory lists Fibertech Networks’ New Haven colocation site at 55 Church St., New Haven, CT. Fibertech later became part of Lightower (2015) and then Crown Castle (2017), with the relevant fiber business sold to Zayo in 2026; the building itself is marketed as Elm City Bioscience Center, and no facility-level rebrand page for this address is published.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fibertech Networks - New Haven Data Center","verified_operator":"Zayo Group","verified_owner":"The Hurley Group","cooling_type":"unknown","tier_level":"","fiber_providers":"Zayo Group; historically Fibertech Networks/Crown Castle Fiber","num_buildings":1,"campus_acres":0,"utility_provider":"United Illuminating (UI)","tax_incentives":"Connecticut Data Center Tax Incentive Program: sales and use tax exemptions on certain data center purchases and potential property tax exemptions; program benefits of 20 years at $200M investment and up to 30 years at higher thresholds.","natural_hazard_zone":""},"1143":{"description":"An enterprise/Tier II redundant state data center operated by Connecticut DAS BITS in Pfizer Building 230 on the Groton campus, leased to the State for $1/year, with an approximate 9,000 sq ft buildout.","verified_status":"operational","power_capacity_mw":0,"total_sqft":9000,"year_online":"unknown","construction_update":"Apr 14, 2026: Legislative committee materials include funding to replace the Groton data center; Feb 13, 2026: Governor sought $32M bonding to relocate it. No active expansion at the existing Groton facility is described.","recent_news":"Feb–Apr 2026: The state moved to replace/relocate the Groton Data Center—seeking $32M in bonding and advancing funding in committee to replace the Groton facility, potentially using an existing co-location site.","notable_tenants":"Connecticut state agencies and municipalities served by DAS/BITS; supports approximately 50,000 state personnel. No separate commercial tenant or anchor customer publicly identified.","verified_name":"State of Connecticut Groton Data Center (GDC)","verified_operator":"State of Connecticut Department of Administrative Services (DAS), Bureau of Information Technology Solutions (BITS)","verified_owner":"Pfizer Inc.","cooling_type":"unknown","tier_level":"Tier II","fiber_providers":"","num_buildings":1,"campus_acres":164.5,"utility_provider":"Groton Utilities","tax_incentives":"No facility-specific tax abatement identified; Building 230 remained on Groton’s tax rolls. Connecticut’s data center incentive program exists but isn’t shown to apply to this facility.","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard); coastal storm/hurricane exposure; noted 2025 winter-storm outage."},"1144":{"description":"CoreSite DE1 is an operational colocation data center at 910 15th St in downtown Denver, located in the historic Denver Gas & Electric Building and operated by CoreSite (an American Tower company). It serves as a network-dense facility within Denver’s primary carrier-hotel building.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":142218,"year_online":"unknown","construction_update":"Apr 8, 2025: CoreSite acquired the Denver Gas & Electric Building that houses DE1; no DE1-specific construction milestone announced since.","recent_news":"May 18, 2026: Denver City Council approved a one-year moratorium on new data centers; CoreSite stated the moratorium “is not about CoreSite” and pertains to future development.","notable_tenants":"No publicly named anchor tenant. In-building network ecosystem participants include Lumen; 910 Telecom (meet-me room); carriers: AT&T, Comcast, Cogent.","verified_name":"CoreSite DE1 - Denver Data Center (Denver Gas & Electric Building)","verified_operator":"CoreSite","verified_owner":"CoreSite (an American Tower company)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multiple carriers and peering options; high-capacity fiber connectivity to DE2","num_buildings":1,"campus_acres":0.43,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1145":{"description":"CoreSite DE2 is an operational carrier-neutral colocation data center at 639 E 18th Ave in downtown Denver, operated by CoreSite, with dense interconnection including access to the CoreSite Any2 peering exchange and cloud onramps.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5100,"year_online":"unknown","construction_update":"","recent_news":"No DE2-specific news in the last six months. City-wide: Denver enacted a one-year moratorium on new data-center permits in May 2026; reports identified CoreSite’s DE3 as the only permitted project under construction, with no impact indicated for existing DE2 operations.","notable_tenants":"","verified_name":"CoreSite DE2 - Denver Data Center","verified_operator":"CoreSite","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral (Any2 Exchange, Open Cloud Exchange)","num_buildings":0,"campus_acres":0,"utility_provider":"Xcel Energy (Public Service Company of Colorado)","tax_incentives":"","natural_hazard_zone":""},"1146":{"description":"CoreSite DE3 is a new purpose-built, multi-tenant colocation data center at 4900 Race Street in Denver operated by CoreSite (an American Tower company); it is the first building in the Denver campus expansion, designed for about 170,000–180,000 sq ft with 18 CMW and targeted for 2026 availability.","verified_status":"under-construction","power_capacity_mw":18,"total_sqft":180000,"year_online":"2026","construction_update":"May 18–19, 2026: Denver approved a one-year moratorium on new data centers, but reports state it does not affect the CoreSite DE3 facility already under construction; earlier milestone: DE3 topped out in October 2025.","recent_news":"May 2026: Denver enacted a one-year moratorium on new data-center permits/site-development applications; reports note the measure does not affect CoreSite DE3, which is already permitted and under construction, and identify DE3 as the only permitted facility under construction in the neighborhood.","notable_tenants":"","verified_name":"CoreSite DE3 - Denver Data Center","verified_operator":"CoreSite (an American Tower company)","verified_owner":"Stonepeak–CoreSite (American Tower) DE3 joint venture (Stonepeak ~85%, CoreSite 15%)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"CoreSite withdrew a proposed $9M Denver sales/use-tax rebate in Oct 2024; no active local incentive confirmed.","natural_hazard_zone":"above 500-year flood plain (low flood risk)"},"1147":{"description":"Iron Mountain DEN-1 is an operational colocation data center at 4300 Brighton Blvd, Denver, CO 80216, on a 6‑acre campus about 10 minutes from downtown. It provides 14.4 MW of capacity across a 180,000 sq ft purpose-built facility.","verified_status":"operational","power_capacity_mw":14.4,"total_sqft":180000,"year_online":"2001","construction_update":"","recent_news":"On May 18, 2026, Denver City Council unanimously approved a one-year moratorium on new data centers; this is citywide and not specific to DEN-1.","notable_tenants":"","verified_name":"Iron Mountain DEN-1","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Inc. / Iron Mountain Data Centers","cooling_type":"chilled water","tier_level":"Tier III design / concurrently maintainable","fiber_providers":"Carrier-neutral; on-net providers include Zayo, Comcast, Cogent, and Verizon","num_buildings":1,"campus_acres":6,"utility_provider":"Xcel Energy","tax_incentives":"Colorado Enterprise Zone program benefits may be available; no DEN-1-specific abatement found","natural_hazard_zone":"low risk; likely outside 100-year FEMA SFHA (Zone X/B)"},"1148":{"description":"Equinix DE1 is an operational Equinix IBX carrier‑neutral colocation data center at 9706 East Easter Avenue, Suite 160, Englewood, Colorado, with 12,109 sq ft of colocation space. Third‑party directories list approximately 18,900 sq ft of total (gross) space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":18900,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No anchor/major customer is publicly identified for DE1. Publicly listed networks present include C3Aero, China Mobile International, Cogent Communications, FULLDUPLEX, and GTT Communications.","verified_name":"Equinix Denver DE1","verified_operator":"Equinix","verified_owner":"Aphorio Carter","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; known providers include Cogent and Verizon/XO (in-building tenant)","num_buildings":1,"campus_acres":2.67,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1149":{"description":"Equinix DE2 is an operational Equinix IBX carrier‑neutral colocation and Internet exchange facility at 335 Inverness Drive South in Englewood (Denver Tech Center). It serves the Denver market with interconnection-rich colocation.","verified_status":"operational","power_capacity_mw":0,"total_sqft":108336,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Alibaba Cloud CDN; Cogent Communications; CoreWeave","verified_name":"Equinix DE2","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral; 15+ providers including Level 3 (Lumen), Zayo, tw telecom, CenturyLink","num_buildings":1,"campus_acres":13.09,"utility_provider":"Xcel Energy (Public Service Company of Colorado)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zones B and X (outside the 100-year floodplain; moderate/low flood hazard)"},"1150":{"description":"EdgeConneX Denver DEN02 is an EdgeConneX-operated colocation/edge data center at 8451 Highfield Pkwy, Englewood, CO, with a 115,500 sq ft footprint and five planned 10,500-sq-ft data halls as part of the Denver campus.","verified_status":"operational","power_capacity_mw":21.6,"total_sqft":115500,"year_online":"2018","construction_update":"No active construction reported in the last six months; operator lists 5 planned 10,500-sq-ft data halls.","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX Denver DEN02","verified_operator":"EdgeConneX","verified_owner":"Bradbury Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"CORE Electric Cooperative (formerly Intermountain Rural Electric Association/IREA)","tax_incentives":"","natural_hazard_zone":""},"1151":{"description":"H5 Data Centers’ Denver Campus at 5350 S Valentia Way (Greenwood Village, in the Denver Tech Center) is a carrier-neutral colocation campus operated by H5 Data Centers, offering about 300,000 sq ft with a Tier III design and on-site solar power.","verified_status":"operational","power_capacity_mw":17.5,"total_sqft":300000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Hurricane Electric; Forethought; Sharktech","verified_name":"H5 Data Centers Denver Data Center","verified_operator":"H5 Data Centers","verified_owner":"H5 Capital Denver LLC","cooling_type":"chilled water","tier_level":"Tier III design","fiber_providers":"","num_buildings":0,"campus_acres":7.54,"utility_provider":"Xcel Energy","tax_incentives":"Colorado offers no data-center-specific tax incentives; none apply to this facility.","natural_hazard_zone":"FEMA Zone X (low flood risk); city-level assessments show minor-to-moderate flood exposure, low wildfire and seismic risk."},"1152":{"description":"DataBank DEN3 is an operational colocation data center at 1500 Champa Street in downtown Denver, operated by DataBank, featuring 2 MW critical IT load and 16,100 IT square feet and serving as a key carrier-hotel interconnection site.","verified_status":"operational","power_capacity_mw":2,"total_sqft":16100,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank DEN3 - Downtown Denver Data Center","verified_operator":"DataBank","verified_owner":"IPI Partners (via RadiusDC / Radius DC Champa, LLC)","cooling_type":"chilled water","tier_level":"Tier III equivalent (no official Uptime certification cited)","fiber_providers":"Carrier-neutral; 15+ on-site networks including Lumen/Level 3, Zayo, Comcast, Cogent, AT&T, Verizon, GTT, 360Networks, and TW Telecom.","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy (Public Service Company of Colorado, PSCo)","tax_incentives":"","natural_hazard_zone":""},"1153":{"description":"Novva Colorado Springs is an operational Novva Data Centers colocation facility at 650 Sybilla Lane in Colorado Springs, CO. It is noted as the city’s first large-scale multi-tenant colocation data center.","verified_status":"operational","power_capacity_mw":40,"total_sqft":122000,"year_online":"2005","construction_update":"Aug 31, 2021: Novva announced acquisition of the campus and planned expansion by an additional 250,000 sq ft and up to 30 MW; no newer construction milestone identified.","recent_news":"","notable_tenants":"Progressive (former owner/occupant); unnamed anchor tenant announced by Novva in 2021.","verified_name":"Novva Colorado Springs","verified_operator":"Novva Data Centers","verified_owner":"Novva Data Centers","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":68,"utility_provider":"Colorado Springs Utilities","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate); community wildfire risk: very high"},"1154":{"description":"QTS Colorado Springs is a QTS-operated data center at 311 S. Rockrimmon Blvd in Colorado Springs on a 21-acre campus, offering about 249,958 sq ft and roughly 14 MW of critical power.","verified_status":"operational","power_capacity_mw":14,"total_sqft":249958,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Colorado Springs","verified_operator":"QTS Data Centers","verified_owner":"Blackstone (via QTS Realty Trust jointly owned by Blackstone Infrastructure Partners and Blackstone Real Estate Income Trust)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":21,"utility_provider":"Colorado Springs Utilities","tax_incentives":"","natural_hazard_zone":"Minor flood risk and wildfire exposure in the Rockrimmon neighborhood; parcel-level FEMA flood-zone not confirmed"},"1155":{"description":"T5@Colorado Springs at 3233 Janitell Rd is a T5 Data Centers-operated colocation facility in Colorado Springs; listings describe a Tier III data center measuring roughly 60,371–65,000 sq ft and part of the larger 64‑acre T5@Colorado campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":60371,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"SAP America Inc.","verified_name":"T5@Colorado Springs DC1","verified_operator":"T5 Data Centers","verified_owner":"SAP America Inc.","cooling_type":"air-cooled","tier_level":"Tier III (listing; no site-specific Uptime certification found)","fiber_providers":"","num_buildings":1,"campus_acres":8.25,"utility_provider":"Colorado Springs Utilities","tax_incentives":"","natural_hazard_zone":""},"1156":{"description":"Windstream Colorado Springs is an operational telecom/data center at 1780 Jet Stream Dr, Colorado Springs, operated by Windstream, with 4.0 MW of power and about 14,615 sq ft of facility space.","verified_status":"operational","power_capacity_mw":4,"total_sqft":14615,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Windstream (operator/tenant); no publicly identified third-party anchor customers.","verified_name":"Windstream Colorado Springs","verified_operator":"Windstream Wholesale","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":3,"utility_provider":"Colorado Springs Utilities","tax_incentives":"Pikes Peak Enterprise Zone credits available (e.g., 3% Colorado income tax credit for equipment investment; $1,100 credit per net new job; additional job training credit). Colorado HB26-1030 proposed a 100% state sales and use tax exemption for qualified data centers in 2026 but did not pass.","natural_hazard_zone":"FEMA Flood Zone X (minimal flood hazard) is typical in this area; adjacent parcel shows Zones B and X. Moderate regional wildfire and hail/severe storm exposure."},"1157":{"description":"Verizon Wireless operates an existing telecom/data center at 4323 Arrowswest Dr, Colorado Springs, which is LEED v4 O+M: Data Centers Platinum and totals about 107,816 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":107816,"year_online":"unknown","construction_update":"","recent_news":"Achieved LEED v4 O+M: Data Centers Platinum certification on April 27, 2026.","notable_tenants":"Colorado Springs’ 911 Call Center; military clients","verified_name":"Verizon Wireless Colorado Springs Data Center","verified_operator":"Verizon Wireless","verified_owner":"Cellco Partnership d/b/a Verizon Wireless","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon (on-net); not listed as carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Colorado Springs Utilities","tax_incentives":"","natural_hazard_zone":""},"1158":{"description":"A proposed second Verizon Wireless telecom/data center on a 9.8-acre site off Garden of the Gods Road, adjacent to the existing 4323 Arrowswest Dr facility in Colorado Springs. Coverage from January 2022 notes Verizon filed plans, while current listings still point to the existing Arrowswest site rather than a separate operational second facility.","verified_status":"planned","power_capacity_mw":0,"total_sqft":49000,"year_online":"unknown","construction_update":"Jan 13–14, 2022: Verizon submitted/filed plans for a second Colorado Springs data center adjacent to 4323 Arrowswest Dr.","recent_news":"","notable_tenants":"","verified_name":"Verizon Wireless Colorado Springs (Second Data Center) / Verizon COSP","verified_operator":"Verizon Wireless (Cellco Partnership d/b/a Verizon Wireless)","verified_owner":"Verizon Wireless (Cellco Partnership d/b/a Verizon Wireless)","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon (on-net; not carrier-neutral)","num_buildings":1,"campus_acres":9,"utility_provider":"Colorado Springs Utilities","tax_incentives":"No Colorado data center-specific tax incentives; Enterprise Zone credits may apply if eligible.","natural_hazard_zone":""},"1159":{"description":"Lumen Denver 1 is an operational Lumen Technologies telecom/colocation data center at 1850 Pearl Street in Denver, offering 60,026 sq ft total with 24,001 sq ft of colocation space and N+1 HVAC. The site has historical Level 3 “Denver Gateway” lineage.","verified_status":"operational","power_capacity_mw":0,"total_sqft":60026,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No public anchor tenant or major end-customer found. Carrier/service-provider presence includes Cogent at “Lumen DEN1 (fka CenturyLink/Level 3), 1850 Pearl Street”; broader ecosystem listings are available via data center directories.","verified_name":"Lumen Denver 1","verified_operator":"Lumen Technologies","verified_owner":"Lumen Technologies","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.26,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"Seismic Zone 1 (low); low flood risk (outside FEMA SFHA/likely Zone X)"},"1160":{"description":"American Tower EDC Denver was a compact American Tower Access Edge colocation site at 5041 Broadway, Denver (ATC Site #82138), built as a 360 sq ft, 100 kW edge data center launched in 2020; American Tower has since discontinued its prior Access Edge sites.","verified_status":"decommissioned","power_capacity_mw":0.1,"total_sqft":360,"year_online":"2020","construction_update":"","recent_news":"Feb 27, 2026: American Tower obtained planning permission for two new Edge data center sites and noted that its prior Access Edge sites had been discontinued.","notable_tenants":"","verified_name":"American Tower EDC Denver","verified_operator":"American Tower Corporation","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; Lumen Technologies; dark fiber connection to major regional data center","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"FEMA Zone X - Area of Minimal Flood Hazard; low-to-moderate seismic risk (Colorado)"},"1161":{"description":"FRII Data Center was FRII’s colocation facility at 3350 Eastbrook Dr in Fort Collins, marketed as a SAS-70 Type II site for disaster recovery. Regional reporting shows FRII entered receivership in 2022 and operations were being wound down in 2023.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":3800,"year_online":"unknown","construction_update":"2014: FRII expanded its commercial data center from 1,200 sq ft to 3,800 sq ft (reported Sep 10, 2022). In Sep 2022, a change-of-use toward a funeral home/crematory was filed for 3350 Eastbrook Dr.","recent_news":"","notable_tenants":"Woodward Inc. (historical major customer named in 2022 coverage); current tenants not publicly confirmed.","verified_name":"FRII Data Center","verified_operator":"Front Range Digital Holdings, LLC (FRII / Front Range Internet, Inc.)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.59,"utility_provider":"Fort Collins Utilities (City of Fort Collins Light & Power)","tax_incentives":"","natural_hazard_zone":"Not in FEMA floodplain per City of Fort Collins record (Floodplain: N); area subject to regional hazards including wildfire, flooding, and severe snowstorms."},"1162":{"description":"CorKat Data Loveland is a colocation/data center operated by CorKat Data at 451 N Railroad Ave #101 in Loveland, Colorado. It opened in 2011 as Loveland’s first public data center.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CorKat Data","verified_operator":"CorKat Data Solutions LLC (CorKat Data)","verified_owner":"North Railroad LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Loveland Water and Power (City of Loveland Utilities)","tax_incentives":"Colorado Enterprise Zone program may apply if the address lies within the designated EZ; pre-certification required. No facility-specific abatements identified.","natural_hazard_zone":"FEMA Flood Zone X (city-level context: low flood risk); site-specific verification recommended."},"1163":{"description":"Earthnet Data Center is a small colocation facility at 4735 Walnut St Ste F in Boulder, historically operated by Earthnet; Earthnet reports it has merged with Massive Networks, while data-center listings still show the Walnut Street site as operational.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1400,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Earthnet Data Center","verified_operator":"Massive Networks (Earthnet / Earthnet Inc.)","verified_owner":"","cooling_type":"unknown","tier_level":"Tier 3 design; Uptime Tier certification not found","fiber_providers":"","num_buildings":1,"campus_acres":1.66,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"Exact FEMA flood zone not determinable from public sources provided; facility listing states the site was designed/constructed to surpass local building-area codes and seismic requirements."},"1164":{"description":"Iron Mountain DEN-1 is an operational colocation data center operated by Iron Mountain Data Centers at 4300 Brighton Blvd in Denver. It is a purpose-built, 180,000 ft², 14.4 MW facility with Uptime Tier III-certified construction and Tier III Gold Operations.","verified_status":"operational","power_capacity_mw":14.4,"total_sqft":180000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No publicly disclosed anchor tenants. Carrier/network ecosystem participants include Hurricane Electric, Arelion, and Verizon Communications.","verified_name":"Iron Mountain Data Centers DEN-1","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Incorporated","cooling_type":"chilled water","tier_level":"Uptime Institute Tier III Constructed Facility; Tier III Gold Operations","fiber_providers":"Hurricane Electric; Arelion; Verizon Communications","num_buildings":1,"campus_acres":6,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"1165":{"description":"Equinix DE1 is an operational, carrier-neutral IBX/colocation facility operated by Equinix at 9706 East Easter Avenue, Suite 160, in the Denver Tech Center area (Centennial/Englewood), serving regional connectivity. It offers roughly 18,900 gross sq ft with about 12,109–12,111 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":0.675,"total_sqft":18900,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No Equinix DE1 anchor tenants or major colocation customers are publicly disclosed. Public ecosystem records list networks/carriers at DE1 including C3Aero, China Mobile International, Cogent Communications, FULLDUPLEX, and GTT Communications; the 9706 E Easter Ave property has also been reported as leased to Equinix and Verizon/XO.","verified_name":"Equinix DE1","verified_operator":"Equinix","verified_owner":"Aphorio Carter Critical Infrastructure Fund, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; at least one local internet exchange present.","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"South Denver Metro Enterprise Zone (Colorado Enterprise Zone Program) — eligible for state income tax credits (e.g., investment and job creation credits).","natural_hazard_zone":""},"1166":{"description":"Equinix DE2 is a carrier-neutral Equinix IBX colocation data center located at 335 Inverness Drive South in Englewood (Denver market), offering interconnection services as part of Equinix’s Denver campus.","verified_status":"operational","power_capacity_mw":14,"total_sqft":108336,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix DE2 (Denver DE2 IBX Data Center)","verified_operator":"Equinix","verified_owner":"","cooling_type":"air-cooled","tier_level":"N+1 UPS and N+1 standby/generator design; no public Uptime Institute Tier certification found","fiber_providers":"carrier-neutral; 15+ network service providers; Equinix Internet Exchange and Equinix Fabric available","num_buildings":1,"campus_acres":13.09,"utility_provider":"","tax_incentives":"No facility-specific incentive verified; South Metro Enterprise Zone expansion begins Jan. 1, 2026 but parcel eligibility for 335 Inverness Dr S is unconfirmed.","natural_hazard_zone":""},"1167":{"description":"EdgeConneX Denver (DEN02) is an operational EdgeConneX colocation data center at 8451 Highfield Pkwy, Englewood, CO, totaling 115,500 sq ft with up to 24MW (N+1) of power.","verified_status":"operational","power_capacity_mw":24,"total_sqft":115500,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX Denver DEN02 (EDCDEN02)","verified_operator":"EdgeConneX","verified_owner":"Bradbury Properties","cooling_type":"unknown","tier_level":"Tier III design","fiber_providers":"","num_buildings":1,"campus_acres":9.84,"utility_provider":"CORE Electric Cooperative (formerly IREA)","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (low risk)"},"1168":{"description":"H5 Data Centers – Denver (DTC) is an operational colocation campus operated by H5 Data Centers at 5350 S Valentia Way in Greenwood Village, Colorado, totaling about 300,000 square feet. Third-party profiles note it is a purpose-built data center initially constructed by United Airlines and later owned by Galileo.","verified_status":"operational","power_capacity_mw":17.5,"total_sqft":300000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Handy Networks; Cogent Communications (on-net carrier)","verified_name":"H5 Data Centers Denver Data Center","verified_operator":"H5 Data Centers","verified_owner":"","cooling_type":"chilled water","tier_level":"Tier III concurrently maintainable design","fiber_providers":"carrier-neutral; Verizon, AT&T, Cogent","num_buildings":0,"campus_acres":7.54,"utility_provider":"Xcel Energy","tax_incentives":"No active Colorado data-center-specific incentives","natural_hazard_zone":"outside 500-year floodplain; Seismic Rating 1 (low risk)"},"1169":{"description":"Novva Colorado Springs is an operational colocation data center operated by Novva Data Centers at 650 Sybilla Lane in Colorado Springs, offering up to 40MW of capacity and 122,000 sq ft of data center space on a large campus.","verified_status":"operational","power_capacity_mw":40,"total_sqft":190000,"year_online":"2005","construction_update":"Apr 1, 2026: Electrical permit issued for 650 Sybilla Lane (PPRBD). Prior milestone: Aug 31, 2021—Novva announced >$200M expansion plans to 30MW and +250,000 sq ft; current listings show 30,000 kW planned colocation capacity.","recent_news":"Apr 1, 2026: An electrical permit was issued for work at 650 Sybilla Lane (Summit Fire Protection), indicating minor site work; no major facility-specific expansion or tenant announcements found in the last six months.","notable_tenants":"Progressive (leaseback tenant after Novva’s 2021 acquisition); Novva also stated it had secured an anchor tenant but did not name it.","verified_name":"Novva Colorado Springs","verified_operator":"Novva Data Centers","verified_owner":"Novva Data Centers","cooling_type":"hybrid","tier_level":"Tier III-equivalent (Tier 3+ design; not Uptime certified)","fiber_providers":"","num_buildings":2,"campus_acres":68,"utility_provider":"","tax_incentives":"None identified specific to this facility. Colorado HB26-1030 (proposed statewide data-center tax exemption) failed in May 2026.","natural_hazard_zone":"FEMA Flood Zones B and X (moderate hazard); regional wildfire risk elevated citywide."},"1170":{"description":"QTS Colorado Springs is an operational colocation data center operated by QTS Data Centers at 311 S Rockrimmon Blvd, offering a 21‑acre campus with 249,958 sq ft and 14 MW+ critical power capacity.","verified_status":"operational","power_capacity_mw":14,"total_sqft":249958,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Colorado Springs","verified_operator":"QTS Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":21,"utility_provider":"Colorado Springs Utilities","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X/B area (moderate) indicated nearby; Rockrimmon neighborhood shows minor flood risk"},"1171":{"description":"T5@Colorado Springs (DC1) is a wholesale, purpose-built data center operated by T5 Data Centers at 3233 Janitell Rd in Colorado Springs. The Tier III–designed facility is about 60,731 SF with roughly 41,000 SF of critical space and offers two data halls with 1 MW per hall and N+1 cooling.","verified_status":"operational","power_capacity_mw":0,"total_sqft":60731,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"SAP America (SAP)","verified_name":"T5@Colorado Springs DC1","verified_operator":"T5 Data Centers","verified_owner":"SAP America Inc","cooling_type":"air-cooled","tier_level":"Tier III design","fiber_providers":"carrier-neutral / up to 15 telecom providers with dual independent routing and low latency","num_buildings":2,"campus_acres":64,"utility_provider":"Colorado Springs Utilities","tax_incentives":"Potential eligibility via Colorado Enterprise Zone in designated areas; no confirmed facility-specific abatement. Statewide data-center sales/use-tax exemption legislation failed in 2026.","natural_hazard_zone":"low risk"},"1172":{"description":"Windstream operates a telecom switch and data center at 1780 Jet Stream Dr in Colorado Springs, used as an interconnected transmission site.","verified_status":"operational","power_capacity_mw":4,"total_sqft":14615,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Colorado Springs Data Center","verified_operator":"Uniti Wholesale (formerly Windstream Wholesale)","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":3,"utility_provider":"Colorado Springs Utilities","tax_incentives":"","natural_hazard_zone":""},"1173":{"description":"Operational Verizon switch/data-center facility at 4323 Arrowswest Drive in Colorado Springs, operated by Verizon. The site is LEED O+M: Data Centers v4 Platinum (certified April 27, 2026) and lists 107,816 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":107816,"year_online":"unknown","construction_update":"","recent_news":"On April 27, 2026, the facility achieved LEED O+M: Data Centers v4 Platinum certification at 4323 Arrowswest Drive (107,816 sq ft).","notable_tenants":"Primarily Verizon internal network operations; Engineering News-Record reported the data center also contains data for the Colorado Springs 911 Call Center and military clients.","verified_name":"Verizon NEC Colorado 2025","verified_operator":"Verizon Wireless","verified_owner":"Verizon Wireless","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0,"utility_provider":"Colorado Springs Utilities","tax_incentives":"","natural_hazard_zone":""},"1174":{"description":"DataBank DEN3 is an operational colocation and interconnection facility at 1500 Champa Street in downtown Denver, operated by DataBank, with approximately 2 MW of critical IT load and about 16,100 sq ft of IT whitespace.","verified_status":"operational","power_capacity_mw":2,"total_sqft":16100,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"No publicly disclosed anchor tenants; the site hosts multiple network/service providers (e.g., 15 onsite carriers).","verified_name":"DataBank DEN3 (Downtown Denver Data Center)","verified_operator":"DataBank","verified_owner":"IPI Partners (via RadiusDC)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 15 onsite carriers","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy (Public Service Company of Colorado)","tax_incentives":"","natural_hazard_zone":""},"1175":{"description":"American Tower EDC Denver (ATC Site #82138) is a small edge colocation facility at 5041 Broadway in Denver operated by American Tower. It launched in 2020 and is specified at about 360 sq ft with roughly 100 kW of capacity.","verified_status":"decommissioned","power_capacity_mw":0.1,"total_sqft":360,"year_online":"2020","construction_update":"","recent_news":"Feb 27, 2026: American Tower discontinued its small Access Edge sites (including Denver and Boulder) as it pivots to larger facilities.","notable_tenants":"","verified_name":"American Tower EDC Denver","verified_operator":"American Tower Corporation","verified_owner":"American Tower Asset Sub II LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.47,"utility_provider":"Xcel Energy","tax_incentives":"Potential eligibility under the Colorado Enterprise Zone (EZ) Program; address-specific EZ boundary confirmation required.","natural_hazard_zone":"FEMA Zone X (Area of Minimal Flood Hazard)"},"1176":{"description":"FRII/Front Range Internet historically operated a commercial colocation data center at 3350 Eastbrook Dr in Fort Collins; industry listings describe it as a SAS-70 Type II facility. FRII announced shutdown in 2022, and its current site reflects a successor brand rather than an active data center.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":3800,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Historical major customers included Woodward Inc. and Zayo Group LLC; no current anchor tenants are publicly documented.","verified_name":"FRII Data Center","verified_operator":"Front Range Digital Holdings, LLC d/b/a FRII (Front Range Internet)","verified_owner":"3350 Eastbrook Dr LLC","cooling_type":"unknown","tier_level":"SAS-70 Type II (no Uptime Institute Tier certification listed)","fiber_providers":"","num_buildings":1,"campus_acres":1.59,"utility_provider":"Fort Collins Utilities (City of Fort Collins Light & Power)","tax_incentives":"No facility-specific incentives found. Colorado currently has no data center–specific state incentives; Enterprise Zone program exists, but no site-specific certification identified.","natural_hazard_zone":""},"1177":{"description":"CorKat Data operates a colocation/cloud data center at 451 N Railroad Ave #101 in Loveland, Colorado, offering enterprise-class infrastructure services. The site was publicized as Loveland’s first public data center in October 2011.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CorKat Data – Loveland","verified_operator":"CorKat Data Solutions, LLC","verified_owner":"North Railroad LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral with diverse/physically separate fiber entrances; specific carrier names not publicly disclosed","num_buildings":1,"campus_acres":0.3,"utility_provider":"Loveland Water and Power","tax_incentives":"No facility-specific abatement identified. Enterprise Zone tax credits may be available to eligible businesses; Colorado’s 2026 data center sales/use-tax bill did not pass.","natural_hazard_zone":"Flood risk (Big Thompson River corridor). Railroad Avenue saw 2013 flood repair work; local river stages can cause road impacts in Loveland."},"1178":{"description":"Earthnet Data Center – Boulder is a colocation facility at 4735 Walnut St, Suite F, Boulder, Colorado. Earthnet reports it has merged with Massive Networks, and the site remains listed by data‑center directories serving Boulder.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Earthnet Data Center","verified_operator":"Earthnet (now merged with Massive Networks)","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III design","fiber_providers":"Mammoth, CenturyLink (QMOE), Sprint, UUNet, Cable & Wireless, Genuity, NTT/Verio, Global Crossing, 360networks, Dash Carrier, Hurricane Electric, Internap, RMIX, Tinet, XO, Comcast","num_buildings":1,"campus_acres":1.63,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"Flood-prone region (2013 Front Range flood; FEMA floodplains mapped); moderate seismic design considerations; regional WUI wildfire risk expanded in 2025."},"1179":{"description":"QTS Aurora–Denver Campus is a wholesale/hyperscale data center campus operated by QTS Data Centers at 1160 N Gun Club Rd in Aurora, Colorado, spanning a 65‑acre site and designed for 160‑MW‑class capacity. The multi-building campus has begun operations while continuing phased build-out.","verified_status":"under-construction","power_capacity_mw":160,"total_sqft":276623,"year_online":"2023","construction_update":"Jan 28, 2026: The QTS Aurora–Denver campus is under construction; Building 2 is in the construction phase and Building 3 is not yet commissioned or leased, while Building 1 is already operational.","recent_news":"January 2026: Amid renewed debate over state data‑center incentives, City Cast Denver highlighted the QTS facility under construction at 1160 N. Gun Club Rd; a related bill (HB26‑1030) proposing statewide tax exemptions for qualified data centers was reintroduced.","notable_tenants":"","verified_name":"QTS Aurora-Denver Campus","verified_operator":"QTS Data Centers","verified_owner":"Blackstone funds (jointly Blackstone Infrastructure Partners and Blackstone Real Estate Income Trust) via QTS Realty Trust, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; access to major fiber providers; Lumen connectivity across QTS campuses","num_buildings":4,"campus_acres":67,"utility_provider":"Xcel Energy (Public Service Company of Colorado)","tax_incentives":"Xcel Energy economic development rate (EDR) applied to the project; broader state data center sales/use tax incentives under debate.","natural_hazard_zone":"low risk"},"1180":{"description":"DataBank DEN2 – Centennial is DataBank’s operational colocation and interconnection facility at 6900 South Peoria Street in Centennial, Colorado, within the company’s Centennial Campus. The site offers 31,510 IT square feet and a 4 MW critical IT load in an approximately 81,000‑square‑foot building.","verified_status":"operational","power_capacity_mw":4,"total_sqft":81000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank DEN2 – Centennial Data Center","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"air-cooled","tier_level":"Tier III equivalent","fiber_providers":"Carrier-neutral; 12 onsite carriers including Cogent, Comcast, DirectLink, Lumen Technologies, Unite Private Networks, Verizon Business, Zayo","num_buildings":2,"campus_acres":11,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (outside 100-year and 500-year floodplains; low-to-moderate flood risk)"},"1181":{"description":"CoreSite MI2 is an operational colocation data center at 2100 NW 84th Avenue in Doral (Miami market) operated by CoreSite, notable for a freestanding, purpose-built design with Category 5 hurricane resiliency and lit-fiber connectivity to MI1 up to 100 Gbps.","verified_status":"operational","power_capacity_mw":4.3,"total_sqft":103000,"year_online":"2000","construction_update":"","recent_news":"Feb 26, 2026: CoreSite’s Miami data centers welcomed Community IX’s FL-IX exchange, expanding interconnection options on the Miami campus.","notable_tenants":"Community IX Holdings (IXP/network presence)","verified_name":"CoreSite MI2 - Miami Data Center","verified_operator":"CoreSite","verified_owner":"American Tower Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":4.5,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida statewide data center sales/use tax exemption under Section 212.08(5)(r), Florida Statutes; MI2 participation not confirmed.","natural_hazard_zone":"Hurricane exposure; facility built to withstand Category 5 conditions with a 185-mph-gust-rated roof. FEMA flood zone not identified here."},"1182":{"description":"Dedicated Server Store Miami Data Center is a colocation facility at 1953 NW 22nd St., Miami, FL 33142, operated by Dedicated Server Store (also listed as Stealth‑ISS Dedicated Server Store), offering about 25,000 sq ft of space and 2.5 MW of premise power. The address is also listed by Cogent as a CNDC carrier‑neutral location.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":25000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Dedicated Server Store – Miami Data Center","verified_operator":"Dedicated Server Store (a brand of Stealth-ISS Group Inc.)","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; lit carriers include Infolink, AT&T, Comcast, Time-Warner, FPL Fibernet, Cogent, Level 3.","num_buildings":1,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida statewide data center sales tax exemption (Section 212.08(5)(r), extended through June 30, 2027). As amended effective August 1, 2025, eligibility requires at least $150 million cumulative capital investment and a minimum critical IT load of 100 MW; this facility is unlikely to qualify.","natural_hazard_zone":"Hurricane-prone region; FEMA Flood Zone AE likely for the immediate area (confirm via Miami-Dade Flood Zone Maps/FEMA MSC)."},"1183":{"description":"ServerPronto operates an operational colocation data center at 3109 Grand Avenue in Miami’s Coconut Grove, offering colocation services and advertising facility-grade security and power/network resiliency. The company states it owns and operates its Miami data center.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ServerPronto Miami Data Center","verified_operator":"ServerPronto","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent on-net; additional providers reported include Level 3, AT&T, Covad","num_buildings":0,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"Hurricane-prone region; FEMA-mapped flood risk; exact site flood zone not confirmed"},"1184":{"description":"The former Terremark/Verizon Doral Regional DC-05 at 1525 NW 98th Court is now Equinix MI6, an operational, carrier-neutral IBX colocation data center in Doral (Miami), Florida.","verified_status":"operational","power_capacity_mw":0,"total_sqft":108336,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix Miami MI6","verified_operator":"Equinix, Inc.","verified_owner":"Equinix LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; Cogent","num_buildings":1,"campus_acres":7.733,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zones AH and X; IBX elevation above 500-year base flood"},"1185":{"description":"Cogent Communications operates a telecom/colocation data center at 3701 NW 82nd Avenue, Doral, Florida, with about 9,760 sq ft of data center space. The facility sits within a ~17,446 sq ft building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":9760,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Doral","verified_operator":"Cogent Communications, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"Tier I","fiber_providers":"Cogent Communications","num_buildings":1,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida statewide data-center sales/use-tax exemption under Fla. Stat. s. 212.08(5)(r) (application via Form DR-1214DCP); no facility-specific certificate found.","natural_hazard_zone":"High Velocity Hurricane Zone (Miami-Dade County hurricane wind exposure); address-specific FEMA flood zone not determined."},"1186":{"description":"Legacy tw telecom colocation/telecom facility at 100 NE 3rd Avenue (Plaza 100) in Fort Lauderdale that is no longer actively listed. Following tw telecom’s acquisition by Level 3 and Level 3’s acquisition by CenturyLink/Lumen, the current Lumen Fort Lauderdale data center presence is at 200 NW 2nd Street rather than the Plaza 100 address.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"tw telecom Fort Lauderdale/Miami Data Center (legacy; listing archived)","verified_operator":"Lumen Technologies (successor to tw telecom; current operation at this address unconfirmed)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.88,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"Hurricane-prone area; evacuation zones designated; exact FEMA flood zone for the parcel not verified"},"1187":{"description":"Project Tango (Central Park Commerce Center) is a planned AI/data-center and industrial campus on roughly 202 acres at 20125 Southern Boulevard in Loxahatchee, owned/developed by interests tied to PBA Holdings; the end user/operator is undisclosed. The latest county review reflects a total build-out around 3,594,564 sq ft (including dedicated data-center space), compared to earlier ~3.7 million sq ft references.","verified_status":"planned","power_capacity_mw":0,"total_sqft":3594564,"year_online":"unknown","construction_update":"No construction start verified. The county postponed prior action and placed Project Tango for July 2026 hearings; media also report the BCC vote was postponed to July.","recent_news":"Recent developments include a June 2026 report of a proposal that could bypass public hearings, a June 15, 2026 lawsuit between landowners over competing applications, and official postponements that set July 2026 hearings for further action.","notable_tenants":"","verified_name":"Project Tango (Central Park Commerce Center)","verified_operator":"Unknown Company","verified_owner":"PBA Holdings Inc. (with WPB Logistics Owner LLC owning ~60 acres of the 202-acre site)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":202.67,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida data center sales tax exemption applicable; reporting suggests PBA Holdings intends to use it for Project Tango.","natural_hazard_zone":"Hurricane-exposed region; FEMA flood zones apply (exact flood zone for the parcel not specified in cited excerpts)."},"1188":{"description":"Carrier-neutral colocation and interconnection facility in the Franklin Exchange building at 655 North Franklin Street, Suite 1000, Tampa, operated by H5 Data Centers (HyscaleIX) following its Feb 2026 acquisition of the site from 365 Data Centers. It serves as a regional interconnection hub with the Tampa Internet Exchange (TPA IX) and numerous on-net carriers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":30400,"year_online":"unknown","construction_update":"","recent_news":"Feb 2, 2026: Novacap and H5 Data Centers launched HyscaleIX Data Centers and announced the acquisition of a portfolio of carrier hotels from 365 Data Centers, including the Tampa facility.","notable_tenants":"TPA IX (Tampa Internet Exchange); multiple on-net carriers (e.g., Arelion, AT&T). No enterprise anchor tenants publicly disclosed.","verified_name":"H5 Data Centers Tampa Data Center (Franklin Exchange), 655 North Franklin Street, Suite 1000, Tampa, FL 33602","verified_operator":"H5 Data Centers","verified_owner":"The Wilson Company (Franklin Exchange building owner/manager); HyscaleIX Data Centers (Novacap + H5 JV) controls the Tampa carrier-hotel asset acquired from 365 Data Centers in Feb 2026.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; on-net examples include Lumen, Zayo, Crown Castle Fiber, Verizon, Hurricane Electric, Capcon Networks, HGTN.net, GTT Communications, Cogent","num_buildings":1,"campus_acres":0,"utility_provider":"Tampa Electric (TECO)","tax_incentives":"Florida statewide data center sales and use tax exemption under s. 212.08(5)(r), extended by HB 7031 to June 30, 2037 (certificate deadline).","natural_hazard_zone":"FEMA Flood Zone B/X (moderate) for 655 N Franklin St; located in an area with defined hurricane evacuation zones"},"1189":{"description":"Carrier-neutral colocation facility in Park Tower at 400 N Tampa St, Suite #1000, operated/marketed by OneColo/WOW! Business, offering a 10,000 sq ft raised-floor environment and hosting the Tampa Internet Exchange (TPAIX) at the address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No named anchor customer tenants are publicly disclosed. Interconnection at this address includes the Tampa Internet Exchange (TPAIX) hosted in the WOW! data center at Park Tower and a Cogent on-net presence; these indicate ecosystem connectivity rather than named customer tenants.","verified_name":"Park Tower (Carrier Hotel at 400 N Tampa Street)","verified_operator":"OneColo; WOW! Business/E Solutions; Cogent Communications; Lumen Technologies (Tampa 4); Lawton‑IS","verified_owner":"Joint venture of City Office REIT, Feldman Equities, and Tower Realty Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; onsite providers include Cogent Communications and Lumen; WOW! Business operates a data center suite; home of TPAIX (Tampa Internet Exchange).","num_buildings":1,"campus_acres":0,"utility_provider":"Tampa Electric (TECO)","tax_incentives":"Florida’s data center sales tax exemption for sub-100MW facilities ended August 1, 2025 (HB 7031); this site would not qualify.","natural_hazard_zone":"Hurricane-prone coastal location; downtown Tampa has high flood risk indicators."},"1190":{"description":"Centersquare TPA1-A (formerly Cyxtera TPA1) is an operational colocation data center at 9310 Florida Palm Drive in Tampa offering 9MW utility power and network-rich connectivity.","verified_status":"operational","power_capacity_mw":9,"total_sqft":96000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare TPA1-A","verified_operator":"Csquare","verified_owner":"","cooling_type":"chilled water","tier_level":"Tier III equivalent design standard (not Uptime Institute certified)","fiber_providers":"Carrier-neutral; Cogent on-net","num_buildings":1,"campus_acres":0,"utility_provider":"Tampa Electric (TECO)","tax_incentives":"Florida sales and use tax exemption for qualifying data center property under §212.08(5)(r), F.S.; post-2025 changes limit eligibility, and sub‑100MW sites may not qualify.","natural_hazard_zone":"Hurricane zone; outside mandatory evacuation zones"},"1191":{"description":"Flexential’s West Tampa colocation data center at 9417 Corporate Lake Drive is operational and offers a 31,600 sq-ft footprint with 1.81 MW of critical power.","verified_status":"operational","power_capacity_mw":1.81,"total_sqft":31600,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential West Tampa Data Center","verified_operator":"Flexential","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications (on-net)","num_buildings":1,"campus_acres":0,"utility_provider":"Tampa Electric (TECO)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (Area of Minimal Flood Hazard); SFHA = No"},"1192":{"description":"Flexential North Tampa is an operational colocation data center at 8350 Parkedge Drive in Tampa, Florida, operated by Flexential. It lists a 60,166 sq ft footprint and 3 MW of critical power and is built to withstand Category 5 hurricanes with 2N UPS and N+1 cooling.","verified_status":"operational","power_capacity_mw":3,"total_sqft":60166,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Tampa - North Data Center","verified_operator":"Flexential","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III-equivalent; not Uptime certified","fiber_providers":"carrier-neutral; on-net includes FiberLight, Cogent","num_buildings":1,"campus_acres":6.88,"utility_provider":"Tampa Electric (TECO)","tax_incentives":"Florida statewide data center sales and use tax exemption (§212.08(5)(r)), including electricity used exclusively at a data center; subject to certification (DR-5DCP).","natural_hazard_zone":"Hurricane-prone region; facility built to withstand Category 5 hurricanes."},"1193":{"description":"Hivelocity Tampa 1 (TPA1) is an operational colocation data center operated by Hivelocity at 8010 Woodland Center Blvd., Suite 700, Tampa, FL, featuring 15,000 sq ft of raised-floor space with N+1 infrastructure and secure, controlled access.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":89758,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Hivelocity Tampa 1 (TPA1) Colocation Data Center","verified_operator":"Hivelocity","verified_owner":"Workspace Property Trust (via WPT Land 2 LP affiliate)","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; carriers include Level 3 (Lumen), Brighthouse Networks; interconnection across Hivelocity Tampa sites lists Level3, Cogent, Telia, Telxius, GTT, TPA-IX, Equinix Miami (NOTA), FLIX.","num_buildings":1,"campus_acres":15.95,"utility_provider":"Tampa Electric (TECO)","tax_incentives":"","natural_hazard_zone":""},"1194":{"description":"Hivelocity’s TPA2 (Tampa 2) is an operational colocation data center at 5908 Hampton Oaks Pkwy, Suite D, Tampa, FL, offering 30,200 square feet of raised-floor space.","verified_status":"operational","power_capacity_mw":3,"total_sqft":30200,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"Sabalcore","verified_name":"Hivelocity Tampa 2 (TPA2) Colocation Data Center","verified_operator":"Hivelocity","verified_owner":"CIP Real Estate LLC","cooling_type":"air-cooled","tier_level":"Tier III equivalent (not Uptime-certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Tampa Electric (TECO)","tax_incentives":"","natural_hazard_zone":"Inland location (~10 miles); FEMA flood zone not confirmed"},"1195":{"description":"Verizon Tampa / XO Tampa is an operational Verizon Communications data center and switch site at 5904‑A Hampton Oaks Parkway (1st floor) in Tampa, Florida, formerly an XO Communications facility. Listings describe it as a Verizon standard data center with controlled access.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Tampa","verified_operator":"Verizon Communications Inc.","verified_owner":"CIP Real Estate","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; Verizon/XO metro and long-haul network","num_buildings":1,"campus_acres":0,"utility_provider":"Tampa Electric (TECO Energy)","tax_incentives":"Florida statewide data center sales/use tax exemption (Section 212.08(5)(r), F.S.) — extended through June 30, 2027 for qualifying data center property.","natural_hazard_zone":"Hurricane zone (Tampa Bay area); FEMA flood zone not specified here"},"1196":{"description":"Ace Host operates a colocation data center in downtown Tampa at 412 E. Madison St; public listings indicate the older 203 N Marion St profile is no longer active.","verified_status":"operational","power_capacity_mw":2,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"June 8, 2026: The 203 N Marion St building was listed for sale; the listing notes the first floor was used as a 3 MW data center.","notable_tenants":"","verified_name":"Ace Host Tampa Data Center (Madison Building), 412 E. Madison St., Suite 1010, Tampa, FL 33602","verified_operator":"Ace Host","verified_owner":"JHS OG LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Ace Host-operated fiber ring/MPLS","num_buildings":1,"campus_acres":0.47,"utility_provider":"Tampa Electric (TECO)","tax_incentives":"Property marketed as located in a Federal Opportunity Zone; no facility-specific abatements identified.","natural_hazard_zone":"FEMA Flood Zone X; facility marketed as rated to withstand Class 4 hurricane strength"},"1197":{"description":"Colocation/private enterprise data center operated by Data-Tech at 7904 Hopi Place in Tampa, offering data and network hosting from its in-house facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":9990,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Data-Tech - Tampa Data Center","verified_operator":"Data-Tech","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; dual fiber entrances; multiple carriers on-site","num_buildings":1,"campus_acres":0,"utility_provider":"Tampa Electric (TECO)","tax_incentives":"Florida statewide data center sales tax exemption in effect through June 30, 2027; eligibility requires $150M cumulative investment (applicability to this facility not confirmed).","natural_hazard_zone":"Hurricane-prone region (Tampa, FL); address-specific FEMA flood zone not determined for 7904 Hopi Place."},"1198":{"description":"Cologix LAK1 is an operational colocation and disaster-recovery data center operated by Cologix at 2850 Interstate Drive in Lakeland, Florida, located at Florida’s geographic high point in a hardened Category 5 facility.","verified_status":"operational","power_capacity_mw":1.2,"total_sqft":105000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cologix LAK1 Data Center","verified_operator":"Cologix","verified_owner":"INDUS Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1199":{"description":"Inland Fiber Data Center is a carrier-neutral colocation facility operated by Inland Fiber & Data in downtown Winter Haven (at/near 199 Avenue B NW), notable for extensively renovated former telecommunications buildings and regional connectivity in Florida’s I‑4 corridor. Public profiles describe over 40,000 sq ft of data center/cloud/disaster recovery space across its primary facilities.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"No facility-specific expansion or regulatory updates in the past six months; the notable activity is leasing listings for connected office space at 199 Avenue B NW posted May–June 2026.","notable_tenants":"","verified_name":"Inland Fiber Data Center","verified_operator":"Inland Fiber & Data","verified_owner":"METRO SIX TEN LLC (Six/Ten LLC)","cooling_type":"chilled water","tier_level":"Tier III/IV equivalent (claimed); no Uptime Institute certification found","fiber_providers":"carrier-neutral; Verizon, Level 3, FPL Fibernet, Bright House","num_buildings":1,"campus_acres":1.15,"utility_provider":"Tampa Electric Company (TECO)","tax_incentives":"No facility-specific incentive identified. Florida’s statewide data center sales/use tax exemption under §212.08(5)(r), F.S., exists but was narrowed in 2025 so facilities under 100 MW IT load no longer qualify.","natural_hazard_zone":"Hurricane/wind exposure; marketing materials cite a hurricane-rated structure and location outside wind-blown debris zones; specific FEMA flood zone not verified."},"1200":{"description":"Carrier-neutral colocation data center operated by Flexential at 4905 Belfort Road, Suite 145, Jacksonville, FL, offering a 35,184 sq ft footprint and 1.39 MW with extensive carrier and cloud connectivity.","verified_status":"operational","power_capacity_mw":1.39,"total_sqft":35184,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Jacksonville Data Center","verified_operator":"Flexential","verified_owner":"LD DI ASSETCO LLC","cooling_type":"air-cooled","tier_level":"Tier 2 Equivalent","fiber_providers":"","num_buildings":1,"campus_acres":5.92,"utility_provider":"JEA","tax_incentives":"","natural_hazard_zone":"Hurricane and tropical storm exposure (Duval County)"},"1201":{"description":"Cologix JAX1 is an operational, network‑neutral colocation data center and Meet‑Me‑Room at 421 West Church Street in downtown Jacksonville, operated by Cologix, featuring about 11,000 sq ft with 5 kW+ per cabinet and 2N UPS/N+1 generator design. It serves as an interconnection hub with 30+ networks; third‑party market data lists approximately 1.0 MW commissioned power.","verified_status":"operational","power_capacity_mw":1,"total_sqft":11000,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"IQ Fiber; no other anchor tenant publicly identified","verified_name":"Cologix JAX1","verified_operator":"Cologix","verified_owner":"SBA Edge (Jax) LLC (SBA Communications)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; onsite Meet-Me-Room (MMR) and carrier hotel at 421 W Church St; multiple carriers present (exact list not publicly enumerated)","num_buildings":1,"campus_acres":0.73,"utility_provider":"JEA","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (area of moderate flood hazard; outside 100-year floodplain)"},"1202":{"description":"Cologix JAX2 is a network-neutral colocation and disaster recovery data center in Jacksonville, Florida, operated by Cologix in a hurricane-rated building with robust interconnection options.","verified_status":"operational","power_capacity_mw":7.5,"total_sqft":125000,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"GATE Petroleum; JEA (emergency operations center / data center build-out at 4800 Spring Park Road)","verified_name":"Cologix JAX2","verified_operator":"Cologix","verified_owner":"Cologix","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; access to 40+ carriers","num_buildings":1,"campus_acres":0,"utility_provider":"JEA (Jacksonville Electric Authority)","tax_incentives":"","natural_hazard_zone":"Hurricane-rated building; outside the 100-year flood zone; Flood Plain Zone 0 noted by listings"},"1203":{"description":"TierPoint Jacksonville is an operational colocation data center at 8324 Baymeadows Way in Jacksonville, Florida, operated by TierPoint. It totals about 120,000 sq ft with roughly 17,200 sq ft of raised floor and features hardened 15-inch reinforced concrete construction with 2N power redundancy.","verified_status":"operational","power_capacity_mw":4.5,"total_sqft":120000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"ScaleMatrix Jacksonville (listed as “Part of TierPoint Jacksonville” at 8324 Baymeadows Way); Jacksonville Jaguars (TierPoint customer reference; not confirmed as onsite tenant).","verified_name":"TierPoint Jacksonville Data Center","verified_operator":"TierPoint, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":12.16,"utility_provider":"JEA (Jacksonville Electric Authority)","tax_incentives":"No facility-specific incentives identified; statewide sales-tax exemption policy has changed, including a 2025 bill to end the exemption for sub-100-MW data centers.","natural_hazard_zone":"FEMA Zone X (neighborhood-level; site-specific panel not confirmed)"},"1204":{"description":"Lumen Jacksonville 1 is an operational Lumen telecom colocation data center at 4814 Philips Highway in Jacksonville, Florida, part of Lumen’s Florida data center portfolio.","verified_status":"operational","power_capacity_mw":0,"total_sqft":24000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Jacksonville 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"4814 PHILLIPS HIGHWAY, L.L.C.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":2.11,"utility_provider":"JEA","tax_incentives":"Florida data center sales/use tax exemption exists (Section 212.08(5)(r)), extended through June 30, 2027; 2025 changes limit eligibility to larger (≥100 MW) data centers. No evidence this facility holds a certificate or qualifies.","natural_hazard_zone":"FEMA Flood Zone D (undetermined flood risk); regional hurricane exposure"},"1205":{"description":"Lumen Jacksonville 2 is a Lumen-operated telecom/colocation data center at 608 W. Adams Street in Jacksonville, Florida. Public listings note about 5,000 sq ft of total space (with N+1 HVAC) and 952 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Jacksonville 2","verified_operator":"Lumen Technologies","verified_owner":"Williams Communications Inc (Lumen Technologies subsidiary)","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (Level 3) network; other carriers available (e.g., Crown Castle)","num_buildings":1,"campus_acres":0.46,"utility_provider":"JEA (Jacksonville Electric Authority)","tax_incentives":"Florida data center sales and use tax exemption (Section 212.08(5)(r), F.S.) in effect through June 30, 2027; 2025 legislation seeks to end the exemption for sub-100 MW data centers.","natural_hazard_zone":"Hurricane evacuation Zones B/C; very low seismic risk; flood zone requires FEMA MSC address check"},"1206":{"description":"CoreSite OR1 is an operational colocation data center at 9701 S. John Young Parkway in Orlando, operated by CoreSite (an American Tower company). The site offers a 129,000+ sq ft facility with interconnection-rich colocation services.","verified_status":"operational","power_capacity_mw":7,"total_sqft":129000,"year_online":"1984","construction_update":"As of June 2, 2026, CoreSite proposed a second data center building at the Orlando campus; an application to modify an existing environmental permit was filed to allow the new building, and approval/construction was not yet indicated.","recent_news":"On June 2, 2026, local reporting said CoreSite is proposing a second data center building at its Orlando campus near John Young Parkway/SR 528; a local update also notes an application to modify an existing environmental permit to allow a second building.","notable_tenants":"Atlantic.Net is publicly documented as providing Orlando colocation housed within CoreSite’s OR1 facility; no end-user anchor tenant is publicly disclosed. Public ecosystem/network participants listed for CoreSite – Orlando (OR1) include Cogent Communications, Florida LambdaRail, Hurricane Electric, and others.","verified_name":"CoreSite OR1 - Orlando Data Center","verified_operator":"CoreSite (an American Tower Company)","verified_owner":"American Tower Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; providers include Century Link, Summit Broadband, CROWN CASTLE, and Atlantic.Net","num_buildings":1,"campus_acres":16,"utility_provider":"Duke Energy Florida","tax_incentives":"Florida data center sales/use tax exemption under Section 212.08(5)(r), extended through June 30, 2027; no OR1-specific award identified.","natural_hazard_zone":""},"1207":{"description":"HostDime Orlando Data Center is HostDime’s privately owned Tier III edge facility at 440 W. Kennedy Blvd Suite 1 in Orlando, Florida, offering a 25,000‑square‑foot data center with complete redundancy in power, network, fire suppression, and cooling.","verified_status":"operational","power_capacity_mw":0,"total_sqft":25000,"year_online":"unknown","construction_update":"No active construction at 440 W. Kennedy Blvd. Separate new Orlando/SuperNova facility under construction with planned completion in Q3 2026 (as of May 5, 2026); groundbreaking was announced on May 19, 2021.","recent_news":"May 5, 2026: HostDime states its new 100,000‑square‑foot Orlando data center will be completed in Q3 2026.","notable_tenants":"","verified_name":"HostDime Orlando Data Center","verified_operator":"HostDime","verified_owner":"SH OTC, LLC","cooling_type":"air-cooled","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy","tax_incentives":"","natural_hazard_zone":"Hurricane-prone region; FEMA flood zone not verified"},"1208":{"description":"Colo Solutions operates a colocation and cloud data center at 100 W. Lucerne Circle, Suite 201 in downtown Orlando. The company emphasizes its long-standing presence in Florida’s original telecom hotel since 1997.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"1997","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Colo Solutions Downtown Orlando","verified_operator":"Colo Solutions, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"Tier IV (claimed; no public Uptime certificate cited)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Orlando Utilities Commission (OUC)","tax_incentives":"","natural_hazard_zone":"Hurricane/wind exposure; FEMA flood zone for 100 W Lucerne Cir not determined here; very low seismic risk"},"1209":{"description":"Lumen Orlando 1 is an operational Lumen-operated colocation/telecom data center at 380 South Lake Destiny Drive in Orlando, offering 35,000 sq ft total with about 4,192 sq ft of colocation space. The site traces back to legacy Level 3 operations.","verified_status":"operational","power_capacity_mw":0,"total_sqft":35000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Orlando 1","verified_operator":"Lumen","verified_owner":"Lumen Technologies (via subsidiary)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen/Level 3 on-net; specific third-party carrier list not determinable","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Seismic Zone 2 construction; hurricane-rated facility"},"1210":{"description":"Lumen Orlando 2 is an operational Lumen Technologies colocation/data center at 510 W. Columbia Street, Orlando, Florida, totaling 7,400 sq ft with 4,038 sq ft of raised‑floor space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":7400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Orlando 2","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Orlando Utilities Commission (OUC)","tax_incentives":"Florida provides a statewide sales and use tax exemption for qualifying data centers (extended through June 30, 2027); eligibility requires high capital investment (e.g., $150M over 5 years). Applicability to this facility is unconfirmed.","natural_hazard_zone":"Hurricane/tropical-storm exposure; consult FEMA Flood Map Service Center for exact flood zone for 510 W Columbia St."},"1211":{"description":"Spiderhost Orlando Data Center is a colocation/hosting facility operated by Spiderhost at 142 West Lakeview Avenue, Lake Mary, FL, described as Tier I infrastructure with redundant carrier connections, UPS, an onsite diesel generator, CCTV, and 24x7x365 support. The listing locates and characterizes the site but does not publish capacity figures.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No current facility-specific anchor tenant is publicly disclosed. Siemens was cited in 2006 industry news as a Spiderhost customer, but not verified as a current tenant at this facility.","verified_name":"Spiderhost – Orlando Data Center","verified_operator":"Spiderhost Inc.","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier I (directory-reported; no Uptime certification)","fiber_providers":"carrier-neutral; multiple carriers/Tier 1 providers (names not disclosed)","num_buildings":1,"campus_acres":1.23,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"No facility-specific incentive identified; Florida’s generic data-center sales/use tax exemptions exist but recent changes limit sub-100 MW eligibility.","natural_hazard_zone":"FEMA Flood Zone X; hurricane-prone region (Central Florida)"},"1212":{"description":"Former SunGard Availability Services Orlando Workgroup/disaster-recovery data center at 300 Primera Blvd., Suite 308, Lake Mary, FL, historically listed at 32,000 sq ft; the suite is currently marketed as general office space, indicating it is no longer an active data center.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":32000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Former SunGard Orlando Data Center (workplace recovery) — 300 Primera Blvd., Suite 308, Lake Mary, FL","verified_operator":"No current operator verified; legacy operator was SunGard (workplace recovery) — the lease was rejected in 2022, and Suite 308 is now listed as available.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE"},"1213":{"description":"A colocation data center operated by Tel-NetworksUSA, LLC at the DeBary Business Center, 885 S Charles Richard Beall Blvd (US Hwy 17-92) in DeBary, FL, offering half to full-sized colocation cabinets.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Tel-Networks Data Center","verified_operator":"Tel-NetworksUSA, LLC","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida state sales/use tax exemption for data centers is restricted as of Aug 1, 2025; facilities <100 MW IT load and below $150M cumulative investment do not qualify.","natural_hazard_zone":"FEMA Flood Zone X; inland hurricane exposure (Volusia County evacuation zones A–E)"},"1214":{"description":"Communication Square at 7108 S Kanner Hwy, Stuart, FL is listed in data center directories and operated by Communication Square, a Microsoft-focused managed IT/cloud services provider; the listings emphasize services (e.g., dedicated/virtual servers) rather than facility specs. No authoritative source publishes this site’s power capacity, footprint, or opening year.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Communication Square","verified_operator":"Communication Square LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Florida Power & Light Company","tax_incentives":"","natural_hazard_zone":"Hurricane and storm-surge exposure area (Stuart, Martin County, FL). Parcel-specific FEMA flood-zone not determined from public pages cited."},"1215":{"description":"Data Shelter DS1 was a proposed Tier IV-designed colocation/data-center retrofit by Data Shelter, LLC in a 1964 AT&T/U.S. Department of Defense Cold War-era bunker at 2299 S Rock Rd, Fort Pierce, FL. It does not appear to be operating; marketplace pages describe an announced retrofit and local press reported the bunker was recently purchased in 2024.","verified_status":"decommissioned","power_capacity_mw":0.85,"total_sqft":17000,"year_online":"unknown","construction_update":"Dec 4, 2024: Local press reported the Cold War–era bunker at 2299 S Rock Rd was recently purchased. Earlier, on Feb 27, 2024, listings highlighted its Tier IV design pedigree. No active data-center construction verified.","recent_news":"","notable_tenants":"","verified_name":"Data Shelter DS1","verified_operator":"Data Shelter, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"Uptime Institute Tier IV Design Certification","fiber_providers":"","num_buildings":1,"campus_acres":5.85,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Hurricane-prone region; FEMA flood risk (zone not specified)"},"1216":{"description":"Lumen Daytona Beach 1 is an operational Lumen telecom colocation/data center at 111 N Segrave St, Daytona Beach, FL, offering about 10,000 sq ft of data-center space within an 11,204‑sq‑ft building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":11204,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Daytona Beach 1","verified_operator":"Lumen Technologies","verified_owner":"Lumen Technologies (property held by subsidiary Williams Communications/WilTel lineage)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Lumen (Level 3); alternate carrier networks available","num_buildings":1,"campus_acres":0.46,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida data center property sales & use tax exemption under Section 212.08(5)(r), F.S.; facility likely below statutory thresholds (capital investment and MW).","natural_hazard_zone":"FEMA Flood Zone A (100-year floodplain); Hurricane-prone coastal Florida (Volusia County)"},"1217":{"description":"SkyLink Naples is an operational colocation and cloud data center operated by SkyLink Data Centers at 801 Orchid Drive in Naples, Florida, featuring redundant power infrastructure and compliance-focused services.","verified_status":"operational","power_capacity_mw":1,"total_sqft":100000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SkyLink - Naples","verified_operator":"SkyLink Data Centers LLC","verified_owner":"801 ORCHID LLC","cooling_type":"unknown","tier_level":"N+1 cooling and N+1 UPS redundancy reported; no Uptime Institute Tier certification found","fiber_providers":"Automation Exchange; HyperFiber","num_buildings":1,"campus_acres":0.6,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"Hurricane/coastal-flood exposure area; marketed as above 500-year floodplain (~40+ ft elevation) and 200 mph wind rating; address-specific FEMA zone not cited"},"1218":{"description":"Lumen Fort Myers 1 is a Lumen-operated telecom/colocation data center at 1523 Seaboard Street, Fort Myers, FL. DataCenterMap lists 12,000 sq ft total space with 1,538 sq ft of colocation space and shows it is distinct from Lumen Fort Myers 2 at 1547 Seaboard Street.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Fort Myers 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen/Level 3 on-net","num_buildings":1,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida statewide data center sales-tax exemption in effect; applicability to this facility not confirmed.","natural_hazard_zone":"FEMA Flood Zone X"},"1219":{"description":"Lumen Fort Myers 2 is a Lumen-operated telecom colocation/data center located at 1547 Seaboard St, Fort Myers, Florida; marketplace profiles confirm the address and that the site is in operation, though some listings refer to the same address as Fort Myers 1.","verified_status":"operational","power_capacity_mw":0,"total_sqft":6835,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Fort Myers 2","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen backbone","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Florida narrowed its data-center sales-tax exemption in 2025 to exclude sub-100 MW IT load facilities (effective Aug. 1, 2025). No site-specific abatement identified.","natural_hazard_zone":"High hurricane and storm-surge exposure area; confirm address-specific FEMA flood zone via FEMA MSC and consult Lee County evacuation zones."},"1220":{"description":"SD Data Center is an operational enterprise/colocation facility in Melbourne, Florida, operated by Satcom Direct (now part of Gogo following its December 2024 acquisition). The data center was founded in 2010.","verified_status":"operational","power_capacity_mw":1,"total_sqft":24851,"year_online":"2010","construction_update":"","recent_news":"Jan 2026: The 8615/8635 Holiday Springs Road campus (which includes the SD Data Center) was listed for $32,000,000.","notable_tenants":"","verified_name":"SD Data Center","verified_operator":"Satcom Direct (a Gogo subsidiary)","verified_owner":"Jensen South LLC","cooling_type":"air-cooled","tier_level":"Tier III","fiber_providers":"","num_buildings":2,"campus_acres":15.75,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone A; hurricane-prone region (Florida Space Coast)"},"1221":{"description":"ColoBarn Melbourne Data Center is an operational colocation facility operated by ColoBarn (Data Management Associates of Brevard) at 3225 Jordan Boulevard in Malabar, Florida, serving as the company’s Melbourne Data Center & Headquarters. The site lists 60,000 sq ft of space with 4,000 sq ft of raised-floor colocation area.","verified_status":"operational","power_capacity_mw":0,"total_sqft":60000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ColoBarn Melbourne Data Center & Headquarters","verified_operator":"ColoBarn (Data Management Associates of Brevard, Inc.)","verified_owner":"Data Management Associates of Brevard, Inc. d/b/a ColoBarn","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Tier-1 connectivity with diverse entry; specific on-net carriers not publicly disclosed","num_buildings":1,"campus_acres":0,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"","natural_hazard_zone":"Hurricane-prone region (Florida); parcel-specific FEMA flood zone not determinable"},"1222":{"description":"Creative Network Innovations operates a colocation data center in Melbourne, Florida; directories place it at 6905 N. Wickham Rd and describe Tier III infrastructure, while CNI advertises active data‑center colocation services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Creative Network Innovations CNI Melbourne Data Center","verified_operator":"Creative Network Innovations","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":5.94,"utility_provider":"Florida Power & Light (FPL)","tax_incentives":"Florida’s statewide data center sales and use tax exemption is in place through June 30, 2027, but 2025 legislation moves to end the incentive for sub-100 MW critical IT load sites, making this facility unlikely to qualify.","natural_hazard_zone":"Hurricane zone; Suntree neighborhood shows minor flood risk over 30 years."},"1223":{"description":"EdgeConneX TAL01 / EDCTAL01 is an operational edge colocation data center at 1531 Commonwealth Business Drive, Units 404-408, Tallahassee, Florida, operated by EdgeConneX. It is a purpose-built edge facility with an 11,810 sq ft footprint and supports high-density deployments (20+ kW per cabinet).","verified_status":"operational","power_capacity_mw":0.25,"total_sqft":11810,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX Tallahassee (EDCTAL01 / TAL01)","verified_operator":"EdgeConneX","verified_owner":"Garber Road Leasing Partnership LLP","cooling_type":"unknown","tier_level":"Tier III designed (not Uptime-certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"City of Tallahassee Utilities","tax_incentives":"Florida statewide data center sales/use tax exemption exists under Section 212.08(5)(r), extended through June 30, 2027; no facility-specific certification located.","natural_hazard_zone":"FEMA Flood Zone A (SFHA); regional exposure to hurricanes, tornadoes, and lightning."},"1224":{"description":"Pavlov Media Tallahassee is an operational colocation data center operated by Pavlov Media at 215 W Carolina St, Tallahassee, Florida. The facility traces its legacy to Velocity Online, which Pavlov Media acquired in 2019.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Pavlov Media Tallahassee","verified_operator":"Pavlov Media","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Pavlov Media (includes 45-mile Tallahassee fiber ring acquired from Dial Communications)","num_buildings":0,"campus_acres":0,"utility_provider":"City of Tallahassee Utilities","tax_incentives":"","natural_hazard_zone":"Hurricane/wind exposure; FEMA flood zone for 215 W Carolina St not confirmed; low seismic risk"},"1225":{"description":"Lumen Tallahassee (Tallahassee 1) is a Lumen Technologies telecom/colocation data center at 619 Mabry Street, Tallahassee, FL. Third‑party listings indicate roughly 8,000 sq ft total space with dedicated colocation space; site-level MW capacity isn’t publicly specified.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Tallahassee 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"City of Tallahassee Utilities","tax_incentives":"","natural_hazard_zone":""},"1226":{"description":"Lumen Tallahassee 2 is a Lumen-operated telecom colocation data center at 1416 S Adams Street in Tallahassee, Florida, offering about 8,000 sq ft total space (2,640 sq ft of colocation) with N+1 HVAC. It forms part of Lumen’s network colocation footprint.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Tallahassee 2","verified_operator":"Lumen Technologies (Lumen)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"City of Tallahassee Utilities","tax_incentives":"Florida data center sales/use tax exemption active through June 30, 2027; since Aug 1, 2025, only facilities with ≥100 MW IT load qualify. No site-specific incentives confirmed.","natural_hazard_zone":"FEMA Flood Zone X (low-to-moderate flood risk); Florida hurricane/wind exposure; low seismic risk"},"1227":{"description":"Carrier-hotel/colocation facility in the Franklin Exchange building at 655 N. Franklin St., Tampa, now operated under the HyscaleIX platform formed by H5 Data Centers and Novacap after acquiring the Tampa carrier hotel from 365 in Feb 2026; it remains a major interconnection hub (TPA IX, ~25 carriers).","verified_status":"operational","power_capacity_mw":1.6,"total_sqft":31000,"year_online":"unknown","construction_update":"","recent_news":"Feb 2–3, 2026: H5 Data Centers and Novacap launched HyscaleIX and acquired three carrier hotels from 365 Data Centers, including Tampa.","notable_tenants":"Uniti Fiber; hosts the Tampa Internet Exchange (TPA IX); ~25 on-net carriers.","verified_name":"H5 Data Centers Tampa","verified_operator":"H5 Data Centers (HyscaleIX Data Centers JV with Novacap)","verified_owner":"The Wilson Company (TWC FIFTY EIGHT LTD)","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; ~25 on-net carriers; hosts Tampa Internet Exchange (TPA IX).","num_buildings":1,"campus_acres":0,"utility_provider":"Tampa Electric (TECO)","tax_incentives":"Florida sales/use tax exemption for data centers now limited to facilities with ≥100 MW critical IT load and ≥$150M cumulative investment; this site likely ineligible under current law.","natural_hazard_zone":"FEMA Flood Zone B/X (shaded) – moderate flood hazard; hurricane-prone Gulf Coast region."},"1228":{"description":"OneColo operates a colocation data center at 400 N Tampa St in Tampa, Florida, providing dedicated server and colocation services. Industry listings for the same facility address indicate about 10,000 sq ft of raised colocation floor within Park Tower.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"OneColo Tampa Data Center","verified_operator":"OneColo","verified_owner":"CIO Park Tower Limited Partnership (affiliates of City Office REIT, Feldman Equities, and Tower Realty Partners JV that acquired Park Tower in 2016)","cooling_type":"unknown","tier_level":"","fiber_providers":"WOW Business / E Solutions (in-building presence at 400 N Tampa St). Additional carriers likely present.","num_buildings":1,"campus_acres":0,"utility_provider":"Tampa Electric (TECO)","tax_incentives":"","natural_hazard_zone":"Hurricane/storm surge exposure; FEMA flood zone not confirmed"},"1229":{"description":"Hivelocity Tampa 2 (TPA2) is an operational Hivelocity colocation/bare‑metal data center at 5908 Hampton Oaks Pkwy, Suite D, Tampa, FL, offering 30,200 sq ft of raised-floor space with N+1 design. Hivelocity notes 100% network uptime since its 2016 commissioning.","verified_status":"operational","power_capacity_mw":1.2,"total_sqft":30200,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Hivelocity Tampa 2 (TPA2) Colocation Data Center","verified_operator":"Hivelocity","verified_owner":"Redstone Investments","cooling_type":"unknown","tier_level":"Tier III (not Uptime-certified)","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Florida statewide data center sales/use tax exemption exists under Section 212.08, Florida Statutes; no TPA2-specific certificate or eligibility evidence found.","natural_hazard_zone":"Hurricane exposure area; FEMA flood zone for the exact parcel not verified."},"1230":{"description":"EdgeConneX EDCTAL01 (TAL01) is an operational edge colocation data center operated by EdgeConneX at 1531 Commonwealth Business Dr, Units 404–408, Tallahassee, FL, offering an 11,810 sq ft facility with N+1/concurrently maintainable power and 3,778 sq ft of raised floor.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":11810,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX TAL01 Tallahassee Data Center (EDCTAL01)","verified_operator":"EdgeConneX","verified_owner":"GARBER ROAD LEASING PARTNERSHIP LLP","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5.98,"utility_provider":"City of Tallahassee Utilities","tax_incentives":"","natural_hazard_zone":"Hurricane/wind exposure for North Florida; FEMA flood zone not determined from public map excerpts; low seismic risk"},"1231":{"description":"AlohaNAP (HAII1) is an operational, carrier-neutral colocation and interconnection data center at 91-340 Farrington Hwy in Kapolei, operated by 1547 Critical Systems Realty and co-owned with Harrison Street. It is notable for its resilient Oahu siting (160 feet above sea level, 2 miles inland) and for hosting an AWS Direct Connect site.","verified_status":"operational","power_capacity_mw":1.2,"total_sqft":10200,"year_online":"2015","construction_update":"Oct 2024: Phase 1 expansion announced to begin immediately. Target after Phase 1: 22,800 sq ft and 2.7 MW total. Feb 25, 2026: operator states a 9,000 sq ft, 1.5 MW expansion is underway, set to double capacity.","recent_news":"Feb 25, 2026: Operator video states a 9,000 sq ft, 1.5 MW expansion is underway and set to double capacity.","notable_tenants":"No anchor tenant or major customer publicly disclosed. Publicly named on-site connectivity includes AWS Direct Connect at AlohaNAP.","verified_name":"AlohaNAP / HAII1","verified_operator":"fifteenfortyseven Critical Systems Realty (1547)","verified_owner":"Harrison Street and fifteenfortyseven Critical Systems Realty (1547)","cooling_type":"unknown","tier_level":"Tier III (design standard; no Uptime certification cited)","fiber_providers":"carrier-neutral; AWS Direct Connect node; connections to global and local fiber","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Outside flood and tsunami zones; inland and elevated (~2 miles inland, ~160 ft ASL). Regional hurricane/seismic exposure persists."},"1232":{"description":"Hawaiian Telcom’s Endeavor Data Center is an operational colocation facility at 2339 Kamehameha Highway in Honolulu, offering carrier‑neutral colocation and related services with redundant power infrastructure. It is one of Hawaiian Telcom’s data centers (Endeavor on Oahu) connected by fully redundant fiber between islands.","verified_status":"operational","power_capacity_mw":0,"total_sqft":6500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Hawaiian Telcom - Endeavor Data Center (Endeavor – Oahu)","verified_operator":"Hawaiian Telcom Services Company, Inc.","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"Hawaiian Telcom provides fully redundant inter‑island fiber connectivity between Endeavor (Oahu) and Kawaihae (Island of Hawaii).","num_buildings":1,"campus_acres":3.12,"utility_provider":"Hawaiian Electric Company (HECO)","tax_incentives":"General Enterprise Zone (EZ) benefits exist in Urban Honolulu, including areas from the airport through lower Kalihi; site‑specific EZ enrollment for this facility is not confirmed.","natural_hazard_zone":"FEMA Flood Zone AE; regional hurricane exposure; USGS notes a lower but significant chance of damaging shaking around Honolulu."},"1233":{"description":"Servpac MTP Data Center is a Servpac-operated colocation facility in Mililani Technology Park, notable as a Tier IV design site with 2N power and continuous cooling engineered for 99.999% uptime, encompassing roughly 30,000 sq ft.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":30000,"year_online":"2020","construction_update":"Building 2 expansion: Groundbreaking Jan 22, 2026 (Servpac); PR on Feb 24, 2026 confirms 15,500+ sq ft addition; expansion cost $13m and aimed to double IT capacity; expected completion Q2 2026; no public confirmation of completion as of 2026-06.","recent_news":"Jan–Feb 2026: Servpac broke ground on Building 2 at MTP to add 15,500+ sq ft (a $13m expansion aimed at doubling IT capacity), with completion targeted for Q2 2026. Apr 7, 2026: Servpac announced it will host Microsoft Azure Local at the Tier IV Mililani Technology Park data center.","notable_tenants":"American Savings Bank (ASB); Microsoft Azure Local (hosted at Servpac’s Tier IV Mililani Technology Park data center for Hawai‘i customers)","verified_name":"MTP Data Center","verified_operator":"Servpac Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"Uptime Institute Tier IV (Design)","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Hawaiian Electric","tax_incentives":"Mililani Technology Park advertises state incentives including exemption from general excise tax for seven years and an income tax credit starting at 80% in the first year (with additional program benefits subject to qualification).","natural_hazard_zone":"Elevated inland location (~850 ft above sea level, ~10 miles inland); reduced flood/tsunami exposure; hurricane exposure with Building 2 marketed as Category 5 hurricane resilient."},"1234":{"description":"Servpac Puahale Data Center is a Servpac-operated colocation facility at 1931 N King St in Honolulu that offers secure colocation with local support and edge-ready capabilities. It serves local businesses from an operator-run site in Honolulu.","verified_status":"operational","power_capacity_mw":0,"total_sqft":34585,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Servpac Puahale Data Center","verified_operator":"Servpac Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Servpac fiber network","num_buildings":0,"campus_acres":0,"utility_provider":"Hawaiian Electric Company (HECO)","tax_incentives":"Hawaii: No known data center tax incentive legislation; no facility-specific incentives identified.","natural_hazard_zone":"Outside flood and tsunami zones (per operator)."},"1235":{"description":"Cogent Communications operates a data center at 96-1402 Waihona Place in Pearl City, Oʻahu, a 10,322 sq ft facility with 0.80 MW of protected power. The site serves wholesale colocation needs at this address.","verified_status":"operational","power_capacity_mw":0.8,"total_sqft":10322,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Pearl City Data Center (96-1402 Waihona Place)","verified_operator":"Cogent Communications","verified_owner":"Cogent Communications","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":2.5,"utility_provider":"Hawaiian Electric","tax_incentives":"Pearl City-Waipahu is covered by Hawaii’s Enterprise Zones (EZ) program; eligible enrolled firms may receive State and County benefits.","natural_hazard_zone":"FEMA Flood Zone D; tsunami/hurricane exposure context for O‘ahu"},"1236":{"description":"The University of Hawaii Information Technology Center at 2520 Correa Road is a six-story, ~74,000 sq ft enterprise IT/data center operated by UH Information Technology Services that hosts UH’s enterprise systems for all 10 campuses and includes an 8,000 sq ft data hall with battery and generator backup.","verified_status":"operational","power_capacity_mw":0,"total_sqft":74000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"University of Hawaii enterprise IT systems serving all 10 UH campuses; UH departments/teams using ITS co-location and hosted services; State of Hawaii Office of Enterprise Technology Services (per 2016 initiative to use the UH IT Center data center).","verified_name":"University of Hawaii Information Technology Center","verified_operator":"University of Hawaii Information Technology Services (ITS)","verified_owner":"University of Hawaii","cooling_type":"chilled water","tier_level":"Tier II","fiber_providers":"UH GigaPOP, CENIC, Pacific Northwest GigaPOP (PNWGP), PacificWave, Internet2","num_buildings":1,"campus_acres":0,"utility_provider":"Hawaiian Electric","tax_incentives":"","natural_hazard_zone":"Hurricane zone (building hardened to Category 3); Manoa Valley flash flood risk"},"1237":{"description":"Maui High Performance Computing Center (MHPCC) DSRC is a DoD Supercomputing Resource Center in Kihei, Hawaii, operated by the University of Hawaii under contract to the Air Force Research Laboratory and located at 550 Lipoa Parkway; it was established in 1993.","verified_status":"operational","power_capacity_mw":0,"total_sqft":31337,"year_online":"1993","construction_update":"Apr–May 2026: SAM.gov notes a MILCON project in progress to replace the 33,000‑sq‑ft office facility at 550 Lipoa Parkway with a new two‑story, 40,000‑sq‑ft office facility on approximately 10 acres; move‑in date TBD.","recent_news":"Apr–May 2026: SAM.gov states a MILCON project is in progress to replace the existing 33,000‑sq‑ft office facility at 550 Lipoa Parkway with a new two‑story, 40,000‑sq‑ft office facility; move‑in date not yet determined. MHPCC’s news page shows routine 2026 operational notices.","notable_tenants":"Not a commercial colocation facility; publicly identified users are the U.S. Department of Defense High Performance Computing Modernization Program (HPCMP) and Air Force Research Laboratory (AFRL) science-and-engineering users.","verified_name":"Maui High Performance Computing Center (MHPCC) DSRC","verified_operator":"University of Hawai‘i (Applied Research Laboratory) under contract to AFRL/HPCMP","verified_owner":"U.S. Department of Defense – U.S. Air Force Research Laboratory (AFRL)","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"Defense Research and Engineering Network (DREN)","num_buildings":0,"campus_acres":10.7,"utility_provider":"Maui Electric Company (Hawaiian Electric)","tax_incentives":"Area programs include Enterprise Zone benefits (e.g., general excise tax exemption and state income-tax credits) promoted by Maui Economic Development Board.","natural_hazard_zone":"unknown exact parcel designation (use Maui County Flood Zone Viewer and Hawaii tsunami-evacuation maps for parcel-level verification)"},"1238":{"description":"Cogent Communications’ Pearl City colocation data center at 96-1402 Waihona Place provides 0.80 MW of protected power across 10,322 sq ft. The site is a former Sprint facility Cogent acquired from T‑Mobile in 2022 and was marketed for sale in 2025.","verified_status":"operational","power_capacity_mw":0.8,"total_sqft":10322,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Hawaiian Tel, Lumen, and Spectrum (on-site carriers); no publicly named anchor colocation tenant.","verified_name":"Cogent Data Center - Hawaii","verified_operator":"Cogent Communications","verified_owner":"Cogent Communications (via Cogent Fiber, LLC)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; Hawaiian Telcom, Lumen, Spectrum","num_buildings":2,"campus_acres":2.5,"utility_provider":"Hawaiian Electric Company","tax_incentives":"Located within the City & County of Honolulu Enterprise Zone area that includes Pearl City–Ewa–Central Oahu; eligible businesses may receive up to 7 years of Hawaii General Excise Tax exemption and state income tax credits (subject to program requirements).","natural_hazard_zone":"FEMA Flood Zone D; engineered for hurricane-force winds"},"1239":{"description":"Legacy State of Hawaii enterprise data center operated by the Office of Enterprise Technology Services (ETS) in the basement of the Kalanimoku Building at 1151 Punchbowl Street, Honolulu. It is an aging, flood‑vulnerable facility that ETS is migrating away from, with complete decommissioning targeted by 2026.","verified_status":"operational","power_capacity_mw":0,"total_sqft":7000,"year_online":"unknown","construction_update":"May 2025: ETS reported contractor work analyzing a new uninterrupted power supply and tracing cables under the 7,000‑square‑foot floor as part of ongoing decommissioning; ETS continues to target complete decommissioning by 2026.","recent_news":"","notable_tenants":"","verified_name":"Kalanimoku Data Center (State of Hawaii ETS primary data center, Room B-30, Kalanimoku Building)","verified_operator":"State of Hawaii Office of Enterprise Technology Services (ETS)","verified_owner":"State of Hawaii / Department of Accounting and General Services (DAGS)","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5.29,"utility_provider":"Hawaiian Electric (HECO)","tax_incentives":"","natural_hazard_zone":"Flood risk and tsunami evacuation zone exposure (downtown Honolulu); basement location vulnerable."},"1240":{"description":"MHPCC DSRC is an AFRL high‑performance computing center in Kihei, Hawai‘i, managed by the University of Hawai‘i under contract to AFRL and operated as one of the DoD’s Supercomputing Resource Centers in the HPCMP. Public records list the 550 Lipoa Parkway facility as 31,337 sq ft, and an LBNL case study reports a 5,000‑sq‑ft data center area with 500 kW of IT load.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":31337,"year_online":"1993","construction_update":"","recent_news":"Jan 21–22, 2026: The University of Hawaii was awarded an $11,980,000 contract for the Pacific Architecture for Rapid Space Exploitation and Control; local reporting states it supports the Maui High Performance Computing Center.","notable_tenants":"U.S. Department of the Air Force / Air Force Research Laboratory (AFRL); users are DoD High Performance Computing Modernization Program (HPCMP) customers.","verified_name":"Maui High Performance Computing Center (MHPCC) DoD Supercomputing Resource Center (DSRC)","verified_operator":"University of Hawai‘i (ARL at UH), operating the MHPCC DSRC under contract to AFRL/HPCMP","verified_owner":"University of New Mexico","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"Defense Research and Engineering Network (DREN)","num_buildings":0,"campus_acres":0,"utility_provider":"Hawaiian Electric (Maui County)","tax_incentives":"Enterprise Zone incentives are available in Maui County for eligible businesses; no facility-specific award confirmed.","natural_hazard_zone":"FEMA Flood Zone B/X (area of moderate flood hazard); coastal Maui is exposed to tsunami/hurricane risk."},"1241":{"description":"Cologix DSM1 is an operational, network‑neutral colocation/carrier‑hotel facility in Des Moines’ Financial Center, acquired from Connect Des Moines in June 2024, offering ~4,000 sq ft and 600 kW of power. Cologix currently lists the address as 606 Walnut Street, while other official materials reference the same Financial Center location as 666 Walnut Street.","verified_status":"operational","power_capacity_mw":0.6,"total_sqft":4000,"year_online":"unknown","construction_update":"Mar 21, 2025: Cologix highlighted plans for an additional 8,000 sq ft of space and 1 MW of power for DSM1; no evidence of active construction or permitting since.","recent_news":"","notable_tenants":"Public interconnection participants include DesMoinesIX and Cogent Communications; no anchor/customer tenants are publicly disclosed.","verified_name":"Cologix DSM1","verified_operator":"Cologix","verified_owner":"Lawmark Capital","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; 25+ unique networks; direct access to DesMoinesIX internet exchange","num_buildings":1,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa data center sales and use tax incentives (exemption or partial refund for qualifying purchases upon eligibility).","natural_hazard_zone":"Low risk (FEMA Flood Zone X; low seismic; moderate tornado exposure)."},"1242":{"description":"Cologix DSM2 is an operational digital‑edge colocation data center operated by Cologix at 1205 Technology Parkway in Cedar Falls, Iowa (Cedar Valley region). It delivers secure, low‑latency connectivity for the Des Moines/Cedar Valley market.","verified_status":"operational","power_capacity_mw":1,"total_sqft":24000,"year_online":"2004","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cologix DSM2","verified_operator":"Cologix","verified_owner":"Cologix","cooling_type":"Glycol-cooled","tier_level":"","fiber_providers":"Carrier-neutral; 12 unique network options; 3 diverse fiber entry points; connected to Cologix DSM1 via a diverse fiber ring.","num_buildings":1,"campus_acres":4.03,"utility_provider":"Cedar Falls Utilities","tax_incentives":"Iowa data center sales and use tax incentives are available to qualifying projects; full exemptions historically require large investments (e.g., $200M+). Cedar Falls Technology Park materials reference tax abatement for qualifying projects, but no DSM2-specific incentive is publicly confirmed.","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard)"},"1243":{"description":"Aureon Downtown (the 616 Data Center) is Aureon’s operational colocation facility at 616 10th Street in Des Moines, Iowa, offering carrier-diverse connectivity and 24/7 operations. Aureon lists 30,000 total square feet and a 99.999% uptime SLA for the site.","verified_status":"operational","power_capacity_mw":1,"total_sqft":30000,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"616 Data Center","verified_operator":"Aureon","verified_owner":"IOWA NETWORK SERVICES INC","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; multiple route-diverse fiber entrances; connectivity to 666 Walnut; ecosystem includes OMNITEL (AS62886), South Front Networks (AS397326), and QCIX.","num_buildings":1,"campus_acres":0.577,"utility_provider":"","tax_incentives":"Iowa statewide data center sales/use tax incentives are available for qualifying investments; HF 976 updated administration and scope in 2025. No facility-specific award identified.","natural_hazard_zone":"Outside FEMA 500-year floodplain; low seismic risk; tornado‑resilient design."},"1244":{"description":"LightEdge Des Moines Data Center #1 (Altoona I) is an operational LightEdge colocation facility at 1435 Northridge Circle, Altoona, Iowa, opened in 2007, with about 30,000 sq ft and roughly 2.0 MW of critical power.","verified_status":"operational","power_capacity_mw":2,"total_sqft":30000,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"LightEdge Des Moines Data Center #1 / Altoona I","verified_operator":"LightEdge","verified_owner":"LightEdge; corporate parent: GI Partners","cooling_type":"air-cooled","tier_level":"Tier III-equivalent / concurrently maintainable (no public Uptime certification cited)","fiber_providers":"carrier-neutral / carrier-agnostic","num_buildings":2,"campus_acres":7.31,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa data center sales/use tax incentives for qualifying facilities (state program).","natural_hazard_zone":"FEMA Flood Zones B and X (moderate risk)"},"1245":{"description":"LightEdge Des Moines Data Center #2 (Altoona II) is an operational LightEdge colocation and hybrid‑cloud facility at 1401 Northridge Circle, Altoona, Iowa. Opened in 2017 as the company’s second Altoona site, it has expanded from its initial build to roughly 73,000 sq ft today.","verified_status":"operational","power_capacity_mw":3.6,"total_sqft":73000,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"LightEdge Des Moines Data Center #2 (Altoona II)","verified_operator":"LightEdge Solutions","verified_owner":"GI Partners (via GI Data Infrastructure Fund)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":7.3,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa data center sales and use tax exemptions for qualifying data centers.","natural_hazard_zone":"Outside 500-year floodplain; tornado-resilient construction; generally low seismic risk. Nearby parcel in FEMA Zones B/X (moderate)."},"1246":{"description":"Ark Data Centers operates a colocation facility at 5055 Rec Drive in Marion (Cedar Rapids market), a 19,000+ sq ft, concurrently maintainable site serving enterprise workloads. The facility is purpose-built and marketed with approximately 10,000 sq ft of conditioned data hall space.","verified_status":"operational","power_capacity_mw":0.81,"total_sqft":19000,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Ark Data Centers Cedar Rapids (Marion) Data Center","verified_operator":"Ark Data Centers","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III-equivalent (concurrently maintainable)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":10.03,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"High-wind exposure area; building designed to withstand 160 mph winds (tornado-resistant construction)."},"1247":{"description":"Enseva Hiawatha is an operational, multi-tenant colocation/private cloud data center operated by Enseva at 755 Metzger Dr, Hiawatha, Iowa, described by the operator as surpassing Tier 4 specifications. Public facility directories list it as operational with established specifications.","verified_status":"operational","power_capacity_mw":4,"total_sqft":17000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"Iowa Health System; Professional Office Services (POS)","verified_name":"Enseva Hiawatha Datacenter","verified_operator":"Enseva LLC","verified_owner":"","cooling_type":"unknown","tier_level":"Tier IV equivalent design (marketing claim; not Uptime-certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":4.44,"utility_provider":"Alliant Energy","tax_incentives":"City of Hiawatha incentives supported locating the data center in the Corridor metro area.","natural_hazard_zone":"Regional tornado exposure (Linn County, IA); facility marketed as built to withstand extreme weather. Specific FEMA flood zone not confirmed."},"1248":{"description":"An operational colocation data center at 2701 Devils Glen Rd, Bettendorf, Iowa, operated by Bluebird Fiber (formerly Bluebird Network). The site is the former ColoHub facility and is listed in current directories for the Quad Cities location, with modern specs differing from the earlier 57,000 sq ft/6 MW descriptions.","verified_status":"operational","power_capacity_mw":4,"total_sqft":57509,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Bluebird Quad Cities Data Center","verified_operator":"Bluebird Fiber (formerly Bluebird Network)","verified_owner":"Bluebird Network (building owner; Bluebird Fiber is a Macquarie Asset Management portfolio company)","cooling_type":"air-cooled","tier_level":"Tier II","fiber_providers":"Diverse east and west fiber entrances; 9 networks present; local exchange present (per PeeringDB).","num_buildings":1,"campus_acres":3.85,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa Data Center Sales and Use Tax Incentives: eligible data centers can qualify for sales/use tax relief upon meeting minimum investment thresholds (rehabilitated buildings have higher minimums).","natural_hazard_zone":""},"1249":{"description":"Long Lines Data Center is an operational colocation and disaster-recovery facility operated by Long Lines Broadband at 4647 Stone Avenue in Sioux City, Iowa. Public specs list a 3,972 sq ft concrete-and-steel site built in 2008 with commercial power of 2,000 amps, a 1,000 kVA generator, and a 225 kVA UPS.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3972,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"No anchor tenants or major customers are publicly disclosed. Networks present include Arvig (AS16904) and Great Plains Communications LLC (AS13807).","verified_name":"Long Lines Secure Data Center","verified_operator":"Long Lines Broadband","verified_owner":"Schurz Communications","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral (SDN Communications, Cox Communications, AT&T, Verizon Business, Cogent Communications, Qwest/CenturyLink, Midcontinent Communications, Sprint, Windstream Communications, 360 Networks, NIPCO, ABB, Paetec, PinPoint, Nebraska Link, Alltel)","num_buildings":1,"campus_acres":105.53,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa data center sales and use tax incentives are available based on minimum investment thresholds; no evidence this facility specifically received them.","natural_hazard_zone":"FEMA Flood Zone B/X (moderate risk; non–special flood hazard area)"},"1250":{"description":"FiberComm 713 Nebraska St is an operational carrier-hotel/telecom data center in Sioux City that was developed by FiberComm LC and is now operated by ImOn Communications following its acquisition of FiberComm; the facility was created via a 2019 retrofit of a former office-supply building.","verified_status":"operational","power_capacity_mw":0.18,"total_sqft":33000,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"No anchor tenants or major end customers were publicly disclosed. Public connectivity records list network participants at/for 713 Nebraska including FiberComm, FiberNet Communications, and Great Plains Communications.","verified_name":"713 Nebraska","verified_operator":"ImOn Communications, LLC (formerly FiberComm)","verified_owner":"FiberComm, L.C.","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; networks include FiberComm, FiberNet Communications, and Great Plains Communications","num_buildings":1,"campus_acres":0.26,"utility_provider":"MidAmerican Energy Company","tax_incentives":"Sioux City’s City-Wide Urban Revitalization tax exemption program is available citywide through December 31, 2030.","natural_hazard_zone":""},"1251":{"description":"SFN IA-Davenport is a data center facility operated by South Front Networks at 2814 North Clark Street, Davenport, Iowa, with public network listings indicating an on-site Hurricane Electric PoP, a QCIX exchange node, and Cogent on‑net service.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Hurricane Electric PoP; QCIX (Quad Cities Internet Exchange) node; Cogent on-net service location at South Front Networks.","verified_name":"SFN IA-Davenport","verified_operator":"South Front Networks","verified_owner":"Diverse","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; networks present include Bluebird Network; US Internet; Hurricane Electric; QCIX Route Servers; Arvig; Aureon Network Services; CS Technologies; Great Plains Communications; IP Pathways; Liberty Communications; Minnesota VoIP; MTC Communications; New Windsor Telephone; Oneida Telephone Exchange; Reynolds Communications; Router12 Networks; Viola Communications; adjacency to Zayo metro fiber","num_buildings":0,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa data center sales and use tax incentives are available to eligible projects; no facility-specific award identified.","natural_hazard_zone":"unknown"},"1252":{"description":"Small operational colocation/telecom data center operated by Consolidated Communications (Fidium) at 400 Locust Street, Suite 190, Des Moines, IA, offering roughly 500 sq ft and 24/7 access.","verified_status":"operational","power_capacity_mw":0,"total_sqft":500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Consolidated Communications Des Moines Data Center","verified_operator":"Consolidated Communications","verified_owner":"Real Capital Solutions (via RCS - Capital Square, LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"MidAmerican Energy Company","tax_incentives":"City of Des Moines general property tax abatement program for eligible new construction or improvements (not facility-specific).","natural_hazard_zone":"FEMA-mapped flood hazard areas exist in Des Moines; address-specific flood zone undetermined; general severe storm/tornado exposure."},"1253":{"description":"InfoBunker is an operational, fully underground, hardened colocation data center in Iowa operated by InfoBunker; originally a Cold War–era communications bunker, it now provides secure colocation services, with corporate HQ in the Des Moines area and the main site located about 45 miles outside the metro (location withheld for security).","verified_status":"operational","power_capacity_mw":10,"total_sqft":65000,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"InfoBunker","verified_operator":"InfoBunker, L.L.C.","verified_owner":"InfoBunker, L.L.C. (IFB)","cooling_type":"hybrid","tier_level":"Tier IV (per listing; not Uptime-certified)","fiber_providers":"Cogent, CenturyLink, Windstream/Paetec, and ICN; plus access to 360 Networks, AT&T, and Norlight Communications.","num_buildings":1,"campus_acres":13.15,"utility_provider":"","tax_incentives":"Iowa data centers may qualify for sales and use tax exemptions or partial refunds once eligible; no facility-specific abatement identified.","natural_hazard_zone":"FEMA Flood Zone X; low hurricane and seismic exposure; underground hardened bunker."},"1254":{"description":"Windstream Des Moines is a telecom colocation data center operated by Windstream at 3540 SW 61st Street, Des Moines, Iowa. Public listings indicate about 14,600 sq ft of space and roughly 1.6 MW of power capacity, and the address is also noted among Uniti key data center locations.","verified_status":"operational","power_capacity_mw":1.6,"total_sqft":14600,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Des Moines","verified_operator":"Windstream","verified_owner":"Uniti Group Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream; Uniti","num_buildings":0,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa data center incentives include Sales and Use Tax benefits for eligible data centers with tiered minimum investments (as low as $1M, with enhanced benefits at $200M+), and a property tax exemption for data centers beginning in 2027.","natural_hazard_zone":"Low risk (outside FEMA Special Flood Hazard Areas for most of Des Moines; regional tornado exposure present)"},"1255":{"description":"Lumen Des Moines is an operational Lumen Technologies colocation data center at 4550 Carlisle Road, Pleasant Hill, Iowa, with an overall footprint of about 10,000 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Des Moines 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"Lumen Technologies","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa statewide data-center sales/use-tax incentives may apply if statutory requirements are met; Pleasant Hill stopped accepting new tax abatement applications effective June 12, 2026.","natural_hazard_zone":""},"1256":{"description":"US Signal IA01 is an operational colocation data center at 390 N Alices Road in Waukee, Iowa, now operated by US Signal following its 2024 acquisition of OneNeck’s business. The site is currently undergoing a significant expansion in 2026.","verified_status":"operational","power_capacity_mw":2,"total_sqft":19453,"year_online":"2009","construction_update":"Active 2026 expansion: Waukee’s site plan (Jan 2026) shows the existing 19,453‑sq‑ft building and a 33,522‑sq‑ft addition (2,145‑sq‑ft office + 31,377‑sq‑ft warehouse); Business Record (Mar 2026) reports a $29.8M expansion; US Signal (May 14, 2026) reports the Des Moines expansion is underway with construction progressing.","recent_news":"US Signal reported on May 14, 2026 that its Des Moines/Waukee data center expansion is underway, with construction progressing; local business press in March 2026 detailed a multimillion-dollar addition to the existing facility.","notable_tenants":"","verified_name":"US Signal IA01 Des Moines Data Center","verified_operator":"US Signal Company, LLC","verified_owner":"OneNeck Data Center Holdings, LLC (now part of US Signal Company, LLC)","cooling_type":"chilled water","tier_level":"Tier III (concurrently maintainable) design; not Uptime certified","fiber_providers":"carrier-neutral; ICN demarcation present","num_buildings":1,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa Data Center Sales & Use Tax Incentives (eligibility-based); no IA01-specific abatement found","natural_hazard_zone":"County-level risks: tornadoes, floods, winter storms; site-specific FEMA flood zone not confirmed"},"1257":{"description":"IP Pathways Urbandale (DSM1) is a colocation data center operated by IP Pathways at 3600 109th Street, Urbandale, Iowa, offering about 5,817 sq ft of white space within a 13,800 sq ft facility that opened in 2014.","verified_status":"operational","power_capacity_mw":5,"total_sqft":13800,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"IP Pathways Urbandale","verified_operator":"IP Pathways","verified_owner":"WEST LAKES PROPERTIES LC","cooling_type":"unknown","tier_level":"Tier II equivalent","fiber_providers":"carrier-neutral; meet-me room; South Front Networks; IP Pathways, LLC","num_buildings":1,"campus_acres":0.672,"utility_provider":"MidAmerican Energy Company","tax_incentives":"Parcel is in TIF 61 / Urbandale NW Market Center Urban Renewal; no facility-specific active rebate found.","natural_hazard_zone":""},"1258":{"description":"Heartland Technology Data Center is an operational colocation facility operated by Heartland Technology at 1151 12th Street, Jesup, Iowa, offering carrier‑neutral colocation and related services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Heartland Technology Data Center (HTDC)","verified_operator":"Heartland Technology (Farmers Mutual Telephone Company dba Heartland Technology)","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III / Tier 3-equivalent design standard (not Uptime Institute certified)","fiber_providers":"carrier-neutral; Heartland Technology fiber optic network and blended internet services","num_buildings":0,"campus_acres":3.32,"utility_provider":"MidAmerican Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"1259":{"description":"Global Reach Ames is an operational small colocation/hosting data center operated by Global Reach Internet Productions, LLC at 2321 N Loop Drive, Suite 210, Ames, Iowa.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Global Reach Ames","verified_operator":"Global Reach Internet Productions, LLC","verified_owner":"Iowa State University Research Park (ISURP)","cooling_type":"unknown","tier_level":"","fiber_providers":"Multiple Tier 1 internet connections (specific carriers not publicly disclosed)","num_buildings":1,"campus_acres":14.5836,"utility_provider":"City of Ames Electric Services (Ames Municipal Utilities)","tax_incentives":"","natural_hazard_zone":"Medium flood risk (not in FEMA Special Flood Hazard Area per city guidance; precise FEMA zone not specified on listings)"},"1260":{"description":"QTS is developing a hyperscale, multi-building data center campus on 612 acres at the Big Cedar Industrial Center in Cedar Rapids, Iowa, with up to seven facilities planned and billed as the largest economic-development project in city history.","verified_status":"under-construction","power_capacity_mw":1050,"total_sqft":2796000,"year_online":"2026 (planned initial delivery/commissioning; full campus buildout date not publicly fixed)","construction_update":"June 2026: Project under construction and entering commissioning support via a temporary power plant to enable testing prior to permanent utility service.","recent_news":"May–June 2026: QTS moved to install a temporary power plant to support testing/commissioning at the Cedar Rapids campus ahead of permanent utility power.","notable_tenants":"","verified_name":"QTS Cedar Rapids Data Center Campus (Big Cedar Industrial Center)","verified_operator":"QTS Data Centers","verified_owner":"QTS Data Centers (via QTS Cedar Rapids I LLC)","cooling_type":"air-cooled","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":7,"campus_acres":612,"utility_provider":"Alliant Energy","tax_incentives":"City development agreement: 70% property tax increment rebate over 20 years and 75% rebate of city franchise fees, among other benefits.","natural_hazard_zone":"Severe wind/derecho exposure; flood-prone river city; very low seismic risk (<2% in 50 years); no coastal hurricane risk."},"1261":{"description":"Microsoft Project Alluvion – Building 1 is a Microsoft‑operated hyperscale/Azure data center at 550 White Crane Rd, West Des Moines, IA. It is part of the Project Alluvion campus on White Crane Road, an eight‑building development totaling about 1.16 million sq ft that has been operational at the campus level since 2014; Building 1’s specific power, floor area, and online year are not publicly listed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"No Building 1–specific news in the last six months. A June 18, 2026 West Des Moines Water Works update noted Microsoft’s 2021–2025 average water use was 2.1% of total city consumption.","notable_tenants":"Microsoft (owner-occupied); no third-party tenants publicly disclosed.","verified_name":"Microsoft Project Alluvion - Building 1","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":8,"campus_acres":154,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa data center sales and use tax incentives apply to qualifying projects (exemption or refund for eligible purchases). In 2025, HF 976 enacted changes that limit certain exemptions for electricity and backup power for new/expanded projects.","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard between the 100-year and 500-year limits)."},"1262":{"description":"Microsoft Project Alluvion – Building 2 is a Microsoft-operated hyperscale/Azure data center at 550 White Crane Rd, Building 2, West Des Moines, Iowa, within the multi-building Project Alluvion campus on White Crane Road. The campus was first announced in 2014 and is described as comprising multiple buildings, with operations active in West Des Moines.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Microsoft Project Alluvion - Building 2","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":8,"campus_acres":154,"utility_provider":"MidAmerican Energy","tax_incentives":"City stated no property-tax abatement for a subsequent (2016) Microsoft West Des Moines data center project; no current active incentives verified for Building 2.","natural_hazard_zone":"FEMA Flood Zone B/X (area between the 100-year and 500-year limits) for 550 SE White Crane Rd."},"1263":{"description":"Microsoft Project Alluvion – Building 3 is a Microsoft-operated hyperscale/Azure data center at 550 White Crane Rd, Building 3, West Des Moines, Iowa, and forms part of the multi-building Project Alluvion campus on White Crane Road.","verified_status":"operational","power_capacity_mw":24,"total_sqft":148500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Microsoft Project Alluvion - Building 3","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":8,"campus_acres":154,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa High Quality Jobs sales-tax rebate of $20,256,000 (2014 approval); local incentives reported up to $87 million. Current building-specific incentives not confirmed.","natural_hazard_zone":"FEMA Flood Zones B and X (area of moderate flood hazard, between 100‑year and 500‑year limits)."},"1264":{"description":"Microsoft Project Alluvion - Building 4 is a Microsoft-operated hyperscale data center building at 550 White Crane Rd, West Des Moines, Iowa. Listings confirm the Building 4 sublisting and address, while campus pages indicate the Alluvion campus is operational and widely reported around 1.16 million sq ft overall.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Microsoft Project Alluvion - Building 4","verified_operator":"Microsoft","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":8,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"Sought Iowa High Quality Jobs Program incentives; property lies within the City’s Alluvion Urban Renewal/TIF project area.","natural_hazard_zone":"Flood Zone B/X (shaded) – moderate flood hazard (between 100-year and 500-year limits)"},"1265":{"description":"Microsoft Project Alluvion – Building 7 is a Microsoft Azure hyperscale data center at 550 White Crane Rd in West Des Moines, Iowa, within the Project Alluvion campus. The Alluvion campus sits on White Crane Road and comprises eight buildings operated by Microsoft.","verified_status":"operational","power_capacity_mw":24,"total_sqft":148500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No third-party tenants or anchor customers are publicly identified. Microsoft uses the West Des Moines region for its own Azure/AI workloads (e.g., powering OpenAI/GPT-4, ChatGPT, Bing, and Microsoft 365 Copilot), not attributed specifically to Building 7.","verified_name":"Microsoft Project Alluvion - Building 7","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":8,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"State incentives: $18 million in tax credits; Local incentives: up to $18 million in infrastructure improvements to attract Project Alluvion.","natural_hazard_zone":""},"1266":{"description":"Microsoft Project Alluvion – Building 8 is a Microsoft/Azure hyperscale data center at 550 White Crane Rd, Building 8, West Des Moines, within the Alluvion campus. The campus comprises eight buildings totaling more than 1 million sq ft.","verified_status":"operational","power_capacity_mw":24,"total_sqft":148500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Microsoft Project Alluvion - Building 8","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral (specific providers not disclosed); benefits from West Des Moines’ large fiber-optic network and city conduit infrastructure","num_buildings":8,"campus_acres":154,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa state sales-tax rebate (~$20.3M reported) and West Des Moines local infrastructure/TIF support (reports cite up to ~$18M).","natural_hazard_zone":"Regional: low overall natural-disaster risk; exposure to severe storms, tornadoes/hail; property-specific FEMA flood zone not confirmed"},"1267":{"description":"Meta Altoona – Building 1 is Meta’s first hyperscale data center building at 100 Share Way NW in Altoona, Iowa. It began serving traffic in November 2014 and is listed at 42 MW of capacity.","verified_status":"operational","power_capacity_mw":42,"total_sqft":476000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Meta Altoona - Building 1","verified_operator":"Meta Platforms, Inc.","verified_owner":"Siculus, Inc. (Meta affiliate)","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":400,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa data center sales and use tax exemption; Altoona property tax abatements for ~20 years and payments of about $3 per square foot per year for 20 years on certain expansion phases.","natural_hazard_zone":"Severe convective weather (tornado/high-wind) exposure; county-level moderate flood risk; low seismic; no hurricane exposure."},"1268":{"description":"Meta Altoona – Building 6 is a hyperscale data center building operated by Meta at 1100 Share Way NW in Altoona, Iowa. It is part of Meta’s Altoona campus, which Meta says is matched with 100% clean and renewable energy and has reached net zero emissions.","verified_status":"operational","power_capacity_mw":48,"total_sqft":464838,"year_online":"2020","construction_update":"","recent_news":"June 26, 2026: Meta published a feature and video tour highlighting its Altoona, Iowa data center, offering an inside look at the facility’s infrastructure.","notable_tenants":"","verified_name":"Meta Altoona - Building 6","verified_operator":"Meta Platforms, Inc.","verified_owner":"Siculus, Inc.","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":10,"campus_acres":354,"utility_provider":"","tax_incentives":"20-year Altoona tax arrangement: $3 per new square foot per year in lieu of standard property tax (about a 40% discount), approved for Facebook/Meta.","natural_hazard_zone":"Minor wind/severe-storm risk; FEMA flood zone undetermined from provided excerpts."},"1269":{"description":"Enseva Hiawatha is an operational colocation data center operated by Enseva at 755 Metzger Dr, Hiawatha, Iowa, marketed as a site that surpasses Tier 4 specifications.","verified_status":"operational","power_capacity_mw":4,"total_sqft":16014,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"Iowa Health System (first tenant and project impetus).","verified_name":"Enseva Hiawatha Datacenter","verified_operator":"Enseva","verified_owner":"","cooling_type":"unknown","tier_level":"Tier IV design/equivalent (operator-claimed); not independently Uptime-certified in excerpts","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":4.44,"utility_provider":"Alliant Energy","tax_incentives":"City of Hiawatha incentives reported at opening; Iowa statewide data center sales and use tax incentives available.","natural_hazard_zone":"unknown"},"1270":{"description":"Carrier-hotel/colocation data center at 713 Nebraska St in downtown Sioux City, historically operated as FiberComm LC and now part of ImOn following ImOn’s 2023 acquisition of FiberComm. The facility underwent a $6 million retrofit in 2019 of a century‑old former office-supply building.","verified_status":"operational","power_capacity_mw":3,"total_sqft":33000,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"No named anchor customer was publicly disclosed. Networks present per PeeringDB include SDN Communications, FiberComm, FiberNet Communications, Great Plains Communications, ImOn Communications, Manning Municipal Utilities, and Premier Communications at 713 Nebraska St.","verified_name":"FiberComm 713 Nebraska","verified_operator":"ImOn Communications LLC","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"SDN Communications; FiberComm; FiberNet Communications; Great Plains Communications; ImOn Communications; Manning Municipal Utilities; Premier Communications","num_buildings":1,"campus_acres":0.26,"utility_provider":"MidAmerican Energy","tax_incentives":"Sioux City City‑Wide Urban Revitalization / Tax Exemption program available through Dec. 31, 2030 (no facility‑specific abatement located).","natural_hazard_zone":"Moderate flood risk (Downtown Sioux City) over 30 years"},"1271":{"description":"Operational colocation/telecom data center suite operated by Consolidated Communications (now branded as Fidium) at 400 Locust St, Des Moines, IA, offering 24/7 access in a compact footprint.","verified_status":"operational","power_capacity_mw":0.9,"total_sqft":500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fidium Des Moines (Consolidated Communications Des Moines Data Center)","verified_operator":"Fidium (Consolidated Communications)","verified_owner":"RCS - Capital Square, LLC (Real Capital Solutions affiliate)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa Data Center Sales & Use Tax Incentives may apply if program thresholds are met; HF 976 (2025) modified exemptions’ administration and duration.","natural_hazard_zone":""},"1272":{"description":"Telecom/colocation data center at 3540 SW 61st St, Des Moines, operated by Windstream (now part of Uniti), and listed as an active site; third‑party facility data shows 1.6 MW power capacity.","verified_status":"operational","power_capacity_mw":1.6,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Des Moines Data Center","verified_operator":"Windstream","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Uniti (Windstream/Uniti Kinetic AS7029)","num_buildings":0,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa provides statewide data center sales/use tax exemptions subject to minimum investment thresholds; no facility-specific enrollment evidence was found.","natural_hazard_zone":""},"1273":{"description":"Heartland Technology operates a Tier III data center at 1151 12th St, Jesup, Iowa, providing colocation and connectivity services. The facility is cooperatively owned and supported by a 24x7x365 NOC.","verified_status":"operational","power_capacity_mw":0,"total_sqft":7320,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Heartland Technology Data Center","verified_operator":"Heartland Technology","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III (marketed; not Uptime-certified)","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"","natural_hazard_zone":"Low flood risk (city-level); FEMA zone not determined"},"1274":{"description":"QTS Cedar Rapids I is a wholesale data center being developed by QTS Data Centers at the Big Cedar Industrial Center in Cedar Rapids, Iowa; it is part of a multi-building campus described as the largest economic-development project in the city’s history.","verified_status":"under-construction","power_capacity_mw":60,"total_sqft":400000,"year_online":"2026","construction_update":"Oct 2025: QTS marked topping-out of initial buildings at the Cedar Rapids campus; late May–June 2026: QTS sought permits for a temporary power plant to support testing/commissioning.","recent_news":"Late May–June 2026: QTS sought to install a temporary power plant near the Cedar Rapids campus to support testing/commissioning operations, with permitting underway.","notable_tenants":"","verified_name":"QTS Cedar Rapids I Data Center (CDR1 DC1)","verified_operator":"QTS Data Centers","verified_owner":"QTS Cedar Rapids LLC (QTS Data Centers, a Blackstone portfolio company)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":7,"campus_acres":612,"utility_provider":"Alliant Energy","tax_incentives":"City-approved development agreement including a 20-year, 70% rebate of additional property taxes and an estimated $18 million in community betterment payments over 20 years.","natural_hazard_zone":""},"1275":{"description":"Lifeline Eastgate is an operational colocation and secure-workspace data center at 401 N Shadeland Ave in Indianapolis, operated by Lifeline Data Centers. It lists 80,000 sq ft with primary power from a 4 MW solar array and occupies the redeveloped former Eastgate Mall.","verified_status":"operational","power_capacity_mw":4,"total_sqft":80000,"year_online":"2009","construction_update":"","recent_news":"June 18, 2026: IndyStar reported the facility operated ~15 years without an air permit for its backup generators and did not seek the permit until late 2025.","notable_tenants":"City of Indianapolis Department of Public Safety and its Emergency Operations Center/Regional Operations Center. No publicly named commercial colocation tenants identified.","verified_name":"Lifeline Data Centers Eastgate","verified_operator":"Lifeline Data Centers, LLC","verified_owner":"Lifeline Data Centers, LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"Multiple carriers (exact list not published)","num_buildings":0,"campus_acres":41,"utility_provider":"AES Indiana (formerly Indianapolis Power & Light)","tax_incentives":"Indiana Data Center Gross Retail and Use Tax Exemption (IC 6-2.5-15) for qualifying data center equipment purchases","natural_hazard_zone":"Hardened (F5 tornado-resistant); FEMA flood zone not specified"},"1276":{"description":"Lifeline Fort Wayne Data Center is a colocation facility operated by Lifeline Data Centers at 7601 S. Anthony Blvd, Fort Wayne, Indiana. The 84,000‑sq‑ft site is promoted as rated‑4 for power and cooling, EMP‑ready, and offering compliance‑oriented security options.","verified_status":"operational","power_capacity_mw":0,"total_sqft":84000,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lifeline Data Centers Fort Wayne","verified_operator":"Lifeline Data Centers, LLC","verified_owner":"Live Wire-Fort Wayne, LLC","cooling_type":"unknown","tier_level":"Rated-4 (design; TIA-942 equivalent); not Uptime-certified","fiber_providers":"carrier-neutral; 15 telecom carriers; Level 3 and Global Crossing","num_buildings":1,"campus_acres":0,"utility_provider":"Indiana Michigan Power (I&M), an American Electric Power (AEP) company","tax_incentives":"Prior Fort Wayne tax abatement for Live Wire-Fort Wayne, LLC was terminated for non-compliance; no active incentive verified.","natural_hazard_zone":""},"1277":{"description":"701 Indy Telcom Center is Netrality Data Centers’ carrier‑neutral colocation and interconnection facility at 701 W. Henry Street in Indianapolis, notable for extensive network connectivity and a high‑density data hall added in July 2025 delivering 1 MW across 3,800 sq ft.","verified_status":"operational","power_capacity_mw":1,"total_sqft":14500,"year_online":"unknown","construction_update":"Jul 14, 2025: Netrality completed a new high‑density data hall at 701 W. Henry, adding 3,800 sq ft and 1 MW of critical capacity. 700 W. Henry is a separate planned new‑build and not counted toward 701.","recent_news":"","notable_tenants":"No named anchor tenant or major customer was publicly disclosed. Public interconnection/network participants and providers at 701 W. Henry include Cogent Communications, Education Networks of America, On-Ramp Indiana, and others.","verified_name":"Netrality – Indy Telcom Center – 701 W. Henry","verified_operator":"Netrality Data Centers","verified_owner":"Netrality Properties, L.P. (Netrality Data Centers)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":11,"campus_acres":9,"utility_provider":"AES Indiana","tax_incentives":"Indiana offers a statewide data center sales/use tax exemption; no facility-specific incentive confirmed for 701 W. Henry.","natural_hazard_zone":""},"1278":{"description":"Netrality Data Centers’ 733 Indy Telcom Center is a carrier‑neutral colocation and interconnection facility at 733 West Henry Street in Indianapolis, located within the Indy Telcom campus and designed for low‑latency connectivity.","verified_status":"operational","power_capacity_mw":0.8,"total_sqft":40000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Netrality – Indy Telcom Center – 733 W. Henry","verified_operator":"Netrality Data Centers","verified_owner":"Netrality Properties (Netrality Data Centers)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; ~38 peering/on-net networks","num_buildings":1,"campus_acres":0.67,"utility_provider":"","tax_incentives":"Indiana Data Center Gross Retail and Use Tax Exemption (state sales and use tax exemption on qualifying data center equipment and energy).","natural_hazard_zone":"low risk"},"1279":{"description":"DataBank IND1 is a DataBank-operated colocation data center at 731 West Henry Street in Indianapolis offering 16,950 IT sq ft with a 2.1 MW critical IT load, N+1 power on 100% renewable energy, and 20+ onsite carriers; the overall facility is about 54,000 sq ft.","verified_status":"operational","power_capacity_mw":2.1,"total_sqft":54000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank IND1 (Downtown Indianapolis Data Center)","verified_operator":"DataBank","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 20+ top-tier carriers","num_buildings":1,"campus_acres":0,"utility_provider":"AES Indiana","tax_incentives":"Indiana Data Center Gross Retail and Use Tax Exemption (statewide); local personal-property abatements may be available at local discretion.","natural_hazard_zone":"Earthquake hazard classified as medium (inland, non-hurricane zone)"},"1280":{"description":"DataBank IND2 is an operational colocation data center at 650 West Henry Street in downtown Indianapolis, offering high‑density deployments with about 31,080 raised‑floor IT sq ft and 3.75 MW critical IT load; the site was formerly LightBound and joined DataBank through the company’s 2018 acquisition.","verified_status":"operational","power_capacity_mw":3.75,"total_sqft":46000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank IND2 – Downtown Indianapolis Data Center","verified_operator":"DataBank","verified_owner":"Netrality Indy Telco LLC (Netrality)","cooling_type":"hybrid","tier_level":"Tier III equivalent (N+1 design); no Uptime Institute certification stated","fiber_providers":"carrier-neutral; 24 onsite carriers","num_buildings":1,"campus_acres":0,"utility_provider":"AES Indiana","tax_incentives":"","natural_hazard_zone":"low risk"},"1281":{"description":"US Signal IN01 is an operational US Signal colocation/data-center suite at 701 W Henry St in Indianapolis. The operator’s listing shows the address and suite size, and third‑party facility pages corroborate the site identity and operator.","verified_status":"operational","power_capacity_mw":0.025,"total_sqft":548,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"IN01 Indianapolis Data Center","verified_operator":"US Signal","verified_owner":"Netrality Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":11,"campus_acres":0,"utility_provider":"AES Indiana","tax_incentives":"","natural_hazard_zone":""},"1282":{"description":"US Signal’s IN03 South Bend is a colocation data center at 506 W South St #260 in South Bend, Indiana, offering cross-connects to cloud services and direct access to US Signal’s fiber backbone.","verified_status":"operational","power_capacity_mw":0.15,"total_sqft":194,"year_online":"2002","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"US Signal IN03 South Bend Data Center","verified_operator":"US Signal","verified_owner":"fifteenfortyseven Critical Systems Realty (1547) and Harrison Street JV","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent on-net at 506 W South St; access to 20+ network providers; connected to US Signal backbone/ecosystem","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Indiana Data Center Sales Tax Exemption (statewide program; applicability to this site not confirmed); City of South Bend tax abatement program (availability depends on approval).","natural_hazard_zone":""},"1283":{"description":"OTAVA operates a carrier-neutral colocation and cloud data center at 505 W. Merrill St. in Indianapolis, featuring 44,000 sq ft overall with 16,000 sq ft of raised floor and a total building load of 3 MW.","verified_status":"operational","power_capacity_mw":3,"total_sqft":44000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"OTAVA Indianapolis Data Center (IN1)","verified_operator":"OTAVA","verified_owner":"Mapletree Industrial Trust (MIT)","cooling_type":"unknown","tier_level":"no public Uptime Institute Tier certification found","fiber_providers":"","num_buildings":1,"campus_acres":0.85,"utility_provider":"AES Indiana (formerly Indianapolis Power & Light)","tax_incentives":"","natural_hazard_zone":""},"1284":{"description":"Expedient’s IND1 Indianapolis Data Center is an operational colocation/cloud facility at 701 Congressional Blvd., Carmel, IN, offering a 4.4 MW critical IT load within a 53,000 sq ft facility and 26,000 sq ft of raised floor; a $4.5M expansion completed in 2017 added 3,500 sq ft of computer-room space.","verified_status":"operational","power_capacity_mw":4.4,"total_sqft":53000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Expedient Indianapolis Data Center","verified_operator":"Expedient","verified_owner":"REI Investments, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy Indiana","tax_incentives":"","natural_hazard_zone":"low risk"},"1285":{"description":"AT&T CO 5009 E 38th is an AT&T-operated telecom central-office facility at 5009 E 38th St in Indianapolis, Indiana, listed as a data-center/central-office site; sources indicate it’s unclear whether colocation is offered here.","verified_status":"operational","power_capacity_mw":0,"total_sqft":37218,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"AT&T CO 5009 E 38th","verified_operator":"AT&T","verified_owner":"Indiana Bell Telephone Company, Incorporated","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T; no public evidence found that the site is carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"AES Indiana","tax_incentives":"","natural_hazard_zone":""},"1286":{"description":"Lumen Indianapolis 1 is an operational telecom/colocation data center operated by Lumen Technologies at 1902 South East Street in Indianapolis, offering a total facility size of 20,000 sq ft with 1,740 sq ft of colocation/raised-floor space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":20000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Indianapolis 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (Level 3) network; diverse fiber connectivity; alternate carrier networks available","num_buildings":0,"campus_acres":2.62,"utility_provider":"AES Indiana","tax_incentives":"","natural_hazard_zone":"Address-specific FEMA flood zone not confirmed; Marion County materials indicate area floodplain exposure (notably along the White River) and moderate county-level natural hazard risk."},"1287":{"description":"Lumen Indianapolis 3 is a Lumen Technologies telecom/colocation facility at 4625 W 86th St, Indianapolis, IN. The address is also shown as Suite 500 in legacy Level 3/CenturyLink records, reflecting the site’s long-standing telecom use.","verified_status":"operational","power_capacity_mw":0,"total_sqft":19000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Indianapolis 3 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen Technologies (on-net); no third-party carrier list publicly identified","num_buildings":0,"campus_acres":7.62,"utility_provider":"AES Indiana","tax_incentives":"Indiana Data Center Sales Tax Exemption (state program; no site-specific award identified)","natural_hazard_zone":"FEMA Flood Zone AE (Special Flood Hazard Area; 1% annual-chance/high-risk)"},"1288":{"description":"Enterprise data center operated by Indiana University (UITS/DCOPS) inside the Informatics & Communications Technology Complex at 535 W. Michigan St., Indianapolis; the ICTC is a 207,000-gsf building completed in 2004 and the site is listed as an active data center location.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":207000,"year_online":"2004","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"IU Indianapolis Data Center (ICTC Data Center), Informatics & Communications Technology Complex, 535 W Michigan Street, Indianapolis, IN 46202","verified_operator":"Indiana University (UITS Data Center Operations)","verified_owner":"Indiana University TRS (The Trustees of Indiana University)","cooling_type":"chilled water","tier_level":"","fiber_providers":"IU GlobalNOC/I-Light research & education networks; Internet2 connectivity supported via IU GlobalNOC (commercial carrier names not publicly posted).","num_buildings":1,"campus_acres":8.951,"utility_provider":"AES Indiana","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (Area of Minimal Flood Hazard)"},"1289":{"description":"Metrobloks Indianapolis IND-A1 is a planned high-density colocation/data center campus operated by Metrobloks at 2505 N Sherman Dr in Indianapolis. It is described as “coming soon,” designed for 72 MW total critical IT and about 154,000 sq ft of available whitespace, with 150 kW+ per-rack power densities.","verified_status":"planned","power_capacity_mw":72,"total_sqft":154000,"year_online":"2027","construction_update":"May 4, 2026: Council granted final approval for the rezoning. May 2026: residents filed a civil complaint seeking to halt the project. As of early April 2026 reporting, there was no confirmed date for when construction would begin.","recent_news":"Indianapolis granted final approval for the Metrobloks rezoning in early May 2026, followed days later by a civil complaint from residents seeking to halt the project; in late June 2026, city officials proposed stricter countywide rules for future data centers.","notable_tenants":"","verified_name":"Metrobloks Indianapolis IND-A1","verified_operator":"Metrobloks","verified_owner":"Sherman Investments LLC","cooling_type":"hybrid","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":13.68,"utility_provider":"AES Indiana","tax_incentives":"Indiana’s Data Center Sales and Use Tax Exemption (IC 6-2.5-15) is available statewide for qualifying projects; Indianapolis also has a local Inclusive Incentives/Tax Abatement policy. No site-specific local award for IND-A1 was confirmed.","natural_hazard_zone":"FEMA Flood Zones B and X (low-to-moderate risk; outside Special Flood Hazard Area)"},"1290":{"description":"American Tower proposed a single‑story, ~20,000 sq ft edge data center at 7701 Walnut Drive in Indianapolis, but the company withdrew its rezoning petition in February 2026, so the project is not moving forward at this time.","verified_status":"planned","power_capacity_mw":4,"total_sqft":20000,"year_online":"unknown","construction_update":"Rezoning case 2025‑ZON‑116 (7701 Walnut Drive) appeared on the January 15, 2026 MDC Hearing Examiner agenda; the petitioner then withdrew the application on Feb. 2, 2026, so there is no active approval or construction.","recent_news":"Feb 2026: American Tower withdrew its Pike Township rezoning petition for the 20,000‑sq‑ft edge data center, pausing the project amid local opposition and city work on data‑center rules.","notable_tenants":"","verified_name":"American Tower EDC Indianapolis","verified_operator":"American Tower Corporation","verified_owner":"ATC Watertown LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":7.01,"utility_provider":"AES Indiana","tax_incentives":"","natural_hazard_zone":""},"1291":{"description":"Google Fort Wayne Data Center (formerly Project Zodiac) is a Google-operated hyperscale campus at/near 6015 Adams Center Road in southeast Fort Wayne. The site broke ground in April 2024 and the first phase was operational by December 2025, with additional phases planned.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2025","construction_update":"IDEM issued a March 13, 2026 public notice for Google Data Center – Fort Wayne (Project Zodiac) Phase 3 permitting; local reporting says construction of additional buildings is planned to begin in early 2027 with mass excavation continuing thereafter.","recent_news":"In March 2026, Indiana’s environmental agency issued a public notice for Project Zodiac Phase 3 permitting, and on June 15, 2026, local news reported the city’s community development director said Google was in full compliance with its taxpayer agreement amid council oversight.","notable_tenants":"","verified_name":"Google Fort Wayne Data Center","verified_operator":"Google","verified_owner":"Hatchworks LLC","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":12,"campus_acres":858,"utility_provider":"Indiana Michigan Power (I&M)","tax_incentives":"10-year, 50% real property tax abatement on each building constructed on the campus.","natural_hazard_zone":"low risk"},"1292":{"description":"Amazon Web Services operates Project Rainier in New Carlisle, Indiana—a 1,200-acre hyperscale AI data center campus that is already operational and among the largest of its kind. The full build is planned at massive scale (reported up to 2.2 GW), with the site located near Huckleberry and Gordon roads.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2025","construction_update":"June 3, 2026: Staff moved into the new Campus Administration Building and the first cohort of trainees graduated; multiple additional buildings remain planned with target years in 2026–2027, indicating ongoing campus buildout.","recent_news":"June 3, 2026: Local outlets reported AWS welcomed staff into its new Campus Administration Building at New Carlisle and celebrated the first graduates from its work-based training program, alongside continued hiring and campus ramp-up.","notable_tenants":"Anthropic","verified_name":"Amazon AWS - New Carlisle South Campus (Project Rainier)","verified_operator":"Amazon Web Services (AWS)","verified_owner":"Amazon Data Services, Inc.","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":32,"campus_acres":1200,"utility_provider":"Indiana Michigan Power (I&M)","tax_incentives":"50% property tax abatement over 10 years; 85% enterprise technology exemption; state-level sales tax exemptions for qualifying data center investments.","natural_hazard_zone":"low risk"},"1293":{"description":"Microsoft is developing a hyperscale data center campus at 300 E Boyd Blvd in La Porte, Indiana, beginning with a 245,000-square-foot facility on a 489-acre site at Radius Industrial Park; the campus has since expanded to a multi-building plan with 17 buildings planned.","verified_status":"under-construction","power_capacity_mw":538,"total_sqft":245000,"year_online":"2029","construction_update":"Under construction: Groundbreaking held June 17–18, 2026 for the La Porte campus; the project includes 17 buildings planned.","recent_news":"Groundbreaking occurred June 17–18, 2026 for Microsoft’s La Porte data center campus, which now includes 17 buildings planned; on May 18, 2026, the La Porte City Council approved measures to support a second Microsoft data center campus south of Boyd Boulevard.","notable_tenants":"","verified_name":"Microsoft La Porte Campus Data Center","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation (or affiliate)","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":489,"utility_provider":"NIPSCO (Northern Indiana Public Service Company)","tax_incentives":"No local property tax abatements per the updated 2026 agreement.","natural_hazard_zone":"Stormwater/flood mitigation near Travis Ditch; drainage approval referenced. FEMA flood zone not determined."},"1294":{"description":"DartPoints CLU01 is an operational DartPoints‑run colocation, cloud, and interconnection data center in Columbus, Indiana, located at 2425 Technology Blvd. The purpose‑built site is noted for heavy storm‑hardened construction, including a 4.5‑million‑pound roof.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":86400,"year_online":"2010","construction_update":"Aug 22, 2025: DartPoints announced expansions across four sites including Columbus, IN, with phased deployments scheduled through early 2027 and a combined 25 MW of additional utility capacity.","recent_news":"","notable_tenants":"","verified_name":"DartPoints CLU01 – Columbus, IN","verified_operator":"DartPoints","verified_owner":"","cooling_type":"air-cooled","tier_level":"Uptime Institute Tier III Design","fiber_providers":"carrier-neutral; 6 on-site network providers; Megaport partnership for on-demand cloud connectivity","num_buildings":1,"campus_acres":2.1,"utility_provider":"Duke Energy","tax_incentives":"Historic: City of Columbus property tax abatement and city-supported fiber extension for the original project. Indiana also offers data center tax incentives including potential property tax abatements.","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard between the 100-year and 500-year flood limits)"},"1295":{"description":"Lumen SouthBend 1 is an operational Lumen Technologies telecom/colocation data center at 1140 Franklin Street, South Bend, Indiana, listed with 4,067 sq ft total space and 1,342 sq ft of colocation space. Lumen includes South Bend among its on‑net colocation markets.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4067,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen South Bend 1","verified_operator":"Lumen Technologies","verified_owner":"Williams Communications Inc (WilTel Communications)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":1.39,"utility_provider":"Indiana Michigan Power (I&M/AEP)","tax_incentives":"Parcel record indicates a TIF area ID field is present; no facility-specific abatement or incentive was identified for 1140 Franklin Street.","natural_hazard_zone":""},"1296":{"description":"OTAVA’s Indianapolis Data Center at 505 W Merrill St is an operational facility operated by OTAVA that provides secure enterprise cloud and disaster recovery services.","verified_status":"operational","power_capacity_mw":3,"total_sqft":43724,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"OTAVA Indianapolis","verified_operator":"OTAVA","verified_owner":"Mapletree Industrial Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral, 4 telecommunications providers with 2 physically diverse fiber points of entry","num_buildings":1,"campus_acres":0.85,"utility_provider":"AES Indiana","tax_incentives":"Indiana offers a state-level Data Center Gross Retail and Use Tax Exemption on qualifying equipment and energy purchases; no facility-specific abatement confirmed for this property","natural_hazard_zone":"FEMA Flood Zone X (shaded) — area of moderate flood hazard between the 100-year and 500-year flood limits"},"1297":{"description":"Digital Realty ORD11 is an operational colocation and interconnection data center operated by Digital Realty at 600 South Federal Street, Chicago, IL 60605. It is an eight‑story, approximately 142,000‑square‑foot facility with strong carrier connectivity and proximity to the 350 East Cermak hub.","verified_status":"operational","power_capacity_mw":0,"total_sqft":142000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty ORD11","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; 50+ on-net carriers at 600–780 S Federal (building)","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Illinois Data Center Investment Tax Exemptions/Credits program available; no facility-specific ORD11 award identified.","natural_hazard_zone":"Flood Zone X (Unshaded) – outside the 500-year floodplain"},"1298":{"description":"Digital Realty ORD12 is Digital Realty’s carrier/cloud‑neutral colocation data center at 9333 Grand Avenue in Franklin Park, Illinois, within the 40‑acre Digital Franklin Park campus, totaling 124,700 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":124700,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Chicago ORD12","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":40,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Illinois Data Center Investment Tax Exemptions and Credits (program established 2019; reported suspended by the Governor in June 2026 pending further discussion).","natural_hazard_zone":""},"1299":{"description":"Digital Realty ORD13 is an operational colocation data center at 9355 Grand Avenue in Franklin Park, Illinois, operated by Digital Realty; it is a two‑story, 292,000‑square‑foot facility within the 40‑acre Digital Franklin Park campus.","verified_status":"operational","power_capacity_mw":26,"total_sqft":292000,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty ORD13 (9355 Grand Avenue)","verified_operator":"Digital Realty","verified_owner":"Digital Grand Avenue, LLC (subsidiary of Digital Realty Trust)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":40,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Illinois Data Center Investment Program: exemptions from certain state and local taxes for qualifying data centers; benefits via MOU, renewable up to 20 years.","natural_hazard_zone":"FEMA Zone X (shaded) – moderate flood hazard (between 100-year and 500-year limits)"},"1300":{"description":"Equinix Chicago CH1 is an operational, carrier‑neutral Equinix IBX colocation facility at 350 East Cermak Road, 5th Floor, Chicago, located within Digital Realty’s landmark 350 E. Cermak (ORD10) building noted for its dense interconnection.","verified_status":"operational","power_capacity_mw":3.3,"total_sqft":107295,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Chicago Stock Exchange; Chicago Board Options Exchange (CBOE); Chicago Mercantile Exchange (CME); BATS; Intercontinental Exchange (ICE)","verified_name":"Equinix Chicago CH1 (Chicago IBX Data Center)","verified_operator":"Equinix","verified_owner":"Digital Realty Trust (Digital Realty)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; 195+–210+ network providers (large ecosystem)","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Illinois Data Centers Investment Program tax exemptions (and potential 20% construction-wage credit where eligible) applicable to qualifying facilities; commemorated by Digital Realty at 350 E. Cermak.","natural_hazard_zone":"Outside 500-year floodplain; Seismic Zone 0 (low seismic risk)"},"1301":{"description":"Equinix Chicago CH2 is an operational, carrier-neutral IBX colocation facility on the 6th floor of Digital Realty’s 350 East Cermak carrier-hotel building in Chicago, offering rich interconnection options.","verified_status":"operational","power_capacity_mw":2.3,"total_sqft":143630,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix Chicago CH2","verified_operator":"Equinix","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; example on-net provider includes Cogent.","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison Co. (ComEd)","tax_incentives":"Illinois Data Center Investment Program (state and local tax exemptions/credits for qualifying investments); no CH2-specific certificate found.","natural_hazard_zone":"Outside 500-year flood plain; Seismic Zone 0 (per building documentation)."},"1302":{"description":"Equinix Chicago CH4 is an operational, carrier-neutral Equinix IBX colocation data center located on the 8th floor of Digital Realty’s Lakeside Technology Center at 350 East Cermak Road in Chicago. The building is one of the Midwest’s most interconnected multi-tenant data centers.","verified_status":"operational","power_capacity_mw":2.4,"total_sqft":26560,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix Chicago CH4","verified_operator":"Equinix","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":3.76,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"","natural_hazard_zone":"Outside 500-year flood plain; Seismic Zone 0 (low risk)."},"1303":{"description":"Equinix Chicago CH3 is an Equinix-operated, carrier-neutral IBX colocation data center at 1905 Lunt Avenue in Elk Grove Village serving Chicago’s interconnection and financial-services ecosystem. It is part of Equinix’s Chicago campus of data centers.","verified_status":"operational","power_capacity_mw":20.65,"total_sqft":379662,"year_online":"2007","construction_update":"","recent_news":"June 2026: Cboe opened connectivity requests for cross connects to its Disaster Recovery switch pair located in Equinix CH3, advancing its DR migration.","notable_tenants":"Cboe (Cboe Futures Exchange disaster-recovery environment).","verified_name":"Chicago IBX Data Center CH3 (Equinix CH3)","verified_operator":"Equinix","verified_owner":"Equinix","cooling_type":"unknown","tier_level":"Tier IV (design/equivalent; no Uptime certification cited)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Historic local: Elk Grove Village Resolution No. 12-05 (2005) found 1905–1945 Lunt Ave appropriate for Cook County Class 6B status; no renewal/current record confirmed. Illinois offers a statewide data center tax incentive program.","natural_hazard_zone":""},"1304":{"description":"Equinix Chicago CH5 is an Equinix‑operated colocation (IBX) data center at 2001 Lunt Avenue, Elk Grove Village, Illinois. It is a newer Chicago‑metro facility providing interconnection and colocation services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":193110,"year_online":"2026","construction_update":"Jan 2026: Project Labor Agreements list Equinix CH5 at 2001 Lunt Ave with Clune Construction. May 6, 2026: IL EPA Bureau of Air FESOP operating‑permit public notice for Equinix CH‑5 (BoA 031440AVZ / Permit 26010002).","recent_news":"May 6, 2026: Illinois EPA Bureau of Air public notice for Equinix CH‑5 Data Center (BoA 031440AVZ / Permit 26010002) at 2001 Lunt Ave — FESOP operating permit.","notable_tenants":"","verified_name":"Equinix Chicago CH5","verified_operator":"Equinix","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; examples present include Hivelocity, PhoenixNAP, PacketFabric Japan, Hurricane Electric, and Global Telecom & Technology (GTT).","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"","natural_hazard_zone":"unknown"},"1305":{"description":"Equinix Chicago CH7 is an operational, carrier-neutral Equinix IBX colocation data center at 111 Plaza Drive in Westmont, Illinois, serving the Chicago interconnection/financial hub. Third-party directories indicate roughly 46,743 sq ft of building footprint and 12 MW of power capacity.","verified_status":"operational","power_capacity_mw":12,"total_sqft":46743,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Chicago CH7","verified_operator":"Equinix","verified_owner":"Equinix, LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (unshaded / above 500-year base flood elevation)"},"1306":{"description":"DataBank ORD1 Downtown Chicago Loop is an operational colocation/interconnection data center at 600 South Federal Street, Suites 150 & 142, Chicago, IL 60605, offering 10,130 IT square feet, 1 MW critical IT load, and 18 onsite carriers. Positioned in the Financial District, it is marketed for low‑latency connectivity to major financial institutions.","verified_status":"operational","power_capacity_mw":1,"total_sqft":10130,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank ORD1 - Downtown Chicago Loop Data Center","verified_operator":"DataBank","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"Tier III design (not Uptime certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (unshaded); Seismic Zone 0"},"1307":{"description":"DataBank ORD2 is an operational, carrier-neutral colocation and interconnection data center operated by DataBank at 840 S. Canal Street in Chicago, offering 11,470 IT square feet and a 2 MW critical IT load.","verified_status":"operational","power_capacity_mw":2,"total_sqft":11470,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank ORD2 – Downtown Chicago Metro Data Center","verified_operator":"DataBank","verified_owner":"Serverfarm (Server Farm Realty) — landlord/asset owner of 840 S. Canal (CH1); Serverfarm is majority-controlled by Manulife Investment Management","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 3 onsite carriers","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1308":{"description":"DataBank ORD3 Mount Prospect is an operational colocation data center operated by DataBank at 800 E. Business Center Drive, Mount Prospect, IL, offering 28,950 IT sq ft and 2.7 MW of critical IT load. The facility occupies an ~81.6k SF single-tenant building and traces its origins to CoreLink’s 2010 Chicago/Mount Prospect opening.","verified_status":"operational","power_capacity_mw":2.7,"total_sqft":81610,"year_online":"2010","construction_update":"","recent_news":"The property at 800 E Business Center Dr is listed for sale (June 2026) as a single-tenant, 81,610-SF data center investment with an investment-grade tenant (DataBank).","notable_tenants":"No publicly disclosed colocation anchor tenants; the building is a single-tenant data center with DataBank as the tenant per the current LoopNet sale listing.","verified_name":"DataBank ORD3 Mount Prospect Data Center","verified_operator":"DataBank","verified_owner":"First Industrial Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 8 onsite carriers","num_buildings":1,"campus_acres":5.4,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"","natural_hazard_zone":""},"1309":{"description":"DataBank ORD4 (Chicago Tri-State) is an operational colocation data center operated by DataBank at 1808 Swift Drive, Suites B & C, Oak Brook, Illinois, offering 77,510 IT square feet and 8.75 MW of critical IT load with 14 onsite carriers.","verified_status":"operational","power_capacity_mw":8.75,"total_sqft":147400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank ORD4 - Chicago Tri-State Data Center","verified_operator":"DataBank","verified_owner":"CenterPoint Properties Trust","cooling_type":"hybrid","tier_level":"Tier III equivalent","fiber_providers":"carrier-neutral; 14 onsite carriers","num_buildings":1,"campus_acres":9,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Program available (sales/use tax exemptions and credits) for certified sites; no public record found of a facility-specific certification/award for ORD4. Note: two-year suspension for new developments announced Feb 18, 2026.","natural_hazard_zone":""},"1310":{"description":"CoreSite CH1 is CoreSite’s operational colocation data center at 427 S. LaSalle St. in downtown Chicago, adjacent to the Board of Trade, offering 180,000+ square feet and positioned as a network-dense, cloud-connected site within CoreSite’s Chicago campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":180000,"year_online":"unknown","construction_update":"","recent_news":"January 15, 2026: CoreSite’s Chicago Data Center Campus began offering AWS Native 400G Direct Connect, enhancing campus connectivity for high-bandwidth cloud and AI workloads (campus-wide, not CH1-specific).","notable_tenants":"","verified_name":"CoreSite CH1 - Chicago Data Center","verified_operator":"CoreSite","verified_owner":"Carlyle Group","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; 60+ networks","num_buildings":1,"campus_acres":0.64,"utility_provider":"ComEd","tax_incentives":"","natural_hazard_zone":""},"1311":{"description":"CoreSite CH2 is a purpose-built colocation data center operated by CoreSite at 1432 S Clinton St in Chicago. CoreSite notes it as the first purpose-built data center in downtown Chicago.","verified_status":"operational","power_capacity_mw":18,"total_sqft":169000,"year_online":"2020","construction_update":"","recent_news":"January 2026: CoreSite’s Chicago campus began offering AWS Native 400G Direct Connect, enhancing cloud connectivity available at the campus (including CH2).","notable_tenants":"STN, Inc. (GPU One) — GPU One cluster operated within CH2 with 1,500+ NVIDIA B200 GPUs.","verified_name":"CoreSite CH2","verified_operator":"CoreSite","verified_owner":"American Tower Corporation","cooling_type":"hybrid","tier_level":"Tier III equivalent design (concurrently maintainable; not formally Uptime Institute certified)","fiber_providers":"Carrier-neutral; 60+ networks; three diverse fiber entry routes","num_buildings":1,"campus_acres":2,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Illinois Data Center Tax Incentive: 10.25% Illinois sales tax exemption on qualifying IT equipment (including maintenance) and enabling software","natural_hazard_zone":"low risk"},"1312":{"description":"365 Data Centers’ Downtown Chicago facility is an operational colocation site at 427 S. La Salle Street within the CoreSite CH1 building, offering redundant power, cooling, connectivity, and 24/7/365 security across roughly 10,000 sq ft.","verified_status":"operational","power_capacity_mw":1,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers Chicago Data Center (CH6)","verified_operator":"365 Data Centers","verified_owner":"CoreSite (an American Tower company)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; connectivity to 86 carriers","num_buildings":1,"campus_acres":0.64,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"","natural_hazard_zone":"low risk"},"1313":{"description":"Centersquare’s Chicago (Cermak) ORD1 is an operational colocation data center at 350 East Cermak in Chicago, offering 58,893 sq. ft. of raised floor and 32.8 MW utility power. The building is one of the most interconnected multi-tenant data centers in the Midwest.","verified_status":"operational","power_capacity_mw":32.8,"total_sqft":183419,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"No anchor tenant is publicly disclosed. Telnyx is listed as a participant at Centersquare ORD1-B,C,D in a marketplace directory, but this should not be treated as an anchor tenant.","verified_name":"Csquare ORD1 Chicago","verified_operator":"Csquare","verified_owner":"Digital Realty Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":3.76,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Illinois Data Center Investment Tax Exemptions and Credits program; new agreements paused effective July 1, 2026 pending policy changes.","natural_hazard_zone":"Above 500-year base flood elevation (per CH1 at 350 E. Cermak)."},"1314":{"description":"H5 Data Centers Chicago is a planned colocation data center at 1951 W. Hastings St. in the Illinois Medical District that H5 will develop and operate in partnership with Metro Edge; it is designed for a four‑story, ~185,000 sq ft build with up to 36 MW and is targeted to be ready in 2H 2027.","verified_status":"planned","power_capacity_mw":36,"total_sqft":185000,"year_online":"2027","construction_update":"Site plan approval granted by Chicago DPD on June 24, 2023 for the 1951 W. Hastings IMD1 data center; project materials indicate target readiness in 2H 2027.","recent_news":"","notable_tenants":"","verified_name":"H5 Data Centers Chicago","verified_operator":"H5 Data Centers","verified_owner":"Metro Edge Development Partners (documented ground lessee/developer/asset holder; fee-title owner not publicly determinable)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":3.6,"utility_provider":"ComEd / Commonwealth Edison","tax_incentives":"Illinois Data Center Investment Tax Exemptions and Credits (state data center program)","natural_hazard_zone":""},"1315":{"description":"QTS Chicago 1 is QTS Data Centers’ operational colocation facility at 2800 S. Ashland Ave in Chicago, converted from the former Chicago Sun‑Times printing plant and opened in 2016; the current building totals about 467,000 sq ft with roughly 40 MW on a 30‑acre campus, with a second building planned at full build‑out.","verified_status":"operational","power_capacity_mw":40,"total_sqft":467000,"year_online":"2016","construction_update":"Dec 17, 2024: Chicago City Council approved QTS’s proposed second data‑center building at 2800 S. Ashland; preceded by Plan Commission approval on Nov 29, 2024. A public record lists the expansion as a permit‑approved project. No newer construction milestone found through June 2026.","recent_news":"","notable_tenants":"","verified_name":"QTS Chicago 1 DC1","verified_operator":"QTS Data Centers","verified_owner":"Blackstone (via Blackstone Infrastructure Partners and Blackstone Real Estate Income Trust/BREIT); property entity includes QTS Investment Properties Chicago, LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; networks include Arelion (Twelve99) and Cogent, among others per PeeringDB.","num_buildings":2,"campus_acres":30,"utility_provider":"ComEd","tax_incentives":"Class 6b property tax incentive requested in the 2024 Planned Development amendment; Cook County Class 6(b) offers a 12-year assessment reduction.","natural_hazard_zone":"River-adjacent (South Branch Chicago River); FEMA flood zone designation unknown."},"1316":{"description":"Netrality 717 South Wells is an interconnection‑rich colocation data center operated by Netrality at 717 South Wells Street in Chicago’s financial district, marketed as one of the most connected facilities in the city with 30+ on‑net providers.","verified_status":"operational","power_capacity_mw":5.7,"total_sqft":100000,"year_online":"unknown","construction_update":"Aug 2024: Netrality marketed a move-in-ready 9th-floor expansion at 717 South Wells with 600 kW of power and 4,300 SF of colocation space.","recent_news":"","notable_tenants":"BSO","verified_name":"Chicago Data Center – 717 South Wells","verified_operator":"Netrality Data Centers","verified_owner":"Netrality Properties / Netrality Data Centers (a Macquarie Asset Management portfolio company via Macquarie Infrastructure Partners IV)","cooling_type":"hybrid","tier_level":"Tier III standards; no public Uptime Institute certification found.","fiber_providers":"carrier-neutral; 30+ on-net providers including AT&T, BT Americas, Cogent, Comcast, Crown Castle, Everstream, FD-IX Fiber Data Exchange, Global Peer Exchange, Hurricane Electric, Lumen, Megaport, NexGen Networks, NET-IX, US Signal, Verizon, Windstream, Zayo, plus Lumen Cloud Connect and Zayo CloudLink.","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"","natural_hazard_zone":"low risk; outside the 500-year floodplain."},"1317":{"description":"Element Critical Chicago One is an operational colocation data center operated by Element Critical at 711 N. Edgewood Avenue in Wood Dale, Illinois. It offers roughly 151,000 sq ft of facility space and about 7 MW of IT power, with JLL describing CH1 as a two‑story, 150,895‑SF facility serving tenants [1][2][3].","verified_status":"operational","power_capacity_mw":7,"total_sqft":151000,"year_online":"unknown","construction_update":"","recent_news":"JLL is actively marketing Element Critical’s Chicago One (with Chicago Two) for sale, describing CH1 as a two‑story, 150,895‑SF data center that serves tenants [1].","notable_tenants":"No publicly named anchor tenants. JLL’s listing notes CH1 serves 21 tenants but does not identify them [1].","verified_name":"Element Critical Chicago One","verified_operator":"Element Critical","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; major carriers present (e.g., AT&T, Lumen, Comcast, Crown Castle, Verizon, Zayo, Cogent) and on-ramps (e.g., Megaport).","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"","natural_hazard_zone":"Low risk — located outside the 100-year and 500-year FEMA floodplains."},"1318":{"description":"White City Colocation Chicago is an operational, privately owned and operated colocation and managed-hosting data center at 155 N. Michigan Avenue, Suite 765, Chicago, run by White City Colocation. The operator states the site offers more than 8,000 sq ft of turnkey data center space with redundant power and cooling systems.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"White City Colocation","verified_operator":"White City Colocation","verified_owner":"Pristine LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard; between 100-year and 500-year limits)"},"1319":{"description":"Colocation America Chicago DC1 (CHIDC1) is Colocation America’s colocation suite in Suite 8 at 350 E. Cermak Road inside Digital Realty’s ORD10/Lakeside Technology Center in Chicago, which Digital Realty describes as the most interconnected multi-tenant data center in the Midwest.","verified_status":"operational","power_capacity_mw":0,"total_sqft":58852,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Colocation America Chicago DC 1 (CHIDC1), inside Digital Realty ORD10 at 350 East Cermak","verified_operator":"Colocation America","verified_owner":"Digital Realty Trust, Inc.","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; 70+ network providers","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Illinois Data Center Investment Program — exemptions from Illinois state and local taxes for qualifying data centers; 350 E. Cermak is noted as qualifying for a 100% sales tax exemption on IT equipment and software.","natural_hazard_zone":"Outside 500-year flood plain; Seismic Zone 0"},"1320":{"description":"CyrusOne CHI5 is a colocation data center operated by CyrusOne at 1850 Springer Drive, Lombard, IL 60148, offering 12 MW total IT capacity and about 60,000 sq ft of technical space. The site is commissioned/operational.","verified_status":"operational","power_capacity_mw":12,"total_sqft":60000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne CHI5 (Lombard, IL)","verified_operator":"CyrusOne","verified_owner":"CyrusOne","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"","natural_hazard_zone":"Likely FEMA Flood Zone X (outside Special Flood Hazard Area); overall low-to-moderate local flood risk"},"1321":{"description":"CyrusOne CHI2 Chicago Aurora is an operational wholesale/colocation data center at 2805 Diehl Rd on CyrusOne’s Aurora, IL (CHI1–CHI3) campus, totaling about 428,000 sq ft with roughly 240,000 sq ft of raised floor and up to 58.4 MW of capacity.","verified_status":"operational","power_capacity_mw":58.4,"total_sqft":428000,"year_online":"2016","construction_update":"June 25, 2026: Sound-mitigation work continued at Building 2 (CHI2); April 23, 2026 City notice cited scheduled daytime backup-generator operation during maintenance.","recent_news":"June 25, 2026: CyrusOne reported continued sound-mitigation work at Building 2 (CHI2); work at Building 3 (CHI3) was substantially complete.","notable_tenants":"CME Group (CME Globex trading platform)","verified_name":"CyrusOne CHI2 Chicago Aurora Data Center","verified_operator":"CyrusOne","verified_owner":"CyrusOne (portfolio owned by funds managed by KKR and Global Infrastructure Partners)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; AWS Direct Connect location on-site with 10 Gbps and 100 Gbps options.","num_buildings":3,"campus_acres":16,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Program (state/local sales and use tax exemptions for qualifying data centers).","natural_hazard_zone":"unknown"},"1322":{"description":"CyrusOne’s Aurora CHI1–CHI3 campus is an operational wholesale/colocation data center campus at 2705–2905 Diehl Rd., Aurora, IL, comprising the CHI1, CHI2, and CHI3 facilities. The official specs list 450,000 sq. ft. of technical IT space and 109 MW total IT capacity.","verified_status":"operational","power_capacity_mw":109,"total_sqft":450000,"year_online":"2016","construction_update":"June 2026: Ongoing campus noise/sound‑mitigation work for CHI1–CHI3 per CyrusOne’s community schedule for the Aurora campus.","recent_news":"June 2026: CyrusOne posted updated community notices for CHI1–CHI3 outlining ongoing noise/sound‑mitigation construction work at the Aurora campus.","notable_tenants":"CME Group (CME Globex trading platform presence); AWS Direct Connect location at CyrusOne Aurora","verified_name":"CyrusOne Aurora, IL: CHI1–CHI3","verified_operator":"CyrusOne","verified_owner":"C1 Chicago – Aurora I, LLC and C1 Chicago – Aurora II, LLC (CyrusOne affiliates); CyrusOne is owned by funds managed by KKR and Global Infrastructure Partners.","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; AWS Direct Connect available with 10 Gbps and 100 Gbps (MACsec-capable).","num_buildings":3,"campus_acres":16,"utility_provider":"","tax_incentives":"Illinois Data Center Investment Program sales/use tax exemptions; project listed as CyrusOne (C1 Chicago), Aurora in the state’s annual report with certified status and reported qualified investment.","natural_hazard_zone":""},"1323":{"description":"Edged Chicago ORD01-1 is a multi-tenant data center operated by Edged at 2835 Bilter Road in Aurora (Chicago area), opened in 2025 and designed to support high-density AI workloads.","verified_status":"operational","power_capacity_mw":24,"total_sqft":210000,"year_online":"2025","construction_update":"June 2026: ORD01-2 on the same campus topped out; it is due to start operating in Q2 2027.","recent_news":"June 4, 2026: Edged topped out ORD01-2, the second building on the same Aurora/Chicago campus; the 72 MW facility is fully pre-leased.","notable_tenants":"","verified_name":"Edged Chicago ORD01-1","verified_operator":"Edged US","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; multiple fiber providers","num_buildings":2,"campus_acres":65,"utility_provider":"ComEd","tax_incentives":"","natural_hazard_zone":""},"1324":{"description":"EdgeConneX Chicago CHI01 is an operational, carrier-neutral data center at 1800 Nicholas Blvd in Elk Grove Village, IL, delivering 24 MW (N+1) on the EdgeConneX Chicago campus and housed in a 132,000 sq ft building.","verified_status":"operational","power_capacity_mw":24,"total_sqft":132000,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX Chicago CHI01","verified_operator":"EdgeConneX","verified_owner":"EdgeConnex Chicago Holdings LLC (ultimate corporate parent: EQT Infrastructure funds)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; AT&T; Cogent; Zayo","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"No CHI01-specific incentive confirmed; Illinois has a statewide Data Center Investment Tax Exemptions and Credits program.","natural_hazard_zone":""},"1325":{"description":"EdgeConneX Chicago CHI02 is an EdgeConneX-operated carrier-neutral colocation data center at 2021 Lunt Ave in Elk Grove Village, part of the company’s Chicago campus. Current operator materials note 7MW N+1 power with about 40,000 sq ft of floor space.","verified_status":"operational","power_capacity_mw":7,"total_sqft":64000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX CHI02","verified_operator":"EdgeConneX","verified_owner":"2021 Lunt Ave, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Illinois Data Center Investment Program (state/local tax exemptions) available; Cook County Class 6B property-tax incentives were pursued for nearby EdgeConneX parcels (e.g., 2055 Lunt, 1700 Nicholas), but no CHI02-specific award is cited.","natural_hazard_zone":""},"1326":{"description":"EdgeConneX Chicago CHI03 is the company’s facility at 2055 Lunt Ave in Elk Grove Village on its Chicago campus, marketed at 22.4 MW and roughly 167,000 sq ft, with construction/expansion activity continuing into 2026.","verified_status":"under-construction","power_capacity_mw":22.4,"total_sqft":167000,"year_online":"unknown","construction_update":"Apr 16, 2025: Contractor reported precast panel installation in full swing at CHI03. Early 2026: Illinois EPA issued a construction permit for 2055 Lunt Ave (EdgeConneX Chicago Holdings LLC).","recent_news":"Early 2026: Illinois EPA issued a construction permit to EdgeConneX Chicago Holdings LLC for work at 2055 Lunt Avenue in Elk Grove Village.","notable_tenants":"","verified_name":"EdgeConneX Chicago CHI03","verified_operator":"EdgeConneX","verified_owner":"EdgeConneX Chicago Holdings, LLC (EdgeConneX); EdgeConneX is owned by EQT Infrastructure","cooling_type":"hybrid","tier_level":"Tier III design (no Uptime certification cited)","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Cook County property tax break for the Elk Grove development; Illinois Data Center Investment Program sales/use/service tax exemptions for qualifying data centers.","natural_hazard_zone":"Regional risks include tornado/severe storms and low-to-moderate seismic exposure tied to the Wabash Valley Seismic Zone; site is not in a hurricane zone. Address-specific FEMA flood zone not determined."},"1327":{"description":"Stream Data Centers Chicago I is a hyperscale/wholesale data center at 2080 Lunt Avenue in Elk Grove Village, Illinois, operated by Stream Data Centers. It is fully leased, totals 155,189 square feet, offers 31 MW of utility power, and first became available in 2020.","verified_status":"operational","power_capacity_mw":31,"total_sqft":155189,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Stream Data Centers Chicago I","verified_operator":"Stream Data Centers","verified_owner":"Apollo Global Management (via Apollo-managed funds)","cooling_type":"air-cooled","tier_level":"Designed to Tier III standards","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"Illinois Data Centers Investment Program (state sales/use tax exemptions; potential 20% construction employment income tax credit in underserved areas).","natural_hazard_zone":"Outside FEMA 500-year flood plain (low flood risk)"},"1328":{"description":"Stream Data Centers Chicago II is a wholesale/hyperscale data center operated by Stream Data Centers in Elk Grove Village, Illinois, offering 32 MW across a 226,000‑square‑foot facility.","verified_status":"operational","power_capacity_mw":32,"total_sqft":226000,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Stream Data Centers Chicago II (1925 Busse Road, Elk Grove Village, IL 60007)","verified_operator":"Stream Data Centers","verified_owner":"Stream Data Centers (majority-owned by Apollo-managed funds)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":10,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Program: state/local sales and use tax exemptions (and 20% construction wages income tax credit in underserved areas). New applications paused/suspended effective July 1, 2026.","natural_hazard_zone":"Not determined; inland (no hurricane exposure) and low seismic region; site-specific FEMA flood zone not confirmed."},"1329":{"description":"Summit (formerly Deft) operates a wholesale/colocation footprint at 2200 Busse Road inside Digital Realty’s CH1 campus in Elk Grove Village, IL. The site is a leased deployment within CH1 rather than a Summit-owned building.","verified_status":"operational","power_capacity_mw":36.4,"total_sqft":485000,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"No anchor tenant publicly disclosed. Building-level ecosystem shows Rackspace ORD1 and HostPapa CH1 at 2200 Busse Road; Summit lists Picsart as a customer.","verified_name":"Summit Elk Grove Village Data Center","verified_operator":"Summit","verified_owner":"Digital Realty Trust","cooling_type":"evaporative chilled water","tier_level":"Tier III design","fiber_providers":"Carrier-neutral with multiple major carriers; three diverse fiber paths to 350 E. Cermak; Cogent on-net at CH1.","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"","natural_hazard_zone":"Low risk — outside 500-year flood plain; seismic rating 0"},"1330":{"description":"Skybox Chicago I at 800 E Devon Ave in Elk Grove Village was developed by Skybox/Prologis as a 190,000‑sq‑ft, 30‑MW powered‑shell, and is now owned by DigiCo Infrastructure REIT as Chicago CHI1, a 32‑MW hyperscale facility under a long‑term hyperscale lease.","verified_status":"under-construction","power_capacity_mw":32,"total_sqft":190000,"year_online":"2022; full 32MW fit-out expected 2026","construction_update":"Remaining 12MW of capacity scheduled to complete by July 2026.","recent_news":"May 2026: DigiCo agreed to sell Chicago CHI1 for US$750 million to a North American fund manager (deal announced; closing pending).","notable_tenants":"No named tenant publicly disclosed; leased to a major hyperscale customer under a 15-year agreement.","verified_name":"Skybox Chicago I","verified_operator":"Skybox Datacenters","verified_owner":"DigiCo Infrastructure REIT (HMC Capital)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":9.51,"utility_provider":"","tax_incentives":"Illinois Data Center Investment Program sales/use-tax exemptions; Cook County Class 6B property-tax incentive granted for the redevelopment.","natural_hazard_zone":""},"1331":{"description":"Aligned ORD-01 is an operational hyperscale data center operated by Aligned Data Centers at 505 Northwest Ave, Northlake, Illinois, on the company’s Chicago/Northlake campus; it was the first Illinois data center to earn Green Globes for New Construction.","verified_status":"operational","power_capacity_mw":48,"total_sqft":220000,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aligned ORD-01 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"Aligned Data Centers (ORD) PropCo LP (MOU amended from LLC per Illinois DCEO report)","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; multiple providers","num_buildings":2,"campus_acres":18.5,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Illinois Data Center Investment Program sales and use tax exemptions applicable to qualifying investments and equipment.","natural_hazard_zone":"Moderate flood risk (city-level); parcel-specific FEMA zone verification recommended"},"1332":{"description":"Aligned ORD-02 is a hyperscale data center operated by Aligned Data Centers at 501 Northwest Ave in Northlake, IL, on the company’s Chicago/Northlake campus. It was the first data center to achieve OCP Ready for Hyperscale certification.","verified_status":"operational","power_capacity_mw":36,"total_sqft":228768,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aligned ORD-02 Data Center (Chicago ORD-02)","verified_operator":"Aligned Data Centers","verified_owner":"Macquarie Asset Management-managed infrastructure funds via the Aligned Data Centers platform; parcel-level title holder for 501/505 Northwest Ave not publicly confirmed in cited records.","cooling_type":"hybrid","tier_level":"OCP Ready for Hyperscale (no Uptime Tier certification published)","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":18.5,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Program sales/use tax exemptions.","natural_hazard_zone":"Moderate flood risk (city-level); FEMA Zone X/B likely nearby; parcel-specific FEMA confirmation not provided."},"1333":{"description":"Aligned ORD-03 is Aligned Data Centers’ under-construction hyperscale facility at 50 NW Point Blvd in Elk Grove Village, Illinois, forming part of a two-building campus of roughly 36 acres. Trackers and local reporting indicate a ~100 MW combined ORD-03/ORD-04 project and an approximately 1 million sq ft campus, with ORD-03 targeted for late 2028 completion.","verified_status":"under-construction","power_capacity_mw":100,"total_sqft":520000,"year_online":"2028","construction_update":"As of 2026-04-27, the ORD-03/ORD-04 Elk Grove Village project is listed as under construction (100 MW). In Feb 2024, a tax break was granted for the campus to demolish offices at 50/100/101/150 Northwest Point Blvd and build data centers; trackers note first-building construction by end-2024 with completion in late 2028.","recent_news":"","notable_tenants":"","verified_name":"Aligned ORD-03 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"Aligned Data Centers (affiliated ownership entity; exact title-holding LLC not identified).","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":36,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Local tax break approved for the Elk Grove Village campus (Northwest Point properties).","natural_hazard_zone":"Periodic flooding context along the Salt Creek watershed; site-specific FEMA flood zone not determined."},"1334":{"description":"Microsoft Azure North Central US-Illinois is an operational hyperscale Azure data center at 601 Northwest Avenue in Northlake, Illinois, operated by Microsoft, with a footprint of roughly 700,000 square feet.","verified_status":"operational","power_capacity_mw":158,"total_sqft":707244,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"Microsoft Corporation / Microsoft Azure (owner-occupied; no third-party anchor tenants publicly disclosed).","verified_name":"Microsoft Azure North Central US-Illinois","verified_operator":"Microsoft","verified_owner":"Microsoft","cooling_type":"evaporative","tier_level":"","fiber_providers":"AT&T; Zayo","num_buildings":0,"campus_acres":14.78,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Program: tax credit certificate for 20% of construction wages paid for qualifying data centers located in underserved areas (if applicable).","natural_hazard_zone":"Moderate flood risk at the city level; FEMA Special Flood Hazard Areas exist in Northlake. Parcel-specific FEMA zone not confirmed."},"1335":{"description":"Lumen Chicago (also listed as Level(3) Chicago (Canal)) is an operational Lumen telecom/colocation data center suite at 111 N Canal St, Suite 200, Chicago. It totals 57,847 sq ft with 22,750 sq ft of raised floor space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":57847,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Chicago 1 Data Center","verified_operator":"Lumen","verified_owner":"J.P. Morgan Asset Management","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen; Cogent","num_buildings":1,"campus_acres":1.32,"utility_provider":"ComEd","tax_incentives":"","natural_hazard_zone":"Seismic Zone 0; FEMA flood zone undetermined"},"1336":{"description":"Lumen Chicago 2 is an operational Lumen (legacy Level 3) telecom colocation and interconnection facility at 900 N. Kingsbury Street in Chicago, offering 182,016 sq ft total with 10,840 sq ft of colocation space and an 8 MW power capacity.","verified_status":"operational","power_capacity_mw":8,"total_sqft":182016,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Chicago 2","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":2.64,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Illinois Data Center Investment Tax Exemptions program is available statewide; eligibility for this facility is not confirmed.","natural_hazard_zone":"Conflicting sources: listings indicate FEMA Flood Zone X (Minimal), but other tools show some flood risk; site is adjacent to the Chicago River."},"1337":{"description":"Lumen Broadview 1 is an operational Lumen colocation/telecom data center at 2101 Roberts Drive, Broadview, Illinois, listed at roughly 60,000 sq ft with about 8,917 sq ft of raised-floor/colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":60000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Broadview 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"Level 3 Communications (Lumen subsidiary)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.82,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"","natural_hazard_zone":"Minor city-level flood risk (parcel-specific FEMA zone not confirmed)"},"1338":{"description":"US Signal IL01 Chicago is an operational colocation data center operated by US Signal at 810 Jorie Blvd., Oak Brook, Illinois. Industry reporting places the facility at about 13,055 sq ft, and US Signal lists the site at this address with support contacts.","verified_status":"operational","power_capacity_mw":0.25,"total_sqft":13055,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"IL01 Chicago Data Center","verified_operator":"US Signal","verified_owner":"Serverfarm (Server Farm Realty)","cooling_type":"air-cooled","tier_level":"Tier II (design standard)","fiber_providers":"Carrier-neutral; meet-me-cabinet on site; on-net options at the campus include Cogent Communications, Comcast, Zayo; access to US Signal’s backbone.","num_buildings":1,"campus_acres":13.49,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Tax Exemptions and Credits program (statewide). A two-year suspension for new data center developments was announced in Feb 2026; no site-specific incentives identified.","natural_hazard_zone":"FEMA Flood Zone X (area of moderate flood hazard between 100-year and 500-year boundaries) nearby; local Salt Creek flood considerations; low-to-moderate regional seismic exposure (distant New Madrid/Wabash Valley zones)."},"1339":{"description":"SBA Edge Chicago is an operational colocation/edge data center operated by SBA Edge at 603 Discovery Drive in West Chicago, Illinois. The purpose-built facility totals about 80,000 sq ft with multi‑megawatt capacity and supports high‑density configurations.","verified_status":"operational","power_capacity_mw":6.4,"total_sqft":80000,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"No hyperscale anchor tenant publicly disclosed. Publicly named deployments/connectivity at the site include United Internet Exchange/United IX (ChIX) at 603 Discovery, Trilogy Networks (edge/NFV deployment in 2019), and ISI Communications (moved core network/critical service functions in 2019).","verified_name":"SBA Edge West Chicago (also marketed as SBA Edge Chicago)","verified_operator":"SBA Edge","verified_owner":"SBA Communications Corporation (via SBA Edge; acquired New Continuum Data Centers in 2019)","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; served by eight direct fiber providers; access to 40+ networks via United Internet Exchange; direct cloud access to AWS, Azure, and Google.","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Eligible for Illinois’ Data Centers Investment Program (state and local sales-tax exemptions) if qualification criteria are met; as of June 5, 2026, the governor directed a pause on new data center incentives.","natural_hazard_zone":""},"1340":{"description":"ColocationPLUS Rantoul 1 is an operational colocation data center at 101 W International Ave, Rantoul, Illinois, operated by ColocationPLUS. The site—an ex‑military facility known as “The Fortress”—is presented as a secure facility with robust features.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ColocationPLUS Rantoul 1 (The Fortress)","verified_operator":"ColocationPLUS (initiative of Prominic.NET)","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Mediacom, AT&T, Frontier, Comcast, Crown Castle, Windstream; private fiber network with radio-tower backup","num_buildings":1,"campus_acres":16.5,"utility_provider":"Village of Rantoul (municipal electric)","tax_incentives":"Village programs include the Rantoul Enterprise Zone, TIF districts, loan funds, Foreign Trade Zone, and HUBZone; no site-specific abatement identified.","natural_hazard_zone":"Low overall risk indicators (Flood Factor 1/10 minimal; Fire Factor 1/10 minimal; Heat Factor 3/10 moderate; Wind Factor 2/10 minor); FEMA flood zone not confirmed"},"1341":{"description":"Pearl Technology Bloomington Data Center is a colocation facility at 303 E Washington St, Bloomington, Illinois, operated by Pearl Technology, offering colocation, connectivity, cloud, disaster recovery, and hosting.","verified_status":"operational","power_capacity_mw":0,"total_sqft":27240,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Pearl Technology Bloomington Data Center","verified_operator":"Pearl Technology","verified_owner":"PEARL ENTERPRISES OF ILLINOIS LLC","cooling_type":"unknown","tier_level":"Tier III (design standard; no Uptime Institute certification record found)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.99,"utility_provider":"Ameren Illinois","tax_incentives":"Illinois Data Center Investment program exists statewide; no facility-specific certification found. Downtown TIF initiatives noted in Bloomington but no explicit inclusion of 303 E Washington documented.","natural_hazard_zone":"Bloomington area FEMA Flood Zone X (not Special Flood Hazard Area); local code wind design 115 mph; Seismic Design Category B; county-level tornado exposure."},"1342":{"description":"Oppidan (through Connect Data Centers) is developing a 90,000 sq ft wholesale data center at 245 Kehoe Boulevard in Carol Stream, IL, on the former Henkel site, with a design featuring five 2MW data halls and a planned go-live in 2026.","verified_status":"under-construction","power_capacity_mw":10,"total_sqft":90000,"year_online":"2026","construction_update":"Groundbreaking announced November 28, 2024; the project is under construction per local updates, with no later public milestone posted.","recent_news":"","notable_tenants":"","verified_name":"Connect Chicago (Oppidan Carol Stream Data Center)","verified_operator":"Connect Data Centers by Oppidan","verified_owner":"Oppidan Investment Company","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":11.41,"utility_provider":"ComEd","tax_incentives":"No site-specific certification confirmed; Illinois Data Center Investment Program exists statewide.","natural_hazard_zone":"Potential flood risk area near Kehoe Boulevard streambank; FEMA zone undetermined."},"1343":{"description":"Netrality Data Centers operates 717 South Wells, a carrier-dense colocation and interconnection data center in Chicago’s Financial District at 717 South Wells Street, providing reliable network interconnection for carriers and enterprises.","verified_status":"operational","power_capacity_mw":5,"total_sqft":100000,"year_online":"unknown","construction_update":"Netrality published a Chicago data center expansion highlighting delivery of 600 kW of power and 4,300 SF of network-rich colocation space.","recent_news":"","notable_tenants":"No single anchor tenant publicly identified; BSO operates an on-net PoP at 717 S. Wells (announced 2016).","verified_name":"Chicago Data Center - 717 South Wells","verified_operator":"Netrality Data Centers","verified_owner":"Netrality Properties (Netrality Data Centers); ultimate sponsor Macquarie Infrastructure Partners IV (Macquarie Asset Management)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 30+ on-net providers; 4 IXs; ~1.3 fiber miles to 350 Cermak","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Outside 100-year and 500-year FEMA floodplains"},"1344":{"description":"Aligned ORD-03 is Aligned Data Centers’ hyperscale data center at 50 NW Point Blvd in Elk Grove Village, Illinois, forming part of a 36‑acre campus near O’Hare. It is under construction as one of two large buildings planned for the ORD‑03/ORD‑04 redevelopment.","verified_status":"under-construction","power_capacity_mw":100,"total_sqft":1040000,"year_online":"2028","construction_update":"2024-05-14: Elk Grove Village Resolution 30-24 approved the ORD-03 plat/subdivision for 50, 141, and 150 Northwest Point Blvd. By 2026-04-27, public project tracking listed the ORD-03/ORD-04 campus as under construction.","recent_news":"April 27, 2026: Project listing shows Aligned Data Centers ORD-03 / ORD-04 in Elk Grove Village as under construction with 100 MW capacity.","notable_tenants":"","verified_name":"Aligned ORD-03","verified_operator":"Aligned Data Centers","verified_owner":"Macquarie Asset Management (sale to GIP/MGX/AI Infrastructure Partnership consortium announced Oct 2025; targeted to close in H1 2026)","cooling_type":"hybrid","tier_level":"Designed to Tier III standards","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":36,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Cook County Class 6b property tax incentive — 12-year reduction (assessed at 10% years 1–10, 15% year 11, 20% year 12).","natural_hazard_zone":"FEMA Flood Zone X (minimal flood risk) area outside Salt Creek corridor; low seismic risk region"},"1345":{"description":"ColocationPLUS Champaign Data Center (also listed as Champaign 1) is an operational colocation facility operated by ColocationPLUS at 401 South Chestnut Street, Champaign, Illinois 61820. It is marketed as the company’s Champaign site near the University of Illinois, with connectivity including service from five Tier‑1 ISPs.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Feb 2026: Champaign County advanced a proposed 12‑month moratorium on permits for “big data centers” and stood up a Data Center Activities Task Force; this pertains to future large projects countywide, not a specific expansion at 401 S Chestnut.","notable_tenants":"","verified_name":"ColocationPLUS: Champaign 1","verified_operator":"ColocationPLUS (Prominic.NET, Inc.)","verified_owner":"FORTRESS CMI ONE, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Ameren Illinois","tax_incentives":"","natural_hazard_zone":""},"1346":{"description":"Lumen Chicago 2 is an operational colocation/interconnection facility operated by Lumen Technologies (formerly Level 3) at 900 N Kingsbury St in Chicago. Listings indicate 182,016 sq ft total space with 10,840 sq ft of colocation area.","verified_status":"operational","power_capacity_mw":8,"total_sqft":182016,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Chicago 2 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen network; access to multiple carriers","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (minimal flood hazard); third-party Flood Factor shows elevated flood risk at the building"},"1347":{"description":"Equinix AT5 was a colocation data center at 2836 Peterson Place NW in Norcross, Georgia, a legacy Verizon site later operated by Equinix. Industry news reported Equinix’s planned lease exit/non‑renewal effective June 30, 2024.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":40949,"year_online":"unknown","construction_update":"Equinix planned not to renew/exit the AT5 lease effective June 30, 2024.","recent_news":"","notable_tenants":"","verified_name":"Equinix AT5","verified_operator":"Equinix (former; facility decommissioned/closed)","verified_owner":"Prologis","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Georgia statewide High-Technology Data Center Equipment Sales & Use Tax Exemption (eligibility depends on investment/job thresholds; no site-specific confirmation).","natural_hazard_zone":"FEMA Flood Zone X (unshaded) – low flood risk"},"1348":{"description":"Equinix xScale Hampton is an under-construction hyperscale data center campus at 1000 Site Parkway in Hampton, Georgia, developed by Equinix; reports describe a four‑building campus totaling 240 MW.","verified_status":"under-construction","power_capacity_mw":240,"total_sqft":0,"year_online":"unknown","construction_update":"Site clearing occurred by Feb. 21, 2026, and Georgia EPD held a public hearing on the AT10x draft NPDES permit on May 21, 2026.","recent_news":"Georgia EPD issued a draft NPDES permit for Equinix, Inc. – AT10x, with a public hearing on May 21, 2026, while Equinix’s Q1 2026 update noted the xScale Hampton lease transaction had not yet closed.","notable_tenants":"","verified_name":"Equinix xScale Hampton Campus (AT10x–AT13x)","verified_operator":"Equinix, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":4,"campus_acres":0,"utility_provider":"","tax_incentives":"Eligible for Georgia’s High-Technology Data Center Equipment sales/use tax exemption if minimum investment and job thresholds are met.","natural_hazard_zone":""},"1349":{"description":"QTS Atlanta 1 – DC4 is a wholesale data center operated by QTS Data Centers on the Atlanta 1 campus at 1103 Herndon St NW in Atlanta. QTS lists this building as the DC4 facility on the campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Atlanta 1 – DC4","verified_operator":"QTS Data Centers","verified_owner":"QTS Realty Trust (owned by Blackstone Infrastructure Partners and Blackstone Real Estate Income Trust (BREIT))","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":4,"campus_acres":99,"utility_provider":"Georgia Power","tax_incentives":"Georgia High-Technology Data Center Equipment sales/use tax exemption (subject to statutory thresholds and certification).","natural_hazard_zone":""},"1350":{"description":"Aligned ATL-01 is a multi-tenant, hyperscale-ready data center operated by Aligned Data Centers at 1551 N River Rd., Lithia Springs, GA 30122, notable for Aligned’s adaptive, energy‑efficient design.","verified_status":"operational","power_capacity_mw":70,"total_sqft":350000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ATL-01 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; multiple Tier 1 carriers, local ISPs, and long-haul fiber; dark and lit fiber available","num_buildings":1,"campus_acres":44,"utility_provider":"","tax_incentives":"Georgia high-technology data center equipment sales and use tax exemption, subject to statutory county-based investment thresholds and job requirements.","natural_hazard_zone":"Proximity to Sweetwater Creek with documented flood history and mapped inundation; site-specific FEMA zone not confirmed here."},"1351":{"description":"DataBank ATL2 West End is a colocation data center operated by DataBank at 1100 White Street Southwest in Atlanta’s historic West End, featuring 52,610 IT square feet and support from single-cabinet to multi-megawatt deployments.","verified_status":"operational","power_capacity_mw":4,"total_sqft":75000,"year_online":"unknown","construction_update":"","recent_news":"May 6, 2026: Permit entry listed for “Data Bank - 1100 WHITE SW ST, Atlanta, GA” (status shown in the permit listings), with no scope or value disclosed.","notable_tenants":"","verified_name":"DataBank ATL2 - Atlanta West End Data Center","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 18 on-site carriers","num_buildings":2,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia high‑technology/data‑center equipment sales & use tax exemption (statewide program; no ATL2-specific award verified).","natural_hazard_zone":""},"1352":{"description":"DataBank ATL4 South Fulton is a single-tenant colocation data center operated by DataBank at 200 Selig Dr SW, offering 40MW of critical IT load and approximately 212,710 IT square feet; the site is backed by an adjacent Georgia Power substation.","verified_status":"operational","power_capacity_mw":40,"total_sqft":212710,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"South Fulton Data Center (ATL4)","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 2 onsite carriers; dark-fiber connectivity to DataBank ATL2/ATL3","num_buildings":1,"campus_acres":18,"utility_provider":"Georgia Power","tax_incentives":"Georgia High-Technology Data Center Equipment sales/use tax exemption (active); 2024 pause bill vetoed.","natural_hazard_zone":""},"1353":{"description":"DataBank’s ATL6 is the second colocation data center on its Lithia Springs campus at 4764 Bakers Ferry Rd SW in South Fulton, GA, designed with 240,000 IT sq ft and 72MW of critical IT power; the ATL6 building totals about 460,000 gross sq ft per the contractor.","verified_status":"under-construction","power_capacity_mw":72,"total_sqft":460000,"year_online":"2027","construction_update":"As of May 4, 2026 (June 2026 issue), trade coverage reports the ATL5/ATL6 campus is under construction and scheduled to open in 2027; DataBank’s campus page states it is currently under construction, with construction having begun in 2024.","recent_news":"May 4, 2026 (June 2026 issue): Modern Steel Construction reported ATL5/ATL6 are under construction and scheduled to open in 2027, highlighting the ongoing build and campus delivery timeline.","notable_tenants":"","verified_name":"Lithia Springs Campus Data Center (ATL6)","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":95,"utility_provider":"Georgia Power","tax_incentives":"Georgia statewide high‑tech data center equipment sales & use tax exemption available to qualifying projects (investment/job thresholds apply). No ATL6‑specific certification found.","natural_hazard_zone":""},"1354":{"description":"Flexential Atlanta - Norcross 1 is an operational Flexential colocation data center at 2775 Northwoods Pkwy, Norcross, Georgia, offering a 32,740 sq ft footprint and 1.8 MW of critical power with access to a broad carrier ecosystem.","verified_status":"operational","power_capacity_mw":1.8,"total_sqft":32740,"year_online":"2007","construction_update":"Operational facility; no active construction on Norcross 1. Apr 14, 2026: Flexential announced adjacent Norcross 2 (H1 2028 target). Dec 17, 2025: Peachtree Corners approved a special use permit to retrofit/expand at 2755 and 2775 Northwoods Pkwy.","recent_news":"Apr 14, 2026: Flexential announced the adjacent Atlanta – Norcross 2 data center at 2755 Northwoods Pkwy, expected online in H1 2028; this is a campus expansion and does not change Norcross 1’s 1.8 MW / 32,740 sq ft specs.","notable_tenants":"","verified_name":"Flexential Atlanta - Norcross 1","verified_operator":"Flexential","verified_owner":"Flexential","cooling_type":"air-cooled","tier_level":"N+1 UPS/cooling/generator redundancy reported; no Uptime Institute Tier certification found","fiber_providers":"carrier-neutral; access to more than 80 carriers","num_buildings":2,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia statewide data center sales & use tax exemption for qualifying projects (subject to meeting statutory thresholds and current program status); no Norcross-specific local abatement identified.","natural_hazard_zone":"low risk"},"1355":{"description":"Flexential Atlanta – Norcross 2 is a planned Flexential colocation and interconnection data center featuring a 48,000 sq ft data hall footprint and 4.5 MW critical-load UPS capacity [1].","verified_status":"planned","power_capacity_mw":4.5,"total_sqft":48000,"year_online":"2028","construction_update":"Dec 17, 2025: Peachtree Corners approved a special-use permit allowing Flexential to retrofit and expand data-center operations at 2755 and 2775 Northwoods Pkwy. Apr 14, 2026: Coverage highlighted Flexential’s plan to add a second facility at the Norcross site.","recent_news":"Apr 14, 2026: Trade coverage reports Flexential will add a new data center in the Atlanta area, a second facility at the Norcross site [3].","notable_tenants":"","verified_name":"Atlanta – Norcross 2 Data Center","verified_operator":"Flexential","verified_owner":"Clovelly Fund","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":2.48,"utility_provider":"Georgia Power","tax_incentives":"Georgia provides a statewide sales and use tax exemption for qualifying data center equipment; 2026 legislation proposed curbing or ending the exemption.","natural_hazard_zone":"FEMA SFHA status not determined; check City of Peachtree Corners Floodplain Map and FEMA/Georgia DFIRM for parcel-specific designation."},"1356":{"description":"STACK Infrastructure’s ATL02 is a hyperscale data‑center campus in Lithia Springs, Georgia, planned to deliver 160MW of capacity on a large multi‑building site, with initial phases targeting 2026 and further buildings filed for development.","verified_status":"under-construction","power_capacity_mw":160,"total_sqft":1302176,"year_online":"2026","construction_update":"Nov 12, 2024: STACK filed two additional ATL02 data‑center buildings (196,030 sf and 227,260 sf), signaling campus expansion; Feb 2026 county permitting indicates ongoing construction/fit‑out.","recent_news":"Mar 2026: Douglas County’s permit log shows February 2026 activity around Factory Shoals Road, indicating ongoing construction/fit‑out at the campus.","notable_tenants":"","verified_name":"STACK ATL02 – Lithia Springs","verified_operator":"STACK Infrastructure","verified_owner":"IPI Atlanta II, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":64,"utility_provider":"Georgia Power","tax_incentives":"Georgia’s statewide Data Center Sales & Use Tax Exemption may apply if ATL02 meets thresholds; Douglas County lists general business/property tax incentives. No ATL02-specific award found.","natural_hazard_zone":"FEMA Zone X / no mapped floodplain noted in filings; site lies within a water-supply watershed with protected stream buffers."},"1357":{"description":"Wholesale data center at 3200 Webb Bridge Rd in Alpharetta, originally developed as T5@Atlanta and now operated by STACK Infrastructure as ATL01A after a 2019 acquisition; the facility is operational with about 105,000 sq ft and roughly 7–8 MW of critical power, while the broader ATL01 campus is positioned for scalable growth.","verified_status":"operational","power_capacity_mw":7.5,"total_sqft":105000,"year_online":"2011","construction_update":"May 2020: STACK acquired adjacent land to develop a 12MW expansion next to the existing 3200 Webb Bridge Rd facility, aimed at more than doubling Atlanta capacity.","recent_news":"","notable_tenants":"Unnamed Fortune 100 company (multi-megawatt dedicated suite, 2017); Level 3 Communications fiber PoP (2015). No other named anchor tenants publicly disclosed.","verified_name":"STACK Infrastructure ATL01A (formerly T5@Atlanta)","verified_operator":"STACK Infrastructure","verified_owner":"STACK Infrastructure (IPI Partners)","cooling_type":"unknown","tier_level":"Tier III design (not certified)","fiber_providers":"Carrier-neutral; 9 on-net carriers; includes Cogent Communications","num_buildings":2,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia High-Technology Data Center Equipment Sales & Use Tax Exemption (statewide program for qualifying data centers)","natural_hazard_zone":"FEMA Flood Zone X (low flood risk)"},"1358":{"description":"365 Data Centers operates an operational colocation and interconnection facility at 11650 Great Oaks Way in Alpharetta, GA, offering about 77,300 sq ft of space and 4.3 MW of power capacity with carrier and IX connectivity.","verified_status":"operational","power_capacity_mw":4.3,"total_sqft":77300,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers Alpharetta (GA1)","verified_operator":"365 Data Centers","verified_owner":"Mapletree Industrial Trust","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; 365 DataCenters, AT&T, Charter, Cogent, Comcast, Crown Castle, FiberLight, Lumen/Qwest/Time Warner Telecom, Megaport, Verizon Business/MCI, Verizon, Zayo/AGL Fibernet/American Fiber Systems","num_buildings":1,"campus_acres":15.68,"utility_provider":"Georgia Power","tax_incentives":"Georgia high-technology/data-center equipment sales and use-tax exemption exists for qualifying facilities; no site-specific abatement or approval for this facility was found.","natural_hazard_zone":""},"1359":{"description":"Data Canopy Atlanta / Lithia Springs is an operational colocation data center operated by Data Canopy at 2480 Rock House Rd, Lithia Springs, GA 30122.","verified_status":"operational","power_capacity_mw":10,"total_sqft":79570,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"PricewaterhouseCoopers (PwC)","verified_name":"Data Canopy Atlanta (Lithia Springs)","verified_operator":"Data Canopy","verified_owner":"Legacy Investing","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Potential eligibility for Georgia’s statewide data center sales and use tax exemption (subject to state certification); no facility-specific abatement or certification found.","natural_hazard_zone":""},"1360":{"description":"Coloblox Marietta Data Center is an operational colocation facility at 2812 Spring Rd SE, Suite 210, Atlanta, GA 30339, operated by Coloblox Data Centers (also marketed as Marietta Colocation). It provides carrier‑neutral colocation and related network services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"1998","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Coloblox Marietta Data Center","verified_operator":"Coloblox Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia statewide High-Tech Data Center Equipment sales/use tax exemption (HB 696, 2018); facility-specific participation not confirmed.","natural_hazard_zone":"unknown"},"1361":{"description":"Lumen Atlanta 6 is an operational Lumen Technologies colocation/data center at 874 DeKalb Avenue NE in Atlanta, offering 21,658 sq ft total with 6,151 sq ft of raised-floor space and on-net fiber connectivity.","verified_status":"operational","power_capacity_mw":12,"total_sqft":21658,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Atlanta 6","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1362":{"description":"A Verizon Communications-operated colocation/telecom data center at 4000 Highland Parkway SE in Smyrna (Greater Atlanta), formerly an XO Communications facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":52466,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Atlanta","verified_operator":"Verizon Communications Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Direct access to the XO/Verizon network","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"City of Smyrna Enterprise Zone incentives (property tax savings and fee waivers) are available to qualifying projects; no facility-specific abatement identified.","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard, between 100‑year and 500‑year limits)"},"1363":{"description":"The American Tower 55 Marietta listing now maps to CoreSite’s AT1 data center within the 55 Marietta carrier-hotel in downtown Atlanta, an operational colocation and interconnection site. American Tower acquired Colo Atl in 2019 and the 55 Marietta facility was transferred to CoreSite in 2022; the multi-tenant building is a 403,000‑square‑foot, 21‑story carrier hotel.","verified_status":"operational","power_capacity_mw":0,"total_sqft":62000,"year_online":"2001","construction_update":"Dec 2025: RadiusDC announced acquisition and a significant expansion of the 55 Marietta carrier-hotel; no suite-specific AT1 buildout disclosed.","recent_news":"Dec 2, 2025: RadiusDC announced its acquisition of the 55 Marietta carrier-hotel in downtown Atlanta and a significant expansion plan.","notable_tenants":"","verified_name":"CoreSite AT1 (55 Marietta Street NW)","verified_operator":"CoreSite (an American Tower Company)","verified_owner":"RadiusDC (backed by Blue Owl Capital)","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; 22+ on-net carriers including AT&T, Cogent, Comcast, CoreSite, FiberLight, Lumen, Southern Company, Verizon, Windstream, and Zayo","num_buildings":1,"campus_acres":0.47,"utility_provider":"Georgia Power","tax_incentives":"Georgia statewide Data Center Sales & Use Tax Exemption (O.C.G.A. § 48-8-3(68.1)) for qualifying data center equipment purchases that meet investment and job thresholds","natural_hazard_zone":"Low risk — inland location; not in mapped hurricane storm surge zone; minimal floodplain exposure indicated by area mapping"},"1364":{"description":"Cogent Atlanta 1 is Cogent Communications’ telecom colocation suite inside the 55 Marietta carrier‑hotel at 55 Marietta St NW, Suite 950, Atlanta, GA 30303. Cogent lists 7,826 sq ft for this suite.","verified_status":"operational","power_capacity_mw":3,"total_sqft":7826,"year_online":"unknown","construction_update":"Dec 3, 2025: Building-level change — 55 Marietta was acquired by RadiusDC; the facility houses multiple providers, including Cogent.","recent_news":"May 26, 2026: Cogent announced a definitive agreement to sell 10 data-center facilities to an entity sponsored by I Squared Capital, with closing expected on or after June 12, 2026 subject to HSR. I Squared announced a new U.S. AI inference and edge colocation platform the same day.","notable_tenants":"","verified_name":"Cogent Data Center - Atlanta 1","verified_operator":"Cogent Communications, Inc.","verified_owner":"RadiusDC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; on-net providers include AT&T, Cogent, Comcast, and FiberLight","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Outside 500-year floodplain; Seismic Zone 1"},"1365":{"description":"DataBank ATL4 – South Fulton is a single-tenant colocation data center operated by DataBank at 200 Selig Dr SW in Atlanta, adjacent to a Georgia Power substation, with a specified 40 MW of critical IT load and about 212,710 raised/IT square feet.","verified_status":"operational","power_capacity_mw":40,"total_sqft":342000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank ATL4 - South Fulton","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; at least two onsite carriers; dark fiber to ATL2/ATL3","num_buildings":1,"campus_acres":18,"utility_provider":"Georgia Power","tax_incentives":"Georgia High-Technology Data Center Equipment Sales & Use Tax Exemption","natural_hazard_zone":"FEMA Flood Zone X (outside 100-year floodplain)"},"1366":{"description":"DataBank MCI1 (South Lake KC1) is an operational colocation data center at 15721 College Boulevard in Lenexa, Kansas. It offers about 6,000+ sq ft of customer space and ~0.75 MW IT power, and the site entered DataBank’s portfolio via the April 2014 acquisition of Arsalon Technologies.","verified_status":"operational","power_capacity_mw":0.75,"total_sqft":6000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank South Lake KC1 (MCI1)","verified_operator":"DataBank","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"Low earthquake risk; site-specific FEMA flood zone not confirmed"},"1367":{"description":"DataBank MCI2 (Pine Ridge) is an operational colocation data center at 10605 W. 84th Terrace in Overland Park, Kansas, operated by DataBank; it houses the company’s primary Network Operations Center and features three independent data halls, 11,510 IT sq ft, and 2MW critical IT load. Third‑party directories list 31,000 sq ft of total facility space.","verified_status":"operational","power_capacity_mw":2,"total_sqft":31000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank (MCI2) Pine Ridge Data Center","verified_operator":"DataBank","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"Kansas SB 98 Data Center Sales Tax Exemption (20-year) available statewide for qualifying data centers; no facility-specific confirmation.","natural_hazard_zone":"Outside mapped floodplains; low seismic risk"},"1368":{"description":"DataBank MCI3 (South Lake Campus) is an operational DataBank colocation data center at 11200 Lakeview Ave, Lenexa, KS, offering colocation, cloud, and connectivity with 69,762 IT sq ft and 12.75 MW of critical IT load.","verified_status":"operational","power_capacity_mw":12.75,"total_sqft":69762,"year_online":"2018","construction_update":"No active construction verified as of 2026-06-29. Latest milestone: DataBank held an MCI3 Kansas City Data Center Expansion event on Sep 18, 2025; earlier, DCD reported an expansion opening on Jun 28, 2023.","recent_news":"","notable_tenants":"","verified_name":"DataBank MCI3 – South Lake Campus Data Center","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"chilled water","tier_level":"Tier III design","fiber_providers":"","num_buildings":0,"campus_acres":9,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":""},"1369":{"description":"TierPoint Kansas City - Lenexa (LEN) is an operational data center operated by TierPoint at 14500 West 105th Street, Lenexa, KS 66215, with about 58,000 sq ft of facility space.","verified_status":"operational","power_capacity_mw":3,"total_sqft":58000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Kansas City - Lenexa Data Center (LEN)","verified_operator":"TierPoint","verified_owner":"TierPoint","cooling_type":"air-cooled","tier_level":"Tier II equivalent","fiber_providers":"carrier-neutral; providers listed include AT&T, Consolidated Communications, Lumen Technologies, Spectrum, TierPoint, Unite Private Networks, Zayo; datacenterHawk also lists Cogent Communications, Verizon Business, and KsFiberNet","num_buildings":1,"campus_acres":4.85,"utility_provider":"Evergy","tax_incentives":"Kansas SB 98 offers a 20-year state/local sales-and-use tax exemption for qualifying data centers that meet thresholds (e.g., at least $250M investment and other criteria), but no site-specific award for this facility was found.","natural_hazard_zone":"Flood: outside the 500-year flood plain; regional severe weather/tornado exposure"},"1370":{"description":"LightEdge operates the underground Lenexa Data Center / Lenexa Cavern Suites colocation facility at 17501 West 98th Street in Lenexa, Kansas, providing secure, carrier-grade colocation space approximately 125 feet below ground.","verified_status":"operational","power_capacity_mw":2.9,"total_sqft":102287,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"LightEdge Lenexa Data Center","verified_operator":"LightEdge","verified_owner":"MERITEX LENEXA EXECUTIVE PARK, LLC","cooling_type":"air-cooled","tier_level":"Tier III equivalent (not Uptime-certified in sources cited)","fiber_providers":"carrier-neutral; multiple providers (Upstack notes 14 carriers/peers)","num_buildings":0,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate, 500-year); underground siting lowers surface weather/tornado exposure"},"1371":{"description":"IONOS Lenexa Data Center is an IONOS-owned and operated enterprise facility at 10950 Strang Line Road in Lenexa, Kansas. It is notable as a U.S. IONOS Cloud location launched Oct 19, 2023, and features a rooftop solar installation.","verified_status":"operational","power_capacity_mw":0,"total_sqft":55000,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"No named third-party anchor tenants or major customers are publicly disclosed; the facility is used by IONOS/IONOS Cloud.","verified_name":"IONOS Lenexa Data Center","verified_operator":"IONOS Inc.","verified_owner":"IONOS","cooling_type":"unknown","tier_level":"","fiber_providers":"American Fiber Systems (AFS)","num_buildings":1,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"Kansas SB 98 Data Center Sales Tax Exemption (20-year state and local sales/use tax exemption for qualified large-scale data centers); no public confirmation that this specific facility has qualified or is receiving the incentive.","natural_hazard_zone":"Minor flood risk (Strang Line area) and exposure to tornadoes/severe thunderstorms; low seismic and no hurricane exposure noted regionally."},"1372":{"description":"FullControl Network, Inc. operates a colocation and managed hosting facility in Lenexa, Kansas, with its headquarters at 14400 College Boulevard, Suite 103, and a separate underground data center address at 17501 W 98th St. The facility offers rack-space colocation, bandwidth, and server management services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"FullControl Network Data Center","verified_operator":"FullControl Network, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Kansas SB98 Data Center Sales Tax Exemption: 20-year state and local sales tax exemption for qualifying large-scale data centers (high investment and job thresholds).","natural_hazard_zone":"FEMA Flood Zone X (minimal flood risk)"},"1373":{"description":"A Windstream-operated data center located at 7945 Bond Street in Lenexa, Kansas, as listed in public data-center directories. Public profiles do not disclose its IT power, facility square footage, tenants, or in-service year.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Lenexa Data Center","verified_operator":"Windstream","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":3.11,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"Flood risk: moderate (city-level); FEMA zone for 7945 Bond St not confirmed"},"1374":{"description":"Operational telecom/enterprise colocation facility at 9669 Lackman Road in Lenexa, Kansas, operated and marketed by EverFast Fiber Networks. The site originated under SureWest/Consolidated and the Kansas City assets were sold to EverFast effective Nov. 30, 2022.","verified_status":"operational","power_capacity_mw":1.125,"total_sqft":7500,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EverFast Datacenter Solutions – Lenexa","verified_operator":"EverFast Fiber Networks LLC","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier II (directory listing; no current Uptime certificate cited)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Evergy / KCP&L","tax_incentives":"","natural_hazard_zone":"Seismic risk: very low; FEMA flood zone: undetermined"},"1375":{"description":"Former Arsalon Technologies carrier-neutral colocation data center at 10881 Lowell Ave, Suite 160 (Overland Park, KS), later part of DataBank via the 2014 acquisition. Today the building is marketed as the APEX 435 office campus and is not listed among DataBank’s active Kansas City data centers.","verified_status":"decommissioned","power_capacity_mw":6,"total_sqft":38000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Apex 435 (10881 Lowell Ave, Overland Park, KS 66210)","verified_operator":"No current data center operator (property operates as the Apex 435 office campus). Historical operator: Arsalon Technologies (acquired by DataBank in 2014).","verified_owner":"Brain Group","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"Kansas SB 98 offers a 20-year sales/use tax exemption for qualifying large-scale data centers; no evidence this site qualifies.","natural_hazard_zone":""},"1376":{"description":"QTS Overland Park Data Center is a small, operational colocation facility operated by QTS at 12851 Foster Street in Overland Park, Kansas; third‑party listings note it has served as QTS’s corporate headquarters and provide basic specs for the site.","verified_status":"operational","power_capacity_mw":0.18,"total_sqft":33000,"year_online":"2003","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"QTS Overland Park 1 DC1","verified_operator":"QTS Data Centers","verified_owner":"Funds managed by Blackstone (Blackstone Infrastructure Partners and Blackstone Real Estate Income Trust) via QTS","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard)"},"1377":{"description":"Netrality KC2 – 7801 Nieman Road is an operational Netrality Data Centers high‑density colocation facility in Shawnee, Kansas, with direct connectivity to 1102 Grand in Kansas City.","verified_status":"operational","power_capacity_mw":10,"total_sqft":176000,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"KC2-7801 Nieman","verified_operator":"Netrality Data Centers","verified_owner":"Macquarie Asset Management (via Macquarie Infrastructure Partners IV)","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral; 12+ on-net providers with dark-fiber tether to 1102 Grand (120+ providers); includes AWS and Google Cloud connectivity","num_buildings":1,"campus_acres":10.98,"utility_provider":"Evergy","tax_incentives":"$56.2M Federally Taxable Private Activity Revenue Bonds (Industrial Revenue Bonds) issued by City of Shawnee, providing sales tax exemption on construction materials, equipment, labor, and furnishings. No property tax abatement.","natural_hazard_zone":"Outside 500-year floodplain"},"1378":{"description":"C1 Kansas Data Center is an operational colocation/data center operated by C1 at 17795 W. 106th St, Suite 200, Olathe, Kansas, within a 34,000‑SF office/medical building. The site includes a Tier 2+ data‑center area (≈4,050 SF) with 48 racks, dual 80 kW UPS (N+1), a 500 kW generator, a 100‑ton chiller, and carrier fiber connectivity.","verified_status":"operational","power_capacity_mw":0.08,"total_sqft":4050,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"C1 Kansas Data Center","verified_operator":"C1 (One C1)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Google Fiber; AT&T; Consolidated Communications (listing notes 5 telecom providers)","num_buildings":1,"campus_acres":2.57,"utility_provider":"Evergy (Kansas Metro)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zones B/X (moderate risk; between 100-year and 500-year limits)"},"1379":{"description":"DigiCo Kansas City KCM1 is an operational, purpose-built enterprise data center in Olathe, Kansas, operated by DigiCo Infrastructure REIT. It offers ~18,000 sqm NLA with 7.5 MW of IT power and 6,582 sqm of white space, and market listings report a total building size of 192,550 sq ft.","verified_status":"operational","power_capacity_mw":7.5,"total_sqft":192550,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"State Farm","verified_name":"DigiCo Kansas City KCM1","verified_operator":"DigiCo Infrastructure REIT","verified_owner":"DigiCo Infrastructure REIT (HMC Capital)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":20.09,"utility_provider":"Evergy","tax_incentives":"Kansas SB 98 (2025): 20-year state and local sales tax exemption for qualifying large, permanent data center investments (project-level eligibility required; not confirmed for KCM1).","natural_hazard_zone":"Tornado-prone region; site-specific FEMA flood zone not confirmed. Use local floodplain tools to verify parcel risk."},"1380":{"description":"CenterServ Wichita Data Center is a directory-listed colocation/cloud/managed IT site operated by CenterServ at 801 East Douglas Avenue, Wichita, KS. The address is also the Grand Hotel at Union Station office/coworking property, and no independent public source verifies additional facility-specific specifications.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CenterServ: Wichita Data Center","verified_operator":"CenterServ","verified_owner":"Occidental Management","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0.49,"utility_provider":"Evergy","tax_incentives":"Kansas SB 98 provides a 20-year state and local sales/use tax exemption for qualified data centers (effective July 1, 2025); no evidence this facility has applied or qualified.","natural_hazard_zone":"Very low seismic risk; exposed to regional tornado/hail hazards; FEMA flood zone for 801 E Douglas not confirmed in cited text."},"1381":{"description":"Colocation data center operated by UV&S Technology in the Farm Credit Bank Building at 245 N. Waco in downtown Wichita, offering cabinet and custom caged-suite options across roughly 10,000 sq ft of data center floor space.","verified_status":"operational","power_capacity_mw":1,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"UV&S Data Center (Wichita)","verified_operator":"UV&S Technology (UV&S)","verified_owner":"Delano Investment LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Kansas SB 98: statewide 20-year sales and use tax exemption for qualified data centers; no facility-specific incentive identified for this site.","natural_hazard_zone":""},"1382":{"description":"ISG Technology Wichita Data Center is an operational colocation facility operated by ISG Technology at 8201 E. 34th Street Circle N., Suite 807, Wichita, KS. Public listings note it was custom-designed and built in 2012 and provide facility specifications.","verified_status":"operational","power_capacity_mw":0.09,"total_sqft":900,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ISG Technology – Wichita Data Center","verified_operator":"ISG Technology","verified_owner":"","cooling_type":"air-cooled","tier_level":"No Uptime Institute Tier certification found; listing reports SSAE 16 SOC I, HIPAA and PCI compliance","fiber_providers":"carrier-neutral; up to 30 carriers; connected to ISG regional backbone","num_buildings":1,"campus_acres":35,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"Regional FEMA floodplains present (address-level zone not confirmed); tornado/severe-storm exposure typical of south-central Kansas"},"1383":{"description":"A former QTS facility operated by ISG Technology at 400 SE Jefferson St, Topeka, totaling 16,350 sq ft with a 10,500 sq ft data hall. It is listed for sale as previously used as a data-center/operations facility and features an 800 kW generator and 375 kVA UPS; ISG announced the Topeka data center coming online in 2013.","verified_status":"decommissioned","power_capacity_mw":0.8,"total_sqft":16350,"year_online":"2013","construction_update":"Aug 3, 2023: Property listed for sale; described as previously used as a data-center/operations facility. No active construction or expansion identified.","recent_news":"","notable_tenants":"","verified_name":"ISG Topeka Data Center","verified_operator":"ISG Technology","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"No facility-specific incentive identified; Kansas SB 98 provides a 20-year state/local sales/use tax exemption for qualifying large data centers.","natural_hazard_zone":"FEMA Flood Zone B and X / moderate flood hazard"},"1384":{"description":"711 E. 6th Street in Hays, KS is an active UV&S location. UV&S Technology’s data center/colocation operations are associated with its Wichita site at 245 N. Waco rather than Hays.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"UV&S Hays Data Center","verified_operator":"UV&S Technology (a division of Underground Vaults & Storage, Inc.)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.43,"utility_provider":"Midwest Energy, Inc.","tax_incentives":"Kansas SB 98 (2025) established a 20-year state and local sales/use tax exemption for qualified data centers; thresholds target large projects. No site-specific incentives found for this facility.","natural_hazard_zone":"FEMA National Risk Index: Very Low composite score (32.7/100, Ellis County). Local floodplains exist in Hays; parcel-specific FEMA SFHA status not confirmed."},"1385":{"description":"Underground colocation/data center operated by UV&S Technology at 3500 East Ave G in Hutchinson, Kansas, within UV&S’s salt-mine complex about 650 feet underground; services include cabinets/private suites, cloud backup/disaster recovery, multi-carrier connectivity, and HIPAA/SOC 2–compliant operations.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"UV&S Hutchinson Underground Data Center","verified_operator":"UVS Technology","verified_owner":"Underground Vaults & Storage, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":40,"utility_provider":"Evergy","tax_incentives":"Kansas SB 98 (2025) provides a 20-year state and local sales/use tax exemption for qualifying data centers; no public confirmation this facility has applied or qualified.","natural_hazard_zone":"Area with documented salt-dissolution/subsidence risk (Kansas Geological Survey); facility is 650 ft underground; local floodplain maps maintained by the City."},"1386":{"description":"UV&S Technology operates an edge colocation/data center at 5106 Murray Rd., Suite C, Manhattan, KS, providing secure, professionally managed colocation services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":24533,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"UV&S Technology Manhattan, KS Data Center & Colocation Services","verified_operator":"UV&S Technology / UV&S","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"multi-carrier / carrier-neutral; BGP redundancy; specific carriers not publicly disclosed","num_buildings":0,"campus_acres":4.8,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE (base floodplain)"},"1387":{"description":"UV&S Technology operates a data center/colocation site at 739 N. 10th Street in Salina, Kansas, listed on its Data Center pages and contact directory.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2832,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"UV&S Salina Data Center / Colocation Location","verified_operator":"UV&S Technology","verified_owner":"Underground Vaults & Storage, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral (multi-carrier BGP redundancy)","num_buildings":1,"campus_acres":0.54,"utility_provider":"Evergy","tax_incentives":"Local: Salina EDO programs (e.g., SEDIP grants; additional tools such as abatements/IRBs may be available). State: Kansas SB 98 provides a 20-year sales tax exemption for qualifying large data centers; thresholds likely exclude this edge site.","natural_hazard_zone":"High tornado/severe storm exposure; FEMA-mapped floodplains (SFHA) exist within Salina; low seismic risk."},"1388":{"description":"UV&S Technology operates a colocation/data center location in Topeka at 1540 NW Gage Blvd #6, providing cabinet/private-suite colocation, cloud backup, and disaster recovery in HIPAA and SOC 2 compliant data centers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":48000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"UV&S Technology Topeka Data Center & Colocation","verified_operator":"UV&S Technology / UV&S","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"multi-carrier; BGP redundancy (carrier names not disclosed)","num_buildings":0,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":""},"1389":{"description":"707 E. 33rd St N in Wichita is a UV&S secure storage/shredding facility, distinct from UV&S Technology’s Wichita data center operations, which are associated with the downtown address at 245 N. Waco.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"UV&S Technology Data Center (Wichita)","verified_operator":"UV&S Technology (Underground Vaults & Storage, Inc.)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"Very low earthquake hazard"},"1390":{"description":"Project Catalyst (Alcove Development Osawatomie Data Center) is a proposed hyperscale data center campus in Osawatomie, Kansas, developed by Alcove Development with MDH Partners. Plans call for a 500+ MW, multi-phase campus on a 283-acre site with up to seven buildings totaling about 3.3 million square feet.","verified_status":"planned","power_capacity_mw":500,"total_sqft":3300000,"year_online":"unknown","construction_update":"May 29, 2026: City coverage reported Osawatomie is moving forward with a 500+ MW, 283-acre data center campus. June 26, 2026: MDH Partners joined Alcove Development as a capital/development partner. No construction start has been announced.","recent_news":"June 26, 2026: MDH Partners joined Alcove Development as capital/development partner for the proposed $10B Osawatomie campus (seven buildings totaling ~3.3M sq ft). May 29, 2026: City coverage said Osawatomie is moving forward with a 500+ MW, 283-acre data center campus.","notable_tenants":"","verified_name":"Project Catalyst","verified_operator":"Alcove Development","verified_owner":"MDH Partners (institutional capital partner; final title-holding entity/JV not yet disclosed)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":7,"campus_acres":283,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"City-level context indicates minor flood risk; site-specific FEMA zone not confirmed."},"1391":{"description":"IONOS Lenexa is an IONOS-owned and operated data center at 10950 Strang Line Rd, Lenexa, KS that delivers web hosting and cloud infrastructure services; it has been operational since 2007 and serves as a U.S. cloud platform location for IONOS.","verified_status":"operational","power_capacity_mw":0,"total_sqft":55000,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"IONOS Lenexa Data Center","verified_operator":"IONOS Inc.","verified_owner":"IONOS Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"American Fiber Systems (AFS)","num_buildings":0,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"FEMA flood zone undetermined from provided sources; area subject to tornado/severe thunderstorm exposure."},"1392":{"description":"Former ISG Technology colocation/data-center facility at 400 SE Jefferson St., Topeka, KS, active by 2013. The 16,350-sf building (about 10,500 sf data hall and 5,850 sf office) is being marketed for sale as a property previously used as a data-center/operations facility.","verified_status":"decommissioned","power_capacity_mw":0.8,"total_sqft":16350,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ISG Technology – Topeka Data Center","verified_operator":"ISG Technology","verified_owner":"ISG Technology LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.81,"utility_provider":"Evergy","tax_incentives":"Kansas SB 98 statewide sales/use tax exemption for qualified data centers (20-year term; site-specific award not identified).","natural_hazard_zone":"not determinable from public sources"},"1393":{"description":"FullControl Network – Lenexa is a colocation/managed hosting facility operated by FullControl Network, Inc., with operations tied to 14400 College Blvd, Suite 103, Lenexa, and a referenced data‑center location at 17501 W 98th St. Public materials emphasize secure colocation with a zero‑downtime guarantee; facility‑specific MW or square footage are not disclosed and third‑party specs at 17501 W 98th St belong to another operator (LightEdge), not to FullControl.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"FullControl Network Data Center","verified_operator":"FullControl Network, Inc.","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":4.15,"utility_provider":"Evergy","tax_incentives":"Kansas SB 98 (effective July 1, 2025) grants a 100% sales and use tax exemption for qualified data centers. No facility-specific incentives identified.","natural_hazard_zone":"FEMA Flood Zone X (minimal flood hazard)"},"1394":{"description":"Project Catalyst (Alcove Osawatomie) is a proposed hyperscale data center campus in Osawatomie, Kansas, developed by Alcove Development with MDH Partners. Plans call for a 283-acre, multi-phase campus targeting 500+ MW across up to seven buildings totaling roughly 3.3 million sq ft.","verified_status":"planned","power_capacity_mw":500,"total_sqft":3300000,"year_online":"unknown","construction_update":"As of late June 2026: no construction start. The City is in a predevelopment agreement with Alcove and granted surveying priority; developers addressed questions at a City Council meeting, and MDH Partners joined as a capital partner on June 26, 2026.","recent_news":"June 26, 2026: MDH Partners joined Alcove Development as a capital partner for the $10B Project Catalyst data center campus in Osawatomie, planned for seven buildings totaling about 3.3M sq ft.","notable_tenants":"","verified_name":"Project Catalyst","verified_operator":"Alcove Development","verified_owner":"MDH Partners (institutional capital/development partner with Alcove Development; title-holding entity not publicly confirmed)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":7,"campus_acres":283,"utility_provider":"Evergy Kansas Metro (planned)","tax_incentives":"","natural_hazard_zone":"Levee-accredited area; citywide minor flood risk (parcel-level FEMA zone not confirmed)."},"1395":{"description":"ValorC3 Boise Data Center (Boise 1) is an operational, carrier-neutral colocation facility at 10215 W Emerald St in Boise operated by ValorC3 Data Centers. It offers 2MW total power capacity (1.15MW critical load), was established in 2000, and was expanded in 2024.","verified_status":"operational","power_capacity_mw":2,"total_sqft":45000,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ValorC3 Boise 1 Data Center, 10215 W Emerald St, Boise, ID 83704","verified_operator":"ValorC3 Data Centers","verified_owner":"DIF Capital Partners (CVC DIF), via ValorC3 Data Centers (formerly Tonaquint)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; providers include Cogent, Lumen (CenturyLink), Zayo, Syringa, Comcast, Megaport","num_buildings":1,"campus_acres":2.98,"utility_provider":"Idaho Power","tax_incentives":"Idaho statewide Data Center Sales Tax Exemption for qualifying new data centers (sales tax exemption on server equipment and construction materials). No site-specific award published for 10215 W Emerald St.","natural_hazard_zone":"Moderate seismic risk (10% chance of potentially-damaging shaking in 50 years); site-specific FEMA flood zone not determined"},"1396":{"description":"ValorC3 Boise 2 is a 10MW, carrier-neutral colocation/hyperscale data center being developed by ValorC3 Data Centers at 9601 W Emerald St in Boise, Idaho, with first-phase completion targeted for 2027. The initial building is about 37,827–38,000 square feet, and a preliminary application seeks roughly 31,000 additional square feet.","verified_status":"under-construction","power_capacity_mw":10,"total_sqft":37827,"year_online":"2027","construction_update":"Apr 29–30, 2026: Credit facility closed with Apterra to fund continued development. Mar 26, 2026: Local report of City approval for ~38,000 SF at 9601 W Emerald St and a preliminary application to add ~31,000 SF. Jul 22, 2025: Building-permit report lists work at 9601 W Emerald St with a $20,759,339 permit value.","recent_news":"Apr 29–30, 2026: ValorC3 closed a credit facility with Apterra Infrastructure Capital to fund continued development of its anchored Boise hyperscale campus; industry coverage notes the 10MW project is leased to a Fortune 50 tech company.","notable_tenants":"","verified_name":"ValorC3 Boise 2 Data Center","verified_operator":"ValorC3 Data Centers","verified_owner":"BOISE 2 DC LLC","cooling_type":"hybrid","tier_level":"Concurrently maintainable (Tier III equivalent design)","fiber_providers":"Carrier-neutral; CenturyLink, Zayo, Syringa, Level3, Cogent, Lumen, Comcast, Megaport","num_buildings":2,"campus_acres":3.64,"utility_provider":"Idaho Power","tax_incentives":"Idaho data center sales tax exemption on server equipment and construction materials (Idaho Code § 63-3622TT)","natural_hazard_zone":"Earthquake risk (Idaho ranked fifth); flood risk likely minimal (FEMA Zone X – not confirmed)"},"1397":{"description":"Ark Data Centers Boise 1 is an operational colocation data center at 2653 S Victory View Way in Boise, Idaho, operated by Ark Data Centers (formerly Involta). The facility offers about 34,000+ sq ft with around 1 MW of power and hosts the Idaho Internet Exchange (IdahoIX).","verified_status":"operational","power_capacity_mw":1,"total_sqft":34000,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Ark Data Centers Boise 1","verified_operator":"Ark Data Centers","verified_owner":"Ark Data Centers (Involta LLC), owned by funds managed by Carlyle","cooling_type":"air-cooled","tier_level":"Tier III","fiber_providers":"","num_buildings":1,"campus_acres":12.64,"utility_provider":"","tax_incentives":"Idaho statewide data center sales tax exemption exists; no facility-specific incentive verified.","natural_hazard_zone":""},"1398":{"description":"Ark Data Centers Boise 2 is a colocation data center operated by Ark Data Centers at 1450 S Eagle Flight Way in Boise, Idaho. The purpose-built facility opened in 2015 to serve enterprise colocation needs.","verified_status":"operational","power_capacity_mw":1,"total_sqft":31400,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Ark Data Centers Boise 2","verified_operator":"Ark Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III (Design Documents)","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Idaho Power","tax_incentives":"Idaho statewide Data Center Sales Tax Exemption (effective July 1, 2020) — no facility-specific award identified.","natural_hazard_zone":""},"1399":{"description":"A former Hewlett-Packard data center at 9700 W Bethel Ct in Boise that was refurbished by DataSite (later associated with Centeris) for colocation around April 2014. The 60,252‑sq‑ft facility is now being marketed for sale/lease and is not shown among Centeris’s active locations, indicating the colocation operation appears inactive.","verified_status":"decommissioned","power_capacity_mw":4.8,"total_sqft":60252,"year_online":"2014","construction_update":"Mar 10, 2014: retrofit announced; opening planned for Apr 1, 2014. As of 2026, the 60,252 SF facility is being offered for sale and/or lease; no active expansion found.","recent_news":"","notable_tenants":"Hewlett-Packard (former owner/occupant); no current anchor colocation tenants publicly disclosed.","verified_name":"Centeris Boise Data Center (formerly DataSite Boise / Hewlett-Packard)","verified_operator":"Centeris","verified_owner":"The Benaroya Company","cooling_type":"chilled water","tier_level":"Tier III equivalent","fiber_providers":"carrier-neutral; Qwest, 360 Networks, Time Warner, Integra","num_buildings":1,"campus_acres":5.02,"utility_provider":"Idaho Power Company","tax_incentives":"Idaho data-center sales-tax exemption is available for qualifying new data centers and equipment; no facility-specific award found for 9700 W Bethel Ct.","natural_hazard_zone":"Boise hazards: river flood very low; urban flood medium; earthquake medium; wildfire high."},"1400":{"description":"Lumen Boise 1 is a small Lumen Technologies colocation/telecom facility at 2223 W Airport Way in Boise, listed with 2,500 sq ft of raised-floor space, while the broader building at that address has been marketed for lease in 2026.","verified_status":"operational","power_capacity_mw":0,"total_sqft":9934,"year_online":"unknown","construction_update":"","recent_news":"June 2026: The building at 2223 W Airport Way was listed for lease, marketed with substantial IT/fiber infrastructure.","notable_tenants":"","verified_name":"Lumen Boise 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III design standard (not officially certified)","fiber_providers":"carrier-neutral; includes Lumen","num_buildings":1,"campus_acres":0.9,"utility_provider":"Idaho Power","tax_incentives":"Idaho data center sales tax exemption (for qualifying new data centers).","natural_hazard_zone":"FEMA Flood Zone X (shaded) – moderate flood hazard; moderate seismic risk"},"1401":{"description":"Syringa Networks Boise is an operational telecom/colocation facility operated by Syringa Networks at 3795 S. Development Ave, Boise, ID 83705, providing colocation and connectivity services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Cogent Communications (ASN 174); Silver Star Communications (ASN 26223); Syringa Networks (ASN 15305)","verified_name":"Syringa Networks Boise","verified_operator":"Syringa Networks","verified_owner":"Syringa Networks LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications, Silver Star Communications, Syringa Networks","num_buildings":1,"campus_acres":1.53,"utility_provider":"Idaho Power","tax_incentives":"Idaho Broadband Investment Tax Credit (Idaho Code §63-3029I; 3% credit on qualified broadband equipment; caps and carryforward apply). Idaho Data Center Sales Tax Exemption (server equipment and construction materials; effective July 1, 2020).","natural_hazard_zone":"Outside FEMA Special Flood Hazard Area (Zone X) per commercial parcel data; medium seismic hazard."},"1402":{"description":"Meta’s Kuna Data Center is a Meta‑operated hyperscale campus at 6990 W Kuna‑Mora Rd in Kuna, Idaho, planned at over 960,000 sq ft and supporting Meta’s global infrastructure.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":960000,"year_online":"2026 expected","construction_update":"Jan 7, 2026: Reached peak construction; hopes to be operational by end‑2026. Apr 28, 2026: Project described as multi‑phase, with Phase 1 air‑cooled and Phase 2 water‑cooled still in development.","recent_news":"Apr 28, 2026: Reporting highlighted Meta’s phased cooling approach in Kuna—Phase 1 air‑cooled, Phase 2 water‑cooled—amid scrutiny of water use and incentives. Jan 7, 2026: The project hit peak construction, with hopes to be operational by end‑2026.","notable_tenants":"Meta (owner/operator, self-use). No third-party tenants or colocation customers publicly disclosed.","verified_name":"Kuna Data Center","verified_operator":"Meta Platforms, Inc.","verified_owner":"Brisbie, LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0,"utility_provider":"Idaho Power","tax_incentives":"Idaho statewide data center sales/use tax exemption program (enacted 2020) applicable to qualifying data centers; local incentives/urban-renewal discussions noted in coverage.","natural_hazard_zone":""},"1403":{"description":"IonSwitch CDA01 is IonSwitch’s owned-and-operated colocation facility at 600 W Appleway Ave (Suite B), Coeur d’Alene, Idaho, also offering VPS/VDS and dedicated servers. The operator lists CDA01 with 24/7/365 monitored security at this address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":6000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"IonSwitch CDA01","verified_operator":"IonSwitch, LLC","verified_owner":"IonSwitch, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Ziply Fiber","num_buildings":0,"campus_acres":0,"utility_provider":"Avista Utilities","tax_incentives":"Idaho Data Center Sales Tax Exemption is available statewide for qualifying new data centers; no facility-specific approval found.","natural_hazard_zone":""},"1404":{"description":"Fusion Connect – Coeur d’Alene is a regional telecom/colocation data center at 422 W Appleway Ave in Coeur d’Alene, Idaho, operated by Fusion Connect. The site traces back to OrbitCom’s regional data centers, with Fusion completing the Birch (OrbitCom assets) acquisition in 2018.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fusion Connect - Coeur d'Alene","verified_operator":"Fusion Connect","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Avista Utilities or Kootenai Electric Cooperative (city service territory; site-specific not confirmed)","tax_incentives":"Idaho statewide Data Center Sales Tax Exemption available for qualifying new data centers; no site-specific award identified.","natural_hazard_zone":"FEMA Flood Zone X (city-level), moderate flood risk; parcel-specific verification not found."},"1405":{"description":"Former Lumen/Level 3 (tw telecom) telecom colocation site at 2223 W Airport Way in Boise that was historically listed as “Lumen Boise 1,” but the entire 9,934-sq-ft building is now marketed for lease and the prior CenturyLink/Lumen presence is marked closed.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":9934,"year_online":"unknown","construction_update":"No active construction; the building is marketed for lease as of June 2026.","recent_news":"June 2, 2026: The entire 9,934-sq-ft building at 2223 W Airport Way was listed for lease on LoopNet; Colliers also markets the space with existing IT/fiber infrastructure.","notable_tenants":"","verified_name":"Lumen Boise 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen; others not listed","num_buildings":1,"campus_acres":0.9,"utility_provider":"Idaho Power Company","tax_incentives":"Idaho statewide Data Center Sales Tax Exemption (program for qualifying new data centers); no facility-specific award identified.","natural_hazard_zone":""},"1406":{"description":"DartPoints Baton Rouge, LA 1 (BTR01) is an operational colocation data center at 7127 Florida Blvd in Baton Rouge’s Bon Carré Technology Park, operated by DartPoints. The facility totals 86,400 sq ft with 2.5 MW of utility power.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":86400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DartPoints Baton Rouge 1 (BTR01)","verified_operator":"DartPoints","verified_owner":"DartPoints Operating Company LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Entergy Louisiana","tax_incentives":"Louisiana data center sales/use tax exemption program (La. R.S. 47:305.73) exists; no public record that BTR01 is certified/approved.","natural_hazard_zone":"Hurricane-prone region; site-specific FEMA flood zone should be confirmed via FEMA maps (zone not determined here)."},"1407":{"description":"DartPoints Baton Rouge, LA 2 (BTR02) is an operational colocation data center at 7139 Florida Blvd in Baton Rouge’s Bon Carré Technology Park, offering 27,400 sq ft of white space and 3 MW of utility power. The site traces back to the former Venyu BTR2 facility launched in 2014.","verified_status":"operational","power_capacity_mw":3,"total_sqft":27400,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DartPoints Baton Rouge 2 (BTR02)","verified_operator":"DartPoints","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"DartPoints (AS63026)","num_buildings":0,"campus_acres":43,"utility_provider":"Entergy Louisiana","tax_incentives":"","natural_hazard_zone":"Outside the 500-year flood plain; approximately 50 ft above sea level"},"1408":{"description":"Colocation data center at 6867 Bluebonnet Blvd in Baton Rouge operated by Lockstep Technology Group, with an estimated 10 MW of power and about 30,000 sq ft, established circa 2007.","verified_status":"operational","power_capacity_mw":10,"total_sqft":30000,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lockstep Technology Group Data Center","verified_operator":"Lockstep Technology Group","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T, Time Warner Telecom, Cox Enterprises","num_buildings":1,"campus_acres":0,"utility_provider":"Entergy Louisiana","tax_incentives":"Louisiana Act 730 data center sales and use tax exemption (program available statewide; no site-specific award documented).","natural_hazard_zone":"Hurricane-prone region; significant FEMA flood zone exposure in East Baton Rouge Parish."},"1409":{"description":"Lumen Baton Rouge 2 is a Lumen-operated colocation data center at 9826 Burbank Dr, Baton Rouge, Louisiana, totaling about 5,000 sq ft with roughly 2,000 sq ft of raised floor. Notable features listed include N+1 HVAC, DC power, and generator/battery backup.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"June 5, 2026: Report of a patent infringement lawsuit against Lumen over data center cooling technology; the article does not specify this particular Baton Rouge facility.","notable_tenants":"","verified_name":"Lumen Baton Rouge 2","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Lumen (Level 3)","num_buildings":0,"campus_acres":3.24,"utility_provider":"Entergy Louisiana","tax_incentives":"Louisiana’s data center sales and use tax rebate program is active (effective for qualifying investments between July 1, 2024 and July 1, 2029), offering rebates on eligible data center equipment; agreements carry an initial 20-year term per statute. Qualification for this specific small, existing site is not confirmed.","natural_hazard_zone":"Very low seismic risk; hurricane-prone Gulf Coast; localized flood exposure with documented flash flooding near Burbank Dr/Nicholson."},"1410":{"description":"DartPoints SHV01 is an operational, carrier-neutral colocation data center at 601 Milam St in Shreveport that DartPoints operates following its May 2023 acquisition of Venyu; the facility, housed in a redeveloped historic department store, includes a 5,600‑sq‑ft data hall and launched in September 2016.","verified_status":"operational","power_capacity_mw":2.2,"total_sqft":87000,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DartPoints Shreveport, LA - SHV01","verified_operator":"DartPoints","verified_owner":"Venyu Solutions, LLC","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"AEP Southwestern Electric Power (SWEPCO)","tax_incentives":"Restoration Tax Abatement (RTA) associated with 601 Milam; applicant listed as Venyu Solutions, LLC. Program offers up to a five-year, 100% property tax abatement on qualified rehabilitations.","natural_hazard_zone":"unknown"},"1411":{"description":"Cogent Communications operates an operational colocation data center and office at 650 Poydras St in New Orleans, offering 7,812 sq ft with cabinets/cages, UPS, and a backup generator.","verified_status":"operational","power_capacity_mw":0.7,"total_sqft":7812,"year_online":"unknown","construction_update":"","recent_news":"Jan 28–29, 2026: New Orleans imposed a one-year moratorium on new data centers while city planners study zoning/definitions; no site-specific expansion or tenant updates for Cogent’s 650 Poydras facility were found.","notable_tenants":"","verified_name":"Cogent Data Center - New Orleans","verified_operator":"Cogent Communications","verified_owner":"Hertz Investment Group","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral (carrier availability via cross-connects); Cogent present","num_buildings":1,"campus_acres":0,"utility_provider":"Entergy New Orleans","tax_incentives":"Louisiana Act 730: statewide sales and use tax rebate for qualifying data center projects; no evidence this facility has claimed it.","natural_hazard_zone":"Hurricane and flood exposure; FEMA address-specific flood zone not confirmed."},"1412":{"description":"EdgeConneX SLI01 is an operational edge data center at 2070 Gause Blvd E, Slidell, Louisiana, operated by EdgeConneX; the 26,950 sq ft facility is purpose-built for secure colocation and low‑latency delivery to the New Orleans market and currently offers 500 kW, scalable to 1.5 MW.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":26950,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX SLI01 New Orleans Data Center (Slidell)","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Louisiana’s 2024 data center incentive provides state and local sales/use tax rebates for qualifying equipment; applicability to this facility is unconfirmed.","natural_hazard_zone":"High flood and hurricane/wind exposure; FEMA flood zone not confirmed."},"1413":{"description":"Lumen New Orleans 2 is an operational Lumen Technologies colocation facility at 1250 Poydras St, Suite 500, New Orleans, offering approximately 9,379 sq ft with about 0.97 MW of power capacity.","verified_status":"operational","power_capacity_mw":0.97,"total_sqft":9379,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen New Orleans 2 Data Center","verified_operator":"Lumen Technologies","verified_owner":"Poydras Properties, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Entergy New Orleans","tax_incentives":"Louisiana Act 730 provides a state and local sales and use tax exemption for eligible data center equipment purchases/leases.","natural_hazard_zone":"FEMA Flood Zone X area near Zone AE boundary; hurricane-exposed Gulf Coast location."},"1414":{"description":"FOGO Solutions operates an active colocation/cloud data center on the 10th floor of 935 Gravier St in New Orleans. The facility is in the Exchange Centre and is noted by third-party directories as an operational colocation site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":21000,"year_online":"unknown","construction_update":"","recent_news":"On Jan 28, 2026, the New Orleans City Council enacted a one‑year moratorium on data-center development while the planning commission studies zoning; the action is citywide and not specific to FOGO or existing facilities.","notable_tenants":"","verified_name":"FOGO Solutions - New Orleans Data Center","verified_operator":"FOGO Solutions","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Level 3 (Lumen)","num_buildings":1,"campus_acres":0.57,"utility_provider":"Entergy New Orleans","tax_incentives":"","natural_hazard_zone":"Hurricane and flood exposure; 935 Gravier St had first-floor and garage flooding during Hurricane Katrina"},"1415":{"description":"Lumen Metairie 1 is an operational Lumen Technologies colocation/data-center facility at 3220 Lausat Street, Metairie, LA 70001. It is listed at roughly 20,000 sq ft of space and 2.4 MW total power.","verified_status":"operational","power_capacity_mw":2.4,"total_sqft":20000,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Metairie 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"Tier II equivalent","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Entergy Louisiana","tax_incentives":"Louisiana Act No. 730 provides a state and local sales & use tax rebate on qualifying data center development and related equipment; no public evidence found that this facility has claimed it.","natural_hazard_zone":"Gulf Coast hurricane and flood exposure; exact FEMA flood-zone designation for 3220 Lausat St not determined from cited public sources."},"1416":{"description":"Lumen New Orleans 1 is a Lumen-operated colocation data center at 639 Loyola Avenue in New Orleans. Third‑party listings show it as an operational facility at this address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":6072,"year_online":"unknown","construction_update":"","recent_news":"No facility‑specific news in the last six months. Citywide: on Jan 28–29, 2026, the New Orleans City Council approved a one‑year moratorium on new data‑center approvals via a Data Center Interim Zoning District.","notable_tenants":"","verified_name":"Lumen New Orleans 1","verified_operator":"Lumen Technologies","verified_owner":"Entergy New Orleans Inc","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":2.03,"utility_provider":"Entergy New Orleans","tax_incentives":"Louisiana Act 730 provides a state and local sales/use tax exemption for certified data center equipment; no public evidence this specific site is certified or receiving a facility-specific incentive.","natural_hazard_zone":"High flood/hurricane exposure (New Orleans citywide flood risk; specific FEMA flood zone not specified)"},"1417":{"description":"A legacy directory lists a very small tw telecom colocation/telecom site at 844 Ryan St in Lake Charles with about 100 sq ft of raised-floor space and basic colo/network services; tw telecom has since been acquired, and the address is the Historic Calcasieu Marine Bank building, so the entry appears legacy rather than an active, operator-maintained facility.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":100,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"tw telecom - Lake Charles Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Entergy Louisiana","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X; high hurricane risk zone"},"1418":{"description":"Lumen New Orleans 1 is an operational Lumen Technologies colocation data center at 639 Loyola Avenue in downtown New Orleans. Public listings describe a compact 6,072 sq ft site with about 974 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":6072,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen New Orleans 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Entergy New Orleans, Inc.","tax_incentives":"Louisiana statewide data-center incentive (HB 827/Act 730): sales-and-use tax rebate for qualifying data center equipment and construction; program term is 20 years with potential renewal per program terms.","natural_hazard_zone":"Hurricane exposure; FEMA flood mapping applies in New Orleans (exact zone at 639 Loyola not confirmed)."},"1419":{"description":"FOGO Solutions operates an owned-and-operated colocation/cloud/disaster-recovery data center on the 10th floor of The Exchange Centre at 935 Gravier St, New Orleans, LA. The facility occupies a building originally constructed by Chevron.","verified_status":"operational","power_capacity_mw":0,"total_sqft":21000,"year_online":"unknown","construction_update":"","recent_news":"Jan 28–30, 2026: New Orleans enacted a one-year moratorium on new data center approvals while the City Planning Commission studies zoning standards; this is a citywide regulatory action and not specific to FOGO’s existing facility.","notable_tenants":"","verified_name":"FOGO Solutions New Orleans Data Center","verified_operator":"FOGO Solutions","verified_owner":"Exchange Centre, LLC (Kingfish Development)","cooling_type":"hybrid","tier_level":"Tier III (design; not Uptime certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.57,"utility_provider":"Entergy New Orleans","tax_incentives":"","natural_hazard_zone":"Hurricane zone; flood risk area (levee-protected CBD; specific FEMA zone not confirmed)"},"1420":{"description":"Lumen Baton Rouge 2 is an operational Lumen Technologies colocation data center at 9826 Burbank Drive in Baton Rouge with about 5,000 sq ft total space (roughly 2,000 sq ft raised floor), offering N+1 HVAC and cabinet power densities up to 15 kW.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"June 5, 2026: Local coverage reported that Valtrus Innovations and Key Patent Innovations sued Lumen Technologies over alleged infringement of data center cooling technology patents; the story did not name the specific Baton Rouge 2 address.","notable_tenants":"","verified_name":"Lumen Baton Rouge 2 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Entergy Louisiana","tax_incentives":"Louisiana Sales & Use Rebate Incentive for Data Centers (effective July 1, 2024; initial 20-year term; program window through June 30, 2029). No evidence this facility participates.","natural_hazard_zone":"Hurricane/wind exposure; localized flooding along Burbank Drive; South Burbank neighborhood shows moderate flood risk (FEMA parcel zone not confirmed)."},"1421":{"description":"CyrusOne CIN6 is an operational CyrusOne colocation data center at 7190–7200 Industrial Road in Florence, Kentucky (Cincinnati area), featuring a 143,000‑sq‑ft facility with about 55,000 sq ft of white space and designed for production colocation, backup/recovery, and business continuity.","verified_status":"operational","power_capacity_mw":4,"total_sqft":143000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne CIN6 (Florence, KY)","verified_operator":"CyrusOne","verified_owner":"CyrusOne, LLC (ultimately owned by funds managed by KKR and Global Infrastructure Partners)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":25.79,"utility_provider":"Duke Energy Kentucky","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard)"},"1422":{"description":"Core Scientific operates the Calvert City, Kentucky data center campus at 1035 Shar‑Cal Rd, a high‑density facility with approximately 150 MW of total capacity and about 60,000 sq ft on a 15‑acre site. Opened in 2019 in a former Gerdau steel mill, it is being positioned for high‑density colocation/HPC.","verified_status":"operational","power_capacity_mw":150,"total_sqft":60000,"year_online":"2019","construction_update":"Oct 30, 2025: Company 8-K lists Calvert City as a “Future Colocation Site” with ~100 MW total billable power.","recent_news":"","notable_tenants":"","verified_name":"Core Scientific Calvert City Data Center (Calvert 1, 2 & 3)","verified_operator":"Core Scientific, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":15,"utility_provider":"Tennessee Valley Authority (TVA)","tax_incentives":"","natural_hazard_zone":"High earthquake/seismic exposure (New Madrid Seismic Zone)"},"1423":{"description":"Lost River Data Center (LRDC) is a Tier II colocation/interconnection facility within Western Kentucky University’s Center for Research and Development at 2413 Nashville Rd, operated as a joint venture of Bowling Green Municipal Utilities (BGMU/BGMU Fiber) and WKU. Construction of the Tier II co-location was completed in 2012.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"2012","construction_update":"","recent_news":"June 2026: The Bowling Green City Commission rejected a proposed six‑month pause on data centers and advanced new regulations, while local coverage noted the BGMU/Lost River facility’s continued operation; no new data center projects are currently planned in the city.","notable_tenants":"Accelecom","verified_name":"Lost River Data Center","verified_operator":"BGMU Fiber","verified_owner":"WKU Research Foundation and Bowling Green Municipal Utilities (joint venture)","cooling_type":"unknown","tier_level":"Tier II","fiber_providers":"BGMU Fiber; Accelecom; multiple carriers (carrier-neutral)","num_buildings":0,"campus_acres":20,"utility_provider":"Bowling Green Municipal Utilities (BGMU)","tax_incentives":"Kentucky statewide sales/use tax exemption for qualified data center projects (HB 775, 2025). No facility-specific award identified.","natural_hazard_zone":"Local flood exposure noted near Nashville Road; FEMA flood zone for the specific facility address not determined."},"1424":{"description":"TenKey Data Center - Bldg 1 is a planned data-center building at 421 Steele Rd in Franklin, Kentucky, developed by TenKey LandCo, LLC. It is part of a roughly 200-acre Gateway 65 North campus envisioned as three 200,000‑square‑foot facilities.","verified_status":"planned","power_capacity_mw":0,"total_sqft":200000,"year_online":"unknown","construction_update":"March 3–4, 2026: Franklin Planning & Zoning Commission approved the preliminary development plan for the TenKey data center campus after earlier tablings; final approvals and permits were still pending.","recent_news":"April 2026: Lawsuits escalated around the project—one filed to overturn the approval of the proposed Franklin data center, and another by TenKey challenging a county ordinance.","notable_tenants":"","verified_name":"TenKey Data Center - Bldg 1","verified_operator":"TenKey LandCo, LLC","verified_owner":"TenKey LandCo I, LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":200,"utility_provider":"Self-generated (on-site natural gas turbines/on-site power)","tax_incentives":"Developer states no tax abatements requested; Kentucky offers a sales tax exemption on electricity and personal property for data center operators.","natural_hazard_zone":"Regional severe weather exposure (tornado/flood events documented); county-level overall natural disaster risk rated low (score 25%)."},"1425":{"description":"KUSI Data Center is an operational underground colocation facility operated by Kentucky Underground Storage at 3830 Highbridge Rd, Wilmore, KY. It is a 2,300-square-foot data center located roughly 130 feet underground in a former limestone-mine complex.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2300,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"KUSI Data Center","verified_operator":"Kentucky Underground Storage, Inc.","verified_owner":"Kentucky Underground Storage, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":32,"utility_provider":"Blue Grass Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"1426":{"description":"Gearheart Communications operates a colocation data center at 1003 Winchester Rd in Lexington, Kentucky. Industry listings and company materials indicate the facility provides colocation services, though detailed specifications are not publicly disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Gearheart Communications — 1003 Winchester Rd, Lexington, KY 40505","verified_operator":"Gearheart Communications (PDNS, LLC / Mikrotec Internet Services)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Kentucky Utilities (KU)","tax_incentives":"","natural_hazard_zone":""},"1427":{"description":"Windstream Lexington is an operational Windstream data center in Lexington, Kentucky, used to provide carrier and enterprise services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":108910,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Windstream (operator/tenant); no publicly identified third‑party colocation tenants","verified_name":"Windstream: Lexington, KY Data Center","verified_operator":"Windstream","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream Enterprise; Windstream Wholesale; Uniti Kinetic (AS7029)","num_buildings":0,"campus_acres":0,"utility_provider":"Kentucky Utilities (KU)","tax_incentives":"","natural_hazard_zone":""},"1428":{"description":"BluegrassNet Downtown Lexington is a carrier-neutral colocation/data center operated by BluegrassNet at 535 W 2nd St in Lexington, KY, offering colocation services with multi‑Gigabit Internet connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"BluegrassNet Downtown Lexington","verified_operator":"BluegrassNet","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multi-homed Gigabit connectivity (no named carriers published)","num_buildings":1,"campus_acres":0,"utility_provider":"Kentucky Utilities (KU)","tax_incentives":"Kentucky HB 775 provides state sales/use tax exemptions for qualified data center projects; no facility-specific approval found.","natural_hazard_zone":"unknown"},"1429":{"description":"DartPoints Lexington Data Center Campus is a planned DartPoints colocation redevelopment of the former Lexmark data center campus at 745 W New Circle Rd in Lexington, Kentucky. The 29.5‑acre site totals about 343,000 sq ft (including ~81,000 sq ft of existing raised floor) and an on‑site substation, with initial power planning of ~20–30 MW and long‑term potential up to 70 MW.","verified_status":"planned","power_capacity_mw":20,"total_sqft":343000,"year_online":"unknown","construction_update":"Sale closed May 15, 2026; project announced May 27, 2026; on June 9, 2026, Lexington enacted a moratorium pausing data-center approvals, with no public construction-start or go-live date.","recent_news":"DartPoints announced plans for the Lexington campus on May 27, 2026, after the sale closed May 15, 2026; on June 9, 2026, the Lexington-Fayette Urban County Council enacted a moratorium pausing data-center approvals and reviews for the project.","notable_tenants":"","verified_name":"DartPoints Lexington Data Center Campus","verified_operator":"DartPoints","verified_owner":"DartPoints Operating Company","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":29.5,"utility_provider":"Kentucky Utilities (KU)","tax_incentives":"City of Lexington declined local/public incentives; Kentucky provides a statewide sales/use tax exemption for qualified data centers (HB 775). No project-specific award identified.","natural_hazard_zone":"unknown"},"1430":{"description":"CenterServ Lexington Data Center is a CenterServ-operated colocation/managed-hosting listing at 2333 Alexandria Drive in Lexington, KY. The facility is identified by a data center directory, but no power or data center size is disclosed; property records show an office building at this address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CenterServ: Lexington Data Center","verified_operator":"CenterServ","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.89,"utility_provider":"Kentucky Utilities","tax_incentives":"","natural_hazard_zone":""},"1431":{"description":"EnergyNet Data Center is an operational colocation facility operated by EnergyNet/Hopkinsville Electric System at 1820 E. 9th Street in Hopkinsville, Kentucky, offering colocation, off-site backup, and disaster-recovery services.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EnergyNet Data Center","verified_operator":"EnergyNet (a division of Hopkinsville Electric System)","verified_owner":"Hopkinsville Electric System (Electric Plant Board of the City of Hopkinsville)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Multiple Tier 1 providers with diverse fiber paths; HES-owned local fiber optic network","num_buildings":1,"campus_acres":0,"utility_provider":"Hopkinsville Electric System (TVA wholesale power)","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (outside 100-year floodplain); localized flash-flood exposure near East 9th St; severe tornado risk region"},"1432":{"description":"Quad State Internet PAH1 is an operational carrier-neutral colocation data center at 1212 Helen St, Paducah, KY, operated by Quad State Internet LLC; the operator offers enterprise connectivity services and the site hosts a Hurricane Electric PoP.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Hurricane Electric (HE.net) has a Point of Presence (PoP) at Quad State Internet PAH1.","verified_name":"Quad State Internet PAH1","verified_operator":"Quad State Internet LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Hurricane Electric; Paducah Internet Exchange (PIE); Quad State Internet dark fiber/DCI","num_buildings":0,"campus_acres":0.16,"utility_provider":"Paducah Power System","tax_incentives":"Kentucky Qualified Data Center sales/use tax exemption available for approved projects; no PAH1-specific approval identified.","natural_hazard_zone":"Regional exposure to New Madrid Seismic Zone (earthquake) and potential FEMA flood risk (A/AE mapping applies regionally); address-specific FEMA zone not confirmed."},"1433":{"description":"Flexential Louisville - Downtown is an operational colocation data center at 752 Barret Avenue in Louisville, Kentucky, operated by Flexential. It provides roughly 61,080 sq ft of space with about 3.09 MW of power capacity.","verified_status":"operational","power_capacity_mw":3.09,"total_sqft":61080,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Louisville - Downtown data center","verified_operator":"Flexential","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; AT&T, Lumen, Zayo, Comcast, Arelion","num_buildings":1,"campus_acres":1.14,"utility_provider":"Louisville Gas and Electric (LG&E)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard); low seismic hazard (KIPDA region)"},"1434":{"description":"Flexential Louisville - East is an operational Flexential colocation data center at 2101 Nelson Miller Parkway, Louisville, KY, with a 33,588-square-foot footprint and 1.46 MW of critical power.","verified_status":"operational","power_capacity_mw":1.46,"total_sqft":33588,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Forcht Bank","verified_name":"Flexential Louisville - East","verified_operator":"Flexential","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen","num_buildings":1,"campus_acres":3.14,"utility_provider":"Louisville Gas & Electric (LG&E)","tax_incentives":"","natural_hazard_zone":""},"1435":{"description":"DataCanopy Louisville is an operational Data Canopy colocation and managed-hosting data center at 1208 Quality Choice Place, Louisville, KY, offering private cages and cabinet options. In 2023, Data Canopy acquired Ntirety’s colocation/hosting business, providing legacy context for this location.","verified_status":"operational","power_capacity_mw":2,"total_sqft":8130,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Data Canopy Louisville Data Center","verified_operator":"Data Canopy","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III enhanced design standard (no Uptime certification found)","fiber_providers":"Spectrum Business","num_buildings":1,"campus_acres":0.59,"utility_provider":"Louisville Gas & Electric (LG&E)","tax_incentives":"Kentucky has statewide data center sales/use tax incentives (expanded in 2025); no site-specific incentive identified for this facility.","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard)"},"1436":{"description":"Lumen Louisville 1 is an operational Lumen network/colocation data center at 848 S. 8th Street in Louisville, Kentucky, with about 13,400 sq ft of total space and roughly 1,146 sq ft of raised-floor colocation.","verified_status":"operational","power_capacity_mw":0,"total_sqft":13400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Louisville 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.1,"utility_provider":"Louisville Gas and Electric (LG&E)","tax_incentives":"","natural_hazard_zone":""},"1437":{"description":"Lumen Louisville 2 is a Lumen-operated telecom/network colocation data center at 715 S 7th St, Louisville, KY.","verified_status":"operational","power_capacity_mw":0,"total_sqft":13400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Louisville 2","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen Technologies","num_buildings":0,"campus_acres":0.49,"utility_provider":"Louisville Gas and Electric (LG&E)","tax_incentives":"","natural_hazard_zone":""},"1438":{"description":"Lumen Louisville 3 is an operational Lumen colocation/telecom data center located at 332 W. Broadway in downtown Louisville, Kentucky, within the Heyburn Building, with a total footprint of about 10,495 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10495,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Louisville 3 Data Center","verified_operator":"Lumen","verified_owner":"IBC Property Holdings, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (on-net); Cogent (on-net in the same 332 W Broadway building).","num_buildings":1,"campus_acres":0.77,"utility_provider":"Louisville Gas and Electric Company (LG&E)","tax_incentives":"Property sits in an Opportunity Zone; potential eligibility for historic or low-income tax credits noted. No facility-specific award verified.","natural_hazard_zone":"Use MSD/LOJIC or FEMA MSC to confirm address-specific FEMA flood zone; Louisville area has mapped seismic risk (regional)."},"1439":{"description":"BluegrassNet Downtown Louisville is a BluegrassNet-operated colocation/data center in downtown Louisville (the 4th Street Facility) that offers colocation services with redundant, multi-homed connectivity and on-site support.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"BluegrassNet Downtown Louisville","verified_operator":"BluegrassNet","verified_owner":"MF Blue Valley Apartments LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"BluegrassNet owned fiber network; several CLECs; incumbent telco carriers; cable carriers","num_buildings":1,"campus_acres":0.83,"utility_provider":"LG&E (Louisville Gas and Electric)","tax_incentives":"Kentucky offers expanded data center sales/use tax exemptions for qualified projects with large capital investment thresholds (e.g., at least $450M); no site-specific incentives identified for this facility.","natural_hazard_zone":"Moderate regional risk: within influence of the New Madrid Seismic Zone; downtown Louisville subject to historical Ohio River flooding, with site-specific FEMA flood status checkable via MSD/LOJIC tools."},"1440":{"description":"IgLou Internet Services, Inc. operates a colocation data center at 3315 Gilmore Industrial Blvd in Louisville, KY, providing server/rack colocation with redundant fiber connectivity from Level3, TW Telecom, and AT&T. The facility is actively offered to customers in the Louisville/Lexington area.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"IgLou Data Center","verified_operator":"IgLou Internet Services, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Level3 (Lumen), TW Telecom, AT&T","num_buildings":1,"campus_acres":2.39,"utility_provider":"Louisville Gas and Electric (LG&E)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE"},"1441":{"description":"Operational enterprise data center at 12901 Plantside Dr in Louisville’s Blankenbaker Station Business Park, owned by Aphorio Carter; notable as a 2011-built enterprise facility with roughly 102,500 sq ft and about 1 MW of critical IT load.","verified_status":"operational","power_capacity_mw":1,"total_sqft":102500,"year_online":"2011","construction_update":"","recent_news":"May 6–7, 2026: 365 Data Centers and Aphorio Carter announced a ~200 MW AI-ready data center development pipeline and said they will pursue additional LOIs for sites including Louisville, Kentucky; 365 would serve as long-term operator for these developments.","notable_tenants":"Operator says both Kentucky facilities are occupied by the same Fortune 200 tenant (undisclosed). Independent listings associate 12901 Plantside Dr with Eaton Corporation (likely tenant, not officially confirmed).","verified_name":"Louisville Enterprise Data Center","verified_operator":"Aphorio Carter","verified_owner":"Aphorio Carter Critical Infrastructure Fund, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":30,"utility_provider":"","tax_incentives":"No facility-specific incentive identified; as of May 2026, Kentucky had not approved any qualified data center projects for state sales tax incentives.","natural_hazard_zone":"FEMA Flood Zone B and X (moderate risk/shaded Zone X)"},"1442":{"description":"An enterprise data center at 70 Kingbrook Pkwy in Simpsonville, Kentucky, owned by Aphorio Carter following its 2025 acquisition of the facility.","verified_status":"operational","power_capacity_mw":1,"total_sqft":102500,"year_online":"2011","construction_update":"May 7, 2026: Reported as part of a ~200 MW development pipeline with 365 Data Centers; Simpsonville, KY is identified as a priority location. No construction start date publicly disclosed.","recent_news":"May 6, 2026: 365 Data Centers and Aphorio Carter launched a ~200 MW AI‑ready data center pipeline and named Simpsonville, Kentucky among the initial sites.","notable_tenants":"","verified_name":"Simpsonville Enterprise Data Center","verified_operator":"Aphorio Carter","verified_owner":"Aphorio Carter","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"","num_buildings":0,"campus_acres":20.87,"utility_provider":"Kentucky Utilities (a PPL company)","tax_incentives":"","natural_hazard_zone":"low flood risk"},"1443":{"description":"PowerHouse Louisville is a planned hyperscale data center campus on Camp Ground Road in Louisville, Kentucky, developed by PowerHouse Data Centers (AREP) with Poe Companies and promoted as the state’s first hyperscale campus. Operator materials list 154 acres, up to six buildings totaling 1.8M sq ft, max utility power up to 525 MW, and Q4 2026 delivery.","verified_status":"planned","power_capacity_mw":525,"total_sqft":1800000,"year_online":"2026","construction_update":"March 5, 2026: Louisville Planning Commission approved/recommended approval of a new site plan for the Camp Ground Road campus amid opposition; initial 130 MW is targeted for October 2026.","recent_news":"March 5, 2026: The Louisville Planning Commission approved a new site plan for the Camp Ground Road hyperscale data center despite strong community opposition; coverage notes an approximately 1.6M sq ft plan and estimates construction starting after approval.","notable_tenants":"","verified_name":"PowerHouse Louisville","verified_operator":"PowerHouse Data Centers","verified_owner":"Joint venture of PowerHouse Data Centers (American Real Estate Partners) and Poe Companies","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":6,"campus_acres":154,"utility_provider":"Louisville Gas and Electric (LG&E)","tax_incentives":"Kentucky qualified data center incentives: sales and use tax exemption for approved qualified data center projects (potentially up to 50 years with large capital investment thresholds). As of May 2026, no qualified data center projects had been approved for state incentives.","natural_hazard_zone":"unknown"},"1444":{"description":"Mason County Campus is a planned hyperscale data center campus outside Maysville, Kentucky, with directory listings at 3148 Big Pond Pike and a proposed 2,080‑acre site near Big Pond Pike, Germantown Road, and Valley Pike Road. The end‑user is undisclosed; development proposals outline six 718,740‑sq‑ft buildings and three substations (total ~4.31 million sq ft).","verified_status":"planned","power_capacity_mw":2200,"total_sqft":4312440,"year_online":"unknown","construction_update":"Apr 22, 2026: development plans approved with conditions; May 22, 2026: fiscal court granted final rezoning approval enabling the data center campus.","recent_news":"Final rezoning for the 2,000+ acre campus was approved in late May 2026, with early June coverage summarizing the rezoning; residents and a grassroots group have pursued legal action to oppose the project.","notable_tenants":"","verified_name":"Mason County Campus","verified_operator":"Undisclosed; developer identified in permitting as Monarch Cloud Campus LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":2080,"utility_provider":"East Kentucky Power Cooperative (EKPC)","tax_incentives":"Kentucky HB 775 expanded sales and use tax exemptions for qualified data center projects; additional state incentives may include up to 100% of sales taxes and up to 100% of income taxes owed, subject to approval.","natural_hazard_zone":"Low risk — Redfin Flood Factor 1/10 (minimal flood risk) at 3148 Big Pond Pike; low seismic exposure relative to New Madrid high‑risk zones per Kentucky Farm Bureau."},"1445":{"description":"CENTRA Portland (PWM1) is a carrier‑neutral colocation/carrier‑hotel operated by CENTRA at 340 Cumberland Ave in downtown Portland, Maine, hosting the NNENIX and numerous carriers. The Tier III facility totals about 52,272 sq ft and remains operational following Deep Edge’s 2022 acquisition of the building.","verified_status":"operational","power_capacity_mw":3,"total_sqft":52272,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"NNENIX; Hurricane Electric; Crown Castle/Lightower; NEON; Fidium/Consolidated Communications/FairPoint; FirstLight; Maine Fiber","verified_name":"CENTRA Portland (PWM1) / 340 Cumberland Carrier Hotel","verified_operator":"CENTRA Digital Interconnect (CENTRA)","verified_owner":"CADC Holdings/Deep Edge Realty (CENTRA)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Central Maine Power (CMP)","tax_incentives":"Maine sales/use tax refund or exemption for eligible server equipment and power infrastructure (eligibility/application for PWM1 not verified).","natural_hazard_zone":"unknown"},"1446":{"description":"EnablesIT Data Center is a small colocation/managed-services facility operated by EnablesIT at 4 Industrial Parkway, Brunswick, Maine, listed by data center directories; property records indicate a roughly 12,313 sq ft building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12313,"year_online":"unknown","construction_update":"","recent_news":"June 2026: Brunswick enacted a temporary moratorium on large data centers while it reviews local rules, with coverage noting existing smaller sites including Enables IT; the 4 Industrial Parkway property was also listed for sale in May 2026.","notable_tenants":"","verified_name":"EnablesIT Data Center","verified_operator":"EnablesIT","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":3.19,"utility_provider":"Central Maine Power","tax_incentives":"","natural_hazard_zone":"Flood Factor 1/10 Minimal (low flood risk)"},"1447":{"description":"Carrier-neutral colocation facility operated by FirstLight Fiber at 60 Summer Street, Bangor, Maine, offering carrier-grade infrastructure and redundant, diversely routed internet connectivity up to 10 Gbps.","verified_status":"operational","power_capacity_mw":0.125,"total_sqft":8000,"year_online":"2007","construction_update":"","recent_news":"Apr 6, 2026: Bangor enacted a temporary moratorium on new data centers, citing sudden industry pressure; the action is citywide and does not name FirstLight.","notable_tenants":"","verified_name":"FirstLight Bangor Data Center","verified_operator":"FirstLight Fiber","verified_owner":"Antin Infrastructure Partners","cooling_type":"air-cooled","tier_level":"Tier II","fiber_providers":"Carrier-neutral; FirstLight Fiber network","num_buildings":1,"campus_acres":0,"utility_provider":"Versant Power","tax_incentives":"Maine sales tax refund/exemption for eligible data center equipment (LD 1722) potentially applicable; 2026 proposal considered excluding new data centers from some programs (status evolving).","natural_hazard_zone":"Flood risk present in downtown Bangor; historic 1976 flood inundated downtown to ~12 feet. Specific FEMA zone for 60 Summer St not confirmed."},"1448":{"description":"Pioneer Broadband DataCenter is an operational colocation facility operated by Pioneer Broadband at 480 Main St, Suite 204 in Presque Isle, Maine, with internationally redundant connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Pioneer Broadband DataCenter","verified_operator":"Pioneer Broadband","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; internationally redundant data paths via Pioneer Broadband and third-party providers","num_buildings":0,"campus_acres":0,"utility_provider":"Versant Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone D (undetermined flood hazard) for Presque Isle; generally low flood risk"},"1449":{"description":"DataBank BWI1 is a DataBank-operated, carrier-neutral data center at 300 West Lexington Street in downtown Baltimore’s One Market Center carrier hotel, offering about 10,000 sq ft of raised-floor space with access to 1.5 MW of power.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank BWI1 - Downtown Baltimore","verified_operator":"DataBank","verified_owner":"AiNET","cooling_type":"unknown","tier_level":"Tier III design","fiber_providers":"carrier-neutral; on-site networks include Level 3 (Lumen), XO Communications, Comcast, Cogent, FiberLight, Windstream, Zayo, Believe Wireless","num_buildings":1,"campus_acres":1.5,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"","natural_hazard_zone":""},"1450":{"description":"Operational Verizon Enterprise colocation/telecom suite, formerly listed as XO Communications – Baltimore Data Center #2, located at 300 W. Lexington Street (5th floor) within AiNET’s One Market Center in Baltimore, MD.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon: 300 Lexington","verified_operator":"Verizon","verified_owner":"AiNET","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"BGE (Baltimore Gas and Electric)","tax_incentives":"Maryland Data Center Sales & Use Tax Exemption program; Baltimore City Enterprise Zone (downtown included).","natural_hazard_zone":""},"1451":{"description":"Carrier-neutral colocation facility operated by DataBank inside the Candler Building at 111 Market Place in downtown Baltimore, formerly the zColo/Zayo site acquired into DataBank’s portfolio in 2020.","verified_status":"operational","power_capacity_mw":0.3,"total_sqft":4100,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank - 111 Market Pl (formerly zColo/Zayo)","verified_operator":"DataBank","verified_owner":"American Real Estate Partners (AREP)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; examples include CenturyLink/Lumen, Comcast, Level 3, Lightower, Time Warner Telecom, Verizon, Vodafone, Windstream, XO, and Zayo.","num_buildings":1,"campus_acres":1.3,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Potentially applicable: Maryland Data Center Sales and Use Tax Exemption (qualified data center personal property) and Baltimore City Enterprise Zone real property & state income tax credits (Pratt Street corridor included after 2022 redesignation).","natural_hazard_zone":"Inner Harbor nuisance-flood exposure (Zone 3 per Baltimore City Nuisance Flood Plan); FEMA SFHA not confirmed."},"1452":{"description":"A small, carrier‑neutral interconnection/colocation site in Baltimore’s Candler Building (111 Market Place/700–720 E Pratt) historically tied to 24/7 Mid‑Atlantic and operated as a Crown Castle Fiber facility. On May 1, 2026, Crown Castle closed the sale of its Fiber Solutions business to Zayo, though directories still list this site under Crown Castle.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 1, 2026: Crown Castle closed the sale of its Fiber Solutions business to Zayo and its Small Cell business to Arium Networks; the release does not specifically name the Baltimore 111 Market Place facility.","notable_tenants":"No anchor tenant was publicly disclosed. Interconnection presence at the building includes DACS-IX East and Cogent lists service at Crown Castle, 111 Market Place.","verified_name":"Crown Castle Baltimore","verified_operator":"Zayo Group","verified_owner":"American Real Estate Partners (AREP)","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; Cogent present at 111 Market Place","num_buildings":1,"campus_acres":0,"utility_provider":"BGE (Baltimore Gas and Electric)","tax_incentives":"Potential eligibility: Baltimore City Enterprise Zone (includes downtown Pratt Street area) and Maryland’s Data Center Sales & Use Tax Exemption for qualifying data centers.","natural_hazard_zone":""},"1453":{"description":"A small, carrier-focused colocation/data center at 100 S. Charles Street (2nd floor) in Baltimore operated by Verizon Enterprise; it is the former XO Communications Baltimore Data Center #1 and is currently listed as operational.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Business - Standard DC Baltimore (former XO Baltimore Data Center #1)","verified_operator":"Verizon Business","verified_owner":"Carlyle Baltimore Holdings, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Maryland Data Center Sales & Use Tax Exemption program exists; no facility-specific incentive found for this site.","natural_hazard_zone":"unknown"},"1454":{"description":"TierPoint Baltimore - BAL is an operational TierPoint colocation data center at 1401 Russell Street in Baltimore, MD. Public listings indicate roughly 33,000 sq ft total with about 14,000 sq ft of raised floor and around 2 MW of power capacity.","verified_status":"operational","power_capacity_mw":2,"total_sqft":33000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Baltimore Data Center (BAL)","verified_operator":"TierPoint","verified_owner":"TierPoint","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.888,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Maryland Data Center Sales & Use Tax Exemption program is available to qualified data centers; facility-specific qualification not verified.","natural_hazard_zone":""},"1455":{"description":"Expedient Baltimore Tide Point is an operational colocation/cloud data center operated by Expedient at 1050 Hull Street in Baltimore’s Tide Point area on Under Armour’s campus.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":23083,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Expedient Baltimore Tide Point Data Center","verified_operator":"Expedient","verified_owner":"Under Armour, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multiple carrier options; diverse fiber routes","num_buildings":0,"campus_acres":14.6,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Baltimore City Enterprise Zone (Locust Point) eligibility area; Maryland Data Center Sales & Use Tax Exemption program available. No public record confirming this facility’s enrollment/certification.","natural_hazard_zone":"FEMA Flood Zone X (Area of Minimal Flood Hazard)"},"1456":{"description":"Expedient Baltimore - Owings Mills / BWI1 is Expedient’s operational colocation data center at 11155 Red Run Blvd., Suite 200, Owings Mills, MD, offering 22,000 sq. ft. of space with 8,800 sq. ft. of raised floor. The site features a 2N UPS architecture and 3.5 MW total generator capacity [1][2].","verified_status":"operational","power_capacity_mw":0.8,"total_sqft":22000,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Expedient Baltimore Data Center (Owings Mills)","verified_operator":"Expedient","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption program is available statewide; no evidence that this facility is certified under it.","natural_hazard_zone":"unknown"},"1457":{"description":"Cogent Communications operates a colocation data center at 6050 Race Rd, Elkridge, MD, offering Internet, transport and colo services. Third‑party profiles describe a ~61.7k sq ft facility with 7.5 MW total power and about 6.17 MW protected IT capacity.","verified_status":"operational","power_capacity_mw":7.5,"total_sqft":61734,"year_online":"1985","construction_update":"","recent_news":"May 26–27, 2026: Cogent agreed to sell 10 data centers, including 6050 Race Rd (Elkridge), to an entity sponsored by I Squared Capital for $225M; closing expected in Q3 2026, subject to conditions.","notable_tenants":"No anchor tenants or major customers publicly identified.","verified_name":"Cogent Data Center - Elkridge","verified_operator":"Cogent Communications, Inc.","verified_owner":"Cogent Fiber, LLC (indirect wholly owned subsidiary of Cogent Communications Holdings, Inc.); sale agreement announced to an I Squared Capital–backed entity, closing pending as of the announcement.","cooling_type":"chilled water","tier_level":"N+1 redundant design; no public Uptime Institute Tier certification found","fiber_providers":"carrier-neutral; Cogent, Comcast, FiberLight, Zayo","num_buildings":1,"campus_acres":5.1,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Potential eligibility: Maryland Qualified Data Center sales & use tax exemption (requires certification); Howard County Enterprise Zone (Route 1 corridor) offers local property/state income tax credits if within boundaries and meeting requirements.","natural_hazard_zone":"FEMA NFHL Flood Zone X, Area of Minimal Flood Hazard; not a Special Flood Hazard Area (SFHA_TF=F)."},"1458":{"description":"AiNET CyberNAP is AiNET’s carrier-neutral colocation/carrier-hotel data center at 7900 Ritchie Hwy in Glen Burnie, Maryland, comprising roughly 300,000 square feet. It serves as a large regional facility for wholesale/colocation services.","verified_status":"operational","power_capacity_mw":80,"total_sqft":300000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"AiNET CyberNAP","verified_operator":"AiNET","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; multiple independent carriers; AiNET proprietary DWDM fiber network.","num_buildings":1,"campus_acres":15,"utility_provider":"","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption program is available statewide for qualified data centers; participation for this facility is not confirmed.","natural_hazard_zone":"FEMA Zone X (low to moderate flood risk) — Glen Burnie area"},"1459":{"description":"Comcast Nottingham is an operational Comcast‑occupied telecom/data‑center facility at 8031 Corporate Dr in Nottingham (White Marsh), Maryland, totaling about 66,000 square feet.","verified_status":"operational","power_capacity_mw":0,"total_sqft":66000,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"Comcast","verified_name":"Comcast Nottingham","verified_operator":"Comcast","verified_owner":"Landmark Dividend, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Comcast/Xfinity network; no carrier-neutral provider list publicly disclosed","num_buildings":1,"campus_acres":5.77,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"","natural_hazard_zone":""},"1460":{"description":"Amazon Data Services acquired the nine‑acre property at 11550 Cronridge Dr, Owings Mills, MD, in 2026; the site hosts T. Rowe Price’s Technology Center and an office building of about 111,000 sq ft, with occupancy continuing under a sale‑leaseback.","verified_status":"operational","power_capacity_mw":0,"total_sqft":111000,"year_online":"1996","construction_update":"No active construction or expansion announced following the April 8, 2026 sale.","recent_news":"Amazon Data Services purchased the 11550 Cronridge Dr property for about $15.2M; the sale closed April 8, 2026, and was widely reported in early May.","notable_tenants":"T. Rowe Price Group (tenant under the 2026 sale‑leaseback); no other anchor tenants publicly disclosed.","verified_name":"T. Rowe Price Technology Center (11550 Cronridge Drive)","verified_operator":"T. Rowe Price","verified_owner":"Amazon Data Services","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":9.32,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"","natural_hazard_zone":""},"1461":{"description":"A hyperscale powered‑shell wholesale data center at 7665 Sandy Farm Rd in Severn, Maryland, owned by GI Partners. It is part of a two‑property Baltimore‑area portfolio of hyperscale powered‑shell campuses.","verified_status":"operational","power_capacity_mw":0,"total_sqft":109455,"year_online":"unknown","construction_update":"2026-05-18: County records list “SANDY FARM DATA CENTER – PHASE 2” sketch application proposing a 93,258‑sq‑ft addition at 7665 Sandy Farm Rd, Severn.","recent_news":"Mar 4, 2026: GI Partners acquired the Severn and Laurel data centers, 100% leased to a single user; May 18, 2026: Sandy Farm Data Center Phase 2 sketch application submitted for a 93,258‑sq‑ft addition.","notable_tenants":"","verified_name":"Sandy Farms Data Center (7665 Sandy Farm Road)","verified_operator":"GI Partners","verified_owner":"GI Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":49.61,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption program is active for qualified data centers; no public Sandy Farms/GI Partners certificate was found.","natural_hazard_zone":"minor flood risk at Severn city level; exact parcel FEMA flood-zone designation not publicly confirmed"},"1462":{"description":"Planned 150 MW data center campus by Security Land and Development LP at 1500 Woodlawn Drive on a 42-acre site in Woodlawn, Baltimore County, MD. The site formerly housed the Social Security Administration’s Security West facility.","verified_status":"planned","power_capacity_mw":150,"total_sqft":0,"year_online":"unknown","construction_update":"As of mid-2026, the project remains in planning: prior reports suggested a June/July 2026 start, but Baltimore County’s Bill 3-26 now suspends data center approvals until January 1, 2027 or 90 days after the study report.","recent_news":"Baltimore County enacted Bill 3-26 creating a data center study and moratorium: the Planning Board must submit a report by October 1, 2026, and the bill pauses approvals for data centers until January 1, 2027 or 90 days after the report, whichever is earlier.","notable_tenants":"","verified_name":"Security Land: Woodlawn Campus Data Center","verified_operator":"Security Land and Development LP","verified_owner":"Security West partnership (owner of the 1500 Woodlawn complex); Regency Affiliates holds a limited partnership interest.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":42,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Potentially eligible: Maryland Data Center Sales & Use Tax Exemption; Woodlawn Enterprise Zone real property and income tax credits; County considering grants/loans/tax credits for data centers via the Data Center Study. No project-specific award identified.","natural_hazard_zone":""},"1463":{"description":"COPT DC-3 is a stale listing tied to 2500 Riva Rd in Annapolis, which has been redeveloped as Beacon Square—a mixed-use retail/apartment project anchored by Whole Foods. This indicates the former COPT-associated use at this address is no longer an operational data center.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Mixed-use redevelopment at 2500 Riva Rd (Beacon Square) delivered in 2023–2024; as of 2026-06-29 there is no data-center construction or expansion at this site.","recent_news":"","notable_tenants":"No data-center tenant publicly identified; current retail anchor at this address: Whole Foods.","verified_name":"COPT DC-3 Data Center","verified_operator":"COPT Defense Properties (formerly Corporate Office Properties Trust (COPT))","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Maryland Data Center Sales & Use Tax Exemption; Anne Arundel County Qualified Data Center personal property assessment reduction (programs available; facility-specific approval not found).","natural_hazard_zone":""},"1464":{"description":"InfraDMS BAL01 is an InfraDMS-operated colocation/IaaS data center at 1 South St in Baltimore, Maryland, described as supporting more than 20,000 servers with multiple power feeds, fiber links, generators, and battery backup. Public pages confirm the listing and location but do not disclose facility-specific MW capacity or square footage.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"InfraDMS BAL01","verified_operator":"InfraDMS","verified_owner":"BHN Associates","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multiple fiber links","num_buildings":1,"campus_acres":0,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption program available to qualified data centers; no public record of certification for this site.","natural_hazard_zone":"Low flood risk (FEMA Zone X likely); regional hurricane/severe-wind exposure"},"1465":{"description":"Operational colocation data center at 12401 Prosperity Drive in Silver Spring offering 214,000 sq ft and listed 10 MW capacity; built out as a data center around 2009 and sold in Aug 2025 to Sansone Group in partnership with Priseda.","verified_status":"operational","power_capacity_mw":10,"total_sqft":214000,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"Priseda","verified_name":"DataBridge Sites Silver Spring / Washington, DC Data Center (MDC-1/MDC-2)","verified_operator":"DataBridge Sites","verified_owner":"Sansone Group and Priseda LLC","cooling_type":"unknown","tier_level":"Tier 4 power / Tier 3 cooling (no Uptime certification cited)","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":10,"utility_provider":"Pepco (Potomac Electric Power Company)","tax_incentives":"Maryland statewide sales & use tax exemption for qualified data centers (applicability subject to meeting program requirements). No site-specific award confirmed.","natural_hazard_zone":""},"1466":{"description":"Atlantech Online operates an operational colocation data center at 1010 Wayne Avenue in Silver Spring, MD; Atlantech’s site lists data center/colocation services at this address, and DataCenterMap reports an 8,000 sq ft facility in service since 1998.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8000,"year_online":"1998","construction_update":"","recent_news":"Jan 20, 2026: Montgomery Planning Board staff report (ZTA 26-01) and its Attachment C list 1010 Wayne Avenue, Silver Spring as an existing data center; no facility-specific expansion or tenant announcements found in the last six months.","notable_tenants":"","verified_name":"Atlantech Silver Spring Datacenter","verified_operator":"Atlantech Online, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Pepco (Potomac Electric Power Company)","tax_incentives":"Silver Spring Enterprise Zone incentives are available locally, and Maryland offers a data center sales and use tax exemption program; no public evidence shows this facility is enrolled or receiving a specific incentive.","natural_hazard_zone":"FEMA Flood Zone B & X (area of moderate flood hazard between 100-year and 500-year limits)"},"1467":{"description":"Atlantech Rockville Datacenter is an operational colocation facility operated by Atlantech Online at 1201 Seven Locks Road in Rockville, MD, offering hosting/data center services with redundant power (UPS/PDU), on-site diesel generators, 24/7 security, and over 800 Gbps of network throughput.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"PeeringDB lists networks present at the facility, including DACS SCE; Mosaic Data Services, Inc.; and Nellicus, LLC.","verified_name":"Atlantech Rockville Datacenter","verified_operator":"Atlantech Online, Inc.","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; Atlantech Online fiber connectivity present at site","num_buildings":1,"campus_acres":6.34,"utility_provider":"Pepco","tax_incentives":"","natural_hazard_zone":""},"1468":{"description":"AiNET Laurel SCIF (also marketed as a data center by AiNET) is an AiNET-operated facility at 312 Laurel Ave, Laurel, MD. Public listings identify it as AiNET’s Laurel data center at this address.","verified_status":"operational","power_capacity_mw":0.45,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"June 12, 2026: Broker listing shows 6,000–12,000 SF available with noted capacity of 450 kW.","notable_tenants":"","verified_name":"AiNET Laurel SCIF (Coloco #8)","verified_operator":"AiNET","verified_owner":"AiNET","cooling_type":"unknown","tier_level":"Tier III design (not Uptime-certified)","fiber_providers":"carrier-neutral; Verizon, Time Warner, AiNET, MFS; two separate fiber entrances","num_buildings":1,"campus_acres":0.3,"utility_provider":"Pepco (Potomac Electric Power Company)","tax_incentives":"Maryland Data Center Sales & Use Tax Exemption is available to qualified data centers; no facility-specific award identified.","natural_hazard_zone":"FEMA Flood Zones B and X (moderate hazard, between 100‑year and 500‑year limits); described as above the 500‑year flood plain."},"1469":{"description":"A small telecom/colocation facility at 14405 Laurel Pl, Laurel, MD, originally tw telecom and now under Lumen via the Level 3/CenturyLink acquisitions and rebrand, offering about 1,203 sq ft of raised floor with redundant UPS, standby diesel generators, and dual HVAC; the county lists it as existing.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1203,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"tw telecom – Washington Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; access to multiple carriers; Lumen/tw telecom SONET fiber present","num_buildings":1,"campus_acres":0,"utility_provider":"Pepco (Potomac Electric Power Company)","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption Incentive Program (potentially up to 20 years for qualifying data centers)","natural_hazard_zone":"FEMA Zone X (moderate/low flood risk likely for this corridor)"},"1470":{"description":"A Verizon-operated telecom/data center facility at 7020 Virginia Manor Road in Beltsville, Maryland (also referenced as Verizon BGENMD). Public listings identify Verizon/Verizon Business as the operator.","verified_status":"operational","power_capacity_mw":1,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Beltsville Data Center (BGENMD)","verified_operator":"Verizon Communications Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Pepco (Potomac Electric Power Company)","tax_incentives":"","natural_hazard_zone":"FEMA flood zone for 7020 Virginia Manor Rd not determined; regional exposure to tropical-storm winds; seismic hazard per Maryland/USGS mapping resources."},"1471":{"description":"Recovery Point Systems operates a colocation data center at 20441 Century Blvd in Germantown, Maryland; the roughly 115,000‑sq‑ft facility holds Tier III certifications and offers enterprise connectivity. It is actively marketed by the operator and appears in current third‑party facility directories.","verified_status":"operational","power_capacity_mw":5,"total_sqft":115000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Recovery Point Germantown Data Center","verified_operator":"Recovery Point Systems","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"Megaport","num_buildings":0,"campus_acres":12.57,"utility_provider":"Pepco","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption Program (eligibility based on investment and job creation thresholds).","natural_hazard_zone":""},"1472":{"description":"Aligned IAD-04 is a hyperscale data center developed by Aligned Data Centers at 5601 Manor Woods Road in Frederick, Maryland, on a 75-acre campus, designed to Tier III standards and built as a 72MW facility now under construction.","verified_status":"under-construction","power_capacity_mw":72,"total_sqft":450000,"year_online":"2026 (expected)","construction_update":"Groundbreaking on IAD-04 occurred on February 5, 2025.","recent_news":"","notable_tenants":"","verified_name":"Aligned IAD-04","verified_operator":"Aligned Data Centers","verified_owner":"Funds managed by Macquarie Asset Management (majority owner of Aligned Data Centers); sale at ~$40B EV announced Oct 15, 2025 (pending close).","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":75,"utility_provider":"Potomac Edison (FirstEnergy)","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption Program","natural_hazard_zone":"FEMA floodplains are mapped in the area; nearby parcels show Flood Zones B/X (moderate flood hazard)."},"1473":{"description":"Rowan Bauxite II – Building 1 is a hyperscale data center building under Rowan Digital Infrastructure’s Bauxite II campus near Mountville Rd & Ballenger Creek Pike in Frederick, MD. Public listings describe the four‑building campus at roughly 822,620 sq ft on ~111.5 acres, with building‑level capacity undisclosed and a third‑party campus estimate of 230 MW.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"2026 (expected)","construction_update":"Dec 18, 2024: Frederick County Planning Commission approved the Bauxite II site development plan.","recent_news":"May 28, 2026: Maryland Department of the Environment held a public meeting on the IAD534 (“Bauxite II”) air permit; local coverage described a contentious Amazon presentation and noted the new Bauxite II site nearby.","notable_tenants":"","verified_name":"Rowan Bauxite II - Building 1","verified_operator":"Rowan Digital Infrastructure","verified_owner":"Quinbrook Infrastructure Partners (via Rowan Digital Infrastructure)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":111.5,"utility_provider":"Potomac Edison (FirstEnergy)","tax_incentives":"Maryland Sales and Use Tax Exemption for qualified data center personal property.","natural_hazard_zone":"Low risk (remediated brownfield; no specific FEMA flood zone identified in provided sources)."},"1474":{"description":"Operational colocation data center operated by Xecunet, LLC at 5744‑R Industry Lane in Frederick, Maryland, offering colocation services at that address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Xecunet Data Center","verified_operator":"Xecunet, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Potomac Edison (FirstEnergy)","tax_incentives":"Maryland Data Center Sales & Use Tax Exemption (statewide program, subject to meeting spend thresholds). Locally, Frederick County does not levy a blanket business personal property tax, which can reduce ongoing tax burden for equipment.","natural_hazard_zone":""},"1475":{"description":"Frederick Data Center I is a colocation facility operated by Swift Systems, Inc. at 5301 Buckeystown Pike in Frederick, Maryland. Swift Systems became part of Corporate Technologies via NuMSP, and while the facility is listed by data center directories, current Corporate Technologies materials emphasize managed IT services rather than publishing detailed colocation specifications for this site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Frederick Data Center I","verified_operator":"Swift Systems, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; building lists 5 internet providers.","num_buildings":1,"campus_acres":3.46,"utility_provider":"Potomac Edison (FirstEnergy)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (SFHA_TF=F — minimal flood hazard)"},"1476":{"description":"Swift Systems Frederick Data Center II is a colocation facility at 7340 Executive Way, Suite M, Frederick, Maryland, historically operated by Swift Systems and still listed by data center directories. Following acquisitions of Swift Systems (via NuMSP) by Corporate Technologies, the site remains listed as an active colocation location.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Frederick Data Center II","verified_operator":"Swift Systems, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Potomac Edison (FirstEnergy)","tax_incentives":"Maryland Sales & Use Tax Exemption for Qualified Data Centers; Frederick County imposes no local business personal property tax on equipment.","natural_hazard_zone":"Flood exposure context: City states 11% of Frederick is in or near a FEMA 100‑year floodplain; parcel’s specific FEMA zone not confirmed (check FEMA MSC)."},"1477":{"description":"SSA’s National Support Center at 8999 Bennett Creek Blvd., Urbana, MD is the agency’s primary enterprise data center, opened with a ribbon-cutting in 2014 and replacing the prior National Computer Center.","verified_status":"operational","power_capacity_mw":10,"total_sqft":280000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"Social Security Administration (SSA)","verified_name":"Social Security Administration National Support Center","verified_operator":"Social Security Administration (SSA)","verified_owner":"U.S. General Services Administration (GSA)","cooling_type":"chilled water","tier_level":"Tier III","fiber_providers":"","num_buildings":1,"campus_acres":63.3,"utility_provider":"Potomac Edison (FirstEnergy)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE (base floodplain/high-risk flood area)"},"1478":{"description":"Proposed Amazon Web Services hyperscale data-center campus at 1650 Calvert Cliffs Parkway in Lusby, Maryland, with a concept plan for eight buildings totaling about 2.464 million gross square feet. AWS has submitted a site-plan application to Calvert County and the project is in the concept review stage.","verified_status":"planned","power_capacity_mw":0,"total_sqft":2464000,"year_online":"unknown","construction_update":"Concept/site-plan stage: Calvert County has received AWS’s site-plan application (late May 2026), initiating concept review; no construction permits or approvals have been issued.","recent_news":"On June 17, 2026, a Calvert County vote on a data-center moratorium ended in a 2–2 tie, so the motion failed.","notable_tenants":"","verified_name":"Calvert Technology Center","verified_operator":"Amazon Web Services (AWS)","verified_owner":"Constellation Energy Generation, LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":8,"campus_acres":2000,"utility_provider":"SMECO (Southern Maryland Electric Cooperative)","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption program may apply if the project is certified as a qualified data center.","natural_hazard_zone":"Potential FEMA Special Flood Hazard Areas (Zone A) on portions of or adjacent to the site"},"1479":{"description":"Markley One Summer Street is Markley Group’s flagship, operational colocation/carrier‑hotel data center at 1 Summer Street in downtown Boston, notable as New England’s largest multi‑tenant mission‑critical data center with 920,000 sq ft and 30 MW of power.","verified_status":"operational","power_capacity_mw":30,"total_sqft":920000,"year_online":"1998","construction_update":"","recent_news":"","notable_tenants":"Boston Red Sox; Bridgewater State University; Boston Internet Exchange (BOSIX) hosted onsite; DataBank (BOS1) at 1 Summer Street, Suite #704.","verified_name":"Markley One Summer Street","verified_operator":"Markley Group","verified_owner":"Markley Group (owner of the One Summer Street site)","cooling_type":"unknown","tier_level":"2N electrical systems; no public Uptime Institute Tier certification listed","fiber_providers":"Carrier-neutral; examples present at the facility include Akamai Technologies, Amazon.com, and others.","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"Massachusetts 100% sales/use tax exemption for qualified data center purchases (statewide); new applications currently paused pending a revised framework.","natural_hazard_zone":""},"1480":{"description":"A planned data center by MicroLink Data Centers at 21 Athenaeum St in Cambridge, MA is listed by Baxtel. MicroLink promotes a liquid‑cooled, waste‑heat‑recovery design, while the address is presently used by Vicinity Energy’s Cambridge district‑energy facilities.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"2028","construction_update":"As of June 2026, no public permit or construction start for a MicroLink data center at 21 Athenaeum St was found; the address is referenced in a Cambridge BZA utility filing and is listed as Vicinity Energy’s Cambridge location.","recent_news":"","notable_tenants":"","verified_name":"MicroLink: Boston, MA Data Center","verified_operator":"MicroLink Data Centers","verified_owner":"","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"Massachusetts has paused accepting new data center sales tax exemption applications pending stricter guardrails.","natural_hazard_zone":"Precipitation flood exposure noted: projected 2070 100-year precipitation elevation 21.9 CCB at 21 Athenaeum St."},"1481":{"description":"A telecom/colocation facility on the 2nd floor at 56 Roland St, Boston MA 02129, historically operated through RCN Metro/Sidera/Lightower and acquired by Crown Castle in 2017; it remains listed as an active colocation location, while Crown Castle’s Fiber Solutions business closed a sale to Zayo on May 1, 2026.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 1, 2026: Crown Castle closed the sale of its Fiber Solutions business to Zayo; no facility-specific update for 56 Roland St was found.","notable_tenants":"Cogent Communications","verified_name":"Crown Castle Boston","verified_operator":"Crown Castle","verified_owner":"Paradigm Direct Roland, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications","num_buildings":3,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"unknown"},"1482":{"description":"CoreSite BO1 is CoreSite’s operational colocation data center at 70 Inner Belt Road in Somerville (Boston/Cambridge market), notable for dense interconnection and cloud/on‑ramp access via CoreSite’s interconnection ecosystem. It provides scalable, high‑density colocation in one of New England’s most connected addresses.","verified_status":"operational","power_capacity_mw":10.7,"total_sqft":273000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CoreSite BO1 - Boston Data Center","verified_operator":"CoreSite","verified_owner":"American Tower Corporation","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral; examples include Cogent. Cloud on-ramps to AWS Direct Connect, Microsoft Azure ExpressRoute, and CoreSite Open Cloud Exchange.","num_buildings":1,"campus_acres":6.2,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":""},"1483":{"description":"Evocative Boston BOS1 is an operational colocation data center at 50 Inner Belt Road in Somerville, Massachusetts, operated by Evocative. The site originated as an INAP/Internap facility and became part of Evocative via the 2022 acquisition of INAP data-center assets.","verified_status":"operational","power_capacity_mw":6,"total_sqft":46000,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Evocative Boston Data Center (BOS1)","verified_operator":"Evocative","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource Energy","tax_incentives":"Massachusetts’ Qualified Data Center sales/use tax exemption is available to certified facilities; no BOS1‑specific certification was found.","natural_hazard_zone":"Flood: likely FEMA Zone X/B (moderate) context for Somerville; Seismic: low hazard for Massachusetts."},"1484":{"description":"Expedient Boston / Medford is an Expedient-operated colocation/cloud data center at 1 Cabot Road, Medford, MA, offering about 38,000 sq ft of total space in a multi-tenant configuration. The facility has been expanded to add raised-floor capacity and remains part of Expedient’s Boston-area footprint.","verified_status":"operational","power_capacity_mw":3.2,"total_sqft":38000,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Expedient Boston (Medford) Data Center (BOS1)","verified_operator":"Expedient","verified_owner":"Partners Group","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral (36 carriers)","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE"},"1485":{"description":"Equinix BO1 is a colocation data center operated by Equinix at 74 West Street, 1st Floor, Waltham, MA 02451, offering approximately 22,000 sq ft of space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":22000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix BO1 (Boston/Waltham)","verified_operator":"Equinix, Inc.","verified_owner":"King First West Owner LLC c/o King Street Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"Massachusetts’ Qualified Data Center sales/use tax exemption exists, but as of June 2026 the state paused accepting applications pending new guardrails.","natural_hazard_zone":"Outside FEMA Special Flood Hazard Area (low flood insurance requirement indicated)."},"1486":{"description":"FirstLight Fiber operates the FirstLight (formerly ColoSpace) Waltham colocation data center at 265 Winter Street in Waltham, Massachusetts. Listings indicate a reported 3.0 MW capacity, and industry reports note a 16,000 sq ft data center that was originally built in 2001 and reopened after upgrades in 2008.","verified_status":"operational","power_capacity_mw":3,"total_sqft":16000,"year_online":"2001 (original build by Giant Loops); reopened 2008","construction_update":"","recent_news":"Jan 15, 2026: Local coverage reported the 245–265 Winter St. “Alexan Winter Street” residential redevelopment received Waltham ZBA approval to draft a Chapter 40B comprehensive permit; no FirstLight data center operational change at 265 Winter St. was reported.","notable_tenants":"","verified_name":"FirstLight Waltham Data Center","verified_operator":"FirstLight Fiber","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III-equivalent claimed by one directory; another lists Tier 2 Equivalent; no Uptime certification cited","fiber_providers":"carrier-neutral; cross connects to 20+ regional carriers and fiber networks","num_buildings":1,"campus_acres":10.18,"utility_provider":"Eversource","tax_incentives":"Massachusetts Qualified Data Center Sales and Use Tax Exemption exists, but new applications/acceptance have been halted pending stricter guardrails; no site-specific award found.","natural_hazard_zone":"FEMA Zone X"},"1487":{"description":"Cogent Communications operates a telecom/colocation data center presence in Waltham, MA, with a listed site at 300 5th Avenue and marketed Waltham Office & Data Center services. Third‑party listings indicate a compact facility footprint and power profile suitable for carrier-grade colocation.","verified_status":"operational","power_capacity_mw":0.6,"total_sqft":8362,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Boston","verified_operator":"Cogent Communications","verified_owner":"NWALP PHOP PROPERTY OWNER LLC, c/o Northwood Investors LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications (on-net)","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource Energy","tax_incentives":"","natural_hazard_zone":"Moderate flood risk (citywide); parcel-specific FEMA zone not determined"},"1488":{"description":"Centersquare Boston BOS1-A is an operational carrier-neutral colocation data center in the Boston/Waltham market operated by Centersquare, the unified brand created in 2024 from the Evoque–Cyxtera combination. It sits within Centersquare’s BOS1 market footprint offering enterprise colocation with 100% power/network SLAs.","verified_status":"operational","power_capacity_mw":2.4,"total_sqft":64568,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare Boston BOS1-A","verified_operator":"Csquare","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III equivalent","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource Energy","tax_incentives":"Massachusetts’ data center sales/use tax exemption exists in statute but is paused pending a new framework; EOED indicates it is evaluating regulations and not currently accepting applications.","natural_hazard_zone":"Outside the 100-year floodplain (campus-level); low flood risk"},"1489":{"description":"Centersquare BOS1-B is an operational carrier-neutral colocation data center at 115 2nd Avenue in Waltham, MA, part of the operator’s Boston campus. Public listings indicate about 3.75 MW of UPS power and roughly 66,730 sq ft of gross area.","verified_status":"operational","power_capacity_mw":3.75,"total_sqft":66730,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare Boston BOS1-B","verified_operator":"Csquare","verified_owner":"Mapletree Industrial Trust","cooling_type":"chilled water","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":2.93,"utility_provider":"Eversource Energy","tax_incentives":"Massachusetts Qualified Data Center Sales and Use Tax Exemption (active program; acceptance of new applications paused pending stronger framework in 2026).","natural_hazard_zone":"Outside 100-year and 500-year flood zones"},"1490":{"description":"Centersquare Watertown (BOS4/BO1) is an operational, carrier-neutral colocation data center at 486 Arsenal Way/Street in Watertown, Massachusetts, operated by Centersquare, with utility capacity of 19.1 MW and 38,977 sq ft of usable space, and a total facility size reported as 201,590 sq ft.","verified_status":"operational","power_capacity_mw":19.1,"total_sqft":201590,"year_online":"2002","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare Watertown (BOS4-A / BO1)","verified_operator":"Centersquare (Csquare)","verified_owner":"Brookfield Infrastructure Partners and institutional partners (via the former Evoque/Cyxtera assets now branded as Centersquare)","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; Cogent Communications (on-net)","num_buildings":0,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"Massachusetts Qualified Data Center Sales and Use Tax Exemption (available to certified facilities under 400 CMR 9.00); no site-specific certification identified.","natural_hazard_zone":""},"1491":{"description":"Equinix BO2 is an operational IBX colocation data center at 41 Alexander Road in Billerica, Massachusetts, serving enterprise, technology, and biotech deployments in the Boston metro. The building totals about 108,336 sq ft.","verified_status":"operational","power_capacity_mw":9.25,"total_sqft":108336,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Boston BO2","verified_operator":"Equinix","verified_owner":"Equinix","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":16.67,"utility_provider":"National Grid","tax_incentives":"","natural_hazard_zone":""},"1492":{"description":"EdgeConneX BOS01 (EDCBOS01) is an operational EdgeConneX Edge Data Center at 22 Linnell Circle in Billerica serving the Boston metro as a carrier‑neutral colocation facility.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":54700,"year_online":"2015","construction_update":"Mar 2026: Operator data sheet shows current 1.5 MW with plan to 4.5 MW; no active BOS01 construction milestone publicly announced in the last six months.","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX Boston (BOS01 / EDCBOS01)","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1493":{"description":"Operational wholesale/colocation data center at 55 Middlesex Turnpike in Bedford, MA, operated by Camber Development; listings describe a 10 MW, 106,000 sq ft facility, acquired from Digital Realty (BOS13) in September 2025.","verified_status":"operational","power_capacity_mw":10,"total_sqft":106000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"55 Middlesex Turnpike Data Center (Camber Development)","verified_operator":"Camber Development","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"XO Communications, Crown Castle, RCN","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"Massachusetts’ data center sales/use tax exemption program is paused as of June 2026; no facility-specific incentive identified.","natural_hazard_zone":""},"1494":{"description":"Prov.net Boston North (CHF1) is an operational colocation facility at 187 Billerica Road in Chelmsford (Greater Boston), operated by Prov.net/IronTrust Networks and branded under Alpha3 Cloud.","verified_status":"operational","power_capacity_mw":1,"total_sqft":8000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Prov.net Boston North","verified_operator":"Provdotnet, LLC (dba Prov.net / IronTrust Networks / Alpha3 Cloud)","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"IronTrust Networks, ProvDotNet, Verizon Fiber","num_buildings":1,"campus_acres":5.12,"utility_provider":"National Grid","tax_incentives":"Massachusetts statewide data center sales and use tax exemption (effective Jan 2025) currently paused for new applications as of June 2026.","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard, between 100-year and 500-year flood limits)"},"1495":{"description":"Markley Lowell is a Markley Group-operated colocation data center at 1 Markley Way in Lowell, Massachusetts, totaling about 352,000 sq ft and linked to Markley’s Boston facility via lit and dark fiber routes.","verified_status":"operational","power_capacity_mw":50,"total_sqft":352000,"year_online":"2016","construction_update":"Expansion permitting covers 27 diesel standby generators and 16 1,000‑ton cooling towers; on Apr. 30, 2026 a lawsuit was filed challenging the MassDEP approvals, and a March 2026 citywide moratorium pauses new data center construction/expansion.","recent_news":"Lowell imposed a one‑year moratorium on data center construction/expansion in March 2026, and on Apr. 30, 2026 residents (represented by advocacy groups) filed suit challenging MassDEP approvals for Markley’s expansion air permit covering 27 diesel generators and 16 cooling towers.","notable_tenants":"","verified_name":"Markley Lowell","verified_operator":"Markley Group","verified_owner":"Markley Group LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":14,"utility_provider":"National Grid (Massachusetts Electric Company d/b/a National Grid)","tax_incentives":"Local personal property tax exemption (Lowell) and statewide Qualified Data Center sales/use tax exemption (Massachusetts; new applications paused as of June 2026).","natural_hazard_zone":""},"1496":{"description":"Planned Markley Group–affiliated data center site at 2 Tanner Street in Lowell, MA, pursued via Tanner Street Investco, LLC and tied to an April 2026 acquisition by Jeffrey Markley; the property spans 112,385 sq ft and includes the retired Tanner Street Generating Station, with no verified data‑center power figure published.","verified_status":"planned","power_capacity_mw":0,"total_sqft":112385,"year_online":"unknown","construction_update":"Preliminary subdivision for 2 Tanner Street was on the Planning Board’s April 6, 2026 agenda (reported approved); no site-plan approval, building permit, or construction start found, and the city’s 360‑day data‑center moratorium (adopted March 10, 2026) constrains new development.","recent_news":"April 2026: Preliminary subdivision for 2 Tanner Street advanced at the Planning Board (reported approved April 6, 2026); March 2026: Lowell adopted a 360‑day moratorium on new data‑center construction and development, impacting this project.","notable_tenants":"","verified_name":"Markley: 2 Tanner Street","verified_operator":"Markley Group LLC","verified_owner":"Tanner Street Investco LLC (sole member: Tanner Street Holdco LLC; Jeffrey D. Markley, Sole Member)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; three diverse dark-fiber routes to Markley’s One Summer Street (Boston) carrier hotel with access to 100+ network providers; supports AWS Direct Connect and Azure connectivity","num_buildings":0,"campus_acres":2.58,"utility_provider":"National Grid","tax_incentives":"Massachusetts Qualified Data Center Sales and Use Tax Exemption exists, but the state paused accepting new applications on June 26, 2026.","natural_hazard_zone":"Moderate flood hazard (FEMA Zone X/B) indicated for the 2 Tanner Street area"},"1497":{"description":"Markley 90 Bolt Street is a planned Markley Group–affiliated site at 90 Bolt St. in Lowell, MA; the industrial parcel was acquired in early 2026 and is currently moving through subdivision/planning review rather than operating as a data center.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Preliminary subdivision approval reported in April 2026; a definitive subdivision application for 90 Bolt Street was submitted on May 12, 2026, and the project is listed for a Planning Board meeting review.","recent_news":"Lowell enacted a one-year moratorium on new/expanded data centers in March 2026; residents filed a lawsuit on April 30, 2026 challenging a Lowell data center expansion; and for 90 Bolt Street specifically, a definitive subdivision application was filed May 12, 2026 following preliminary approval in April 2026.","notable_tenants":"","verified_name":"Markley: 90 Bolt Street","verified_operator":"Markley Group","verified_owner":"Meadowbolt LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; three diverse dark fiber networks to Markley Boston with access to 100+ providers; Markley lit/dark at 1/10/40/100 Gb","num_buildings":0,"campus_acres":3.21,"utility_provider":"National Grid","tax_incentives":"2015 Lowell TIF for the Markley Prince/Lowell campus included elimination of personal property taxes; up to 80% real estate tax relief was also reported for the agreement. No 90 Bolt–specific incentive found.","natural_hazard_zone":""},"1498":{"description":"FirstLight Rockland Data Center is an operational colocation facility operated by FirstLight Fiber at 1050 Hingham St, Rockland, Massachusetts, offering N+1 power with generator/dual UPS and high‑density deployments up to 150 watts per square foot in approximately 3,260 square feet. The site originated as a ColoSpace facility and was subsequently acquired by FirstLight.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3260,"year_online":"by 2006","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"FirstLight Rockland Data Center","verified_operator":"FirstLight Fiber","verified_owner":"PERRY 1050 HINGHAM STREET LLC (c/o A.W. Perry)","cooling_type":"unknown","tier_level":"Tier 2 standard","fiber_providers":"carrier-neutral; FirstLight fiber network; access to multiple carriers","num_buildings":1,"campus_acres":4.25214,"utility_provider":"National Grid","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard)"},"1499":{"description":"Digital Realty BOS14 is an operational three‑story colocation data center at 128 First Avenue in Needham, MA, owned and operated by Digital Realty, notable for roughly 280,000 sq ft of leasable space and robust utility capacity.","verified_status":"operational","power_capacity_mw":30,"total_sqft":314000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"BOS14 Data Center (128 First Avenue)","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; reported providers include Crown Castle, Lightpath, and Zayo","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":""},"1500":{"description":"Iron Mountain BOS-1 is Iron Mountain’s colocation data center at 171 Bearfoot Rd in Northborough, MA, offering about 22,000 sq ft and 3.6 MW on a LEED Gold, 58-acre campus with 100% renewable energy matching.","verified_status":"operational","power_capacity_mw":3.6,"total_sqft":22000,"year_online":"2014","construction_update":"","recent_news":"April 2026: Northborough advanced data-center zoning controls—requiring special permits and capping new facilities at a maximum projected electrical demand of 5 MW—affecting data-center development in the town where BOS-1 operates.","notable_tenants":"","verified_name":"Iron Mountain Boston Data Center (BOS-1)","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Data Centers LLC (subsidiary of Iron Mountain Incorporated)","cooling_type":"chilled water","tier_level":"Tier III (design standard; not cited as certified)","fiber_providers":"Carrier-neutral","num_buildings":1,"campus_acres":58,"utility_provider":"National Grid","tax_incentives":"","natural_hazard_zone":"Rated to withstand Category 4 hurricane winds; no FEMA flood-zone designation identified"},"1501":{"description":"TierPoint Boston–Andover is an operational TierPoint colocation data center at 15 Shattuck Road, Andover, MA, built to a Tier III standard and hosting a TierPoint multitenant cloud pod.","verified_status":"operational","power_capacity_mw":5,"total_sqft":92700,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Boston - Andover Data Center","verified_operator":"TierPoint","verified_owner":"Menlo Equities / Menlo Digital","cooling_type":"unknown","tier_level":"Tier III / Tier 3 equivalent design standard; no Uptime Institute certification cited","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X; outside 100-year floodplain; facility marketing notes outside severe weather/seismic zones and rated for hurricane-force winds"},"1502":{"description":"NaviSite Andover is an operational colocation data center at 400 Minuteman Road in Andover, Massachusetts, operated by Navisite (now part of Accenture). It occupies a two‑storey facility of about 153,000 sq ft that was built in 2000.","verified_status":"operational","power_capacity_mw":6,"total_sqft":153000,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"Navisite (operator/tenant). No other publicly named anchor tenants found.","verified_name":"Navisite Andover Data Center","verified_operator":"Navisite","verified_owner":"Mapletree Industrial Trust","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":22.77,"utility_provider":"National Grid","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE"},"1503":{"description":"TierPoint Boston–Marlborough is an operational colocation and hybrid IT data center at 34 St. Martin Drive in Marlborough, MA, operated by TierPoint within a 206,340‑SF data center property owned by Menlo Equities (Menlo Digital).","verified_status":"operational","power_capacity_mw":14,"total_sqft":115000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Boston - Marlborough","verified_operator":"TierPoint","verified_owner":"Menlo Equities","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":14.59,"utility_provider":"National Grid","tax_incentives":"Massachusetts Qualified Data Center Sales & Use Tax Exemption halted by Governor Healey in June 2026; no facility-specific incentive publicly documented.","natural_hazard_zone":"Low flood exposure (citywide minor flood risk; likely FEMA Zone X); low seismic; moderate hurricane/tropical storm exposure regionally."},"1504":{"description":"365 Data Centers’ Marlborough facility at 250 Locke Drive is an operational colocation and network site operated by 365 Data Centers in Marlborough, Massachusetts. The site traces back to assets acquired from Sungard Availability Services in 2022.","verified_status":"operational","power_capacity_mw":2.8,"total_sqft":64800,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers Marlborough Data Center (MA-250)","verified_operator":"365 Data Centers","verified_owner":"Landmark Infrastructure","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; AT&T; Verizon Communications; Lightower (Crown Castle)","num_buildings":1,"campus_acres":4.83,"utility_provider":"National Grid","tax_incentives":"Massachusetts data center sales/use tax exemption program exists but new applications were paused on June 25, 2026; no site-specific award identified.","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard)"},"1505":{"description":"Synoptek’s Boston/Marlborough facility is a colocation data center at 313 Boston Post Road West in Marlborough, MA, operated by Synoptek. Public listings confirm the site and describe enterprise-grade features such as 99.999% uptime and 24x7 monitoring.","verified_status":"operational","power_capacity_mw":10,"total_sqft":1000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Synoptek - Boston Data Center","verified_operator":"Synoptek","verified_owner":"Post Road Investments LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":5.15,"utility_provider":"National Grid","tax_incentives":"Marlborough Small Business Incentive Program (property tax reimbursement); no Synoptek-specific award identified.","natural_hazard_zone":"FEMA Flood Zone A (1% annual chance of flooding)"},"1506":{"description":"Enterprise data center at 555 Forest St, Marlborough, MA, built for Partners HealthCare (now Mass General Brigham) to support the health system’s IT workloads.","verified_status":"operational","power_capacity_mw":5.2,"total_sqft":130000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Mass General Brigham Data Center","verified_operator":"Mass General Brigham","verified_owner":"Partners HealthCare System, Inc. (Mass General Brigham)","cooling_type":"unknown","tier_level":"Tier III+ (design standard, not formally Uptime-certified)","fiber_providers":"","num_buildings":1,"campus_acres":22.5,"utility_provider":"National Grid","tax_incentives":"","natural_hazard_zone":"Outside 100- and 500-year floodplains (FEMA Zone X); Seismic Zone 2A"},"1507":{"description":"Telecom colocation/interconnection facility at 474 Main St, Worcester, MA, historically under Lightower and listed under Crown Castle, and still shown as operational in public directories; on May 1, 2026 Zayo completed acquisition of Crown Castle’s Fiber Solutions business, though facility listings may not yet reflect any branding changes.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 1, 2026: Zayo completed the acquisition of Crown Castle’s Fiber Solutions business; Crown Castle confirmed receipt of sale proceeds the same day. No Worcester-site-specific construction or tenant updates were found in the last six months.","notable_tenants":"","verified_name":"Crown Castle Worcester (MA3), also listed as Crown Castle Worcester (474 Main)","verified_operator":"Crown Castle Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications","num_buildings":1,"campus_acres":0,"utility_provider":"National Grid","tax_incentives":"","natural_hazard_zone":"unknown"},"1508":{"description":"Cogent Communications’ Worcester Data Center is an operational colocation/telecom facility at 52 LaGrange St, Worcester, MA offering Internet, VPN, Transport, and Colocation services, with 8,250 sq ft of space and standard 42U cabinets.","verified_status":"operational","power_capacity_mw":0.6,"total_sqft":8250,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Worcester Data Center","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent","num_buildings":0,"campus_acres":0,"utility_provider":"National Grid / Massachusetts Electric Company","tax_incentives":"","natural_hazard_zone":"address-specific FEMA flood zone not determinable; Worcester has mapped SFHAs/citywide flood-risk resources"},"1509":{"description":"Telecom/colocation data center operated by Cogent Communications at 400 Taylor Street in Springfield, MA, offering Internet, VPN, Transport, and Colocation services; the 2025 wholesale spec lists 31,473 sq ft and 5.00 MW total power.","verified_status":"operational","power_capacity_mw":5,"total_sqft":31473,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Springfield Data Center","verified_operator":"Cogent Communications","verified_owner":"U S Sprint Communications Company Limited Partnership","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":1.904,"utility_provider":"Eversource","tax_incentives":"No facility-specific incentive found. Massachusetts’ Qualified Data Center sales/use tax exemption applications are paused pending regulatory updates.","natural_hazard_zone":"FEMA Flood Zone B and X - moderate flood hazard, generally between the 100-year and 500-year flood limits"},"1510":{"description":"Crown Castle Springfield (MA1) is an operational Crown Castle colocation facility at 1 Federal St in Springfield, Massachusetts.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":4235,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No enterprise anchor tenant is publicly identified. In-building ISPs at 1 Federal St include Cogent and Comcast.","verified_name":"Crown Castle Springfield (MA1)","verified_operator":"Zayo Group (formerly Crown Castle Fiber/Lightower at this site)","verified_owner":"Springfield Technical Community College Assistance Corporation (STCCAC)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; on-net: Crown Castle/Zayo","num_buildings":1,"campus_acres":15.3,"utility_provider":"Eversource Energy (formerly WMECo in this area)","tax_incentives":"None identified specific to this facility; statewide data center incentive halted pending guardrails.","natural_hazard_zone":"Flood risk present (parcel FEMA NFHL zone not confirmed here)"},"1511":{"description":"Operational colocation data center operated by Congruity360 at 456 Bedford Street in Fall River, MA, housed in the former Granite Block mill; the facility totals about 199,902 sq ft and features five ~20,000-sq-ft data halls.","verified_status":"operational","power_capacity_mw":4,"total_sqft":199902,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Congruity360 Data Center","verified_operator":"Congruity360","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Four fiber-optic lines from three different internet service providers (carrier names not disclosed)","num_buildings":1,"campus_acres":3.3,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (moderate flood hazard; between 100-year and 500-year limits)"},"1512":{"description":"MegaNet Massachusetts Datacenter is an operational colocation facility operated by MegaNet Communications in Fall River, Massachusetts. MegaNet offers data center colocation services, and current listings and the company’s mailing‑address update indicate 187 Plymouth Ave rather than the older 315 Pleasant St address.","verified_status":"operational","power_capacity_mw":10,"total_sqft":50000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"MegaNet Massachusetts Datacenter","verified_operator":"MegaNet Communications","verified_owner":"Durfee Union Mills, S & S Limited, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"National Grid","tax_incentives":"","natural_hazard_zone":"Coastal flood exposure near Mount Hope Bay; FEMA flood zone undetermined; low-to-moderate seismic risk."},"1513":{"description":"Fitchburg Fiber 166 Boulder is a small carrier-neutral colocation/data center at 166 Boulder Drive in Fitchburg, MA, operated by local ISP Fitchburg Fiber. It offers rack colocation, cross-connects, remote hands, and local connectivity and is listed as an operational site.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":1200,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"No anchor data-center customer is publicly disclosed. Carrier/network presence listed includes Comcast, Crown Castle, and Cogent Communications.","verified_name":"Fitchburg Fiber 166 Boulder","verified_operator":"Fitchburg Fiber","verified_owner":"Fitchburg Redevelopment Authority (FRA)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; Crown Castle, Cogent, Windstream, Verizon, Comcast","num_buildings":1,"campus_acres":10.17,"utility_provider":"Unitil (Fitchburg Gas and Electric Light Company)","tax_incentives":"Fitchburg includes federally designated Opportunity Zones. Massachusetts’ Qualified Data Center Sales and Use Tax Exemption (enacted 2024) is currently halted pending updated regulations/framework. No facility-specific abatement identified.","natural_hazard_zone":"FEMA Flood Zone X (area of moderate flood hazard between the 100- and 500-year flood limits)"},"1514":{"description":"The Massachusetts Green High Performance Computing Center (MGHPCC) is a nonprofit, energy‑efficient, LEED Platinum research‑computing data center in Holyoke, Massachusetts, operated by a six‑university consortium. The 90,000‑sq‑ft facility provides state‑of‑the‑art infrastructure for computationally intensive research and is served by a 15‑MW utility feed.","verified_status":"operational","power_capacity_mw":15,"total_sqft":90000,"year_online":"2012","construction_update":"Dec 12–17, 2025: Massachusetts AI Hub’s AICR selection for MGHPCC named Cambridge Computer, Dell Technologies, and VAST Data; MGHPCC announced the hardware providers on Dec 17, 2025.","recent_news":"MGHPCC held its annual planned power shutdown June 15–22, 2026.","notable_tenants":"Boston University; Harvard University; Massachusetts Institute of Technology (MIT); Northeastern University; University of Massachusetts system; Yale University","verified_name":"Massachusetts Green High Performance Computing Center (MGHPCC)","verified_operator":"Massachusetts Green High Performance Computing Center, Inc.","verified_owner":"Massachusetts Green High Performance Computing Center, Inc.","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; dark fiber available","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"New Markets Tax Credit allocations (e.g., $14.5M MassDevelopment; Building America CDE among entities totaling $34.9M); $4.54M Massachusetts Life Sciences Center grant.","natural_hazard_zone":"FEMA parcel-specific flood zone not determined; city-level analysis notes pluvial flooding exposure."},"1515":{"description":"Westfield Data Center Campus is a proposed hyperscale data center development by Servistar Realties, LLC at 199 Servistar Industrial Way in Westfield, MA, planned as 10 buildings totaling about 2.7 million sq ft and positioned as a multibillion‑dollar project.","verified_status":"planned","power_capacity_mw":0,"total_sqft":2700000,"year_online":"unknown","construction_update":"June 15, 2026: City of Westfield reported receipt of a technical fact sheet (water, energy, cooling, and electrical-service plans) for the proposed campus and began mayoral/administrative review; no verified building construction start announced.","recent_news":"June 2026: The Mayor of Westfield began reviewing updated technical information for the proposed Servistar campus as project backers sought more time and further city review.","notable_tenants":"","verified_name":"Westfield Data Center Campus","verified_operator":"Servistar Realties, LLC","verified_owner":"Servistar Realties, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":10,"campus_acres":35.15,"utility_provider":"Eversource","tax_incentives":"MGL Chapter 121A/PILOT structure (reported ~$360M over 40 years) and state-level data center tax breaks/sales-and-use tax relief enabling the project.","natural_hazard_zone":""},"1516":{"description":"300 Bent Street is a Lumen-operated colocation/data center in Cambridge’s Kendall Square, with approximately 40,000 sq ft and 8,760 sq ft of raised floor. Lightpath lists 300 Bent Street as an on‑net data center location within Lumen’s Cambridge 1 facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":40000,"year_online":"unknown","construction_update":"","recent_news":"May 15, 2026: A LoopNet/CoStar listing advertises approximately 8,500 SF available for lease at 300 Bent Street.","notable_tenants":"Lumen (Level 3) and Lightpath (on-net).","verified_name":"Lumen Cambridge 1 Data Center (300 Bent Street)","verified_operator":"Lumen Technologies","verified_owner":"CEM Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen/Level 3, Lightpath, Cogent","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"Massachusetts qualified data center sales/use tax exemption program exists statewide; no site-specific approval found.","natural_hazard_zone":"Seismic Zone 2A"},"1517":{"description":"Verizon operates the Verizon Boston #2 data center at 89 Fulkerson St in Cambridge, a telecom/colocation facility publicly listed as active and totaling about 30,400 sq ft. Public listings also reference first- and second-floor colocation suites at this address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":30400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Boston #2","verified_operator":"Verizon Communications Inc.","verified_owner":"Laverty Lohnes Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon/XO","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"Outside 100- and 500-year floodplains (low risk)"},"1518":{"description":"123NET’s Detroit Data Center (DC1) at 24700 Northwestern Hwy in Southfield, MI, is an operational, carrier‑neutral colocation hub that serves as 123NET’s headquarters and hosts the Detroit Internet Exchange (DET‑iX). It provides about 80,000 sq ft of colocation space within a seven‑story, 136,000‑sq‑ft building and up to 20 MW via a dedicated substation.","verified_status":"operational","power_capacity_mw":20,"total_sqft":136000,"year_online":"2015","construction_update":"Sep 24, 2025: 123NET announced completion of a major DC1 expansion adding 4 MW of power and advanced/high‑density colocation infrastructure; reported by DCD on Sep 26, 2025.","recent_news":"Feb 10, 2026: Crain’s Detroit Business toured 123NET’s Southfield DC1; the post calls the seven‑story, 136,000‑sq‑ft site “Southeast Michigan’s digital backbone.”","notable_tenants":"","verified_name":"123NET Detroit Data Center (DC1)","verified_operator":"123NET","verified_owner":"","cooling_type":"hybrid","tier_level":"Tier III-equivalent","fiber_providers":"carrier-neutral; on-site Detroit Internet Exchange (DET-iX)","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (statewide 6% sales/use tax exemption for eligible data center construction and equipment purchases); 2017 123.Net New Personal Property Exemption application dismissed.","natural_hazard_zone":"FEMA Flood Zone X (Southfield)"},"1519":{"description":"123NET Southfield Data Center NW (DC2) is an operational colocation facility operated by 123NET at 24275 Northwestern Hwy, Southfield, Michigan, offering about 8,000 sq ft of space with approximately 1.00 MW of capacity.","verified_status":"operational","power_capacity_mw":1,"total_sqft":8000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"123NET Southfield Data Center NW (DC2)","verified_operator":"123NET","verified_owner":"123NET","cooling_type":"unknown","tier_level":"Tier II equivalent (not Uptime-certified)","fiber_providers":"carrier-neutral; IX presence (DET-IX count shown in directory)","num_buildings":1,"campus_acres":0,"utility_provider":"DTE Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (statewide program); no DC2-specific award found.","natural_hazard_zone":"low risk (inland Michigan; low multi-hazard profile and very low seismic risk for Oakland County)"},"1520":{"description":"123NET Southfield Data Center W (DC3) is an operational 123NET colocation facility at 24245 Northwestern Hwy in Southfield, Michigan; it is identified by the operator as one of the company’s original Southfield data centers [1] and offers about 8,000 sq ft of colocation space with approximately 1.5 MW of power [2].","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"123NET Southfield Data Center W (DC3)","verified_operator":"123NET","verified_owner":"123Net","cooling_type":"hybrid","tier_level":"Tier III-equivalent / marketed Tier 3 design; no public Uptime certification found","fiber_providers":"carrier-neutral; 22+ onsite carriers, including 123NET, AT&T, Lumen (CenturyLink), Cogent, Comcast, Crown Castle, Everstream, ManagedWay, Merit, Arelion (TeliaSonera), US Signal, Windstream, WOW!, Verizon; Detroit Internet Exchange (DET-iX) access","num_buildings":1,"campus_acres":0.86,"utility_provider":"DTE Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption may apply to qualified data centers; no DC3-specific incentive award confirmed.","natural_hazard_zone":"Flood Zone B and X: moderate flood hazard, generally between the 100-year and 500-year flood limits"},"1521":{"description":"365 Data Centers DT1 / Detroit is an operational colocation facility operated by 365 Data Centers at 24660 Lahser Road, Southfield, MI, offering about 12,000 sq ft and carrier-neutral connectivity.","verified_status":"operational","power_capacity_mw":0.6,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers Detroit - DT1","verified_operator":"365 Data Centers","verified_owner":"APWireless","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.33,"utility_provider":"DTE Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption is available statewide; no public evidence that DT1 is certified to receive it.","natural_hazard_zone":"low risk"},"1522":{"description":"EdgeConneX Detroit EDCDET01 is an operational, purpose-built, Tier 3–designed edge colocation data center at 21005 Lahser Road, Building 4, Southfield, Michigan, operated by EdgeConneX; the same address also hosts TelNet Worldwide’s data center. Recent listings put the facility at about 39,900 sq ft with around 3 MW total capacity.","verified_status":"operational","power_capacity_mw":3,"total_sqft":39900,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX DET01 (EDCDET01) Detroit; TelNet Worldwide SFLFMI72W00","verified_operator":"EdgeConneX; TelNet Worldwide","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III designed","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (statewide program)","natural_hazard_zone":"low risk (low seismic hazard in Michigan)"},"1523":{"description":"Verizon Detroit #2 is an operational Verizon Communications colocation/telecom data center at 21555 Melrose Ave (1st floor), Southfield, MI, historically associated with XO Communications. Public listings cite typical densities around 4 kW per rack and 0.16 kW/sq ft with N+1 cooling, while total capacity is undisclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":56100,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Detroit #2","verified_operator":"Verizon Communications Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":1,"campus_acres":0,"utility_provider":"DTE Electric (DTE Energy)","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption is available statewide; no facility-specific participation identified.","natural_hazard_zone":"low risk (city-level minor flood risk; low seismic)"},"1524":{"description":"US Signal Detroit MI04 (Southfield) is an operational US Signal colocation data center at 21648 Melrose Avenue, offering 25 kW of critical IT workload across 1,819 total sq ft (898 sq ft whitespace).","verified_status":"operational","power_capacity_mw":0.025,"total_sqft":1819,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"MI04 Detroit Data Center","verified_operator":"US Signal Company, LLC","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier 2","fiber_providers":"US Signal fiber backbone; multiple on-net carriers (carrier-neutral)","num_buildings":1,"campus_acres":0,"utility_provider":"DTE Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (statewide; eligibility required). Extended through Dec 31, 2050. No facility-specific award found.","natural_hazard_zone":"FEMA Flood Zone X; very low seismic risk"},"1525":{"description":"Lumen Detroit is a Lumen-operated telecom/colocation data center at 19675 West Ten Mile Road in Southfield, Michigan. Industry listings place Lumen as the operator at this address, and a 2022 report noted the property’s sale by Mapletree Industrial Trust to its tenant.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Detroit","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"DTE Energy","tax_incentives":"No facility-specific incentive identified; Michigan Enterprise Data Center sales/use tax exemption and Southfield local incentives exist.","natural_hazard_zone":"Seismic Zone 1; no specific FEMA flood designation identified"},"1526":{"description":"US Signal MI05 (Detroit North) is a colocation data center at 1035 W Entrance Drive in Auburn Hills, Michigan, operated by US Signal. Acquired in August 2024 from a former DXC Technology site, public materials cite a 76,000 sq ft facility with 4 MW of available power.","verified_status":"operational","power_capacity_mw":4,"total_sqft":76000,"year_online":"2024","construction_update":"2025-09-02: US Signal posted that construction was underway at its Detroit Data Center (MI05/M105) in Auburn Hills.","recent_news":"","notable_tenants":"","verified_name":"MI05 Detroit Data Center (US Signal Detroit North Data Center)","verified_operator":"US Signal","verified_owner":"US Signal Company, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; US Signal network on-net; planned 6-mile local fiber loop","num_buildings":0,"campus_acres":0,"utility_provider":"DTE Electric Company","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (eligibility state-level; facility certification not found)","natural_hazard_zone":"FEMA Flood Zone X (moderate flood risk)"},"1527":{"description":"Cogent Communications operates the Cogent Data Center - Troy at 3331 W. Big Beaver Road in Troy, MI, an operational telecom colocation facility offering Internet, VPN, and transport services with 5,624 sq ft of data center space.","verified_status":"operational","power_capacity_mw":0.3,"total_sqft":5624,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Troy Office & Data Center","verified_operator":"Cogent Communications","verified_owner":"Troy Place Equities II, LLC","cooling_type":"unknown","tier_level":"Tier I Equivalent","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"DTE Energy","tax_incentives":"","natural_hazard_zone":""},"1528":{"description":"ManagedWay Data Center #1 (TYM1) is an operational colocation facility operated by ManagedWay at 319 Executive Dr in Troy, Michigan; it is listed by ManagedWay as a Tier III+ Troy data center and by Datacenters.com at roughly 20,000 sq ft with A+B power and fiber landings.","verified_status":"operational","power_capacity_mw":1,"total_sqft":20000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ManagedWay Detroit Data Center TYM1","verified_operator":"ManagedWay Company","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III+ equivalent (not Uptime certified)","fiber_providers":"ManagedWay private fiber (AS53292); cross-connects available","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"No facility-specific incentive found; Michigan’s Enterprise Data Center Sales & Use Tax Exemption exists for eligible projects.","natural_hazard_zone":""},"1529":{"description":"ManagedWay Data Center #2 (TYM2) is an operational colocation facility operated by ManagedWay at 600 Executive Dr, Troy, Michigan, offering Tier III+-style infrastructure and SOC 2/PCI-supporting controls across its Troy sites. Third-party listings show TYM2 at 50,000 sq ft with 25,000 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":4,"total_sqft":50000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ManagedWay Detroit Data Center TYM2 (ManagedWay Data Center #2), 600 Executive Dr, Troy, MI","verified_operator":"ManagedWay","verified_owner":"ManagedWay Company","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; ManagedWay (AS53292)","num_buildings":1,"campus_acres":2.72,"utility_provider":"DTE Electric (DTE Energy)","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (statewide; applies if eligibility criteria are met).","natural_hazard_zone":"low flood risk (no FEMA Special Flood Hazard Area indicated in public mapping tools)"},"1530":{"description":"Liberty Center One is an operational, carrier-neutral colocation data center operated by Liberty Center One at 4815 Delemere Ave, Royal Oak, Michigan. Third-party directories list a 21,000 sq ft total facility footprint.","verified_status":"operational","power_capacity_mw":0,"total_sqft":21000,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Liberty Center One","verified_operator":"Liberty Center One","verified_owner":"Liberty Center One","cooling_type":"air-cooled","tier_level":"Tier III (meets or exceeds Tier III design standards; not Uptime Institute certified)","fiber_providers":"Carrier-neutral; AT&T, US Signal, Comcast, Everstream (formerly Comlink), Level 3/CenturyLink, XO Communications/Verizon, Cogent, 123.net, Crown Castle, WOW, Sprint","num_buildings":1,"campus_acres":1.59,"utility_provider":"DTE Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"1531":{"description":"IronGate Detroit “The Bunker” is IronGate Data Centers’ Detroit‑market colocation/AI facility at 28201 Van Dyke Ave in Warren, Michigan, marketed around a 45 MW on‑site utility/substation capacity with modular, contract‑driven builds. Listings indicate it opens roughly six months from contract rather than being fully live.","verified_status":"planned","power_capacity_mw":45,"total_sqft":1150792,"year_online":"unknown","construction_update":"As of June 2026, marketplaces describe contract‑driven deployment: opening approximately six months after contract, with modular buildout and potential expansion up to 65 MW.","recent_news":"","notable_tenants":"","verified_name":"IronGate: Detroit, The Bunker","verified_operator":"IronGate Data Centers","verified_owner":"","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":53.17,"utility_provider":"DTE Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption — eliminates 6% sales and use tax on eligible data center construction and equipment purchases; extended through December 31, 2050 for qualified data centers.","natural_hazard_zone":"FEMA Flood Zone X (area of moderate flood hazard)"},"1532":{"description":"Lumen Detroit 3 is a Lumen (Level 3) telecom colocation/data center at 1965 Porter Street in Detroit, listed by industry directories and shown within Lumen’s Detroit colocation market; profiles cite an approximately 12,757 sq ft footprint.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12757,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Detroit 3 (also known as Level 3 Detroit 3; same address is labeled as Lumen Detroit 2 in some directories)","verified_operator":"Lumen Technologies (Lumen)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; diverse fiber connectivity","num_buildings":0,"campus_acres":2.45,"utility_provider":"DTE Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption is available statewide; no facility-specific incentive identified.","natural_hazard_zone":""},"1533":{"description":"Cogent Communications operates an on-net telecom/colocation data center at 1320 3rd St, Detroit, MI, offering 31,149 sq ft with 42U cabinets, backup generator, HVAC/fire systems, and 24/7 access. Multiple directories list the site as a Detroit colocation facility.","verified_status":"operational","power_capacity_mw":4.5,"total_sqft":31149,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Detroit","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; Cogent, Zayo, AT&T; dark fiber/additional carriers available","num_buildings":0,"campus_acres":0.99,"utility_provider":"DTE Energy","tax_incentives":"","natural_hazard_zone":"Urban/stormwater flooding risk; address-specific FEMA flood-zone designation not found"},"1534":{"description":"Telecom/colocation site at 1545 Clay Street in Detroit listed by Bell Canada and iTel Networks; directories show services at this address, but detailed technical specifications are limited.","verified_status":"operational","power_capacity_mw":0,"total_sqft":65659,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Bell Canada 1545 Clay St / Detroit Clay St Data Center","verified_operator":"Bell Canada (BCE Nexxia); iTel Networks is also listed at the address","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"BCE Nexxia (Bell Canada); iTel Networks","num_buildings":1,"campus_acres":4.1,"utility_provider":"DTE Electric / DTE Energy","tax_incentives":"","natural_hazard_zone":"FEMA flood zone undetermined; Detroit references FIRMs and participates in NFIP/CRS; low hurricane and seismic exposure relative to coastal/high-seismic regions."},"1535":{"description":"Raeden Detroit at 615 West Lafayette Blvd is a carrier-hotel and colocation facility inside Bedrock’s 615 W Lafayette property, operated by Raeden, offering multi-tenant colocation, a dedicated suite, and robust network connectivity.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":6000,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Raeden Detroit 1 (aka Raeden Michigan 1) – 615 West Lafayette Blvd","verified_operator":"Raeden","verified_owner":"Bedrock","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 15+ on-net carriers","num_buildings":1,"campus_acres":0,"utility_provider":"DTE Electric","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption is available statewide; no facility-specific abatement verified.","natural_hazard_zone":""},"1536":{"description":"Raeden Detroit 2 at One Campus Martius (1050 Woodward Ave) is an operational Raeden-managed enterprise colocation facility offering 10,000 sq ft with scalable power up to 3 MW in downtown Detroit.","verified_status":"operational","power_capacity_mw":3,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Raeden Detroit 2 at 1050 Woodward Avenue (One Campus Martius)","verified_operator":"Raeden","verified_owner":"Bedrock Detroit and Meridian Health joint venture","cooling_type":"air-cooled","tier_level":"Tier III-rated (building data center); no current Uptime certification found","fiber_providers":"carrier-neutral; 15+ on-net providers; 1,500 sq ft meet-me room; four diverse conduit pathways; three riser systems; DIA and rooftop wireless available","num_buildings":1,"campus_acres":0,"utility_provider":"DTE Energy","tax_incentives":"Undisclosed incentives for One Campus Martius addition subject to FOIA litigation; no data-center-specific incentive terms determinable.","natural_hazard_zone":"low risk (low seismic risk; non-coastal hurricane exposure)"},"1537":{"description":"US Signal MI03 Detroit is an operational colocation data center operated by US Signal at 9275 Haggerty Road in Belleville (Detroit Metro), offering about 25,000 sq ft of space and 1.5 MW of live power.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":25000,"year_online":"unknown","construction_update":"Jun 8–10, 2025: US Signal announced plans to add 3 MW of commercial power at the MI03/Detroit Metro facility as part of a broader expansion; listings show 1.5 MW live, 3 MW planned, and 4.5 MW full build‑out.","recent_news":"","notable_tenants":"","verified_name":"MI03 Detroit Data Center","verified_operator":"US Signal Company, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":8.39,"utility_provider":"DTE Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (statewide 6% sales/use tax exemption on eligible data center construction and equipment), extended through 2050.","natural_hazard_zone":""},"1538":{"description":"Otava Metro Detroit is an operational colocation data center operated by Otava at 6435 North Hix Road in Westland, Michigan. The facility totals 34,500 sq ft with 18,000 sq ft of raised floor and has been online since 2014.","verified_status":"operational","power_capacity_mw":1.2,"total_sqft":34500,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Otava Metro Detroit Data Center (Otava MD1)","verified_operator":"Otava","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"DTE Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption: 6% sales/use-tax exemption for eligible data center construction and equipment purchases (statewide program).","natural_hazard_zone":""},"1539":{"description":"Liquid Web Lansing DC1 is an operational, Liquid Web–owned colocation and managed hosting facility at 4210 S. Creyts Rd., Lansing, Michigan, staffed 24/7/365.","verified_status":"operational","power_capacity_mw":0,"total_sqft":11000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Liquid Web Lansing DC1 (Data Center One)","verified_operator":"Liquid Web","verified_owner":"Hillcorp Properties, LLC","cooling_type":"unknown","tier_level":"Tier IV-equivalent (marketing; no Uptime certificate located)","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Lean & Green Michigan / Eaton County PACE financing used for energy-efficiency upgrades; no separate abatement/credit identified.","natural_hazard_zone":"unknown"},"1540":{"description":"Liquid Web Lansing DC2 is a 32,000 sq ft colocation/managed hosting data center at 4428 S Creyts Rd in Lansing, Michigan, operated by Liquid Web; it opened in 2006 and was built to host around 8,000 servers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":32000,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Liquid Web Lansing DC2","verified_operator":"Liquid Web","verified_owner":"Liquid Web LLC","cooling_type":"unknown","tier_level":"Tier IV (design/infrastructure claim; not Uptime-certified)","fiber_providers":"carrier-neutral; multiple fiber providers including dark fiber and connectivity to four Tier-1 providers","num_buildings":1,"campus_acres":1.81,"utility_provider":"","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (statewide program); no DC2-specific abatement identified.","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard, between 100-year and 500-year limits)"},"1541":{"description":"Liquid Web Lansing DC3 is an operational Liquid Web–operated colocation and managed-hosting data center at 2703 Ena Dr, Lansing, Michigan; it opened in 2010 as the company’s third data center.","verified_status":"operational","power_capacity_mw":0,"total_sqft":90000,"year_online":"2010","construction_update":"","recent_news":"May 28, 2026: Scheduled network maintenance at DC3 (Lansing) was completed.","notable_tenants":"Liquid Web (sole-tenant/operator). No publicly named third-party anchor tenants.","verified_name":"Liquid Web Lansing DC3","verified_operator":"Liquid Web LLC","verified_owner":"Liquid Web LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Lansing Board of Water & Light (BWL)","tax_incentives":"","natural_hazard_zone":"Low seismic risk; parcel-level FEMA flood zone not confirmed; county-level flood risk is moderate; no hurricane exposure noted for inland Michigan."},"1542":{"description":"ACD.net MetroIX is ACD.net’s data center at 1800 N Grand River Ave in Lansing, offering colocation and related hosting services in a fully hardened facility. Multiple listings show the site as the company’s active Lansing data center address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":42000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ACD.net MetroIX (also listed as ACD.net Lansing Data Center)","verified_operator":"ACD.net / Advanced Communications & Data","verified_owner":"SS Ventures LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":3.31,"utility_provider":"Lansing Board of Water & Light","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard; near Grand River)"},"1543":{"description":"Deep Green DG06 was a proposed Deep Green edge/high‑density data center in downtown Lansing designed to reuse waste heat via the Lansing Board of Water & Light system; the ~$120M, heat‑recovery project has been withdrawn and will not proceed.","verified_status":"decommissioned","power_capacity_mw":24,"total_sqft":25000,"year_online":"unknown","construction_update":"Apr 6, 2026: Project withdrawn prior to Council action; no construction commenced.","recent_news":"June 2026: After Deep Green withdrew its Lansing proposal on Apr. 6, the City Council set a July public hearing to consider a 182‑day moratorium on new data center developments.","notable_tenants":"","verified_name":"Deep Green DG06 - Lansing","verified_operator":"Deep Green (planned)","verified_owner":"City of Lansing","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":2.7,"utility_provider":"Lansing Board of Water & Light (BWL)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard between 100‑year and 500‑year limits)"},"1544":{"description":"CMS Internet Mount Pleasant (also referred to as CMS Internet DC1) is an operational colocation facility operated by CMS Internet at 131 S Main St, Mount Pleasant, Michigan, offering RU/half/full cabinet colocation with 100 Mbps service and upgrade options; the Central Michigan Internet Exchange (CM-IX) is located in a carrier-neutral data center in Mount Pleasant.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CMS Internet LLC: Mount Pleasant Data Center (CMS Internet – DC1 – Mount Pleasant MI)","verified_operator":"CMS Internet LLC","verified_owner":"Goudreau Investments LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"CMS Internet (on-net); cross-connects available","num_buildings":0,"campus_acres":0.172,"utility_provider":"Consumers Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (statewide; eligibility required).","natural_hazard_zone":"Low seismic and hurricane exposure; check FEMA maps for parcel-specific flood risk."},"1545":{"description":"Clear Rate Battle Creek POP is a telecom point-of-presence/data-center operated by Clear Rate Communications at 62 Michigan Ave E in Battle Creek, Michigan, offering colocation and high-capacity bandwidth.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Clear Rate Battle Creek POP","verified_operator":"Clear Rate Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Clear Rate Communications (on-net); DataCenterMap indicates one network provider listed for the facility.","num_buildings":1,"campus_acres":0.4,"utility_provider":"Consumers Energy","tax_incentives":"General programs only: Battle Creek property tax abatement programs and Michigan’s discretionary sales/use tax exemptions for qualifying new enterprise data centers.","natural_hazard_zone":"FEMA Zone X (moderate flood risk; outside the 100-year floodplain)."},"1546":{"description":"Metronet Galesburg is a small telecom/colocation site at 13800 E Michigan Ave in Galesburg, MI operated by Metronet (following its 2021 acquisition of CTS Telecom). It appears on facility directories for colocation/services at this address, while the building is concurrently marketed as office space for lease rather than with data-center-specific specs.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8600,"year_online":"unknown","construction_update":"","recent_news":"June 12, 2026: the 13800 E Michigan Ave building is listed for lease with 8,600 SF available; no facility-specific expansion or regulatory updates found in the past six months.","notable_tenants":"","verified_name":"Metronet Galesburg","verified_operator":"Metronet","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Metronet (MetroE service noted)","num_buildings":1,"campus_acres":0,"utility_provider":"Consumers Energy Company","tax_incentives":"","natural_hazard_zone":"Regional hazards: floods and tornadoes (Kalamazoo County). FEMA flood zone for this parcel not determined."},"1547":{"description":"Otava’s AA1 / Ann Arbor Data Center is an operational colocation facility at 640 Avis Drive in Ann Arbor, Michigan, totaling 10,500 sq ft with 7,500 sq ft of raised floor. Public listings and Otava materials reflect enterprise colocation with redundant infrastructure and connectivity.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":10500,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"OTAVA Ann Arbor Data Center (AA1)","verified_operator":"OTAVA","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; multiple ISPs with diverse fiber feeds","num_buildings":1,"campus_acres":3.22,"utility_provider":"DTE Energy / DTE Electric","tax_incentives":"Michigan Enterprise Data Center sales/use tax exemption applies statewide to eligible data center equipment and construction; no facility-specific abatement found for 640 Avis Drive.","natural_hazard_zone":""},"1548":{"description":"Synergy Broadband (Synergy Fiber) operates a colocation data center in Ann Arbor, Michigan at 3131 S. State St., Suite 306, offering 24x7 monitored colocation services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2010 (acquisition by Synergy; original commissioning year unknown)","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Synergy Broadband Ann Arbor Data Center","verified_operator":"Synergy Fiber (formerly Synergy Broadband)","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral, multiple Tier I carriers","num_buildings":2,"campus_acres":6,"utility_provider":"DTE Energy","tax_incentives":"","natural_hazard_zone":"Proximity to Malletts Creek/stream between 3131 & 3135 suggests potential FEMA floodplain exposure; specific zone not confirmed."},"1549":{"description":"Velocity Data Center is a small, fully equipped demonstration/enterprise data center operated by Velocity Data Centers at 6163 Jackson Road in Ann Arbor, Michigan.","verified_status":"operational","power_capacity_mw":0.2,"total_sqft":900,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Velocity Data Center","verified_operator":"Velocity Data Centers, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"DTE Energy","tax_incentives":"","natural_hazard_zone":""},"1550":{"description":"The Meta Howell Township Data Center was a proposed Meta-linked hyperscale campus near Marr, Fleming, Warner, and Owosso Roads in Howell Township, Michigan. The proposal was withdrawn in December 2025, so the project is no longer proceeding.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Dec 8, 2025: The rezoning request for the proposed AI/data center was withdrawn before any construction began. Earlier, on Sept 25, 2025, the Planning Commission voted against rezoning.","recent_news":"Jan 14, 2026: Advocacy analysis recapped that the $1B Howell Township data center proposal was withdrawn in December 2025 after community pushback.","notable_tenants":"","verified_name":"Howell Data Center Project / Project Splitrock","verified_operator":"Meta Platforms, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":1077,"utility_provider":"DTE Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption.","natural_hazard_zone":""},"1551":{"description":"OTAVA’s Mid‑Michigan colocation facility at 5225 Exchange Drive in the Flint area is an operational data center of about 32,500 sq ft (with roughly 22,500 sq ft raised floor) and around 4 MW of capacity, originally built by EDS for General Motors. The property is now owned by Mapletree Industrial Trust following Sila Realty Trust’s 2021 portfolio sale.","verified_status":"operational","power_capacity_mw":4,"total_sqft":32500,"year_online":"1987","construction_update":"","recent_news":"","notable_tenants":"Historical: General Motors (originally built by EDS for GM). Current end-customer tenants are not publicly disclosed.","verified_name":"OTAVA Mid-Michigan Data Center","verified_operator":"OTAVA","verified_owner":"Mapletree Industrial Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multiple ISPs with diverse fiber feeds; two physically separate fiber entrances","num_buildings":1,"campus_acres":2.52,"utility_provider":"Consumers Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (statewide 6% sales/use tax exemption for eligible data center construction and equipment)","natural_hazard_zone":"Flood Zone B and X (moderate flood hazard / 500-year flood area)"},"1552":{"description":"Aunalytics Kalamazoo Data Center is an operational Aunalytics colocation facility at 6395 Technology Ave, Kalamazoo, MI. The site was originally built by Secant Technologies and later became part of Aunalytics following Secant’s 2019 acquisition.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3400,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aunalytics Kalamazoo Data Center","verified_operator":"Aunalytics","verified_owner":"Devries Partners Properties LLC","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"carrier-neutral; multiple carriers with six separate 10‑Gb entrances","num_buildings":1,"campus_acres":0,"utility_provider":"Consumers Energy","tax_incentives":"Oshtemo Township/Local: 50% real property tax abatement for 12 years established for the project; State: Industrial Facilities Exemption framework applicable.","natural_hazard_zone":"FEMA Flood Zone X (minimal risk)"},"1553":{"description":"Hyperscale Data Michigan is an operational AI/HPC-focused data center at 415 E Prairie Ronde St in Dowagiac, MI, operated by Hyperscale Data, Inc. (via subsidiaries), on a roughly 34.5‑acre site and around 30 MW today, offering colocation and hosting services.","verified_status":"operational","power_capacity_mw":30,"total_sqft":617000,"year_online":"2022","construction_update":"June 26, 2026: Completed acquisition of 48.5 acres to expand/buffer the Michigan AI data center campus; as of early April 2026, the city requested formal plans within 45 days, indicating permitting was still pending.","recent_news":"June 2026: Hyperscale Data completed a 48.5-acre land acquisition expanding the Michigan campus to about 83 acres and signed a 20 MW MSA with a neocloud customer at the site.","notable_tenants":"No named anchor tenants are publicly disclosed. The company reports a first MSA with an unnamed California-based neocloud provider for 20 MW (option for +32 MW), and AGIBOT appears as a robotics supplier/partner rather than a tenant.","verified_name":"Hyperscale Data Michigan","verified_operator":"Hyperscale Data, Inc. (via Alliance Cloud Services LLC / Sentinum)","verified_owner":"Alliance Cloud Services, LLC (wholly owned subsidiary of Hyperscale Data, Inc.)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":34.5,"utility_provider":"City of Dowagiac (municipal electric)","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption exists; no confirmed facility-specific award.","natural_hazard_zone":"Moderate flood risk (Flood Factor 4/10) at 415 E. Prairie Ronde St; city-wide minor flood risk."},"1554":{"description":"Proposed hyperscale/data center project at the South 26th St and East N Avenue site in Pavilion Township, MI; Franklin Partners LLC pursued a zoning-text change to permit data center use, and the proposal was later halted amid community pushback.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"No construction. Sep 4, 2025: no formal site plans submitted. Oct 30, 2025: proposal halted amid community concerns.","recent_news":"On March 3, 2026, the Pavilion Township Board unanimously approved a 12‑month moratorium on data centers to allow time for new regulations.","notable_tenants":"","verified_name":"Pavilion Township Data Center (proposed)","verified_operator":"Unknown Company","verified_owner":"Franklin Partners LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":265,"utility_provider":"","tax_incentives":"Strategic Site Readiness Program (SSRP) support for the Southwest Michigan Commerce Park; statewide Enterprise Data Center Sales & Use Tax Exemption exists (project-specific certification not confirmed).","natural_hazard_zone":""},"1555":{"description":"Telesystem DC-2 is an operational telecom/colocation data center operated by Telesystem (Buckeye Telesystem, Inc.) at 1240 Huber Drive in Monroe, Michigan, serving as the company’s second data center in Southeast Michigan with 3,600 sq ft of raised-floor space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8800,"year_online":"1995","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Telesystem DC-2 (Telesystem Data Center-2)","verified_operator":"Buckeye Telesystem, Inc. (Telesystem), wholly owned by Block Communications, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"DTE Energy","tax_incentives":"General programs potentially applicable: Michigan’s Enterprise Data Center Sales & Use Tax Exemption (MCL 205.54ee) and City of Monroe development incentives (e.g., Brownfield, Commercial Rehabilitation, Industrial Facilities Exemption, OPRA, Opportunity Zone), subject to qualification and approvals.","natural_hazard_zone":"Address-specific FEMA flood zone not determined. Monroe, MI shows major flood risk; earthquake hazard is very low."},"1556":{"description":"Project Cherry Blossom is a proposed hyperscale data center campus by Cloverleaf Infrastructure at 1500 N Dixie Hwy in Frenchtown Township (Monroe, MI), on the former River Raisin Golf Course, described as ~200 acres with up to four buildings using closed-loop cooling. As of June 2026, the township reported the LOI had expired and no agreement is in effect for a data center at the North Dixie Hwy site.","verified_status":"planned","power_capacity_mw":300,"total_sqft":0,"year_online":"unknown","construction_update":"No construction verified. Latest milestone: the township’s June 2026 statement says the LOI expired in early May 2026 and no agreement is in effect; the Planning Commission also reviewed a data-center moratorium on April 1, 2026.","recent_news":"June 2026: Frenchtown Township stated the January 9, 2026 LOI (extended in March) expired in early May 2026 and that no agreement is in effect for a data center at 1500 N. Dixie Hwy; the Planning Commission had also reviewed a data-center moratorium in early April 2026.","notable_tenants":"","verified_name":"Project Cherry Blossom (Frenchtown Township, MI)","verified_operator":"Cloverleaf Infrastructure","verified_owner":"Frenchtown Charter Township","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":200,"utility_provider":"","tax_incentives":"Michigan’s Enterprise Data Center Sales & Use Tax Exemption exists statewide, but no public record shows this project has been approved/certified for it.","natural_hazard_zone":""},"1557":{"description":"US Signal MI01 (Grand Rapids East) is an operational US Signal colocation data center at 4765 Barden Court in Kentwood (Grand Rapids area), Michigan. The site lists 213 kW critical IT workload, 3,778 total sq ft (2,362 whitespace), Tier III-style resiliency, and was built in 2014 and expanded in 2016.","verified_status":"operational","power_capacity_mw":0.213,"total_sqft":3778,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"US Signal MI01 Grand Rapids Data Center (Grand Rapids East)","verified_operator":"US Signal Company, LLC","verified_owner":"U S SIGNAL PROPERTIES LLC","cooling_type":"air-cooled","tier_level":"Tier III-equivalent (not Uptime-certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":3.33,"utility_provider":"Consumers Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption is active statewide for eligible facilities; no public evidence that MI01 is certified/receiving it.","natural_hazard_zone":"low risk"},"1558":{"description":"400 76th Street SW in Byron Center, MI is a multi-tenant data center building housing separate colocation facilities: 123NET’s DC4 (Suite 12) and US Signal’s MI02. 123NET DC4 offers about 3,500 sq ft and was completed in 2012, while US Signal MI02 is a smaller site at the same address.","verified_status":"operational","power_capacity_mw":1,"total_sqft":3500,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"123NET Grand Rapids Data Center (DC4), 400 76th Street SW, Suite 12, Byron Center, MI 49315","verified_operator":"123.Net, LLC (123NET)","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier II equivalent","fiber_providers":"carrier-neutral; examples include 123NET, Hurricane Electric, ManagedWay, Merit Network, Air Advantage, HBPW, and others; exchanges include DET-iX and GRR-iX.","num_buildings":1,"campus_acres":6.56,"utility_provider":"Consumers Energy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X/B (not in a 100-year floodplain; moderate-to-low flood exposure)"},"1559":{"description":"ManagedWay Byron (BYK1) is a ManagedWay-operated colocation data center in Byron Center, Michigan, listed at 700 76th St SW and also shown within the 400 76th St SW complex. The facility is an operational colocation site.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ManagedWay: Byron Data Center","verified_operator":"ManagedWay","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III+ (design standard, not formally Uptime Institute certified)","fiber_providers":"Carrier-neutral: Lumen, Windstream, Comcast, AT&T, ManagedWay, 123NET, Crown Castle, Zayo","num_buildings":1,"campus_acres":6.56,"utility_provider":"","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (state program; facility participation not confirmed)","natural_hazard_zone":"FEMA Flood Zone X (minimal flood risk)"},"1560":{"description":"Operational telecom/colocation data center at 3950 Sparks Dr SE (also listed as 3950 Sparks Ave SE) in Grand Rapids, opened by Comlink in 2013 and publicly listed as the Everstream Grand Rapids Data Center. Following Bluebird Fiber’s March 2026 acquisition of Everstream’s assets, the same address remains a Bluebird local office.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2013","construction_update":"","recent_news":"Mar 6, 2026: Bluebird Fiber completed the purchase of substantially all Everstream assets and operations; the combined business operates under the Bluebird Fiber name. Bluebird’s contact page lists 3950 Sparks Dr SE, Grand Rapids as a local office.","notable_tenants":"","verified_name":"Everstream Grand Rapids Data Center","verified_operator":"Bluebird Fiber","verified_owner":"Prime Office Equities","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; on-net Bluebird Fiber/Everstream","num_buildings":1,"campus_acres":3.45,"utility_provider":"","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (statewide program; facility eligibility not verified)","natural_hazard_zone":""},"1561":{"description":"Iserv Data Center was a colocation/hosting facility associated with 382 Communications/Iserv at 5222 33rd St SE in Grand Rapids. While it is listed on Data Center Map, current property listings describe the site as industrial/distribution space, so active colocation operations at this address are unverified.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":58635,"year_online":"unknown","construction_update":"No active construction or expansion identified as of 2026-06.","recent_news":"","notable_tenants":"","verified_name":"Iserv Data Center","verified_operator":"382 Communications / The Iserv Company (Iserv)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"multiple redundant Internet-backbone carrier connections (carriers not specified)","num_buildings":1,"campus_acres":0,"utility_provider":"Consumers Energy","tax_incentives":"","natural_hazard_zone":""},"1562":{"description":"Planned Microsoft Azure hyperscale data center campus at the 144th Ave & 14th St site in Dorr Township, Michigan. Microsoft purchased nearly 272 acres in 2024 and discussed developing about 128 acres; in March 2026 the township issued a 12‑month moratorium on data-center development.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Mar 4, 2026: Dorr Township Board enacted a 12‑month moratorium on any data-center development by Microsoft; no permits, site plan approvals, or construction start identified.","recent_news":"Mar 4, 2026: Dorr Township Board issued a 12‑month moratorium on any development of data centers by Microsoft; June 2026: Michigan lawmakers and local officials renewed calls for a statewide pause on data-center development.","notable_tenants":"","verified_name":"Microsoft Dorr Township Data Center","verified_operator":"Microsoft (Azure)","verified_owner":"Microsoft Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":274,"utility_provider":"Consumers Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (eliminates 6% sales/use tax on eligible data center construction and equipment purchases, subject to eligibility).","natural_hazard_zone":"low risk"},"1563":{"description":"The 511 Building / Minnesota Technology Center is an operational, carrier-neutral colocation and interconnection hub at 511 11th Ave S in downtown Minneapolis, widely regarded as Minnesota’s most connected carrier hotel. It hosts multiple operators and exchange points, serving as a key network meet-me location in the region.","verified_status":"operational","power_capacity_mw":0,"total_sqft":273000,"year_online":"1981","construction_update":"","recent_news":"","notable_tenants":"Cologix (multiple MIN facilities), DataBank (MSP4), Lumen (Minneapolis 2), and the Midwest Internet Cooperative Exchange (MICE).","verified_name":"511 Building (Minnesota Technology Center)","verified_operator":"Building operated as a carrier hotel; Cologix (MIN1–MIN5), DataBank (MSP4), and Lumen/Level 3 are active operators/tenants.","verified_owner":"Timeshare Systems, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; access to hundreds of carriers. Examples include Windstream Wholesale, Zayo, and MOX Networks.","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Minnesota data center sales-tax incentive; operator materials cite customer savings up to the equivalent of 25–30% of contracted service fees.","natural_hazard_zone":""},"1564":{"description":"Downtown Minneapolis colocation/AI-ready data center at 1001 3rd Ave S, owned by a Cloud Capital–Arcapita JV (acquired Jan 2026) and formerly marketed as T5@Minneapolis; the building is roughly 500,000 sq ft gross, with some older listings showing about 330,000 sq ft.","verified_status":"operational","power_capacity_mw":21,"total_sqft":500000,"year_online":"unknown","construction_update":"Jan 2026: Planned expansion of the Minneapolis facility by 10MW (from 21MW to ~31MW).","recent_news":"Jan 2026: Cloud Capital and Arcapita acquired the Minneapolis data center and outlined a 10MW expansion plan; May 2026: Bloomberg reported Core42 (G42) took a 20MW lease at 1001 Third Ave S; Feb 2026: local press reported a $235M sale tied to the site.","notable_tenants":"Core42 (20 MW anchor); Cogent Communications (tenant since 2021)","verified_name":"T5@Minneapolis (Cloud Capital: Minneapolis CBD Data Center)","verified_operator":"T5 Data Centers","verified_owner":"Cloud Capital / Arcapita joint venture (legal entity: CLAR MINNEAPOLIS MN LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; on-net examples include Zayo and Cogent","num_buildings":1,"campus_acres":2.5,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Center sales and use tax exemption (statewide program); no facility-specific abatement identified.","natural_hazard_zone":"low risk"},"1565":{"description":"The Marq at 250 Marquette Avenue is a 13‑story, 522,656‑sq‑ft office building in downtown Minneapolis; Cogent maintains an on‑net/telecom presence there and third‑party directories have listed a Cogent colocation footprint at this address. However, Cogent’s currently published Minneapolis data center is at 1001 Third Avenue South, and the 250 Marquette directory profile is flagged as no longer active.","verified_status":"operational","power_capacity_mw":0,"total_sqft":522656,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Verizon (including former XO Communications) has a presence at 250 Marquette; no publicly disclosed Cogent colocation customers.","verified_name":"Cogent: 250 Marquette Data Center (The Marq)","verified_operator":"Cogent Communications","verified_owner":"KBS Strategic Opportunity REIT (via KBS SOR Marquette Plaza LLC)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Cogent Communications (on-net)","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":""},"1566":{"description":"Lumen Minneapolis 1 is a Lumen Technologies colocation/data center suite located on Suite 700 in the Two22 office tower at 222 South 9th Street in downtown Minneapolis, Minnesota. DataCenterMap lists 8,791 sq ft total space with 7,150 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8791,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Minneapolis 1","verified_operator":"Lumen Technologies","verified_owner":"X WH REDF2-TSE Two22 Propco, LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"Verizon; TW telecom; Comcast; Cogent Communications; CenturyLink/Lumen; TDS Telecom","num_buildings":1,"campus_acres":0.75,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zones B and X (outside SFHA; low-to-moderate flood risk); low seismic and no hurricane risk due to inland location"},"1567":{"description":"A small Lumen/CenturyLink network/colocation site at 600 Stinson Blvd in Minneapolis. Lumen’s official Wavelength RapidRoutes site list includes “600 STINSON BLVD,” and a third-party listing identifies it as the CenturyLink Minneapolis data center with modest footprint and power.","verified_status":"operational","power_capacity_mw":0.375,"total_sqft":7088,"year_online":"unknown","construction_update":"","recent_news":"Feb 26, 2026: UCare’s headquarters building at 600 Stinson Blvd NE was listed for sale as part of the company’s wind-down; June 25, 2026: Minneapolis approved a temporary pause on new or expanded data centers citywide. No site-specific Lumen expansion or tenant news identified.","notable_tenants":"","verified_name":"CenturyLink – Minneapolis Data Center","verified_operator":"Lumen Technologies","verified_owner":"UCare","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen/CenturyLink network services available","num_buildings":1,"campus_acres":5,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"County hazards include flooding (urban/river), severe winter storms, and tornado risk; parcel-specific FEMA flood zone for 600 Stinson not determined"},"1568":{"description":"Windstream Minneapolis is an operational telecom/colocation data center at 401 2nd Ave S in Minneapolis, operated by Windstream (now part of Uniti). It is identified in industry listings and on Uniti’s 2026 map as a key data center location.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 2026: Minneapolis passed a six-month moratorium on new data centers, with an exemption for downtown facilities under 350,000 sq ft; no facility-specific change for 401 2nd Ave S reported.","notable_tenants":"","verified_name":"Windstream Minneapolis Data Center","verified_operator":"Windstream","verified_owner":"Uniti Group Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream","num_buildings":1,"campus_acres":0.71,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":""},"1569":{"description":"Planned adaptive reuse of the former Wells Fargo operations center at 255 2nd Ave S into a data-center-plus-office project. Sherman Associates is the owner/developer, and Colliers is marketing the redevelopment opportunity with 75,000 SF of existing data hall footprint and about 26 MVA of secured utility.","verified_status":"planned","power_capacity_mw":26,"total_sqft":549500,"year_online":"unknown","construction_update":"Nov 3, 2025: Reported that Sherman applied in Oct 2025 for a conditional use permit to upgrade electrical service from 6 MW to 26 MW. Dec 16, 2025: A city spokesperson said the plan had all necessary permits.","recent_news":"June 2026: Minneapolis approved a pause on some new data centers; coverage specifically cites a proposed data center at 255 Second Ave. S.","notable_tenants":"","verified_name":"Minneapolis Data Center Redevelopment Opportunity","verified_operator":"unknown","verified_owner":"Sherman Associates","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":2.43,"utility_provider":"","tax_incentives":"Minnesota Qualified (including refurbished) Data Center sales tax exemptions for up to 35 years on eligible IT equipment and certain power/cooling infrastructure, subject to qualification.","natural_hazard_zone":""},"1570":{"description":"EdgeConneX MSP01 is an operational, purpose-built edge colocation data center in Eden Prairie serving the Minneapolis market and operated by EdgeConneX. Current operator datasheets list a 32,738 sq ft facility with MSP01 power of 1.35 MW N+1, scalable to 2.85 MW.","verified_status":"operational","power_capacity_mw":2.85,"total_sqft":32738,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX MSP01 Minneapolis","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III design (concurrently maintainable)","fiber_providers":"Carrier-neutral; on-net providers include Lumen (Level 3) and Charter Communications","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Center sales tax exemption (up to 35 years) potentially applicable; site-specific qualification not confirmed","natural_hazard_zone":"Low risk overall; tornado and winter-storm exposure typical for Minnesota; no hurricane risk indicated"},"1571":{"description":"US Signal’s MN01 Minneapolis is a Tier III design-certified colocation data center at 10290 West 70th Street in Eden Prairie, Minnesota, rebranded from the former VISI/OneNeck site after US Signal completed its OneNeck acquisition in 2024. The current operator listing shows 523 kW of critical IT load and 4,723 total square feet.","verified_status":"operational","power_capacity_mw":0.523,"total_sqft":4723,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"US Signal MN01 Minneapolis Data Center","verified_operator":"US Signal","verified_owner":"Igneo Infrastructure Partners","cooling_type":"chilled water","tier_level":"Uptime Institute Tier III Design Certified","fiber_providers":"Enventis, XO Communications, Zayo (7 on-net carriers total)","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Data Center Sales Tax Exemption (up to 20 years on IT, cooling, and power equipment for qualifying facilities; eligibility required).","natural_hazard_zone":"FEMA Flood Zone X (minimal flood risk; not in 100-year floodplain); low seismic risk"},"1572":{"description":"Ridgeview Data Center is an operational colocation facility operated by Ridgeview Data Center at 12450 Wayzata Blvd, Suite 110, Minnetonka, MN. It is notable for hosting a MICE internet exchange switch at the site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":20000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Midwest Internet Cooperative Exchange (MICE) operates a switch at the facility; no specific enterprise anchor customers publicly listed.","verified_name":"Ridgeview Data Center","verified_operator":"Ridgeview, Inc. (Ridgeview Data Center)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1573":{"description":"Lumen Minnetonka 2 is an operational Lumen Technologies telecom/colocation data center at 5480 Feltl Rd in Minnetonka, Minnesota, with the site owned by Mapletree following a 2021 acquisition.","verified_status":"operational","power_capacity_mw":2.7,"total_sqft":32000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Minnetonka 2","verified_operator":"Lumen Technologies","verified_owner":"Mapletree Investments","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Minnesota’s Qualified Data Center program offers sales tax exemptions (e.g., for computers/servers and cooling/energy equipment) to eligible projects; participation by this facility is not publicly confirmed.","natural_hazard_zone":"Outside 100-year FEMA flood plain; otherwise low observed risk in provided sources"},"1574":{"description":"DataBank MSP1 West Twin Cities is an operational colocation data center at 7700 France Ave S in Edina, Minnesota, featuring 26,240 IT square feet, 1.35 MW critical IT load, and 20 onsite carriers.","verified_status":"operational","power_capacity_mw":1.35,"total_sqft":26240,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank MSP1 - West Twin Cities Data Center","verified_operator":"DataBank","verified_owner":"Frauenshuh","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 20 onsite carriers","num_buildings":1,"campus_acres":17.1,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota’s Qualified Data Center program provides up to 35 years of sales and use tax exemptions on qualifying purchases for certified facilities; no public record found confirming MSP1’s certification.","natural_hazard_zone":"FEMA Flood Zone X; SFHA_TF = No; zone subtype = Area of Minimal Flood Hazard"},"1575":{"description":"DataBank’s MSP2 East Twin Cities is an operational colocation data center at 3255 Neil Armstrong Blvd in Eagan, MN, offering 5MW critical IT load and 48,860 IT sq ft within a roughly 90,000-sq-ft facility.","verified_status":"operational","power_capacity_mw":5,"total_sqft":90000,"year_online":"2015","construction_update":"","recent_news":"Feb 2026: Eagan adopted a one-year moratorium on new and some expanded data centers; June 2026: a lawsuit was filed challenging the moratorium. No MSP2-specific expansion or tenant updates identified.","notable_tenants":"","verified_name":"DataBank MSP2 East Twin Cities Data Center","verified_operator":"DataBank","verified_owner":"Mapletree Industrial Trust; title vehicle: Elias DC Assets LLC","cooling_type":"unknown","tier_level":"Tier III (Uptime Institute Build certification)","fiber_providers":"carrier-neutral; 20 onsite carriers","num_buildings":1,"campus_acres":0,"utility_provider":"Dakota Electric Association","tax_incentives":"","natural_hazard_zone":"Outside the 100-year floodplain"},"1576":{"description":"Flexential Minneapolis–Chaska is a Flexential-operated colocation data center at 3500 Lyman Blvd, Chaska, Minnesota, offering a 160,838‑sq‑ft facility with 9 MW of capacity and more than 70,000 sq ft of raised floor space.","verified_status":"operational","power_capacity_mw":9,"total_sqft":160838,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Minneapolis - Chaska Data Center","verified_operator":"Flexential","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; AT&T, Lumen, Zayo, Comcast, Arelion; Flexential 100Gbps network backbone","num_buildings":1,"campus_acres":28.95,"utility_provider":"City of Chaska Electric","tax_incentives":"Minnesota Qualified Data Center program: sales and use tax exemptions (up to 35 years) for qualified data centers on enterprise information technology equipment and eligible construction-related purchases.","natural_hazard_zone":""},"1577":{"description":"Stream MSPA1 / Minneapolis II is a private enterprise data center at 1706 West Creek Lane in Chaska, Minnesota, developed by Stream Data Centers and fully leased; the 56,000-sq-ft facility delivers up to 4.8 MW.","verified_status":"operational","power_capacity_mw":4.8,"total_sqft":56000,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"U.S. Bank (U.S. Bancorp)","verified_name":"Stream Minneapolis II (MSPA)","verified_operator":"Stream Data Centers","verified_owner":"Next Tier HD (with AGC Equity Partners)","cooling_type":"air-cooled","tier_level":"Tier III (design standard indicated)","fiber_providers":"","num_buildings":1,"campus_acres":6.1,"utility_provider":"City of Chaska Electric Utility","tax_incentives":"Minnesota data center sales and use tax rebates for qualified facilities/users.","natural_hazard_zone":"low risk"},"1578":{"description":"LightEdge operates a colocation data center at 1708 West Creek Lane in Chaska, Minnesota, an Uptime Tier III Design Certified facility of about 76,000 sq ft with 3.6 MW of capacity.","verified_status":"operational","power_capacity_mw":3.6,"total_sqft":76000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"LightEdge Minneapolis Data Center (Minneapolis I)","verified_operator":"LightEdge","verified_owner":"LightEdge (portfolio company of GI Partners)","cooling_type":"unknown","tier_level":"Uptime Institute Tier III","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"City of Chaska Electric Utility","tax_incentives":"Minnesota Qualified Data Center sales tax exemption program (eligibility required).","natural_hazard_zone":"FEMA Flood Zone B/X (moderate hazard)"},"1579":{"description":"Enterprise data center operated by UnitedHealth Group at 1707 W Creek Lane in Chaska’s West Creek Corporate Center; it opened in 2012 and is roughly 250,000 sq ft (the parcel lists 254,602 sq ft; built 2011).","verified_status":"operational","power_capacity_mw":0,"total_sqft":254602,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"UnitedHealth Group / Optum internal enterprise use; no third-party colocation tenants publicly identified.","verified_name":"UnitedHealth Chaska Data Center","verified_operator":"UnitedHealth Group","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":18.19,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood risk context from nearby parcel record; verify exact designation on FEMA maps)"},"1580":{"description":"Centersquare’s MSP1 Shakopee Campus is an operational carrier-neutral colocation data center at 4450 Dean Lakes Boulevard, Shakopee, Minnesota, offering approximately 50,000 sq ft total with about 28,900 sq ft of raised-floor colocation space.","verified_status":"operational","power_capacity_mw":10,"total_sqft":50000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No publicly named anchor tenants. Network/service providers present include Cogent, Comcast, Consolidated Communications, and Zayo.","verified_name":"Centersquare MSP1 Shakopee Campus","verified_operator":"Centersquare","verified_owner":"Brookfield Infrastructure Partners","cooling_type":"air-cooled","tier_level":"Tier III","fiber_providers":"Carrier-neutral; Zayo","num_buildings":1,"campus_acres":11.59,"utility_provider":"Shakopee Public Utilities (SPU)","tax_incentives":"Minnesota Qualified Data Center sales tax exemption (up to 35 years on enterprise IT equipment, software, cooling and power infrastructure for qualifying facilities).","natural_hazard_zone":""},"1581":{"description":"Connect Eagan Data Center is a build-to-suit colocation facility at 550 Opperman Dr in Eagan, Minnesota, developed by Oppidan and to be operated by Connect Data Centers. Located on a 22.1-acre former YMCA parcel, the 5 MW greenfield project broke ground in 2025 and targets completion in 2026.","verified_status":"under-construction","power_capacity_mw":5,"total_sqft":61000,"year_online":"2026","construction_update":"Mar 30, 2026 — Industry press confirmed the facility is currently under construction; earlier site work began in June 2025 with completion still slated for 2026.","recent_news":"Mar 30, 2026: DCD reported Oppidan is currently building a 61,000 sq ft data center in Eagan, with completion slated for 2026.","notable_tenants":"","verified_name":"Connect Eagan - 550 Opperman Dr","verified_operator":"Connect Data Centers","verified_owner":"CLOP Eagan MN LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":14.5,"utility_provider":"","tax_incentives":"Minnesota data center sales-tax exemption program is available to qualifying data centers; no project-specific approval documented.","natural_hazard_zone":""},"1582":{"description":"Former Unisys/Sperry enterprise data-center campus at 3199 Pilot Knob Rd in Eagan, acquired by Swervo Development in Nov. 2025 and now operated/marketed under IronGate for enterprise/AI uses; the campus totals about 312,495 sq ft and dates to 1986.","verified_status":"operational","power_capacity_mw":0,"total_sqft":312495,"year_online":"1986","construction_update":"May 5, 2026: Eagan City Council unanimously denied IronGate’s six‑month interim‑use permit for four temporary rooftop chillers.","recent_news":"June 2026: Eagan Capital sued the City of Eagan to challenge the city’s one‑year data‑center moratorium; in May 2026 the City Council unanimously denied IronGate’s interim-use permit for four temporary rooftop chillers.","notable_tenants":"","verified_name":"Swervo Eagan Data Center","verified_operator":"Swervo Development Corp (with IronGate Data Centers providing data center services)","verified_owner":"Eagan Capital LLC","cooling_type":"chilled water","tier_level":"Tier III","fiber_providers":"","num_buildings":1,"campus_acres":32,"utility_provider":"Dakota Electric Association","tax_incentives":"Minnesota Data Center Sales Tax Exemptions program (exemptions on enterprise IT equipment and software purchases for up to 35 years for qualified data centers).","natural_hazard_zone":""},"1583":{"description":"A planned Meta (Jimnist LLC) land-bank site at County Road 42 and Blaine Avenue in Rosemount, Minnesota, separate from Meta’s 715,000‑square‑foot UMore Park campus already announced nearby. Meta acquired more than 200 acres/eight parcels at this CR42/Blaine site, but it has not advanced to a permitted or constructed facility.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Feb 2025: Jimnist LLC (Meta) closed on over 200 acres/eight parcels along County Road 42 for ~$70 million; no development application or construction start publicly reported for the CR42/Blaine site.","recent_news":"","notable_tenants":"","verified_name":"Rosemount Data Center (Meta Rosemount Campus)","verified_operator":"Meta Platforms, Inc.","verified_owner":"Jimnist LLC (Meta Platforms subsidiary)","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":280,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Centers sales-tax exemption program may apply if the facility is certified; no confirmed project-specific local abatements found.","natural_hazard_zone":"low risk (FEMA Flood Zone X at city level; very low seismic)"},"1584":{"description":"Project Skyway (Google Pine Island) is a planned hyperscale data center campus near 500th Street and U.S. Highway 52 in Pine Island, Minnesota, developed by Ryan Companies with Google as the initial tenant. Phase 1 includes a roughly 300,000 sq ft data center and a 30,000 sq ft office building.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"May 22, 2026: A judge issued a temporary restraining order halting construction and pre-construction activity. Earlier steps included Pine Island City Council approvals tied to the preliminary plat/development plan on Dec. 16, 2025, and movement on electric service agreements in 2026.","recent_news":"On May 22, 2026, a judge issued a temporary restraining order halting construction activity on Project Skyway; a court hearing was set for June 18 to determine whether work could proceed.","notable_tenants":"Google","verified_name":"Google Pine Island / Project Skyway","verified_operator":"Google","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":482,"utility_provider":"Xcel Energy","tax_incentives":"City of Pine Island approved a property-tax abatement totaling $36,578,343 to be issued in two parts over a couple decades.","natural_hazard_zone":""},"1585":{"description":"Carrier-neutral colocation facility operated by H5 Data Centers at 1125 Energy Park Dr., Suite 100, St. Paul (Minneapolis market), with legacy listings referencing SunGard STP-1125 at the same address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":17000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"H5 Data Centers Minneapolis Data Center","verified_operator":"H5 Data Centers","verified_owner":"Buhl Investors (building owner; H5 leases Suite 100)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent on-net","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Center sales tax exemption program exists; no public confirmation this facility is certified.","natural_hazard_zone":""},"1586":{"description":"SunGard St. Paul Data Center (STP-605) is a small colocation/business-continuity facility at 605 N Fairview Ave in St. Paul that has been listed with approximately 10,000 sq ft of raised floor and on-site UPS/generator backup. It is marketed under the SunGard Availability Services name and appears to be operational at this address.","verified_status":"operational","power_capacity_mw":0.225,"total_sqft":26550,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SunGard - St. Paul Data Center (STP-605)","verified_operator":"Sungard Availability Services (last verified; current operator uncertain post‑2022)","verified_owner":"Sungard Recovery Services Inc.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; diverse fiber entry and paths (no named carriers publicly listed)","num_buildings":1,"campus_acres":1.72,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Data Center Sales Tax Exemption program (statewide); no site-specific award identified.","natural_hazard_zone":"FEMA Flood Zone B and X (moderate hazard)"},"1587":{"description":"CenterServ St. Paul Data Center is a colocation facility operated by CenterServ at 445 Minnesota Street in downtown St. Paul, MN. It is listed on Datacenters.com, but detailed footprint and capacity figures are not publicly disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CenterServ St. Paul Data Center","verified_operator":"CenterServ","verified_owner":"Sentinel Real Estate Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multiple Tier 1 and Tier 2 carriers / redundant fiber routes reported, but individual carriers were not named","num_buildings":0,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"not determinable; no address-specific FEMA flood-zone designation found"},"1588":{"description":"A site at 110 N 1st St in downtown Minneapolis is listed by third‑party directories as an IronGate data center (MSP 4) engineered for high‑density pods scheduled to start coming online March 1, 2026. However, property listings show the address is The Archive apartments, and industry coverage places Irongate’s MSP01 as a separate 15 MW facility in Woodbury.","verified_status":"under-construction","power_capacity_mw":4,"total_sqft":0,"year_online":"2026","construction_update":"As listed, high‑density 2 MW and 4 MW pods were scheduled to begin coming online on March 1, 2026; no later completion announcement identified.","recent_news":"","notable_tenants":"","verified_name":"IronGate Downtown Minneapolis (MSP 4)","verified_operator":"Irongate Data Centers","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"Redundant carrier hub; specific carriers not publicly disclosed for this address","num_buildings":0,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"Area-level flood risk; FEMA flood zone for this parcel unknown"},"1589":{"description":"IronGate Woodbury MSP1 (Twin Cities East) is a wholesale/colocation data center operated by IronGate at 401 Bielenberg Dr, Woodbury, Minnesota. It is an operational facility of roughly 85,000 sq ft with about 15–16 MW of capacity.","verified_status":"operational","power_capacity_mw":15,"total_sqft":85334,"year_online":"2013","construction_update":"CBRE marketed 10 MW available with delivery/readiness by October 1, 2025; no newer expansion milestones identified.","recent_news":"","notable_tenants":"","verified_name":"IronGate Twin Cities East (Woodbury MSP1)","verified_operator":"IronGate Data Centers","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Centers sales tax exemption (up to 35 years)","natural_hazard_zone":""},"1590":{"description":"Ark Data Centers Duluth 2 is a multi-tenant colocation facility at 421 N. 6th Ave. East in Duluth, Minnesota, operated by Ark Data Centers (formerly Involta). Listings indicate an approximately 12,000+ sq ft, concurrently maintainable site with around 1 MW of capacity.","verified_status":"operational","power_capacity_mw":1,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Essentia Health","verified_name":"Ark Data Centers Duluth 2","verified_operator":"Ark Data Centers","verified_owner":"Essentia Health System","cooling_type":"unknown","tier_level":"Concurrently maintainable (Tier III-equivalent); not Uptime-certified","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.13,"utility_provider":"Minnesota Power (ALLETE)","tax_incentives":"Minnesota’s Qualified Data Center sales-tax exemption exists, with electricity purchases excluded starting July 1, 2025; large-scale data centers may qualify. Historical local actions advanced JOBZ/TIF for a proposed Involta data storage center in Duluth; no site-specific certification for 421 N. 6th Ave E was confirmed.","natural_hazard_zone":"low risk"},"1591":{"description":"Consolidated Communications Duluth Data Center is a small, directory-listed colocation/telecom facility at 21 West Superior Street, Suite 200, Duluth, MN. The operator’s brand now trades as Fidium following Consolidated’s evolution, though the facility remains listed under Consolidated at this address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Consolidated Communications - Duluth Data Center","verified_operator":"Consolidated Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Consolidated Communications / Fidium (on‑net); no public third‑party carrier list found for this specific suite","num_buildings":0,"campus_acres":0,"utility_provider":"Minnesota Power","tax_incentives":"Minnesota Data Center Sales & Use Tax Exemption (up to 35 years for qualifying facilities/purchases); no facility-specific certification found","natural_hazard_zone":"Urban flash‑flood exposure along Superior Street; FEMA floodplain remapping in progress"},"1592":{"description":"Proposed Google data center campus in Hermantown, Minnesota, located near Midway Road and Morris Thomas Road; the City notes Google announced plans for the project in March 2026 and it remains under review.","verified_status":"planned","power_capacity_mw":0,"total_sqft":1800000,"year_online":"unknown","construction_update":"June 25, 2026: Google held a public open house on the proposed Hermantown data center as part of the ongoing review and community engagement process.","recent_news":"June 12, 2026: The City of Hermantown opened a second public-comment period for the Draft AUAR/Mitigation Plan for the proposed Google data center campus, running through July 16, 2026.","notable_tenants":"Google (self-operated; no third-party tenants or colocation customers publicly disclosed).","verified_name":"Google Hermantown Data Center Campus","verified_operator":"Google","verified_owner":"Harmony Group LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":278,"utility_provider":"Minnesota Power","tax_incentives":"City of Hermantown tax abatement under consideration (project not reasonably likely to occur absent abatements); City Council scheduled/tabled vote on a tax abatement agreement. Terms under public review.","natural_hazard_zone":""},"1593":{"description":"A colocation data center at 221 E. Hickory Street in Mankato operated under Fidium (Consolidated Communications), offering colocation with fiber connectivity; it features cooling, fire suppression, and a dedicated UPS with generator and has over 2,000 sq ft of raised floor space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Consolidated Communications Mankato Data Center (Fidium Mankato)","verified_operator":"Consolidated Communications (Fidium)","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier I infrastructure facility (self-reported; no Uptime Institute certification)","fiber_providers":"carrier-neutral; multiple GigE interfaces to Tier 1 ISPs; dual fiber entrances / dual-path fiber optic SONET network; Fidium/Consolidated Communications","num_buildings":1,"campus_acres":1.84,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (shaded)/Zone B context; minor flood risk in downtown Mankato; very low seismic risk"},"1594":{"description":"RNDC #1 Braham was a small colocation facility at 205 2nd Street SW historically operated by RevNet (later under Compudyne/Integris), offering basic colo with UPS/generator. The building is now listed for sale/lease and described as previously home to a local internet provider, suggesting the data center is no longer in operation.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"The property at 205 2nd Street SW was actively listed for sale or lease in late May–June 2026, with listings noting it was previously home to a local internet provider.","notable_tenants":"","verified_name":"Integris Braham Data Center","verified_operator":"Integris","verified_owner":"","cooling_type":"air-cooled","tier_level":"SSAE16 Type 1 SOC 1 Audited (no Uptime Institute Tier certification)","fiber_providers":"","num_buildings":1,"campus_acres":0.11,"utility_provider":"East Central Energy","tax_incentives":"Minnesota data center sales tax exemption program exists (up to 35 years for qualified facilities); typical thresholds include at least 25,000 sq ft and $30M investment, so this small facility likely does not qualify.","natural_hazard_zone":"Low seismic risk; localized/typically low flood risk in Braham; moderate tornado exposure typical for Minnesota."},"1595":{"description":"Paul Bunyan Communications’ Bemidji Data Center is an operational telecom/colocation facility at 1831 Anne St NW in Bemidji, Minnesota, operated by Paul Bunyan Communications. The operator markets colocation and connectivity services from this site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Paul Bunyan Communications Bemidji Data Center","verified_operator":"Paul Bunyan Communications","verified_owner":"Paul Bunyan Rural Telephone Cooperative","cooling_type":"unknown","tier_level":"","fiber_providers":"Paul Bunyan Communications (GigaZone all-fiber network)","num_buildings":0,"campus_acres":0,"utility_provider":"Otter Tail Power Company","tax_incentives":"Minnesota’s Qualified Data Center sales tax exemption program (up to 35 years on eligible purchases); not confirmed as awarded to this specific facility.","natural_hazard_zone":""},"1596":{"description":"Vaultas Alexandria (ALX1) is a colocation data center operated by Vaultas at 720 Hawthorne St, Alexandria, Minnesota. The facility is carrier‑neutral and vendor‑neutral and provides data center services to regional customers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Vaultas Alexandria (ALX1)","verified_operator":"Vaultas","verified_owner":"TLK LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0.30428563,"utility_provider":"ALP Utilities","tax_incentives":"Minnesota Qualified Data Centers sales-tax exemption program exists; no public confirmation this facility has qualified.","natural_hazard_zone":"No FEMA flood zone intersected at parcel centroid in county GIS; regional exposure to severe winter storms and tornado/wind events per county HMP."},"1597":{"description":"Vaultas St. Cloud is a Vaultas-operated colocation/edge data center at 3701 18th St S, St. Cloud, MN, offering colocation and carrier-neutral connectivity. It is marketed as a St. Cloud data center by Vaultas and is listed on industry directories.","verified_status":"under-construction","power_capacity_mw":0.6,"total_sqft":17016,"year_online":"2026","construction_update":"As of Feb. 13, 2026: Under construction with plans to open in 2026; construction had yet to begin, per a company executive quoted.","recent_news":"Feb. 13, 2026: Local outlet reported the Vaultas St. Cloud data center was under construction with plans to open later in 2026, noting construction had yet to begin at that time.","notable_tenants":"No facility-specific anchor tenants publicly confirmed. Vaultas lists customers it serves including Design Tree, Form-A-Feed, On Systems, Park Industries Inc, and Northern Contours.","verified_name":"Vaultas St. Cloud","verified_operator":"Vaultas","verified_owner":"","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"carrier-neutral; access to hundreds of competitive carriers and networks; local reporting cited more than a dozen fiber providers on-site","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk"},"1598":{"description":"A regional telecom/colocation data center operated by 702 Communications serving the Fargo–Moorhead area, marketed as a Tier 2 facility with redundant power and colocation services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":7000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Hurricane Electric (IP transit POP).","verified_name":"702 Communications Data Center","verified_operator":"702 Communications","verified_owner":"Val-Ed Joint Venture, L.L.P. (dba 702 Communications)","cooling_type":"unknown","tier_level":"Tier 2 design standard; no public Uptime Institute certification found","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Moorhead Public Service (MPS)","tax_incentives":"","natural_hazard_zone":"low risk (minor citywide flood risk)"},"1599":{"description":"NETDOOR Data Center is NETDOOR (Internet Doorway, Inc.)’s colocation facility at 812 N State St in Jackson, Mississippi. It is listed by the operator and in third‑party directories as an active colocation site at that address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2886,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"NETDOOR Data Center / NETDOOR Co-location Facility","verified_operator":"Internet Doorway, Inc. (NETDOOR)","verified_owner":"Internet Doorway, Inc. (NETDOOR)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; diverse 10G ring infrastructure","num_buildings":1,"campus_acres":0,"utility_provider":"Entergy Mississippi","tax_incentives":"City of Jackson offers ad valorem tax exemptions and related programs citywide; no facility-specific incentive identified for 812 N State St.","natural_hazard_zone":"Regional exposure: Hinds County flood hazards and severe storm/tornado vulnerability; Pearl River flooding has impacted Jackson. Specific FEMA flood zone for 812 N State St not verified here."},"1600":{"description":"Lumen Jackson is a Lumen-operated network colocation data center at 111 East Capitol Street in downtown Jackson, MS, listed as an operational site offering colocation and internet access services, with approximately 4,716 sq ft total space (952 sq ft colo).","verified_status":"operational","power_capacity_mw":0,"total_sqft":4716,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Jackson","verified_operator":"Lumen Technologies","verified_owner":"Hertz Investment Group","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen","num_buildings":1,"campus_acres":0,"utility_provider":"Entergy Mississippi","tax_incentives":"Mississippi Data Center Enterprise (DCE) program: up to 10-year income, franchise, and sales/use tax exemptions for certified data centers meeting statutory thresholds (e.g., ~$20M investment and job creation requirements). Applicability to this facility not confirmed.","natural_hazard_zone":"Likely FEMA Flood Zone X (minimal risk) for downtown Jackson; regional hurricane exposure; near Pearl River floodplain (exact panel unconfirmed)."},"1601":{"description":"C Spire Ridgeland is a C Spire–operated colocation/data center in Ridgeland, Mississippi (at 1018 Highland Colony Pkwy), recognized by industry coverage as one of the company’s Mississippi data centers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":23800,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"C Spire Ridgeland Data Center","verified_operator":"C Spire","verified_owner":"300 RENAISSANCE LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"C Spire fiber (on-net); carrier-neutral status not published","num_buildings":1,"campus_acres":0,"utility_provider":"Entergy Mississippi","tax_incentives":"Colony Park/Renaissance TIF district applies at the development; documents reference 300 Renaissance LLC and 1018 Highland Colony Pkwy (C‑Spire Building).","natural_hazard_zone":"FEMA Flood Zone B/X (area of moderate to minimal flood hazard; not in the 100-year floodplain)"},"1602":{"description":"C Spire Hattiesburg (formerly MegaGate Broadband) is a colocation facility historically listed at 6184 US Hwy 98 that transitioned under C Spire after its 2014 acquisition of MegaGate. Current public listings place the C Spire/MegaGate data center presence at 4200 Mamie Street, with 6184 appearing to be a legacy or former MegaGate building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":23800,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"C Spire Hattiesburg Data Center, 6184 US Hwy 98, Hattiesburg, MS 39402","verified_operator":"C Spire","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1603":{"description":"A C Spire–operated business/data center location at 10394 Express Dr., Gulfport, MS that is listed by third‑party directories as the C‑Spire Gulfport Data Center; C Spire promotes data‑center services but does not publish Gulfport‑specific specs.","verified_status":"operational","power_capacity_mw":0,"total_sqft":6527,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"C Spire Gulfport Data Center","verified_operator":"C Spire (Cellular South, Inc.)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"C Spire owned-and-operated fiber network; no published carrier-neutral list found","num_buildings":0,"campus_acres":0,"utility_provider":"Mississippi Power","tax_incentives":"","natural_hazard_zone":"Hurricane-prone Gulf Coast location; FEMA flood zone for 10394 Express Dr not confirmed"},"1604":{"description":"CleanSpark Wiggins is CleanSpark’s bitcoin‑mining data center at 736 Hall St in Wiggins, Mississippi, a 10,500‑sq‑ft site added via a February 2024 acquisition and now in operation.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10500,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CleanSpark Wiggins Data Center","verified_operator":"CleanSpark","verified_owner":"CSRE Properties Mississippi, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":9,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Flood risk area (FEMA DFIRM zone undetermined); Gulf Coast severe-weather/hurricane exposure."},"1605":{"description":"CleanSpark Vicksburg is a CleanSpark-operated Bitcoin-mining data center at 1000 Rubber Way, Vicksburg, Mississippi. Industry directories and filings indicate a 17,500-sq-ft facility on about five acres, and CleanSpark reported the Mississippi acquisition closed effective Feb. 26–27, 2024 with operations already underway.","verified_status":"operational","power_capacity_mw":0,"total_sqft":17500,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CleanSpark Vicksburg","verified_operator":"CleanSpark, Inc.","verified_owner":"CSRE Properties Vicksburg, LLC (wholly owned subsidiary of CleanSpark, Inc.)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5,"utility_provider":"Entergy Mississippi, LLC","tax_incentives":"","natural_hazard_zone":"Flood risk present; exact FEMA FIRM zone undetermined"},"1606":{"description":"CleanSpark Meridian is a CleanSpark‑operated bitcoin‑mining/digital infrastructure facility at 2905 S Frontage Rd, Meridian, Mississippi. It spans roughly 5,500 sq ft on five acres and is one of the Mississippi sites CleanSpark brought online after its February 2024 acquisition.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5500,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CleanSpark Meridian","verified_operator":"CleanSpark","verified_owner":"CSRE Properties Mississippi, LLC (wholly owned subsidiary of CleanSpark, Inc.)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5,"utility_provider":"Mississippi Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zones B and X (moderate hazard; between 100-year and 500-year flood limits)"},"1607":{"description":"Amazon Web Services is building a hyperscale data center campus in Ridgeland, Mississippi, along West County Line Road; local reporting links the project to 1218 West County Line Road and it forms part of Amazon’s $25 billion Mississippi data center investment. The site is currently under construction.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"2028","construction_update":"Under construction as of May–June 2026; local reports note AWS is constructing the West County Line Road site and the project is in early stages with city water usage planned up to ~93 million gallons/year.","recent_news":"Apr 9, 2026: Amazon announced $25B in Mississippi data centers, including major investment in Madison County; May 7, 2026: WLBT highlighted about $63M in Ridgeland water/sewer upgrades tied to the project; April–June 2026: Ridgeland passed data-center zoning changes; Jun 9, 2026: Mississippi Today reported the Ridgeland site’s expected use of up to ~93 million gallons/year as construction progresses.","notable_tenants":"","verified_name":"AWS Ridgeland","verified_operator":"Amazon Web Services (AWS) / Amazon Data Services Inc.","verified_owner":"Amazon Data Services Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T; C Spire; Comcast Xfinity","num_buildings":0,"campus_acres":0,"utility_provider":"Entergy Mississippi","tax_incentives":"Project Atlas and Mississippi data center incentives: 10-year exemptions on income, franchise, and sales/use taxes for certified data centers; state/local support including infrastructure and related assistance tied to AWS’s multi-billion-dollar investment.","natural_hazard_zone":""},"1608":{"description":"Compass Meridian Campus is a hyperscale data center campus developed by Compass Datacenters at 303 W Malone Ranch Rd in Meridian, Mississippi, planned as a $10 billion, eight‑building project over eight years.","verified_status":"under-construction","power_capacity_mw":320,"total_sqft":2000000,"year_online":"2026","construction_update":"Feb 4, 2025: Groundbreaking for the $10B campus. Apr 22–23, 2026: First tenant (Corderill) announced with a $100M equipment investment.","recent_news":"Apr 22–23, 2026: Corderill LLC announced as a tenant at the Compass Meridian campus with at least a $100M equipment investment and job creation commitments.","notable_tenants":"Corderill LLC","verified_name":"Compass Meridian Campus","verified_operator":"Compass Datacenters","verified_owner":"Brookfield Infrastructure Partners and Ontario Teachers’ Pension Plan (via Compass Datacenters); parcel-level title entity not publicly determinable","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":8,"campus_acres":515,"utility_provider":"Mississippi Power Company","tax_incentives":"State assistance for site preparation and certification as a data center operator providing 10-year state income and franchise tax exemptions.","natural_hazard_zone":"low risk"},"1609":{"description":"A small colocation/data center operated by FirstLight Fiber at 527 Main Street in Damariscotta, Maine, listed by Inflect and aligned with FirstLight’s Maine data center/colocation offerings.","verified_status":"operational","power_capacity_mw":0,"total_sqft":6854,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"FirstLight Damariscotta","verified_operator":"FirstLight Fiber","verified_owner":"Wells-Hussey American Legion Post #42","cooling_type":"unknown","tier_level":"","fiber_providers":"FirstLight Fiber","num_buildings":0,"campus_acres":0.92,"utility_provider":"Central Maine Power (CMP)","tax_incentives":"","natural_hazard_zone":"Town-level exposure to tidal/river flooding; property-specific FEMA flood zone not confirmed."},"1610":{"description":"Verizon PTLCME is a Verizon‑operated data center/colocation location at 380 Cumberland Avenue in Portland, Maine, as listed by Inflect. The address is a mixed‑use building also used by Maine College of Art & Design, and no public sources disclose this site’s commissioning year or power capacity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":30786,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon PTLCME","verified_operator":"Verizon","verified_owner":"Sweetwater Partners, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon","num_buildings":1,"campus_acres":0,"utility_provider":"Central Maine Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (not in SFHA)"},"1611":{"description":"An operational Consolidated Communications telecom/data-center/interconnection facility at 45 Forest Avenue in Portland, Maine, listed with 3.0 MW of power. The site is the historic New England Telephone central office and the broader building was converted into the Erlang Apartments in 2023, while telecom infrastructure remains at the address.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Only the operator’s own Consolidated Communications – NNE (AS13977) is publicly listed at this facility; no third‑party anchor tenants are published.","verified_name":"Consolidated - 45 Forest Ave.","verified_operator":"Consolidated Communications, Inc.","verified_owner":"Redfern Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"Consolidated Communications - NNE (AS13977); interconnection/colocation facility; additional carriers not publicly listed.","num_buildings":1,"campus_acres":0.28,"utility_provider":"Central Maine Power (CMP)","tax_incentives":"Historic rehabilitation tax credits (federal/state) used in the building’s redevelopment.","natural_hazard_zone":"Parcel-specific FEMA zone not verified; regional context: Portland FEMA mapping available; Maine moderate seismic risk; Portland has moderate flood risk."},"1612":{"description":"A small FirstLight-operated carrier-class telecom/fiber regeneration facility at 9 Westland Avenue in Portland that hosts an NNENIX location. PeeringDB lists it as the “FirstLight Regen Hut” at this address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":462,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"NNENIX; EXA/GTT; Microsoft; Facebook; FirstLight; Hurricane Electric; EastLink.","verified_name":"FirstLight Regen Hut (also known as MFC Portland Regen Site); NNENIX Portland Location #1 at FirstLight’s 9 Westland Avenue telecom facility","verified_operator":"FirstLight Fiber (site host/operator); NNENIX operates the Internet Exchange at this site","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"FirstLight; Maine Fiber Company (MFC); diverse fiber entrances","num_buildings":1,"campus_acres":0,"utility_provider":"Central Maine Power (CMP)","tax_incentives":"","natural_hazard_zone":"unknown"},"1613":{"description":"Networkmaine / NNENIX — USM Science Building Room 235 is a telecom interconnection site for the Northern New England Neutral Internet Exchange located at 70 Falmouth Street, Room 235, Portland, ME, and operated by Networkmaine, a unit of the University of Maine System.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No room-specific tenants/customers are publicly disclosed. Exchange-level NNENIX participants publicly listed include Networkmaine (AS557; University of Maine System, MSLN, MaineREN), Hurricane Electric (AS6939), Packet Clearing House (AS3856), WoodyNet (AS42), McFarlane Associates, Pioneer Broadband, Axiom Technologies, Northern Light Healthcare/Eastern Maine Healthcare Systems, Infrastructure Management Associates, and Outer Reach Broadband; connecting networks include Consolidated Communications, Sebago Fiber and Wifi, and Clearline Communications.","verified_name":"NNENIX — University of Southern Maine Science Building, Room 235 (Networkmaine)","verified_operator":"Networkmaine","verified_owner":"University of Maine System / University of Southern Maine","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral (NNENIX)","num_buildings":1,"campus_acres":0,"utility_provider":"Central Maine Power (CMP)","tax_incentives":"","natural_hazard_zone":""},"1614":{"description":"Telecom central office and network hub at 59 Park Street in Bangor, operated by Consolidated Communications (now under the Fidium brand). The site is identified as a Consolidated Communications Central Office and has a long history as Bangor’s telephone exchange.","verified_status":"operational","power_capacity_mw":0,"total_sqft":82450,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Consolidated Communications Central Office, 59 Park Street, Bangor","verified_operator":"Fidium / Consolidated Communications","verified_owner":"Northern New England Telephone Operations LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"FirstLight dark fiber to NNENIX; Consolidated Communications/Fidium network","num_buildings":1,"campus_acres":2,"utility_provider":"Versant Power","tax_incentives":"","natural_hazard_zone":""},"1615":{"description":"Cogent Data Center - Kansas City is an operational colocation facility at 101 Holmes St, Kansas City, MO, operated by Cogent Communications. In May 2026, it was included among 10 Cogent data centers to be sold to an entity sponsored by I Squared Capital.","verified_status":"operational","power_capacity_mw":9.9,"total_sqft":67518,"year_online":"unknown","construction_update":"","recent_news":"May 26–27, 2026: Cogent announced a definitive agreement to sell 10 data centers for $225M to an entity sponsored by I Squared Capital, with closing expected on or after June 12, 2026 subject to HSR; the Kansas City facility at 101 Holmes St is included.","notable_tenants":"","verified_name":"Cogent Data Center - Kansas City","verified_operator":"Cogent Communications","verified_owner":"Cogent Fiber LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":2.68,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"Likely FEMA Flood Zone X (low flood risk)"},"1616":{"description":"KC1 / 1102 Grand is Netrality Data Centers’ carrier-hotel and colocation facility at 1102 Grand Blvd in Kansas City, owned and operated by Netrality and positioned as a network‑rich interconnection hub.","verified_status":"operational","power_capacity_mw":0,"total_sqft":110000,"year_online":"unknown","construction_update":"","recent_news":"Feb 17, 2026: Netrality announced Bridged Broadband’s Midwest network hub deployment at 1102 Grand, supporting its 800G optical network architecture.","notable_tenants":"Bridged Broadband — publicly announced deployment of its Midwest core network hub at 1102 Grand (Feb 2026).","verified_name":"KC1 - 1102 Grand Kansas City Data Center (Netrality 1102 Grand)","verified_operator":"Netrality Data Centers","verified_owner":"Netrality Properties (Netrality Data Centers); corporate parentage: Macquarie Infrastructure Partners/Macquarie Asset Management","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"Statewide Missouri Data Center Sales Tax Exemption program exists; no site-specific abatement confirmed for 1102 Grand.","natural_hazard_zone":"Outside 500-year flood plain (low flood risk)"},"1617":{"description":"An underground colocation and hybrid cloud data center operated by LightEdge Solutions at 9050 NE Underground Drive, Pillar 312 (SubTropolis Technology Center) in Kansas City, Missouri, notable for secure underground infrastructure with enterprise-grade capacity.","verified_status":"operational","power_capacity_mw":20,"total_sqft":95676,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"LightEdge Kansas City Data Center","verified_operator":"LightEdge Solutions","verified_owner":"Hunt Midwest","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; Meet-Me-Room; 12 on-net carriers","num_buildings":1,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"Missouri Data Center Sales and Use Tax Exemption Program","natural_hazard_zone":"Low risk (underground limestone site with claimed protection from tornado, flood, earthquake, and EMP)"},"1618":{"description":"TierPoint Kansas City (KCM) is a carrier-neutral colocation data center operated by TierPoint at 10801 N. Amity Avenue, Kansas City, MO, featuring redundant power infrastructure. The facility is the former Cosentry Kansas City site later incorporated into TierPoint’s portfolio.","verified_status":"operational","power_capacity_mw":0,"total_sqft":27000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Kansas City (KCDC)","verified_operator":"TierPoint","verified_owner":"TierPoint","cooling_type":"air-cooled","tier_level":"Tier III","fiber_providers":"Carrier-neutral; on-net providers include AT&T, CenturyLink (Lumen), Spectrum, and Unite Private Networks","num_buildings":1,"campus_acres":7.38,"utility_provider":"Evergy","tax_incentives":"Missouri Data Center Sales Tax Exemption Program (RSMo Section 144.810) provides sales and use tax exemptions on qualifying equipment and construction materials for eligible data centers.","natural_hazard_zone":"low risk"},"1619":{"description":"Lumen Kansas City 1 is a Lumen-operated telecom/colocation data center at 1100 Walnut Street, Kansas City, Missouri, with listings indicating 21,920 sq ft total space and about 2,363 sq ft of raised/colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":21920,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Kansas City 1 Data Center","verified_operator":"Lumen Technologies, Inc.","verified_owner":"Copaken Brooks, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.84,"utility_provider":"Evergy (Evergy Metro / Evergy Missouri Metro)","tax_incentives":"","natural_hazard_zone":""},"1620":{"description":"Lumen Kansas City 3 is a Lumen-operated telecom/colocation data center at 1212 E. 19th St, Kansas City, MO, totaling about 50,000 sq ft with roughly 10,681 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":50000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Kansas City 3","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"Missouri Data Center Sales Tax Exemption Program; Kansas City Enhanced Enterprise Zone (EEZ) property tax abatement on improvements","natural_hazard_zone":"Outside FEMA Special Flood Hazard Area (Zone X typical for downtown KCMO); low seismic zone (legacy Seismic Zone 1–2); regional exposure to severe storms/tornadoes"},"1621":{"description":"Iron Mountain Kansas City Data Center (KCM-1) is an operational Iron Mountain Data Centers colocation facility in an underground complex near downtown Kansas City, notable for its secure, 50,000 sq ft footprint and 3.9 MW capacity.","verified_status":"operational","power_capacity_mw":3.9,"total_sqft":50000,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Iron Mountain Kansas City Data Center (KCM-1)","verified_operator":"Iron Mountain Data Centers","verified_owner":"Hunt Midwest","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":22,"utility_provider":"Evergy (formerly KCPL)","tax_incentives":"Missouri Data Center Sales Tax Exemption Program","natural_hazard_zone":"low risk"},"1622":{"description":"Two-building, 259,111-sq-ft former Bank of America data center campus at 11155 N Airworld Dr in Kansas City, operated by Lincoln Rackhouse and now being redeveloped with Lambda as an AI factory, with an initial 24 MW deployment and potential to exceed 100 MW.","verified_status":"under-construction","power_capacity_mw":24,"total_sqft":259111,"year_online":"2026","construction_update":"2025-10-29: Missouri DNR issued Airworld Data Center–Kansas City de minimis construction permit No. 102025-010. 2026-05-30: Port KC delayed a vote on incentives for “Project Blitz.” 2026-06-03: Developer withdrew its Port KC bond application.","recent_news":"In late May–early June 2026, Port KC delayed action on incentives for the Project Blitz/Lambda AI data center and the developer withdrew its Port KC bond application amid community opposition.","notable_tenants":"Lambda Inc.","verified_name":"Lincoln Rackhouse KC (Airworld) Data Center","verified_operator":"Lambda, Inc.","verified_owner":"Lincoln Property Company and Principal Real Estate Investors (joint venture)","cooling_type":"chilled water","tier_level":"Not Uptime-certified; Tier III-like (distributed/iso-redundant) design","fiber_providers":"Carrier-neutral; providers include Lumen (Level 3), Unite Private Networks, and Bluebird Networks.","num_buildings":2,"campus_acres":38,"utility_provider":"Evergy (formerly KCP&L)","tax_incentives":"Missouri Data Center Sales Tax Exemption Program: state and local sales/use tax exemptions on construction/rehab materials, machinery/equipment purchases, and utility costs for qualifying data centers.","natural_hazard_zone":"Outside FEMA 500-year floodplain; moderate tornado exposure; low seismic risk."},"1623":{"description":"IP Pathways Kansas City is an operational colocation data center in the Oak Tower at 324 East 11th Street, Kansas City, MO, operated by IP Pathways. IP Pathways acquired the former Netsolus facility in August 2023 and the site offers approximately 11,000 sq ft of data center space.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":11000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"IP Pathways Kansas City","verified_operator":"IP Pathways","verified_owner":"Cherry Hill Properties LLC","cooling_type":"unknown","tier_level":"Tier II","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"Missouri Data Center Sales Tax Exemption Program available to qualifying data centers; participation by this facility not confirmed.","natural_hazard_zone":"Moderate regional flood risk; likely outside FEMA Special Flood Hazard Areas (Zone X typical for downtown); tornado exposure (Tornado Alley)."},"1624":{"description":"Contegix Mainmark is an operational Contegix colocation data center at 1627 Main St in Kansas City’s Mainmark Building, featuring 480V 1600A electrical service, Eaton Powerware UPS, Kohler diesel generator, Liebert PDUs, SSAE 16 Type II accreditation, and over 12,000 sq ft of raised-floor space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Contegix Mainmark","verified_operator":"Contegix","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":""},"1625":{"description":"Patmos KC1 (formerly Joe's Datacenter Kansas City) is an operational colocation facility at 1325 Tracy Ave in downtown Kansas City, now operated by Patmos following its 2023 acquisition of Joe’s Datacenter, and is listed around 4 MW of capacity.","verified_status":"operational","power_capacity_mw":4,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Patmos Kansas City (formerly Joe's Datacenter)","verified_operator":"Patmos Hosting, Inc.","verified_owner":"Patmos Hosting, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Patmos Network (AS19969) present; other carriers not disclosed","num_buildings":0,"campus_acres":0.37,"utility_provider":"","tax_incentives":"Eligible under Missouri Data Center Sales Tax Exemption Program (statewide program; no site-specific award found)","natural_hazard_zone":"Jackson County, MO: FEMA National Risk Index indicates 'Relatively Low' overall risk; address-specific FEMA flood zone not determined"},"1626":{"description":"1530 Swift is NOCIX’s carrier‑neutral colocation and hosting data center at 1530 Swift St in North Kansas City, Missouri, featuring diverse power feeds and robust network options as part of the NOCIX campus.","verified_status":"operational","power_capacity_mw":10,"total_sqft":150000,"year_online":"unknown","construction_update":"2024-06-28: NOCIX posted that Room 109 at 1530 Swift was nearing completion and accepting rack reservations.","recent_news":"","notable_tenants":"","verified_name":"1530 Swift","verified_operator":"NOCIX, LLC","verified_owner":"NOCIX, LLC","cooling_type":"air-cooled","tier_level":"Tier III / Tier IV (different sections)","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":6.71,"utility_provider":"Evergy","tax_incentives":"North Kansas City offers real estate tax abatement up to 100% for 10 years and up to 50% for an additional 15 years; Chapter 100 industrial development bond/tax abatement framework applicable; project-specific Chapter 100 consideration noted Jan 2023.","natural_hazard_zone":"Outside FEMA floodplain; within area protected by federal levee; primary local risk from severe thunderstorms."},"1627":{"description":"NOCIX Clay is a colocation data center operated by NOCIX at 201 E 16th Ave in North Kansas City, Missouri, supporting network interconnection on-site. The operator’s contact page and facility listings confirm the location and active operations.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"The adjacent 1530 Swift project states, “Construction is ongoing” and plans to combine Clay and Swift into a single campus of roughly 175,000 sq ft of data center space plus office space.","recent_news":"June 1, 2026: forum posts citing a NOCIX support message reported a major power failure affecting the Clay data center, with hours-long downtime discussed by customers.","notable_tenants":"","verified_name":"NOCIX Clay","verified_operator":"NOCIX","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"No active incentive verified for the Clay facility. Note: a Jan 3, 2023 North Kansas City Business Council update mentioned a Chapter 100 review for a “NOCIX project.”","natural_hazard_zone":"FEMA Flood Zone X (Area with Reduced Flood Risk Due to Levee); not in a Special Flood Hazard Area (SFHA_TF=F)."},"1628":{"description":"Former KC NAP edge/colocation data center at 2401 Holly St in Kansas City, built as a data-center facility in 2000; it went dark around 2016 and was renovated in 2020 into a photography studio, later listed for sale in 2024. Historically, the site offered about 1.2 MW of power.","verified_status":"decommissioned","power_capacity_mw":1.2,"total_sqft":5726,"year_online":"2000","construction_update":"Apr 4, 2024: Former data center listed for sale; the 5,726-sq-ft building had been fully renovated in 2020 into a photography studio. No data center construction underway.","recent_news":"","notable_tenants":"","verified_name":"8183 PRODUCTIONS (former Holly Data Center / KC NAP) – 2401 Holly St, Kansas City, MO","verified_operator":"8183 PRODUCTIONS (current occupant; no active data center operator)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral (historical; facility no longer operates as a data center)","num_buildings":1,"campus_acres":0.34,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1629":{"description":"Patmos AI Data Center is Patmos Hosting, Inc.’s high-density AI/HPC colocation campus at 1601 McGee St in downtown Kansas City, created by converting the former Kansas City Star printing press building.","verified_status":"operational","power_capacity_mw":35,"total_sqft":421112,"year_online":"2024","construction_update":"Jan 12, 2026: Patmos secured a $100M C-PACE loan to continue development of the Kansas City AI data center campus.","recent_news":"Jan 21, 2026: MetroWire reported the next redevelopment phase of the former KC Star press building into a $100M AI-powered tech campus, including plans to convert portions for multi-tenant technology offices, co-working, and event space.","notable_tenants":"Nebius (first client/tenant).","verified_name":"Patmos Center","verified_operator":"Patmos Hosting, Inc.","verified_owner":"Patmos Hosting, Inc.","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":5,"utility_provider":"Evergy","tax_incentives":"$100 million C-PACE clean energy financing; potential eligibility for Missouri Data Center Sales Tax Exemption Program.","natural_hazard_zone":"FEMA Flood Zone X (outside Special Flood Hazard Area) — likely"},"1630":{"description":"Edged Kansas City is an operational, multi-tenant colocation data center at 3420 N Arlington Avenue in Kansas City, Missouri, operated by Edged. It opened in December 2024 with 26 MW of capacity in a roughly 124,000 sq ft, waterless‑cooled facility.","verified_status":"operational","power_capacity_mw":26,"total_sqft":124000,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Edged Kansas City","verified_operator":"Edged Data Centers","verified_owner":"","cooling_type":"hybrid","tier_level":"Tier III design / concurrently maintainable (not Uptime-certified)","fiber_providers":"carrier-neutral; multiple carriers; four diverse fiber points of entry; two meet-me rooms","num_buildings":1,"campus_acres":50,"utility_provider":"Evergy","tax_incentives":"Missouri Data Center Sales Tax Exemption Program (sales/use tax exemption for qualifying data center construction or expansion).","natural_hazard_zone":"Outside 500-year floodplain (exact FEMA zone not verified)"},"1631":{"description":"Netrality’s 210 North Tucker is an operational, carrier-neutral colocation/carrier-hotel data center in downtown St. Louis, noted for its meet-me rooms and interconnection ecosystem operated by Netrality.","verified_status":"operational","power_capacity_mw":20,"total_sqft":442837,"year_online":"unknown","construction_update":"June 22, 2022: Two new data halls added totaling 11,600 SF and 1.2 MW of critical capacity.","recent_news":"","notable_tenants":"","verified_name":"210 North Tucker","verified_operator":"Netrality Data Centers","verified_owner":"Macquarie Asset Management (via Netrality Data Centers - 210 N Tucker Owner, LLC)","cooling_type":"chilled water","tier_level":"Tier III equivalent design (not formally Uptime-certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.8,"utility_provider":"Ameren Missouri","tax_incentives":"Missouri Data Center Sales Tax Exemption Program (statewide sales tax exemption for qualifying data centers)","natural_hazard_zone":"Outside 500-year floodplain; moderate seismic risk (St. Louis metro near New Madrid Seismic Zone)"},"1632":{"description":"H5 Data Centers’ St. Louis facility is an operational 36,000 SF colocation site at 710 N. Tucker Blvd., Suite 610, within the Globe Building carrier-hotel. It offers interconnection with access to 10 communications carriers in a 550,000 SF tech hub.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":36000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"H5 Data Centers St. Louis (MO01) – St. Louis Data Center at the Globe Building","verified_operator":"H5 Data Centers","verified_owner":"Globe Building Co.","cooling_type":"chilled water","tier_level":"Tier III design (not Uptime-certified)","fiber_providers":"carrier-neutral; on-net carriers include AT&T, Cogent, Lumen/Level 3, Zayo, US Signal, Wisper Internet, Google; access to FD-IX/MidWest-IX and Megaport","num_buildings":1,"campus_acres":0.627,"utility_provider":"Ameren Missouri (AmerenUE)","tax_incentives":"Potential eligibility under Missouri’s Data Center Sales Tax Exemption Program; St. Louis EEZ Board recommends abatements for businesses in the EEZ. No facility-specific approvals located.","natural_hazard_zone":"Seismic risk from New Madrid and Wabash Valley seismic zones; FEMA flood-zone designation for 710 N. Tucker not determined"},"1633":{"description":"Ascent St Louis STL1 is a wholesale/multi-tenant data center in the St. Louis area operated under the Ascent brand, originally announced as an $85M project with an 88,000-sq-ft shell and 10+ MVA utility service; Ascent is now part of Wesco following a December 2024 acquisition.","verified_status":"operational","power_capacity_mw":10,"total_sqft":88000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Ascent St Louis STL1","verified_operator":"Ascent (subsidiary of Wesco International since December 2024)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":15,"utility_provider":"Ameren Missouri","tax_incentives":"Missouri Data Center Sales Tax Exemption Program (state program offering exemptions for qualifying new or expanding data centers).","natural_hazard_zone":"FEMA Flood Zone X (low flood risk); hardened/tornado-resistant shell; moderate regional seismic risk (New Madrid area)."},"1634":{"description":"Lumen St. Louis 1 is an operational Lumen (legacy Level 3) telecom colocation data center located inside the multi-tenant building at 1015 Locust Street in downtown St. Louis, offering a total of 40,178 sq ft with dedicated colocation space. It is notable as a carrier-focused site within a larger office property that has maintained a long-term data center presence.","verified_status":"operational","power_capacity_mw":2,"total_sqft":40178,"year_online":"unknown","construction_update":"","recent_news":"Feb–May 2026: The 1015–1023 Locust building housing Lumen St. Louis 1 was marketed for sale; materials cite a new long-term lease with a credit-quality data center tenant on the 3rd floor and note Level 3 data center operations provide stable income.","notable_tenants":"","verified_name":"Lumen St. Louis 1","verified_operator":"Lumen Technologies","verified_owner":"Ownership group including ICO Development and Sovereign Partners (exact deeded entity not publicly identified)","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen/Level 3 on-net; diverse fiber connectivity; alternate carrier networks available","num_buildings":1,"campus_acres":0.64,"utility_provider":"Ameren Missouri","tax_incentives":"","natural_hazard_zone":"New Madrid Seismic Zone earthquake exposure; property-specific FEMA flood-zone designation not verified"},"1635":{"description":"TierPoint St. Louis – Olive is an operational TierPoint colocation data center at 1111 Olive Street in downtown St. Louis, offering 124,000+ total square feet with 11,000+ square feet of raised-floor space.","verified_status":"operational","power_capacity_mw":2,"total_sqft":124000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint St. Louis - Olive Data Center","verified_operator":"TierPoint","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Ameren Missouri","tax_incentives":"Missouri Data Center Sales Tax Exemption Program — state and local sales tax exemptions on construction/rehab materials, machinery/equipment, and utility costs for qualifying data centers.","natural_hazard_zone":"Regional seismic risk (New Madrid proximity) and tornado risk; FEMA 100/500-year flood zones are mapped within the City of St. Louis."},"1636":{"description":"TierPoint St. Louis - Millpark is an operational TierPoint data center at 2315 Millpark Drive, Suite 104, Maryland Heights, MO, offering colocation services.","verified_status":"operational","power_capacity_mw":2.175,"total_sqft":23000,"year_online":"2022","construction_update":"Aug 5, 2022: Construction completion of the facility at 2315 Millpark Drive, Maryland Heights, MO.","recent_news":"","notable_tenants":"World Wide Technology (anchor tenant)","verified_name":"TierPoint St. Louis - Millpark Data Center","verified_operator":"TierPoint","verified_owner":"StratCap","cooling_type":"unknown","tier_level":"Tier III equivalent design (not formally Uptime Institute certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":8.86,"utility_provider":"Ameren Missouri","tax_incentives":"Missouri Data Center Sales Tax Exemption Program (state sales and use tax exemptions for qualifying construction and equipment purchases)","natural_hazard_zone":"FEMA Flood Zone X"},"1637":{"description":"TierPoint St. Louis – Locust is an under‑development TierPoint colocation data center at 2300 Locust Street in downtown St. Louis, in a ~135,800 sq ft building, planned to scale to 20 MW of utility power.","verified_status":"under-construction","power_capacity_mw":20,"total_sqft":135800,"year_online":"unknown","construction_update":"Apr 9, 2026: City case CM26-00062 issued for Verizon/MCImetro fiber backhaul at 2300 Locust. The site remains under development; earlier milestones included Phase 1 buildout (22,600 sq ft; 5 MW utility) and utility expansion beginning July 2025 with a 12‑week service window.","recent_news":"Apr 9, 2026: City case CM26-00062 issued for Verizon/MCImetro fiber backhaul at 2300 Locust, supporting the data center build.","notable_tenants":"","verified_name":"TierPoint St. Louis - Locust Data Center (SLL)","verified_operator":"TierPoint","verified_owner":"TierPoint","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Ameren Missouri","tax_incentives":"Missouri Data Center Sales Tax Exemption Program (sales and use tax exemptions for data center construction and expansion).","natural_hazard_zone":"Regional seismic exposure (New Madrid Seismic Zone); otherwise low risk noted; no specific FEMA high-risk designation identified."},"1638":{"description":"Verizon St. Louis #2 is an operational Verizon-operated telecom/colocation data center at 2020 Westport Center Dr in Maryland Heights, Missouri; it is listed as the former XO St. Louis #2/XO Maryland Heights.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon St. Louis #2 Data Center","verified_operator":"Verizon Communications Inc.","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Verizon/XO backbone; on-net switching present (e.g., CLLIs MRHGMOGYDS2, MRHGMOQADS1) at 2020 Westport Center Dr.","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Missouri Data Center Sales and Use Tax Exemption Program available statewide; no facility-specific abatement confirmed.","natural_hazard_zone":"Regional exposure to tornado, flood risk, and New Madrid Seismic Zone earthquakes; address-specific FEMA flood zone not determined here."},"1639":{"description":"Centersquare St. Louis STL1 is an operational colocation data center at 587 James S. McDonnell Blvd in Hazelwood, Missouri, operated by Centersquare following the 2024 Evoque–Cyxtera combination and rebrand. It is a three‑story facility located a few miles from St. Louis Lambert International Airport.","verified_status":"operational","power_capacity_mw":8,"total_sqft":132456,"year_online":"1998","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare St. Louis STL1 (STL1-A)","verified_operator":"Centersquare","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; AT&T, Verizon Business","num_buildings":1,"campus_acres":5.4,"utility_provider":"Ameren Missouri","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate hazard); New Madrid Seismic Zone exposure"},"1640":{"description":"An enterprise technology and data center campus at 2200 Mastercard Blvd in O’Fallon, Missouri, operated by Mastercard and serving as its St. Louis Tech Hub and operations campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":537735,"year_online":"unknown","construction_update":"Energy infrastructure upgrades for the campus: on Jan 15, 2025, O’Fallon approved a ~43-acre solar panel farm for Mastercard; on Apr 22, 2025, Mastercard announced solar panel arrays next to the O’Fallon Tech Hub; by Jul 26, 2025, ground had been broken on the solar project.","recent_news":"","notable_tenants":"Mastercard only; no publicly disclosed third-party colocation tenants or anchor customers.","verified_name":"Mastercard St. Louis Tech Hub (Global Technology & Operations Headquarters)","verified_operator":"Mastercard","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":52,"utility_provider":"","tax_incentives":"Historic package totaling ~$44M (incl. highway improvements, Build Missouri tax credits, job training, business-facility credits, grants/loans, and an electricity rate discount). City materials cite Chapter 100 revenue bonds used to help Mastercard locate in O’Fallon.","natural_hazard_zone":""},"1641":{"description":"Brightspeed Jefferson is an operational Brightspeed central‑office telecommunications/office facility at 319 Madison St, Jefferson City, MO, totaling 59,010 sq ft. It dates to around 1970 and was marketed in Jan 2025 in a sale‑leaseback while providing fiber/cable support for the city.","verified_status":"operational","power_capacity_mw":0,"total_sqft":59010,"year_online":"1970","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Brightspeed Jefferson","verified_operator":"Brightspeed of Missouri, LLC (Brightspeed)","verified_owner":"Brightspeed of Missouri, LLC (Brightspeed) — marketed for sale-leaseback in 2025; no verified change of deed owner found","cooling_type":"unknown","tier_level":"","fiber_providers":"Brightspeed (central office; not publicly listed as carrier-neutral)","num_buildings":1,"campus_acres":0.76,"utility_provider":"Ameren Missouri","tax_incentives":"","natural_hazard_zone":""},"1642":{"description":"Brightspeed operates a telecom/data center facility at 625 Cherry St in Columbia, Missouri, identified as a central office and listed as a 97,540‑sq‑ft property.","verified_status":"operational","power_capacity_mw":0,"total_sqft":97540,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Brightspeed of Missouri, LLC (Brightspeed). No publicly named third‑party colocation tenants.","verified_name":"Brightspeed Columbia","verified_operator":"Brightspeed","verified_owner":"Avalair Group LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Brightspeed","num_buildings":1,"campus_acres":0.52,"utility_provider":"Columbia Water & Light","tax_incentives":"","natural_hazard_zone":"Likely FEMA Flood Zone X (minimal flood hazard) for downtown Columbia; moderate tornado exposure; low-to-moderate seismic risk (distant from New Madrid Seismic Zone)."},"1643":{"description":"Orion Data Centers is a small colocation facility in Columbia, Missouri, operated by Cybercon (Edge Centres) after a June 2023 acquisition. Current listings place it at Woodrail Center, 1000 W Nifong Blvd, with older directories still showing 500 E Walnut St.","verified_status":"operational","power_capacity_mw":0.23,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Orion Data Centers","verified_operator":"Cybercon (Edge Centres subsidiary)","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.79,"utility_provider":"City of Columbia Utilities","tax_incentives":"Missouri Data Center Sales Tax Exemption Program (state sales and use tax exemptions for qualifying data centers).","natural_hazard_zone":"Tornado-prone region; moderate seismic exposure from the New Madrid Seismic Zone."},"1644":{"description":"Lumen Columbia 1 is an operational telecom/colocation data center at 3201 Falling Leaf Ct, Columbia, Missouri, operated by Lumen Technologies. DataCenterMap lists 5,000 sq ft total space (with 1,771 sq ft of colocation space) and N+1 HVAC.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Columbia 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (Level 3); carrier-neutral (multiple DIA providers available at the address)","num_buildings":0,"campus_acres":1.37,"utility_provider":"Columbia Water & Light","tax_incentives":"","natural_hazard_zone":"FEMA flood zone not confirmed; Boone County FEMA 2017 floodplain mapping applies; county subject to New Madrid seismic shaking (MMI VII potential) and documented tornado exposure."},"1645":{"description":"Bluebird Underground Data Center is an operational underground colocation facility operated by Bluebird Network at 1904 Le Compte Rd in Springfield, Missouri, situated about 85 feet below ground in a former limestone mine and offering carrier-neutral connectivity including the Springfield Internet Exchange.","verified_status":"operational","power_capacity_mw":6,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Hosted guided public tours during Springfield Tech Week in March 2026 (Mar 23 and Mar 26); no expansion or regulatory updates announced in the last six months.","notable_tenants":"","verified_name":"Bluebird Underground Data Center","verified_operator":"Bluebird Fiber (Bluebird Network)","verified_owner":"Data center asset: Bluebird Network/Bluebird Fiber (portfolio company of Macquarie Infrastructure Partners); Underlying cavern/industrial-park real estate: Springfield Underground (Erlen Group).","cooling_type":"unknown","tier_level":"","fiber_providers":"Bluebird Fiber / Bluebird Network","num_buildings":0,"campus_acres":0,"utility_provider":"City Utilities of Springfield","tax_incentives":"Missouri Data Center Sales Tax Exemption Program is available statewide for qualifying new or expanded data centers; no site-specific award published.","natural_hazard_zone":"FEMA Flood Zone A at surface parcel; facility is 85 feet underground in limestone cavern (reduced exposure to surface weather)."},"1646":{"description":"Proposed redevelopment of the former Androscoggin/Pixelle paper mill at 300 Riley Rd in Jay, Maine into a large data center led by site developer JGT2 Redevelopment; Sentinel Data Centers had been the planned operator but withdrew in June 2026, leaving the project on hold.","verified_status":"planned","power_capacity_mw":82,"total_sqft":1000000,"year_online":"unknown","construction_update":"June 12, 2026: Town officials stated the project is currently on hold after the operator withdrew.","recent_news":"June 2026: After the planned operator withdrew, town officials said the Jay data center project is on hold while the developer seeks other interested parties.","notable_tenants":"","verified_name":"Sentinel Maine Data Center (also known as Jay Androscoggin Mill Data Center)","verified_operator":"Sentinel Data Centers (withdrew June 2026; no current operator)","verified_owner":"JGT2 Redevelopment LLC (JV of New Mill Capital Holdings, Infinity Asset Solutions, and Camjay LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":1000,"utility_provider":"Central Maine Power (CMP)","tax_incentives":"Maine LD 713 excludes data centers from the Business Equipment Tax Exemption (BETE) and the Dirigo Business Incentives Program.","natural_hazard_zone":"Potential flood risk due to proximity to the Androscoggin River; FEMA flood zone designation not confirmed."},"1647":{"description":"Carrier colocation site at 1 Federal St in Springfield Technology Park, publicly listed as Crown Castle Springfield (MA1) and separately as Lumen Springfield 1 at the same campus. Crown Castle provides the facility listing while Lumen operates a colocated network/datacenter presence at the address.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":4235,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Crown Castle Springfield (MA1) / Lumen Springfield 1","verified_operator":"Zayo Group and Lumen Technologies","verified_owner":"Springfield Technical Community College Assistance Corporation (STCC Assistance Corporation)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":8,"campus_acres":15.3,"utility_provider":"Eversource Energy","tax_incentives":"City of Springfield Tax Increment Financing (TIF) program available; $2.55M MassDevelopment tax-exempt bond (2023) for Springfield Technology Park renovations.","natural_hazard_zone":"Moderate flood risk (Federal Street shows notable flood risk; consult FEMA MSC for site-specific zone)."},"1648":{"description":"Cogent Data Center – Springfield is a Cogent Communications colocation facility at 400 Taylor Street, Springfield, MA, offering 31,473 sq ft of space and 5.00 MW of total power. It provides Internet, VPN, Transport, and Colocation services.","verified_status":"operational","power_capacity_mw":5,"total_sqft":31473,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Springfield Data Center","verified_operator":"Cogent Communications, Inc.","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; Cogent, Neron-Fiber Tech, Fibertech, Brooks VZ, Brooks Fiber","num_buildings":0,"campus_acres":1.9,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":""},"1649":{"description":"Carrier-neutral telecom colocation/fiber facility at 474 Main St, Worcester, operated by Crown Castle (formerly Lightower), with a Lumen presence at the same address.","verified_status":"operational","power_capacity_mw":1,"total_sqft":36000,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"AccessPlus Communications; Cogent Communications; HOOP7NETWORK; OSHEAN; Shrewsbury Electric & Cable Operations; Worcester Polytechnic Institute","verified_name":"Crown Castle Worcester (MA3)","verified_operator":"Crown Castle","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Crown Castle fiber; Lumen","num_buildings":1,"campus_acres":0,"utility_provider":"National Grid","tax_incentives":"No facility-specific incentives identified; Massachusetts data center sales/use tax exemption paused in June 2026.","natural_hazard_zone":"FEMA flood zone for 474 Main St not confirmed; Worcester flood map update underway—consult FEMA MSC for address-specific maps."},"1650":{"description":"Cogent Communications operates an operational colocation data center at 52 LaGrange St, Worcester, MA, offering Internet, VPN, Transport, and Colocation services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8250,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Worcester","verified_operator":"Cogent Communications, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; Cogent and other carriers available; ports up to 100GE; wave-enabled","num_buildings":0,"campus_acres":0,"utility_provider":"National Grid","tax_incentives":"","natural_hazard_zone":"Address-level FEMA zone not determined; citywide exposure to flood, hurricane/tropical storm, winter storm, and earthquake hazards"},"1651":{"description":"TierPoint Boston–Marlborough is an operational colocation data center at 34 St. Martin Drive in Marlborough, Massachusetts, operated by TierPoint, with 140,000+ total sq ft and 50,000+ sq ft of raised floor. It sits within a 206,340‑SF building that Menlo Equities acquired in June 2019.","verified_status":"operational","power_capacity_mw":14,"total_sqft":140000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Boston - Marlborough Data Center (MRL)","verified_operator":"TierPoint","verified_owner":"Menlo Equities / Menlo Digital","cooling_type":"air-cooled","tier_level":"Tier III standard infrastructure (not found as Uptime Institute certified)","fiber_providers":"carrier-neutral; multiple diverse fiber access; listed providers include AT&T, CenturyLink/Lumen, Comcast, Charter, Cox, Level 3, Lightower/Crown Castle, One Communications, RCN, Sidera Networks, Verizon, Veroxity","num_buildings":1,"campus_acres":14.59,"utility_provider":"Eversource Energy (NSTAR Electric d/b/a Eversource Energy)","tax_incentives":"","natural_hazard_zone":"Outside 100- and 500-year flood plain; Seismic Zone 2A"},"1652":{"description":"365 Data Centers operates a carrier‑neutral colocation data center at 250 Locke Drive in Marlborough, Massachusetts, totaling 64,800 sq ft and supported by 2.8 MW of power.","verified_status":"operational","power_capacity_mw":2.8,"total_sqft":64800,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers Marlborough Data Center","verified_operator":"365 Data Centers","verified_owner":"Landmark Dividend (via Landmark Infrastructure), real estate owner","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral: AT&T, Cogent, Comcast, Crown Castle (Lightower), Verizon (MCI/Verizon Business)","num_buildings":1,"campus_acres":4.83,"utility_provider":"National Grid (Massachusetts Electric Company)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (Area of Minimal Flood Hazard)"},"1653":{"description":"Synoptek - Boston Data Center is a Synoptek-operated colocation facility in Marlborough, Massachusetts, located at 313 Boston Post Rd W, offering colocation services to customers.","verified_status":"operational","power_capacity_mw":10,"total_sqft":1000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Synoptek - Boston Data Center","verified_operator":"Synoptek","verified_owner":"Post Road Investments LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5.15,"utility_provider":"National Grid","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone A"},"1654":{"description":"Enterprise data center at 555 Forest St, Marlborough, MA, built for Partners HealthCare (now Mass General Brigham) to support healthcare IT operations; initially ~65,000 SF with reported expansion.","verified_status":"operational","power_capacity_mw":0,"total_sqft":118128,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Mass General Brigham Data Center (formerly Partners HealthCare Data Center)","verified_operator":"Mass General Brigham","verified_owner":"Mass General Brigham","cooling_type":"unknown","tier_level":"Tier III+ design standard; no Uptime Institute certification found","fiber_providers":"Multiple WAN feeds reported; specific fiber/network providers not publicly disclosed","num_buildings":1,"campus_acres":22.5,"utility_provider":"National Grid","tax_incentives":"Property is associated with a tax-exempt healthcare system; no project-specific TIF/abatement identified for this facility","natural_hazard_zone":"FEMA Flood Zone X (outside 100- and 500-year floodplain); Seismic Zone 2A"},"1655":{"description":"Operational colocation data center operated by Congruity360 at 456 Bedford Street, Fall River, MA; the facility occupies a converted historic mill (Granite Block) with roughly 199,902 sq ft of building footprint.","verified_status":"operational","power_capacity_mw":4,"total_sqft":199902,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Congruity360 Granite Block Fall River Data Center","verified_operator":"Congruity360","verified_owner":"Rhino Capital Advisors (via 2020 sale-leaseback)","cooling_type":"unknown","tier_level":"","fiber_providers":"Four fiber‑optic lines from three Internet providers; specific provider names not publicly disclosed","num_buildings":1,"campus_acres":3.3,"utility_provider":"National Grid / Massachusetts Electric Company","tax_incentives":"","natural_hazard_zone":"Moderate flood risk (city of Fall River)"},"1656":{"description":"MegaNet Massachusetts Datacenter is an operational colocation facility operated by MegaNet Communications in Fall River, Massachusetts, described as the company’s primary corporate data center supporting colocation from 1U to full racks. Current listings place it at 187 Plymouth Ave (older directories still show 315 Pleasant St), and GoDataCenters lists a 10 MW capacity.","verified_status":"operational","power_capacity_mw":10,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"MegaNet Massachusetts Datacenter","verified_operator":"MegaNet Communications","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier 3 (directory-listed; not Uptime-certified)","fiber_providers":"MegaNet Communications backbone","num_buildings":1,"campus_acres":0,"utility_provider":"National Grid","tax_incentives":"None identified specific to this facility; statewide data center tax incentive halted, and local TIF exists but no site-specific approval found.","natural_hazard_zone":"Localized flash-flood exposure along Plymouth Avenue"},"1657":{"description":"Telecom/colocation data center at 300 Bent Street in Cambridge, MA, operated by Lumen (formerly Level 3), with Lightpath providing on-net Data Center Connect services at the site; listings show about 40,000 sq ft total with 8,760 sq ft of raised floor.","verified_status":"operational","power_capacity_mw":0,"total_sqft":40000,"year_online":"unknown","construction_update":"","recent_news":"No facility-specific updates identified in the last six months; a LoopNet listing on May 15, 2026 advertised flex space for lease at 300 Bent Street.","notable_tenants":"","verified_name":"Lumen Cambridge 1 (300 Bent Street) / 300 Bent Street Data Center","verified_operator":"Lumen Technologies; Lightpath (legacy Cambridge Network Solutions) presence at 300 Bent Street","verified_owner":"C.E.M. Realty Trust (Paul R. Lohnes, Trustee; c/o Laverty Lohnes Properties)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen/Level 3, Lightpath/Lightower, Cogent, Verizon Business, Zayo, XO Communications, AT&T","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"Elevated flood risk (East Cambridge severe); exact FEMA zone for 300 Bent St not confirmed"},"1658":{"description":"Verizon Boston #2 is a Verizon Communications-operated telecom/colocation data center at 89 Fulkerson St, 1st Floor, Cambridge, MA, listed at about 30,400 sq ft. The site traces back to the former XO Communications “Boston #2” facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":30400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Boston #2","verified_operator":"Verizon Communications","verified_owner":"Laverty Lohnes Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon (XO Communications)","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"Massachusetts Qualified Data Center Sales and Use Tax Exemption (20-year). Applications paused as of June 2026; at 30,400 sq ft, this facility is likely below the 100,000 sq ft minimum to qualify.","natural_hazard_zone":"Outside 100-year and 500-year FEMA flood plain; Seismic Zone 2A"},"1659":{"description":"Fitchburg Fiber 166 Boulder is a small carrier‑neutral colocation/data‑center suite at 166 Boulder Drive in Fitchburg, Massachusetts, operated by Fitchburg Fiber. Listings and the operator’s page indicate about 1,200 sq ft of whitespace with colocation services (partial/full cabinets), remote hands, and on‑site backup power.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":1200,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fitchburg Fiber 166 Boulder","verified_operator":"Fitchburg Fiber","verified_owner":"Fitchburg Redevelopment Authority","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Unitil / Fitchburg Gas and Electric Light Company","tax_incentives":"","natural_hazard_zone":""},"1660":{"description":"A former enterprise data-center/office at 60 Codman Hill Road (previously used by Interactive Data Corp.), the property is no longer an active data center and is now marketed and used as industrial/flex space, including a 100,000 SF lease by Crossroads Community Church.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":100266,"year_online":"unknown","construction_update":"March 2024: Contractor write-up describes assessing highest and best use and repurposing of the former Interactive Data Center HQ at 60 Codman Hill Road.","recent_news":"June 2, 2026: LoopNet shows the property as industrial space for lease (50,000 SF on the first floor), with no announcements of a new data-center tenant or expansion.","notable_tenants":"Crossroads Community Church (current tenant; ~100,000 SF lease, Aug 27, 2025). Former occupant: Interactive Data Corp. No current data-center tenants publicly disclosed.","verified_name":"60 Codman Hill Road","verified_operator":"No active data center operator (repurposed/for lease); formerly Interactive Data Corp.","verified_owner":"Boxborough Hospitality LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":9.09,"utility_provider":"Littleton Electric Light Department","tax_incentives":"","natural_hazard_zone":"Low flood risk; BVW south of building and outside mapped 100‑year floodplain."},"1661":{"description":"CoreSite BO1 is an operational colocation and interconnection data center at 70 Inner Belt Road in Somerville (Boston market) operated by CoreSite. The facility offers more than 273,000 square feet and is positioned as one of New England’s most interconnected data centers.","verified_status":"operational","power_capacity_mw":10.7,"total_sqft":273180,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CoreSite BO1 - Boston Data Center","verified_operator":"CoreSite","verified_owner":"CoreSite Real Estate 70 Inner Belt, LLC (CoreSite/American Tower)","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; examples include Arelion (Twelve99), Astound, Cogent, GTT, Hurricane Electric, Zayo, Megaport, PacketFabric, TOWARDEX.","num_buildings":1,"campus_acres":6.2,"utility_provider":"Eversource","tax_incentives":"Massachusetts Qualified Data Center Sales and Use Tax Exemption exists; BO1 certification not found; state has paused accepting new applications pending updated standards.","natural_hazard_zone":"Outside 100- and 500-year FEMA floodplains; Seismic Zone 2A; localized urban/drainage flooding exposure noted in city planning; address listed as a hazardous-material site."},"1662":{"description":"Evocative BOS1 is an operational colocation data center at 50 Inner Belt Road in Somerville, MA, operated by Evocative since its 2022 acquisition of INAP data center assets; the site is also known historically as Internap/INAP Boston and HorizonIQ Boston 2.","verified_status":"operational","power_capacity_mw":6,"total_sqft":46000,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Evocative BOS1","verified_operator":"Evocative","verified_owner":"Penna Realty Associates, LLC","cooling_type":"chilled water","tier_level":"Tier III","fiber_providers":"Carrier-neutral; on-net examples include Cogent and Level 3 (Lumen).","num_buildings":1,"campus_acres":2.3,"utility_provider":"Eversource Energy (formerly NSTAR)","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (outside 100- and 500-year floodplains); Seismic Zone 2A"},"1663":{"description":"Markley One Summer Street is Markley Group’s flagship, carrier-neutral colocation and carrier‑hotel facility in downtown Boston, widely recognized as Boston’s carrier hotel and the largest multi‑tenant telecommunications facility in New England.","verified_status":"operational","power_capacity_mw":30,"total_sqft":920000,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"AWS Direct Connect (New England’s only AWS DX location), Boston Internet Exchange (Boston IX), and DataBank’s BOS1 suite at 1 Summer Street.","verified_name":"Markley One Summer Street","verified_operator":"Markley Group","verified_owner":"ONE SUMMER STREET LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; BosIX; AWS Direct Connect; Azure; Google Cloud Interconnect; 3x dark-fiber routes to One Summer Street","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"None confirmed for this site; Massachusetts paused state data center sales/use tax incentive applications as of 2026-06-26.","natural_hazard_zone":"unknown"},"1664":{"description":"Verizon Boston is an operational Verizon Communications telecom/colocation facility at 451 D Street, 3rd Floor, Boston, within the 451 D Street multi-tenant telco/office building that hosts multiple telecom service providers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Boston (451 D Street)","verified_operator":"Verizon Communications Inc.","verified_owner":"GI Partners; Related Fund Management (minority interest); Related Beal (property manager)","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon; Verizon Business; Light Tower; AT&T; Cogent","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"Coastal flood exposure in Boston Seaport; exact FEMA flood zone not determined"},"1665":{"description":"Crown Castle Boston is a telecom/colocation site at 56 Roland St (Charlestown/Boston) operated by Crown Castle, originating from legacy Lightower/RCN Metro assets. It appears to be a colocated presence within the RS/56 multi-tenant office/R&D property rather than a standalone data-center building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Crown Castle Boston","verified_operator":"Zayo Group","verified_owner":"Paradigm Direct Roland, LLC (c/o Paradigm Properties, LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications; Zayo","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"Charlestown neighborhood has major coastal flood risk; FEMA mapping applies, but a specific zone for 56 Roland St was not confirmed."},"1666":{"description":"TierPoint Boston–Charlestown is a carrier-neutral colocation data center operated by TierPoint at 500 Rutherford Avenue in Charlestown, MA. It is a fully built-out raised-floor site within the Hood Park/500 Rutherford Avenue building.","verified_status":"operational","power_capacity_mw":1.823,"total_sqft":25000,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Boston-Charlestown","verified_operator":"TierPoint","verified_owner":"Hood Park LLC","cooling_type":"unknown","tier_level":"Tier II equivalent","fiber_providers":"","num_buildings":1,"campus_acres":6.04,"utility_provider":"Eversource","tax_incentives":"Massachusetts Qualified Data Center sales and use tax exemption is in effect, but new applications are paused as of June 2026 pending updated framework.","natural_hazard_zone":"Moderate coastal flood exposure; low seismic exposure. Exact FEMA flood zone for 500 Rutherford Ave not specified."},"1667":{"description":"Iron Mountain BOS-1 is an operational colocation data center in Northborough, MA, operated by Iron Mountain, offering enterprise-grade services in a 22,000 sq ft facility. It is LEED Gold-certified and specified by the operator with up to 3.6 MW of power.","verified_status":"operational","power_capacity_mw":3.6,"total_sqft":22000,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"Skillsoft","verified_name":"Iron Mountain BOS-1 (Boston Data Center)","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Data Centers LLC (subsidiary of Iron Mountain Incorporated, a REIT)","cooling_type":"unknown","tier_level":"Tier III design","fiber_providers":"","num_buildings":1,"campus_acres":58,"utility_provider":"","tax_incentives":"Massachusetts’ data center sales/use-tax exemption program exists but is currently halted pending new guardrails; no BOS-1-specific local abatement identified.","natural_hazard_zone":"Rated for Category 4 hurricane wind loads; town-level flood risk associated with FEMA 100-year flood areas; exact FEMA parcel zone not confirmed."},"1668":{"description":"Digital Realty BOS14 is an operational, three‑story colocation data center at 128 First Avenue in Needham, Massachusetts, with about 280,000 sq ft of leasable space; third‑party sources indicate roughly 30 MW total power and ~13 MW of critical IT load.","verified_status":"operational","power_capacity_mw":30,"total_sqft":280000,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty BOS14","verified_operator":"Digital Realty","verified_owner":"Needham Primary Condominium Trust (Digital Realty Trust affiliate)","cooling_type":"unknown","tier_level":"Tier III equivalent","fiber_providers":"Crown Castle, Lightpath, Zayo, Megaport, LightWave Networks, TOWARDEX, Cogent Communications, Packetsurge","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"Outside 100- and 500-year floodplain; Seismic Zone 2A"},"1669":{"description":"Digital Realty BOS16 was a purpose-built colocation data center at 105 Cabot Street in Needham, MA, featuring a three‑story, 130,000‑s/f building. In March 2026, the property was sold to R.J. Kelly for conversion to self‑storage, ending its role as a data center.","verified_status":"decommissioned","power_capacity_mw":10,"total_sqft":130000,"year_online":"2013","construction_update":"May 19, 2026: Needham Planning Board agenda lists a request to renovate the interior of the existing building for self‑storage.","recent_news":"March 2026: R.J. Kelly acquired 105 Cabot Street from Digital Realty Trust for $6.4M with plans to convert the roughly 130,000‑s.f. building to self‑storage.","notable_tenants":"","verified_name":"Digital Realty Boston BOS16 (closed)","verified_operator":"","verified_owner":"RJ Kelly Acquisition, LLC (R.J. Kelly)","cooling_type":"unknown","tier_level":"Tier III-equivalent (concurrently maintainable); not Uptime-certified","fiber_providers":"carrier-neutral; connectivity includes MASS-IX and TOWARDEX","num_buildings":1,"campus_acres":2.22,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"Outside 100- and 500-year floodplains; Seismic Zone 2A"},"1670":{"description":"Equinix BO2 is an operational Equinix IBX colocation data center at 41 Alexander Road in Billerica (Boston metro), positioned for enterprises, technology, and biotech firms, with approximately 75,500 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":9.25,"total_sqft":108336,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Boston BO2 (BO2 Boston IBX Data Center)","verified_operator":"Equinix","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":16.67,"utility_provider":"National Grid","tax_incentives":"Massachusetts’ Qualified Data Center sales/use tax exemption program is currently paused from accepting applications pending new guardrails; no BO2-specific incentive identified.","natural_hazard_zone":"Above 500-year flood plain / FEMA Zones B/X vicinity (low to moderate flood risk)"},"1671":{"description":"EdgeConneX EDCBOS01 (BOS01) is an operational EdgeConneX edge colocation facility at 22 Linnell Circle in Billerica serving the Boston market, with a 54,700 sq ft footprint and current 1.5 MW (N+1) IT load with plans to 4.5 MW. The site was established in 2015.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":54700,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX Boston (EDCBOS01)","verified_operator":"EdgeConneX","verified_owner":"EQT Infrastructure (owner of EdgeConneX)","cooling_type":"air-cooled","tier_level":"Tier III design","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource Energy","tax_incentives":"Massachusetts Qualified Data Center Sales and Use Tax Exemption (applications paused in 2026 pending updated framework)","natural_hazard_zone":"FEMA Flood Zone B/X (inferred from adjacent parcel; verify address-specific NFHL)"},"1672":{"description":"Prov.net / IronTrust Networks Boston North is an operational colocation data center at 187 Billerica Road, Chelmsford, MA, operated by Prov.net/IronTrust Networks (Alpha3 Cloud) with about 8,000 sq ft total space, including roughly 5,000 sq ft of colo.","verified_status":"operational","power_capacity_mw":1,"total_sqft":8000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Prov.net Boston North","verified_operator":"Alpha3 Cloud / Provdotnet (Prov.net / IronTrust Networks)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5.12,"utility_provider":"National Grid","tax_incentives":"","natural_hazard_zone":""},"1673":{"description":"Csquare/Centersquare’s BOS1 Waltham Data Center Campus is an operational colocation facility at 580 Winter Street in Waltham, MA serving the Boston market’s Route 128 tech corridor.","verified_status":"operational","power_capacity_mw":16,"total_sqft":165968,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare Waltham BOS1 Data Center Campus (BOS1-A at 580 Winter Street; BOS1-B at 115 Second Avenue)","verified_operator":"Csquare / Centersquare","verified_owner":"","cooling_type":"chilled water","tier_level":"Tier 3 equivalent","fiber_providers":"carrier-neutral; on-net examples include Cogent; additional providers available via the campus ecosystem","num_buildings":2,"campus_acres":0,"utility_provider":"Eversource (legacy NSTAR)","tax_incentives":"","natural_hazard_zone":"outside FEMA-designated flood hazard areas; reported outside 100-year floodplain"},"1674":{"description":"115 Second Avenue (Waltham/Boston) is a two‑storey colocation data center owned by Mapletree Industrial Trust and operated/marketed by Centersquare (Csquare) as BOS1‑B/Waltham BOS1, serving Boston’s Route 128 tech corridor.","verified_status":"operational","power_capacity_mw":3.38,"total_sqft":66730,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Centersquare (Csquare) — facility operator/tenant; specific end-customer anchor tenants are not publicly disclosed.","verified_name":"115 2nd - Digital Realty","verified_operator":"Centersquare Data Centers","verified_owner":"Mapletree Industrial Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; Sidera T-Systems, Crown Castle, Comcast","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource Energy","tax_incentives":"Massachusetts offers a 100% sales and use tax exemption for qualified data center purchases; acceptance of new applications was paused in June 2026 pending stronger guardrails.","natural_hazard_zone":"Outside the 100-year FEMA floodplain"},"1675":{"description":"600 Winter Street is a Waltham, MA colocation/data-center facility owned by Digital Realty, historically operating since 1998 and referenced by carriers as Centersquare BOS1-C (formerly Cyxtera BO1). In mid‑2026 the entire building is marketed for lease while carrier listings still show the site as a service location.","verified_status":"operational","power_capacity_mw":0,"total_sqft":30400,"year_online":"1998","construction_update":"","recent_news":"The entire building at 600 Winter St was marketed for lease in mid‑June 2026 on LoopNet, with additional listings showing it available for lease.","notable_tenants":"Historical: Savvis (building was 100% leased to Savvis in 2006). Current operator lineage referenced as Csquare BOS1-C (formerly Cyxtera BO1); no public anchor end-customer named.","verified_name":"Csquare - Boston BOS1-C (600 Winter Street)","verified_operator":"Csquare (Centersquare Data Centers)","verified_owner":"Digital Realty Trust (landlord entity: Digital Winter, LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource Energy (NSTAR)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X; outside the 100-year floodplain"},"1676":{"description":"FirstLight’s Waltham (former ColoSpace) is an operational colocation data center at 265 Winter Street in Waltham, Massachusetts, now operated by FirstLight following its acquisition of ColoSpace in December 2019. The site offers enterprise colocation in the Route 128 corridor.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"FirstLight Waltham Data Center (formerly ColoSpace Waltham Data Center)","verified_operator":"FirstLight Fiber","verified_owner":"245 Winter Street Acquisition LLC","cooling_type":"unknown","tier_level":"Tier 2 equivalent (no Uptime certification found)","fiber_providers":"carrier-neutral; cross-connects to 20+ regional carriers/fiber networks","num_buildings":0,"campus_acres":10.18,"utility_provider":"Eversource Energy","tax_incentives":"Massachusetts Qualified Data Center sales/use tax exemption exists but is currently paused; no site-specific local abatement located.","natural_hazard_zone":"FEMA Zone X (minimal flood risk)"},"1677":{"description":"Cogent Communications operates an office and colocation data center at 100 Fifth Ave, Suite 1030, Waltham, MA, offering 8,400 sq ft with 42U cabinets/private cages and standard critical infrastructure. Cogent’s service-locations database also lists a “Cogent Data Center – Boston” at 300 5th Ave in Waltham.","verified_status":"operational","power_capacity_mw":0.6,"total_sqft":8400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Boston - Waltham Office & Data Center","verified_operator":"Cogent Communications","verified_owner":"NWALP PHOP Property Owner LLC (c/o Northwood Investors LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent, Verizon","num_buildings":1,"campus_acres":4.45,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"Outside FEMA-designated flood hazard area; Waltham area has moderate flood risk"},"1678":{"description":"Operational colocation data center at 486 Arsenal Way, Watertown, MA, operated by Csquare (Centersquare) as part of the Watertown BOS4 campus. A small BOS4‑A marketplace listing shows a 205 sq ft suite, while the broader BOS4 facility is significantly larger.","verified_status":"operational","power_capacity_mw":19.1,"total_sqft":201590,"year_online":"2002","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare: BOS4-A Watertown Data Center","verified_operator":"Csquare","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":""},"1679":{"description":"FirstLight Rockland Data Center is an operational colocation facility operated by FirstLight at 1050 Hingham St, Rockland, Massachusetts, housed in a building owned/managed by A.W. Perry and positioned for production and disaster recovery deployments.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"FirstLight Rockland Data Center","verified_operator":"FirstLight","verified_owner":"A.W. Perry","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral with multiple providers; connections include Mass IX","num_buildings":1,"campus_acres":4.4,"utility_provider":"National Grid","tax_incentives":"","natural_hazard_zone":"unknown"},"1680":{"description":"55 Middlesex Turnpike is a single-story data center/colocation facility in Bedford, Massachusetts, now operated by Camber Development following its purchase of the former Digital Realty site in September 2025. The property totals about 106,000 square feet.","verified_status":"operational","power_capacity_mw":10,"total_sqft":106000,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"55 Middlesex Turnpike (formerly Digital Realty BOS13)","verified_operator":"Camber Development","verified_owner":"Camber Development","cooling_type":"chilled water","tier_level":"Tier III","fiber_providers":"Crown Castle, Lumen Technologies, Zayo, Comcast, XO Communications, RCN","num_buildings":1,"campus_acres":14.53,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"Outside 100-year and 500-year FEMA floodplain (Zone X); Seismic Zone 2A"},"1681":{"description":"Lumen Minneapolis 1 is a Lumen Technologies telecom/colocation data center suite at 222 South 9th Street (Suite 700) inside the Two22 office tower in downtown Minneapolis, with listed facility specifications and redundant power infrastructure. Public listings identify Lumen as the operator of this active network and colocation site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8791,"year_online":"unknown","construction_update":"","recent_news":"No facility-specific updates identified in the last six months. Minneapolis approved a six-month pause on establishing, re-establishing, or expanding data centers on June 25, 2026.","notable_tenants":"","verified_name":"Lumen Minneapolis 1","verified_operator":"Lumen Technologies","verified_owner":"Oaktree Capital Management affiliate (lender-owned as of 2025)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.75,"utility_provider":"Xcel Energy / Northern States Power","tax_incentives":"Minnesota provides a statewide data center sales-tax exemption program, but no public record confirms this specific suite at 222 S 9th St as a qualified recipient.","natural_hazard_zone":""},"1682":{"description":"Lumen operates a telecom/colocation data center at 715 N 2nd Street in Minneapolis, commonly listed as “Lumen Minneapolis 3,” totaling 14,200 sq ft with 4,686 sq ft of colo space. A separate listing places “Minneapolis 2” at 511 11th Ave S, and Lumen’s rapid routes 20‑day SLA site list includes “MINNEAPOLIS 715 N 2nd ST,” confirming active network presence.","verified_status":"operational","power_capacity_mw":0,"total_sqft":14200,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Minneapolis 2","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (Level 3)","num_buildings":1,"campus_acres":0.59,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Center sales tax exemption program (statewide; eligibility required; applicability to this facility not confirmed).","natural_hazard_zone":"Low risk (North Loop minor flood risk; very low seismic risk)"},"1683":{"description":"A small Lumen (formerly CenturyLink) telecom/colocation and NOC site at 600 Stinson Blvd NE in Minneapolis, listed in directories and mapping as a Lumen/CenturyLink facility at that address.","verified_status":"operational","power_capacity_mw":0.375,"total_sqft":7088,"year_online":"unknown","construction_update":"","recent_news":"No facility-specific developments found in the last six months. Related address-level news: the office building at 600 Stinson Blvd NE (UCare headquarters) was listed for sale in Feb 2026.","notable_tenants":"","verified_name":"CenturyLink - Minneapolis Data Center","verified_operator":"Lumen Technologies","verified_owner":"UCare Minnesota","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Centers sales tax exemption exists statewide; no evidence this specific site qualified.","natural_hazard_zone":"low risk"},"1684":{"description":"Verizon 1200 Washington is a Verizon-operated telecom/data center at 1200 Washington Avenue North in Minneapolis; facility directories list it as a Verizon data center and historical references show it was formerly an XO Communications site on the 1st floor.","verified_status":"operational","power_capacity_mw":0,"total_sqft":62561,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon: 1200 Washington","verified_operator":"Verizon","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":2.97,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (shaded) – moderate flood hazard"},"1685":{"description":"IronGate Downtown Minneapolis (MSP4) is a listed IronGate Data Centers colocation site at 110 North 1st Street in downtown Minneapolis with 2MW/4MW pods and positioning as a redundant carrier hub for the 511 4th Street network; note that multiple property listings identify this address as The Archive apartments.","verified_status":"under-construction","power_capacity_mw":4,"total_sqft":0,"year_online":"2026","construction_update":"March 1, 2026: Listings indicate 2MW and 4MW pods were scheduled to come online. June 25, 2026: Minneapolis approved a temporary pause on data center development with an exemption for smaller downtown facilities (<350,000 sq ft).","recent_news":"June 25, 2026: Minneapolis City Council approved a temporary pause on data center development citywide, with an exemption for smaller downtown data centers under 350,000 sq ft.","notable_tenants":"","verified_name":"IronGate Downtown Minneapolis (MSP 4) — 110 North First Street","verified_operator":"IronGate Data Centers","verified_owner":"","cooling_type":"hybrid","tier_level":"Tier III equivalent / concurrently maintainable design (not Uptime-certified)","fiber_providers":"Carrier-neutral with diverse fiber entry; positioned as a redundant carrier hub to the 511 Building ecosystem. Nearby 511 on-net providers include Windstream Wholesale, Crown Castle, and Arelion; Cologix operates significant interconnection at 511.","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Center sales‑tax exemption may apply if certified (e.g., ≥25,000 sq ft and ≥$30M investment; expanded categories for large‑scale facilities in 2025). No MSP4-specific certification found.","natural_hazard_zone":""},"1686":{"description":"DataBank MSP1 (West Twin Cities) is an operational colocation data center operated by DataBank at 7700 France Ave S in Edina’s Technology Business District, offering enterprise colocation with diverse connectivity. DataBank lists the site as MSP1 with 26,240 IT sq ft and active facility details at this address.","verified_status":"operational","power_capacity_mw":1.35,"total_sqft":26240,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank MSP1 – West Twin Cities Data Center","verified_operator":"DataBank","verified_owner":"Frauenshuh","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; 20 onsite carriers","num_buildings":1,"campus_acres":17.1,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":""},"1687":{"description":"DataBank MSP2 / East Twin Cities is an operational multi-tenant colocation data center operated by DataBank at 3255 Neil Armstrong Blvd, Eagan, MN. It features about 90,000 sq ft overall with 48,860 sq ft of IT space, 5 MW critical IT load, 100% renewable power, and FedRAMP authorization.","verified_status":"operational","power_capacity_mw":5,"total_sqft":90000,"year_online":"2015","construction_update":"","recent_news":"Eagan enacted a one-year moratorium on new data center developments in February 2026, and a lawsuit challenging the moratorium was filed in June 2026; no MSP2-specific expansion or tenant announcements were identified in this period.","notable_tenants":"","verified_name":"DataBank MSP2 – East Twin Cities Data Center","verified_operator":"DataBank","verified_owner":"Mapletree Industrial Trust (via ELIAS DC ASSETS LLC)","cooling_type":"unknown","tier_level":"Uptime Institute Tier III Constructed Facility","fiber_providers":"carrier-neutral; 20 onsite carriers; onsite peering via Midwest Internet Cooperative Exchange (MICE).","num_buildings":1,"campus_acres":7.88,"utility_provider":"Dakota Electric Association","tax_incentives":"Minnesota’s Qualified Data Center program (sales/use tax exemptions). DataBank announced MSP3’s qualification; MSP2’s specific certification status not confirmed.","natural_hazard_zone":"Outside FEMA 100- and 500-year floodplains (low flood risk)."},"1688":{"description":"DataBank operates a colocation data center at 10300 6th Avenue North in Plymouth, Minnesota, serving as an interconnection site with multiple network carriers.","verified_status":"operational","power_capacity_mw":1,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank - 10300 6th Ave","verified_operator":"DataBank","verified_owner":"ONVOY LLC","cooling_type":"air-cooled","tier_level":"Tier III design","fiber_providers":"Carrier-neutral; networks include Fiber Minnesota; Zayo fiber present historically via zColo role; additional service providers per facility ecosystem listings.","num_buildings":1,"campus_acres":2.741,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Center sales tax exemption program exists statewide; DataBank’s MSP3 is certified. This Plymouth facility is not specifically confirmed as certified.","natural_hazard_zone":"Low flood risk (city-wide minor flood risk)"},"1689":{"description":"Flexential Minneapolis - Chaska is an operational Flexential colocation data center at 3500 Lyman Boulevard, Chaska, Minnesota, with a 160,838-square-foot footprint and 9 MW of critical power. The site opened in 2014 under ViaWest and later rebranded to Flexential.","verified_status":"operational","power_capacity_mw":9,"total_sqft":160838,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Minneapolis - Chaska Data Center","verified_operator":"Flexential","verified_owner":"Flexential","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"Carrier-neutral; connected via Flexential’s 100Gbps private backbone","num_buildings":0,"campus_acres":0,"utility_provider":"Chaska Electric","tax_incentives":"Minnesota Qualified Data Center program: 35-year sales tax exemption on enterprise IT equipment and software (for qualifying facilities).","natural_hazard_zone":""},"1690":{"description":"Private, build-to-suit U.S. Bank enterprise data center at 1706 West Creek Lane in Chaska (originally code-named Project Cofferdam), developed with Stream Data Centers; the facility is operational and around 56,000 sq ft with multi‑MW capacity.","verified_status":"operational","power_capacity_mw":4.8,"total_sqft":56000,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"U.S. Bank (U.S. Bancorp)","verified_name":"Minneapolis II (1706 West Creek Lane)","verified_operator":"LightEdge","verified_owner":"GI Partners (via LightEdge)","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral (8 carriers)","num_buildings":1,"campus_acres":6,"utility_provider":"","tax_incentives":"City/Local tax abatement of approximately $548,000 over 20 years on equipment purchases and consumed energy.","natural_hazard_zone":"Outside FEMA 500-year floodplain"},"1691":{"description":"H5 Data Centers Minneapolis (St. Paul) is an operational, carrier‑neutral colocation facility at 1125 Energy Park Dr., Suite 100, St. Paul, operated by H5 Data Centers since acquiring the former vXchnge site in January 2022. It offers 17,000 sq ft of colocation space within a 42,000 sq ft facility.","verified_status":"operational","power_capacity_mw":2,"total_sqft":42000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"H5 Data Centers Minneapolis","verified_operator":"H5 Data Centers","verified_owner":"1House2Hands Inc.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":5.02,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota’s Qualified Data Centers program exists, but no evidence that this 17,000 SF site is certified or receiving incentives.","natural_hazard_zone":""},"1692":{"description":"US Signal MN01 Minneapolis Data Center is an operational colocation facility operated by US Signal at 10290 West 70th Street in Eden Prairie, Minnesota, offering 523 kW of critical IT load across 4,723 sq ft.","verified_status":"operational","power_capacity_mw":0.523,"total_sqft":4723,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"MN01 Minneapolis Data Center","verified_operator":"US Signal Company, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III (Uptime Institute Design Certified)","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Centers program (state sales tax exemption on qualifying enterprise IT equipment/software for certified facilities). No MN01-specific certification found.","natural_hazard_zone":"Moderate city-level flood risk; low seismic exposure typical for Minnesota. Address-specific FEMA flood zone not confirmed."},"1693":{"description":"Trustwave NOC—originally the BHI Network Operations Center—is a colocation/data-center facility at 7599 Corporate Way in Eden Prairie, Minnesota, operated by Trustwave Holdings. It is actively listed by major data center directories, with DataCenterMap noting the BHI NOC launched in February 2004.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2004","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Trustwave NOC (formerly BHI Data and Collocation Center)","verified_operator":"Trustwave (a LevelBlue company)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Comcast (nearby); others unknown","num_buildings":0,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Centers sales-tax exemption exists for certified facilities; no public evidence this site is certified/claiming it.","natural_hazard_zone":""},"1694":{"description":"Operational Lumen telecom/colocation data center at 5510 Feltl Road in Minnetonka, part of Mapletree Industrial Trust’s three-building Feltl Road data-centre campus. The site offers about 12,000 sq ft of data-center floor space with 2 MW utility capacity (up to 1 MW critical load).","verified_status":"operational","power_capacity_mw":2,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Minnetonka 1 Data Center (Minnetonka Premier Select Data Center)","verified_operator":"Lumen Technologies","verified_owner":"Mapletree Industrial Trust","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Lumen, Verizon, Enventis","num_buildings":3,"campus_acres":15.5,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"low risk - outside 100-year flood plain; 1997 UBC Zone 1 seismic"},"1695":{"description":"Ridgeview Data Center / US Internet Minnetonka is an operational, carrier-neutral colocation facility at 12450 Wayzata Blvd, Suite 110, Minnetonka, MN, operated by Ridgeview, with MICE connectivity and redundant power/UPS/generator-backed infrastructure in a 20,000-square-foot Minnetonka facility.","verified_status":"operational","power_capacity_mw":3,"total_sqft":20000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Ridgeview Data Center","verified_operator":"Ridgeview, Inc.","verified_owner":"JKT Properties LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent; on-site networks (per PeeringDB) include Arvig, Code42, Paul Bunyan Communications, South Dakota Network (SDN), and Starwire Technologies","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Center sales-tax exemption program exists; no facility-specific incentive identified.","natural_hazard_zone":""},"1696":{"description":"Ark Data Centers Duluth 2 is an operational colocation facility at 421 North 6th Avenue East in Duluth, Minnesota, operated by Ark Data Centers. The site is a concurrently maintainable data center totaling 26,000+ square feet.","verified_status":"operational","power_capacity_mw":1,"total_sqft":26000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"Essentia Health","verified_name":"ark data centers 6th Avenue Data Center (alias: Ark Data Centers Duluth 2)","verified_operator":"ark data centers","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III equivalent / concurrently maintainable; not Uptime-certified","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Minnesota Power","tax_incentives":"Minnesota’s Qualified Data Center sales tax exemption program exists; facility-specific certification for 421 N 6th Ave E is not confirmed.","natural_hazard_zone":""},"1697":{"description":"Vaultas St. Cloud is a Vaultas-operated colocation facility at 3701 18th St S, St. Cloud, Minnesota, marketed for carrier-neutral data center services. Local reporting in February 2026 indicated it was under construction with plans to open in 2026.","verified_status":"under-construction","power_capacity_mw":4,"total_sqft":17016,"year_online":"2026 (expected)","construction_update":"Feb. 13, 2026: Reported as under construction with plans to open later in 2026.","recent_news":"Feb 13, 2026: Local news reported the Vaultas St. Cloud data center was under construction with plans to open later in 2026.","notable_tenants":"","verified_name":"Vaultas St. Cloud","verified_operator":"Vaultas","verified_owner":"Vaultas","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Center sales tax exemption (up to 35 years on qualifying enterprise IT equipment/software for certified facilities).","natural_hazard_zone":"Low risk; FEMA Flood Zone X (minimal flood hazard)"},"1698":{"description":"Vaultas Alexandria (ALX1) is a Vaultas-operated colocation data center at 720 Hawthorne Street in Alexandria, Minnesota, offering enterprise connectivity and cloud access.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"Park Industries Inc.; Northern Contours; Design-Tree (customers listed by Vaultas; not confirmed as Alexandria-specific anchor tenants)","verified_name":"Vaultas Alexandria","verified_operator":"Vaultas","verified_owner":"Vaultas","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"Carrier-neutral; connected providers include Fitchburg Fiber, Dakota Carrier Network, Dedicated Fiber Systems, and Enventis.","num_buildings":1,"campus_acres":0,"utility_provider":"ALP Utilities (Alexandria Light and Power)","tax_incentives":"Minnesota qualified data center sales tax exemption exists (up to 35 years on eligible IT equipment/software) but typically requires ≥25,000 sq ft and ≥$30M investment; this facility likely does not qualify.","natural_hazard_zone":"Low flood risk (Alexandria: 9.9% of properties at risk; not a coastal/hurricane or high-seismic zone)."},"1699":{"description":"Former small colocation site at 205 2nd Street SW in Braham, MN, marketed as Integris/RevNet RNDC #1 with cabinet-level colocation and redundant power/fiber in a hardened, retired AT&T Long Lines building. As of June 2026, the property is listed For Sale/Lease, indicating the facility is no longer operating at this address.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"June 2026: Property listed For Sale/Lease; no active data-center construction or expansion reported.","recent_news":"June 2026: the 205 2nd Street SW property is listed For Sale/Lease, with recent updates (e.g., DRG listing “6 days ago” and LandVest dated Jun 18, 2026) and an Edina Realty rental listing at $900/month.","notable_tenants":"","verified_name":"Integris Braham Data Center","verified_operator":"Integris","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.11,"utility_provider":"East Central Energy","tax_incentives":"Minnesota “Qualified Data Center” sales/use tax exemption program exists statewide; no evidence this site has qualified or claimed it.","natural_hazard_zone":"FEMA-mapped floodplains in Isanti County; no city flood protection measures noted for Braham in the FIS; generally low seismic risk for Minnesota."},"1700":{"description":"Paul Bunyan Communications Bemidji Data Center is an operational enterprise/colocation facility operated by Paul Bunyan Communications at 1831 Anne St NW, Bemidji, Minnesota. The site opened in 2013 and serves local organizations with managed colocation and related services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Paul Bunyan Communications Bemidji Data Center","verified_operator":"Paul Bunyan Communications (Paul Bunyan Rural Telephone Cooperative)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Paul Bunyan Communications","num_buildings":0,"campus_acres":0,"utility_provider":"Otter Tail Power Company","tax_incentives":"","natural_hazard_zone":"Outside FEMA Special Flood Hazard Area; city has minor flood risk; regional exposure to severe storms/tornado and wildfire."},"1701":{"description":"Enterprise data center at 14100 Business Center Dr NW, Elk River, Minnesota, built in 2007 and operated by UnitedHealth Group; owned by Cristobal Ventures LLC (linked to CloudHQ) following a $90M sale in late 2022/early 2023.","verified_status":"operational","power_capacity_mw":20,"total_sqft":240000,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"UnitedHealth Group (single-tenant user/operator)","verified_name":"UnitedHealth Elk River Data Center","verified_operator":"UnitedHealth Group","verified_owner":"Cristobal Ventures LLC (CloudHQ affiliate)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":20.49,"utility_provider":"Elk River Municipal Utilities","tax_incentives":"Minnesota Qualified Data Center Sales Tax Exemption (up to 35 years). Local tax abatement programs available from Sherburne County and City of Elk River (usage by this facility not confirmed).","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard)"},"1702":{"description":"Target Technology Center (TTC) — Elk River is Target Corporation’s enterprise data center at 18195 Waco St NW in Elk River, Minnesota; third‑party listings show it as an operational, Target‑operated facility with about 8.594 MW of power capacity.","verified_status":"operational","power_capacity_mw":8.594,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Target (enterprise/internal use); no third-party colocation tenants publicly listed.","verified_name":"Target Technology Center - Elk River","verified_operator":"Target Corporation","verified_owner":"","cooling_type":"chilled water","tier_level":"Tier III","fiber_providers":"","num_buildings":0,"campus_acres":26.26,"utility_provider":"Elk River Municipal Utilities","tax_incentives":"Minnesota Data Center Sales Tax Refund: Target-Elk River certified.","natural_hazard_zone":""},"1703":{"description":"A former Unisys enterprise data center at 3199 Pilot Knob Road in Eagan, MN, acquired by a Swervo-affiliated entity in Nov 2025 and presented under IronGate branding as a multi-tenant facility; it is currently listed as operational.","verified_status":"operational","power_capacity_mw":0,"total_sqft":248482,"year_online":"1986","construction_update":"","recent_news":"Feb 17, 2026: Eagan adopted a 1-year moratorium on new or expanded data centers; subsequently, Eagan Capital (affiliated with Swervo) filed a lawsuit challenging the moratorium.","notable_tenants":"","verified_name":"IronGate MSP3","verified_operator":"IronGate Data Centers","verified_owner":"Eagan Capital LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; multiple fiber carriers","num_buildings":1,"campus_acres":32,"utility_provider":"Xcel Energy","tax_incentives":"Potential eligibility for Minnesota’s Qualified Data Center sales/use-tax exemption (up to 35 years on qualifying purchases).","natural_hazard_zone":""},"1704":{"description":"Connect Eagan is a build-to-suit data center under construction at 550 Opperman Drive in Eagan, Minnesota, developed by Oppidan’s Connect Data Centers platform; it is planned at about 5 MW and 61,500 sq ft on a 22.1-acre former YMCA site.","verified_status":"under-construction","power_capacity_mw":5,"total_sqft":61500,"year_online":"unknown","construction_update":"Jan 22, 2025: project cleared a key city hurdle and aimed for a spring construction start; Jun 5–6, 2025: Oppidan announced and broke ground on the Eagan data center; 2026: listings continue to show the facility under construction.","recent_news":"Feb 2026: Eagan adopted a one-year moratorium on new data center and cryptocurrency mining projects to study impacts; the pause targets new proposals, not projects already under construction.","notable_tenants":"","verified_name":"Connect Eagan","verified_operator":"Connect Data Centers (powered by Oppidan)","verified_owner":"CLOP Eagan MN, LLC (Oppidan Investment Company affiliate/SPV)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":22.1,"utility_provider":"Dakota Electric Association (served), with Great River Energy as power supplier/partner involvement","tax_incentives":"Minnesota Qualified Data Centers sales/use tax exemption program exists; no confirmed certification/award for this facility.","natural_hazard_zone":"Airport noise exposure area (near MSP); no FEMA flood designation identified in reviewed sources"},"1705":{"description":"CENTRA MSP1 (Centra Minneapolis) is a carrier-neutral colocation/interconnection data center operated by CENTRA at 610 Opperman Drive in Eagan, Minnesota, redeveloping the former Thomson Reuters data center site. It is designed for Tier III+-class reliability and is planned to launch with 12 MW of critical capacity.","verified_status":"under-construction","power_capacity_mw":12,"total_sqft":150000,"year_online":"2026 (expected)","construction_update":"Aug 5–6, 2025: Groundbreaking for MSP1 announced; as of late June 2026 the site remains listed as under construction with a 2026 opening target.","recent_news":"Feb 17, 2026: The Eagan City Council approved a one-year moratorium on new data centers and cryptocurrency-mining operations.","notable_tenants":"","verified_name":"CENTRA Minneapolis (MSP1)","verified_operator":"CENTRA","verified_owner":"CENTRA","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":10,"utility_provider":"","tax_incentives":"Minnesota’s Qualified Data Center sales/use tax exemptions are available for certified data centers (up to 35 years). Applicability to MSP1 is not confirmed.","natural_hazard_zone":""},"1706":{"description":"Planned CloudHQ hyperscale data center campus at 2007 Schoolmaster Dr. in Chaska’s West Creek Corporate Center, sized around 1.5 million sq ft and marketed with up to 200 MW capacity.","verified_status":"planned","power_capacity_mw":200,"total_sqft":1500000,"year_online":"unknown","construction_update":"Oct 21, 2024: Preliminary approval by the Chaska City Council; the project remains proposed/in permitting with no publicly announced groundbreaking date.","recent_news":"","notable_tenants":"","verified_name":"CloudHQ MSP Campus","verified_operator":"CloudHQ","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":70,"utility_provider":"","tax_incentives":"Minnesota Qualified Data Centers program — sales tax exemption (up to 35 years) for eligible data center investments.","natural_hazard_zone":"unknown"},"1707":{"description":"Operational colocation/enterprise data center at 401 Bielenberg Drive in Woodbury, Minnesota, operated by IronGate Data Centers and known as Twin Cities East (MSP1/MSP 01), with roughly 85,000 sq ft of space.","verified_status":"operational","power_capacity_mw":15,"total_sqft":85000,"year_online":"2012","construction_update":"No active construction identified. CBRE marketed 10 MW available with delivery 10/1/2025 at 401 Bielenberg Drive.","recent_news":"","notable_tenants":"","verified_name":"IronGate Data Center East (aka IronGate Twin Cities East / IronGate Woodbury MSP1)","verified_operator":"IronGate Data Centers","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Minnesota Qualified Data Center sales and use tax exemption (up to 35 years for qualifying facilities).","natural_hazard_zone":""},"1708":{"description":"IronGate MSP2 (also shown as MSP 02) is an IronGate Data Centers colocation facility at 500 Bielenberg Drive in Woodbury, Minnesota. Listings associate the site with a 346,045 sq ft building and placement among IronGate’s Twin Cities facilities.","verified_status":"operational","power_capacity_mw":6,"total_sqft":346045,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"IronGate: MSP2","verified_operator":"IronGate Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Potentially eligible under Minnesota’s Qualified Data Center sales and use tax exemptions; no facility-specific approval located.","natural_hazard_zone":"low risk"},"1709":{"description":"Expedient Baltimore - Tide Point is an operational Expedient colocation data center at 1050 Hull Street, Suite 150 in Baltimore’s Tide Point. The site offers 23,000 sq ft of data center space with a 1.5 MW critical IT load per the operator’s sell sheet.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":23000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Expedient Baltimore - Tide Point","verified_operator":"Expedient","verified_owner":"Under Armour, Inc. (Tide Point campus owner; portions of the campus have seen/considered transactions since 2024–2025; no clear record found of a closed transfer for 1050 Hull St.)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Potential eligibility under the Baltimore City Enterprise Zone; no facility-specific award identified.","natural_hazard_zone":"FEMA Flood Zone AE (Tide Point/1000 Hull St. parcel); coastal flood exposure in Locust Point"},"1710":{"description":"Comcast Nottingham is an enterprise data center and regional headend at 8031 Corporate Drive in the Nottingham/White Marsh area of Baltimore County, Maryland, totaling about 66,000 sq ft and leased/operated by Comcast; the asset was sold in 2021 while remaining occupied by Comcast.","verified_status":"operational","power_capacity_mw":0,"total_sqft":66000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Comcast","verified_name":"Comcast Nottingham","verified_operator":"Comcast","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5.77,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"","natural_hazard_zone":""},"1711":{"description":"AiNET Glen Burnie CyberNAP is a colocation/carrier-hotel data center operated by AiNET at 7900 Ritchie Highway in Glen Burnie, Maryland, created by converting a former department-store building. It is notable for its roughly 300,000 sq ft scale and proximity to Ft. Meade.","verified_status":"operational","power_capacity_mw":80,"total_sqft":300000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"AiNET CyberNAP (Glen Burnie)","verified_operator":"AiNET","verified_owner":"AiNET Corp.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multiple Tier I providers; access to hundreds of on-net carriers; AiNET long-haul/dark fiber network present","num_buildings":1,"campus_acres":15,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption program (potentially applicable if the facility is certified and meets requirements).","natural_hazard_zone":"unknown"},"1712":{"description":"A wholesale hyperscale powered‑shell data center at 7665 Sandy Farm Road in Severn, Maryland; developed with Harrison Street and acquired by GI Partners in March 2026. The building is approximately 109,455 sq ft, while the >218,000 sq ft figure refers to the two‑asset Maryland portfolio (Emerson + Sandy Farms).","verified_status":"operational","power_capacity_mw":0,"total_sqft":109455,"year_online":"unknown","construction_update":"2026-05-19: Anne Arundel County posted SANDY FARMS ROA – PHASE II (MOD‑2026‑0098) at 7665 Sandy Farm Rd for a proposed data center with associated drive aisles, parking, and stormwater‑management facilities.","recent_news":"Feb–Mar 2026: Harrison Street sold the Sandy Farms and Emerson powered‑shell data centers, and GI Partners announced acquisition of the Severn and Laurel sites; May 19, 2026: Anne Arundel County logged “SANDY FARMS ROA – PHASE II” (MOD‑2026‑0098) for a proposed data center with associated site improvements at 7665 Sandy Farm Rd.","notable_tenants":"Undisclosed single user (portfolio 100% leased). Public-record trackers attribute an Amazon/Amazon Data Services data center on Sandy Farm Rd, Severn.","verified_name":"Sandy Farms Data Center","verified_operator":"GI Partners","verified_owner":"GI Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":50,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Anne Arundel County Qualified Data Center personal property assessment reduction; Maryland state sales and use tax exemption for qualified data center personal property.","natural_hazard_zone":"low risk"},"1713":{"description":"Eternal Rings Data Center at 9800 S. Eternal Rings Dr in Laurel, MD is a 110,336‑sq‑ft hyperscale powered‑shell wholesale facility, fully leased to a single user and owned by GI Partners following a March 2026 acquisition. The campuses were developed with Oppidan Connect involvement.","verified_status":"operational","power_capacity_mw":0,"total_sqft":110336,"year_online":"2022","construction_update":"","recent_news":"Mar 2026: GI Partners completed the acquisition of two Baltimore-area data centers, including the 9800 S. Eternal Rings Dr Laurel facility; the portfolio is 100% leased to a single user.","notable_tenants":"","verified_name":"Eternal Rings Data Center, 9800 South Eternal Rings Drive","verified_operator":"GI Partners","verified_owner":"GI Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":43,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Maryland Data Center Sales & Use Tax Exemption Program is active statewide for certified qualified data centers; no public evidence confirms certification for this specific facility.","natural_hazard_zone":"unknown"},"1714":{"description":"A vacant former CareFirst enterprise data center at 9100 Guilford Road in Columbia, MD, totaling 62,336 SF and designed for 1.8 MW of critical power, now marketed for sale/lease rather than being actively operated. Listings and the offering memorandum describe a built-out, single-story facility with utility and generator redundancy.","verified_status":"decommissioned","power_capacity_mw":1.8,"total_sqft":62336,"year_online":"1987","construction_update":"No active construction. Built 1987; renovated 2014. The offering memorandum notes an additional 34 kV primary feeder could be delivered in 18–24 months pending a power-ramp request.","recent_news":"Listings updated in June 2026 show the data center available and under contract; no new operator or expansion has been announced in the last six months.","notable_tenants":"CareFirst BlueCross BlueShield (former enterprise occupant). No current tenant publicly disclosed.","verified_name":"Maryland Data Center / 9100 Guilford Road, Columbia, MD (former CareFirst enterprise data center)","verified_operator":"Vacant / no current operator identified; former operator/occupant was CareFirst BlueCross BlueShield","verified_owner":"","cooling_type":"air-cooled","tier_level":"2N UPS/power configuration reported; no Uptime Institute Tier certification found","fiber_providers":"AT&T and Verizon on site; multiple metro fiber providers / metro and long-haul fiber connectivity","num_buildings":1,"campus_acres":11.67,"utility_provider":"BGE (Baltimore Gas and Electric)","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption incentive referenced in the sale brochure; no facility-specific abatement confirmed","natural_hazard_zone":""},"1715":{"description":"AiNET Laurel SCIF (Coloco #8) is an AiNET-operated colocation data center at 312 Laurel Avenue, Laurel, MD. The building was mission-built for telecommunications by Verizon and retrofitted for multi-tenant data center use.","verified_status":"operational","power_capacity_mw":2,"total_sqft":12000,"year_online":"2021","construction_update":"","recent_news":"A new leasing listing dated June 12, 2026 markets space at the property; no expansion, regulatory actions, or named new tenants were found.","notable_tenants":"No named anchor tenants or major customers were found publicly for this specific Laurel SCIF facility. Listings cite carriers/fiber providers (Verizon, Time Warner, AiNET, MFS) but do not name end-customer tenants.","verified_name":"AiNET Laurel SCIF","verified_operator":"AiNET","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III (claimed; not Uptime-certified; conflicting listing cites Tier IV)","fiber_providers":"Verizon, Time Warner (TW Telecom), AiNET, MFS","num_buildings":1,"campus_acres":0,"utility_provider":"Pepco","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption Incentive Program (sales/use tax exemption on qualified data center personal property for eligible projects; term 10–20 years). No facility-specific award identified.","natural_hazard_zone":"Outside Federal nuclear blast zones; FEMA flood zone for this parcel not identified; portions of Laurel lie within floodplains."},"1716":{"description":"Small, legacy tw telecom Washington Data Center at 14405 Laurel Pl, Laurel, MD, a carrier‑neutral colocation/telecom site now attributable to Lumen through the tw telecom → Level 3 → CenturyLink/Lumen acquisition path.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1203,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"tw telecom - Washington Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multiple carriers","num_buildings":1,"campus_acres":2.16,"utility_provider":"Pepco (Potomac Electric Power Company)","tax_incentives":"","natural_hazard_zone":""},"1717":{"description":"Recovery Point Systems operates an operational colocation and disaster‑recovery data center at 20441 Century Boulevard in Germantown, Maryland. The facility follows a Tier‑III architecture designed for resilience and interoperability.","verified_status":"operational","power_capacity_mw":5,"total_sqft":115000,"year_online":"unknown","construction_update":"","recent_news":"Montgomery County advanced data‑center policy in 2026: ZTA 26‑01 was introduced on Jan. 20, 2026, and on June 12, 2026 the County Executive announced a six‑month moratorium on accepting/processing permits for new data centers. These measures concern new permitting and do not indicate changes to the existing Germantown facility’s operations.","notable_tenants":"","verified_name":"Recovery Point Germantown Data Center","verified_operator":"Recovery Point Systems","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"","num_buildings":0,"campus_acres":12.57,"utility_provider":"Pepco (Potomac Electric Power Company)","tax_incentives":"","natural_hazard_zone":""},"1718":{"description":"Proposed Microsoft hyperscale data center at 8201 Dorsey Run Road, Annapolis Junction, MD, to be operated by Microsoft. Listed as a proposed project in Howard County and supported by a May 17, 2024 county application for the Microsoft site.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"May 17, 2024: County filing referencing Microsoft at 8201 Dorsey Run Rd indicates the project was in the planning/entitlement phase.","recent_news":"June 2026: Howard County temporarily halted new data center development through November 2027 via CB31-2026 and related council action; this is regional policy news and not specific to Microsoft’s site.","notable_tenants":"","verified_name":"Microsoft Annapolis Junction Data Center (YEL – Annapolis Junction Business Park)","verified_operator":"Microsoft Corporation","verified_owner":"Microsoft Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Maryland Sales and Use Tax Exemption for Qualified Data Centers (state program).","natural_hazard_zone":"FEMA Flood Zone AE"},"1719":{"description":"Liquid Web Dearborn is a small colocation/hosting data center at 22005 Outer Dr W, Dearborn, Michigan, historically referred to as Nexcess OTR/DC1 and now under the Liquid Web/Nexcess banner. Listings show it is commissioned/operational with nearly 7,000 sq ft of space and has been in production since 2006.","verified_status":"operational","power_capacity_mw":0.6,"total_sqft":7000,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Liquid Web Dearborn","verified_operator":"Liquid Web","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0.2,"utility_provider":"Detroit Edison / DTE Energy","tax_incentives":"Michigan’s Enterprise Data Center Sales & Use Tax Exemption (MCL 205.54ee) — exemption for eligible data center equipment through Dec 31, 2050; site-specific qualification not confirmed.","natural_hazard_zone":"Urban/pluvial flood exposure: property Flood Factor 6/10 (“Major”); neighborhood minor flood risk; historical roadway flooding nearby."},"1720":{"description":"Lumen Detroit 4 is an operational Lumen Technologies colocation data center located at 200 Galleria Officentre, Southfield, MI, offering a total of 39,357 sq ft with 7,488 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":39357,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Detroit 4 Data Center","verified_operator":"Lumen Technologies","verified_owner":"Friedman Real Estate","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":13.2,"utility_provider":"DTE Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption is active statewide; eliminates the 6% sales and use tax on eligible data center construction and equipment for certified data centers. No site-specific certification found.","natural_hazard_zone":"Minor flood risk area; no evidence of FEMA Special Flood Hazard Area at the parcel. Low hurricane and seismic exposure typical for southeast Michigan."},"1721":{"description":"An operational enterprise data center and office facility at 1401 Rosa Parks Blvd. in Detroit’s Corktown, opened by Quicken Loans in 2015 and now marketed by Bedrock as the Rocket Mortgage Technology Center; it features two 10,000‑sq‑ft server rooms and is listed at 85,000 RSF, with 1.4 MW redundant available power and 2.5‑MW backup generators.","verified_status":"operational","power_capacity_mw":1.4,"total_sqft":85000,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"Rocket Mortgage/Quicken Loans technology team; no publicly identified third-party colocation tenants.","verified_name":"Rocket Mortgage Technology Center","verified_operator":"Rocket Mortgage","verified_owner":"Bedrock","cooling_type":"air-cooled","tier_level":"Tier III","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"DTE Energy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (low risk)"},"1722":{"description":"Raeden Detroit Carrier Hotel (also known as Raeden Detroit 1) is a Raeden-operated carrier-hotel/colocation facility inside Bedrock’s 615 W Lafayette property in downtown Detroit, announced as downtown’s first independent carrier hotel and now operational.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":6000,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Raeden Detroit 1 (Carrier Hotel at 615 W Lafayette Blvd)","verified_operator":"Raeden","verified_owner":"Bedrock (via Bedrock Real Estate Services; SPV 615 West Lafayette LLC referenced in 2015 abatement)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral / fiber-agnostic; 15+ on-net carriers; examples: Crown Castle, AT&T, Everstream, Comcast; central meet-me room","num_buildings":1,"campus_acres":1.93,"utility_provider":"DTE Energy (DTE Electric)","tax_incentives":"State: Michigan Enterprise Data Center Sales & Use Tax Exemption (6% sales/use tax eliminated for eligible data center construction/equipment). Local: 2015 Commercial Rehabilitation / Property Tax Abatement for 615 West Lafayette LLC (10-year term; likely expired).","natural_hazard_zone":"Detroit uses FEMA FIRMs for flood management; specific parcel flood zone not identified. Seismic hazard: very low."},"1723":{"description":"An operational Nexcess (Liquid Web) data center at 21700 Melrose Ave in Southfield, MI providing colocation, cloud, and enterprise hosting, with about 16,000 sq ft of floor space.","verified_status":"operational","power_capacity_mw":2.75,"total_sqft":16000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Liquid Web Southfield Data Center (Nexcess)","verified_operator":"Liquid Web (Nexcess brand)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (statewide program).","natural_hazard_zone":"low risk"},"1724":{"description":"EdgeConneX Detroit (EDCDET01/DET01) is an operational, purpose-built, Tier 3–designed edge colocation data center at 21005 Lahser Rd, Bldg 4 in Southfield, MI, operated by EdgeConneX, with TelNet also operating facilities on the same Lahser Road campus. The facility totals about 39,900 sq ft and is listed with up to 3 MW of capacity across sources.","verified_status":"operational","power_capacity_mw":3,"total_sqft":39900,"year_online":"unknown","construction_update":"As of 2026-06, DET01 is operational with no active construction milestones identified. EdgeConneX notes availability for customized build-to-suit deployments up to 7 MW.","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX Detroit - EDCDET01; TelNet Worldwide - SFLFMI72W00","verified_operator":"EdgeConneX; TelNet Worldwide","verified_owner":"","cooling_type":"unknown","tier_level":"Tier 3 designed","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"DTE Energy","tax_incentives":"Michigan Enterprise/Qualified Data Center Sales & Use Tax Exemption available to qualified data centers (6% sales/use tax exemption on eligible construction and equipment) through 2050; facility-specific local abatements not found or verified.","natural_hazard_zone":"FEMA Flood Zone X (outside 100-year Special Flood Hazard Area)"},"1725":{"description":"Cogent Communications operates a telecom/colocation facility at 3331 W. Big Beaver Road in Troy, Michigan, offering 5,624 sq ft with 42U cabinets, multiple power options, generator-backed power, HVAC, fire protection, biometric access, and 24/7/365 support.","verified_status":"operational","power_capacity_mw":0.33,"total_sqft":5624,"year_online":"unknown","construction_update":"","recent_news":"May 2026: Cogent announced a deal to sell 10 data centers to an I Squared Capital-backed platform; the listed locations did not include Troy, and no site-specific changes have been reported.","notable_tenants":"","verified_name":"Cogent Data Center - Troy","verified_operator":"Cogent Communications, Inc.","verified_owner":"Troy Place Equities II, LLC / Nemer Property Group","cooling_type":"air-cooled","tier_level":"Tier I equivalent (no Uptime certification found)","fiber_providers":"Cogent","num_buildings":1,"campus_acres":0,"utility_provider":"DTE Energy (DTE Electric)","tax_incentives":"","natural_hazard_zone":"FEMA flood zone at the parcel not confirmed; Oakland County plan notes high riverine flooding hazard; low seismic risk; no hurricane zone."},"1726":{"description":"ManagedWay Detroit Data Center TYM1 is an operational colocation facility at 319 Executive Drive in Troy, Michigan, operated by ManagedWay as one of its two Troy data centers. Directory listings report 20,000 sq ft total with 10,000 sq ft of raised floor.","verified_status":"operational","power_capacity_mw":1,"total_sqft":20000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ManagedWay Detroit Data Center TYM1","verified_operator":"ManagedWay","verified_owner":"ManagedWay Company","cooling_type":"unknown","tier_level":"Tier III+ (design equivalent)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.19,"utility_provider":"DTE Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (6% sales/use tax exemption on eligible data center construction and equipment purchases; subject to qualifying criteria).","natural_hazard_zone":"Low risk: very low seismic hazard; outside FEMA Special Flood Hazard Areas per mapping resources."},"1727":{"description":"ManagedWay’s Detroit Data Center TYM2 is an operational colocation facility at 600 Executive Drive in Troy, Michigan, offering Tier III+-style infrastructure with SOC 2 Type II and a 100% uptime SLA. Public listings indicate approximately 50,000 sq ft of space (about 25,000 sq ft raised floor).","verified_status":"operational","power_capacity_mw":4,"total_sqft":50000,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ManagedWay Detroit Data Center TYM2","verified_operator":"ManagedWay Company","verified_owner":"ManagedWay Company","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; cross-connects to ManagedWay fiber or a carrier of choice","num_buildings":1,"campus_acres":2.72,"utility_provider":"DTE Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"1728":{"description":"US Signal’s Detroit North / MI05 is an operational colocation data center at 1035 W Entrance Drive in Auburn Hills, MI, acquired by US Signal in August 2024. The site is a former DXC/HP facility now operated by US Signal to serve Detroit-area enterprise and network workloads.","verified_status":"operational","power_capacity_mw":4,"total_sqft":76000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"US Signal MI05 Detroit Data Center (also referred to as Detroit North Data Center)","verified_operator":"US Signal Company, LLC","verified_owner":"US Signal Company, LLC (parent: Igneo Infrastructure Partners)","cooling_type":"unknown","tier_level":"Tier III design standard (not Uptime-certified)","fiber_providers":"Carrier-neutral; US Signal backbone; meet-me room; four on-net carriers; 6-mile local fiber loop planned","num_buildings":1,"campus_acres":9.13,"utility_provider":"DTE Electric (DTE Energy)","tax_incentives":"Michigan statewide enterprise data center sales and use tax exemption (MCL 205.54ee); no site-specific abatement identified","natural_hazard_zone":"unknown"},"1729":{"description":"A proposed hyperscale data center campus in Howell Township, Livingston County, linked in reporting to Meta and sited near Marr, Fleming, Warner, and Owosso roads. The applicant withdrew its rezoning/text-amendment applications in Dec 2025, so the project is paused/withdrawn rather than under construction.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Dec 8–9, 2025: Applicant withdrew rezoning/text‑amendment applications during a six‑month moratorium; no construction start reported.","recent_news":"Jan 14, 2026: Advocacy analysis reported the $1B Howell Township data-center proposal was withdrawn; Mar 10, 2026: Local outlet announced a town hall about the data-center proposal. No public record of resubmission, approval, or construction start since.","notable_tenants":"No third-party tenants are publicly known.","verified_name":"Project Splitrock / Howell Data Center Project (Meta Howell Township)","verified_operator":"Meta","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":1077,"utility_provider":"DTE Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption; facility‑specific local approvals were not finalized before withdrawal.","natural_hazard_zone":"Site‑specific FEMA flood zone undetermined; consult FEMA FIRM. Regional hazards include localized flooding; no hurricane exposure and low seismic risk."},"1730":{"description":"US Signal’s MI01 Grand Rapids Data Center is an operational colocation facility at 4765 Barden Court in Kentwood, Michigan, offering secure, reliable colocation with utility feeds of 3,000 kVA, 3,000 kW generators, 2,200 kW UPS capacity, 213 kW critical IT load, and 3,778 total sq ft built in 2014.","verified_status":"operational","power_capacity_mw":3,"total_sqft":3778,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"MI01 Grand Rapids Data Center","verified_operator":"US Signal","verified_owner":"Igneo Infrastructure Partners","cooling_type":"air-cooled","tier_level":"Tier III (TIA-942 benchmarked; Tier IV electrical equivalent)","fiber_providers":"carrier-neutral; 9 on-net carriers including Comcast, Crown Castle, and US Signal","num_buildings":1,"campus_acres":3.33,"utility_provider":"Consumers Energy","tax_incentives":"Michigan Enterprise Data Center Sales & Use Tax Exemption (HB 4906 / SB 237): eliminates 6% sales and use tax on eligible data center construction and equipment purchases; eligibility for this specific facility not publicly confirmed.","natural_hazard_zone":"low risk"},"1731":{"description":"Proposed Microsoft hyperscale data center campus near 144th Ave & 14th St in Dorr Township, Allegan County, Michigan. Microsoft purchased more than 250/nearly 272 acres for the site; as of mid‑2026 the project remains proposed and is subject to a 12‑month township moratorium on data centers.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Mar 4, 2026: Dorr Township Board approved a 12‑month moratorium on data center development; no construction start or site plan approvals publicly reported since.","recent_news":"Mar 4, 2026: Dorr Township Board approved a 12‑month moratorium on data center development affecting the Microsoft proposal; June 2026: lawmakers and residents renewed a push for a statewide data center moratorium, with ongoing public opposition.","notable_tenants":"","verified_name":"Microsoft Dorr Township Data Center","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":272,"utility_provider":"","tax_incentives":"Potentially eligible for Michigan’s Enterprise Data Center Sales & Use Tax Exemption; no Dorr-specific certification identified.","natural_hazard_zone":"Nearby FEMA Flood Zones B/X; overall low-to-moderate flood risk indications; site-specific FEMA zone not confirmed."},"1732":{"description":"Proposed data center at the Franklin Partners-owned site near S 26th St and E N Ave in Pavilion Township, MI; the end user/operator has not been publicly disclosed and the project remains a proposal rather than an operating facility.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Oct 30–Nov 5, 2025: Project halted/put on hold after community concerns; no construction start reported.","recent_news":"","notable_tenants":"","verified_name":"Pavilion Township Data Center","verified_operator":"unknown","verified_owner":"Franklin Partners LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":265,"utility_provider":"Consumers Energy","tax_incentives":"Site-readiness funding awarded to the 265-acre park; general Michigan Enterprise Data Center Sales & Use Tax Exemption available statewide if certified; no project-specific certification found.","natural_hazard_zone":"low risk"},"1733":{"description":"Project Flex Campus is a planned six‑building, ~1.8 million‑sq‑ft hyperscale data center campus at Milford Rd & W New Hudson Dr in New Hudson (Lyon Township), Michigan, being developed by Verrus. Township materials note Walbridge as the property owner/partner.","verified_status":"planned","power_capacity_mw":0,"total_sqft":1800000,"year_online":"unknown","construction_update":"June 2026: Lyon Township indicates the Final Site Plan, a revised sound study, and fire department review are under active review; no construction start has been issued.","recent_news":"June 2026: Lyon Township said the Final Site Plan, sound study, and fire reviews for Project Flex are under review, while residents continue to oppose the project and a drain‑easement issue has created a snag.","notable_tenants":"Anthropic (reported by media; not officially confirmed)","verified_name":"Project Flex","verified_operator":"Verrus","verified_owner":"Walbridge","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":6,"campus_acres":172,"utility_provider":"DTE Energy","tax_incentives":"Michigan’s Enterprise Data Center sales/use tax exemption exists statewide, but no project-specific approval for Project Flex has been verified.","natural_hazard_zone":"100-year floodplain adjacent to the County Drain along the north line of the site; no 500-year floodplain noted."},"1734":{"description":"Colocation data center at 500 E Walnut St, Suite 102, Columbia, Missouri, formerly Orion Data Centers and now operated by Cybercon (Edge Centres) following a June 2023 acquisition; it offers colocation, virtualization, and hybrid infrastructure services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EC103 Columbia MO (Orion)","verified_operator":"Cybercon (Edge Centres)","verified_owner":"Orscheln Properties Co. L.L.C.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"City of Columbia Utilities (Columbia Water & Light)","tax_incentives":"","natural_hazard_zone":""},"1735":{"description":"Bluebird Underground Data Center is an underground colocation facility in Springfield, Missouri, operated by Bluebird Network (Bluebird Fiber), located roughly 85 feet below ground, with about 80,000 sq ft of space and 6.0 MW total power.","verified_status":"operational","power_capacity_mw":6,"total_sqft":80000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Tech Electronics, Inc.; Springfield Internet Exchange (SpringIX)","verified_name":"Bluebird Underground Data Center","verified_operator":"Bluebird Fiber (formerly Bluebird Network)","verified_owner":"Erlen Group (owner of Springfield Underground)","cooling_type":"unknown","tier_level":"N+1 redundancy design (no formal Uptime Institute Tier certification found)","fiber_providers":"carrier-neutral; Bluebird Fiber backbone; SpringIX internet exchange","num_buildings":1,"campus_acres":179.54,"utility_provider":"City Utilities of Springfield","tax_incentives":"Missouri Data Center Sales Tax Exemption Program (state sales/use tax exemptions for qualifying data centers)","natural_hazard_zone":"low risk (85 feet underground in limestone; mitigates tornado/severe weather and surface flooding)"},"1736":{"description":"Wildwood Ranch Data Center is a proposed hyperscale/AI data center campus at W 20th St & S Central City Rd in Joplin, Missouri; the operator is undisclosed/unknown.","verified_status":"planned","power_capacity_mw":200,"total_sqft":4000000,"year_online":"unknown","construction_update":"Jan 21, 2026 — Joplin City Council approved annexation and rezoning for a potential data center at Wildwood Ranch; the project remains pre-construction with no public groundbreaking date.","recent_news":"On June 6, 2026, a local group rallied against the Wildwood Ranch data center proposal, planning to attend upcoming city meetings to voice concerns.","notable_tenants":"","verified_name":"Wildwood Ranch Data Center (also marketed as Wildwood Ranch Data Park)","verified_operator":"Unknown / not publicly disclosed","verified_owner":"Wildwood Ranch, L.L.C. (James “Jimmer” Pinjuv)","cooling_type":"unknown","tier_level":"","fiber_providers":"Bluebird Network; broader carrier list not publicly published","num_buildings":0,"campus_acres":600,"utility_provider":"","tax_incentives":"No site-specific award found. Missouri’s Data Center Sales Tax Exemption Program may apply if qualification criteria are met.","natural_hazard_zone":"Regional exposure: tornado/severe storms; New Madrid Seismic Zone seismic risk; parcel-specific FEMA flood zone to be verified (not specified here)."},"1737":{"description":"Lumen-operated telecom/colocation data center at 1212 East 19th Street, Kansas City, MO, listed by different sources as Kansas City 2 or Kansas City 3, with a total footprint of about 50,000 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":50000,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Kansas City 2","verified_operator":"Lumen","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen plus alternate carriers available","num_buildings":0,"campus_acres":0.966,"utility_provider":"Evergy","tax_incentives":"Missouri Data Center Sales Tax Exemption Program (no site-specific enrollment identified).","natural_hazard_zone":"Seismic exposure: New Madrid Seismic Zone; FEMA flood zone unknown."},"1738":{"description":"Rackspace Kansas City (MCI1) is a Rackspace-occupied enterprise/managed-services data center at 10828 NW Airworld Drive in Kansas City, Missouri.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":77545,"year_online":"unknown","construction_update":"","recent_news":"May 27, 2026: a LoopNet listing offers fully furnished second-floor office space at 10828 NW AirWorld Dr for sublease; no recent expansion or regulatory actions identified.","notable_tenants":"Rackspace (sole disclosed tenant/operator). Previously fully leased long-term to Datapipe prior to Rackspace’s acquisition of Datapipe.","verified_name":"Kansas City Data Center (MCI1)","verified_operator":"Rackspace Technology","verified_owner":"GI Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5.22,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"outside 500-year flood plain"},"1739":{"description":"A wholesale-oriented data center at 2121 E 63rd St in Kansas City, listed by CBRE with 3.6 MW of capacity and 450,021 sq ft total (including 179,306 sq ft of office space and over 270,000 sq ft of data-center space). The specific owner/operator is not independently confirmed beyond the CBRE listing attribution.","verified_status":"operational","power_capacity_mw":3.6,"total_sqft":450021,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"AT&T; no publicly disclosed colocation/wholesale customers","verified_name":"CBRE: 2121 E 63rd St Data Center","verified_operator":"CBRE","verified_owner":"AT&T","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T","num_buildings":0,"campus_acres":13,"utility_provider":"Evergy","tax_incentives":"Missouri Data Center Sales Tax Exemption Program","natural_hazard_zone":"FEMA Flood Zone B/X (moderate)"},"1740":{"description":"Edged Kansas City is an operational Edged Data Centers facility at 3420 North Arlington Avenue in Kansas City, MO, offering a sustainable, AI‑ready data center with waterless cooling and 26 MW of critical capacity in a roughly 124,000 sq ft building.","verified_status":"operational","power_capacity_mw":26,"total_sqft":124000,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Edged Kansas City","verified_operator":"Edged Data Centers","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III design (concurrently maintainable; not Uptime-certified in sources provided)","fiber_providers":"carrier-neutral; multiple fiber providers; four diverse points of entry; 2 meet-me rooms","num_buildings":1,"campus_acres":50,"utility_provider":"Evergy","tax_incentives":"Missouri Data Center Sales Tax Exemption Program; no Edged-specific local property-tax abatement verified","natural_hazard_zone":"Outside 500-year floodplain per directory; city has moderate flood risk; severe-storm/tornado exposure region"},"1741":{"description":"Netrality’s 210 North Tucker is an operational carrier-hotel and colocation facility in downtown St. Louis, offering about 442,837 sq ft and serving as a premier interconnection site with direct connectivity to Netrality’s nearby 900 Walnut facility.","verified_status":"operational","power_capacity_mw":20,"total_sqft":442837,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No named anchor customer is publicly disclosed; Netrality indicates the site is home to multiple Fortune 500 companies and other major corporations.","verified_name":"Netrality St. Louis – 210 North Tucker","verified_operator":"Netrality Data Centers","verified_owner":"210 N Tucker Owner, LLC (ultimately backed by Macquarie Infrastructure Partners IV / Macquarie Asset Management via Netrality)","cooling_type":"chilled water","tier_level":"Tier III equivalent (no public Uptime certification found)","fiber_providers":"carrier-neutral; 60+ on-net providers","num_buildings":1,"campus_acres":0.8,"utility_provider":"Ameren Missouri","tax_incentives":"Located within a federal Opportunity Zone census tract (Greater Downtown St. Louis); no facility-specific abatement found","natural_hazard_zone":"New Madrid Seismic Zone earthquake exposure"},"1742":{"description":"C Spire Starkville Data Center is an operational C Spire-operated Tier 3-plus commercial colocation and cloud facility in the Thad Cochran Research, Technology and Economic Development Park at 100 Research Blvd, Suite 105, Starkville, Mississippi; it opened in 2014 and spans about 23,800 sq ft.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":23800,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"Southern Farm Bureau Life Insurance Company","verified_name":"C Spire Starkville Data Center","verified_operator":"C Spire","verified_owner":"C Spire","cooling_type":"unknown","tier_level":"Tier III+","fiber_providers":"C Spire","num_buildings":1,"campus_acres":6.5,"utility_provider":"Starkville Utilities","tax_incentives":"Local tax incentives were provided to support the project.","natural_hazard_zone":"Low risk — inland location; FEMA Flood Zone X context for Starkville; minimal hurricane exposure; regional tornado risk."},"1743":{"description":"The Mississippi e-Center is a Jackson State University technology and event facility at 1230 Raymond Road, which also hosts the Jackson, MS data center formerly operated by Venture Technologies (VTCloud) and now under ConvergeOne following its 2019 acquisition.","verified_status":"operational","power_capacity_mw":0,"total_sqft":192600,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Mississippi e-Center at Jackson State University","verified_operator":"Venture Technologies (VTCloud), acquired by ConvergeOne in 2019","verified_owner":"Jackson State University / MS e-Center Foundation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Entergy Mississippi","tax_incentives":"","natural_hazard_zone":""},"1744":{"description":"The Amazon AWS - Ridgeland Campus is a hyperscale AWS data center campus at 1626 County Line Rd in Ridgeland, MS, operated by Amazon Web Services and part of AWS’s broader Mississippi expansion.","verified_status":"under-construction","power_capacity_mw":350,"total_sqft":1057771,"year_online":"2027","construction_update":"As of mid‑2026, the Ridgeland campus is under construction (status: Construction).","recent_news":"June 9, 2026: Report detailed AWS’s plan to use only City of Ridgeland water (about 93 million gallons/year) and related local investments. May 20, 2026: Ridgeland adopted new data-center zoning limits with buffers/setbacks and infrastructure requirements.","notable_tenants":"","verified_name":"Amazon AWS - Ridgeland Campus, 1626 County Line Rd, Ridgeland, MS","verified_operator":"Amazon Web Services (Amazon Data Services, Inc.)","verified_owner":"Amazon Data Services, Inc. (Amazon)","cooling_type":"hybrid","tier_level":"No Uptime Institute Tier certification publicly disclosed; designed for concurrent maintainability.","fiber_providers":"","num_buildings":14,"campus_acres":786,"utility_provider":"Entergy Mississippi","tax_incentives":"Mississippi incentives include $44 million in appropriations (largely for job training) and tax breaks such as a 10-year corporate income tax exemption and a 3% rebate on construction costs, alongside state-backed infrastructure support for the Ridgeland project.","natural_hazard_zone":"FEMA flood zone not confirmed for this parcel; region is inland Mississippi with notable severe-thunderstorm/tornado and heavy-rain flood risk; not in a coastal storm-surge zone."},"1745":{"description":"Flexential Louisville - Downtown is an operational colocation data center operated by Flexential at 752 Barret Avenue, Louisville, KY 40204, featuring a 61,080-square-foot footprint.","verified_status":"operational","power_capacity_mw":3.09,"total_sqft":61080,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Louisville - Downtown","verified_operator":"Flexential","verified_owner":"","cooling_type":"chilled water","tier_level":"Tier II equivalent","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"LG&E (Louisville Gas and Electric)","tax_incentives":"State sales/use tax exemption framework (HB 775) requires ≥$450M capex in city limits; no site-specific incentives identified.","natural_hazard_zone":"FEMA Flood Zone X (shaded) / Zone B — moderate flood hazard; facility built above 100-year floodplain."},"1746":{"description":"Flexential Louisville - East is an operational Flexential colocation data center at 2101 Nelson Miller Parkway in Louisville, Kentucky, with a 33,588-square-foot footprint and 1.46 MW of critical power.","verified_status":"operational","power_capacity_mw":1.46,"total_sqft":33588,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Louisville - East data center","verified_operator":"Flexential","verified_owner":"","cooling_type":"unknown","tier_level":"No Uptime Institute Tier certification reported; 2N power and N+1 cooling redundancy.","fiber_providers":"Windstream Communications; CenturyLink/Lumen; Time Warner Cable; carrier-neutral","num_buildings":1,"campus_acres":3.14,"utility_provider":"Louisville Gas and Electric Company (LG&E / LG&E and KU Energy)","tax_incentives":"Kentucky sales and use tax exemption for qualified data center projects (KEDFA approval required); facility-specific approval not confirmed.","natural_hazard_zone":""},"1747":{"description":"A Tier III, LEED Gold enterprise data center in Louisville, KY, owned by Aphorio Carter, featuring 102,500 sq ft on a 30‑acre site and around 1 MW of critical IT capacity. The site was built in 2011 and remains in service.","verified_status":"operational","power_capacity_mw":1,"total_sqft":102500,"year_online":"2011","construction_update":"May 7, 2026: Industry coverage of a 365 Data Centers–Aphorio Carter partnership to develop ~200 MW of AI‑ready capacity indicated the Louisville site at 12901 Plantside Dr as part of the contemplated pipeline; this reflects planning/LOI activity rather than an announced construction start.","recent_news":"May 2026: 365 Data Centers and Aphorio Carter announced a ~200 MW AI‑ready development pipeline; coverage identified the Louisville site at 12901 Plantside Dr as part of the contemplated program.","notable_tenants":"","verified_name":"Louisville Enterprise Data Center","verified_operator":"Eaton Corporation","verified_owner":"Aphorio Carter Critical Infrastructure Fund, LLC","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"","num_buildings":1,"campus_acres":30,"utility_provider":"LG&E (Louisville Gas & Electric)","tax_incentives":"Kentucky HB 775 (2025) expanded sales and use tax exemptions for qualified data center projects; no facility-specific award found for 12901 Plantside Dr.","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard, between the 100- and 500-year flood limits); broader New Madrid Seismic Zone exposure."},"1748":{"description":"Simpsonville Enterprise Data Center is an Aphorio Carter–owned enterprise facility at 70 Kingbrook Pkwy, Simpsonville, KY, reported at 102,500 sq ft and 1 MW. Acquired in 2025, it was later included in a 2026 AI-focused development pipeline.","verified_status":"operational","power_capacity_mw":1,"total_sqft":102500,"year_online":"2011","construction_update":"May 2026: Included in 365 Data Centers/Aphorio Carter’s AI-ready development pipeline; planned conversion activity noted, with no confirmed construction start.","recent_news":"May 2026: 365 Data Centers and Aphorio Carter announced a ~200 MW AI‑ready U.S. data‑center pipeline, with the Simpsonville, KY site identified in coverage as part of this program.","notable_tenants":"Eaton","verified_name":"Simpsonville Enterprise Data Center","verified_operator":"Aphorio Carter","verified_owner":"Aphorio Carter Critical Infrastructure Fund LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":21,"utility_provider":"","tax_incentives":"Kentucky HB 775 (2025) — expanded sales and use tax exemptions for qualified data center projects statewide","natural_hazard_zone":"Tornado-prone region"},"1749":{"description":"IgLou Data Center is IgLou Internet Services’ colocation facility at 3315 Gilmore Industrial Blvd in Louisville, Kentucky, where the company offers server colocation services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":18000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"IgLou Data Center","verified_operator":"IgLou Internet Services, Inc.","verified_owner":"CU Ventures LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Louisville Gas & Electric (LG&E)","tax_incentives":"","natural_hazard_zone":""},"1750":{"description":"BluegrassNet East Breckinridge is an operational colocation/data center operated by BluegrassNet at 321 East Breckinridge Street in Louisville, Kentucky.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8427,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"BluegrassNet East Breckinridge - Louisville","verified_operator":"BluegrassNet","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T; Insight; Level 3; Time Warner (via BluegrassNet Metro Ethernet fiber transport)","num_buildings":1,"campus_acres":0.41,"utility_provider":"Louisville Gas & Electric (LG&E)","tax_incentives":"","natural_hazard_zone":"High tornado risk; FEMA flood zone not determinable from available citations"},"1751":{"description":"BluegrassNet Downtown Louisville is BluegrassNet’s ‘4th Street Facility’ colocation/data center in downtown Louisville. The site is marketed with enterprise features such as redundant, multi-homed gigabit Internet connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"BluegrassNet Downtown Louisville (4th Street Facility)","verified_operator":"BluegrassNet (Intermart, Inc.)","verified_owner":"MF Blue Valley Apartments LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Louisville Gas & Electric (LG&E)","tax_incentives":"","natural_hazard_zone":"Exact FEMA flood zone: unknown; verify via Louisville MSD Floodplain Determination tool. Regional seismic exposure: New Madrid seismic zone."},"1752":{"description":"A small telecom/colocation data center at 929 Mason Avenue in Louisville, operated by Windstream, serving as a local network/data hub for business connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream: Louisville, KY Data Center","verified_operator":"Windstream","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral (multiple providers; specific carriers not listed)","num_buildings":1,"campus_acres":0.41,"utility_provider":"Louisville Gas & Electric (LG&E)","tax_incentives":"No facility-specific incentives identified; Kentucky’s 2025 expanded data center sales/use tax exemptions exist statewide, and Louisville offers a property tax assessment freeze program, but no record of this site’s participation.","natural_hazard_zone":"Flood exposure area near Beargrass Creek canal; FEMA flood-zone designation for the parcel not verified."},"1753":{"description":"Lumen Louisville 1 is a Lumen Technologies network colocation/data center at 848 South 8th Street in Louisville, Kentucky, with about 13,400 sq ft total and roughly 1,146 sq ft of raised-floor colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":13400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Louisville 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (on-net)","num_buildings":1,"campus_acres":0.1,"utility_provider":"Louisville Gas & Electric (LG&E)","tax_incentives":"","natural_hazard_zone":""},"1754":{"description":"Lumen Louisville 2 is an operational Lumen Technologies telecom/colocation data center at 715 S 7th St in Louisville, KY, listed with about 13,400 sq ft total space and roughly 1,146 sq ft of raised-floor colocation.","verified_status":"operational","power_capacity_mw":0,"total_sqft":13400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Louisville 2 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral with on-net Lumen; diverse fiber paths and multiple carriers available.","num_buildings":1,"campus_acres":0,"utility_provider":"Louisville Gas and Electric Company (LG&E)","tax_incentives":"No facility-specific incentives identified; a Kentucky analysis notes no approved state qualified data center projects as of May 2026.","natural_hazard_zone":""},"1755":{"description":"Lumen Louisville 3 is an operational Lumen Technologies colocation/data center at 332 W. Broadway (17th floor) in Louisville, KY, with 10,495 sq ft total and 1,598 sq ft of raised floor. Listings document its lineage from tw telecom to Level 3/CenturyLink and now Lumen.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10495,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Louisville 3 Data Center","verified_operator":"Lumen Technologies","verified_owner":"IBC Property Holdings LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen; Cogent Communications","num_buildings":1,"campus_acres":0.77,"utility_provider":"Louisville Gas and Electric (LG&E)","tax_incentives":"No facility-specific abatement found. The Heyburn Building is marketed as an Opportunity Zone property.","natural_hazard_zone":"FEMA flood zone: not determined here (use MSD Floodplain Determination and FEMA Flood Maps). Regional seismic exposure: New Madrid Seismic Zone."},"1756":{"description":"Data Canopy - Louisville is an operational colocation and managed-hosting data center operated by Data Canopy at 1208 Quality Choice Place, Louisville, KY 40210, offering about 2 MW of capacity and roughly 8,130 sq ft of space.","verified_status":"operational","power_capacity_mw":2,"total_sqft":8130,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Data Canopy Louisville","verified_operator":"Data Canopy","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; redundant connectivity providers not publicly named","num_buildings":1,"campus_acres":0.59,"utility_provider":"Louisville Gas and Electric (LG&E)","tax_incentives":"Kentucky expanded data center sales and use tax exemptions for qualifying projects; no site-specific award identified for this facility.","natural_hazard_zone":"FEMA Zone X (500-year flood plain; generally low-to-moderate/minimal flood risk)"},"1757":{"description":"Silica Broadband operates a colocation data center in Prospect, KY (listed by Davey Holdings LLC at 12935 W U.S. Hwy 42) offering hosting/colocation services. The operator’s site highlights Cisco-backed infrastructure with three tier‑one providers and lists 12921 W U.S. Highway 42 as its contact address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"June 16, 2026: Accelecom and Silica Broadband announced a partnership to enhance high‑speed internet across Oldham County, Kentucky.","notable_tenants":"","verified_name":"Silica Broadband","verified_operator":"Silica Broadband (operated by Davey Holdings LLC)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Davey Holdings LLC (AS54035) with at least two upstream providers; partnership with Accelecom; interconnection at the Heyburn Building (Louisville).","num_buildings":1,"campus_acres":0,"utility_provider":"Louisville Gas & Electric (LG&E/KU)","tax_incentives":"No data-center-specific incentives found; Oldham County does not impose an occupational license tax.","natural_hazard_zone":"FEMA Flood Zone X (Area of Minimal Flood Hazard); SFHA_TF=F"},"1758":{"description":"PowerHouse Louisville is a hyperscale data center campus on Camp Ground Road in Louisville, Kentucky, operated by PowerHouse Data Centers (a division of American Real Estate Partners) in partnership with Poe Companies, planned for up to six buildings totaling about 1.8 million square feet on a 154‑acre site. It is described as a 400 MW campus, with the project page listing a maximum utility power of 525 MW and delivery in Q4 2026.","verified_status":"under-construction","power_capacity_mw":400,"total_sqft":1800000,"year_online":"2026","construction_update":"Mar 5, 2026: Louisville Planning Commission approved a new site plan for the campus; developer indicates first 130 MW targeted for Oct 2026.","recent_news":"Mar 5, 2026: Louisville Planning Commission approved a new site plan for the hyperscale data center on Camp Ground Road amid protest. Jun 3, 2026: City officials discussed a possible moratorium and draft regulations for data centers.","notable_tenants":"","verified_name":"PowerHouse Louisville","verified_operator":"PowerHouse Data Centers","verified_owner":"American Real Estate Partners (AREP) / Poe Companies (joint venture)","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":6,"campus_acres":154,"utility_provider":"Louisville Gas and Electric (LG&E)","tax_incentives":"Kentucky HB 8 provides sales and use tax exemptions for qualified data center equipment; later guidance expanded the incentives. As of May 2026, no qualified data center projects had been formally approved under this program.","natural_hazard_zone":"Moderate flood risk in the Louisville area; approximately 22% of buildings are at risk of flooding."},"1759":{"description":"KUSI Data Center (marketed as SUBTAC) is an operational, 2,300‑sq‑ft underground colocation facility run by Kentucky Underground Storage, Inc. at 3830 Highbridge Rd in Wilmore, KY, noted for being 130 feet underground with robust physical security and resilient infrastructure.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2300,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"KUSI Data Center","verified_operator":"Kentucky Underground Storage, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":32,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1760":{"description":"A colocation data center operated by Gearheart Communications at 1003 Winchester Rd, Lexington, KY 40505, offering hosted and co-location services and described by the operator as a new facility near downtown Lexington.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Gearheart Data Center (Gearheart Communications - Lexington)","verified_operator":"Gearheart Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Gearheart Fiber; East Kentucky Network","num_buildings":1,"campus_acres":0.28,"utility_provider":"Kentucky Utilities (LG&E and KU)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate)"},"1761":{"description":"An operational Windstream telecom switch and data-center facility at 151 N Martin Luther King Blvd in Lexington, Kentucky, operated by Windstream. It serves as a key data center location for the tenant’s wholesale services and was included in an eight-site Windstream switch/data-center portfolio marketed for sale in August 2024.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Lexington","verified_operator":"Windstream","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream (on-net); not publicly listed as carrier-neutral","num_buildings":1,"campus_acres":1.13,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1762":{"description":"BluegrassNet Downtown Lexington is a BluegrassNet-operated colocation data center at 535 W 2nd St in Lexington, Kentucky. It offers colocation in Lexington with multi‑Gigabit Internet connectivity; detailed capacity and building size are not publicly disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"BluegrassNet Downtown Lexington","verified_operator":"BluegrassNet","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown; operator advertises redundant and multi-homed connectivity (BGP).","num_buildings":1,"campus_acres":0,"utility_provider":"Kentucky Utilities (KU)","tax_incentives":"No facility-specific incentives identified. Kentucky HB 775 (2025) expanded statewide data-center sales/use-tax exemptions; as of May 2026, no qualified projects had been approved.","natural_hazard_zone":"FEMA flood zone for 535 W 2nd St not verified; consult LFUCG Flood Hazard Zone Viewer/FEMA for site-specific designation."},"1763":{"description":"DartPoints Lexington is a planned colocation data center campus at the former Lexmark site at 745 W New Circle Rd in Lexington, KY, acquired by DartPoints in May 2026. The ~343,000‑sq‑ft campus is fully zoned for data center use, includes an owned on‑site substation, and is planned for 20–30 MW initially with expansion potential to 70 MW.","verified_status":"planned","power_capacity_mw":70,"total_sqft":343000,"year_online":"unknown","construction_update":"May 27, 2026: Acquisition announced; property sale closed May 15, 2026. Planning/redevelopment is underway; no RFS date publicly disclosed.","recent_news":"June 2026: Local outlets reported the $29M purchase and that the DartPoints Lexington data center will not receive city incentives.","notable_tenants":"","verified_name":"DartPoints Lexington Data Center Campus","verified_operator":"DartPoints","verified_owner":"DartPoints Operating Company","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":29.54,"utility_provider":"","tax_incentives":"City: no incentives (per local reporting). State: Kentucky Qualified Data Center sales/use-tax exemption exists, but as of May 2026 no projects had been approved.","natural_hazard_zone":""},"1764":{"description":"CyrusOne CIN6 – Florence is a CyrusOne-operated colocation data center at 7190–7200 Industrial Road in Florence, Kentucky, notable for its 143,000-sq-ft facility serving enterprise workloads in the Cincinnati–Northern Kentucky area.","verified_status":"operational","power_capacity_mw":4,"total_sqft":143000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CIN6","verified_operator":"CyrusOne","verified_owner":"CyrusOne (privately held by funds managed by KKR and Global Infrastructure Partners)","cooling_type":"unknown","tier_level":"","fiber_providers":"OptiFi Networks; NTT DATA Services","num_buildings":0,"campus_acres":0,"utility_provider":"Duke Energy Kentucky","tax_incentives":"State-level sales and use tax exemption for qualified data center equipment (minimum investment thresholds within five years); no facility-specific award identified.","natural_hazard_zone":"Minor flood risk (area-level); inland, non-hurricane coastal exposure"},"1765":{"description":"CBTS Florence Data Center is a CBTS-operated data center located at 987 Central Blvd., Florence, KY 41042. Public listings identify the site and place it within CBTS’s network of Midwestern data centers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CBTS Florence Data Center","verified_operator":"CBTS","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Duke Energy Kentucky","tax_incentives":"","natural_hazard_zone":"Minor flood risk (Central Florence) with FEMA zone not determined"},"1766":{"description":"Lost River Data Center is an operational Tier II colocation facility at 2413 Nashville Rd in Bowling Green, Kentucky, operated by BGMU Fiber as a joint venture with Western Kentucky University/WKU Research Foundation.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"2012","construction_update":"","recent_news":"June 2026: Bowling Green rejected a proposed six‑month moratorium on data centers and moved forward with/approved new data‑center regulations; local reporting also noted no current data‑center projects under consideration in the city.","notable_tenants":"Western Kentucky University High Performance Computing Center (HPCC); Accelecom (network presence). No publicly disclosed enterprise anchor tenants.","verified_name":"BGMU Data Center (formerly Lost River Data Center)","verified_operator":"BGMU Fiber","verified_owner":"Joint venture between the Western Kentucky University Research Foundation and Bowling Green Municipal Utilities (BGMU)","cooling_type":"unknown","tier_level":"Tier II (design; not Uptime-certified)","fiber_providers":"BGMU Fiber; Accelecom","num_buildings":0,"campus_acres":20,"utility_provider":"Bowling Green Municipal Utilities (TVA local power company)","tax_incentives":"","natural_hazard_zone":""},"1767":{"description":"Riot Platforms Paducah is an operational Bitcoin‑mining data center at 5657 Commerce Dr in Paducah, Kentucky, operated by Riot Platforms following its 2024 acquisition of Block Mining. It is one of Riot’s two operational Kentucky sites within the portfolio described by the company.","verified_status":"operational","power_capacity_mw":35,"total_sqft":0,"year_online":"2022","construction_update":"January 28, 2026: A Retail Electric Service Agreement referencing 5657 Commerce Drive, Paducah, KY 42001 (New Commerce Park Site) was filed, indicating an active utility-service milestone supporting ongoing operations/expansion.","recent_news":"January 28, 2026: Big Rivers Electric filed a Retail Electric Service Agreement for Block Mining Inc.’s New Commerce Park Site in Paducah, indicating a current utility-service milestone tied to the facility.","notable_tenants":"","verified_name":"Riot Platforms Paducah","verified_operator":"Riot Platforms, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Regional fiber infrastructure (carrier names not publicly disclosed).","num_buildings":0,"campus_acres":5.08,"utility_provider":"Jackson Purchase Energy Cooperative (retail); wholesale supply via Big Rivers Electric Corporation under PSC-approved agreements.","tax_incentives":"Kentucky sales/use tax exemption on electricity for commercial mining operations consuming >200,000 kWh/month (site-specific approval not located).","natural_hazard_zone":"McCracken County hazards: tornado, flooding, thunderstorm wind, winter/ice storms; notable regional seismic exposure (New Madrid)."},"1768":{"description":"Quad State Internet PAH1 is an operational colocation facility at 1212 Helen St in Paducah, Kentucky, operated by Quad State Internet LLC. It offers colocation and transport services and is notable for hosting Hurricane Electric’s first Kentucky PoP and the Paducah Internet Exchange.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"2021","construction_update":"","recent_news":"","notable_tenants":"Hurricane Electric (public PoP); facility hosts the Paducah Internet Exchange (PIE) with publicly listed participants.","verified_name":"Quad State Internet PAH1","verified_operator":"Quad State Internet LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Hurricane Electric; Quad State Internet dark fiber and wavelength services; cross-connects/interconnection available.","num_buildings":0,"campus_acres":0.16,"utility_provider":"Paducah Power System","tax_incentives":"Statewide: Kentucky HB 775 expanded the sales-and-use tax exemption for qualified data center projects. No facility-specific certification found for this site.","natural_hazard_zone":"Regional exposures: significant flood and severe-storm hazards in McCracken County and elevated earthquake risk due to the New Madrid Seismic Zone; address-level FEMA flood zone not confirmed."},"1769":{"description":"Core Scientific Calvert City (Calvert 1, 2 & 3) is an operating high-density data center campus in Calvert City, Kentucky, owned and operated by Core Scientific, providing power access, connectivity, and low-latency network paths.","verified_status":"operational","power_capacity_mw":150,"total_sqft":60000,"year_online":"2019","construction_update":"","recent_news":"No Calvert City–specific development reported in the last six months; Core Scientific issued company-wide Q1 FY2026 results on May 6, 2026 without a Calvert-specific update.","notable_tenants":"CoreWeave (portfolio-level HPC/colocation customer across multiple Core Scientific sites; no Calvert City–specific tenant disclosure found).","verified_name":"Core Scientific Calvert City, Kentucky Data Center (Calvert 1, 2 & 3)","verified_operator":"Core Scientific","verified_owner":"American Property Acquisition, LLC (Core Scientific subsidiary)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":15,"utility_provider":"Jackson Purchase Energy Cooperative (TVA-supplied)","tax_incentives":"Kentucky statewide data center incentives available (e.g., sales tax and income tax incentives); no Calvert City-specific award disclosed.","natural_hazard_zone":"New Madrid Seismic Zone exposure (western Kentucky)"},"1770":{"description":"Riot Platforms Calvert City (Blue Steel) is an operational Bitcoin‑mining data center at 1542 N Main St, Calvert City, Kentucky, acquired via Riot’s July 23, 2024 purchase of Block Mining; it has 25 MW of live power with potential to expand to 55 MW.","verified_status":"operational","power_capacity_mw":25,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Riot Platforms Calvert City (Blue Steel)","verified_operator":"Riot Platforms, Inc.","verified_owner":"CC Metals & Alloys LLC (subsidiary of Georgian American Alloys, Inc.)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":166.29,"utility_provider":"Tennessee Valley Authority (TVA)","tax_incentives":"Kentucky HB 230 electricity sales tax exemption for cryptocurrency mining; potential eligibility for Kentucky investment/IEBA incentives and credits.","natural_hazard_zone":"Proximity to FEMA Flood Zone AE (Tennessee River floodplain) – verify parcel-specific FEMA map."},"1771":{"description":"EnergyNet Data Center is a colocation facility at 1820 E. 9th Street in Hopkinsville, Kentucky, operated by EnergyNet. It offers rack-to-cage colocation with dual 120VAC/20A power feeds, with the address and services confirmed by operator pages and a regional facility listing.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EnergyNet Data Center","verified_operator":"Hopkinsville Electric System / EnergyNet","verified_owner":"Hopkinsville Electric System (HES)","cooling_type":"unknown","tier_level":"","fiber_providers":"EnergyNet fiber network; carrier details not publicly listed","num_buildings":1,"campus_acres":0,"utility_provider":"Hopkinsville Electric System (HES)","tax_incentives":"Kentucky KRS 139.499 sales/use tax exemption for qualified data center equipment (statewide); no facility-specific approval publicly found","natural_hazard_zone":"Localized flooding along East 9th St and downtown Hopkinsville; regional New Madrid Seismic Zone earthquake exposure"},"1772":{"description":"East Kentucky Network operates a 16,700-square-foot data center at 101 Technology Trail in Ivel, Kentucky that provides secure enterprise data storage and colocation services, supported by redundant infrastructure. Industry listings corroborate the size and report a 3.0 MW power capacity.","verified_status":"operational","power_capacity_mw":3,"total_sqft":16700,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"East Kentucky Network Data Center","verified_operator":"East Kentucky Network, LLC","verified_owner":"East Kentucky Network, LLC","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"East Kentucky Network (owner/operator fiber); INDATEL member","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Kentucky Qualified Data Center sales/use tax exemption program exists; no public evidence that this facility has been approved to receive it.","natural_hazard_zone":"Elevated inland flood risk (county among highest in KY per FEMA NRI); moderate seismic risk; moderate wildfire potential."},"1773":{"description":"Ashland Technology Complex and Data Center (ATCDC) is a proposed Tier III multi-tenant colocation campus at 500 Diederich Blvd, Russell, Kentucky, listed at more than 189,000 sq ft. The address is also publicly used by General Heating & Air Conditioning, and no evidence indicates current operations.","verified_status":"planned","power_capacity_mw":0,"total_sqft":189000,"year_online":"unknown","construction_update":"As of 2026-06, no publicly dated construction or development milestones for ATCDC; the listing remains future-tense and the address is still publicly used by GHAC.","recent_news":"","notable_tenants":"","verified_name":"ATCDC — Ashland Technology Complex and Data Center","verified_operator":"Ashland Technology Complex and Data Center (ATCDC)","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III claimed/listed by DataCenterMap; no Uptime Institute award/certification found","fiber_providers":"","num_buildings":2,"campus_acres":26,"utility_provider":"Kentucky Power (AEP)","tax_incentives":"Kentucky’s Qualified Data Center Incentive provides sales and use tax exemptions for approved projects; benefits may extend up to 50 years for very large investments. As of May 2026, no state-approved qualified data center projects were reported, and no approval specific to this facility was found.","natural_hazard_zone":"Localized flash-flood exposure on Diederich Boulevard (Russell) has been documented in 2021 and 2025; exact FEMA flood-zone designation for the parcel is not confirmed."},"1774":{"description":"Muskie Data Campus is a planned TeraWulf hyperscale AI/HPC data center campus at EastPark Industrial Park near Ashland in northeast Kentucky. The company says the site spans roughly 285 acres and is expected to support more than 1 GW of data center capacity over time.","verified_status":"planned","power_capacity_mw":1000,"total_sqft":0,"year_online":"unknown","construction_update":"Planning/permitting stage. As of June 16, 2026, TeraWulf said Muskie is eyeing construction in early 2027 and has begun local workforce engagement.","recent_news":"May–June 2026: TeraWulf announced it acquired the Muskie Data Campus site, and a June 2 local forum drew resident questions about transparency and jobs.","notable_tenants":"","verified_name":"Muskie Data Campus","verified_operator":"TeraWulf Inc.","verified_owner":"TeraWulf Inc. (acquired from Industrial Equity Partners)","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream","num_buildings":0,"campus_acres":285,"utility_provider":"Kentucky Power (AEP Kentucky)","tax_incentives":"Kentucky Qualified Data Center Project sales/use tax exemption available statewide; per 2025 updates, eligibility thresholds vary and the exemption may extend up to 50 years for projects investing at least $450M.","natural_hazard_zone":"unknown"},"1775":{"description":"Planned hyperscale HPC/AI data center campus on the former Century Aluminum Hawesville site in Hawesville, Kentucky, led by Justified DataPower LLC with Raylan Data Holdings (a TeraWulf affiliate) intended to develop and own the project. It is notable for repurposing a large brownfield site with more than 250 buildable acres and approximately 480 MW of existing power availability via high-voltage transmission and an on-site substation.","verified_status":"planned","power_capacity_mw":480,"total_sqft":0,"year_online":"2027","construction_update":"Mar 2026: Fluor engaged for early engineering, master planning, and preconstruction on the 480‑MW, multi‑billion‑dollar Hawesville campus; preconstruction activities are underway.","recent_news":"Regulatory: Kentucky PSC Case No. 2026-00115 is active on the proposed Retail Electric Service Agreement among Big Rivers, Kenergy, and Justified DataPower; intervention was granted in June 2026 and filings continue. Community/permits: Local coverage in May 2026 reported continued questions about water use and noted permits/rights associated with the site’s wells.","notable_tenants":"","verified_name":"Justified Data Campus","verified_operator":"Justified DataPower LLC","verified_owner":"Raylan Data Holdings LLC","cooling_type":"air-cooled","tier_level":"Tier III-aligned","fiber_providers":"","num_buildings":0,"campus_acres":790,"utility_provider":"Big Rivers Electric Corporation / Kenergy Corp","tax_incentives":"Eligible under Kentucky HB 775 qualified data center incentives (expanded sales & use tax exemptions; potential income tax and wage assessment benefits for large projects).","natural_hazard_zone":"Moderate flood risk (First Street Foundation assessment for Hawesville)."},"1776":{"description":"Big Pond / Mason County Campus is a planned hyperscale data center campus near Maysville, Kentucky (Big Pond Pike), backed by an undisclosed Fortune 100 technology company. Industry listings and local reporting indicate a roughly 2,000+ acre site with potential ~2.2 GW capacity and multiple very large data center buildings.","verified_status":"planned","power_capacity_mw":2200,"total_sqft":4312440,"year_online":"unknown","construction_update":"Apr 22, 2026: Board approved Maysville data center plans. May 22–26, 2026: Mason County Fiscal Court voted to give final approval on rezoning roughly 2,000+ acres for the project.","recent_news":"Late May–June 2026: Mason County Fiscal Court gave final approval to rezone roughly 2,080 acres for the data center project, while opposition group We Are Mason County filed legal action challenging the approvals.","notable_tenants":"","verified_name":"Mason County Campus","verified_operator":"Undisclosed Fortune 100 corporation","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":2080,"utility_provider":"Fleming-Mason Energy Cooperative; East Kentucky Power Cooperative (EKPC)","tax_incentives":"Kentucky HB 775 (April 2025) expanded sales and use tax exemptions for qualified data center projects.","natural_hazard_zone":"Low flood risk (Flood Factor 1/10 at 3148 Big Pond Pike)"},"1777":{"description":"Planned hyperscale data storage and service campus at 421 Steele Rd in Franklin, Kentucky, within OTN Group’s Gateway 65 North; the project is proposed by TenKey LandCo (project company) and envisions three 200,000-sq-ft data center buildings across ~200 acres.","verified_status":"planned","power_capacity_mw":0,"total_sqft":600000,"year_online":"unknown","construction_update":"Preliminary development plan approved by the Franklin Planning & Zoning Commission on Mar. 4, 2026.","recent_news":"May 19, 2026: BG Daily News reported active lawsuits related to the project and that TenKey moved to dismiss the citizens group’s case; the legal challenges continue.","notable_tenants":"","verified_name":"TenKey Data Center Campus","verified_operator":"TenKey LandCo I, LLC","verified_owner":"TenKey LandCo I, LLC (OTN Group)","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"carrier-neutral; access to major fiber backbone routes; Franklin Electric Plant Board fiber","num_buildings":3,"campus_acres":200,"utility_provider":"self-powered (on-site natural gas turbines)","tax_incentives":"Developer states no tax incentives requested; site within a Qualified Opportunity Zone; Kentucky sales/use tax exemption available for qualified data centers.","natural_hazard_zone":"Karst terrain with sinkholes and caves"},"1778":{"description":"TierPoint Sioux Falls - East is an operational TierPoint colocation data center in Sioux Falls, South Dakota, noted for enterprise-grade building, security, and reliability features.","verified_status":"operational","power_capacity_mw":2,"total_sqft":16000,"year_online":"2005","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Sioux Falls - East Data Center (SFE)","verified_operator":"TierPoint","verified_owner":"","cooling_type":"chilled water","tier_level":"N+1 redundancy (no Uptime Institute Tier certification published)","fiber_providers":"carrier-neutral; SDN Communications","num_buildings":1,"campus_acres":8.47,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Outside 500-year FEMA floodplain"},"1779":{"description":"SDN Communications owns the hardened La Mesa Data Center at 5300 N. La Mesa Dr., Sioux Falls, and TierPoint delivers/markets Sioux Falls – West services from this SDN facility under their partnership. It is a colocation/disaster-recovery and network PoP site notable for opening in 2012 and later doubling in size with a second pod.","verified_status":"operational","power_capacity_mw":0,"total_sqft":50000,"year_online":"2012","construction_update":"Expansion doubled the facility with La Mesa II/Pod 2 (adding another 25,000 sq ft); announced Mar 23, 2022, and SDN indicates the size is doubled and Pod 2 is seeking tenants.","recent_news":"","notable_tenants":"Hurricane Electric (Tier 1 IP transit PoP). No other anchor tenants publicly disclosed.","verified_name":"TierPoint Sioux Falls – West Data Center / SDN Communications La Mesa Data Center","verified_operator":"TierPoint","verified_owner":"SDN Communications (South Dakota Network)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":66,"utility_provider":"Xcel Energy","tax_incentives":"No project-specific incentive identified; South Dakota has no specific data center incentive and 2026 proposals for exemptions/refunds failed.","natural_hazard_zone":"Hardened construction for severe wind/tornado risk; FEMA flood-zone designation not determined from public sources."},"1780":{"description":"Midco operates an operational Tier III, SOC 2-certified colocation data center at 5401 S Solberg Avenue in Sioux Falls, with about 11,000 sq ft and redundant infrastructure. The site offers business colocation with diverse connectivity options.","verified_status":"operational","power_capacity_mw":1,"total_sqft":11000,"year_online":"2015","construction_update":"","recent_news":"Jan 12, 2026: A local interview with Midco’s president discussed the company’s data centers, including the Sioux Falls facility; no site-specific expansion, new named tenants, or regulatory actions were announced.","notable_tenants":"","verified_name":"Midco Sioux Falls Data Center","verified_operator":"Midco","verified_owner":"Midco (Midcontinent Communications) — privately held joint venture of Midcontinent Media (51%) and Comcast (49%)","cooling_type":"air-cooled","tier_level":"Tier III design","fiber_providers":"Carrier-neutral; two diverse fiber points of entry; 15,000+ miles Midco-owned fiber; connectivity to PoPs in Minneapolis, Chicago, Omaha, Kansas City, and Denver.","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"No specific ongoing state data center incentive program; 2025 SB 177 proposed a sales and use tax refund for data center operations (status not confirmed).","natural_hazard_zone":"Hardened construction: EF3-rated shell (up to 150 mph) and described as flood-averse."},"1781":{"description":"Midco Yankton is an operational carrier-neutral colocation data center at 2106 West City Limits Road in Yankton, South Dakota, operated by Midco (Midco Business). Midco lists Yankton as a Tier II facility with dual fiber entrances and backup generators.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Midco Yankton Data Center","verified_operator":"Midco (Midcontinent Communications)","verified_owner":"","cooling_type":"unknown","tier_level":"Tier II","fiber_providers":"carrier-neutral; dual fiber entrances; Midco fiber network","num_buildings":1,"campus_acres":1.26,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk"},"1782":{"description":"A 20,000 sq ft colocation data center operated by FirstLight Fiber at 45 Krupp Drive in Williston, VT, offering A/B power and UPS-backed infrastructure.","verified_status":"operational","power_capacity_mw":0,"total_sqft":20000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"FirstLight Burlington Data Center (Williston, VT)","verified_operator":"FirstLight Fiber","verified_owner":"KRUPP DRIVE PROPERTIES LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":3.48,"utility_provider":"Green Mountain Power","tax_incentives":"","natural_hazard_zone":"unknown"},"1783":{"description":"Tech Vault - South Burlington is Tech Vault, Inc.'s carrier-neutral colocation/managed data center at 21 Gregory Drive, Suite 165, South Burlington, Vermont. It is described as Vermont’s first commercial, LEED‑certified, carrier‑neutral managed data center and colocation facility.","verified_status":"operational","power_capacity_mw":1,"total_sqft":39000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"Mach7; RCMtogo","verified_name":"Tech Vault - South Burlington Data Center","verified_operator":"Tech Vault, Inc.","verified_owner":"Investors Corporation of Vermont","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":3.56,"utility_provider":"Green Mountain Power","tax_incentives":"","natural_hazard_zone":"Minor flood risk area (neighborhood-level); parcel-specific FEMA zone not determined."},"1784":{"description":"A small colocation/web-hosting data center operated by Power Shift at 571 South Main Street in Stowe, Vermont, offering tailored solutions for small companies.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Power Shift StoweVT Data Center","verified_operator":"Power Shift","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.62,"utility_provider":"Stowe Electric Department","tax_incentives":"","natural_hazard_zone":""},"1785":{"description":"ClearBearing Inc. - Burlington Data Center is a colocation facility operated by ClearBearing Inc. at 208 Flynn Ave., Suite 2E, Burlington, VT, offering fully managed colocation options. ClearBearing is an Internet engineering consultancy and network service provider based in Burlington, Vermont, since 1999.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ClearBearing Inc. - Burlington Data Center","verified_operator":"ClearBearing, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Burlington Electric Department","tax_incentives":"","natural_hazard_zone":""},"1786":{"description":"An enterprise data center at 30 Community Drive in South Burlington operated by the University of Vermont, built out in a 4,897 sq ft lease completed in December 2006 to house UVM’s data center and support campus research computing.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4897,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"University of Vermont (UVM)","verified_name":"30 Community Drive Data Center (UVM Remote Data Center)","verified_operator":"University of Vermont","verified_owner":"Technology Park Partners, LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"TelJet Longhaul (carrier-neutral) at 30 Community Drive; campus fiber infrastructure (Technology Park).","num_buildings":1,"campus_acres":177,"utility_provider":"Green Mountain Power","tax_incentives":"City includes a designated Opportunity Zone (census tract 50007003600) offering preferential tax treatment for qualifying investments.","natural_hazard_zone":"Earthquake hazard: low. City floodplain overlay exists; no evidence this specific site is within a FEMA Special Flood Hazard Area in provided sources."},"1787":{"description":"Opticom Bozeman is a colocation/data center operated by Montana Opticom at 144 Quail Run Rd in Bozeman, MT, offering connectivity and colocation services in a modest footprint noted as '5,000 plus SQFT of N+1' space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Montana Opticom Bozeman","verified_operator":"Montana Opticom","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Montana Opticom (AS11924); no published third-party on-net carriers listed","num_buildings":0,"campus_acres":0,"utility_provider":"NorthWestern Energy","tax_incentives":"","natural_hazard_zone":"Medium seismic hazard (Intermountain Seismic Belt, Gallatin County)"},"1788":{"description":"Atlas Power Butte is an operating cryptocurrency/high-density compute data center at 200 Technology Way in Butte, Montana, run by Atlas Power Group; it is listed around 75 MW with a proposed expansion under review.","verified_status":"operational","power_capacity_mw":75,"total_sqft":0,"year_online":"2018","construction_update":"As of Feb–May 2026: proposed 150‑MW expansion under county/public review; utility deal provides 75 MW beginning in 2026 with a further 75 MW expected in 3–5 years; no construction start verified.","recent_news":"Feb. 14, 2026: Local reporting described a proposed 150‑MW expansion of Atlas Power’s existing crypto‑mining facility in Butte and the county formed an ad‑hoc committee to evaluate data center development impacts.","notable_tenants":"","verified_name":"Atlas Power Butte Data Center","verified_operator":"Atlas Power Group","verified_owner":"Atlas Power LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"NorthWestern Energy","tax_incentives":"Montana data center property tax rate of 0.9% of market value.","natural_hazard_zone":""},"1789":{"description":"Vision Net operates the 1030 Central Data Center at 1030 Central Ave in Billings, Montana—a carrier‑neutral colocation/edge facility with about 24,000 sq ft of data center space within a larger building. Vision Net acquired iConnect Montana in May 2022 and formally opened the site under its brand in September 2022.","verified_status":"operational","power_capacity_mw":0,"total_sqft":47000,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Vision Net 1030 Central Data Center","verified_operator":"Vision Net, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.28,"utility_provider":"NorthWestern Energy","tax_incentives":"","natural_hazard_zone":""},"1790":{"description":"Vision Net Billings Fiber Hotel is a telecom/fiber-hotel and colocation facility in Granite Tower at 222 N 32nd St, Billings, MT, operated by Vision Net; the brand follows Vision Net’s 2022 acquisition of iConnect Montana.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2700,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Vision Net Billings Fiber Hotel","verified_operator":"Vision Net, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; 7 connected networks; YRIX (Yellowstone Regional Internet Exchange) present at 222 N 32nd St.","num_buildings":1,"campus_acres":0.96,"utility_provider":"NorthWestern Energy","tax_incentives":"","natural_hazard_zone":"FEMA flood zones B/X (moderate hazard); commercial seismic per City Code Central parameters; high regional wildfire risk."},"1791":{"description":"Parsec Data Center is an operational colocation facility in Billings, Montana, operated by Parsec Data Management and described as a full‑service, Tier 3‑qualified commercial data center. Industry listings place it at 3450 Gabel Rd with 2 MW of capacity and four colocation suites totaling about 9,101 sq ft.","verified_status":"operational","power_capacity_mw":2,"total_sqft":9101,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Parsec Data Center","verified_operator":"Parsec Data Management","verified_owner":"Bottrell Family Investments LP / Diamond B Companies","cooling_type":"chilled water (closed-loop glycol system with N+1 drycoolers, chillers, and glycol pumps)","tier_level":"Tier III-qualified (not Uptime-certified)","fiber_providers":"Nemont Communications; carrier-neutral status not explicitly stated","num_buildings":1,"campus_acres":1.62,"utility_provider":"NorthWestern Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"1792":{"description":"Cogent Data Center - Billings is a small colocation facility operated by Cogent Communications at 3025 Hesper Road, Billings, Montana, offering Internet, VPN/Transport, and Colocation services.","verified_status":"operational","power_capacity_mw":1.25,"total_sqft":1201,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Billings","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral (Cogent and other carriers; connectivity up to 100GE)","num_buildings":1,"campus_acres":0,"utility_provider":"NorthWestern Energy","tax_incentives":"Montana Class 17 data center property tax reduction requires ≥25,000 sq ft; this 1,201 sq ft site would not qualify. Montana applies a 0.9% fixed assessment rate for data center property.","natural_hazard_zone":"low risk"},"1793":{"description":"Vision Net Helena is an operational colocation/edge data center at 1084 Helena Avenue in Helena, Montana, operated by Vision Net following its May 2022 acquisition of iConnect Montana. Public listings confirm colocation and connectivity services; numeric power capacity, square footage, and opening year are not disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"March 2026: Local media reported Vision Net operates edge data centers in Montana including Helena; no Helena-specific expansion, new tenants, or regulatory actions were announced in the last six months.","notable_tenants":"No anchor or major enterprise customers are publicly disclosed.","verified_name":"Vision Net Helena Data Center","verified_operator":"Vision Net","verified_owner":"Vision Net, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"NorthWestern Energy","tax_incentives":"Montana has no state sales tax. Montana offers Class 17 property tax classification for qualified data centers at a 0.9% taxable valuation rate (minimum 25,000 sq ft and $50M investment within 48 months); eligibility for this specific facility is not confirmed.","natural_hazard_zone":"Seismic Zone 3 (high seismic risk per UBC); localized liquefaction hazards near Ten Mile Creek, Prickly Pear Creek, and Lake Helena areas."},"1794":{"description":"MIS1 - VisionNet-MSO Missoula Data Center PoP is a colocation facility at 110 East Broadway Street in Missoula, MT, marketed/listed by MOD Mission Critical and operated on site by Vision Net. Vision Net became the owner after acquiring iConnect Montana in 2022.","verified_status":"operational","power_capacity_mw":0,"total_sqft":24000,"year_online":"unknown","construction_update":"","recent_news":"Mar 25, 2026: Vision Net highlighted its edge data centers in Montana, including Missoula, as part of an 800 Gbps network/edge strategy to reduce grid impacts and improve AI latency.","notable_tenants":"","verified_name":"Vision Net Missoula","verified_operator":"Vision Net","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"NorthWestern Energy","tax_incentives":"No facility-specific tax abatement/incentive found; Montana has zero sales tax and low business property tax.","natural_hazard_zone":"Earthquake hazard: medium; FEMA flood zone for 110 E Broadway unverified (check Missoula County GIS); county highlights wildfire preparedness."},"1795":{"description":"Planned data center campus near east Bismarck led by Aurum Capital Ventures, which has explored acquiring about 300 acres for development. The project is at a site-selection/land-acquisition stage and is described as a planned facility by industry listings.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"June 2025: Aurum Capital Ventures told the Burleigh County Commission it is considering buying ~300 acres within/east of Bismarck for a new data center; no permit approvals or construction start identified. April 2025 county planning materials state data centers require a Special Use Permit in Industrial zoning.","recent_news":"","notable_tenants":"","verified_name":"Aurum Bismarck Campus / Aurum Capital Ventures - Bismarck","verified_operator":"Aurum Capital Ventures, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":300,"utility_provider":"","tax_incentives":"North Dakota Qualified Data Center sales/use tax exemption (N.D.C.C. § 57-39.2-04.17) for eligible data centers (e.g., ≥15,000 sq. ft., ≥50% used for data processing; completed or substantially refurbished after Dec. 31, 2020). No project-specific local incentives found.","natural_hazard_zone":""},"1796":{"description":"Dakota Carrier Network operates the DCN Bismarck Coleman Data Center at 4202 Coleman Street in Bismarck as a carrier‑neutral telecom colocation and data‑storage facility, built as a hardened 72,000‑sq‑ft site with robust power backup and support.","verified_status":"operational","power_capacity_mw":0,"total_sqft":72000,"year_online":"2012","construction_update":"Expansion completed; ribbon cutting held January 2017.","recent_news":"","notable_tenants":"","verified_name":"DCN Bismarck (Coleman Data Center)","verified_operator":"Dakota Carrier Network (DCN)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"North Dakota offers a qualified data center sales and use tax exemption; no public confirmation of certification for this site.","natural_hazard_zone":"tornado/severe-storm exposure; low seismic risk"},"1797":{"description":"Applied Digital ELN01 (Polaris Forge 1) is Applied Digital Corporation’s purpose-built AI/HPC data center campus in Ellendale, North Dakota, with multi-building capacity contracted for large-scale AI workloads. The company energized its on-site substation and is building out the campus under long-term agreements with CoreWeave.","verified_status":"under-construction","power_capacity_mw":550,"total_sqft":0,"year_online":"2025","construction_update":"June 9, 2026: Proposed $1.59B senior secured notes offering to fund ELN-04, the campus’s fourth 150 MW building. Earlier, Building 1’s second phase was completed in late 2025, bringing it to 100 MW.","recent_news":"June 9, 2026: Applied Digital priced $1.59 billion of 7.000% senior secured notes due 2031 to fund construction and related costs for ELN-04 (the fourth 150 MW building) at the Polaris Forge 1 campus; closing expected around June 16, 2026.","notable_tenants":"CoreWeave (anchor tenant across the campus; 250 MW of 15-year leases signed June 2, 2025; combined 400 MW of leases at Polaris Forge 1; ELN-04’s 150 MW also pre-leased to CoreWeave).","verified_name":"Applied Digital ELN01 (Polaris Forge 1 campus, Ellendale)","verified_operator":"Applied Digital Corporation","verified_owner":"Applied Digital Corporation (through subsidiaries)","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Montana-Dakota Utilities (MDU)","tax_incentives":"North Dakota data center sales/use tax exemption for qualifying equipment under N.D.C.C. §57-39.2-04.4; annexation into Ellendale sought to expand municipal services/tax base.","natural_hazard_zone":"FEMA Flood Zones B/X (moderate flood hazard); very low seismic risk in Dickey County."},"1798":{"description":"Colocation data center in Fargo operated by Val‑Ed Joint Venture dba 702 Communications at 2911 Fiechtner Dr S, offering Tier 2 data‑center services with 99.8% uptime and carrier connectivity (e.g., a Hurricane Electric POP).","verified_status":"operational","power_capacity_mw":1.44,"total_sqft":0,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"Hurricane Electric has a POP/IP-transit presence at 2911 Fiechtner Dr S; Cogent lists service availability at the same address. No anchor colocation customer names are publicly disclosed.","verified_name":"702 Communications Data Center","verified_operator":"702 Communications","verified_owner":"","cooling_type":"unknown","tier_level":"Tier II-equivalent (not Uptime Institute certified)","fiber_providers":"Hurricane Electric; Cogent; 702 Communications","num_buildings":1,"campus_acres":0.85,"utility_provider":"","tax_incentives":"North Dakota statewide data center sales-tax exemption program exists for qualifying data centers; no evidence this facility has qualified.","natural_hazard_zone":""},"1799":{"description":"Operational Consolidated Communications (Fidium) colocation and disaster-recovery data center at 3312 42nd Street South, Suite 100, Fargo, ND, notable for 1,700 sq ft, 3 x 208V 80kVA Eaton UPS (Nx1), and a 650 kW onsite generator with carrier-neutral connectivity.","verified_status":"operational","power_capacity_mw":0.65,"total_sqft":1700,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fidium Fargo Data Center","verified_operator":"Consolidated Communications Holdings, Inc. (Fidium)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"North Dakota offers a sales tax exemption on computer equipment for data centers of at least 16,000 sq ft; applicability to this ~1,700 sq ft site is unclear.","natural_hazard_zone":"FEMA flood zone for this exact address not determined; Fargo has notable Red River flood risk; earthquake hazard very low; not a hurricane zone."},"1800":{"description":"DCN’s Fargo Great Plains Data Center is a carrier-neutral colocation/telecom facility operated by Dakota Carrier Network at 3901 Great Plains Dr S in Fargo, ND. The hardened, Tier III-positioned site spans 23,180 sq ft and is built for EF4 tornado-force resilience.","verified_status":"operational","power_capacity_mw":0,"total_sqft":23180,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DCN Great Plains Data Center (Fargo)","verified_operator":"Dakota Carrier Network","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"Direct fiber connections to multiple Tier 1 service providers via DCN network","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1801":{"description":"Core Scientific Grand Forks 1 is an operational high‑density/cryptocurrency data center operated by Core Scientific at 5601 11th Ave S, Grand Forks, North Dakota, with about 100 MW of capacity and a ~90,000 sq ft building on a 20‑acre campus.","verified_status":"operational","power_capacity_mw":100,"total_sqft":90000,"year_online":"2021","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Grand Forks, North Dakota Data Center (Grand Forks 1)","verified_operator":"Core Scientific","verified_owner":"Core Scientific, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":20,"utility_provider":"Nodak Electric Cooperative and Minnkota Power Cooperative","tax_incentives":"Reduced electricity fees via utility/franchise-fee incentives for large-load data centers.","natural_hazard_zone":"Grand Forks/Red River floodplain exposure; parcel-specific FEMA flood-zone not confirmed here."},"1802":{"description":"Midco Grand Forks Data Center is a Midco-operated Tier II colocation and headend facility at 3251 32nd Ave S in Grand Forks, North Dakota, notable for carrier‑neutral connectivity and dual fiber entrances. The site launched as a 6,500‑sq‑ft, $5.5 million build offering colocation space and resilient infrastructure.","verified_status":"operational","power_capacity_mw":3,"total_sqft":6500,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Midco Grand Forks Data Center","verified_operator":"Midco","verified_owner":"","cooling_type":"unknown","tier_level":"Tier II","fiber_providers":"carrier-neutral; dual fiber entrances; Midco-owned fiber network","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk"},"1803":{"description":"Applied Digital’s JMS/JMS01 is the company’s Jamestown, North Dakota data center at 2671 Highway 20 SE; the main site is a 106‑MW facility that has been operational since 2022. Applied also announced a separate 5‑MW high‑performance computing building at Jamestown, distinct from the 106‑MW hosting facility.","verified_status":"operational","power_capacity_mw":106,"total_sqft":0,"year_online":"2022","construction_update":"","recent_news":"Jan 7, 2026: The company reported that, as of Nov 30, 2025, its 106‑MW Jamestown facility was operating at full capacity.","notable_tenants":"","verified_name":"Applied Digital JMS01","verified_operator":"Applied Digital Corporation","verified_owner":"Applied Digital Corporation (via subsidiary)","cooling_type":"hybrid","tier_level":"","fiber_providers":"Redundant fiber optic internet connections (providers not publicly named)","num_buildings":0,"campus_acres":40,"utility_provider":"","tax_incentives":"North Dakota qualified data center sales and use tax exemption on enterprise IT equipment and software; Jamestown Stutsman Development Corporation (JSDC) support via direct loans, equity investments, and interest rate buy-downs.","natural_hazard_zone":"FEMA-updated flood maps for Stutsman County; minor wind/severe-storm risk indicated; extreme winter weather typical of ND; low seismic risk."},"1804":{"description":"Project Trinity is a planned 100 MW hyperscale data center by Teton Digital on a 25‑acre portion of an 80‑acre site in Dry Fork Township, about eight miles south of Tioga, North Dakota, targeting initial phases before full build-out.","verified_status":"planned","power_capacity_mw":100,"total_sqft":0,"year_online":"2026","construction_update":"Feb 18–20, 2025: Williams County commissioners gave Teton Digital the go-ahead to apply for a conditional-use permit for the 100 MW Project Trinity site near Tioga; phased plan targeted ~30 MW in late 2025 and full 100 MW+ by 2026.","recent_news":"","notable_tenants":"","verified_name":"Project Trinity (aka Trinity 1)","verified_operator":"Teton Digital, LLC","verified_owner":"Dean and Jodeen Bergstrom","cooling_type":"liquid cooling","tier_level":"Tier 3 (design/claimed), not Uptime-certified","fiber_providers":"","num_buildings":2,"campus_acres":25,"utility_provider":"Mountrail-Williams Electric Cooperative (MWEC)","tax_incentives":"North Dakota data-center sales tax exemption on enterprise IT equipment/software for qualifying facilities.","natural_hazard_zone":"Exact FEMA flood zone undetermined; consult NDRAM and county mitigation resources for site-specific flood mapping."},"1805":{"description":"Atlas Power Williston is an operational high-density cryptocurrency mining/high-performance computing data center operated by Atlas Power at 5046 143rd Ave NW near Williston, North Dakota. Announced in 2022 with plans scaling up to 700 MW, the site came online that year.","verified_status":"operational","power_capacity_mw":200,"total_sqft":250000,"year_online":"2022","construction_update":"","recent_news":"On March 13, 2026, local TV reported monetary settlement agreements for residents near the Atlas Power Data Center following excessive-noise complaints; the facility remains in operation.","notable_tenants":"","verified_name":"Atlas Power Data Center","verified_operator":"Atlas Power","verified_owner":"Atlas Power Holdings ND, LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Mountrail-Williams Electric Cooperative","tax_incentives":"North Dakota qualified data center sales and use tax exemption for enterprise IT equipment and computer software.","natural_hazard_zone":"low risk"},"1806":{"description":"FirstLight Fiber operates a colocation data center on Sundial Avenue in Manchester, New Hampshire, that reopened after remodeling in May 2015. The site originated from FirstLight’s 2014 acquisition of G4 Communications’ facility at 77 Sundial.","verified_status":"operational","power_capacity_mw":4,"total_sqft":14400,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"FirstLight Manchester Data Center","verified_operator":"FirstLight Fiber","verified_owner":"SMC Management","cooling_type":"unknown","tier_level":"Tier II standard","fiber_providers":"Access to multiple carriers, including FirstLight Fiber","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource Energy","tax_incentives":"","natural_hazard_zone":"Elevated flood risk (Realtor.com 'Flood factor: Major'); FEMA flood zone not determined"},"1807":{"description":"A colocation data center in Manchester, NH operated by Fidium (Consolidated Communications), offering 1/2 and full cabinets, custom caged space, and high-speed fiber connectivity.","verified_status":"operational","power_capacity_mw":3,"total_sqft":4000,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fidium Manchester Data Center","verified_operator":"Fidium Business / Consolidated Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Fidium/Consolidated Communications fiber network; on-net","num_buildings":1,"campus_acres":0,"utility_provider":"Public Service Company of New Hampshire d/b/a Eversource Energy","tax_incentives":"","natural_hazard_zone":"Flood risk in Downtown Manchester; exact FEMA zone for 770 Elm St not confirmed."},"1808":{"description":"FirstLight Fiber operates the FirstLight Bedford Data Center, an operational colocation/disaster-recovery site at 8 Commerce Drive, Bedford, NH, connected to FirstLight’s regional network. The facility totals about 7,250 sq ft and serves production and DR use cases.","verified_status":"operational","power_capacity_mw":0.083,"total_sqft":7250,"year_online":"unknown","construction_update":"2026-03-10: Expansion announced adding ~25% more data center space, additional power/cooling, and support for up to 100 more racks.","recent_news":"On March 10, 2026, FirstLight announced an expansion of the Bedford, NH data center adding approximately 25% more data-center space, additional power and cooling infrastructure, and support for up to 100 additional racks.","notable_tenants":"Hanscom Federal Credit Union","verified_name":"FirstLight Bedford Data Center","verified_operator":"FirstLight Fiber","verified_owner":"Brady Sullivan Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"FirstLight Fiber","num_buildings":1,"campus_acres":8.95,"utility_provider":"Eversource Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"1809":{"description":"Dynamic Internet Salem Data Center is an operational colocation/cloud/managed-services facility operated by Dynamic Internet at 10 Delaware Drive, Salem, New Hampshire. It is listed at 12,000 sq ft total with 5,000 sq ft of raised floor and hosts web hosting, cloud, and managed IT services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Dynamic Internet Salem, NH Data Center","verified_operator":"Dynamic Internet","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zones B & X (moderate flood hazard between 100-year and 500-year limits); locality shows minor flood risk."},"1810":{"description":"A formerly listed Peregrine Networks/Spectra Access colocation site at 27 Lowell Street (Manchester, NH) appears decommissioned, as the 25–27 Lowell Street building has been converted into the Trade Center Apartments and is now leasing.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Apr 30, 2025: Developer press notes the 25 Lowell St adaptive-reuse project to create 76 apartments, reflecting the property’s conversion from offices (and any prior colocation use) to residential.","recent_news":"Active leasing/availability updates for Trade Center Apartments at 25 Lowell St (updated within the last few days), reinforcing that the former data center location has been converted to residential use.","notable_tenants":"","verified_name":"Peregrine Networks Data Center","verified_operator":"Peregrine Networks","verified_owner":"North Street Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"RSA 79-E Community Revitalization Tax Relief approved for 25–27 Lowell St redevelopment.","natural_hazard_zone":"FEMA Flood Zone B and X (area of moderate flood hazard)"},"1811":{"description":"FirstLight Fiber operates a colocation/data center at 310 Marlboro Street, Keene, NH. Public directory listings confirm the location and show the site is operational.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"FirstLight Keene Data Center","verified_operator":"FirstLight Fiber","verified_owner":"310 Marlboro St., LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"FirstLight Fiber; access to multiple carriers (carrier-neutral)","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"Property-level financing/incentive activity referenced for 310 Marlboro St., LLC (e.g., Clean Energy Fund loan application; loans to be ratified). Amounts/status not specified in available records.","natural_hazard_zone":"Flood/stormwater exposure likely; citywide FEMA map updates expanding high-risk areas. Specific FEMA zone for 310 Marlboro St. not determined."},"1812":{"description":"FirstLight Fiber operates an operational colocation/data center at 16 Cavendish Court in Lebanon, New Hampshire, as part of its regional data center network.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"FirstLight Lebanon Data Center","verified_operator":"FirstLight Fiber","verified_owner":"Grafton County Economic Development Council (co-owner of the DRTC facility housing the data center)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Liberty Utilities (New Hampshire)","tax_incentives":"","natural_hazard_zone":""},"1813":{"description":"SNS Littleton is an operational colocation/data center at 775 Industrial Park Rd, Littleton, NH, operated by Secured Network Services, Inc., a Thrive company. It serves as a small regional facility for managed IT and data center services.","verified_status":"operational","power_capacity_mw":0.25,"total_sqft":11000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SNS Littleton","verified_operator":"Secured Network Services, Inc. (a Thrive company)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":2.97,"utility_provider":"Littleton Water & Light","tax_incentives":"","natural_hazard_zone":"Flood Factor 5/10; FEMA flood-zone designation not specified"},"1814":{"description":"Operational colocation data center at 762 N Main St, Laconia, NH, operated by Consolidated Communications under the Fidium brand, offering secure rack-space and connectivity. Listings describe a state‑of‑the‑art, reliability‑ and security‑focused facility.","verified_status":"operational","power_capacity_mw":0.6,"total_sqft":23984,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fidium Laconia Data Center","verified_operator":"Fidium Business / Consolidated Communications","verified_owner":"Northern New England Telephone Operations LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Fidium / Consolidated Communications","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"1815":{"description":"FirstLight Portsmouth is a FirstLight Fiber colocation/data center at 359 Corporate Dr, Portsmouth, NH, offering enterprise features including 2N UPS redundancy, N+1 cooling, and up to 9 kW per rack.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8700,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"FirstLight Portsmouth Data Center","verified_operator":"FirstLight Fiber","verified_owner":"","cooling_type":"unknown","tier_level":"Tier 2 standard (not Uptime certified)","fiber_providers":"carrier-neutral; access to multiple carriers including FirstLight; redundant/diversely routed Internet up to 10 Gbps","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource Energy","tax_incentives":"","natural_hazard_zone":""},"1816":{"description":"Dartmouth College’s Berry Machine Room (BMR) at 25 N Main St is the campus enterprise data center operated by ITC for mission‑critical administrative, academic, research, and HPC systems. Room L31 at this address is used for badge storage/office functions, not the data‑center floor.","verified_status":"operational","power_capacity_mw":0.26,"total_sqft":1818,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Dartmouth College Berry Machine Room (BMR) Data Center — Baker-Berry Library, 25 N Main St; L31 is storage/badge area, primary data hall in L32","verified_operator":"Dartmouth College Information, Technology & Consulting (ITC)","verified_owner":"Trustees of Dartmouth College","cooling_type":"chilled water","tier_level":"","fiber_providers":"Internet2 connectivity and Dartmouth private campus fiber network","num_buildings":1,"campus_acres":0,"utility_provider":"Liberty Utilities","tax_incentives":"","natural_hazard_zone":"low risk (minor citywide flood risk)"},"1817":{"description":"Alpha3 Cloud Providence 1 is an operational colocation data center at 935 Westminster Street in Providence, RI, identified on industry listings as an Alpha3/Prov.net site and noted at about 4,000 sq ft with 2,000 sq ft of raised floor.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Alpha3 Cloud Providence 1","verified_operator":"Alpha3 Cloud","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; access to over 100 carriers; AWS Direct Connect and Microsoft Azure ExpressRoute available","num_buildings":1,"campus_acres":0,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":"unknown"},"1818":{"description":"Prov.net Providence 2 is an operational colocation/data center at 1155 Westminster Street in Providence, operated by Alpha3 Cloud (Prov.net). Public listings confirm the location and indicate some specs (like gross building size) are not disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No anchor tenant or major customer is publicly identified. PeeringDB lists Cogent Communications and ProvDotNet as networks present at “Prov.net PVD1 (1155 Westminster).”","verified_name":"Prov.net Providence 2","verified_operator":"Alpha3 Cloud (Prov.net)","verified_owner":"Provdotnet LLC (Alpha3 Cloud)","cooling_type":"unknown","tier_level":"","fiber_providers":"Located on 'Fiber Alley' (dense fiber presence); specific carrier list not published in cited excerpts","num_buildings":1,"campus_acres":0,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":"500-year flood zone (low/moderate risk)"},"1819":{"description":"Prov.net Providence 3 is an operational colocation data center at 304 Carpenter Street in Providence, Rhode Island, operated by Alpha3 Cloud (Prov.net). Public listings note 10,000 sq ft total space with 6,000 sq ft raised floor at this address.","verified_status":"operational","power_capacity_mw":1,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Prov.net Providence 3 (PVD2)","verified_operator":"Alpha3 Cloud","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":""},"1820":{"description":"Crown Castle Providence (RI1) is a carrier-neutral colocation/interconnection data center operated by Crown Castle Inc. at 235 Promenade St, Providence, Rhode Island.","verified_status":"operational","power_capacity_mw":3,"total_sqft":3625,"year_online":"2000","construction_update":"","recent_news":"No facility-specific updates found in the last 6 months. Operator-level: on 2026-05-01 Crown Castle closed the sale of its Fiber Solutions business.","notable_tenants":"","verified_name":"Crown Castle Providence (RI1)","verified_operator":"Crown Castle Inc.","verified_owner":"The Foundry Associates (Guerra family)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Crown Castle fiber on-net","num_buildings":0,"campus_acres":0,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (outside Special Flood Hazard Area) at facility point"},"1821":{"description":"Crown Castle Providence is a colocation data center at 300 Carpenter St, Providence, RI, listed as an active facility in major directories. On May 1, 2026, Crown Castle closed the sale of its Fiber Solutions business to Zayo, so this site may be impacted by that transaction.","verified_status":"operational","power_capacity_mw":3,"total_sqft":10176,"year_online":"unknown","construction_update":"","recent_news":"May 1, 2026: Crown Castle closed the sale of its Fiber Solutions business to Zayo, a corporate transaction that may affect fiber/colo operations associated with this site.","notable_tenants":"","verified_name":"Crown Castle Providence (300 Carpenter)","verified_operator":"Zayo Group","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.11,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":"Regional flood/hurricane exposure; disaster risk high in market indices; parcel-specific FEMA flood zone not determined"},"1822":{"description":"MegaNet Rhode Island Datacenter is a multi-tenant colocation facility operated by MegaNet Communications at 275 Promenade Street in Providence, Rhode Island, offering rack space, power, and bandwidth.","verified_status":"operational","power_capacity_mw":10,"total_sqft":50000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"MegaNet Rhode Island Datacenter","verified_operator":"MegaNet Communications","verified_owner":"The Foundry Associates, LP","cooling_type":"unknown","tier_level":"Tier 3 (directory-reported; no Uptime Institute certification found)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Rhode Island Energy","tax_incentives":"The Foundry/Promenade rehabilitation received federal and Rhode Island state historic tax credits; no active, facility-specific data center incentive at 275 Promenade was identified.","natural_hazard_zone":"Adjacent to the Woonasquatucket River; nearby FEMA Zone AE and documented chronic riverine flooding risk."},"1823":{"description":"Lumen Providence 1 is a Lumen-operated colocation data center at 375 Promenade Street in Providence, Rhode Island, offering about 10,400 sq ft of space (3,221 sq ft of colocation area) with carrier/network connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Providence 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Rhode Island Energy (The Narragansett Electric Company)","tax_incentives":"","natural_hazard_zone":"Coastal storm/hurricane exposure; downtown Providence area protected by the Fox Point Hurricane Barrier providing virtually complete tidal flood protection to about 280 acres."},"1824":{"description":"Fibertech Networks’ Providence Data Center is a colocation site at 5 Central Street, Providence, RI, offering cabinet and cage colocation with rack-level AC/DC power options [1]. Fibertech later merged into Lightower (2015), Lightower was acquired by Crown Castle (2017), and Crown Castle closed the sale of its Fiber Solutions business to Zayo on May 1, 2026 [2][3][4][5].","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"No facility-specific updates were found in the last six months; the notable development is Crown Castle’s sale of its Fiber Solutions business to Zayo closed on May 1, 2026 [4][5].","notable_tenants":"","verified_name":"Fibertech Networks – Providence Data Center","verified_operator":"Crown Castle Fiber","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Crown Castle Fiber","num_buildings":0,"campus_acres":0,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":"Regional flood exposure (coastal/riverine and extreme rainfall). FEMA flood zone for 5 Central St not verified."},"1825":{"description":"Cogent Washington DC 2 is a Cogent Communications colocation data center at 1050 Connecticut Ave NW, Washington, DC 20036, offering Internet, VPN, Transport, and Colocation services. The site has 16,763 sq ft with 42U cabinets and private cages and carrier connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":16763,"year_online":"unknown","construction_update":"","recent_news":"On May 26, 2026, Cogent announced a definitive agreement to sell 10 data center facilities to an entity sponsored by I Squared Capital for $225 million; no Washington DC 2–specific update was announced.","notable_tenants":"","verified_name":"Cogent Data Center - Washington, DC 2","verified_operator":"Cogent Communications","verified_owner":"Lerner Enterprises and The Tower Companies","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent, CenturyLink/Level 3, Zayo, ICC, FiberLight","num_buildings":1,"campus_acres":0,"utility_provider":"Pepco (Potomac Electric Power Company)","tax_incentives":"District of Columbia: No incentive.","natural_hazard_zone":"FEMA Zone X (minimal flood risk)"},"1826":{"description":"CoreSite DC2 is CoreSite’s enterprise-class colocation data center at 1099 14th St NW in downtown Washington, D.C., offering direct, private connectivity to cloud service providers. The facility provides about 24,000 sq ft of space and is part of the highly interconnected DC1/DC2 campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":24000,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CoreSite DC2 - Washington D.C. Data Center","verified_operator":"CoreSite (an American Tower company)","verified_owner":"","cooling_type":"unknown","tier_level":"Tier 2-Equivalent","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Pepco (Potomac Electric Power Company)","tax_incentives":"","natural_hazard_zone":""},"1827":{"description":"1120 Vermont Avenue NW is a multi-tenant telecom/carrier hotel and colocation site located within a roughly 500,000 sq ft office building near Thomas Circle in Washington, DC, with carrier suites (e.g., Cogent) operating at the address.","verified_status":"operational","power_capacity_mw":2.2,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 28, 2026: The 1120 Vermont Ave NW building was listed for sale as a 502,009 sq ft core development opportunity by Stream Realty Partners; no data-center-specific expansion or tenant announcements were identified in the same period.","notable_tenants":"","verified_name":"1120 Vermont Avenue NW","verified_operator":"Cogent Communications; Lumen Technologies; Verizon Enterprise","verified_owner":"S.C. Herman & Associates, Inc.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"AiNet, AT&T, CenturyLink/Lumen, Cogent, Sprint, Verizon, Zayo","num_buildings":1,"campus_acres":1.1,"utility_provider":"Pepco (Potomac Electric Power Company)","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (minimal flood hazard); low seismic risk"},"1828":{"description":"Operational telecom/colocation data center operated by Lumen Technologies at 1220 L Street NW in Washington, DC, commonly referenced as Lumen Washington DC 2. Public listings show 20,099 sq ft total (8,450 sq ft colocation) with a conflicting smaller figure from another directory; the site address is also associated with Verizon’s 1220 L facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":20099,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Washington DC 2 / Verizon: 1220 L","verified_operator":"Lumen Technologies; Verizon Enterprise (MCI Communications Services, Inc.)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (Level 3); Verizon","num_buildings":1,"campus_acres":0.63,"utility_provider":"Pepco (Potomac Electric Power Company)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X \b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b— Area of Minimal Flood Hazard; not in SFHA"},"1829":{"description":"CoreSite DC1 is an operational colocation data center operated by CoreSite at 1275 K Street NW in downtown Washington, D.C., offering interconnection and cloud connectivity with roughly 22,000+ square feet in the K Street corridor.","verified_status":"operational","power_capacity_mw":2.2,"total_sqft":22000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CoreSite DC1","verified_operator":"CoreSite","verified_owner":"Altus Realty (majority owner Rafael Etzion)","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; example networks present include Arelion (Twelve99), Atlantech Online, Allied Telecom Group, AiNET, Cogent, GTT, and others (per facility listing).","num_buildings":1,"campus_acres":0,"utility_provider":"Pepco (Potomac Electric Power Company)","tax_incentives":"District of Columbia: No incentive.","natural_hazard_zone":""},"1830":{"description":"Lumen DC4 is an operational Lumen Technologies telecom/colocation data center at 1828 L St NW, Suite 550, Washington, DC. Baxtel lists it as fully operational at this address and notes approximately 25,000 sq ft of facility space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":25000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen DC4","verified_operator":"Lumen Technologies","verified_owner":"The Tower Companies","cooling_type":"chilled water","tier_level":"","fiber_providers":"Cogent Communications; Lightpath","num_buildings":1,"campus_acres":0.66,"utility_provider":"Pepco (Potomac Electric Power Company)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zones B and X (low to moderate flood hazard)"},"1831":{"description":"DataBank - 2100 M St is a carrier-neutral colocation/interconnection facility at 2100 M Street NW in Washington, DC, formerly operated as zColo (Zayo) and brought under DataBank via the 2020 acquisition. The site is listed with 16,600 sq ft of data center space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":16600,"year_online":"unknown","construction_update":"Dec 15, 2025: BXP completed the acquisition of 2100 M Street with Sidley Austin as the anchor tenant for a new project; May 27, 2026: design for a ~320,000-sq-ft office tower at 2100 M St NW was unveiled, with construction starting in 2028. These are site-level updates; no data-center-specific expansion is noted.","recent_news":"May 27, 2026: BXP unveiled a design for a 320,000-sq-ft office tower at 2100 M St NW, pre-leased to Sidley Austin LLP, with construction starting in 2028; the report does not reference the data center.","notable_tenants":"No anchor colocation tenant or major customer was publicly disclosed.","verified_name":"DataBank - 2100 M St","verified_operator":"DataBank","verified_owner":"BXP (Boston Properties)","cooling_type":"unknown","tier_level":"","fiber_providers":"Allied Telecom Group; RealConnect, Inc.","num_buildings":1,"campus_acres":0,"utility_provider":"Pepco (Potomac Electric Power Company)","tax_incentives":"District of Columbia: no data center–specific incentive.","natural_hazard_zone":"FEMA Flood Zone B/X (moderate hazard between 100-year and 500-year)"},"1832":{"description":"Operational telecom/colocation facility at 4301 Connecticut Ave NW (Van Ness Center) attributed to Verizon Enterprise, with Atlantech Online providing fiber and data-center services at the same address.","verified_status":"operational","power_capacity_mw":2.2,"total_sqft":25000,"year_online":"1998","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Van Ness Center (Verizon: 4301 Connecticut)","verified_operator":"Verizon Enterprise; Atlantech Online","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon, Atlantech Online","num_buildings":1,"campus_acres":2.42,"utility_provider":"Pepco","tax_incentives":"District of Columbia: no data center-specific incentive.","natural_hazard_zone":""},"1833":{"description":"Alpha Technologies DC1 (Alpha Technologies Global Data Center) is an operational colocation/cloud data center operated by Alpha Technologies Inc. at the West Virginia Regional Technology Park, 2020 Union Carbide Dr., Building 6000, South Charleston, WV, featuring redundant power and carrier connectivity for government and enterprise workloads.","verified_status":"operational","power_capacity_mw":3,"total_sqft":80000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"U.S. Geological Survey (USGS).","verified_name":"Alpha Technologies DC1 (Global Data Center)","verified_operator":"Alpha Technologies Inc.","verified_owner":"Alpha Technologies Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Statewide program: West Virginia provides exemptions for qualified data centers; no facility-specific incentive verified for DC1.","natural_hazard_zone":""},"1834":{"description":"Alpha Technologies Huntington Data Center is a planned 60,000 sq ft Tier 3 colocation facility converting the former Appalachian Power Company building at 1125 6th Ave in Huntington, WV, to be operated by Alpha Technologies.","verified_status":"planned","power_capacity_mw":0,"total_sqft":60000,"year_online":"2025","construction_update":"Oct 30–Nov 1, 2024: Project announced; construction expected to begin early 2025 (approx. 30 jobs).","recent_news":"","notable_tenants":"","verified_name":"Alpha Innovations Data Center 3 (Huntington, WV)","verified_operator":"ALPHA TECHNOLOGIES INC. (Alpha Innovations / Alpha Cloud)","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III (design intent; not Uptime-certified)","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Appalachian Power (AEP)","tax_incentives":"West Virginia offers data center incentives (e.g., sales/use tax exemptions and salvage-value personal property tax treatment) for qualifying facilities; a 2025 bill proposed additional exemptions. Eligibility for this project is not confirmed.","natural_hazard_zone":""},"1835":{"description":"Citynet Charleston is Citynet, LLC’s colocation data center at 226 Kanawha Boulevard in Charleston, West Virginia. Third‑party facility directories list it as operational, and Citynet’s site lists the location for its data center/colocation services.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Citynet Charleston","verified_operator":"Citynet, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Appalachian Power/AEP","tax_incentives":"","natural_hazard_zone":""},"1836":{"description":"Citynet Morgantown is a Citynet, LLC-operated colocation/data center at 3600 University Avenue in the Morgantown/Star City area, offering secure, customizable colocation and disaster‑recovery services. Facility‑specific power capacity, square footage, year online, and tenants are not publicly disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Citynet Morgantown","verified_operator":"Citynet, LLC","verified_owner":"Citynet Properties, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Citynet (on-net); no published list of third-party carriers","num_buildings":0,"campus_acres":0,"utility_provider":"Mon Power (FirstEnergy)","tax_incentives":"","natural_hazard_zone":"Area flood exposure noted; exact FEMA zone for 3600 University Ave not determined"},"1837":{"description":"Pinnacle Technical Solutions operates a colocation-focused data center at 4300 1st Ave, Nitro, West Virginia, offering services from its owned facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12915,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Pinnacle Technical Solutions Data Center","verified_operator":"Pinnacle Technical Solutions (LLC)","verified_owner":"Energy Services of America Corporation (via Nitro Construction Services, Inc.)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.28,"utility_provider":"Appalachian Power","tax_incentives":"West Virginia HB 2014 special property tax valuation for high‑impact data centers; proposed HB 4013 would grant additional data center tax breaks (applicability to this site unconfirmed).","natural_hazard_zone":"FEMA Special Flood Hazard Area (high-risk flood zone A/AE likely); First Street Foundation rates Nitro as extreme flood risk."},"1838":{"description":"Reliable Hosting Services operates a colocation data center at 303 North Washington Street in Berkeley Springs, WV, offering colocation and dedicated hosting with redundant power, cooling, and network. The company purchased the building in 2013 and completed construction in July 2014.","verified_status":"operational","power_capacity_mw":1,"total_sqft":0,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Reliable Hosting Services","verified_operator":"Reliable Hosting Services, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.19,"utility_provider":"Potomac Edison","tax_incentives":"West Virginia offers a sales and use tax exemption for qualifying data center/computer equipment and favorable property tax valuation for high-technology/data center equipment.","natural_hazard_zone":""},"1839":{"description":"The U.S. Coast Guard Operations Systems Center (OSC) at 408 Coast Guard Dr, Kearneysville, WV is an enterprise systems and data-center facility operated by the Coast Guard’s C5ISC; the OSC designs, develops, and delivers enterprise systems for Coast Guard missions, and a 40,000‑sq‑ft computer center on the campus was dedicated in 2014.","verified_status":"operational","power_capacity_mw":0,"total_sqft":40000,"year_online":"2014","construction_update":"","recent_news":"May 2026: The Coast Guard’s new Special Missions Command will be headquartered in Kearneysville, WV, at the existing Coast Guard C5I Service Center facility, with commissioning expected on or around October 1, 2026.","notable_tenants":"","verified_name":"U.S. Coast Guard Operations Systems Center (OSC) / Coast Guard C5I Service Center Kearneysville facility","verified_operator":"U.S. Coast Guard","verified_owner":"U.S. Government / U.S. Coast Guard","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":12.5,"utility_provider":"Potomac Edison (FirstEnergy)","tax_incentives":"","natural_hazard_zone":""},"1840":{"description":"WVNET Data Center is an operational facility operated by West Virginia Network (WVNET) in Morgantown, WV, offering hosted data center services with reliable power infrastructure including UPS backup, emergency generator support, and power usage monitoring. WVNET is located at 837 Chestnut Ridge Road and serves West Virginia’s education and public-sector institutions.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Feb 13, 2026: WVNET reported “Data Center Improvements,” installing two new CRAC units to safeguard critical state systems.","notable_tenants":"No publicly identified anchor tenants; the facility serves West Virginia state government, K-12, public libraries, and county government.","verified_name":"WVNET Data Center","verified_operator":"West Virginia Network (WVNET)","verified_owner":"State of West Virginia (via West Virginia Higher Education Policy Commission)","cooling_type":"unknown","tier_level":"","fiber_providers":"Internet2 (via SEGP)","num_buildings":0,"campus_acres":6.9,"utility_provider":"Mon Power","tax_incentives":"West Virginia incentives applicable to data centers include: proposed sales/use tax exemption for qualified data centers (SB 583, 2025) and preferential property tax valuation for high‑technology/data center equipment under the High‑Technology Business Property Valuation framework.","natural_hazard_zone":"low risk"},"1841":{"description":"American Tower EDC Oklahoma is a planned, construction-ready edge data center by American Tower Corporation at 1309 NE 122nd St, Oklahoma City. The site has zoning approval on 83.5 acres and is scoped for roughly 16,000 sq ft and 4 MW.","verified_status":"planned","power_capacity_mw":4,"total_sqft":16000,"year_online":"unknown","construction_update":"Feb 27, 2026: Zoning permission reported for the site; American Tower lists “Zoning status: Approved” and “Construction-Ready status.” As of June 10, 2026, it remains described as a construction-ready development.","recent_news":"Feb 27, 2026: Zoning permission reported for the Oklahoma City site (planned at ~16,000 sq ft and 4 MW). June 10, 2026: Local roundup lists it as a construction-ready edge data center development.","notable_tenants":"","verified_name":"Construction-Ready Oklahoma City Data Center","verified_operator":"American Tower Corporation","verified_owner":"AMERICAN TOWER LP","cooling_type":"unknown","tier_level":"","fiber_providers":"3 fiber providers (names not disclosed)","num_buildings":1,"campus_acres":83.5,"utility_provider":"Oklahoma Gas & Electric (OG&E)","tax_incentives":"Oklahoma sales and use tax exemptions for qualifying data center equipment and electricity; no site-specific award identified.","natural_hazard_zone":"Very high tornado risk; flood risk present (parcel FEMA flood zone not specified)"},"1842":{"description":"Cerebras Oklahoma is an enterprise AI data center in Oklahoma City owned by Scale Datacenter and operated by Cerebras Systems, launched in 2025. It houses over 300 Cerebras CS-3 systems delivering more than 44 exaflops of AI compute.","verified_status":"operational","power_capacity_mw":10,"total_sqft":82000,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"Cerebras Systems is the anchor/user; no third-party tenants are publicly disclosed.","verified_name":"Cerebras Oklahoma City","verified_operator":"Cerebras Systems","verified_owner":"Argosy Real Estate Partners","cooling_type":"liquid cooling","tier_level":"Level 3+ (Tier III–equivalent; not Uptime-certified)","fiber_providers":"","num_buildings":1,"campus_acres":2.17,"utility_provider":"OG&E","tax_incentives":"Statewide incentives available: sales/use tax exemption for qualifying data center equipment and inputs; five-year ad valorem (property) tax exemption for qualifying new/expanded/acquired data processing facilities.","natural_hazard_zone":""},"1843":{"description":"CloudBurst Oklahoma City DC1 is the first phase of CloudBurst Data Centers’ wholesale, AI-ready campus at 2000 S Council Rd in Oklahoma City, planned to deliver 30MW in Q4 2026 within a 200MW flagship campus.","verified_status":"under-construction","power_capacity_mw":30,"total_sqft":0,"year_online":"2026","construction_update":"As last publicly indicated: break ground scheduled for Q4 2025, with the first 30MW phase targeted for Q4 2026; directories list the campus at 2000 S Council Rd as Under Construction.","recent_news":"On April 21, 2026, the Oklahoma City Council approved a moratorium on accepting/processing new data-center rezoning and permits through Dec. 31, 2026 or until new zoning rules are adopted; on June 10, 2026, a local report listed the CloudBurst campus as planned near 2000 S Council Rd.","notable_tenants":"","verified_name":"CloudBurst Oklahoma City DC1","verified_operator":"CloudBurst Data Centers","verified_owner":"CloudBurst Data Centers, Inc.","cooling_type":"hybrid","tier_level":"","fiber_providers":"2 fiber providers (not publicly named)","num_buildings":0,"campus_acres":0,"utility_provider":"OG&E (Oklahoma Gas & Electric)","tax_incentives":"Oklahoma data center incentives may include: sales tax exemptions on personal property (including electric power) for qualifying NAICS 519130/519290, five‑year ad valorem exemption for new investment, Quality Jobs incentives, and Investment/New Jobs tax credits.","natural_hazard_zone":"Tornado Alley (high tornado risk region)"},"1844":{"description":"Cogent Data Center - Oklahoma City is a Cogent Communications colocation facility at 630 Southwest 7th Street, Oklahoma City, offering 5,294 sq ft with 42U cabinets, UPS/backup generator power, and 24/7 access. Independent specs list it as a retrofitted, one-floor, sole-tenant site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5294,"year_online":"unknown","construction_update":"","recent_news":"A June 10, 2026 local roundup listed the facility as operational and 5,294 sq ft; no expansion, new-tenant, opposition, or regulatory developments were reported.","notable_tenants":"","verified_name":"Cogent Data Center - Oklahoma City","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent","num_buildings":0,"campus_acres":0,"utility_provider":"OG&E (Oklahoma Gas & Electric)","tax_incentives":"State sales tax exemption for qualifying data center equipment/machinery purchases; no site-specific abatement found.","natural_hazard_zone":"High tornado/severe-storm exposure; FEMA rates tornado risk for the county as Very High; exact site flood zone not determined."},"1845":{"description":"Lumen Oklahoma City 1 is an operational Lumen Technologies telecom/carrier colocation data center in downtown Oklahoma City. It offers colocation services and related infrastructure in a multi-tenant facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":7445,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Oklahoma City 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen/Level 3; carrier-neutral with alternate carriers available","num_buildings":1,"campus_acres":0,"utility_provider":"Oklahoma Gas & Electric (OG&E)","tax_incentives":"","natural_hazard_zone":"Downtown Oklahoma City shows measurable flood exposure and tornado/severe-wind risk; FEMA address-level flood zone not confirmed."},"1846":{"description":"MIDCON Oklahoma City is an operational bunkered colocation data center operated by MIDCON Recovery Solutions at 13431 N. Broadway Extension in Oklahoma City, notable for hardened, tornado-resistant construction and on-site mtu generator backup. The architect of record lists a 6,000 SF data center buildout within the facility.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":6000,"year_online":"2018","construction_update":"","recent_news":"Apr 21, 2026: Oklahoma City approved a moratorium on new data centers through Dec 31, 2026.","notable_tenants":"Dobson Technologies (announced anchor tenant in 2016)","verified_name":"MIDCON Recovery Solutions Oklahoma City Data Center","verified_operator":"MIDCON Recovery Solutions, LLC","verified_owner":"B3DC LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.71,"utility_provider":"Oklahoma Gas & Electric (OG&E)","tax_incentives":"Statewide data-center incentives available (e.g., sales tax exemption on qualifying data center personal property, including electric power and IT equipment); no facility-specific local abatement found.","natural_hazard_zone":"FEMA tornado Zone 4 and Seismic 2 hardened; flood zone not specified"},"1847":{"description":"Operational carrier-neutral colocation data center operated by RACK59 at 7725 W Reno Ave, Suite 304, Oklahoma City, on the 7725 CONNECT campus, noted for robust power and connectivity.","verified_status":"operational","power_capacity_mw":40,"total_sqft":30000,"year_online":"2009","construction_update":"May 22, 2026: Oklahoma City loosened its data-center moratorium to allow smaller data centers to continue applying for zoning, enabling expansion-related applications to proceed; no public construction start for an expansion was found.","recent_news":"May 22, 2026: Oklahoma City’s council loosened its data-center moratorium to allow smaller data centers to continue applying for zoning, impacting development pathways. June 10, 2026: News9 listed RACK59 as operating a 30,000‑sq‑ft colocation data center at 7725 West Reno Avenue.","notable_tenants":"","verified_name":"RACK59 Data Center (Oklahoma City)","verified_operator":"RACK59 Data Center; TulsaConnect (on-campus presence)","verified_owner":"7725 RENO 1 LLC","cooling_type":"air-cooled","tier_level":"Tier III (self-described; no Uptime certification found)","fiber_providers":"carrier-neutral; examples include Lumen, Zayo, Cox, Cogent; 20+ on-net ISPs","num_buildings":1,"campus_acres":250,"utility_provider":"Oklahoma Gas & Electric (OG&E)","tax_incentives":"Statewide Oklahoma data center incentives (sales/use tax exemptions on qualifying purchases, incl. electric power, computers, servers).","natural_hazard_zone":"High tornado/severe-storm exposure (Oklahoma County); FEMA flood zone for parcel not determined."},"1848":{"description":"TierPoint Oklahoma City Data Center 1 (OKC) is an operational data center operated by TierPoint at 4121 Perimeter Center Place in Oklahoma City, notable for being on TierPoint’s private 15-acre campus.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":22455,"year_online":"2003","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Oklahoma City DC1 (DC100)","verified_operator":"TierPoint","verified_owner":"Mapletree Industrial Trust (MIT)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":15,"utility_provider":"Oklahoma Gas and Electric Company (OG&E)","tax_incentives":"Oklahoma statewide data center sales and use tax exemption on qualifying personal property (including electric power, computers, servers); additional statewide business incentive exemptions may apply to computer/data processing services.","natural_hazard_zone":""},"1849":{"description":"TierPoint Oklahoma City Data Center 2 (OK2) is an operational TierPoint colocation facility at 4114 Perimeter Center Place in Oklahoma City. Completed in 2016, it totals nearly 70,000 sq ft and was announced as Oklahoma’s largest commercial data center when opened.","verified_status":"operational","power_capacity_mw":5,"total_sqft":69867,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Oklahoma City (OKC2)","verified_operator":"TierPoint","verified_owner":"TierPoint","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Oklahoma sales tax exemption for data centers on equipment and machinery purchases (not electricity).","natural_hazard_zone":""},"1850":{"description":"ValorC3/Tonaquint operates a colocation data center at 4442 Newcastle Rd in Oklahoma City, a purpose-built 64,942‑sq‑ft facility with a 5MW critical load. Originally built for Devon Energy in 2010, the site was acquired in late 2023 and officially reopened after upgrades in May 2024.","verified_status":"operational","power_capacity_mw":5,"total_sqft":64942,"year_online":"2010 (original facility; recommissioned/opened for multi-tenant colocation in 2024)","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ValorC3 Oklahoma City Data Center","verified_operator":"ValorC3 Data Centers (formerly Tonaquint Data Centers)","verified_owner":"CVC DIF (via portfolio company ValorC3, formerly Tonaquint Data Centers)","cooling_type":"hybrid","tier_level":"Tier III","fiber_providers":"Carrier-neutral; AT&T, Verizon, Cox (CLEC), Dobson","num_buildings":1,"campus_acres":4.22,"utility_provider":"Oklahoma Gas and Electric (OG&E)","tax_incentives":"Oklahoma sales tax exemption for data centers and five-year ad valorem (property tax) exemption (subject to program criteria).","natural_hazard_zone":"High tornado risk (Tornado Alley); designed to withstand up to 310 mph winds (F5-equivalent). FEMA flood zone: not specified here."},"1851":{"description":"Windstream Oklahoma City is a telecom/colocation data center at 825 N Broadway Ave in downtown Oklahoma City, operated by Windstream (now part of Uniti). It is an in-market facility identified by data center directories and recent local news coverage.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Oklahoma City Data Center","verified_operator":"Windstream","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.24,"utility_provider":"Oklahoma Gas & Electric (OG&E)","tax_incentives":"","natural_hazard_zone":""},"1852":{"description":"Cherokee Data Center is an enterprise data center at 7400 N Lakewood Ave in Tulsa’s Cherokee Industrial Park; it originated as an HP/HPE Enterprise Services facility and is now associated with DXC Technology following HPE’s 2017 Enterprise Services spin‑off/merger, with county records listing DXC Technology Services LLC as owner. The site is a ~430,000 sq ft facility and remains operational.","verified_status":"operational","power_capacity_mw":20,"total_sqft":429912,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cherokee Data Center","verified_operator":"DXC Technology Services LLC","verified_owner":"DXC Technology Services LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Oklahoma statewide sales tax exemption for data centers on qualifying personal property purchases (including electric power, computers, servers).","natural_hazard_zone":"Tornado-prone region (high tornado risk)"},"1853":{"description":"Isocentric Networks Data Center is an operational colocation facility operated by Isocentric Networks in the ONEOK Plaza building at 100 W Fifth St, Suite 705, in downtown Tulsa, Oklahoma. It is a class‑A, carrier‑grade site with direct connectivity to multiple Tier 1 backbone providers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Isocentric Data Center (IDC)","verified_operator":"Isocentric Networks, Inc.","verified_owner":"ONEOK Inc.","cooling_type":"chilled water","tier_level":"","fiber_providers":"AT&T, Cox, Verizon Business, Level(3), Sprint, Time Warner, and Lightcore; cross-connects to Verizon Business, Cox, AT&T, Level(3), and Time Warner","num_buildings":1,"campus_acres":2.07,"utility_provider":"Public Service Company of Oklahoma (PSO)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (shaded) — moderate flood hazard between 100-year and 500-year floodplains; regional Tulsa County tornado exposure"},"1854":{"description":"Operational data center and colocation/private-cloud facility operated by Jackson Technical at 611 S Elgin Ave in Tulsa, Oklahoma. Listings confirm the site and show a fully built-out capacity of 0.4 MW and 836 sq ft of data hall space.","verified_status":"operational","power_capacity_mw":0.4,"total_sqft":836,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Jackson Technical Data Center","verified_operator":"Jackson Technical","verified_owner":"","cooling_type":"air-cooled","tier_level":"Tier III (design)","fiber_providers":"Lumen, Cox Communications, AT&T","num_buildings":1,"campus_acres":0.48,"utility_provider":"Public Service Company of Oklahoma (PSO)","tax_incentives":"","natural_hazard_zone":"Flood and tornado risk; FEMA flood zone for 611 S Elgin Ave undetermined"},"1855":{"description":"Lumen Tulsa 1 is an operational Lumen Technologies telecom/colocation data center at 18 W Archer St in Tulsa, Oklahoma, listed at 10,000 sq ft with 1,600 sq ft of raised-floor space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Tulsa 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Public Service Company of Oklahoma (PSO / AEP)","tax_incentives":"Oklahoma Sales & Use Tax Exemption for Data Centers (including electric power and equipment) – applicability to this site not disclosed.","natural_hazard_zone":"Tornado and severe-storm exposure; FEMA flood zone not determined from provided sources."},"1856":{"description":"OCOSA / CenterServ Tulsa is a small colocation/hosting facility in the Kennedy Building at 321 S Boston Ave (Suite LL06) in downtown Tulsa, operated by OCOSA Communication and marketed by CenterServ; OCOSA’s history notes about 1,000 sq ft converted into the data center.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"OCOSA Data Center","verified_operator":"OCOSA Communication, LLC","verified_owner":"BAM Properties (Bumgarner Asset Management)","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; OCOSA constructed a fiber optic ring connecting both buildings at the site.","num_buildings":1,"campus_acres":0,"utility_provider":"Public Service Company of Oklahoma (PSO)","tax_incentives":"Oklahoma data centers are eligible for sales tax exemption on personal property purchases, including electric power, computers, and servers (see state data center incentives guidance).","natural_hazard_zone":"High tornado/storm exposure; generally minor flood risk. Downtown location likely outside FEMA special flood hazard areas; confirm with City of Tulsa Floodplain Atlas."},"1857":{"description":"Philcade Data Center is a colocation/data‑center space located inside Tulsa’s historic Philcade Building at 501 S Boston Ave; it is listed under Kanbar Properties in facility directories, while the building is marketed by Price Family Properties and includes dedicated data center space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":67000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Philcade Data Center","verified_operator":"Kanbar Properties","verified_owner":"Price Family Properties","cooling_type":"chilled water","tier_level":"Tier III","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Public Service Company of Oklahoma (PSO)","tax_incentives":"Oklahoma data center sales/use tax exemption (NAICS 519130, 519290) on qualifying purchases, including electric power and equipment.","natural_hazard_zone":"Tornado Alley exposure; likely FEMA Zone X (minimal flood hazard) at 501 S Boston Ave, but verify via FEMA/City flood maps."},"1858":{"description":"TierPoint Tulsa – Archer is an operational TierPoint colocation data center at 322 E. Archer Street in Tulsa, Oklahoma, interconnected via fiber with TierPoint’s other Tulsa (State Farm) facility.","verified_status":"operational","power_capacity_mw":2,"total_sqft":36000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Tulsa - Archer","verified_operator":"TierPoint, LLC","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; on-net carriers include AT&T, Cogent, Cox, Lumen (CenturyLink/Level 3), Verizon, Windstream, OneNet","num_buildings":1,"campus_acres":0,"utility_provider":"Public Service Company of Oklahoma (AEP)","tax_incentives":"Oklahoma data center industry incentives: sales tax exemption on personal property purchases (including electric power, computers, servers, etc.) for qualifying data centers; other statewide programs may also apply.","natural_hazard_zone":""},"1859":{"description":"Operational TierPoint colocation data center at 12151 E. State Farm Blvd in Tulsa, OK, providing enterprise colocation services; the facility came online in 2018 and offers about 32,000 sq ft of space.","verified_status":"operational","power_capacity_mw":2.4,"total_sqft":32000,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Tulsa - State Farm (TL2)","verified_operator":"TierPoint","verified_owner":"Compass Datacenters","cooling_type":"unknown","tier_level":"Tier III certified","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Oklahoma sales tax exemptions for data center-related personal property purchases; Oklahoma promotes low electricity rates and tax exemptions for computer equipment purchases.","natural_hazard_zone":"Tornado-prone region (historical tornado activity in Tulsa County)"},"1860":{"description":"Tulsa Technology Exchange is an operational colocation data center at 509 S Boston Ave in downtown Tulsa’s Philcade building, operated by Facility Gateway Corporation; it is described as a “bunkered” mixed-use technology property.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Tulsa Technology Exchange","verified_operator":"Facility Gateway Corporation","verified_owner":"Price Family Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Public Service Company of Oklahoma (PSO)","tax_incentives":"Philcade-related TIF support for broader redevelopment (not data-center-specific).","natural_hazard_zone":"unknown"},"1861":{"description":"Carrier-neutral colocation data center at 110 W 7th St in downtown Tulsa, operated by TulsaConnect (also listed by directories as “Windstream Tulsa”), located within the 28‑story 110 West Seventh office tower.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"No anchor tenants publicly identified. Connectivity/providers include Cogent, Zayo, Lumen, and Windstream; the facility is Megaport-enabled.","verified_name":"TulsaConnect Downtown Data Center (DC-5), 110 W 7th St, Tulsa, OK; separate Windstream Tulsa facility at the same address","verified_operator":"TulsaConnect; Windstream (separate facility in same building)","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":2.09,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Severe weather exposure (tornadoes, floods, high winds) region; specific FEMA flood zone for 110 W 7th not determined"},"1862":{"description":"TulsaConnect East Tulsa (DC-3) is an operational, carrier-neutral colocation data center operated by TulsaConnect at 4500 S 129th E Ave in Tulsa. TulsaConnect describes DC-3 as its largest site, located 16 feet underground with two independent pods and capacity for 220+ 42U racks.","verified_status":"operational","power_capacity_mw":1.2,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TulsaConnect East (DC-3)","verified_operator":"TulsaConnect","verified_owner":"Robinson Park","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral: Lumen, Zayo, Cox, Cogent, AT&T, Verizon Business, MBO Networks, Encore, BTC, Windstream, Megaport","num_buildings":2,"campus_acres":97,"utility_provider":"AEP/PSO (Public Service Company of Oklahoma)","tax_incentives":"Oklahoma provides data center incentives including a sales tax exemption on qualifying personal property purchases (e.g., electric power, computers, servers) for eligible data centers.","natural_hazard_zone":"Tornado Alley (elevated tornado risk); facility constructed 16 feet underground with reinforced concrete for severe-weather protection."},"1863":{"description":"Project Clydesdale is a hyperscale data center campus near Owasso in unincorporated Tulsa County being developed by Beale Infrastructure, approved on a roughly 506-acre site. The multi‑phase campus features 200,000‑sq‑ft data‑center buildings.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":200000,"year_online":"unknown","construction_update":"Groundbreaking held Oct 30, 2025; by Mar 25, 2026, local reporting noted the project was already being built.","recent_news":"Mar 25, 2026: Local coverage of Tulsa’s nine‑month pause on new data centers noted Project Clydesdale is already being built in north Tulsa, reinforcing its active‑construction status.","notable_tenants":"","verified_name":"Project Clydesdale","verified_operator":"Beale Infrastructure","verified_owner":"Bird Creek Ranch Limited Partnership (landowner at filing); Quartz Mountain Properties LLC is the developer/purchaser entity. A separate long-term REIT/PE asset owner is not confirmed.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":506,"utility_provider":"","tax_incentives":"Four Tulsa County Tax Incentive Districts established/approved for Project Clydesdale.","natural_hazard_zone":""},"1864":{"description":"An enterprise/HPC data center site in Muskogee, Oklahoma at 4800 S 24th St W that Core Scientific plans to acquire from Polaris Technologies; it is notable for 440 MW of gross power on roughly 40 acres and its role in Core Scientific’s plan to scale the Muskogee campus toward ~1.5 GW of gross power.","verified_status":"planned","power_capacity_mw":440,"total_sqft":0,"year_online":"unknown","construction_update":"May 6, 2026: Core Scientific announced it would acquire the 4800 S 24th St W Polaris facility; the transaction was expected to close in Q3 2026. Listings note the site as under construction.","recent_news":"May 6, 2026: Core Scientific announced an agreement to acquire the Polaris facility associated with 4800 S 24th St W for approximately $421 million, securing 440 MW of gross power on ~40 acres; the transaction was expected to close in Q3 2026, pending approvals.","notable_tenants":"","verified_name":"Core Scientific Muskogee 2","verified_operator":"Core Scientific","verified_owner":"Core Scientific","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":40,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1865":{"description":"Google is building an owner‑operated hyperscale data center campus at the N Perkins Rd & E Richmond Rd area of Stillwater, OK; Phase 1 (Building 1) is planned at roughly 300,000 sq ft. The campus is part of Google’s multi‑billion‑dollar Oklahoma investment under the city’s Stillwater Data Center project plan.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":300000,"year_online":"2027 (expected)","construction_update":"Nov 2025: Final plat approved; reports note infrastructure work and building permits approved, with construction to begin soon.","recent_news":"Apr–Jun 2026: OG&E announced agreements to power Google’s new Oklahoma data centers, including the Stillwater campus.","notable_tenants":"","verified_name":"Google Stillwater Campus (Kipper Facility)","verified_operator":"Google","verified_owner":"Kipper LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":6,"campus_acres":400,"utility_provider":"OG&E (Oklahoma Gas & Electric)","tax_incentives":"100% property tax exemption for up to six data centers, each requiring $500 million in private investment (agreement with Kipper LLC).","natural_hazard_zone":"Site-specific FEMA flood zone not determined from provided excerpts; area subject to regional tornado/severe-storm risk."},"1866":{"description":"Project Spring is a planned hyperscale data center campus in Sand Springs, Oklahoma, on an 827-acre site at 5615 OK-97. The Google-backed project is notable for its large land assemblage and ongoing local approvals and scrutiny.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Feb 3, 2026: Sand Springs City Council approved rezoning for the 827-acre site after the Jan 27 Planning Commission approval and a Jan 20 developer presentation; construction has not begun.","recent_news":"Mar 24, 2026: A conservation group filed suit to enforce a 2013 easement that restricts industrial development on the Project Spring site, potentially blocking the Google-backed data center.","notable_tenants":"Google","verified_name":"Project Spring","verified_operator":"Google","verified_owner":"White Rose Partners","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":827,"utility_provider":"Public Service Company of Oklahoma (PSO)","tax_incentives":"City discussions contemplated three districts with a 25-year, 100% ad valorem exemption with annual payments; Oklahoma also offers sales/use tax exemptions for qualifying data center purchases. No finalized, project-specific incentive agreement was found.","natural_hazard_zone":"FEMA flood risk likely in vicinity (city includes AE zones); site-specific designation not confirmed"},"1867":{"description":"CORE Data Center is a small enterprise/colocation facility in Vinita, Oklahoma, operated by Northeast Oklahoma Electric Cooperative, providing a hardened, secure, managed environment with 24/7 monitoring.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CORE Data Center","verified_operator":"Northeast Oklahoma Electric Cooperative (NOEC)","verified_owner":"Northeast Oklahoma Electric Cooperative, Inc. (NOEC)","cooling_type":"chilled water","tier_level":"","fiber_providers":"BOLT Fiber (NOEC)","num_buildings":1,"campus_acres":80,"utility_provider":"Northeast Oklahoma Electric Cooperative (NOEC)","tax_incentives":"Oklahoma statewide data center incentives (e.g., sales tax exemptions for qualifying data center purchases) are available; no facility-specific award identified.","natural_hazard_zone":"City-level flood exposure: portions of Vinita are in FEMA Zone AE; overall city flood risk rated minor."},"1868":{"description":"Netrality owns and operates 401 North Broad, a carrier-neutral colocation and interconnection hub in Philadelphia, offering 1,300,000 sq. ft. and 14.47 MW of available capacity.","verified_status":"operational","power_capacity_mw":14.47,"total_sqft":1300000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Carbon Reform; Biomeme; Nerd Street; Achilles Therapeutics; Sungard Availability Services","verified_name":"Netrality 401 North Broad Philadelphia Data Center","verified_operator":"Netrality Data Centers","verified_owner":"Macquarie Infrastructure Partners IV (Macquarie Asset Management) via Netrality Properties","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":2.7,"utility_provider":"PECO Energy","tax_incentives":"","natural_hazard_zone":""},"1869":{"description":"H5 Data Centers Philadelphia is an operational colocation facility operated by H5 Data Centers at 1500 Spring Garden St., Suite 520, Philadelphia, PA 19130. It originally opened in 2015 under vXchnge and was added to H5’s portfolio in 2022.","verified_status":"operational","power_capacity_mw":7.5,"total_sqft":72000,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"H5 Data Centers Philadelphia","verified_operator":"H5 Data Centers","verified_owner":"InterVest Capital Partners (partial owner) and Nightingale Properties (ownership involvement; exact current title entity not fully public).","cooling_type":"unknown","tier_level":"Tier III design","fiber_providers":"","num_buildings":1,"campus_acres":3.87,"utility_provider":"PECO Energy Company","tax_incentives":"Pennsylvania offers no specific data center incentives; 2026 state-level proposals were under debate and not confirmed active for this site.","natural_hazard_zone":"Low risk (minor neighborhood flood risk indicated)"},"1870":{"description":"365 Data Centers Philadelphia Downtown (PA1) is an operational, carrier-neutral colocation and network facility operated by 365 Data Centers at 1500 Spring Garden Street in Philadelphia, offering colocation and managed services in a multi‑story building.","verified_status":"operational","power_capacity_mw":10,"total_sqft":135100,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers Philadelphia (Downtown) Data Center","verified_operator":"365 Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III-equivalent design; no Uptime Institute certification cited","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":3.87,"utility_provider":"PECO Energy","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program is active for certified data centers/equipment; no public confirmation found that this specific facility is certified or receiving the incentive.","natural_hazard_zone":"low risk"},"1871":{"description":"Hivelocity’s Philadelphia 1 colocation data center is an operational suite at 2401 Locust St, Philadelphia, within a multi-tenant carrier-hotel building, featuring A+B UPS (1000 KVA) and dual 1,500 kW diesel generators.","verified_status":"operational","power_capacity_mw":1,"total_sqft":4000,"year_online":"unknown","construction_update":"","recent_news":"No Hivelocity-specific updates in the last six months. The 2401 Locust carrier-hotel property remains marketed for sale and is currently listed as available (LoopNet listing date June 15, 2026).","notable_tenants":"","verified_name":"Hivelocity - Philadelphia 1","verified_operator":"Hivelocity","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T (transit); additional providers not fully enumerated publicly","num_buildings":1,"campus_acres":0,"utility_provider":"PECO Energy","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (general availability; no site-specific certification cited).","natural_hazard_zone":""},"1872":{"description":"Lumen Philadelphia 2 is an operational Lumen colocation/telecom data center at 701 Market Street in Philadelphia, offering 28,408 sq ft of space and diverse connectivity with an advertised 4 MW power capacity.","verified_status":"operational","power_capacity_mw":4,"total_sqft":28408,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Philadelphia 2","verified_operator":"Lumen Technologies","verified_owner":"Brickstone Realty affiliate / Brickstone","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen/Level 3; diverse fiber connectivity; alternate carrier networks available","num_buildings":1,"campus_acres":3.2,"utility_provider":"PECO Energy","tax_incentives":"","natural_hazard_zone":"Flood Zone B and X / moderate flood hazard between 100-year and 500-year flood limits"},"1873":{"description":"Lumen Philadelphia 3 is an operational Lumen colocation/telecom data center at 3020 Market Street, Philadelphia, PA. The facility lists 31,877 sq ft total space with 578 sq ft of colocation space and N+1 HVAC.","verified_status":"operational","power_capacity_mw":0,"total_sqft":31877,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Philadelphia 3","verified_operator":"Lumen","verified_owner":"Brandywine Realty Trust (BDN)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.64,"utility_provider":"PECO Energy","tax_incentives":"Keystone Opportunity Zone (West Philadelphia Subzone): 3020 Market Street (OPA No. 77-4-524500) listed for KOZ program benefits, subject to eligibility and compliance.","natural_hazard_zone":""},"1874":{"description":"TierPoint Philadelphia – Navy Yard is an operational TierPoint colocation data center at 4775 League Island Boulevard in the Philadelphia Navy Yard, originally opened as Philadelphia Technology Park and rebranded after TierPoint’s 2014 acquisition. The facility totals about 25,700 sq ft with roughly 11,000 sq ft of built-out whitespace.","verified_status":"operational","power_capacity_mw":5,"total_sqft":25700,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Philadelphia Data Center (PHI)","verified_operator":"TierPoint","verified_owner":"TierPoint, LLC","cooling_type":"air-cooled","tier_level":"Tier II equivalent (concurrently maintainable; not Uptime-certified)","fiber_providers":"Cogent","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Navy Yard (PIDC) campus financing & incentives available (e.g., tax‑exempt financing).","natural_hazard_zone":"Floodplain exposure (Navy Yard/League Island area); likely FEMA Flood Zone AE"},"1875":{"description":"Flexential Philadelphia – Collegeville is an operational colocation data center at 101 Troutman Road in Collegeville, Pennsylvania, operated by Flexential. The facility offers a 203,703‑sq‑ft footprint and 7.2 MW of critical power.","verified_status":"operational","power_capacity_mw":7.2,"total_sqft":203703,"year_online":"2009","construction_update":"","recent_news":"Feb 13, 2026: The Daily Pennsylvanian reported Penn’s “Betty” supercomputer was added at the Flexential Philadelphia–Collegeville data center (added July 2025; operational Aug 2025).","notable_tenants":"University of Pennsylvania / Penn Advanced Research Computing Center (PARCC) — Penn’s “Betty” NVIDIA DGX B200 SuperPOD housed at Flexential Philadelphia–Collegeville","verified_name":"Flexential Philadelphia - Collegeville Data Center","verified_operator":"Flexential","verified_owner":"Flexential","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":25.02,"utility_provider":"PECO Energy","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (statewide program for qualified data centers; no site-specific award verified).","natural_hazard_zone":""},"1876":{"description":"2000 Kubach Road is a two-storey data centre in Philadelphia’s Byberry West Industrial Park owned by Mapletree Industrial Trust, totaling 124,190 sq ft with in-place data‑center infrastructure and ~13.2 MW of power capacity. The facility is currently vacant and being divested.","verified_status":"operational","power_capacity_mw":13.2,"total_sqft":124190,"year_online":"1993","construction_update":"","recent_news":"May 2026: Mapletree announced the divestment of the 2000 Kubach Road data centre for US$14.5 million to a non-interested third party.","notable_tenants":"Former tenant: The Vanguard Group (via a wholly owned subsidiary). No current tenant publicly disclosed after the lease expired in Dec 2024.","verified_name":"2000 Kubach Road, Philadelphia Data Centre","verified_operator":"Vacant (last known operator: The Vanguard Group; lease expired end-FY25)","verified_owner":"Undisclosed buyer (acquired from Mapletree Industrial Trust in June 2026 for $14.5 million)","cooling_type":"chilled water","tier_level":"Tier III","fiber_providers":"Crown Castle, Lumen (Level 3), Windstream, Zayo, Hudson Fiber; Verizon SONET ring","num_buildings":1,"campus_acres":25.6,"utility_provider":"PECO Energy (an Exelon company)","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (sales and use tax relief for qualified equipment at certified data centers)","natural_hazard_zone":"FEMA Flood Zone X (Area of Minimal Flood Hazard)"},"1877":{"description":"DāSTOR operates an operational colocation data center at 411 Swedeland Road, King of Prussia, PA, marketed to life science and technology users and offering about 31,000 sq ft of space. The facility joined DāSTOR’s portfolio through a September 2021 acquisition from DataBridge Sites.","verified_status":"operational","power_capacity_mw":0,"total_sqft":31000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DaSTOR 411 Swedeland Road Data Center","verified_operator":"DaSTOR, LLC","verified_owner":"MLP Ventures (Discovery Labs / Innovation 411 campus)","cooling_type":"unknown","tier_level":"Tier 3 design (not Uptime-certified in excerpts)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":300,"utility_provider":"PECO Energy Company","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (state sales/use tax exemption for qualified equipment; facility-specific certification not confirmed).","natural_hazard_zone":""},"1878":{"description":"DāSTOR operates an enterprise colocation data center at 3400 Horizon Drive in King of Prussia, Pennsylvania, serving the Philadelphia market in a purpose-built Tier 3 facility of about 22,000 sq ft.","verified_status":"operational","power_capacity_mw":4,"total_sqft":22000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DāSTOR King of Prussia","verified_operator":"DāSTOR LLC","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"","num_buildings":1,"campus_acres":5.66,"utility_provider":"PECO Energy","tax_incentives":"Pennsylvania state-level data center incentive policy was under proposal/review in June 2026.","natural_hazard_zone":"FEMA Flood Zone X (outside 100-year floodplain)"},"1879":{"description":"TierPoint Allentown - TekPark is an operational colocation data center operated by TierPoint at 9999 Hamilton Boulevard, Building #4, Breinigsville, PA, on the multi‑building, 137‑acre TekPark campus.","verified_status":"operational","power_capacity_mw":50,"total_sqft":122000,"year_online":"2011","construction_update":"Oct 23, 2025: TierPoint began a 100 MW power expansion at TekPark; industry coverage said completion is expected in the second half of 2026, and local media noted expansion with added jobs.","recent_news":"","notable_tenants":"","verified_name":"TierPoint Allentown - TekPark Data Center","verified_operator":"TierPoint","verified_owner":"TierPoint LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":9,"campus_acres":137,"utility_provider":"PPL Electric Utilities","tax_incentives":"Pennsylvania statewide data center sales/use-tax exemption may apply; no site-specific abatement found.","natural_hazard_zone":"Moderate flood risk area; address-specific FEMA flood zone not confirmed."},"1880":{"description":"TierPoint Bethlehem (BET) is an operational colocation data center operated by TierPoint at 3864 Courtney Street, Suite 130, Bethlehem, PA, offering about 25,000 sq ft of space with roughly 12,000 sq ft of raised floor.","verified_status":"operational","power_capacity_mw":0,"total_sqft":25000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Bethlehem (Bethlehem Data Center)","verified_operator":"TierPoint","verified_owner":"RB Associates","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; diverse fiber; Verizon (park infrastructure)","num_buildings":1,"campus_acres":8.39,"utility_provider":"PPL Electric Utilities","tax_incentives":"","natural_hazard_zone":""},"1881":{"description":"TierPoint Lehigh Valley (LVQ) is an operational, carrier‑neutral colocation data center operated by TierPoint at 3949 Schelden Circle, Bethlehem, PA. It offers 27,000+ total square feet (8,700+ raised floor), and third‑party listings show approximately 3.50 MW total/design power.","verified_status":"operational","power_capacity_mw":3.5,"total_sqft":27000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Lehigh Valley Data Center (LVQ)","verified_operator":"TierPoint","verified_owner":"TierPoint Pennsylvania Two LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; Cogent, Zayo, CenturyLink","num_buildings":1,"campus_acres":0,"utility_provider":"PPL Electric Utilities","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (state sales/use tax exemption); no public record here that this facility is certified.","natural_hazard_zone":"Outside FEMA 100-year floodplain"},"1882":{"description":"TierPoint Valley Forge is an operational colocation data center operated by TierPoint at 1000 Adams Avenue, Norristown, Pennsylvania, offering roughly 137,000 sq ft of space and around 23 MW of capacity.","verified_status":"operational","power_capacity_mw":23,"total_sqft":137000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Valley Forge Data Center","verified_operator":"TierPoint, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multiple diverse fiber feeds; on-net fiber available","num_buildings":1,"campus_acres":13.43,"utility_provider":"PECO Energy","tax_incentives":"","natural_hazard_zone":"low risk (outside major regional threat zones and evacuation areas)"},"1883":{"description":"Panther Creek is an operating waste‑coal power plant and bitcoin‑mining site at 4 Dennison Road in Nesquehoning, PA that Keel Infrastructure (parent of Bitfarms) is redeveloping into a large AI/HPC data‑center campus. The campus is positioned as a flagship site with contracted firm power, including 350 MW secured for expansion.","verified_status":"operational","power_capacity_mw":80,"total_sqft":0,"year_online":"2022","construction_update":"Apr 22, 2026: Carbon County officials said the proposed Nesquehoning data center plan needs more work before moving forward; Feb 2026: local officials authorized a crucial zoning permit for the project; May 11, 2026: Keel reported zoning secured and site development on track at Panther Creek.","recent_news":"June 9, 2026: Keel closed $458M of 1.250% convertible senior notes to help develop Panther Creek (along with Sharon and Moses Lake); on May 11, 2026, Keel reported zoning secured and site development on track at Panther Creek.","notable_tenants":"","verified_name":"Panther Creek Campus - Keel Infrastructure","verified_operator":"Keel Infrastructure","verified_owner":"Panther Creek Power Operating LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":336,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1884":{"description":"Contegix Wyomissing is an operational colocation data center operated by Contegix at 1 Meridian Blvd, Suite 2D01, Wyomissing, Pennsylvania, in the Reading market, with approximately 2 MW of capacity. The site traces back to DSS (Distributed Systems Services), which combined with Contegix in 2016.","verified_status":"operational","power_capacity_mw":2,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Contegix Wyomissing","verified_operator":"Contegix","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Met-Ed / FirstEnergy","tax_incentives":"","natural_hazard_zone":""},"1885":{"description":"Operational colocation data center at 2561 Bernville Road, Reading, PA, operated by Direct LTx and listed by DāSTOR as its Reading location; notable for approximately 110,000 sq ft of facility space and about 6 MW of critical power.","verified_status":"operational","power_capacity_mw":6,"total_sqft":110000,"year_online":"unknown","construction_update":"Last known milestone: Contour Data Solutions’ enterprise operations center build-out at the site (November 2021). No active construction or planned expansion verified since.","recent_news":"","notable_tenants":"Contour Data Solutions","verified_name":"DāSTOR Reading BCC (also listed as Direct LTx Data Center, 2561 Bernville Road)","verified_operator":"DāSTOR, LLC","verified_owner":"Directlink Realty, L.P.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; carrier-dense meet-me room","num_buildings":1,"campus_acres":17.62,"utility_provider":"Met-Ed / FirstEnergy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard)"},"1886":{"description":"Omega Systems Reading is the company’s headquarters at 1121 Snyder Road that hosts a SOC 2‑certified, privately managed data center/private cloud. The facility features biometric access, video surveillance, and support for high‑density power and cooling.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Omega Systems Reading","verified_operator":"Omega Systems","verified_owner":"NES LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":2.26439095,"utility_provider":"Metropolitan Edison (Met‑Ed, FirstEnergy)","tax_incentives":"","natural_hazard_zone":""},"1887":{"description":"Alerify Harrisburg is an operational colocation, hosting, and business continuity data center operated by Alerify at 2330 Vartan Way, Harrisburg, PA. Alerify acquired the facility and related hosting/colocation assets from Elevated MSP effective July 1, 2024, and directories list a 68,830 sq ft building with roughly 8,000 sq ft of built-out whitespace.","verified_status":"operational","power_capacity_mw":0,"total_sqft":68830,"year_online":"2009","construction_update":"","recent_news":"Jan 27, 2026: Alerify announced a partnership with Zadara to deliver Private/Sovereign AI edge cloud capabilities from its Harrisburg platform; FOX43 profiled the facility on Jun 7, 2026.","notable_tenants":"No publicly disclosed anchor tenant. Example customer: Boling Vision Center (case study); not identified as a colocation tenant.","verified_name":"Alerify Data Center (Harrisburg, PA)","verified_operator":"Alerify, Inc.","verified_owner":"Vartan Group","cooling_type":"air-cooled","tier_level":"Tier III-equivalent (not Uptime-certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program exists statewide; no public Alerify- or 2330 Vartan Way-specific certification found.","natural_hazard_zone":""},"1888":{"description":"Under-construction hyperscale AI data center redevelopment at the former LSC Communications printing plant at 216 Greenfield Road in Lancaster, PA. Developed by Chirisa Technology Parks and set to be leased/operated by CoreWeave, with an initial 100 MW capacity and potential expansion to 300 MW.","verified_status":"under-construction","power_capacity_mw":100,"total_sqft":1100000,"year_online":"2027","construction_update":"As of 2026, the Greenfield Road project is in its first phase of development, with work already underway and completion expected in 2027.","recent_news":"June 25, 2026: Lancaster City Council tabled a vote on a data center zoning amendment, seeking more oversight.","notable_tenants":"CoreWeave (anchor/sole tenant). No other tenants publicly identified.","verified_name":"Lancaster AI Hub East (LPE-01) – CoreWeave Lancaster, 216 Greenfield Road","verified_operator":"CoreWeave","verified_owner":"LPE 01 Propco LLC; Greenfield Road Owner LLC (CBA/permit party).","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":78,"utility_provider":"PPL Electric Utilities","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X / moderate flood hazard"},"1889":{"description":"Planned hyperscale/AI data center redevelopment of the former LSC Communications/RR Donnelley printing plant at 1375 Harrisburg Pike in Lancaster, PA, led by Machine Investment Group with Chirisa Technology Parks as developer and a Blue Owl–backed JV funding the broader Lancaster campus.","verified_status":"planned","power_capacity_mw":100,"total_sqft":825000,"year_online":"unknown","construction_update":"As of Nov 2025, “No development plans have been received for 1375 Harrisburg Pike.” A Community Benefits Agreement for the project was announced Nov 18, 2025; no later public source confirms a construction start for this address.","recent_news":"Apr 4, 2026: Local reporting questioned the Lancaster data center Community Benefits Agreement’s benefits to residents, highlighting policy limits and what CBAs typically include.","notable_tenants":"","verified_name":"1375 Harrisburg Pike Data Center (Lancaster, PA)","verified_operator":"CoreWeave (planned operator/tenant; not yet operational)","verified_owner":"An affiliate of Machine Investment Group (campus funded via a JV with Blue Owl Capital and Chirisa Technology Parks)","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":57.4,"utility_provider":"PPL Electric Utilities","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption (state sales and use tax exemption) may apply if the facility is certified; no specific local incentives identified.","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard)"},"1890":{"description":"Keel Infrastructure Scrubgrass is a crypto-mining data center at 2151 Lisbon Road, Kennerdell, Pennsylvania, operating alongside the on-site Scrubgrass waste-coal power plant of about 85 MW. Bitfarms acquired Stronghold’s assets in March 2025 and rebranded as Keel on April 1, 2026, and the company now positions Scrubgrass as a long-term AI/HPC campus opportunity.","verified_status":"operational","power_capacity_mw":85,"total_sqft":28314000,"year_online":"2021","construction_update":"Planned AI/HPC campus: Keel outlines up to ~1.3 GW long-term potential at Scrubgrass, with the CEO noting the earliest additional large-scale power is around 2028 (reported Jun 2, 2026). Environmental compliance: settlement requires the cryptomining facility to remove the coal-ash pile by September 2026.","recent_news":"June 2, 2026: Local reporting stated Scrubgrass could become Keel’s largest long-term AI data center campus, with management indicating the earliest additional large-scale power would be around 2028.","notable_tenants":"Canaan (via a Stronghold hosting agreement for miners delivered to Scrubgrass); no AI/HPC anchor tenant announced.","verified_name":"Keel Infrastructure Scrubgrass","verified_operator":"Keel Infrastructure","verified_owner":"Scrubgrass Reclamation Company L.P.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":750,"utility_provider":"On-site Scrubgrass Generating Plant (behind-the-meter supply)","tax_incentives":"","natural_hazard_zone":""},"1891":{"description":"Big Digital Energy Midland is an operational digital-asset/crypto data center at 950 Railroad Avenue, Midland, Pennsylvania, operated by Big Digital Energy (formerly Mawson Infrastructure Group). It offers 120 MW of capacity on an 8-acre leased site.","verified_status":"operational","power_capacity_mw":120,"total_sqft":348480,"year_online":"2023","construction_update":"June 25, 2024: 20 MW expansion completed, bringing the facility to 120 MW total; no active construction since.","recent_news":"Apr–May 2026: Mawson rebranded as Big Digital Energy and announced a 75 MW colocation agreement with Endeavor; reports did not state the capacity is solely at Midland.","notable_tenants":"","verified_name":"Big Digital Energy Midland","verified_operator":"Big Digital Energy","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":8,"utility_provider":"Energy Harbor LLC","tax_incentives":"","natural_hazard_zone":"low risk"},"1892":{"description":"MSA Evergreen Heights is a Management Science Associates–owned colocation data center at 115 Evergreen Heights Drive in Ross Township/Pittsburgh, offering Tier III colocation, cloud, disaster recovery, and managed services.","verified_status":"operational","power_capacity_mw":4,"total_sqft":65000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"MSA Evergreen Heights (Evergreen Heights Technology Center)","verified_operator":"Management Science Associates, Inc.","verified_owner":"Management Science Associates, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent on-net; Consolidated Communications on-net; multiple providers","num_buildings":1,"campus_acres":1.98,"utility_provider":"Duquesne Light Company","tax_incentives":"","natural_hazard_zone":"FEMA/legacy flood zones B and X - moderate flood hazard, generally between the 100-year and 500-year flood limits"},"1893":{"description":"EdgeConneX Pittsburgh – EDCPIT01 (PIT01) is an operational edge colocation data center operated by EdgeConneX at 282 Corliss Street, Pittsburgh, PA 15220, with about 14,174 sq ft and 1 MW N+1 power scalable to 1.5 MW.","verified_status":"operational","power_capacity_mw":1,"total_sqft":14174,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"None publicly disclosed; visible interconnection participants include Akamai, Cloudflare, Comcast - Pittsburgh, Hyonix Edge, Teraswitch, and PIT-IX.","verified_name":"EdgeConneX Pittsburgh - EDCPIT01","verified_operator":"EdgeConneX","verified_owner":"EQT Infrastructure","cooling_type":"air-cooled","tier_level":"Tier III equivalent design (concurrently maintainable N+1)","fiber_providers":"Carrier-neutral; Cloudflare, Cogent, Comcast, Crown Castle, DQE Communications, EdgeCast, Lumen, PIT-IX, Verizon, WhiteSky, Windstream","num_buildings":1,"campus_acres":1.77,"utility_provider":"Duquesne Light Company","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (Act 25 of 2021) — sales and use tax exemption for qualified computer data center equipment (effective Jan 1, 2022 for certified data centers/operators/qualified tenants).","natural_hazard_zone":"FEMA Flood Zone X (low flood risk); Allegheny County low natural disaster and very low seismic risk"},"1894":{"description":"H5 Data Centers Pittsburgh is an operational colocation facility operated by H5 Data Centers at 2202 Liberty Ave., Pittsburgh, PA 15222. H5’s facility sheet describes a 30,000 sq ft data center with redundant power and multiple connectivity options.","verified_status":"operational","power_capacity_mw":2,"total_sqft":30000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"H5 Data Centers Pittsburgh","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers, LLC","cooling_type":"unknown","tier_level":"Tier III-equivalent (designed to exceed Tier III uptime standards); not Uptime Institute certified","fiber_providers":"carrier-neutral; includes Megaport","num_buildings":1,"campus_acres":0,"utility_provider":"Duquesne Light Company","tax_incentives":"Pennsylvania offers no specific data-center incentives but has provided a relatively small amount of aid to some data centers through general economic-","natural_hazard_zone":""},"1895":{"description":"Expedient Pittsburgh South (PIT1 / Green Tree) is an operational Expedient Data Centers colocation site at 810 Parish St, Pittsburgh, PA, offering 26,000 sq ft total with 12,000 sq ft of raised floor and a 1.8 MW critical IT load.","verified_status":"operational","power_capacity_mw":1.8,"total_sqft":26000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Expedient Pittsburgh PIT1 (also marketed as Pittsburgh – Green Tree / Pittsburgh South)","verified_operator":"Expedient","verified_owner":"LD DI 810 Parish St LLC","cooling_type":"chilled water","tier_level":"Tier III equivalent","fiber_providers":"Carrier-neutral; on-net carriers reported include Comcast Business, Crown Castle, DQE Communications, Lumen, Verizon Business, Windstream, WOW!, Zayo.","num_buildings":1,"campus_acres":2.25,"utility_provider":"Duquesne Light Company","tax_incentives":"Pennsylvania Computer Data Center Equipment Sales & Use Tax Exemption Program (effective Jan 1, 2022) may apply if the facility is certified; no facility-specific certification found.","natural_hazard_zone":"Moderate local flood risk; low overall natural-disaster and very low earthquake risk; not in a coastal/hurricane zone."},"1896":{"description":"Ascent Data Pittsburgh is Ascent Data’s operational colocation/managed-services data center at 90 Beta Drive, offering a secure, audited environment with 24/7 support and a stated 100% uptime guarantee.","verified_status":"operational","power_capacity_mw":0,"total_sqft":15000,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Ascent Data: 90 Beta Drive - Pittsburgh Data Center","verified_operator":"Ascent Data","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Duquesne Light Company","tax_incentives":"","natural_hazard_zone":""},"1897":{"description":"322 Fourth Avenue is an operational, multi-tenant telecom/carrier-hotel style data center in downtown Pittsburgh operated by viLogics Data Centers, offering colocation/switch space and interconnection to multiple networks.","verified_status":"operational","power_capacity_mw":2,"total_sqft":70000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"DQE Pittsburgh; Sierra Data Center","verified_name":"Pittsburgh Tech Center (viLogics Pittsburgh Data Center, 322 Fourth Ave)","verified_operator":"viLogics Data Centers","verified_owner":"E.V. Bishoff Company","cooling_type":"air-cooled","tier_level":"","fiber_providers":"DQE Communications; carrier-neutral","num_buildings":1,"campus_acres":0.24,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1898":{"description":"DataBank PIT1 is DataBank’s operational downtown Pittsburgh colocation/carrier-hotel data center at 100 S. Commons #126 within NOVA Place. The official page/datasheet list 30,760 IT square feet, 1.9MW critical IT load, and 7x24x365 operations.","verified_status":"operational","power_capacity_mw":1.9,"total_sqft":30760,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Pittsburgh Internet Exchange (PIT-IX); TeraSwitch (as PIT-IX’s original funder/associated local cloud-connectivity company)","verified_name":"DataBank PIT1 - Downtown Pittsburgh","verified_operator":"DataBank","verified_owner":"Faros Properties","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral with 31+ onsite carriers including AT&T, Verizon Business, Lumen, Comcast, Zayo, Cogent, GTT, Crown Castle, DQE Communications, Arelion, Windstream, Megaport, Console Connect, PacketFabric, Unitas Global, Prizm Fiber, Armstrong, Uniti Fiber, and others.","num_buildings":1,"campus_acres":0,"utility_provider":"Duquesne Light Company","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (sales and use tax exemption on qualified equipment); Allegheny County LERTA property tax abatement (up to $250,000 per taxing body annually for 10 years).","natural_hazard_zone":"low risk"},"1899":{"description":"Expedient Pittsburgh North Shore (PIT2) is an operational Expedient Data Centers colocation/cloud facility at Nova Place, 100 S Commons Suite 001, Pittsburgh, PA, featuring 4.2 MW critical IT load, 50,700 sq ft total space (26,000 sq ft raised floor), and 8.0 MW total generator capacity.","verified_status":"operational","power_capacity_mw":4.2,"total_sqft":50700,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Expedient Pittsburgh North Shore","verified_operator":"Expedient Data Centers","verified_owner":"Faros Properties","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; 10 on-net carriers","num_buildings":1,"campus_acres":12.57,"utility_provider":"Duquesne Light Company","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (minimal flood risk)"},"1900":{"description":"TECfusions New Kensington (Keystone Connect) is a TECfusions-operated colocation/AI data center campus at 100 Technical Drive in New Kensington, PA, a 500,000 sq ft adaptive‑reuse facility on a roughly 1,350‑acre former Arconic/Alcoa technology center site, marketed for up to 3 GW at full build-out.","verified_status":"under-construction","power_capacity_mw":200,"total_sqft":500000,"year_online":"unknown","construction_update":"Jan 26, 2026: TECfusions held an informational meeting with Upper Burrell Township; by Apr 26, 2026, local reporting noted previously issued building permits for existing buildings and grandfathered developments.","recent_news":"Jan 14, 2026: TensorWave announced an expansion with TECfusions that includes Keystone Connect as its first Pennsylvania footprint, part of a 20 MW split across Arizona and Pennsylvania.","notable_tenants":"TensorWave","verified_name":"TECfusions New Kensington","verified_operator":"TECfusions","verified_owner":"","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":1395,"utility_provider":"West Penn Power (FirstEnergy)","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (Act 25 of 2021) – sales and use tax refund on qualified data center equipment purchases","natural_hazard_zone":"FEMA Flood Zone X (outside 100-year floodplain); moderate flood risk"},"1901":{"description":"aspStation Data Center is aspStation, Inc.’s wholly owned colocation facility at 4736 Penn Avenue in Pittsburgh, offering 24/7 operations with diverse fiber connectivity and UPS/diesel-generator backup; the operator states it was engineered and built as a data center by IBM in 1990.","verified_status":"operational","power_capacity_mw":3,"total_sqft":18150,"year_online":"1990","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"aspStation Data Center","verified_operator":"aspStation, Inc.","verified_owner":"aspStation, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; diverse fiber connectivity to several major colo hotels (multiple Tier 1 handoffs).","num_buildings":1,"campus_acres":0.36,"utility_provider":"Duquesne Light Company","tax_incentives":"","natural_hazard_zone":"low risk"},"1902":{"description":"Cogent Communications operates a small telecom/colocation data center in Pittsburgh at 3216 Liberty Ave that offers 5,880 sq ft with 42U cabinets/private cages, UPS/backup generator, HVAC/fire protection, and connectivity options.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5880,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Data Center - Pittsburgh","verified_operator":"Cogent Communications, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; on-net Cogent Communications","num_buildings":0,"campus_acres":0.56,"utility_provider":"Duquesne Light Company","tax_incentives":"","natural_hazard_zone":""},"1903":{"description":"A planned data center campus on the former Pittsburgh International Race Complex site at 201 Pendale/Penndale Road in Big Beaver/Wampum, PA; initially linked to a Provident-backed acquisition, the project is now publicly advanced by Switch as a 382‑acre campus.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Planned/pre-construction: Switch announced a Beaver County campus in late April/early May 2026 and hosted a public town hall on June 2, 2026 about the proposed project.","recent_news":"June 2026 public town hall(s) hosted by Switch about the proposed campus drew packed attendance and resident pushback over the plan for the former Pitt Race site.","notable_tenants":"","verified_name":"Switch Pittsburgh Campus (Beaver County)","verified_operator":"Switch","verified_owner":"WAMPUM I LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; at intersection of key East-West and North-South fiber routes","num_buildings":0,"campus_acres":382,"utility_provider":"FirstEnergy (Penn Power)","tax_incentives":"Potential eligibility for Pennsylvania’s Computer Data Center Equipment Exemption; local LERTA referenced by Big Beaver Borough, with no project-specific certification disclosed.","natural_hazard_zone":"unknown"},"1904":{"description":"Centre WISP SCDC1 is an operational edge/colocation data center at 2038 Sandy Dr, State College, Pennsylvania, operated by Centre WISP Venture Company, LLC; listings note cage/rack/server colocation with N+1 power/cooling, on‑site generator backup, and 24×7 card access. The facility resides in a 7,200‑sq‑ft, 2001‑built office building at that address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":7200,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centre WISP SCDC1","verified_operator":"Centre WISP Venture Company, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Centre WISP / Black Bear Fiber AS53684","num_buildings":1,"campus_acres":0,"utility_provider":"Penelec (FirstEnergy)","tax_incentives":"","natural_hazard_zone":""},"1905":{"description":"Centersquare Albuquerque ABQ1 is an operational, carrier-neutral colocation data center at 400 Tijeras Avenue NW in downtown Albuquerque operated by Centersquare. It lists 8.6 MW of utility power with about 12,921 sq ft of raised floor within a 421,290 sq ft facility.","verified_status":"operational","power_capacity_mw":8.6,"total_sqft":421290,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare: Albuquerque ABQ1","verified_operator":"Centersquare (Csquare)","verified_owner":"Omninet Capital","cooling_type":"chilled water","tier_level":"Tier III","fiber_providers":"Carrier-neutral; 12+ networks (e.g., Lumen/CenturyLink/Level 3, Cogent, Spectrum/Time Warner, Verizon)","num_buildings":1,"campus_acres":1.84,"utility_provider":"Public Service Company of New Mexico (PNM)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zones B and X (moderate/minimal flood hazard); moderate seismic risk (Rio Grande Rift)"},"1906":{"description":"H5 Data Centers operates a carrier‑neutral colocation and carrier‑hotel facility at 505 Marquette Ave NW in Albuquerque, offering 225,000 sq ft across two facilities with 25 on‑net carriers.","verified_status":"operational","power_capacity_mw":20,"total_sqft":225000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Hurricane Electric; Comcast Business (redundant, 100G-capable PoP); Maya Virtual; plus 25 on-net carriers/network providers.","verified_name":"H5 Data Centers Albuquerque (505 Marquette)","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; on-net providers include Cogent Communications","num_buildings":1,"campus_acres":0,"utility_provider":"PNM (Public Service Company of New Mexico)","tax_incentives":"","natural_hazard_zone":""},"1907":{"description":"Oso Grande Technologies operates the OSO Secure/ABQ1 colocation data center at 725 6th Street NW in Albuquerque, a carrier‑neutral facility housed in a single‑story ~60,000 sq ft building with multiple secure vaults and redundant infrastructure, offering shared colocation and a build‑to‑suit data floor.","verified_status":"operational","power_capacity_mw":2,"total_sqft":60000,"year_online":"unknown","construction_update":"Apr 7, 2026: ABQ1‑DF3 is marketed as premium build‑to‑suit white space with pre‑approved utility power and ready plans for a 5 MW AI facility; other areas remain in shared colocation service.","recent_news":"Apr 7, 2026: The operator updated its data‑centers page to market ABQ1‑DF3 as build‑to‑suit white space, noting pre‑approved utility power and ready plans for a 5 MW AI facility.","notable_tenants":"","verified_name":"Oso Grande Technologies – 725 6th Street NW Data Center Campus","verified_operator":"Oso Grande Technologies, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Hurricane Electric, Cogent","num_buildings":3,"campus_acres":3.65,"utility_provider":"Public Service Company of New Mexico (PNM)","tax_incentives":"","natural_hazard_zone":"low risk"},"1908":{"description":"Southwest Cyberport operates a colocation/data center at 5021 Indian School Rd NE, Suite 600, Albuquerque, NM, offering 24/7‑monitored connectivity and server hosting. Multiple directories corroborate the same operator and address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SWCP Albuquerque Data Center","verified_operator":"Southwest Cyberport, Inc.","verified_owner":"Rabina Realty and Jonathan Rose Companies (TechCommons JV)","cooling_type":"unknown","tier_level":"","fiber_providers":"Southwest Cyberport AS10381; redundant multi-homed network; specific carriers not publicly disclosed","num_buildings":5,"campus_acres":0,"utility_provider":"Public Service Company of New Mexico (PNM)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (Area of Minimal Flood Hazard); neighborhood flood risk: minor"},"1909":{"description":"Small colocation facility at 219 Central Ave NW in downtown Albuquerque, historically listed as PRISM Technologies in the basement of the historic First National Bank building; current interconnection listings show it as ServerCondo-219 operated by IXNM, Inc.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2200,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ServerCondo-219 Albuquerque","verified_operator":"IXNM, INC.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"PNM (Public Service Company of New Mexico)","tax_incentives":"","natural_hazard_zone":"Medium flood risk; lower fire risk reported for the property’s area; exact FEMA flood-zone not confirmed."},"1910":{"description":"bigbyte.cc Corp operates a carrier‑neutral colocation/data‑center and business‑continuity tech campus at 123 Central Ave NW in Albuquerque. The site is described as Tier III/Tier 3‑compliant and offers multi‑tenant colocation with roughly 60–62k total square feet.","verified_status":"operational","power_capacity_mw":0,"total_sqft":62000,"year_online":"unknown","construction_update":"","recent_news":"Feb 24, 2026: Qunnect announced ABQ‑Net going live in Albuquerque, and bigbyte.cc stated the ABQ‑NET platform deployed by Qunnect is live at its tech campus; a June 16, 2026 industry report noted the network’s formal activation.","notable_tenants":"Qunnect","verified_name":"bigbyte.cc Data Center & Tech Campus","verified_operator":"bigbyte.cc Corp","verified_owner":"Santa Fe Pacific Trust, Inc.","cooling_type":"unknown","tier_level":"Tier III compliant (not Uptime-certified)","fiber_providers":"carrier-neutral; fiber and copper cross-connects; connectivity to multiple carriers and direct connections to major cloud providers","num_buildings":0,"campus_acres":0,"utility_provider":"Public Service Company of New Mexico (PNM)","tax_incentives":"","natural_hazard_zone":""},"1911":{"description":"A telecom-oriented, multi-tenant data center at 3830 Singer Boulevard NE in Albuquerque operated by Segra/Unite Private Networks, with Segra actively listing the site. The facility is notable as a former Level 3 location that continues to serve regional network and data center needs.","verified_status":"operational","power_capacity_mw":0,"total_sqft":41000,"year_online":"1987","construction_update":"","recent_news":"","notable_tenants":"Unite Private Networks (UPN) as anchor; AdaptHealth (Pacific Pulmonary Services) and Pacific Office Automation as additional tenants at the 3830 Singer Blvd NE site.","verified_name":"Segra Albuquerque Data Center","verified_operator":"Segra","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Segra/UPN on-net; additional carriers not publicly enumerated","num_buildings":1,"campus_acres":3.38,"utility_provider":"Public Service Company of New Mexico (PNM)","tax_incentives":"","natural_hazard_zone":""},"1912":{"description":"Cogent Communications operates a colocation data center at 114 W 10th St, Cheyenne, WY, offering 32,860 sq ft of space and 2.50 MW of total power; roughly 16,200 sq ft is dedicated to colocation space.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":32860,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cheyenne Data Center (Cogent Great Plains)","verified_operator":"Cogent Communications (Cogent Great Plains)","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; Cogent, Zayo, EchoStar, Charter, CenturyLink/Lumen","num_buildings":0,"campus_acres":1.6,"utility_provider":"Black Hills Energy","tax_incentives":"Wyoming Data Center Sales Tax Exemption may apply if statutory thresholds and certifications are met; no site-specific award located.","natural_hazard_zone":"FEMA flood zone for 114 W 10th St not confirmed here; use FEMA MSC and Laramie County floodplain map for parcel-specific determination."},"1913":{"description":"Lunavi Cheyenne / 1547 CHWY1 is an operational colocation data center at 340 Progress Circle in Cheyenne, WY, operated by Lunavi and offered by 1547 Critical Systems Realty as a single-tenant facility spanning roughly 42,000 sq ft.","verified_status":"operational","power_capacity_mw":5,"total_sqft":42000,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"Lunavi is the publicly identified single tenant/occupier; no separate anchor colocation customer is publicly disclosed.","verified_name":"Lunavi Cheyenne / 1547 CHWY1","verified_operator":"Lunavi","verified_owner":"1547 Critical Systems Realty / Harrison Street Real Estate Capital","cooling_type":"evaporative","tier_level":"Tier III equivalent (concurrently maintainable design)","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":10,"utility_provider":"Black Hills Energy","tax_incentives":"Wyoming data center sales/use tax exemption: Tier 1 ($5M capital + $2M equipment) exempts computer equipment; Tier 2 ($50M) adds UPS, backup generation, and specialized HVAC/air-quality equipment.","natural_hazard_zone":"low risk"},"1914":{"description":"MWTN - Cheyenne is an operational colocation data center operated by Mountain West Technology Network at 6101 Yellowstone Rd, Suite 100, Cheyenne, Wyoming. It is listed by industry directories as the “South Eastern Wyoming - Cheyenne Data Center” and offers colocation services at this site.","verified_status":"operational","power_capacity_mw":1.4,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"MWTN - Cheyenne","verified_operator":"Mountain West Technology Network","verified_owner":"6101 Yellowstone, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":11.99,"utility_provider":"Cheyenne Light, Fuel & Power (Black Hills Energy)","tax_incentives":"Favorable state/local tax environment for data centers; utility large-power programs available.","natural_hazard_zone":"low risk"},"1915":{"description":"The NCAR-Wyoming Supercomputing Center is NSF NCAR/UCAR’s high‑performance computing facility at 8120 Veta Drive in Cheyenne, Wyoming, operated by NCAR’s CISL for Earth‑system research; it opened in 2012 and houses the ‘Derecho’ HPE Cray EX supercomputer.","verified_status":"operational","power_capacity_mw":0,"total_sqft":170982,"year_online":"2012","construction_update":"","recent_news":"On Feb. 12, 2026, NSF announced NWSC management and operations are expected to transition to a third-party, with NSF working to ensure continuity; later reports said the University of Wyoming planned to submit a management proposal.","notable_tenants":"Research community users via NSF NCAR/CISL — more than 4,000 users from more than 575 universities and institutions; no commercial colocation tenants listed.","verified_name":"NCAR-Wyoming Supercomputing Center (NWSC)","verified_operator":"NCAR (CISL), sponsored by NSF","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"Front Range GigaPoP (FRGP) research network; specific carriers not listed","num_buildings":1,"campus_acres":24,"utility_provider":"Cheyenne Light, Fuel and Power","tax_incentives":"","natural_hazard_zone":""},"1916":{"description":"Microsoft CYS - Building 1 is a Microsoft-operated hyperscale/Azure data center at 644 Logistics Dr in Cheyenne, Wyoming, serving the Azure West Central US region. Wyoming DEQ identifies the Microsoft Cheyenne Data Center at this address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":267555,"year_online":"unknown","construction_update":"Apr 2026: campus permitting activity for generators at the Logistics Drive site; July 2025: authorization for 128 diesel-fired units (campus-level).","recent_news":"Apr 14, 2026: Microsoft announced intent to expand datacenter operations in Cheyenne (two parcels ~200 acres in Bison Business Park); late May 2026 reports said Microsoft added two more parcels totaling ~420 acres amid community concerns; Jan 15, 2026: WYDEQ posted a Title V draft permit for the 644 Logistics Drive campus.","notable_tenants":"Microsoft Azure (self-operated by Microsoft); no third-party/colocation tenants are publicly disclosed.","verified_name":"Microsoft CYS - Building 1","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":7,"campus_acres":0,"utility_provider":"Black Hills Energy / Cheyenne Light, Fuel and Power","tax_incentives":"Wyoming statewide data center incentives apply: sales/use tax exemptions for qualifying data center investments and the Managed Data Center Cost Reduction Grant under the Business Ready Community program.","natural_hazard_zone":"FEMA Flood Zone B and X — moderate flood hazard"},"1917":{"description":"CleanSpark Cheyenne 2 is CleanSpark’s North Range immersion‑cooled bitcoin‑mining data center at 635 Logistics Dr in Cheyenne, Wyoming. Acquired in 2024 as part of its Wyoming buildout, it was reported as one of two wholly owned, immersion‑cooled Wyoming facilities in operation by late 2025.","verified_status":"operational","power_capacity_mw":45,"total_sqft":0,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CleanSpark Cheyenne 2","verified_operator":"CleanSpark","verified_owner":"CSRE Properties Wyoming, LLC (CleanSpark subsidiary)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Cheyenne Light, Fuel and Power Company d/b/a Black Hills Energy","tax_incentives":"NO corporate state income tax; NO personal state income tax; NO inventory tax; NO franchise tax; NO occupation tax.","natural_hazard_zone":"low risk"},"1918":{"description":"Data Center of the Rockies is Mountain West Technologies’ operational colocation facility at 851 Werner Ct, Suite 100, Casper, Wyoming, offering secure, scalable infrastructure. The site is listed at 132,000 sq ft and serves regional colocation needs.","verified_status":"operational","power_capacity_mw":1.3,"total_sqft":132000,"year_online":"2025","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Data Center of the Rockies","verified_operator":"Mountain West Technologies","verified_owner":"Wyoming Financial Properties, Inc.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; Zayo, Lumen, Hurricane Electric; three diverse fiber entry points; exchange presence (SIX, IX-Denver).","num_buildings":1,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"Wyoming sales/use tax exemptions for data centers: $5M capital infrastructure + $2M equipment/software threshold; $50M tier extends to UPS, backup generation, specialized HVAC/air-quality equipment (certification required). No facility-specific award found.","natural_hazard_zone":"FEMA Flood Zone B/X (moderate hazard; between 100- and 500-year limits)"},"1919":{"description":"Prometheus WY-2 is a planned hyperscale data center campus by Prometheus Hyperscale near 10300 Hat Six Rd in Casper, Wyoming, with a partnership to develop carbon‑negative data halls and on‑site energy/carbon‑capture infrastructure.","verified_status":"planned","power_capacity_mw":1500,"total_sqft":0,"year_online":"unknown","construction_update":"As of June 16, 2026, the project remains in planning/permitting: Natrona County commissioners took no action on an industrial‑park designation (June 16, 2026), and local officials clarified that an April 21 process only set criteria to designate industrial parks rather than approve construction.","recent_news":"June 16, 2026: Natrona County commissioners took no action on an industrial‑park zoning plan for the proposed Prometheus data center; May 21, 2026: Converse County rolled back a fast‑track industrial‑park policy related to data centers near the county line.","notable_tenants":"","verified_name":"Prometheus WY-2","verified_operator":"Prometheus Hyperscale","verified_owner":"Falls Ranch Limited Partnership","cooling_type":"liquid cooling","tier_level":"Tier III","fiber_providers":"Lumen Technologies","num_buildings":0,"campus_acres":12000,"utility_provider":"Rocky Mountain Power","tax_incentives":"State-level incentives likely applicable if thresholds are met: sales/use tax exemptions for data center equipment and the Managed Data Center Cost Reduction Grant.","natural_hazard_zone":""},"1920":{"description":"A Silver Star Communications-operated data center located at 455 E 1st Ave, Afton, WY 83110, listed on DataCenterMap [1], with Afton noted as the company’s primary data center site and the operator providing broadband and business services in the region [2][3].","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Silver Star Communications - Afton","verified_operator":"Silver Star Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Silver Star Communications (on-net company fiber)","num_buildings":0,"campus_acres":0,"utility_provider":"Lower Valley Energy","tax_incentives":"","natural_hazard_zone":"Flood: generally low countywide risk; Swift Creek 100-year floodplain mapped in Afton. Seismic: regional seismicity near Afton indicates notable fault-related risk."},"1921":{"description":"The Wells Building (MIWI1) is an operational, carrier‑neutral colocation and interconnection data center/carrier hotel at 324 E Wisconsin Ave in downtown Milwaukee, operated by 1547 Critical Systems Realty. The site is listed at 160,000 sq ft with current critical power and expansion potential, and is marketed as Milwaukee’s premier carrier hotel.","verified_status":"operational","power_capacity_mw":1,"total_sqft":160000,"year_online":"unknown","construction_update":"","recent_news":"June 15, 2026: Milwaukee’s Zoning Code Technical Committee advanced a rule to ban new data centers over 60,000 sq ft and regulate 20,000–60,000 sq ft facilities; the article cites the Wells Building as an existing building leasing floors to telecom/data‑center use and notes the rule applies to future applications, not existing operations.","notable_tenants":"No anchor enterprise customer is publicly identified. On‑net/carrier/provider tenants include AT&T, Spectrum/Charter, Cogent, Netwurx, and TSR Solutions.","verified_name":"MIWI1 / The Wells Building","verified_operator":"fifteenfortyseven Critical Systems Realty (1547 Critical Systems Realty)","verified_owner":"Joint venture of fifteenfortyseven Critical Systems Realty (1547) and Harrison Street","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral (carrier hotel); multiple network providers present","num_buildings":1,"campus_acres":0,"utility_provider":"We Energies","tax_incentives":"City of Milwaukee Better Buildings Challenge participant","natural_hazard_zone":"Seismic hazard: very low (Wisconsin)"},"1922":{"description":"Data Holdings Milwaukee is a Tier III+, carrier-neutral colocation and cloud data center at 3135 W. Highland Blvd operated by Data Holdings (owned by Potawatomi Ventures). The purpose-built, LEED Gold-certified facility offers about 46,000 sq ft of hardened space with redundant power/cooling and a 100% uptime posture.","verified_status":"operational","power_capacity_mw":10,"total_sqft":46000,"year_online":"2013","construction_update":"2019-08-13: Completed a 7,500-sq-ft expansion supporting additional capacity at 3135 W. Highland Blvd.","recent_news":"2026-02-26: Potawatomi Ventures highlighted a WKBT news segment featuring Data Holdings as a sustainable data center.","notable_tenants":"Milwaukee Internet Exchange (MKEIX)","verified_name":"Data Holdings Milwaukee Data Center","verified_operator":"Data Holdings","verified_owner":"Potawatomi Ventures (via Potawatomi Business Development Corporation / Forest County Potawatomi Community)","cooling_type":"air-cooled","tier_level":"Tier III Enhanced design (not Uptime-certified)","fiber_providers":"Host site for Milwaukee Internet Exchange (MKE-IX); multiple network carriers (not listed publicly)","num_buildings":1,"campus_acres":0,"utility_provider":"We Energies","tax_incentives":"Wisconsin’s Data Center Sales and Use Tax Exemption exists; eligibility requires substantial investment. No facility-specific award found.","natural_hazard_zone":"low risk (inland; no coastal hurricane/tsunami exposure); specific FEMA flood zone not confirmed"},"1923":{"description":"Windstream Brookfield is a Windstream-operated colocation/data center at 13935 Bishops Drive in Brookfield, Wisconsin, offering enterprise colocation services with redundant infrastructure. Multiple provider/directories confirm the facility and address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":6000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Brookfield","verified_operator":"Windstream","verified_owner":"Pinnacle Property Holdings, LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Windstream","num_buildings":3,"campus_acres":18.18,"utility_provider":"We Energies","tax_incentives":"","natural_hazard_zone":"low risk"},"1924":{"description":"A Veolia-operated data center at 8450 W Forest Home Ave in Greenfield, Wisconsin, listed on DataCenterMap. The site sits within a 19,495 SF office property built in 1984 per LoopNet.","verified_status":"operational","power_capacity_mw":0,"total_sqft":19495,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Veolia Data Center","verified_operator":"Veolia North America / Veolia NOC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.38,"utility_provider":"We Energies","tax_incentives":"","natural_hazard_zone":"FEMA flood zone not confirmed at address level; city-level risk is minor overall (mostly Zone X) with localized Zone AE areas; very low seismic risk."},"1925":{"description":"Lumen Brookfield is Lumen’s Milwaukee 1 colocation/data center at 3235 Intertech Dr, Brookfield, WI, operated by Lumen Technologies and historically a former tw telecom site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Milwaukee 1","verified_operator":"Lumen Technologies","verified_owner":"Lumen Technologies","cooling_type":"unknown","tier_level":"Tier III-style design (not Uptime Institute certified)","fiber_providers":"Carrier-neutral; Lumen backbone plus multiple regional and national carriers","num_buildings":1,"campus_acres":5.55,"utility_provider":"We Energies","tax_incentives":"Wisconsin Data Center Sales and Use Tax Exemption exists for qualified projects; no evidence this facility has received or qualified for the exemption.","natural_hazard_zone":"low risk"},"1926":{"description":"Lumen Madison (Madison 1) is a Lumen Technologies-operated colocation/telecom data center at 612 W Main St in downtown Madison’s historic Sunkist Building; a separate smaller HC Colo #1 facility by Hoyos Consulting is also listed at the same address.","verified_status":"operational","power_capacity_mw":0.8,"total_sqft":30225,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Madison and HC Colo #1 (Sunkist Building, 612 W Main St, Madison, WI)","verified_operator":"Lumen (Lumen Madison) and Hoyos Consulting LLC (HC Colo #1)","verified_owner":"Delta Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Madison Gas and Electric (MGE)","tax_incentives":"","natural_hazard_zone":"unknown"},"1927":{"description":"Airiam Hartland is a colocation data center operated by Airiam at 1040 Cottonwood Ave in Hartland, Wisconsin, offering colocation/cloud/connectivity services. Airiam later relocated its local office to Delafield, with no explicit public notice that the data center itself was decommissioned.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Airiam Hartland","verified_operator":"Airiam","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"tw telecom (now Lumen)","num_buildings":1,"campus_acres":3,"utility_provider":"We Energies","tax_incentives":"Wisconsin Data Center Sales & Use Tax Exemption exists, but no certification found for this facility.","natural_hazard_zone":"low risk (city-level minor flood risk; FEMA zone undetermined)"},"1928":{"description":"ISCorp North MQN is ISCorp’s colocation/private secure cloud data center at 10325 N Port Washington Rd in Mequon, Wisconsin. It serves as part of ISCorp’s managed private cloud footprint.","verified_status":"operational","power_capacity_mw":0,"total_sqft":20000,"year_online":"2004","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ISCorp North MQN","verified_operator":"ISCorp (Integrated Systems Corporation)","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III+","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"We Energies","tax_incentives":"","natural_hazard_zone":""},"1929":{"description":"ISCorp South MQN is an ISCorp-operated colocation/private secure cloud data center at 10235 N Port Washington Rd, Mequon, WI, and is part of the company’s Mequon data center footprint.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ISCorp South MQN","verified_operator":"ISCorp (Integrated Systems Corporation)","verified_owner":"RDC Investments, LLC","cooling_type":"hybrid","tier_level":"Tier III-equivalent design (exceeds TIA-942); not Uptime Institute certified","fiber_providers":"carrier-neutral; multiple on-net carriers; meet-me room; private dark-fiber ring through Metro Milwaukee","num_buildings":1,"campus_acres":1.99,"utility_provider":"We Energies (WEC Energy Group)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (low risk)"},"1930":{"description":"EdgeConneX’s Madison Edge Data Center (EDCMAD01/MAD01) is an operational colocation facility at 4916 E Broadway, Madison, WI, publicly associated with the Dane County Data Exchange I site. It offers a carrier‑neutral, ~7,800 sq ft environment and EdgeConneX connectivity services.","verified_status":"operational","power_capacity_mw":0.7,"total_sqft":7800,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX MAD01 Madison Data Center","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":4.42,"utility_provider":"Madison Gas and Electric (MGE)","tax_incentives":"Wisconsin statewide data-center sales/use-tax exemption (2023–25 budget). No facility-specific local abatement found.","natural_hazard_zone":"Moderate flood risk (property listing indicates medium flood risk; verify parcel-specific zone via FEMA MSC)."},"1931":{"description":"Carrier‑neutral colocation data center operated by 5NINES in the Network222 building at 222 W Washington Ave in downtown Madison, notable for its central location and connectivity to many carriers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5489,"year_online":"2003","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"5NINES Data Center (Network222)","verified_operator":"5NINES (operated by ResTech Services)","verified_owner":"The Fiore Companies","cooling_type":"air-cooled","tier_level":"Designed to Tier III/Tier IV standards per operator; no formal Uptime Institute certification identified.","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":2,"utility_provider":"Madison Gas & Electric (MGE)","tax_incentives":"Wisconsin’s data center sales and use tax exemption (2023/2024 Act 19) is available to qualified data centers that apply and meet minimum investment thresholds (e.g., $200M in larger counties like Dane). No public record indicates this facility is certified for the exemption.","natural_hazard_zone":"Downtown Madison isthmus shows notable flood exposure (portions in higher-risk zones); earthquake hazard is very low; no hurricane exposure."},"1932":{"description":"US Signal Madison WI02 is an operational colocation data center at 5515 Nobel Drive in Fitchburg, Wisconsin, operated by US Signal Company, LLC following its September 3, 2024 acquisition of OneNeck. The site opened in 2008 with subsequent expansions and is marketed with a 99.999% uptime SLA and connectivity to nine on‑net carriers.","verified_status":"operational","power_capacity_mw":0.581,"total_sqft":5667,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"US Signal Madison WI02 (WI02 Madison Data Center)","verified_operator":"US Signal Company, LLC","verified_owner":"OneNeck Data Center Holdings LLC","cooling_type":"chilled water","tier_level":"Tier 3","fiber_providers":"carrier-neutral; 9 on-net carriers; direct access to US Signal fiber backbone; identified carriers include AT&T, Charter, CenturyLink/Lumen, TDS Telecom, WIN, and Windstream","num_buildings":1,"campus_acres":9.972,"utility_provider":"Madison Gas and Electric (MGE)","tax_incentives":"","natural_hazard_zone":"low risk"},"1933":{"description":"UW–Madison DoIT Data Center Services is an enterprise and research data center service operated by the University of Wisconsin–Madison Division of Information Technology at 1210 W. Dayton St., staffed 24x7x365 to support critical campus IT and research needs.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"UW–Madison DoIT Data Center (Data Center Services)","verified_operator":"University of Wisconsin–Madison Division of Information Technology (DoIT)","verified_owner":"Board of Regents of the University of Wisconsin System","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Northern Tier Network (NTN); BOREAS-Net; UW–Madison campus network (commercial carriers not publicly listed).","num_buildings":1,"campus_acres":0,"utility_provider":"Madison Gas and Electric (MGE)","tax_incentives":"","natural_hazard_zone":"No facility-specific FEMA flood zone identified. Context: Madison flood risk mapped by city watershed studies; Dane County has flood mitigation plans; low seismic risk in Wisconsin."},"1934":{"description":"WIN – Green Bay Data Center is a small colocation facility operated by WIN Technology at 417 Pine St in Green Bay, Wisconsin, offering around 2,500 sq ft of space and approximately 0.25 MW of power. Listings indicate it has been operational since 2016.","verified_status":"operational","power_capacity_mw":0.25,"total_sqft":2500,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"WIN - Green Bay Data Center","verified_operator":"WIN Technology","verified_owner":"WIN Technology (Wisconsin Independent Network, LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"WIN Technology fiber network","num_buildings":1,"campus_acres":0.114,"utility_provider":"Wisconsin Public Service","tax_incentives":"State sales/use tax incentives exist for qualifying data centers; no facility-specific incentive identified for this site.","natural_hazard_zone":"Flood risk (Downtown Green Bay near Fox River; FEMA floodplain mapping; First Street flood risk metrics; NOAA gauge indicates potential for major flooding)."},"1935":{"description":"Netsonic Wisconsin Datacenter is Netsonic’s operational colocation/cloud facility at 1263 Main St., Suite 223 in Green Bay, Wisconsin, offering colocation and bare-metal server services from this site [1][2]; a leading directory lists the facility as “Netsonic Wisconsin Datacenter” with 4 MW capacity [3].","verified_status":"operational","power_capacity_mw":4,"total_sqft":0,"year_online":"1996","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Netsonic Wisconsin Datacenter","verified_operator":"Netsonic","verified_owner":"James Brick","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; AT&T, Spectrum (Time Warner)","num_buildings":1,"campus_acres":0,"utility_provider":"Wisconsin Public Service","tax_incentives":"Wisconsin sales and use tax exemptions for qualified data centers are available statewide; no Netsonic-specific package identified.","natural_hazard_zone":"Moderate flood risk (downtown Green Bay); FEMA flood maps updated May 2023; low seismic risk."},"1936":{"description":"Project Cornmaze (often linked to Meta in reporting) is a proposed large-scale data center campus led by Panattoni on roughly 430 acres in the Towns of Beloit and Turtle, WI, near W B R Townline Rd & I-39 ALT. Concept plans presented in June 2026 show four buildings totaling about 2 million square feet, pending studies and approvals.","verified_status":"planned","power_capacity_mw":0,"total_sqft":2000000,"year_online":"unknown","construction_update":"June 2026: Panattoni hosted a private briefing and public open house presenting Project Cornmaze concept plans; the project remains in early planning and under consideration pending studies and local approvals.","recent_news":"June 2026: Panattoni held a private briefing and public open house for Project Cornmaze, presenting conceptual plans (4 buildings across >430 acres; imagery of a ~2M sq ft campus), prompting community discussion.","notable_tenants":"Meta (reported/backing; not officially confirmed by developer). No other tenants publicly listed.","verified_name":"Project Cornmaze (Beloit and Turtle Data Center Project)","verified_operator":"Panattoni Data Centers (developer; end-operator not yet confirmed)","verified_owner":"","cooling_type":"liquid cooling","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":600,"utility_provider":"Alliant Energy","tax_incentives":"State program available: Wisconsin Data Center Sales and Use Tax Exemption (eligibility requires WEDC certification); no project-specific award identified.","natural_hazard_zone":"Potential flood risk near Rock River; specific FEMA flood zone undetermined"},"1937":{"description":"Franklin Datacenter (CyberLynk MKE1) is CyberLynk Network Inc.’s operational colocation facility at 10125 S. 52nd Street in Franklin, Wisconsin, offering cabinet colocation with multiple on‑net carriers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyberLynk Network Inc. – Franklin Data Center (MKE1)","verified_operator":"CyberLynk Network Inc.","verified_owner":"BRIDGESTONE REAL ESTATE I, LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; dual fiber entrances; multiple, redundant fiber routes (Tier 1 providers)","num_buildings":0,"campus_acres":3.03,"utility_provider":"We Energies","tax_incentives":"Wisconsin Data Center Sales and Use Tax Exemption exists; no evidence this facility is certified/approved.","natural_hazard_zone":"FEMA Flood Zone X/B (moderate-to-low flood hazard)"},"1938":{"description":"Expedient MKE1 / Milwaukee Data Center is an operational colocation and cloud facility operated by Expedient at 4777 W Ironwood, Franklin, WI. It opened in 2021 in a former Harley‑Davidson data center and currently lists 1.6 MW of critical IT load and 27,000 sq ft total size.","verified_status":"operational","power_capacity_mw":1.6,"total_sqft":27000,"year_online":"2021","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Expedient Milwaukee Data Center (MKE1)","verified_operator":"Expedient","verified_owner":"StratCap Data Centers","cooling_type":"unknown","tier_level":"Tier III (design standard)","fiber_providers":"","num_buildings":1,"campus_acres":2.64,"utility_provider":"We Energies","tax_incentives":"Wisconsin Data Center Sales and Use Tax Exemption (application via WEDC; eligibility requires specific minimum investments). Likely not applicable to this small facility.","natural_hazard_zone":"FEMA Flood Zone X (minimal flood hazard); low seismic risk"},"1939":{"description":"EdgeConneX Phoenix PHX01 (EDCPHX01) is an operational, carrier‑neutral colocation data center at 3011 S 52nd St, Suite 107, Tempe, serving the Phoenix metro. The facility totals about 79,200 sq ft with roughly 17,300 sq ft of raised floor and offers up to ~6.5 MW of power.","verified_status":"operational","power_capacity_mw":6.5,"total_sqft":79200,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX Phoenix PHX01 (EDCPHX01)","verified_operator":"EdgeConneX","verified_owner":"3011 South 52nd Street LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; AWS Direct Connect available","num_buildings":1,"campus_acres":2.041,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk"},"1940":{"description":"Menlo Digital MD-PHX1 (Phoenix) is a planned hyperscale campus at 4801–4811 E. Thistle Landing Dr., featuring five buildings on roughly 38 acres with a dedicated on-site substation and about 1,022,400 sq ft of total space.","verified_status":"planned","power_capacity_mw":257,"total_sqft":1022400,"year_online":"unknown","construction_update":"Active planning and community-review activity noted Feb–Mar 2026; no directly quoted construction start or commissioning dates verified.","recent_news":"Local media covered resident protests and a heated village planning committee meeting over the Ahwatukee data center project in Feb–Mar 2026.","notable_tenants":"","verified_name":"MD-PHX1 (Phoenix)","verified_operator":"Menlo Digital","verified_owner":"Menlo Equities","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":38.3,"utility_provider":"","tax_incentives":"Arizona Computer Data Center Program provides TPT and Use Tax exemptions on qualifying purchases; no project-specific incentive verified.","natural_hazard_zone":"unknown"},"1941":{"description":"A 185,000 sq ft, purpose-built, sole-tenant Digital Realty data center on the former brickyard site at 9905 Godwin Drive in Manassas, Virginia. It came online in 2024 and is leased to a bank tenant.","verified_status":"operational","power_capacity_mw":0,"total_sqft":185000,"year_online":"2024","construction_update":"","recent_news":"June 29, 2026: Digital Realty agreed to purchase Blackstone’s 80% interest in two 96 MW data centers in Manassas, VA, and a 50% interest in one 96 MW Sterling facility (portfolio gross value $7.8B), expanding its footprint in the market.","notable_tenants":"Unnamed bank (sole tenant; exempt from local BPOL and business personal property taxes under Virginia Bank Franchise Tax)","verified_name":"Digital Realty IAD53 – 9905 Godwin Drive","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust (via Digital Second Manassas 2 LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":20.8,"utility_provider":"City of Manassas Electric Utility","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (for qualifying computer equipment and enabling software, subject to statutory investment/jobs thresholds).","natural_hazard_zone":""},"1942":{"description":"Equinix DC14 is an operational, carrier-neutral IBX colocation data center at 7400 Infantry Ridge Road in Manassas, Virginia, offering about 109,781 total sq ft and approximately 4 MW of commissioned IT power.","verified_status":"operational","power_capacity_mw":4,"total_sqft":109781,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Equinix DC14","verified_operator":"Equinix","verified_owner":"Equinix LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":7.31,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (state program for qualifying data centers)","natural_hazard_zone":"FEMA Flood Zone X (unshaded); elevation above the 500-year base-flood elevation"},"1943":{"description":"A small American Tower Edge colocation facility in southwest Atlanta offering neutral-host edge services; the site totals 360 sq ft at 2374 Fairburn Road SW.","verified_status":"operational","power_capacity_mw":0,"total_sqft":360,"year_online":"unknown","construction_update":"","recent_news":"Mar 2, 2026 — American Tower refocuses on AI-driven data center demand and exits the Indian market.","notable_tenants":"","verified_name":"American Tower Edge Data Center Atlanta","verified_operator":"American Tower Corporation","verified_owner":"American Tower Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Georgia high-technology data center equipment sales and use tax exemption","natural_hazard_zone":"unknown"},"1944":{"description":"Single‑story, 64,200 sq ft colocation facility on 2.7 acres at 1190 Allene Ave SW in Atlanta, operated by Cogent and offering 7.5 MW with additional 2.5 MW available; carrier access includes Cogent, Zayo, Verizon Business, AT&T, AGLN, and Adelphia Business Solutions.","verified_status":"operational","power_capacity_mw":7.5,"total_sqft":64202,"year_online":"unknown","construction_update":"","recent_news":"I Squared to acquire a portfolio of ten data center facilities from Cogent for $225 million in cash; the deal is expected to close in Q3 2026.","notable_tenants":"","verified_name":"Cogent Data Center - Atlanta 2","verified_operator":"Cogent Communications, Inc.","verified_owner":"Cogent Communications","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; Cogent, Zayo, Verizon Business, AT&T, AGLN, Adelphia Business Solutions","num_buildings":1,"campus_acres":2.7,"utility_provider":"Georgia Power","tax_incentives":"","natural_hazard_zone":"Moderate flood risk (Flood Factor 5/10); low fire risk (1/10); moderate wind (6/10) and heat (6/10)."},"1945":{"description":"CoreSite AT2 is a carrier-neutral colocation data center with 67,000+ square feet at 1130 Powers Ferry Place in Marietta, GA, offering interconnection services in the Atlanta metro.","verified_status":"operational","power_capacity_mw":2,"total_sqft":67000,"year_online":"2002","construction_update":"","recent_news":"June 2026: Public opposition to proposed data center plans in Marietta; Cobb County had issued a six‑month moratorium in Feb 2026. No AT2‑specific updates reported.","notable_tenants":"","verified_name":"CoreSite AT2 - Marietta Data Center","verified_operator":"CoreSite","verified_owner":"American Tower Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Georgia high-technology data center equipment sales and use tax exemption (subject to investment thresholds)","natural_hazard_zone":"County-level major hurricane/tornado wind risk; flood events recorded in Cobb County; site floodplain status not verified."},"1946":{"description":"CleanSpark College Park is a CleanSpark-owned and -operated bitcoin mining data center at 2380 Godby Rd, College Park, Georgia, on a six-acre campus. Industry directories list the facility at approximately 47 MW of power capacity.","verified_status":"operational","power_capacity_mw":47,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"April 2026: CleanSpark reported controlling more than 1.8 GW of power, land, and data centers across the U.S.; no College Park–specific update in the last six months.","notable_tenants":"CleanSpark","verified_name":"CleanSpark College Park","verified_operator":"CleanSpark, Inc.","verified_owner":"CleanSpark, Inc.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":6,"utility_provider":"College Park Power","tax_incentives":"Georgia Data Center Sales & Use Tax Exemption (active)","natural_hazard_zone":"unknown"},"1947":{"description":"Planned hyperscale data center campus at 1751 Bells Ferry Road in Marietta, Georgia, totaling about 347,200 sq ft across two buildings with up to 108 MW and zoning approval granted; as of June 2026, no construction permits were in place.","verified_status":"planned","power_capacity_mw":108,"total_sqft":347200,"year_online":"unknown","construction_update":"Zoning/Special Land Use approval granted June 2025; as of June 2026, not on the council agenda and no permits indicated.","recent_news":"June 2026: Residents organized protests and public comments; the City of Marietta clarified the data center was not on the council agenda.","notable_tenants":"","verified_name":"GrindCap Marietta Campus","verified_operator":"Grind Capital Group","verified_owner":"James Freeman, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":31,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1948":{"description":"Equinix CH3 is a carrier-neutral colocation data center at 1905 Lunt Avenue in Elk Grove Village, IL, serving the Chicago metro. It interconnects with Equinix’s downtown Cermak campus (CH1/CH2/CH4) via Metro Connect.","verified_status":"operational","power_capacity_mw":20.65,"total_sqft":379662,"year_online":"2007","construction_update":"","recent_news":"June 2026: Illinois’ governor moved to suspend state tax incentives for data centers effective July 1, 2026.","notable_tenants":"","verified_name":"Equinix CH3","verified_operator":"Equinix","verified_owner":"Equinix, Inc.","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (outside 100-year floodplain) in most of Elk Grove Village"},"1949":{"description":"Scott Data Center is a Tier III data center at 6825 Pine Street, Suite 141 in Omaha, offering approximately 110,000 sq ft of colocation capacity with about 20 MW on a 20‑acre campus, and providing modern services including GPU‑as‑a‑Service.","verified_status":"operational","power_capacity_mw":20,"total_sqft":110000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"National Strategic Research Institute (NSRI); NCITE (on-campus at Scott Technology Center)","verified_name":"Scott Data Center","verified_operator":"Scott Data Center","verified_owner":"","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"","num_buildings":0,"campus_acres":20,"utility_provider":"","tax_incentives":"Nebraska ImagiNE Nebraska Act incentives (including potential sales/use tax exemption if thresholds are met) and state data center sales/use tax exemptions remain available.","natural_hazard_zone":""},"1950":{"description":"Multi-tenant colocation data center in Papillion (Omaha metro) at 1148 American Parkway, operated by LightEdge Solutions since acquiring Cabela’s former facility in September 2017.","verified_status":"operational","power_capacity_mw":1.25,"total_sqft":21377,"year_online":"2017","construction_update":"","recent_news":"LightEdge announced the acquisition of a 3 MW, Uptime Institute Tier III certified data center in Kansas City, Missouri (May 1, 2026).","notable_tenants":"","verified_name":"LightEdge Omaha Data Center","verified_operator":"LightEdge Solutions","verified_owner":"GI Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"Nebraska tax incentives that flow directly to data center tenants.","natural_hazard_zone":"low risk — minor flood and wind risk"},"1951":{"description":"An operational Google hyperscale data center at 11110 State St in Omaha, Nebraska, forming Phase 1 of the Google Omaha campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":700000,"year_online":"2024","construction_update":"","recent_news":"June 3, 2026: Google partnered with Omaha’s Metropolitan Utilities District, providing $3 million to reduce water use at data centers.","notable_tenants":"Google (self-use)","verified_name":"Google Omaha - Building 1","verified_operator":"Google LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":457,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"ImagiNE Nebraska Act incentive program available in Nebraska; no site-specific award verified.","natural_hazard_zone":"Moderate flood and severe storm/tornado exposure; low seismic; no hurricane risk."},"1952":{"description":"A carrier-neutral colocation data center at 3301 N Buffalo Dr, Las Vegas, NV 89129, operated by TPx Communications, featuring N+1 redundant power and enterprise colocation services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":32326,"year_online":"1998","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TPx Communications Las Vegas Data Center","verified_operator":"TPx Communications","verified_owner":"Hertz Investment Group","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":2.67,"utility_provider":"NV Energy","tax_incentives":"Nevada Data Center Tax Abatements (NRS 360.754) — sales and use tax rate reduced to 2% for 10 or 20 years for qualifying data center operations; partial personal property tax abatement also available.","natural_hazard_zone":"FEMA flood: minor/low risk; seismic: moderate risk (Clark County, NV)"},"1953":{"description":"Lumen Las Vegas 1 is a Lumen-operated colocation data center at 1 Aerojet Way in North Las Vegas, offering approximately 37,500 sq ft of total space and access to 3.0 MW of power.","verified_status":"operational","power_capacity_mw":3,"total_sqft":37500,"year_online":"unknown","construction_update":"","recent_news":"Lumen reported Q1 2026 revenues of $2.899 billion.","notable_tenants":"","verified_name":"Lumen Las Vegas 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":3.25,"utility_provider":"NV Energy","tax_incentives":"","natural_hazard_zone":"Seismic Zone 2B (moderate); flood zone unknown"},"1954":{"description":"Small edge data center by Comcast converting the former TD Bank at 92 W. Main St., Clinton, NJ, to house company servers; the site is planned as an unmanned/unstaffed facility.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Pre-operational: project to convert the former TD Bank at 92 W Main St into a small, unmanned data center has been approved/reported; no evidence of commissioning yet.","recent_news":"","notable_tenants":"","verified_name":"Comcast Clinton Data Center","verified_operator":"Comcast Cable","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon; Comcast; Brightspeed (local providers; facility-specific carrier list not disclosed)","num_buildings":1,"campus_acres":1.09,"utility_provider":"JCP&L (Jersey Central Power & Light)","tax_incentives":"","natural_hazard_zone":""},"1955":{"description":"Operational AT&T central office/telecom data-center facility at 5009 E 38th St in Indianapolis, identified on industry directories and property records as a Telecom/Data Center.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10431,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"AT&T CO 5009 E 38th","verified_operator":"AT&T","verified_owner":"Indiana Bell Telephone Co Inc","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.44,"utility_provider":"AES Indiana","tax_incentives":"","natural_hazard_zone":"unknown"},"1956":{"description":"Metrobloks Indianapolis IND A1 is a planned wholesale data center campus at 2505 N Sherman Dr in Indianapolis with a reported $500 million investment, targeting 72 MW IT capacity and about 154,000 sq ft of whitespace.","verified_status":"planned","power_capacity_mw":72,"total_sqft":154000,"year_online":"2027","construction_update":"Rezoning approved April 1, 2026 and given final council approval May 4, 2026; no public report of construction start.","recent_news":"May 28, 2026: A church coalition demanded a halt to incentives for the Metrobloks data center.","notable_tenants":"","verified_name":"Metrobloks Indianapolis IND A1","verified_operator":"Metrobloks","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":13.15,"utility_provider":"","tax_incentives":"Indiana Data Center Sales Tax Exemption (Indiana Code § 6-2.5-15). Up to 25 years for investments under $750M; up to 50 years if investment exceeds $750M.","natural_hazard_zone":"unknown"},"1957":{"description":"Google’s $2 billion Fort Wayne Data Center is a hyperscale campus of up to 12 buildings on more than 700 acres near East Tillman and Adams Center roads; Phase 1 went live in December 2025 and further phases are under construction.","verified_status":"operational","power_capacity_mw":1200,"total_sqft":0,"year_online":"2025","construction_update":"Phase 3 expansion (relocation of Adams Ditch and new buildings) slated to start early 2027 with earth-work through 2028 and construction through 2030.","recent_news":"April 2026 – IDEM approved Google/Hatchworks’ request to install an additional 140+ emergency diesel generators, bringing the total to 179 units capable of 527 MW.","notable_tenants":"Google (self-operated hyperscale)","verified_name":"Google Fort Wayne Data Center","verified_operator":"Google","verified_owner":"Google (through subsidiary Hatchworks LLC)","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":12,"campus_acres":858,"utility_provider":"Indiana Michigan Power","tax_incentives":"10-year, 50 % real-property tax abatement from City of Fort Wayne; data-center sales-tax exemption from State of Indiana.","natural_hazard_zone":"low risk"},"1958":{"description":"A colocation data center operated by One C1 at 17795 W. 106th St, Suite 200, Olathe, KS 66061.","verified_status":"operational","power_capacity_mw":0,"total_sqft":34000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"C1 Kansas Data Center","verified_operator":"One C1 (C1)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Google, AT&T, Consolidated Communications","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (area of moderate flood hazard)"},"1959":{"description":"DigiCo Kansas City KCM1 is an operational, purpose-built enterprise/colocation data center at 24400 W Valley Pkwy in Olathe, Kansas, owned and operated by DigiCo Infrastructure REIT. The site offers about 7.5 MW of IT power across ~192,550 sq ft on roughly 20 acres and is associated with State Farm tenancy.","verified_status":"operational","power_capacity_mw":7.5,"total_sqft":192550,"year_online":"unknown","construction_update":"","recent_news":"HY26 financial report (Feb 19, 2026) lists Kansas City 1 (KCM1) in DigiCo’s U.S. portfolio.","notable_tenants":"State Farm","verified_name":"DigiCo Kansas City KCM1","verified_operator":"DigiCo Infrastructure REIT","verified_owner":"DigiCo Infrastructure REIT","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":20.09,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":""},"1960":{"description":"A small regional colocation facility in Coeur d’Alene, Idaho, originally associated with OrbitCom/OneEighty Networks and now listed under Fusion Connect at 422 W Appleway Ave.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fusion Connect - Coeur d Alene","verified_operator":"Fusion Connect","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Avista Utilities","tax_incentives":"Idaho Data Center Sales Tax Exemption (statewide; eligibility thresholds apply)","natural_hazard_zone":"FEMA Flood Zones X/B (minimal to moderate); low seismic hazard (northwestern Idaho)"},"1961":{"description":"Operational colocation data center at 6867 Bluebonnet Blvd, Baton Rouge, LA, operated by Lockstep Technology Group; listings indicate about 30,000 sq ft, 10 MW capacity, and an estimated 2007 in-service date.","verified_status":"operational","power_capacity_mw":10,"total_sqft":30000,"year_online":"2007","construction_update":"","recent_news":"March 2, 2026: Lockstep Technology Group recognized as a Palo Alto Networks NextWave Diamond Innovator.","notable_tenants":"","verified_name":"Lockstep Technology Group Data Center","verified_operator":"Lockstep Technology Group","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Time Warner Telecom; Level 3 (Lumen Technologies)","num_buildings":1,"campus_acres":0,"utility_provider":"Entergy Louisiana","tax_incentives":"","natural_hazard_zone":"Very low seismic risk; hurricane/urban flood exposure noted in Baton Rouge."},"1962":{"description":"Operational colocation facility at 21 W Superior St, Suite 200, Duluth, MN, operated by Consolidated Communications. Public listings confirm location and operator; detailed technical specs (power MVA, sqft, cooling, PUE) are not publicly disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Consolidated Communications – Duluth Data Center","verified_operator":"Consolidated Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Minnesota Power (ALLETE)","tax_incentives":"","natural_hazard_zone":"FEMA floodplains exist in Duluth; lowest seismic risk category; hurricane risk not applicable inland."},"1963":{"description":"Enterprise colocation facility at Paul Bunyan Communications’ Bemidji campus offering cages, cabinets, and server hosting with redundant UPS and backup generators, carrier‑grade DC power, and 120/208 VAC options.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2013","construction_update":"","recent_news":"Mar 26, 2026: Paul Bunyan Communications announced three GigaZone fiber expansion projects expected to serve 3,200 locations across Aitkin, Hubbard, Itasca, and St. Louis counties.","notable_tenants":"","verified_name":"PBC Bemidji Data Center","verified_operator":"Paul Bunyan Communications","verified_owner":"Paul Bunyan Rural Telephone Cooperative","cooling_type":"unknown","tier_level":"","fiber_providers":"Paul Bunyan Communications","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Paul Bunyan Rural Telephone Cooperative is a 501(c)(12) tax‑exempt cooperative (since May 1958).","natural_hazard_zone":"low risk"},"1964":{"description":"Verizon PTLCME is a Verizon-operated data center/telecom site at 380 Cumberland Avenue in downtown Portland, Maine. The underlying real estate is a multi-tenant office building (about 28,987 sq ft) owned by Sweetwater Partners LLC; facility-specific technical specs are not publicly documented.","verified_status":"operational","power_capacity_mw":0,"total_sqft":28987,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Verizon","verified_name":"Verizon PTLCME","verified_operator":"Verizon","verified_owner":"Sweetwater Partners LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon; carrier-neutral not verified","num_buildings":1,"campus_acres":0,"utility_provider":"Central Maine Power","tax_incentives":"","natural_hazard_zone":"unknown"},"1965":{"description":"A colocation and interconnection facility operated by Consolidated Communications at 45 Forest Ave in Portland, Maine, located in a historic former New England Telephone switching building that was redeveloped into the 81‑unit Erlang apartments in 2023 while telecom space remains in use.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Consolidated - 45 Forest Ave.","verified_operator":"Consolidated Communications, Inc.","verified_owner":"Redfern Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"Consolidated Communications; FirstLight; NNENIX (exchange connectivity)","num_buildings":1,"campus_acres":0,"utility_provider":"Central Maine Power (CMP)","tax_incentives":"","natural_hazard_zone":""},"1966":{"description":"Operational colocation/edge data center operated by Vaultas at 3701 18th St S in St. Cloud, MN; the site is listed by Vaultas and shown as operational by industry directories.","verified_status":"operational","power_capacity_mw":0,"total_sqft":17016,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Vaultas St. Cloud Data Center","verified_operator":"Vaultas","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Minnesota statewide sales-tax exemption for qualifying data center technology/equipment (extension enacted in 2025); no facility-specific award identified.","natural_hazard_zone":"FEMA flood zone unknown; seismic risk very low."},"1967":{"description":"An operational UnitedHealth Group enterprise data center at 14100 Business Center Dr NW in Elk River, Minnesota, built circa 2007, totaling roughly ~240,000 sq ft on just over 20 acres. It sold for $90 million in early January 2023 to a CloudHQ affiliate, with UnitedHealth continuing as the single tenant.","verified_status":"operational","power_capacity_mw":0,"total_sqft":245262,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"UnitedHealth Group","verified_name":"UnitedHealth Group Elk River Data Center","verified_operator":"UnitedHealth Group","verified_owner":"Cristobal Ventures LLC (CloudHQ / Cloud Capital affiliate)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":20.49,"utility_provider":"Elk River Municipal Utilities (ERMU); Northern States Power (grid connection)","tax_incentives":"Minnesota Data Center Sales Tax Exemptions (statewide program; eligible purchases exempt for up to 35 years)","natural_hazard_zone":"FEMA Zones B/X (moderate flood hazard); minor wind/tornado risk"},"1968":{"description":"An 11,000-square-foot, purpose-built colocation facility at 5401 S Solberg Ave in Sioux Falls operated by Midco Business, marketed as Tier III and SOC 2 certified.","verified_status":"operational","power_capacity_mw":1,"total_sqft":11000,"year_online":"unknown","construction_update":"","recent_news":"Jan 12, 2026: Midco’s president Ben Dold discussed Midco’s data centers, including the Sioux Falls facility, in a KELOLAND interview.","notable_tenants":"","verified_name":"Midco Sioux Falls Data Center","verified_operator":"Midco Business","verified_owner":"Midco","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"1969":{"description":"A colocation facility operated by ClearBearing, Inc. in Suite 2E at 208 Flynn Ave. in Burlington, Vermont, offering fully managed colocation services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ClearBearing Inc. - Burlington Data Center","verified_operator":"ClearBearing, Inc.","verified_owner":"Farrington Properties LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":9,"utility_provider":"Burlington Electric Department","tax_incentives":"","natural_hazard_zone":"unknown"},"1970":{"description":"Project Clydesdale is a multi‑phase hyperscale data center campus under development by Beale Infrastructure on roughly 506 acres in unincorporated Tulsa County near Owasso, Oklahoma; it will be built in phases, each around 200,000 sq ft with substantial private investment per phase.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Groundbreaking occurred November 3, 2025; by early December 2025, pre-blast inspection offers were issued to neighbors within 600 feet, reflecting active site/blasting preparation.","recent_news":"May 2026: Beale Infrastructure committed $3.5 million to Northeast Tech’s Claremore campus to build a data center workforce pipeline.","notable_tenants":"","verified_name":"Project Clydesdale","verified_operator":"Beale Infrastructure","verified_owner":"Beale Infrastructure (developer); Bird Creek Ranch Limited Partnership (landowner)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":506,"utility_provider":"","tax_incentives":"Oklahoma sales tax exemption on qualifying data center equipment purchases (NAICS 519130, 519290).","natural_hazard_zone":"FEMA flood zone X; high tornado risk"},"1971":{"description":"Project Spring is a planned hyperscale data center campus on 827 acres at 5615 OK-97 in Sand Springs, Oklahoma, being developed by White Rose Partners for Google. The project envisions up to three large data center buildings using dry cooling, with construction anticipated to start in 2027 and target completion in 2029.","verified_status":"planned","power_capacity_mw":500,"total_sqft":932000,"year_online":"2029","construction_update":"Rezoning approved by Sand Springs City Council on Feb 3, 2026; tax incentive public hearings scheduled for May 7 and May 15, 2026.","recent_news":"Recall push against three Sand Springs city councilors over the data center approval failed in May 2026.","notable_tenants":"Google","verified_name":"Project Spring","verified_operator":"White Rose Partners","verified_owner":"Google","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":827,"utility_provider":"PSO (Public Service Company of Oklahoma)","tax_incentives":"Planned three tax-incentive districts with 25-year, 100% ad valorem tax exemption and PILOT payments; Oklahoma state sales tax exemption for qualifying data center equipment; public hearings scheduled in May 2026.","natural_hazard_zone":"FEMA Flood Zone AE exposure in parts of Sand Springs; minor tornado/severe wind risk."},"1972":{"description":"Lumen Wilmington 1 Data Center is an operational Lumen Technologies colocation/telecom facility at 1603 Jessup Street in Wilmington, Delaware, totaling about 15,000 sq ft with 1,228 sq ft of raised-floor colocation and N+1 HVAC.","verified_status":"operational","power_capacity_mw":0,"total_sqft":15000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Wilmington 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"Level 3 Communications LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Delmarva Power","tax_incentives":"","natural_hazard_zone":"unknown"},"1973":{"description":"A bitcoin mining facility near DeWitt, Arkansas operated by Jones Eagle LLC (formerly Jones Digital LLC), which has drawn significant community opposition and been involved in county and state litigation over noise limits and state restrictions.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2024","construction_update":"","recent_news":"On January 30, 2026, the court granted Jones Eagle’s motion to compel production of subpoena responses in Jones Eagle LLC v. Ward.","notable_tenants":"","verified_name":"Jones Eagle LLC crypto mine near DeWitt","verified_operator":"Jones Eagle LLC","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Entergy Arkansas","tax_incentives":"","natural_hazard_zone":"FEMA flood Zone A present in the DeWitt area"},"1974":{"description":"Operational Seimitsu colocation/data center at 1523 Bull Street (Savannah) offering interconnection with multiple backbone carriers, lit WAVE and IP Transit services, and onsite support.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Mar 17, 2026: Duos Edge AI and Seimitsu partner to deploy modular edge/AI infrastructure across Georgia, leveraging Seimitsu’s Southeast fiber backbone (25 Tbps).","notable_tenants":"","verified_name":"Seimitsu Savannah Datacenter and Colocation Facility","verified_operator":"The Seimitsu Corporation (Seimitsu)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Multiple backbone carriers via meet-me room; Seimitsu fiber network (ASN 62844); lit WAVE and IP Transit.","num_buildings":0,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"No facility-specific active incentive identified.","natural_hazard_zone":"unknown"},"1975":{"description":"Core Scientific’s Dalton 1 & 2 is an operational high‑density data center campus in Dalton, Georgia, delivering around 50 MW on a 5‑acre site with access to high‑speed fiber networks and cost‑effective, municipal power. The facility is operated and owned by Core Scientific at 2205 Industrial South Road.","verified_status":"operational","power_capacity_mw":50,"total_sqft":52000,"year_online":"2018","construction_update":"","recent_news":"May 30, 2026: Georgia EPD opened a public comment period on an air permit for standby generators at the Dalton 01 facility at 2205 Industrial South Road.","notable_tenants":"","verified_name":"Core Scientific Dalton (Dalton 1 & 2)","verified_operator":"Core Scientific","verified_owner":"Core Scientific, Inc. (NASDAQ: CORZ)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":5,"utility_provider":"Dalton Utilities","tax_incentives":"Georgia High‑Technology Data Center Equipment sales and use tax exemption; local bonds‑for‑title incentives via the Dalton‑Whitfield JDA.","natural_hazard_zone":"FEMA Zone X (moderate flood risk); high seismic risk (earthquake risk score 54/100)."},"1976":{"description":"Bitcoin mining data center at 430 Davis Rd, Vidalia, GA, acquired by CleanSpark in June 2024 as part of a five-site Georgia portfolio totaling $25.8M and 60 MW combined.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2024","construction_update":"","recent_news":"Feb 2026: Regional coverage referenced CleanSpark activity in Vidalia amid local policy discussions; CleanSpark’s Feb 2026 operational update outlined plans for a large-scale, transmission-level data center project.","notable_tenants":"CleanSpark (self-operated bitcoin mining)","verified_name":"CleanSpark Vidalia","verified_operator":"CleanSpark","verified_owner":"","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":22.05,"utility_provider":"Altamaha EMC; Georgia Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone A"},"1977":{"description":"CleanSpark Dalton 2 is a Bitcoin mining data center at 1850 Abutment Rd, Dalton, GA, operated by CleanSpark as part of its multi-site Dalton campus. The campus works with the municipal utility owned and operated by the City of Dalton.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2023","construction_update":"","recent_news":"June 2026: A Whitfield County Superior Court judge validated about $15.2B in taxable revenue bonds tied to four data center projects. May 2026: CleanSpark reported Q2 FY2026 results noting doubled MW under contract year-over-year and increasing BTC holdings.","notable_tenants":"","verified_name":"CleanSpark Dalton 2","verified_operator":"CleanSpark","verified_owner":"CleanSpark (land leased; facility improvements owned by CleanSpark)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1,"utility_provider":"Dalton Utilities (City of Dalton)","tax_incentives":"Georgia statewide sales/use tax exemptions for qualifying data center equipment; Dalton-Whitfield incentives include property tax abatements and bond-for-title/PILOT structures via the Joint Development Authority; 2026 validation of taxable revenue bonds for data center projects in Whitfield County.","natural_hazard_zone":"FEMA Zone X (minimal flood risk)"},"1978":{"description":"A 12’x30’ (~360 sqft) modular, multi-tenant, carrier-neutral edge data center at 695 Brannen St in Statesboro, online since 2020 and now operated by Ubiquity following its 2023 acquisition of EdgePresence.","verified_status":"operational","power_capacity_mw":0.1,"total_sqft":360,"year_online":"2020","construction_update":"","recent_news":"Statesboro City Council approved a data center ordinance in a 3–1 vote on June 2, 2026, following public concerns; Bulloch County extended a moratorium on new data center proposals through the end of 2026.","notable_tenants":"","verified_name":"Ubiquity Edge Data Center Statesboro","verified_operator":"Ubiquity","verified_owner":"Ubiquity","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (minimal flood risk)"},"1979":{"description":"FOGO Solutions’ flagship data center at 340 Tom Reeve Drive in Carrollton, GA provides secure colocation and cloud services, with approximately 9,500 sq ft of space including 5,500 sq ft of raised floor.","verified_status":"operational","power_capacity_mw":1,"total_sqft":9500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"FOGO Solutions Carrollton Data Center","verified_operator":"FOGO Solutions (Fogo Data Centers)","verified_owner":"DC Realty, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"1980":{"description":"Operational submarine cable landing station at 92-384 Farrington Highway in Kapolei (O‘ahu) serving the Hawaiki trans‑Pacific cable system; Hawaiki/BW Digital own the system and DRFortress is the local landing partner/operator.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2018","construction_update":"Operational CLS; expansion permit (Resolution 26-029, CD1) advanced to allow HDD and three new transpacific subsea fiber conduits.","recent_news":"Honolulu City Council granted an SMA Major Permit (Resolution 26-029, CD1) for the Hawaiki Cable Landing Station Expansion Project in early 2026.","notable_tenants":"Vodafone (anchor tenant on the Hawaiki system).","verified_name":"Kapolei Cable Landing Station (Hawaiki)","verified_operator":"DRFortress (operates and manages the O‘ahu Hawaiki cable landing station)","verified_owner":"Hawaiki Submarine Cable USA LLC (BW Digital)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1981":{"description":"Operational AT&T cable landing station at Makaha Beach Park on Oʻahu’s Waiʻanae coast used to land/serve multiple submarine cable systems.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"1964","construction_update":"","recent_news":"","notable_tenants":"Verizon Business Global LLC (landing/control party for JUS Segment 1); University of Hawaiʻi ALOHA Cabled Observatory (via retired HAW‑4 connectivity).","verified_name":"Makaha Cable Landing Station (AT&T)","verified_operator":"AT&T Enterprises, LLC","verified_owner":"AT&T Enterprises, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":0,"campus_acres":0,"utility_provider":"Hawaiian Electric Company (HECO)","tax_incentives":"","natural_hazard_zone":"Coastal hazard exposure: USGS ranks erosion/hazard high at Makaha; Makaha appears in Hawaii State tsunami evacuation maps. Parcel-level FEMA flood zone not verified."},"1982":{"description":"Unmanned submarine cable landing station (CLS) operated by Hawaiian Telcom that terminates the SEA‑US trans‑Pacific fiber system at Makaha, Oahu.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Hawaiian Telcom Makaha Cable Landing Station (SEA-US)","verified_operator":"Hawaiian Telcom Services Company, Inc.","verified_owner":"Hawaiian Telcom","cooling_type":"unknown","tier_level":"","fiber_providers":"SEA-US submarine cable system","num_buildings":0,"campus_acres":0,"utility_provider":"Hawaiian Electric Company (HECO)","tax_incentives":"","natural_hazard_zone":"Coastal tsunami and hurricane exposure (site-specific FEMA flood/seismic zone not cited here)."},"1983":{"description":"Keawaula Cable Landing Station is an AT&T-operated submarine cable landing facility in Keawaula (Ka‘ena State Park), Oahu, Hawaii, serving major trans-Pacific systems including TPC-5, Telstra Endeavour, AAG, and ASH. The station has been in service since 1985.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"1985","construction_update":"","recent_news":"","notable_tenants":"American Samoa Hawaii Cable LLC (ASHC) – long-term collocation/conduit lease","verified_name":"Keawaula Cable Landing Station","verified_operator":"AT&T","verified_owner":"AT&T","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T, Telstra","num_buildings":0,"campus_acres":0,"utility_provider":"Hawaiian Electric Company (HECO)","tax_incentives":"","natural_hazard_zone":"Extreme tsunami evacuation zone; coastal hazard rating moderate–high at Ka‘ena/Keawaula."},"1984":{"description":"Spencer Beach Cable Landing Station is an operational submarine cable landing site along Queen Kaahumanu Highway in Kawaihae on Hawai‘i Island, serving systems including Southern Cross and inter-island routes.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2000","construction_update":"","recent_news":"Mar 2026: Hawaiian Telecom planning a domestic subsea cable to improve in-state connectivity.","notable_tenants":"Southern Cross Cables (via SCCN); Office des Postes et Télécommunications de Polynésie française (OPT) – Honotua.","verified_name":"Spencer Beach Cable Landing Station","verified_operator":"Hawaiian Telcom, Inc.","verified_owner":"Hawaiian Telcom, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Southern Cross; Honotua (OPT); Hawaii Inter-Island Cable System (HICS); Hawaiian Telcom backhaul.","num_buildings":0,"campus_acres":0,"utility_provider":"Hawaiian Electric Light (Hawaiian Electric)","tax_incentives":"","natural_hazard_zone":"Coastal Hawai‘i tsunami/coastal flooding exposure (USGS coastal hazards); area also subject to tropical storms and seismic/volcanic regional risks."},"1985":{"description":"Carrier-neutral colocation data center operated by Colorado Colo at 11100 W 8th Ave in Lakewood, CO, marketed with Tier III reliability and currently running about 2 MW of power.","verified_status":"operational","power_capacity_mw":2,"total_sqft":73360,"year_online":"unknown","construction_update":"","recent_news":"Colorado lawmakers rejected data center tax incentive bills in May 2026, leaving no new state-level incentives in place.","notable_tenants":"","verified_name":"Colorado Colo – Lakewood Data Center","verified_operator":"Colorado Colo","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":6.6,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Low risk — minor flood risk in Lakewood"},"1986":{"description":"US Signal’s CO01 Denver Data Center is an operational colocation facility at 8675 Concord Center Drive in Englewood, CO. It opened in 2015 (originally by OneNeck) with a $20 million, 35,000-sf first phase.","verified_status":"operational","power_capacity_mw":1.6,"total_sqft":35000,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CO01 Denver Data Center","verified_operator":"US Signal Company, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"1987":{"description":"Purpose-built colocation and network facility at 3431 N Windsor Drive, Aurora, CO, operated by 365 Data Centers, with approximately 150,000 sq ft and 8 MW of power.","verified_status":"operational","power_capacity_mw":8,"total_sqft":150000,"year_online":"2001","construction_update":"","recent_news":"May 2026: 365 Data Centers announced LOIs for a ~200 MW AI-ready pipeline naming Aurora, CO (site unspecified), and Colorado lawmakers rejected data center incentive bills, leaving no new state-level incentives.","notable_tenants":"","verified_name":"365 Data Centers CO1 Aurora Data Center","verified_operator":"365 Data Centers","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"No coastal/hurricane exposure; county lists severe thunderstorms, tornadoes, winter storms, and floods among top hazards; address-specific FEMA flood zone not verified."},"1988":{"description":"Expedient’s Denver (Centennial) colocation facility at 7347 S. Revere Parkway, Building C, delivers a 32,000 sq ft data center with 1.6 MW critical IT load, 2N UPS, and 4.5 MW of generator capacity. The site is carrier-served with five on‑net providers and has 18,500 sq ft of raised floor.","verified_status":"operational","power_capacity_mw":1.6,"total_sqft":32000,"year_online":"2021","construction_update":"","recent_news":"Expedient expanded its AI CTRL platform with the Agentic Workflow Engine (Mar 2026) and launched the VMware Bridge Program for license continuity (Apr 2026).","notable_tenants":"","verified_name":"Expedient Denver Data Center","verified_operator":"Expedient","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"5 on-net carriers","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (low-to-moderate flood risk); low-to-moderate seismic risk; no hurricane risk"},"1989":{"description":"Operational colocation campus at 9110–9180 Commerce Center Circle in Highlands Ranch/Littleton, Colorado, branded Csquare DEN1, offering 18.3 MW utility power and a campus footprint of 98,218 sq ft.","verified_status":"operational","power_capacity_mw":18.3,"total_sqft":98218,"year_online":"2000","construction_update":"","recent_news":"Csquare filed a registration statement on Form S-1 for a proposed initial public offering on June 16, 2026.","notable_tenants":"","verified_name":"Csquare DEN1 – Highlands Ranch Campus","verified_operator":"Csquare","verified_owner":"Cyxtera Communications, LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; Cogent","num_buildings":2,"campus_acres":7.51,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X; low-to-moderate seismic risk"},"1990":{"description":"Csquare DEN1-B is an operational colocation data center at 9110 Commerce Center Circle in Highlands Ranch, Colorado, and is one of two buildings on the Csquare DEN1 campus.","verified_status":"operational","power_capacity_mw":1.2,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare DEN1-B","verified_operator":"Csquare (Csquare Data Centers)","verified_owner":"Brookfield Infrastructure (Brookfield Global Data Centers)","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent","num_buildings":2,"campus_acres":0,"utility_provider":"","tax_incentives":"None","natural_hazard_zone":"low risk"},"1991":{"description":"Carrier-neutral colocation data center at 8534 Concord Center Drive, Englewood, CO 80112, operated by Csquare (Centersquare). The site is a single-story facility serving the Denver market and is operational.","verified_status":"operational","power_capacity_mw":3.7,"total_sqft":85660,"year_online":"2000","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare DEN2","verified_operator":"Csquare (Centersquare Data Centers)","verified_owner":"Mapletree Investments / Mapletree Industrial Trust (MIT)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"1992":{"description":"EdgeConneX Denver (EDCDEN01) is an operational edge colocation facility at 8535 Highfield Pkwy, Bldg. 3, Suite 500/600, Englewood, CO 80112, offering about 3 MW of power across roughly 29,800 sq ft.","verified_status":"operational","power_capacity_mw":3,"total_sqft":29800,"year_online":"2014","construction_update":"","recent_news":"Mar 2026: 8535 Highfield, LLC, associated with the 8535 Highfield Parkway property, filed Chapter 11 (single-asset real estate case).","notable_tenants":"","verified_name":"EdgeConneX Denver (EDCDEN01)","verified_operator":"EdgeConneX Inc.","verified_owner":"8535 Highfield, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"CORE Electric Cooperative (formerly IREA) — indicative for Highfield Business Park; not directly verified for 8535 Highfield Pkwy","tax_incentives":"","natural_hazard_zone":""},"1993":{"description":"Operational Cogent colocation suite at 4643 S Ulster St., Suite 930, Denver, CO 80237, offering 9,501 sq ft with UPS backup and colocation services.","verified_status":"operational","power_capacity_mw":0.8,"total_sqft":9501,"year_online":"unknown","construction_update":"","recent_news":"May 2026: Cogent announced a definitive agreement to sell 10 data center facilities to an entity sponsored by I Squared Capital; trade press reported the portfolio at ~53 MW and ~259,000 sq ft. The listed locations did not include Denver.","notable_tenants":"","verified_name":"Cogent Denver Office & Data Center","verified_operator":"Cogent Communications","verified_owner":"Granite Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy / Public Service Company of Colorado (PSCo)","tax_incentives":"","natural_hazard_zone":""},"1994":{"description":"Edge colocation site operated by Cogent Communications at 2535 Sinton Road, Colorado Springs, CO 80907; property records indicate a 1,296 sq ft building. Facility-specific power, PUE, tier, cooling, and investment figures are not publicly disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1296,"year_online":"unknown","construction_update":"","recent_news":"Cogent sold 10 U.S. data centers to an I Squared Capital–sponsored entity for $225M; the facilities listed (Phoenix, Anaheim, Burbank, Stockton, Atlanta, Chicago, Elkridge, Kansas City, Nashville, Houston) did not include Colorado Springs.","notable_tenants":"","verified_name":"Cogent Edge Data Center - Colorado Springs","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications (Tier 1 backbone); carrier-neutral status not verified","num_buildings":1,"campus_acres":0,"utility_provider":"Colorado Springs Utilities","tax_incentives":"","natural_hazard_zone":"unknown"},"1995":{"description":"Lumen Aurora 1 is a colocation data center operated by Lumen Technologies at 23901 E 6th Ave, Aurora, CO 80018, on a 12+ acre, four‑building campus totaling about 300,000 sq ft with power density around 15 kW per rack.","verified_status":"operational","power_capacity_mw":0,"total_sqft":300000,"year_online":"unknown","construction_update":"","recent_news":"Feb 2, 2026: Lumen completed the sale of its consumer fiber-to-the-home business to AT&T; enterprise/data center operations remain with Lumen.","notable_tenants":"","verified_name":"Lumen Aurora 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":12,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"1996":{"description":"Lumen’s colo/telecom data center at 14200 E Jewell Ave in Aurora, CO is operational and commonly marketed as Lumen Denver 5, while DataCenterMap lists it as Lumen Denver 2. The site traces back to tw telecom at this address and was constructed circa 2001.","verified_status":"operational","power_capacity_mw":0,"total_sqft":32900,"year_online":"2001","construction_update":"","recent_news":"No facility-specific updates identified in the last 6 months; statewide, Colorado lawmakers rejected both data center bills in May 2026.","notable_tenants":"","verified_name":"Lumen Denver 5 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":2.57,"utility_provider":"Xcel Energy / Public Service Company of Colorado","tax_incentives":"No active facility-specific tax incentives verified; statewide data center bills failed in May 2026; Aurora may offer case-by-case local rebates.","natural_hazard_zone":"FEMA Flood Zone X (minimal flood hazard)"},"1997":{"description":"American Tower Edge Data Center – Boulder is a carrier-neutral edge colocation site at 9110 Interlocken Loop, Broomfield, CO, comprising a 360 sq ft module with 100 kW capacity, launched in September 2020.","verified_status":"operational","power_capacity_mw":0.1,"total_sqft":360,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"American Tower Edge Data Center – Boulder","verified_operator":"American Tower Corporation","verified_owner":"American Tower Corporation","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; dark fiber options","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy (Public Service Company of Colorado)","tax_incentives":"","natural_hazard_zone":"low risk"},"1998":{"description":"An operational Comcast data center at 7059 S Potomac St in Centennial, Colorado, delivering 2.7 MW of capacity. The site sits on 2.67 acres with three backup generators and was acquired for approximately $7.3 million.","verified_status":"operational","power_capacity_mw":2.7,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 2026: Aphorio Carter partnered with 365 Data Centers on a 200MW AI-ready expansion program across key U.S. markets.","notable_tenants":"","verified_name":"Comcast Centennial Data Center","verified_operator":"Comcast","verified_owner":"Aphorio Carter Critical Infrastructure Fund, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Comcast","num_buildings":0,"campus_acres":2.67,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":""},"1999":{"description":"Springs Hosting Data Center is an operational colocation facility at 1205 Shasta Dr, Colorado Springs, CO 80910, owned and operated by Springs Hosting, in an 8,725-sq-ft building with approximately 6,000 sq ft of raised floor.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8725,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Springs Hosting Data Center","verified_operator":"Springs Hosting","verified_owner":"Springs Hosting","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.6,"utility_provider":"Colorado Springs Utilities","tax_incentives":"","natural_hazard_zone":""},"2000":{"description":"Data Canopy’s Denver colocation facility at 900 S Broadway operates in the historic Ford Model T factory building. A third‑party listing cites 41,400 sq ft and 14 MW of power capacity.","verified_status":"operational","power_capacity_mw":14,"total_sqft":41400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Data Canopy - Denver","verified_operator":"Data Canopy","verified_owner":"Sagard Real Estate (formerly EverWest Real Estate Investors)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":""},"2001":{"description":"A small Hivelocity-operated colocation facility at 102 S Tejon St (Suite 220) in downtown Colorado Springs, offering multiple Tier 1 backbones, AI-UPS power, and N+1 cooling with SOC 2 Type 2 compliance.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Hivelocity – Colorado Springs 1","verified_operator":"Hivelocity","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; known on-net: Cogent (102 S Tejon St).","num_buildings":1,"campus_acres":0,"utility_provider":"Colorado Springs Utilities","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (low risk); low-to-moderate seismic"},"2002":{"description":"Colocation data center operated by Pearl Technology at 606 NE Jefferson Street, Peoria, IL 61603, and part of Pearl’s two-site interconnected platform.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Pearl Technology received CRN 2026 honors (MSP 500 and Tech Elite 250) in March 2026.","notable_tenants":"","verified_name":"Pearl Technology Peoria Data Center","verified_operator":"Pearl Technology","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Ameren Illinois","tax_incentives":"","natural_hazard_zone":"unknown"},"2003":{"description":"Mattoon Data Center IL at 1501 Charleston Ave., Mattoon, is a telecom colocation facility offering 24x7x365 access, secure raised-floor cabinet options, N+1 resilience, monitoring/security, and direct connectivity on the operator’s fiber network.","verified_status":"operational","power_capacity_mw":0,"total_sqft":38463,"year_online":"unknown","construction_update":"","recent_news":"Operator-level: Fidium and Flexential expanded data-center connectivity on 2026-03-10.","notable_tenants":"","verified_name":"Mattoon Data Center IL","verified_operator":"Fidium Business (formerly Consolidated Communications)","verified_owner":"Consolidated Communications of Illinois","cooling_type":"unknown","tier_level":"","fiber_providers":"Fidium / Consolidated Communications fiber network; not publicly verified as carrier-neutral","num_buildings":0,"campus_acres":0.32,"utility_provider":"Ameren Illinois","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X / moderate flood hazard; regional tornado/severe-thunderstorm exposure; low hurricane risk"},"2004":{"description":"The National Petascale Computing Facility (NPCF) is NCSA’s operational high‑performance computing data center at 1205 W. Clark St., Urbana, Illinois, housing NCSA’s computing, networking, and data systems.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2010","construction_update":"","recent_news":"June 8, 2026: NCSA published “NCSA’s Delta Brings Accessibility to HPC,” highlighting a Delta-sponsored workshop series focused on broadening HPC education access.","notable_tenants":"Delta and DeltaAI systems; Blue Waters formerly (decommissioned).","verified_name":"National Petascale Computing Facility (NPCF)","verified_operator":"National Center for Supercomputing Applications (NCSA)","verified_owner":"Board of Trustees of the University of Illinois","cooling_type":"chilled water","tier_level":"","fiber_providers":"NCSA backbone; research network connectivity (e.g., Internet2).","num_buildings":1,"campus_acres":0,"utility_provider":"University of Illinois Abbott Power Plant (campus utility)","tax_incentives":"","natural_hazard_zone":"Tornado exposure; building designed for EF-3 wind hardening."},"2005":{"description":"QTS Cedar Rapids CDR1 DC1 is the first listed building of QTS’s under-construction data center campus at Big Cedar Industrial Center, located at 6200 76th Ave SW, Unit 100, Cedar Rapids, IA 52228. The campus spans 612 acres with plans for up to 7 buildings.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"2026","construction_update":"Under construction; local reports note plans for a temporary on-site power plant to support testing/commissioning.","recent_news":"QTS pursued a temporary on-site power plant to support testing/commissioning at the Cedar Rapids campus (late May/early June 2026).","notable_tenants":"","verified_name":"QTS Cedar Rapids CDR1 DC1","verified_operator":"QTS Data Centers","verified_owner":"QTS Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":7,"campus_acres":612,"utility_provider":"Alliant Energy","tax_incentives":"20-year, 70% property tax rebate per project phase.","natural_hazard_zone":""},"2006":{"description":"The submitted “LightBound – 6850 Guion Road” is a misattribution of CM Buck’s office address; the correct facility is DataBank IND2 (formerly LightBound) at 650 W Henry St in downtown Indianapolis, an operational colocation site with 31,080 IT sq ft and 3.75 MW critical IT load.","verified_status":"operational","power_capacity_mw":3.75,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank IND2 – Downtown Indianapolis Data Center","verified_operator":"DataBank","verified_owner":"","cooling_type":"liquid","tier_level":"","fiber_providers":"Carrier-neutral; 24 onsite carriers.","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2007":{"description":"Small Lumen-operated colocation facility inside the Riverfront Office Park at 1 Main Street, Cambridge, offering approximately 15,087 sq ft total space and 2,820 sq ft of raised-floor colocation.","verified_status":"operational","power_capacity_mw":0,"total_sqft":15087,"year_online":"unknown","construction_update":"","recent_news":"Massachusetts paused new applications for the Qualified Data Center tax exemption pending stricter guardrails (June 2026), and Cambridge City Council began exploring limits on data center expansion (April 2026).","notable_tenants":"","verified_name":"Lumen Cambridge 2","verified_operator":"Lumen Technologies","verified_owner":"RREEF America REIT II Corp. PPP (DWS)","cooling_type":"unknown","tier_level":"","fiber_providers":"Level 3 Communications (Lumen)","num_buildings":1,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"Massachusetts Qualified Data Center Sales and Use Tax Exemption (applications paused pending stronger guardrails as of June 2026).","natural_hazard_zone":"Hurricane Evacuation Zone C"},"2008":{"description":"A small Crown Castle colocation and Point of Presence (PoP) facility at 100 Park Avenue, Rockville, MD 20850, located in a 3‑story, 16,438 SF building built in 1979. The site lineage traces from Fibertech to Lightower and then to Crown Castle through its 2017 Lightower acquisition.","verified_status":"operational","power_capacity_mw":0,"total_sqft":16438,"year_online":"unknown","construction_update":"","recent_news":"On May 1, 2026, Crown Castle closed the sale of its Fiber Solutions and Small Cell businesses; Crown Castle’s directory directs fiber/small-cell customers to the new owners while Crown Castle continues to offer colocation.","notable_tenants":"","verified_name":"Crown Castle Rockville Data Center","verified_operator":"Crown Castle","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.47,"utility_provider":"Pepco (Potomac Electric Power Company)","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption Incentive Program (effective July 1, 2020).","natural_hazard_zone":""},"2009":{"description":"Operational hyperscale powered-shell data center at 9800 S Eternal Rings Drive in Laurel, Maryland. GI Partners operates/owns the site (part of the Emerson asset) and the Maryland portfolio is fully leased to a single user.","verified_status":"operational","power_capacity_mw":0,"total_sqft":110336,"year_online":"unknown","construction_update":"","recent_news":"March 2026: GI Partners acquired the Laurel (9800 S Eternal Rings Dr) and Severn powered-shell data centers; the portfolio is 100% leased to a single user.","notable_tenants":"Undisclosed single hyperscale user (100% leased portfolio).","verified_name":"9800 South Eternal Rings Drive (Emerson)","verified_operator":"GI Partners","verified_owner":"GI Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":41.82,"utility_provider":"","tax_incentives":"Maryland Qualified Data Center Sales & Use Tax Exemption (program exists; no facility-specific approval found).","natural_hazard_zone":"unknown"},"2010":{"description":"Planned hyperscale campus at the former Dickerson Generating Station property in Dickerson, Maryland, with five two‑story data center buildings totaling roughly 1.125 million square feet.","verified_status":"planned","power_capacity_mw":300,"total_sqft":1125000,"year_online":"unknown","construction_update":"Updated plans posted for public review; conditional use hearings scheduled for Sept 10–11, 2026.","recent_news":"Updated plans for the proposed Dickerson data center were posted online for public review; hearings are scheduled for September 10–11, 2026.","notable_tenants":"","verified_name":"Dickerson, MD Data Center","verified_operator":"Atmosphere Data Centers","verified_owner":"Atmosphere Dickerson Property Owner LLC; Terra Energy LLC; AGC Equity Partners (strategic investor in Atmosphere Data Centers)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":0,"utility_provider":"","tax_incentives":"Maryland Data Center Sales & Use Tax Exemption Incentive Program","natural_hazard_zone":"FEMA-designated floodplains present on/near the property; streams, ponds, and wetlands on site."},"2011":{"description":"Planned TeraWulf AI/HPC campus at the former Morgantown Generating Station site in Charles County, Maryland, with phased power availability and long-term potential up to ~1 GW of data center load; currently in planning/site plan review.","verified_status":"planned","power_capacity_mw":1000,"total_sqft":0,"year_online":"unknown","construction_update":"In site plan review; no construction start publicly verified.","recent_news":"May 8, 2026: TeraWulf outlined Phase I (~150 MW) expanding to Phase II (~300 MW) and said the project is in site plan review; company materials also reference a 1 GW data center load target.","notable_tenants":"","verified_name":"Chesapeake Data","verified_operator":"TeraWulf Inc.","verified_owner":"GenOn Holdings LLC (via Morgantown Power, LLC); proposed sale to TeraWulf pending regulatory approvals","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":250,"utility_provider":"","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption (subject to legislative changes effective July 1, 2026)","natural_hazard_zone":""},"2012":{"description":"TierPoint Kansas City - Lenexa is an operational colocation data center at 14500 West 105th Street, Lenexa, Kansas, operated by TierPoint, with roughly 58,000 sq ft and carrier-neutral connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":58000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Kansas City - Lenexa Data Center","verified_operator":"TierPoint","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent Communications, Verizon Business","num_buildings":1,"campus_acres":4.85,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2013":{"description":"Operational colocation facility in the Farm Credit Bank Building at 245 N. Waco, Wichita, operated by UV&S Technology, offering private suites with redundant power, cooling and connectivity. Third-party listings note ~10,000 sq ft of space, 1 MW capacity, N+1 CRAC, carrier-neutral/BGP connectivity, and on-site diesel generator.","verified_status":"operational","power_capacity_mw":1,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"UV&S Technology Wichita Data Center","verified_operator":"UV&S Technology","verified_owner":"Delano Investment LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; BGP; multiple carriers allowed; cross-connects available","num_buildings":1,"campus_acres":4.01,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"FEMA flood zone AE"},"2014":{"description":"Operational colocation facility in the Great Northern Building at 180 East 5th St., Saint Paul, offering carrier‑neutral connectivity; legacy VISI materials note 17,000 sq ft of raised floor with N+1 HVAC/CRAC, UPS, and diesel generators.","verified_status":"operational","power_capacity_mw":0,"total_sqft":17000,"year_online":"2000","construction_update":"","recent_news":"April 23, 2026: The Great Northern Building at 180 E. Fifth St. was sold after foreclosure; it was about 40% occupied at sale.","notable_tenants":"","verified_name":"US Signal: Saint Paul Data Center","verified_operator":"US Signal Company, LLC","verified_owner":"Downtown Revival Trust / Jamie Rand","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; redundant fiber entrances","num_buildings":1,"campus_acres":1.76,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2015":{"description":"A colocation data center by Innova Solutions located in Suite 800 at 2131 Lindau Lane within The Offices at Mall of America in Bloomington, Minnesota.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Innova Solutions Minnesota Data Center II","verified_operator":"Innova Solutions","verified_owner":"North Pad Development LLC (part of MOAC Mall Holdings / Mall of America group)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Centers sales tax exemption (up to 35 years) — site qualification not confirmed.","natural_hazard_zone":""},"2016":{"description":"A carrier-neutral colocation facility on the 8th floor of The Offices at Mall of America (2131 Lindau Lane, Bloomington, MN), offering cabinets, cages, and private suites with N+1 power and cooling redundancy and on-site backup generation.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Innova Solutions Minnesota Data Center II","verified_operator":"Innova Solutions","verified_owner":"North Pad Development LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":4.21,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Center sales tax exemption (state program; facility certification not verified)","natural_hazard_zone":"low risk"},"2017":{"description":"Carrier-neutral colocation data center in the Sharp Building (206 S 13th St, Suite 500) offering 155,000 sq ft of potential data center space with 9,300 sq ft currently in use.","verified_status":"operational","power_capacity_mw":0,"total_sqft":155000,"year_online":"unknown","construction_update":"","recent_news":"Hurricane Electric established a new carrier-neutral PoP at the facility on May 28, 2026.","notable_tenants":"Hurricane Electric (PoP)","verified_name":"Lincoln Data Centers – Sharp Building","verified_operator":"Lincoln Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral (ALLO Communications, MIDnet, Nebraskalink, SixPackets; Hurricane Electric PoP)","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk"},"2018":{"description":"Binary Net’s The Vault is an operational, carrier‑neutral colocation facility in downtown Lincoln’s historic Federal Trust Building, offering managed colocation with redundant connectivity and on‑site generator backup.","verified_status":"operational","power_capacity_mw":0,"total_sqft":64714,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Binary.net The Vault","verified_operator":"Binary Net, LLC","verified_owner":"Old Fed, LLC (Stonebrook Companies)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; examples include Cogent and Time Warner Cable.","num_buildings":1,"campus_acres":0,"utility_provider":"Lincoln Electric System (LES)","tax_incentives":"","natural_hazard_zone":"low risk"},"2019":{"description":"Telecom-anchored colocation facility operated by Windstream at 1440 M St in downtown Lincoln, providing suites, cages, cabinets, remote hands, and bare metal servers with network connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Lincoln Data Center","verified_operator":"Windstream","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream; Uniti Wholesale","num_buildings":0,"campus_acres":0,"utility_provider":"Lincoln Electric System (LES)","tax_incentives":"Nebraska sales and use tax exemption for data center equipment (Nebraska Department of Revenue guidance).","natural_hazard_zone":""},"2020":{"description":"An operational Hamilton Telecommunications colocation/managed-hosting data center at 1006 12th Street, Aurora, NE, offering 24/7 operations and reliable backup power.","verified_status":"operational","power_capacity_mw":0,"total_sqft":11400,"year_online":"unknown","construction_update":"","recent_news":"June 2026: Hamilton Telecommunications celebrated its 125th anniversary.","notable_tenants":"","verified_name":"Hamilton Data Center","verified_operator":"Hamilton Telecommunications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Three diverse fiber routes to major PoPs; major-carrier connectivity via DS4, T1, OCx (specific carriers not listed).","num_buildings":1,"campus_acres":0.58,"utility_provider":"Nebraska Public Power District (NPPD)","tax_incentives":"","natural_hazard_zone":"unknown"},"2021":{"description":"NJFX Cable Landing Station colocation campus is an operational, carrier-neutral CLS/data center at 1410 Wall Church Road in Wall Township, NJ, offering direct access to four subsea cable systems and 35+ network operators in a 64,800 sq ft purpose-built facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":64800,"year_online":"2016","construction_update":"Dec 2, 2025: NJFX completed the Basis of Design for a planned 10MW high-density AI data hall and executed a JCP&L load letter, targeting end-of-2026 power delivery.","recent_news":"April 13, 2026: Pilot Fiber expanded enterprise connectivity at the NJFX campus, adding IP Transit, Cloud Connect, Wavelength, and Ethernet Transport.","notable_tenants":"Carrier ecosystem with 35+ operators; named participants include Lightpath and Pilot Fiber, alongside direct subsea access to four cable systems.","verified_name":"NJFX Cable Landing Station Campus (New Jersey Fiber Exchange)","verified_operator":"NJFX (New Jersey Fiber Exchange)","verified_owner":"NJFX / NJFX Campus LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; direct access to four subsea cable systems and 35+ operators; examples include Lightpath and Pilot Fiber.","num_buildings":0,"campus_acres":0,"utility_provider":"Jersey Central Power & Light (JCP&L)","tax_incentives":"","natural_hazard_zone":"unknown"},"2022":{"description":"A Tata Communications–operated cable landing station and data center at 1400 Wall Church Road in Wall Township, NJ that houses the TGN‑Atlantic and Seabras‑1 subsea cable systems and supports colocation and interconnection.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2001","construction_update":"","recent_news":"Facility listed in an updated New Jersey data center map (June 10, 2026).","notable_tenants":"","verified_name":"Tata Communications Wall Township Data Center","verified_operator":"Tata Communications","verified_owner":"Tata Communications (America) Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Interconnects to subsea systems TGN‑Atlantic and Seabras‑1; adjacent to the NJFX interconnection hub.","num_buildings":0,"campus_acres":0,"utility_provider":"Jersey Central Power & Light (JCP&L)","tax_incentives":"","natural_hazard_zone":"FEMA flood risk area with coastal hurricane exposure; low seismic hazard."},"2023":{"description":"Underground colocation data center in Columbia, Missouri, operated by ISG Technology; listed as ISG Columbia and as ISG Technology – Columbia Data Center at 1101 Hutchens in an underground limestone cave.","verified_status":"operational","power_capacity_mw":0,"total_sqft":9400,"year_online":"unknown","construction_update":"","recent_news":"ISG Technology, part of the Twin Valley Family of Companies, announced the acquisition of Taylored Systems on June 3, 2026.","notable_tenants":"","verified_name":"ISG Technology – Columbia Data Center (ISG Columbia)","verified_operator":"ISG Technology, LLC (part of the Twin Valley Family of Companies)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0.75,"utility_provider":"Columbia Water & Light / City of Columbia Utilities","tax_incentives":"","natural_hazard_zone":""},"2024":{"description":"Lumen-operated colocation facility at 175 Harrier Drive in Santa Teresa, NM offering DC power and generator/battery backup.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Santa Teresa 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"El Paso Electric","tax_incentives":"","natural_hazard_zone":"low risk"},"2025":{"description":"Planned three‑phase edge data hub by Atterix LLC at the former Kmart, 1235 S 2nd St, Raton, NM, currently in a feasibility phase under a February 2026 non‑binding MOU, and facing notable local opposition.","verified_status":"planned","power_capacity_mw":5,"total_sqft":40327,"year_online":"unknown","construction_update":"No construction. Non-binding MOU approved Feb 10, 2026 with a six‑month feasibility/exclusivity period; three phases contemplated.","recent_news":"June 10, 2026: Raton postponed a vote on a temporary data center moratorium tied to the Atterix proposal. June 21, 2026: A statewide report detailed growing community opposition to the project.","notable_tenants":"","verified_name":"Atterix Raton Advanced Digital Hub","verified_operator":"Atterix LLC","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Zayo; Lumen/CenturyLink; Resound Networks; Bacavalley (fed by Plateau Telephone); Sierra Communications","num_buildings":1,"campus_acres":4.15,"utility_provider":"Raton Public Service (wholesale supply from Guzman Energy)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE (base floodplain); low seismic risk"},"2026":{"description":"Carrier colocation suite on the 9th floor (Suite 915) at 1 Exchange St. in downtown Rochester, NY, offering secure space and connectivity within a multi-tenant building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Zayo completed the acquisition of Crown Castle’s Fiber Solutions business on May 1, 2026, becoming the successor operator to former Fibertech/Lightower/Crown Castle fiber and related assets.","notable_tenants":"","verified_name":"Fibertech Networks – Rochester Data Center","verified_operator":"Zayo Group","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Rochester Gas & Electric (RG&E), a subsidiary of AVANGRID","tax_incentives":"","natural_hazard_zone":"Monroe County moderate overall natural disaster risk (30%); low earthquake risk (27%)."},"2027":{"description":"LightEdge Raleigh Data Center is a colocation facility operated by LightEdge at 8020 Arco Corporate Drive in Raleigh, NC, offering 4,836 sq ft of whitespace with 2N UPS and generator redundancy. The site originated from the former Stock Building Supply corporate data center and was converted/opened by OnRamp in 2013.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":11978,"year_online":"2013","construction_update":"","recent_news":"LightEdge acquired a 3MW Uptime Institute Tier III certified data center in Kansas City, Missouri (announced May 1, 2026).","notable_tenants":"","verified_name":"LightEdge Raleigh Data Center","verified_operator":"LightEdge","verified_owner":"American Asset Corporation (AAC)","cooling_type":"chilled water","tier_level":"Tier III compliant (not Uptime Institute certified)","fiber_providers":"Frontier, Google Fiber, Lumen, Spectrum","num_buildings":1,"campus_acres":8.84,"utility_provider":"Duke Energy Progress","tax_incentives":"North Carolina data center sales and use tax exemptions (for qualifying data centers).","natural_hazard_zone":"Outside 100-year and 500-year FEMA floodplains; 125 mph wind-rated construction."},"2028":{"description":"A Verizon New England central office at 234 Washington Street, Providence, RI that houses legacy switching (DMS-100 being retired) and the Packet End Office (PEO) serving the area.","verified_status":"operational","power_capacity_mw":0,"total_sqft":168000,"year_online":"1917","construction_update":"","recent_news":"June 12, 2026: Verizon announced retirement of the Providence Washington Street RI DMS100 switch at 234 Washington St on or after Aug. 1, 2026.","notable_tenants":"","verified_name":"Verizon Providence Central Office (Washington St)","verified_operator":"Verizon (Verizon New England Inc.)","verified_owner":"Verizon New England Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.52,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":"Downtown Providence protected by the Fox Point Hurricane Barrier; low seismic risk."},"2029":{"description":"Telecom switching facility identified by CLLI EPRVRIELCM2 located at 50 Catamore Blvd in East Providence, RI, within a single‑story industrial/flex building in Westminster Business Park.","verified_status":"operational","power_capacity_mw":0,"total_sqft":39604,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"50 Catamore Blvd Telecom Switch Site (CLLI: EPRVRIELCM2)","verified_operator":"Verizon New England Inc. (uncertain)","verified_owner":"Foxfield LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":11.6,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":"Hurricane, severe storm, and flood risk area (per city hazard mitigation plan)"},"2030":{"description":"A state-funded, centralized technology services data center housed on the Dakota State University campus in Madison, SD, serving South Dakota K-12 school districts with core platforms and hosting.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"In March 2026, South Dakota enacted a law placing new limits on large data centers after incentives failed.","notable_tenants":"South Dakota K-12 school districts","verified_name":"South Dakota K-12 Data Center","verified_operator":"South Dakota K-12 Data Center","verified_owner":"Dakota State University","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"City of Madison Utilities Department","tax_incentives":"","natural_hazard_zone":"low risk"},"2031":{"description":"Underground colocation facility at 1137 Branchton Rd, Boyers, PA, set ~220 ft below ground in a former limestone mine, offering 330,000 sq ft of space and 15.5 MW of capacity.","verified_status":"operational","power_capacity_mw":15.5,"total_sqft":330000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"US Defense Counterintelligence and Security Agency (DCSA); unnamed hyperscale software firm (2.4 MW, 10-year lease).","verified_name":"Western Pennsylvania data center (WPA-1)","verified_operator":"Iron Mountain Data Centers","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"Lightower; Cross River Fiber; Zayo.","num_buildings":0,"campus_acres":200,"utility_provider":"","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (Act 25 of 2021) – sales/use tax exemption for certified data centers.","natural_hazard_zone":"low risk"},"2032":{"description":"Carrier-neutral telecom/colocation facility at 1309 Noble St in Philadelphia, housed within a 224,000 SF building; expanded by Lightower in 2017 and now operated by Zayo following its May 1, 2026 acquisition of Crown Castle’s Fiber Solutions business.","verified_status":"operational","power_capacity_mw":4,"total_sqft":224000,"year_online":"unknown","construction_update":"","recent_news":"Zayo completed the acquisition of Crown Castle’s Fiber Solutions business on May 1, 2026, making Zayo the current operator for this facility.","notable_tenants":"","verified_name":"Crown Castle Philadelphia (PA2)","verified_operator":"Zayo Group Holdings","verified_owner":"3607 Broadway Realty Associates LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon; AT&T; CenturyLink; Comcast; MCI; Sunesys; Lightower; Zayo; Level 3","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Pennsylvania sales/use tax exemption for data center equipment — repeal passed the PA House 197–5 on June 25, 2026; pending further action.","natural_hazard_zone":"Low flood risk (Spring Garden neighborhood shows minor flood risk); inland urban area, generally FEMA Zone X."},"2033":{"description":"Loop Internet DC2 is an operational colocation data center at 46 E Liberty St, Hanover, PA 18706, operated by Loop Internet (a Greenlight Networks company).","verified_status":"operational","power_capacity_mw":0,"total_sqft":30000,"year_online":"unknown","construction_update":"","recent_news":"Pennsylvania lawmakers advanced a repeal of state sales tax incentives for data centers in June 2026, a policy shift that could impact operators statewide.","notable_tenants":"","verified_name":"Loop Internet DC2","verified_operator":"Loop Internet, a Greenlight Networks company","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Loop Internet / Greenlight Networks fiber; specific third-party carriers not disclosed.","num_buildings":1,"campus_acres":0.99,"utility_provider":"PPL Electric Utilities","tax_incentives":"","natural_hazard_zone":""},"2034":{"description":"Proposed Standard Power cryptocurrency/HPC data center adjacent to the Beaver Valley nuclear plant in Shippingport, Pennsylvania, announced in May 2022; no evidence it is operational.","verified_status":"planned","power_capacity_mw":300,"total_sqft":0,"year_online":"unknown","construction_update":"May 2022 MOU between Energy Harbor and Standard Power; no verified start of construction or energization milestones found.","recent_news":"No project-specific updates found in the last six months; statewide GRID standards for data centers were released on May 27, 2026.","notable_tenants":"","verified_name":"Standard Power: Beaver Valley Data Center","verified_operator":"Standard Power","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA floodplain proximity (Ohio River); seismic risk low"},"2035":{"description":"A Tier 3, carrier-neutral colocation facility operated by DaSTOR within the Innovation 411 campus at 411 Swedeland Road, serving life sciences and technology companies with redundant infrastructure and connectivity in the Philadelphia metro area.","verified_status":"operational","power_capacity_mw":8,"total_sqft":31000,"year_online":"2021","construction_update":"","recent_news":"Public hearings began May 27, 2026 on a proposed 1.6M sq ft data center campus at 411 Swedeland Road; in June 2026, the Governor released a statewide data center incentive proposal.","notable_tenants":"","verified_name":"DaSTOR King of Prussia I / 411 Swedeland Road Data Center","verified_operator":"DaSTOR, LLC","verified_owner":"MLP Ventures (via The Discovery Labs)","cooling_type":"chilled water","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":200,"utility_provider":"PECO Energy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X; moderate flood and seismic risk"},"2036":{"description":"QTS is developing a multi-building data center campus in York County (Rock Hill), South Carolina, along Hands Mill Highway; local reports describe a roughly 5.3 million sq ft, nine‑building hyperscale campus now under construction.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":5300000,"year_online":"unknown","construction_update":"Under construction: work began in 2025 and continues, with multiple buildings under construction as of early 2026.","recent_news":"York County weighed a nine‑month moratorium on new data centers; QTS continued advancing the York County campus and hosted a May 12, 2026 community Q&A.","notable_tenants":"","verified_name":"QTS York County Data Center (York I)","verified_operator":"QTS Data Centers","verified_owner":"Blackstone funds (Blackstone Infrastructure Partners and BREIT) via QTS Data Centers; local parcels held by entities including QTS York II LLC.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":9,"campus_acres":400,"utility_provider":"York Electric Cooperative; Duke Energy (transmission upgrades)","tax_incentives":"County FILOT (Project Cobra) including a fee‑in‑lieu of taxes structure discussed for up to 40 years; initial state announcement cited a $1B project.","natural_hazard_zone":""},"2037":{"description":"Massive $8 billion QTS wholesale campus under construction on roughly 800 acres along Campbell Road/Hands Mill Hwy in unincorporated York County, SC. The three-phase project will total about 5.3 million sq ft across nine buildings, with the first phase targeting service in 2028.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":5300000,"year_online":"2028","construction_update":"Phase-1 vertical construction underway by February 2026 on the Campbell Road site.","recent_news":"County council passed first reading of a nine-month moratorium on new data-center applications on 17 Jun 2026; further readings are scheduled for July.","notable_tenants":"","verified_name":"QTS York II (QTS York County Campus)","verified_operator":"QTS Data Centers","verified_owner":"Blackstone (via QTS Realty Trust)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":9,"campus_acres":800,"utility_provider":"York Electric Cooperative / Duke Energy","tax_incentives":"40-year Fee-in-Lieu-of-Taxes (FILOT) agreement with York County","natural_hazard_zone":"low risk"},"2038":{"description":"Scipio Technologies Knoxville is an operational colocation/interconnection facility at 500 W. Summit Hill Drive in downtown Knoxville; interconnection directories identify it as Peace Communications KNX1 (formerly Digital Crossing) with on‑site access to multiple Tier‑1/Tier‑2 carriers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2000","construction_update":"","recent_news":"Local media mapped Knoxville data centers on June 9, 2026 and listed Scipio Technologies Knoxville among the smaller downtown facilities.","notable_tenants":"","verified_name":"Scipio Technologies Knoxville","verified_operator":"Scipio Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Knoxville Utilities Board (KUB)","tax_incentives":"","natural_hazard_zone":"Seismic: East Tennessee Seismic Zone; flood zone undetermined."},"2039":{"description":"Uniti Knoxville is an operational colocation data center at 2333 Lovell Rd in Knoxville, TN, offering enterprise colocation services with diverse connectivity options.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"June 2026: Knoxville’s mayor proposed a one-year pause on large data center construction.","notable_tenants":"","verified_name":"Uniti Knoxville","verified_operator":"Uniti Group Inc.","verified_owner":"Uniti Group Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Uniti (Windstream)","num_buildings":0,"campus_acres":0,"utility_provider":"Knoxville Utilities Board (KUB)","tax_incentives":"Tennessee Qualified Data Center sales and use tax exemption (including reduced electricity sales tax rate) is available for sites that meet state criteria.","natural_hazard_zone":""},"2040":{"description":"Small, fully operational colocation/data-services suite known as Infinity Data Center at 2575 Willow Point Way, Suite 103 in Knoxville, operated by Webservio; approximately 1,209 sq ft with UPS, diesel generator, and 27 tons of cooling.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1209,"year_online":"unknown","construction_update":"","recent_news":"May 6, 2026: Suite 103 was listed on LoopNet as a fully operational data center; DCD previously reported the same unit was marketed for $1.2M in Sep 2024.","notable_tenants":"","verified_name":"Infinity Data Center","verified_operator":"Webservio Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2041":{"description":"Operational CleanSpark bitcoin-mining/data-center at 131–181 Douglas Lane, Jellico, Tennessee, acquired by a CleanSpark real-estate affiliate in 2024 and currently running at the Jellico site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2022","construction_update":"Operational; latest update (June 2026) centers on planning compliance — unapproved alterations and alleged placement of units on Jellico Utilities Authority property.","recent_news":"June 2026: Jellico board voted down a Bitcoin mine zoning ordinance and noted CleanSpark made facility alterations without planning approval.","notable_tenants":"","verified_name":"CleanSpark Jellico","verified_operator":"CleanSpark","verified_owner":"CSRE Properties Tennessee, LLC (CleanSpark affiliate)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Jellico Utilities Authority (wholesale power from TVA)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone A"},"2042":{"description":"A CleanSpark-operated Bitcoin mining facility in New Tazewell, Tennessee, contributing to the company’s overall hashrate and associated with a 20 MW deployment near New Tazewell.","verified_status":"operational","power_capacity_mw":20,"total_sqft":0,"year_online":"2022","construction_update":"","recent_news":"January 2026: CleanSpark curtailed 'hundreds of megawatts' of Bitcoin mining load in Tennessee via its flexible consumption model.","notable_tenants":"","verified_name":"CleanSpark New Tazewell","verified_operator":"CleanSpark","verified_owner":"CleanSpark","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Powell Valley Electric Cooperative (TVA)","tax_incentives":"Tennessee sales and use tax exemptions for qualified data center equipment; reduced 1.5% electricity tax rate for qualified mining facilities.","natural_hazard_zone":"moderate flood risk"},"2043":{"description":"DC BLOX Chattanooga (CHA1) is a carrier-neutral colocation data center at 807 East 16th Street in Chattanooga, Tennessee, serving regional enterprise and network needs.","verified_status":"operational","power_capacity_mw":1,"total_sqft":8000,"year_online":"2017","construction_update":"","recent_news":"May 20, 2026: DC BLOX increased its green loan financing to $850 million; Chattanooga is listed among operating locations.","notable_tenants":"Mohawk Industries; EPB; Conversant","verified_name":"DC BLOX Chattanooga (CHA1)","verified_operator":"DC BLOX","verified_owner":"DC BLOX INC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.59,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2044":{"description":"Small colocation data center operated by Dataprise (formerly Airnet) at 801 Broad Street, Suite 530, in downtown Chattanooga, TN, listed as Tier III compliant and established in 2002 with approximately 12,765 sq ft of whitespace.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12765,"year_online":"2002","construction_update":"","recent_news":"Dataprise named to CRN’s MSP 500 List as Elite 150 for 2026 (February 19, 2026).","notable_tenants":"","verified_name":"Airnet, by Dataprise","verified_operator":"Dataprise","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"EPB Fiber Optics","num_buildings":1,"campus_acres":0,"utility_provider":"EPB (Electric Power Board of Chattanooga)","tax_incentives":"","natural_hazard_zone":"Flood risk present (downtown Chattanooga) and medium seismic hazard for Tennessee."},"2045":{"description":"Scipio Technologies Chattanooga is a colocation facility at 1100 E 11th Street in Chattanooga, offering a 17,000-square-foot site with up to 10,000 square feet of available floor space and carrier connectivity. The site is actively marketed and operating as Scipio Technologies following a 2024 rebrand.","verified_status":"operational","power_capacity_mw":0,"total_sqft":17000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Scipio Technologies Chattanooga","verified_operator":"Scipio Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T","num_buildings":0,"campus_acres":0,"utility_provider":"EPB (Electric Power Board of Chattanooga)","tax_incentives":"","natural_hazard_zone":"Hamilton County: FEMA National Risk Index shows 'Relatively High' inland flood risk; East 11th Street has experienced flash-flood high-water closures (Aug 10, 2022)."},"2046":{"description":"MCA Chattanooga is an operational MCA Technology Solutions colocation/cloud facility at 6048 Century Oaks Dr, Chattanooga, TN, with about 2,500 sq ft of raised floor space completed in 2014.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2500,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"MCA Chattanooga","verified_operator":"MCA Technology Solutions / Mike Collins & Associates (a New Charter Technologies company)","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"EPB Fiber Optics","num_buildings":0,"campus_acres":1.96,"utility_provider":"EPB / Electric Power Board of Chattanooga","tax_incentives":"","natural_hazard_zone":"unknown"},"2047":{"description":"Carrier-neutral colocation facility operated by Aeneas Internet & Telephone at 300 N Cumberland St, Jackson, TN, featuring redundant cooling and generator backup, offering business colocation and related services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aeneas Data Center","verified_operator":"Aeneas Internet & Telephone","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Jackson Energy Authority","tax_incentives":"","natural_hazard_zone":"Seismic: New Madrid Seismic Zone region (moderate). Flood: minor risk in Jackson, TN."},"2048":{"description":"A colocation facility operated by Windstream at 112 6th St in Bristol, Tennessee. The property totals about 26,500 sq ft and has historically served telecom/data-hosting uses.","verified_status":"operational","power_capacity_mw":0,"total_sqft":26500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Bristol, TN Data Center","verified_operator":"Windstream","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":1,"campus_acres":0,"utility_provider":"Bristol Tennessee Essential Services (BTES)","tax_incentives":"","natural_hazard_zone":"FEMA flood; seismic/wind inland risk (low-to-moderate overall)."},"2049":{"description":"The Oak Ridge Leadership Computing Facility (OLCF) at ORNL operates Frontier, the first exascale supercomputer, in Building 5600 at 1 Bethel Valley Road as a DOE Office of Science user facility.","verified_status":"operational","power_capacity_mw":30,"total_sqft":15000,"year_online":"2022","construction_update":"","recent_news":"ORNL launched the Next-Generation Data Centers Institute (NGDCI) in February 2026 to advance energy-efficient, secure, AI-ready data center technologies.","notable_tenants":"DOE Office of Science user facility serving academic, government, and industry research projects.","verified_name":"Oak Ridge Leadership Computing Facility (OLCF) – Frontier Data Center, Building 5600","verified_operator":"Oak Ridge National Laboratory (managed by UT-Battelle LLC for DOE)","verified_owner":"U.S. Department of Energy","cooling_type":"liquid","tier_level":"","fiber_providers":"ESnet (dual 100 Gbps links)","num_buildings":2,"campus_acres":4000,"utility_provider":"Tennessee Valley Authority (TVA)","tax_incentives":"","natural_hazard_zone":"Seismic hazard evaluated for Oak Ridge Reservation; moderate flood risk for Oak Ridge."},"2050":{"description":"Flexential SLC03 is a carrier-neutral colocation data center at 333 South 520 West in Lindon, Utah, providing approximately 0.57 MW of capacity and about 9,542 square feet of space; the facility is commissioned/operational.","verified_status":"operational","power_capacity_mw":0.57,"total_sqft":9542,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential SLC03 (Salt Lake City - Lindon)","verified_operator":"Flexential","verified_owner":"Mecca Holdings, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Rocky Mountain Power","tax_incentives":"","natural_hazard_zone":"Seismic risk near Wasatch Fault; flood risk unknown"},"2051":{"description":"Enterprise data center at VELCO’s Rutland headquarters supporting grid computing and Vermont Weather Analytics Center functions.","verified_status":"operational","power_capacity_mw":1.6,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"VELCO Data Center (Rutland Headquarters)","verified_operator":"Vermont Electric Power Company, Inc. (VELCO)","verified_owner":"Vermont Transco LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"VELCO-owned fiber network (carrier specifics not disclosed)","num_buildings":1,"campus_acres":57.5,"utility_provider":"Green Mountain Power","tax_incentives":"","natural_hazard_zone":"Moderate city-level flood risk; inland (no coastal surge); address-specific FEMA flood zone and seismic class not confirmed."},"2052":{"description":"Telecom-heritage central office and colocation facility at 266 Main Street in downtown Burlington, Vermont, operated by Consolidated Communications. The building also houses the VCET@BTV technology hub on upper floors.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Fidium named Best Internet Provider in Vermont (April 14, 2026).","notable_tenants":"VCET@BTV (Vermont Center for Emerging Technologies)","verified_name":"Consolidated - 266 Main St.","verified_operator":"Consolidated Communications","verified_owner":"Consolidated Communications Holdings Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Consolidated Communications","num_buildings":1,"campus_acres":0,"utility_provider":"Burlington Electric Department","tax_incentives":"","natural_hazard_zone":"unknown"},"2053":{"description":"Enterprise backup control center and secondary data center for VELCO, housing grid operations, EMS/IT/telecom in a two‑story barn‑style building on VELCO property adjacent to the substation in New Haven, VT.","verified_status":"operational","power_capacity_mw":0,"total_sqft":22000,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"VELCO (owner-occupied)","verified_name":"VELCO New Haven Operations Facility","verified_operator":"Vermont Electric Power Company (VELCO)","verified_owner":"Vermont Transco LLC / Vermont Electric Power Company (VELCO)","cooling_type":"hybrid","tier_level":"","fiber_providers":"VELCO fiber optic network","num_buildings":2,"campus_acres":5,"utility_provider":"Green Mountain Power (GMP)","tax_incentives":"","natural_hazard_zone":"low risk"},"2054":{"description":"Operational colocation facility at 524 Van Buren St., Herndon, opened in 2014 as a Level 3 Premier Elite data center; current listings show it managed by Lumen Technologies.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Herndon 3 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2055":{"description":"CloudHQ LC3 is a hyperscale data center under construction at 44631 Waxpool Rd in Ashburn, Virginia, within CloudHQ’s LC Campus. It is designed as a 2‑story, ~96MW facility spanning about 585,593 sq ft on roughly 15 acres.","verified_status":"under-construction","power_capacity_mw":96,"total_sqft":585593,"year_online":"unknown","construction_update":"As of mid‑2026, CloudHQ lists LC3 as currently under construction; a 2‑story, 96MW new build is recorded with April 17, 2026 new‑construction activity.","recent_news":"Mar 2026: NBC Washington covered Loudoun residents’ noise complaints about a nearby CloudHQ data center; Jun 2026: Realty Income announced a programmatic JV with Cloud Capital, with CloudHQ to provide property and development management services.","notable_tenants":"","verified_name":"CloudHQ LC3","verified_operator":"CloudHQ","verified_owner":"Lohrasp Ventures LLC (c/o CloudHQ LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":15,"utility_provider":"","tax_incentives":"Virginia data center sales and use tax exemption (equipment/software)","natural_hazard_zone":"FEMA Flood Zone X (low risk)"},"2056":{"description":"Microsoft’s Fairwater Wisconsin campus—the first Mount Pleasant hyperscale datacenter—spans about 315 acres with three buildings totaling roughly 1.2 million sq ft and came online in June 2026.","verified_status":"operational","power_capacity_mw":400,"total_sqft":1200000,"year_online":"2026","construction_update":"","recent_news":"23 June 2026 – Microsoft announced completion and start-up of its first Fairwater datacenter building in Mount Pleasant.","notable_tenants":"Microsoft AI / OpenAI / Copilot internal workloads","verified_name":"Microsoft Fairwater Wisconsin (first Mount Pleasant datacenter)","verified_operator":"Microsoft Corporation","verified_owner":"Microsoft Corporation","cooling_type":"chilled water","tier_level":"","fiber_providers":"Microsoft dedicated AI WAN / dedicated fiber","num_buildings":3,"campus_acres":315,"utility_provider":"We Energies","tax_incentives":"Village of Mount Pleasant Tax Incremental District #5 (Electronic & Information Technology Manufacturing Zone)","natural_hazard_zone":"County identified flood-risk area; low seismic; no hurricane"},"2057":{"description":"A Verizon Business colocation facility at 1341 G St NW in downtown Washington, DC, located within the historic Colorado Building and serving enterprise customers with carrier-grade connectivity and infrastructure.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"In January 2026, a Douglas Development Corp. affiliate acquired the Colorado Building at 1341 G St NW for $20M following a foreclosure process.","notable_tenants":"","verified_name":"Verizon Business – Advanced Data Center Washington D.C.","verified_operator":"Verizon Business","verified_owner":"Douglas Development Corp.","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon","num_buildings":1,"campus_acres":0.31,"utility_provider":"Pepco (Exelon)","tax_incentives":"","natural_hazard_zone":""},"2058":{"description":"Digital Realty IAH11 is a carrier-neutral colocation data center at 12061 North Freeway in Houston, part of Digital Realty’s multi-building Digital Houston campus. It offers approximately 3.30 MW of capacity and around 30,000 sq ft of data hall space.","verified_status":"operational","power_capacity_mw":3.3,"total_sqft":30000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Cogent Communications; SunGard; Fibertown","verified_name":"Digital Realty IAH11 - 12061 North Freeway","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent","num_buildings":0,"campus_acres":0,"utility_provider":"CenterPoint Energy","tax_incentives":"","natural_hazard_zone":"hurricane and flood risk"},"2059":{"description":"A small retrofit colocation data center at 1005 W Geneva Dr, Tempe, offering 625 kW critical power and roughly 15,070 sq ft. Built in 1980 on 0.85 acres, the facility has been marketed for sale while remaining equipped for operations.","verified_status":"operational","power_capacity_mw":0.625,"total_sqft":15070,"year_online":"unknown","construction_update":"","recent_news":"JetHost acquired the Omnis Network brand in January 2026; the 1005 W Geneva Dr building remained listed for sale/lease as of May 27, 2026.","notable_tenants":"","verified_name":"Omnis Data Center","verified_operator":"Omnis Network (LLC)","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; Integra Telecom, XO Communications, CenturyLink","num_buildings":1,"campus_acres":0.85,"utility_provider":"Salt River Project (SRP)","tax_incentives":"","natural_hazard_zone":"low risk"},"2060":{"description":"Former OneNeck colocation data center at 2710 S Roosevelt St in Tempe; the property was sold in 2020 and the building has been repurposed as Red Rock Pharmacy.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":6000,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"OneNeck IT Solutions – Tempe Data Center (2710 S Roosevelt St)","verified_operator":"OneNeck IT Solutions (acquired by US Signal on September 3, 2024; site decommissioned)","verified_owner":"","cooling_type":"unknown","tier_level":"Tier 3","fiber_providers":"","num_buildings":1,"campus_acres":0.79,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona offers data center TPT and Use Tax exemptions for qualified Computer Data Centers.","natural_hazard_zone":"low risk"},"2061":{"description":"Centrilogic Scottsdale, Arizona is listed by directories as a colocation site at 9316 E Raintree Dr, but Centrilogic’s site presents it as a location/office without published data‑center specifications; the address corresponds to an office condominium of about 10,843 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10843,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centrilogic Scottsdale, Arizona","verified_operator":"Centrilogic","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Arizona Computer Data Center Program available to qualified DC owners/operators/qualified colocation tenants; no evidence of this site’s enrollment.","natural_hazard_zone":""},"2062":{"description":"Simply Bits DC1 is an operational colocation/interconnection facility at 1300 S Park Ave, Tucson, AZ, operated by Simply Bits (now branded Simply Bits from Ting). Directories list the site as active with a reported 3.0 MW capacity.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"2004","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Simply Bits DC1","verified_operator":"Simply Bits, LLC (branded Simply Bits from Ting / part of Ting Internet)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Tucson Electric Power (TEP)","tax_incentives":"","natural_hazard_zone":"unknown"},"2063":{"description":"Corserva Connecticut is an operational Tier III colocation and managed IT services data center run by Corserva at 100 Technology Drive, Trumbull, CT, providing cabinet, cage and suite colocation plus private cloud, disaster-recovery and 24⁄7 NOC support.","verified_status":"operational","power_capacity_mw":0,"total_sqft":34000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Corserva Connecticut","verified_operator":"Corserva","verified_owner":"Eldorado Holdings","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"Multiple Tier 1 diversified fiber carriers (carrier-neutral)","num_buildings":1,"campus_acres":2.65,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"low risk"},"2064":{"description":"Gotspace Norwich - Building 2 is a planned hyperscale data center at 368 Plain Hill Rd, Norwich, CT, within the multi-building Gotspace Norwich Campus. The project is listed as planned with no construction start disclosed.","verified_status":"planned","power_capacity_mw":32,"total_sqft":0,"year_online":"unknown","construction_update":"No construction has commenced; the facility remains listed as planned.","recent_news":"","notable_tenants":"","verified_name":"Gotspace Norwich - Building 2","verified_operator":"Gotspace Data Partners","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":0,"utility_provider":"Norwich Public Utilities","tax_incentives":"Connecticut Public Act 21-1 (Data Center Tax Incentive Program): sales and use tax exemptions and property tax exemptions, with terms up to 30 years depending on investment thresholds and location.","natural_hazard_zone":"low risk"},"2065":{"description":"Gotspace Norwich - Building 3 is a planned 32 MW hyperscale data center at 388 Plain Hill Rd in Norwich, Connecticut, developed by Gotspace Data Partners. It is part of the Gotspace Norwich Campus along 334–388 Plain Hill Rd and remains in the planning stage.","verified_status":"planned","power_capacity_mw":32,"total_sqft":156836,"year_online":"unknown","construction_update":"No construction activity reported; listing shows Planned/Announcement status.","recent_news":"More Connecticut towns are banning or restricting data centers, citing local concerns and resource impacts.","notable_tenants":"","verified_name":"Gotspace Norwich - Building 3","verified_operator":"Gotspace Data Partners","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":0,"utility_provider":"Norwich Public Utilities","tax_incentives":"Connecticut data center tax exemption: waiver of property and sales/use taxes for 20 years with $200M investment, or 30 years with $400M investment.","natural_hazard_zone":"FEMA riverine flood risk areas present in Norwich; generally low seismic risk."},"2066":{"description":"Planned hyperscale data center Building 1 at 29 Barber Rd, Griswold, CT, by Gotspace Data Partners, forming part of the multi‑building Gotspace Griswold 1 campus.","verified_status":"planned","power_capacity_mw":32,"total_sqft":132351,"year_online":"unknown","construction_update":"No verified construction start. Latest official project-specific record found: Apr 12, 2021 Griswold Planning & Zoning Commission minutes.","recent_news":"","notable_tenants":"","verified_name":"Gotspace Griswold 1 - Building 1","verified_operator":"Gotspace Data Partners","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Frontier (regional availability); facility-specific carriers unknown","num_buildings":3,"campus_acres":134.77,"utility_provider":"Jewett City Department of Public Utilities","tax_incentives":"Connecticut’s qualified data center law waives sales/property taxes for 20 years at a minimum $200M investment (30 years at higher thresholds). Griswold town minutes also note a Host Agreement with annual PILOT/host payments per data center.","natural_hazard_zone":"Local hazard profile highlights flooding risk; wetlands present on/near site"},"2067":{"description":"Operational Lumen colocation facility at 1075 Triangle Court, West Sacramento, with about 15,000 sq ft of space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":15000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Sacramento 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen network connectivity options","num_buildings":0,"campus_acres":1.48,"utility_provider":"Pacific Gas and Electric Company (PG&E)","tax_incentives":"","natural_hazard_zone":""},"2068":{"description":"Operational Lumen colocation facility at 1005 North B Street, Sacramento, known as Lumen Sacramento 2, with approximately 22,500 sq ft total space and 6,451 sq ft of colocation space, and N+1 HVAC redundancy.","verified_status":"operational","power_capacity_mw":0,"total_sqft":22500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Sacramento 2 Data Center","verified_operator":"Lumen Technologies (Lumen)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen/Level 3 global IP backbone; diverse/alternate carrier networks available","num_buildings":1,"campus_acres":1.68,"utility_provider":"Sacramento Municipal Utility District (SMUD)","tax_incentives":"","natural_hazard_zone":"FEMA flood zone: unknown (verify via City flood maps); seismic: medium (10% chance of potentially damaging shaking in 50 years); hurricane: low"},"2069":{"description":"Operational Lumen colocation data center at 1550 Marlborough Avenue, Riverside, CA 92507, with 23,000 sq ft total space and 6,208 sq ft raised-floor/colocation space. Lumen materials describe environmental controls, redundant power, and connectivity features consistent with its colocation portfolio.","verified_status":"operational","power_capacity_mw":0,"total_sqft":23000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Riverside 1 Data Center","verified_operator":"Lumen","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":0,"campus_acres":0,"utility_provider":"Riverside Public Utilities","tax_incentives":"","natural_hazard_zone":"Seismic and flood risk (City of Riverside planning/LHMP); parcel-specific FEMA flood zone unverified"},"2070":{"description":"A small Lumen-operated colocation facility at 1224 13th Street in Modesto, California, offering about 3,406 sq ft total with 1,124 sq ft of raised-floor space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3406,"year_online":"unknown","construction_update":"","recent_news":"June 2026: Reported patent lawsuit alleging Lumen infringed data center cooling technology (operator-level; not site-specific).","notable_tenants":"","verified_name":"Lumen Modesto 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Modesto Irrigation District (MID)","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (low risk)"},"2071":{"description":"Operational Hawaiian Telcom cable landing station at 84-284 Farrington Hwy, Waianae (Oʻahu), built to land the SEA‑US submarine cable and operated by Hawaiian Telcom/HTSC.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1500,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Hawaiian Telcom Makaha Cable Landing Station (HT Makaha CLS)","verified_operator":"Hawaiian Telcom Services Company, Inc. (HTSC)","verified_owner":"Hawaiian Telcom Services Company, Inc. (HTSC)","cooling_type":"unknown","tier_level":"","fiber_providers":"SEA-US submarine cable","num_buildings":1,"campus_acres":2.82,"utility_provider":"Hawaiian Electric Company (HECO)","tax_incentives":"","natural_hazard_zone":"FEMA Zone X; Extreme Tsunami Evacuation Zone; UBC Seismic Zone 2A; coastal high-wind/hurricane exposure"},"2072":{"description":"CloudHQ ORD1 is a hyperscale data center building within CloudHQ’s ORD Campus at 1200 E Algonquin Rd in the Chicago metro, part of a US$2.5 billion development delivering up to 300 MW campus capacity; the ORD1 building is ~566,800 sq ft with up to 84 MW IT load.","verified_status":"under-construction","power_capacity_mw":84,"total_sqft":566800,"year_online":"unknown","construction_update":"Groundbreaking occurred in August 2022; construction has continued with a campus plan including three buildings and a dedicated ComEd substation.","recent_news":"","notable_tenants":"","verified_name":"CloudHQ ORD1","verified_operator":"CloudHQ","verified_owner":"CloudHQ","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":49.7,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"South Mount Prospect TIF district","natural_hazard_zone":""},"2073":{"description":"GigeNET Chicago is a 17,000 sq ft colocation and managed-hosting data center operated by GigeNET inside a 111,667 sq ft single-story flex building at 545 E Algonquin Rd, Arlington Heights, Illinois. Online since 2006, the site provides dedicated servers, cloud and colocation services supported by a DWDM fiber ring, redundant HVAC, UPS and diesel-generator power.","verified_status":"operational","power_capacity_mw":0,"total_sqft":17000,"year_online":"2006","construction_update":"","recent_news":"ZoomInfo reported in early 2026 that GigeNET plans to move its offices from 545 E Algonquin Rd in January 2026, though the data-center operations remain active.","notable_tenants":"Intertek","verified_name":"GigeNET Chicago","verified_operator":"GigeNET","verified_owner":"SRM Cos & Pearlmark","cooling_type":"air-cooled","tier_level":"","fiber_providers":"GigeNET DWDM fiber ring; carrier-neutral","num_buildings":1,"campus_acres":5.56,"utility_provider":"ComEd","tax_incentives":"","natural_hazard_zone":"FEMA Zone X / low risk"},"2074":{"description":"Former Lumen Technologies (CenturyLink/Level 3) telecom colocation site at 1305 E Algonquin Rd that has been decommissioned; the building was replaced by the 190,606 SF O’Hare Logistics Center 16 distribution facility developed by Seefried.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":57000,"year_online":"unknown","construction_update":"","recent_news":"Property at 1305 E Algonquin Rd recorded as sold for $48.3M in May 2026.","notable_tenants":"","verified_name":"Lumen Technologies Arlington Heights 1","verified_operator":"Lumen Technologies","verified_owner":"Seefried Industrial Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":13.14,"utility_provider":"ComEd","tax_incentives":"Village-supported real property tax incentive (Resolution No. 13-24, March 2024) for 1305 E Algonquin Rd (Seefried redevelopment).","natural_hazard_zone":""},"2075":{"description":"Colocation data center at 601 W Polk St in Chicago’s West Loop, operated by TierPoint and offering lit fiber to 350 E Cermak; the site opened in 2013 (AlteredScale) and has been operated by TierPoint since 2016.","verified_status":"operational","power_capacity_mw":5,"total_sqft":107000,"year_online":"2013","construction_update":"","recent_news":"March 30, 2026: TierPoint initiates search for next CEO.","notable_tenants":"","verified_name":"TierPoint Chicago Data Center (Polk St.)","verified_operator":"TierPoint","verified_owner":"Menlo Equities","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"Illinois Data Centers Investment Program (state and local tax exemptions for qualifying data centers); new applications suspended as of July 2026.","natural_hazard_zone":""},"2076":{"description":"Small, single‑story former Windstream/PAETEC telecom/data‑center building at 31 N Wolf Rd, Wheeling, IL, built in 1989 with about 3,718 sq ft on 0.24 acres; it was marketed as a vacant former data center in 2024 and later recorded as sold in December 2024.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":3718,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Windstream/PAETEC (former operator/occupant); no current tenant publicly verified","verified_name":"Former Windstream data center, 31 N Wolf Road","verified_operator":"unknown","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream/PAETEC (historical telecom network/operator); no current carrier list publicly reported","num_buildings":1,"campus_acres":0.24,"utility_provider":"ComEd / Commonwealth Edison","tax_incentives":"","natural_hazard_zone":""},"2077":{"description":"Compass Datacenters is redeveloping the former Sears headquarters at 3333 Beverly Rd in Hoffman Estates into a five‑building hyperscale data center campus of nearly 200 acres, supported by a new ComEd onsite substation and an investment reported near $10 billion.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"2026","construction_update":"Demolition/clearing complete by Sep 2025; Building 1 topped off Feb 2026; ComEd onsite substation targeted for mid‑2026 to power the first building.","recent_news":"Building 1 topped off in February 2026.","notable_tenants":"","verified_name":"Compass Hoffman Estates data center campus","verified_operator":"Compass Datacenters","verified_owner":"Compass Datacenters","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":197,"utility_provider":"ComEd","tax_incentives":"Cook County Class 6B property-tax classification; Village agreement includes $800,000 per building in community investment and a 12-year benefit that begins when a building is 60% occupied.","natural_hazard_zone":"FEMA flood Zone X (low risk)"},"2078":{"description":"Legacy tw telecom Boise #2 at 199 N. Capitol Blvd., Boise, ID is a small colocation listing that is now inactive; the address is presently a condominium/apartment property, and tw telecom’s operations were succeeded corporately by Lumen.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"tw telecom - Boise Data Center #2 (legacy/inactive)","verified_operator":"Lumen Technologies (corporate successor to tw telecom); listing inactive at this address","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Idaho Power","tax_incentives":"Idaho Data Center Sales Tax Exemption applies to qualifying new data centers; no evidence this legacy suite qualifies.","natural_hazard_zone":"FEMA Zone X (minimal flood risk); non-hurricane region; regional seismic exposure"},"2079":{"description":"CleanSpark Washington Data Center is a CleanSpark‑owned and operated Bitcoin‑mining campus at 197 Dixie Wood Rd, Washington, Georgia, acquired in August 2022 and built out to 86 MW following a 50 MW expansion that went live in July 2023.","verified_status":"operational","power_capacity_mw":86,"total_sqft":0,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"CleanSpark self-operated; no third-party anchor tenant reported","verified_name":"CleanSpark Washington Data Center","verified_operator":"CleanSpark, Inc.","verified_owner":"CSRE Properties Washington, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":27.37,"utility_provider":"City of Washington (MEAG Power participant)","tax_incentives":"","natural_hazard_zone":""},"2080":{"description":"Operational colocation/carrier-neutral facility at 4631 Ohara Dr, Evansville, IN, run by Watch Communications (which acquired SITCO). Offers data center services with network interconnection options at the site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":20160,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Watch Communications Data Center","verified_operator":"Watch Communications","verified_owner":"CWK'S LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Smithville Digital, Ruesch Consulting, SITCO","num_buildings":1,"campus_acres":0,"utility_provider":"CenterPoint Energy","tax_incentives":"","natural_hazard_zone":"Seismic risk from proximity to Wabash Valley and New Madrid seismic zones; FEMA flood zone for this address not verified."},"2081":{"description":"A planned 180 MW, 450,000 sq ft AI data center at the Digital Crossroad campus in Hammond, Indiana, to be operated by CoreWeave under a long-term lease. The project’s advancement is uncertain pending a long-term power agreement with utility NIPSCO and after the mayor stated he has “no confidence” it will proceed.","verified_status":"planned","power_capacity_mw":180,"total_sqft":450000,"year_online":"unknown","construction_update":"No construction start. Development agreement approved June 2025 and extended December 2025; long-term power agreement with NIPSCO remains pending; mayor stated 'no confidence' in June 2026.","recent_news":"June 23, 2026: Hammond’s mayor said he has “no confidence” the data center project will move forward.","notable_tenants":"CoreWeave (planned 20-year lease)","verified_name":"CoreWeave at Digital Crossroad Campus","verified_operator":"CoreWeave","verified_owner":"Decennial Group LLC (DX Hammond JV LLC)","cooling_type":"chilled water","tier_level":"Tier III (concurrently maintainable; not Uptime certified)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":77,"utility_provider":"NIPSCO (Northern Indiana Public Service Company)","tax_incentives":"10-year real property tax abatement; 20-year 100% equipment tax suspension","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard)"},"2082":{"description":"","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"","verified_operator":"","verified_owner":"","cooling_type":"","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2083":{"description":"A colocation and network operations center operated by Wintek Business Solutions at 3921 David Howarth Dr in Lafayette, Indiana, providing secure hosting and connectivity services and in operation since 2016.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Wintek Data Center","verified_operator":"Wintek Business Solutions","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Wintek","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2084":{"description":"IU Bloomington Data Center is Indiana University’s enterprise/research data center at 2750 East Discovery Parkway in Bloomington, operated by UITS. It is a hardened, stand-alone facility with roughly 82,700 gross sq ft and three computer equipment rooms.","verified_status":"operational","power_capacity_mw":0,"total_sqft":82700,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"Indiana University enterprise/academic systems (UITS) and IU research computing/HPC including Big Red 200.","verified_name":"IU Bloomington Data Center","verified_operator":"Indiana University — University Information Technology Services (UITS)","verified_owner":"The Trustees of Indiana University","cooling_type":"chilled water","tier_level":"","fiber_providers":"I-Light (IU-managed research-and-education fiber); R&E network connectivity","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2085":{"description":"Small telecom / data-center operated by On-Ramp Indiana (ORI.NET) at 859 Conner St, Noblesville, housed in a 2,400 sq ft commercial building and listed in industry directories as “ORI.NET Noblesville.”","verified_status":"operational","power_capacity_mw":2,"total_sqft":2400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ORI.NET Noblesville","verified_operator":"On-Ramp Indiana, Inc. (ORI.NET)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"ORI.NET","num_buildings":1,"campus_acres":0.05,"utility_provider":"Duke Energy Indiana","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (low-to-moderate flood risk)"},"2086":{"description":"Operational Lumen Technologies data center at 4625 W 86th St, Indianapolis, IN 46268; commonly listed as Lumen Indianapolis 3, with some directories referring to the same address as Indianapolis 2.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Indianapolis 3 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen","num_buildings":0,"campus_acres":7.62,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2087":{"description":"Planned three‑building DC BLOX data center campus at 305 Fintail Drive within the Thunderbird Commerce Center in east Indianapolis, designed for wholesale/hyperscale users.","verified_status":"planned","power_capacity_mw":80,"total_sqft":420000,"year_online":"2028","construction_update":"Hearing examiner recommended approval in mid‑June 2026; proceeding to an MDC vote scheduled for early July 2026.","recent_news":"A hearing examiner recommended approval of DC BLOX’s variance/use request in mid‑June 2026, moving the project toward an MDC vote.","notable_tenants":"","verified_name":"DC BLOX Thunderbird Data Center","verified_operator":"DC BLOX","verified_owner":"DCB Indianapolis, LLC (DC BLOX); site within Lauth Group’s Thunderbird Commerce Center","cooling_type":"unknown","tier_level":"","fiber_providers":"DC BLOX integrated dark fiber; carrier-neutral","num_buildings":3,"campus_acres":32,"utility_provider":"AES Indiana","tax_incentives":"Indiana Data Center Sales Tax Exemption (IC § 6-2.5-15); potential local property tax abatement","natural_hazard_zone":"low risk"},"2088":{"description":"Decatur Technology Park is a planned two-building wholesale data center campus on about 130 acres at IN-67 & Camby Rd in Decatur Township (Camby), Indianapolis, being developed by Sabey Data Centers.","verified_status":"planned","power_capacity_mw":250,"total_sqft":900000,"year_online":"unknown","construction_update":"Indianapolis zoning officials approved the proposal on March 18, 2026; a city-wide data center zoning amendment was scheduled to be heard July 1, 2026.","recent_news":"Sabey filed a motion to dismiss residents’ legal challenge against the project (June 2026).","notable_tenants":"","verified_name":"Decatur Technology Park","verified_operator":"Sabey Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":130,"utility_provider":"","tax_incentives":"Requested 50% property tax abatement; state data center tax exemptions may apply.","natural_hazard_zone":"Moderate natural hazard risk at the county level."},"2089":{"description":"RadiusDC Indy II is a planned wholesale data center at AllPoints Lot 18 in Plainfield, Indiana, forming the second building of a two‑building, ~24MW campus on roughly 31 acres near Indianapolis.","verified_status":"planned","power_capacity_mw":12,"total_sqft":100835,"year_online":"unknown","construction_update":"Primary plat approved by Plainfield Plan Commission (Jan 2026); BZA variance petition filed for outdoor storage/operations. No reported groundbreaking as of July 2026.","recent_news":"Trade press reported RadiusDC’s 24MW Plainfield campus with a future matching facility, Indy II, and power to be supplied by a new substation; the Plainfield Plan Commission approved the primary plat in early January 2026.","notable_tenants":"","verified_name":"RadiusDC Indy II","verified_operator":"RadiusDC","verified_owner":"Radius DC REIT III-B, LLC (RadiusDC)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":31,"utility_provider":"Duke Energy","tax_incentives":"Indiana Data Center Sales Tax Exemption (IC § 6-2.5-15) for qualified data center equipment and energy; potential local property tax abatements may also apply subject to local approvals.","natural_hazard_zone":"low risk"},"2090":{"description":"Google Michigan City (Project Maize) is an under-construction hyperscale data center at 402 Royal Rd, redeveloping the former Federal-Mogul facility; Google acquired the project in April 2026 and plans to reuse an existing ~400,827 sq ft building.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":400827,"year_online":"unknown","construction_update":"Under construction; local reporting notes construction began Fall 2025 and continued through April 2026.","recent_news":"Google confirmed acquisition of Project Maize in April 2026; IURC Cause No. 46393 is active regarding a NIPSCO customer-specific contract tied to a data center customer.","notable_tenants":"Google (self-use); no third-party tenants disclosed.","verified_name":"Google Michigan City (Project Maize)","verified_operator":"Google","verified_owner":"Google","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":70,"utility_provider":"NIPSCO (Northern Indiana Public Service Company)","tax_incentives":"Indiana data center sales-tax exemption; local Michigan City tax abatements (vacant building and real property) approved for Project Maize.","natural_hazard_zone":"Moderate flood risk (Lake Michigan coastal area); site-specific FEMA zone not confirmed."},"2091":{"description":"Building 5 is one of six planned data center buildings on the 168-acre Hobart Devco campus at E 61st Ave & Arizona St in Hobart, Indiana, associated with Amazon Web Services and to be powered by NIPSCO.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Fill permit for site grading approved Feb 5, 2026; litigation filed shortly after to block it. No vertical construction documented yet.","recent_news":"Feb 5, 2026: Hobart approved a fill permit for the Amazon data center site; days later, a lawsuit sought to block it. June 2026: State-level data center incentive debates drew reactions from supporters and opponents.","notable_tenants":"Amazon Web Services (AWS)","verified_name":"Hobart Devco LLC - Building 5","verified_operator":"Amazon Web Services (AWS)","verified_owner":"Hobart Devco, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":6,"campus_acres":168,"utility_provider":"NIPSCO (Northern Indiana Public Service Company)","tax_incentives":"Indiana Data Center Sales Tax Exemption (up to 50 years for investments >$750M under IC § 6-2.5-15); City of Hobart real property tax abatement; 2026 state policy discussions on a 1% local revenue share of sales tax savings.","natural_hazard_zone":"Tornado-prone region; FEMA flood zone unknown for this parcel."},"2092":{"description":"Small colocation facility operated by Bayou Internet (Scroggin Networks) at 1109 Hudson Lane, Monroe, in a converted 9,540 sq ft office building, offering managed colo with UPS/generator backup and multiple-carrier fiber.","verified_status":"operational","power_capacity_mw":0,"total_sqft":9540,"year_online":"1994","construction_update":"","recent_news":"","notable_tenants":"The Radio People (co-tenant at 1109 Hudson Lane)","verified_name":"Scroggin Networks Monroe","verified_operator":"Bayou Internet","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Multiple telcos","num_buildings":1,"campus_acres":0.75,"utility_provider":"Entergy Louisiana","tax_incentives":"Louisiana Sales/Use Tax Rebate Incentive for Data Centers (effective Jul 1, 2024) — no facility-specific award verified","natural_hazard_zone":"low risk (flood); moderate-to-high tornado/storm risk"},"2093":{"description":"SNS Norwood is a colocation data center operated by Secured Network Services, Inc. (now a Thrive company) at 1500 Providence Hwy in Norwood, MA, located within the multi-tenant Norwood Corporate Center office building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1600,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SNS Norwood","verified_operator":"Secured Network Services, Inc. (a Thrive company)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Norwood Municipal Light Department (NMLD)","tax_incentives":"","natural_hazard_zone":"low risk"},"2094":{"description":"Small colocation data center on the 3rd floor of a historic brick building in downtown Brockton, MA, operated by JeanComputech Corporation, offering cloud, colocation, voice, and managed IT services with carrier-neutral connectivity.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":26929,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"JeanComputech Brockton","verified_operator":"JeanComputech Corporation","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.22,"utility_provider":"National Grid","tax_incentives":"","natural_hazard_zone":"Moderate flood risk (downtown Brockton near Salisbury Brook)"},"2095":{"description":"Operational Expedient colocation/cloud data center at 11155 Red Run Blvd., Suite 200, Owings Mills, MD 21117 (BWI1), offering ~22,000 sq ft of data center space with ~8,800 sq ft raised floor, ~800 kW critical IT load, 3.5 MW generators, 2N UPS, and six on-net carriers.","verified_status":"operational","power_capacity_mw":0.8,"total_sqft":22000,"year_online":"2013","construction_update":"","recent_news":"No facility-specific developments reported in the last six months.","notable_tenants":"","verified_name":"Expedient Baltimore - Owings Mills (BWI1)","verified_operator":"Expedient","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; 6 on-net carriers (AT&T, Comcast, Expedient, Lumen Technologies, NTT Communications, Verizon Business)","num_buildings":1,"campus_acres":9.23,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (low-to-moderate risk); moderate wind/hurricane risk"},"2096":{"description":"State of Maine’s enterprise data center service operated by MaineIT in Augusta that provides hosting/housing, power, environmental control, and network connectivity for state government agencies.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Governor Janet Mills vetoed a statewide data center moratorium bill, and the Maine Data Center Advisory Council continues to post meeting and update information.","notable_tenants":"Maine state government agencies, including Maine Revenue Services.","verified_name":"OIT Data Center Operations (Maine IT)","verified_operator":"Maine Office of Information Technology (MaineIT)","verified_owner":"State of Maine","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Central Maine Power (CMP)","tax_incentives":"","natural_hazard_zone":"Seismic: moderate risk (statewide); FEMA flood zone: unknown"},"2097":{"description":"Carrier-class telecom/long-haul fiber regeneration site at FirstLight’s 9 Westland Ave hosting NNENIX Location #1, featuring diverse fiber entrances, dark-fiber loops to 45 Forest Ave and 340 Cumberland Ave, a 48V DC A+B battery plant, and backup generator power.","verified_status":"operational","power_capacity_mw":0,"total_sqft":462,"year_online":"unknown","construction_update":"","recent_news":"May 5, 2026: FirstLight announced First Commonwealth Federal Credit Union selected it to support digital banking and disaster recovery.","notable_tenants":"EXA/GTT; Microsoft; Facebook; FirstLight; Hurricane Electric; EastLink; University of Maine","verified_name":"FirstLight Regen Hut (NNENIX Location #1)","verified_operator":"FirstLight Fiber","verified_owner":"Antin Infrastructure Partners (corporate owner of FirstLight Fiber; deed owner unknown)","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral IXP present (NNENIX); Hurricane Electric POP onsite; dark-fiber loops to 45 Forest Ave and 340 Cumberland Ave.","num_buildings":0,"campus_acres":0,"utility_provider":"Central Maine Power (CMP)","tax_incentives":"","natural_hazard_zone":"unknown"},"2098":{"description":"NNENIX Location #2 is a not-for-profit Internet Exchange Point node housed in Room 235 of the University of Southern Maine’s Science Building in Portland, Maine, operated by Networkmaine. It provides a neutral peering point supporting interconnection for networks across the Northern New England region.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Maine lawmakers considered a bill (March 2026) to exclude new data center projects from two tax incentive programs while the state studies impacts.","notable_tenants":"Networkmaine; Hurricane Electric; McFarlane Associates; Pioneer Broadband; Axiom Technologies; WoodyNet; Northern Light Healthcare/EMHS; Infrastructure Management Associates","verified_name":"NNENIX Location #2 – USM Science Building","verified_operator":"Networkmaine","verified_owner":"University of Maine System","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Central Maine Power (CMP)","tax_incentives":"","natural_hazard_zone":"Moderate citywide flood risk; inland Portland location with coastal storm exposure (refer to FEMA flood resources)."},"2099":{"description":"Planned 60 MW, ~$300 million Nautilus Data Technologies wholesale facility on 13 acres at the former Great Northern Paper mill site in East Millinocket, Maine; the project announced in 2021 was canceled in April 2025 before construction/operations.","verified_status":"decommissioned","power_capacity_mw":60,"total_sqft":0,"year_online":"unknown","construction_update":"Canceled in April 2025 prior to construction/operations.","recent_news":"","notable_tenants":"","verified_name":"Nautilus East Millinocket","verified_operator":"Nautilus Data Technologies","verified_owner":"Town of East Millinocket","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":13,"utility_provider":"Versant Power","tax_incentives":"Federal Qualified Opportunity Zone","natural_hazard_zone":"Overall natural hazard risk moderate; storm risk moderate (score 47)."},"2100":{"description":"A proposed AI data and technology center by MillCompute in the historic Bates Mill No. 3 (about 85,000 sq ft on the first two floors) with a 24 MW first phase was unanimously rejected by the Lewiston City Council on Dec 16, 2025.","verified_status":"planned","power_capacity_mw":24,"total_sqft":85000,"year_online":"unknown","construction_update":"No construction; the proposal was unanimously rejected by the city council on Dec 16, 2025.","recent_news":"An April 6, 2026 investigative report documented how the proposal unraveled and was rejected by the city council.","notable_tenants":"","verified_name":"MillCompute Bates Mill No. 3 AI Data Center","verified_operator":"MillCompute LLC","verified_owner":"Twin Cities LLC (Bill Johnson)","cooling_type":"unknown","tier_level":"Tier III (proposed)","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Proposed: approximately $3 million per year for 20 years; not enacted after the council’s rejection.","natural_hazard_zone":"unknown"},"2101":{"description":"An integrated energy and hyperscale data center campus near Broadview, Montana developed by Quantica’s Big Sky Digital Infrastructure platform, pairing onsite generation and storage to support ~1GW-class compute capacity.","verified_status":"planned","power_capacity_mw":1100,"total_sqft":0,"year_online":"2029","construction_update":"Proposed / in permitting; no major construction start publicly indicated.","recent_news":"June 17, 2026: Reported agreement between the developer and a union federation for workforce development.","notable_tenants":"","verified_name":"Big Sky Campus (Big Sky Digital Infrastructure)","verified_operator":"Big Sky Digital Infrastructure LLC","verified_owner":"Quantica Infrastructure LLC, backed by EnCap Investments LP (Energy Transition)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Planned hundreds of miles of new fiber-ready underground conduit enabling diverse routes; specific carriers not disclosed","num_buildings":0,"campus_acres":5100,"utility_provider":"NorthWestern Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"2102":{"description":"Planned in 2015 as a 67,000 sq ft Venyu Technology Center in Jackson, MS, the project never entered operation; the former McRae’s building was demolished in 2022 and the site is being redeveloped as Prado Lofts, with a 2026 groundbreaking.","verified_status":"decommissioned","power_capacity_mw":1.8,"total_sqft":67000,"year_online":"unknown","construction_update":"No data center construction; building demolished in 2022 and site redevelopment (Prado Lofts) has begun.","recent_news":"Jan 15, 2026: Groundbreaking held for Prado Lofts redevelopment at the former site.","notable_tenants":"University of Mississippi Medical Center (UMMC) Center for Telehealth (announced)","verified_name":"Venyu Technology Center (Jackson) — planned project; site now Prado Lofts at Meadowbrook","verified_operator":"None (project did not enter operation; announced operator was Venyu Solutions)","verified_owner":"PraCon Global Investment Group (site redevelopment owner/developer)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2103":{"description":"A small telecom-oriented data center at 213 S Oak Ave in Owatonna, Minnesota, originally operated by Jaguar Communications and now branded/listed as MetroNet Jaguar, with the facility shown as active.","verified_status":"operational","power_capacity_mw":3,"total_sqft":9633,"year_online":"unknown","construction_update":"","recent_news":"Listed for sale on LoopNet on May 18, 2026.","notable_tenants":"","verified_name":"Jaguar Communications Data Center (MetroNet Jaguar)","verified_operator":"MetroNet","verified_owner":"MetroNet (owned by a T‑Mobile/KKR joint venture since July 2025)","cooling_type":"unknown","tier_level":"","fiber_providers":"MetroNet (Jaguar Communications)","num_buildings":1,"campus_acres":0.2,"utility_provider":"Owatonna Public Utilities (OPU)","tax_incentives":"","natural_hazard_zone":"Minor flood risk; tornado hazard present in Steele County."},"2104":{"description":"Small telecom central office/peering facility at 232 20th St NW in East Grand Forks, MN, operated by Wikstrom Telephone Company and listed on PeeringDB.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Wikstrom Telephone Company East Grand Forks Facility","verified_operator":"Wikstrom Telephone Company, Inc.","verified_owner":"Wikstrom Telephone Company, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Fiber Minnesota; Wikstrom Telephone Company","num_buildings":0,"campus_acres":0,"utility_provider":"East Grand Forks Water and Light Department","tax_incentives":"","natural_hazard_zone":"FEMA flood zone; protected by levee/floodwall system"},"2105":{"description":"Building 200 at Nashua Technology Park (200 Innovative Way, Nashua, NH) is a wholesale data center operated by the John Flatley Company, offering 3.97 MW of power within a 750,000+ SF, 3-building campus.","verified_status":"operational","power_capacity_mw":3.97,"total_sqft":203692,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Amphenol TCS.","verified_name":"Nashua Data Center - Building 200","verified_operator":"John Flatley Company","verified_owner":"John Flatley Company","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":129.73,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X; low seismic risk"},"2106":{"description":"A wholesale/colocation data center within Building 300 at 300 Innovative Way in the Nashua Technology Park, offering a 21,882 SF turnkey data hall with CRAC-based cooling and 9.26 MW of power, operated and leased by the John Flatley Company.","verified_status":"operational","power_capacity_mw":9.26,"total_sqft":21882,"year_online":"unknown","construction_update":"","recent_news":"NH lawmakers debated multiple bills to add restrictions on large data centers, signaling increased statewide scrutiny of data center growth (Feb 2026).","notable_tenants":"Formerly Dell (prior data center occupant).","verified_name":"Nashua Data Center - Building 300","verified_operator":"John Flatley Company (operating as Nashua Data Center)","verified_owner":"John Flatley Company","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Fidium Fiber","num_buildings":3,"campus_acres":400,"utility_provider":"Eversource Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"2107":{"description":"Hyperscale AI data center campus in Vineland, New Jersey, developed by DataOne for Nebius with a design capacity up to 300 MW and a two‑phase plan; Phase 1 is under construction and Phase 2 is a major expansion.","verified_status":"under-construction","power_capacity_mw":300,"total_sqft":717602,"year_online":"2026","construction_update":"As of March 2026, Phase 1 (129,622 sq ft) is currently under construction; Phase 2 (587,980 sq ft) is the planned expansion.","recent_news":"June 15, 2026: Nebius and Rowan University announced AI/data-science/cloud workforce-development programs in New Jersey.","notable_tenants":"Nebius (anchor cloud operator); Microsoft (dedicated capacity via Nebius agreement).","verified_name":"DataOne / Nebius Vineland, NJ Data Center","verified_operator":"DataOne (facility developer/operator); Nebius (AI cloud capacity operator)","verified_owner":"DataOne USA LLC / DataOne Vineland LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":106.59,"utility_provider":"Vineland Municipal Utilities","tax_incentives":"PILOT approved Jan. 27, 2026 for the DataOne data center project in Vineland; reported base land valuation $5,618,100 (with development values to phase in).","natural_hazard_zone":"unknown"},"2108":{"description":"Carrier-neutral colocation data center operated by Cogent at 4101 Maple Ave, Pennsauken, NJ, totaling 39,601 sq ft with 2.3 MW capacity.","verified_status":"operational","power_capacity_mw":2.3,"total_sqft":39601,"year_online":"unknown","construction_update":"","recent_news":"May 26, 2026: Cogent announced a definitive agreement to sell 10 data center facilities as part of its divestment of Sprint-acquired sites.","notable_tenants":"","verified_name":"Cogent Data Center - Pennsauken","verified_operator":"Cogent Communications, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"","natural_hazard_zone":"unknown"},"2109":{"description":"A small colocation facility operated by Cogent Communications at 254 State Highway 23 in Franklin, NJ, offering rack space, power, connectivity, HVAC, UPS, and a backup generator in a former telephone building constructed in 1991.","verified_status":"operational","power_capacity_mw":0,"total_sqft":6669,"year_online":"unknown","construction_update":"","recent_news":"May 2026: Cogent agreed to sell 10 data centers to I Squared Capital for $225M; the listed sites do not include Franklin, which remains with Cogent.","notable_tenants":"","verified_name":"Cogent Data Center - Franklin","verified_operator":"Cogent Communications, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":18.883,"utility_provider":"Jersey Central Power & Light (JCP&L)","tax_incentives":"Next New Jersey Program – AI provides tax credits to eligible AI/data center projects (program cap $250M); applicability to this site unconfirmed.","natural_hazard_zone":"FEMA Flood Zone B and X - moderate flood hazard"},"2110":{"description":"Carrier-neutral colocation facility operated by Planet Networks at 4 Park Place, Newton, NJ, featuring redundant power and HVAC with diesel generator backup and dark‑fiber connectivity to NY‑metro sites, operational since 1999.","verified_status":"operational","power_capacity_mw":1,"total_sqft":0,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Planet Networks Data Center","verified_operator":"Planet Networks","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.26,"utility_provider":"Jersey Central Power & Light (JCP&L)","tax_incentives":"","natural_hazard_zone":"low risk"},"2111":{"description":"Small colocation data center in Aurora, Nebraska operated by Hamilton Telecommunications, offering 24x7x365 operations and reliable backup power, with redundant electrical feeds, dual air handling units, and a 350 kW generator.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Hamilton Telecommunications celebrated its 125th year on June 5, 2026.","notable_tenants":"","verified_name":"Hamilton Telecommunications Aurora Data Center","verified_operator":"Hamilton Telecommunications","verified_owner":"Nedelco, Inc.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Nebraska Public Power District (NPPD)","tax_incentives":"","natural_hazard_zone":"low risk (minor flood risk)"},"2112":{"description":"A planned 40,000 sq ft colocation data center by Sequitor Edge at TechoNE Crossing in Kearney, Nebraska, with opening targeted for 2027; the site is being developed via Shamrock Data LLC.","verified_status":"planned","power_capacity_mw":0,"total_sqft":40000,"year_online":"2027","construction_update":"September 2025: Kearney City Council approved sale of ~16 acres at Tech One Crossing to Shamrock Data LLC; reports indicated a 2027 opening.","recent_news":"May 2026: A citizen presented concerns about the planned data center’s impacts at a Kearney City Council meeting.","notable_tenants":"","verified_name":"Sequitor Edge Kearney Data Center (TechoNE Crossing)","verified_operator":"Sequitor Edge","verified_owner":"Shamrock Data LLC","cooling_type":"unknown","tier_level":"Tier III (design target; not Uptime Institute certified)","fiber_providers":"","num_buildings":1,"campus_acres":16,"utility_provider":"Nebraska Public Power District (NPPD)","tax_incentives":"Nebraska sales and use tax exemption on data center equipment; additional incentives may be available under state programs.","natural_hazard_zone":""},"2113":{"description":"A cryptocurrency (Zcash) mining data center in east Grand Island, Nebraska, being built and operated by Fortitude Mining under an interruptible-power arrangement with the municipal utility; the site was reported as nearing completion in late June 2026.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"2026","construction_update":"Nearing completion as of June 26, 2026.","recent_news":"June 26, 2026: Local media reported the Fortitude Mining data center in east Grand Island is nearing completion.","notable_tenants":"Self-operated (Fortitude Mining Zcash PoW mining)","verified_name":"Fortitude Mining Grand Island Data Center","verified_operator":"Fortitude Mining","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"ALLO Communications; CenturyLink/Lumen; NebraskaLink; OrbitCom","num_buildings":0,"campus_acres":0,"utility_provider":"Grand Island Utilities Department","tax_incentives":"ImagiNE Nebraska Act (sales/use tax refunds or exemptions, personal property tax exemptions; potentially applicable).","natural_hazard_zone":"Hall County: low composite risk; specific FEMA flood zone for the site not determined from cited sources."},"2114":{"description":"Colovore RN01 is an ultra-high-density, liquid-cooled colocation data center at 100 Italy Drive in the Reno/Sparks market, designed for modern AI and HPC workloads with up to 20 MW of capacity.","verified_status":"under-construction","power_capacity_mw":20,"total_sqft":0,"year_online":"2026","construction_update":"Groundbreaking completed; project under construction.","recent_news":"","notable_tenants":"","verified_name":"Colovore RN01","verified_operator":"Colovore","verified_owner":"King Street Capital Management (majority owner)","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements: personal property and sales/use tax reductions (including 75% personal property abatement, typically over 10 years) available to qualifying data centers.","natural_hazard_zone":"Minor flood risk zone (Sparks city-level); no hurricane risk."},"2115":{"description":"A ~61,500 sq ft, 5 MW colocation facility by Oppidan’s Connect Data Centers at 9630 N. Virginia St., Reno, on a seven-acre site, approved in 2025 and targeting full operations in 2027.","verified_status":"under-construction","power_capacity_mw":5,"total_sqft":61500,"year_online":"2027","construction_update":"Approved by Reno City Council in March 2025 and proceeding under prior entitlements during the city’s May 2026 pause on new approvals; phased build-out targeted through 2027.","recent_news":"Reno paused approvals for new data centers in May 2026; the Oppidan/Connect project had already received approval and proceeds under prior entitlements.","notable_tenants":"","verified_name":"Connect Data Centers: Reno, NV","verified_operator":"Connect Data Centers","verified_owner":"Oppidan Investment Company","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":7,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements via GOED: partial personal property tax abatement and sales/use tax reduction (program available statewide; no site-specific approval disclosed).","natural_hazard_zone":"Moderate-to-high seismic risk (Reno–Carson City corridor)."},"2116":{"description":"Small colocation data center operated by CC Communications at 50 W Williams Ave in Fallon, NV, offering colocation and business connectivity services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CC Communications Data Center","verified_operator":"CC Communications","verified_owner":"CC Communications","cooling_type":"unknown","tier_level":"","fiber_providers":"CC Communications","num_buildings":1,"campus_acres":0,"utility_provider":"City of Fallon Utilities","tax_incentives":"Nevada offers data center tax abatements (e.g., sales/use and personal property tax reductions) for qualifying facilities; no site-specific confirmation for this facility.","natural_hazard_zone":"Earthquake high risk (score 51); Flood risk 31%; overall disaster risk moderate for Fallon."},"2117":{"description":"Small colocation and managed IT services data center operated by Xogenous, Ltd at 1175 Fairview Drive in Carson City, NV, offering local colocation and IT services with approximately 4,000 sq ft of data hall space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Xogenous Data Center","verified_operator":"Xogenous, Ltd.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"","natural_hazard_zone":"seismic (severe), wildfire (moderate), flood (moderate)"},"2118":{"description":"ColoXchange Las Vegas is an operational colocation facility at 3422 Neeham Road in North Las Vegas, providing about 1 MW of capacity in a single‑story, ~6,210 sq ft building with a 750 kVA backup generator.","verified_status":"operational","power_capacity_mw":1,"total_sqft":6210,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ColoXchange Las Vegas","verified_operator":"coloXchange","verified_owner":"COLO X LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.52,"utility_provider":"NV Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"2119":{"description":"Csquare - Las Vegas LAS12 is an operational colocation facility at 7365 South Lindell Rd in Las Vegas, situated within Switch’s SUPERNAP Las Vegas 9 campus building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2015","construction_update":"","recent_news":"Csquare filed an S-1 with the SEC for a planned IPO (reported April 28, 2026).","notable_tenants":"","verified_name":"Csquare - Las Vegas LAS12","verified_operator":"Csquare","verified_owner":"Switch (portfolio company of DigitalBridge and IFM Investors)","cooling_type":"unknown","tier_level":"Tier IV Gold (Uptime Institute) — host building","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements available (sales/use tax rate reduced and personal property tax abatement for qualifying data centers).","natural_hazard_zone":"FEMA Flood Zone C/X (minimal hazard; generally above 500-year level)"},"2120":{"description":"An on-campus enterprise data center operated by the UNLV Office of Information Technology within the Thomas T. Beam Engineering (TBE) Complex. It is one of UNLV’s data center locations and is monitored 24/7 at 4505 S. Maryland Pkwy., Las Vegas, NV 89154.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"UNLV departments and OIT-hosted servers; no external anchor tenants reported.","verified_name":"TBE Data Center (Thomas T. Beam Engineering Complex)","verified_operator":"UNLV Office of Information Technology (OIT)","verified_owner":"Board of Regents of the Nevada System of Higher Education (University of Nevada, Las Vegas)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":335,"utility_provider":"NV Energy","tax_incentives":"","natural_hazard_zone":"FEMA flood zone: unknown; local hazards include flooding, earthquakes, and extreme heat (inland; no hurricane risk)."},"2121":{"description":"Enterprise data center in the SCS building at 4300 S. Maryland Pkwy that supports NSHE’s statewide network and provides colocation and shared digital services for Nevada’s education and public-sector communities.","verified_status":"operational","power_capacity_mw":0,"total_sqft":24833,"year_online":"1991","construction_update":"","recent_news":"","notable_tenants":"UNLV Office of Information Technology (OIT); NSHE member institutions; Nevada K-12 schools; state and county agencies","verified_name":"System Computing Services (SCS) Data Center","verified_operator":"Nevada System of Higher Education – System Computing Services (SCS)","verified_owner":"State of Nevada / NSHE Board of Regents","cooling_type":"unknown","tier_level":"","fiber_providers":"NevadaNet (NSHE-operated statewide network)","num_buildings":1,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"2122":{"description":"A planned Microsoft hyperscale data center campus on about 274 acres at 1200 W Hwy 50, Silver Springs, NV; the site is land-banked/planned with parcel approvals but no construction underway.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Parcel map/merger and resubdivision approvals in 2025; no building construction commenced and the site remains vacant/land-banked.","recent_news":"June 12, 2026: A magnitude ~4.4 earthquake struck near Silver Springs.","notable_tenants":"","verified_name":"Microsoft Silver Springs","verified_operator":"Microsoft","verified_owner":"Microsoft","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":274,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements: 75% personal property tax abatement for 10–20 years; sales/use tax reduced to 2% for 10–20 years (subject to eligibility).","natural_hazard_zone":"Seismic risk; minor flood risk."},"2123":{"description":"A planned Microsoft hyperscale data center campus on 300.7 acres of raw land within Mark IV Capital’s Victory Logistics District in Fernley, Nevada, acquired for $70.5 million in April 2025. No development plans or timeline have been publicly disclosed.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"No construction activity; the site remains raw land.","recent_news":"","notable_tenants":"Microsoft (owner-operator)","verified_name":"Microsoft Fernley","verified_operator":"Microsoft","verified_owner":"Microsoft","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":300.7,"utility_provider":"NV Energy","tax_incentives":"Nevada GOED data center abatements: partial abatement of personal property tax and sales and use tax for qualifying data centers.","natural_hazard_zone":"High seismic risk; some FEMA flood-risk exposure (~7% of Fernley properties)."},"2124":{"description":"Sapphire Technology Park is a master-planned, ~1,060–1,063-acre wholesale data center campus near Silver Springs in Lyon County, Nevada, being developed by Tract to support up to 1.6GW with an initial 700MW under utility study. The site has completed rezoning and a development agreement with Lyon County.","verified_status":"planned","power_capacity_mw":700,"total_sqft":0,"year_online":"unknown","construction_update":"Land acquisition (~1,060 acres) closed in Sep 2025 following rezoning and a development agreement; initial 700MW is under utility study. The project remains in planning with no vertical construction announced as of July 2026.","recent_news":"Fleet (Tract’s development arm) announced financing for Nevada build-out (Feb 2026) and broke ground on a separate data center outside Reno (May 2026); no Silver Springs/Sapphire–specific construction or tenant announcements in the last six months.","notable_tenants":"","verified_name":"Sapphire Technology Park","verified_operator":"Tract","verified_owner":"Tract Capital Management, LP","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":1063,"utility_provider":"NV Energy","tax_incentives":"Nevada data center tax abatements: 75% personal property tax abatement for 10–20 years; sales and use tax reduced to 2% for 10–20 years.","natural_hazard_zone":"FEMA-style flood risk: low/minor (Flood Zone X indicative); seismic activity present (M4.4 near Silver Springs on 2026-06-12)."},"2125":{"description":"Planned 50+ MW AI/hyperscale data-center campus in Moapa (Clark County), Nevada, on about 20 acres near the remediated former Reid Gardner site; a Jet.AI–Choo Choo Express LLC joint venture.","verified_status":"planned","power_capacity_mw":50,"total_sqft":0,"year_online":"unknown","construction_update":"Pre-construction: power study ongoing; JV announced and site due diligence advancing.","recent_news":"May 15, 2026: Jet.AI reported the Moapa data-center power study remains ongoing.","notable_tenants":"","verified_name":"Jet.AI Moapa Data Center Campus","verified_operator":"Jet.AI Inc.","verified_owner":"Choo Choo Express LLC (planned JV land contributor)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":20,"utility_provider":"NV Energy","tax_incentives":"","natural_hazard_zone":"Regional flood risk (Muddy River basin; parcel-specific FEMA NFHL zone not verified)."},"2126":{"description":"A proposed up to 170 MW AI/hyperscale data center campus on about 88.5 acres in Boulder City, Nevada, to be developed by Townsite Solar 2 LLC.","verified_status":"planned","power_capacity_mw":170,"total_sqft":0,"year_online":"unknown","construction_update":"Application stage; proceeding to City Council review.","recent_news":"Planning Commission voted against the TS2 data center proposal; the matter proceeds to the City Council for consideration.","notable_tenants":"","verified_name":"TS2 Data Center","verified_operator":"Townsite Solar 2 LLC","verified_owner":"Skylar Energy Resources LLC (wholly owned subsidiary of the William O. Perkins III Revocable Trust)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":88.5,"utility_provider":"","tax_incentives":"Nevada Renewable Energy Tax Abatement (RETA) for Townsite Solar 2 energy project; no confirmed data center-specific abatement.","natural_hazard_zone":""},"2127":{"description":"DartPoints AVL01 is a carrier-neutral colocation data center in Asheville, NC, offering 23,000 sq ft of white space, 1.5 MW of utility power, 2,050 kW backup generation, and connectivity from seven network providers.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":23000,"year_online":"2011","construction_update":"","recent_news":"Asheville enacted a one-year moratorium on new data centers and cryptocurrency mining (June 23, 2026).","notable_tenants":"","verified_name":"DartPoints AVL01 – Asheville, NC","verified_operator":"DartPoints","verified_owner":"NOVA Infrastructure (majority owner of DartPoints); Astra Capital Management (minority investor)","cooling_type":"unknown","tier_level":"Tier III Design","fiber_providers":"carrier-neutral; 7 network providers","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy","tax_incentives":"North Carolina offers sales and use tax exemptions for qualifying data centers (e.g., electricity and eligible equipment).","natural_hazard_zone":"FEMA floodzone X; regional hurricane/storm exposure evidenced by Hurricane Helene (2024)."},"2128":{"description":"Legacy records list a GTT/One Source Networks colocation site at 414 N. Church St. in Greensboro, but the property was purchased and has operated as Christ Church Greensboro since 2015, so the data-center entry appears stale/decommissioned.","verified_status":"decommissioned","power_capacity_mw":1.5,"total_sqft":28284,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Christ Church Greensboro (former: GTT Greensboro Data Center / One Source Greensboro)","verified_operator":"","verified_owner":"Christ Church Greensboro","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral (multiple on-site carriers; names not listed)","num_buildings":1,"campus_acres":1.76,"utility_provider":"Duke Energy","tax_incentives":"","natural_hazard_zone":"unknown"},"2129":{"description":"A small Lumen-operated telecom colocation facility in Greensboro, NC, at the Creek Ridge Road address cluster, providing colo space within Lumen’s network footprint that originated with Level 3/CenturyLink assets.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5394,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Greensboro 1","verified_operator":"Lumen Technologies","verified_owner":"Lumen Technologies","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen Technologies","num_buildings":0,"campus_acres":0,"utility_provider":"Duke Energy","tax_incentives":"North Carolina offers sales and use tax exemptions for qualifying data centers (generally at least $75 million investment over five years).","natural_hazard_zone":"Low seismic risk; site-specific flood risk should be checked via FEMA/FRIS (Greensboro provides flood-zone tools)."},"2130":{"description":"A Lumen-operated, telecom-heritage colocation site at 496 Gallimore Dairy Rd in Greensboro, NC, housed within the multi-tenant Airpark South industrial complex. The building dates to 1997 from its tw telecom lineage and supports Lumen connectivity and colocation services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"1997","construction_update":"","recent_news":"Feb 27, 2026: Lumen unveiled new 'AI corridors' and a strategic refocus on enterprise/data center connectivity, including the sale of its consumer FTTH assets to AT&T and $13B in private connectivity deals.","notable_tenants":"","verified_name":"Lumen Greensboro 2","verified_operator":"Lumen Technologies","verified_owner":"BCORE Timber APS Owner LLC (subsidiary of Blackstone Real Estate Income Trust)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy","tax_incentives":"North Carolina data center sales and use tax exemptions for qualifying data centers and their operations.","natural_hazard_zone":"low risk"},"2131":{"description":"Hardened, underground colocation facility at 3310 Old Lexington Road in Winston-Salem, NC, operating two independent data centers with carrier-neutral connectivity. Total building is commonly cited around 140,000 sq ft (Segra lists 120,000 sq ft of data center space).","verified_status":"operational","power_capacity_mw":6,"total_sqft":140000,"year_online":"2002","construction_update":"","recent_news":"Segra completed its 800G-enabled route from the Myrtle Beach Cable Landing Station into inland markets in Q2 2026, expanding international connectivity across its network.","notable_tenants":"","verified_name":"Segra Winston-Salem Data Center","verified_operator":"Segra","verified_owner":"Cox Communications","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":0,"utility_provider":"Duke Energy","tax_incentives":"North Carolina sales and use tax exemptions for qualifying data centers (requires at least $75M in private investment over five years, per state determination).","natural_hazard_zone":"Moderate flood risk; facility envelope is Category 3 hurricane-rated."},"2132":{"description":"Former Bed Bath & Beyond data center at 2436 Penny Rd, Claremont, acquired by Data Journey; a single freestanding 47,500 SF data center currently marketed for sale in mid‑2026.","verified_status":"operational","power_capacity_mw":0,"total_sqft":47500,"year_online":"2013","construction_update":"","recent_news":"Listed for sale on LoopNet on June 18, 2026.","notable_tenants":"","verified_name":"Data Journey: Catawba County Data Center (Claremont)","verified_operator":"Data Journey","verified_owner":"Data Journey","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk"},"2133":{"description":"Google’s Lenoir, North Carolina data center at 708 Lynhaven Drive is a hyperscale campus built in 2007 that remains operational and expanding, with more than $4B invested to date and a new $1B program over two years.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3370000,"year_online":"2007","construction_update":"Two-year, $1B campus expansion announced March 2026.","recent_news":"March 2026: Google announced a two-year, $1B expansion of the Lenoir data center campus.","notable_tenants":"Google (owner-occupied; not a colocation facility)","verified_name":"Google Data Center - Lenoir, North Carolina","verified_operator":"Google","verified_owner":"Google (Alphabet Inc.)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; major fiber along Hwy 321 corridor","num_buildings":0,"campus_acres":215,"utility_provider":"Duke Energy Carolinas","tax_incentives":"North Carolina Qualifying Data Center sales & use tax exemption (electricity and eligible equipment; $75M+ investment threshold). Potential local Caldwell County performance-based rebates: 50% real property and 85% personal property taxes over 20 years.","natural_hazard_zone":"unknown"},"2134":{"description":"A planned hyperscale expansion of Google’s Lenoir, NC data center campus, proposed on about 60 acres adjacent to the existing site and backed by a two‑year, $1 billion investment to boost AI and cloud infrastructure.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Active planning: two‑year, $1B campus expansion announced; proposed ~60‑acre addition adjacent to the existing site.","recent_news":"March 2026: Google announced a two‑year, $1 billion investment to expand its Lenoir data center.","notable_tenants":"Google (owner-operator)","verified_name":"Google Lenoir Data Center expansion (Lenoir, NC)","verified_operator":"Google","verified_owner":"Google / Tapaha Dynamics, LLC","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":280,"utility_provider":"Duke Energy Carolinas","tax_incentives":"Local incentive grants/tax rebates supporting the expansion (long‑term property tax abatements approved by local authorities).","natural_hazard_zone":"Moderate hurricane exposure and localized flood risk; parcel-level flood zones should be verified in North Carolina FRIS/FEMA maps."},"2135":{"description":"Core Scientific’s Marble, North Carolina Data Center (Marble 1) at 155 Palmer Ln is an operational, high‑density campus of about 250,000 sq ft on roughly 70 acres, now pivoting from crypto mining to AI/HPC workloads.","verified_status":"operational","power_capacity_mw":117,"total_sqft":250000,"year_online":"unknown","construction_update":"AI/HPC conversion in progress during 2026.","recent_news":"Spring 2026 coverage highlighted the Marble site’s conversion from crypto mining to AI/HPC and the resulting community concerns.","notable_tenants":"CoreWeave","verified_name":"Marble, North Carolina Data Center (Marble 1)","verified_operator":"Core Scientific","verified_owner":"Core Scientific Marble LLC","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":70,"utility_provider":"","tax_incentives":"North Carolina data-center exemption on supplies and electricity (statewide policy).","natural_hazard_zone":"FEMA Flood Zone X / low 100-year flood risk (Marble area)."},"2136":{"description":"ITS Franklin is an operational enterprise data center at 440 West Franklin Street, Chapel Hill, run by UNC-Chapel Hill ITS Data Center Operations (DCOPS). It supports campus IT services alongside the ITS Manning and ITS Phillips facilities.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ITS Franklin","verified_operator":"UNC-Chapel Hill ITS Data Center Operations (DCOPS)","verified_owner":"University of North Carolina at Chapel Hill","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy","tax_incentives":"","natural_hazard_zone":"unknown"},"2137":{"description":"Encore Technologies MSB1 is a 73,632-sq-ft, carrier-neutral colocation data center on a 12.56-acre campus at 9333 N Springboro Pike, Miamisburg, Ohio. Encore bought the former LexisNexis facility for $6.2 million in 2022 and now operates it with 3 MW of critical power and 2N electrical and N+1 mechanical redundancy.","verified_status":"operational","power_capacity_mw":3,"total_sqft":73632,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"LexisNexis","verified_name":"Encore Technologies MSB1","verified_operator":"Encore Technologies","verified_owner":"Encore Technologies (via 4620 Wesley LLC)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":12.56,"utility_provider":"AES Ohio","tax_incentives":"Ohio Data Center Sales & Use Tax Exemption (ORC §122.175)","natural_hazard_zone":"low risk"},"2138":{"description":"LightSpeed Data Center (also listed as Medina DC1) is a colocation facility operated by LightSpeed Hosting, LLC at 387 Medina Road, Suite 200, Medina, OH 44256, serving the Cleveland–Akron area with about 1 MW of capacity.","verified_status":"operational","power_capacity_mw":1,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"LightSpeed Data Center (Medina DC1)","verified_operator":"LightSpeed Hosting, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Medina County Fiber Network","num_buildings":0,"campus_acres":0,"utility_provider":"Ohio Edison (FirstEnergy)","tax_incentives":"","natural_hazard_zone":"low risk"},"2139":{"description":"Operational Cogent colocation/data center at 120 N Broadway St, Akron, Ohio, offering about 50,747 sq ft and 5 MW of power with UPS/backup and carrier connectivity.","verified_status":"operational","power_capacity_mw":5,"total_sqft":50747,"year_online":"unknown","construction_update":"","recent_news":"Feb 19, 2026: Signal Akron lists Cogent’s 120 N. Broadway site among Summit County’s operating data centers. May 26, 2026: Cogent announced an agreement to sell 10 data centers to a new platform; Akron was not indicated among the facilities.","notable_tenants":"","verified_name":"Akron Data Center","verified_operator":"Cogent Communications","verified_owner":"Cogent Communications","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":2.6,"utility_provider":"Ohio Edison; Shell Energy Solutions","tax_incentives":"","natural_hazard_zone":"unknown"},"2140":{"description":"Cogent Cleveland 2 Data Center is an operational telecom/colocation site operated by Cogent Communications at 2650 Rockefeller Avenue, Cleveland, OH 44115, offering 5,804 sq ft and standard colocation features.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5804,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Cogent Cleveland 2 Data Center","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent, Verizon, AT&T, Lumen","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2141":{"description":"Lumen Cleveland 1 is a carrier-neutral colocation facility operated by Lumen Technologies at 4000 Chester Avenue in downtown Cleveland, offering secure space, power, and connectivity with direct access to Lumen’s backbone.","verified_status":"operational","power_capacity_mw":2.6,"total_sqft":40000,"year_online":"unknown","construction_update":"","recent_news":"Local media (Feb 10, 2026) noted Lumen operates a data center at Chester Ave/E. 40th St. in a piece on Northeast Ohio’s readiness for AI data centers.","notable_tenants":"","verified_name":"Lumen Cleveland 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"The Illuminating Company (FirstEnergy)","tax_incentives":"","natural_hazard_zone":"Outside FEMA 100‑year floodplain; Seismic Zone 1 (low risk)."},"2142":{"description":"A small telecom colocation facility operated by Fusion Connect in the historic Keith Building at 1621 Euclid Ave (Suite 730), offering interconnection within a multi-tenant office environment in downtown Cleveland.","verified_status":"operational","power_capacity_mw":1,"total_sqft":6000,"year_online":"unknown","construction_update":"","recent_news":"Fusion Connect earned Five G2 Awards for service quality (April 14, 2026).","notable_tenants":"","verified_name":"Fusion Connect - Cleveland Data Center","verified_operator":"Fusion Connect","verified_owner":"K&D Group","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent; Lumen (Level 3)","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (minimal flood risk)"},"2143":{"description":"Aligned CMH-02 is a hyperscale data center campus under construction on a 197-acre site in Conesville’s Industrial Park, adjacent to the former AEP Conesville Power Plant.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Groundbreaking completed; construction is underway.","recent_news":"On May 27, 2026, the Governor announced a pause on new data center tax exemption proposals in Ohio.","notable_tenants":"","verified_name":"CMH-02 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"Aligned Data Centers (corporate parent: investor group led by AIP/MGX and BlackRock’s GIP acquiring 100% equity from Macquarie, announced Oct 15, 2025)","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":197,"utility_provider":"","tax_incentives":"Ohio Data Center Sales & Use Tax Exemption: 15-year, 75% for the Aligned project (approved in 2023); state paused new proposals on May 27, 2026.","natural_hazard_zone":"Floodplain (site being remediated); low seismic risk"},"2144":{"description":"Telesystem DC-1 is a colocation data center at 4818 Angola Road in Toledo, Ohio, operated by Telesystem, featuring 24x7x365 monitoring and SOC 2 Type II and HIPAA compliance.","verified_status":"operational","power_capacity_mw":1,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Telesystem DC-1 Ohio Data Center","verified_operator":"Telesystem (Buckeye Telesystem, Inc.)","verified_owner":"Block Communications, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Toledo Edison (FirstEnergy)","tax_incentives":"","natural_hazard_zone":"Moderate flood risk; low seismic; tornado-prone"},"2145":{"description":"Carrier-neutral colocation data center operated by BlueBridge Networks at 5915 Landerbrook Drive in Mayfield Heights, Ohio, providing colocation and related recovery/staging services within a multi-tenant office property.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"BlueBridge Networks Mayfield Heights Data Center","verified_operator":"BlueBridge Networks LLC","verified_owner":"Uhrman Building Company LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Cleveland Electric Illuminating (FirstEnergy)","tax_incentives":"","natural_hazard_zone":"low risk"},"2146":{"description":"NWPTRIEBDS0 is a small telecom switch site (DMT remote terminal) registered at 17 Goodwin St, Newport, RI 02840 under building CLLI NWPTRIEB. The address corresponds to a residential multi-family property, indicating this is not a purpose-built data center.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"NWPTRIEBDS0 – Newport Goodwin Street Telecom Switch Facility","verified_operator":"Verizon New England Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":"FEMA flood zone; high flood risk"},"2147":{"description":"US Signal OR01 Bend Data Center is an operational colocation site at 20845 Sockeye Place, Bend, OR 97701. The facility was formerly known as BendBroadband’s “The Vault” and later operated by OneNeck prior to US Signal’s 2024 acquisition.","verified_status":"operational","power_capacity_mw":2,"total_sqft":30000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"St. Charles Health System","verified_name":"US Signal OR01 Bend Data Center","verified_operator":"US Signal Company, LLC","verified_owner":"US Signal Company, LLC","cooling_type":"air-cooled","tier_level":"Tier III","fiber_providers":"Carrier-neutral; on-net providers include Level 3 (Lumen) and Zayo.","num_buildings":1,"campus_acres":3.3,"utility_provider":"Pacific Power","tax_incentives":"","natural_hazard_zone":"low risk"},"2148":{"description":"An operational US Signal colocation facility at 20845 Sockeye Place in Bend, Oregon, offering secure colocation services; the site lists 2,834 total sq ft and 88 kW critical IT workload, while a third-party listing notes a 30,000-sq-ft building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":30000,"year_online":"unknown","construction_update":"","recent_news":"June 4, 2026: US Signal announced it is accelerating expansion at its Aurora, Illinois data center (company-level news; no Bend-specific update identified).","notable_tenants":"","verified_name":"US Signal OR01 Bend Data Center","verified_operator":"US Signal","verified_owner":"Igneo Infrastructure Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Seismic risk (Cascadia Subduction Zone); FEMA flood zones AE/A/X present in Bend area"},"2149":{"description":"Carrier-neutral colocation data center in Greenville, SC operated by DartPoints, undergoing a $125M expansion to grow power capacity from 2.5 MW to 12.5 MW and add 88,000 sq ft for high‑density workloads.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":0,"year_online":"2007","construction_update":"Expansion underway to increase capacity from 2.5 MW to 12.5 MW and add 88,000 sq ft of high-density space.","recent_news":"May 27, 2026: DartPoints acquired a ~343,000 sq ft data center campus in Lexington, Kentucky to support AI, neo-cloud, hyperscale, and enterprise demand.","notable_tenants":"","verified_name":"DartPoints Greenville, SC - GSP1","verified_operator":"DartPoints","verified_owner":"NOVA Infrastructure (majority investor); Astra Capital Management; Orion Infrastructure Capital (OIC)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 6 carriers; 100 Gbps Data Center Interconnect","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"South Carolina sales & use tax exemption for certified data centers (investment ≥$50M over 5 years and ≥25 full-time jobs).","natural_hazard_zone":"Moderate risk: local earthquake vulnerability and site-specific flood-zone considerations; inland tropical remnants possible."},"2150":{"description":"Operational DartPoints colocation facility at 1000 Catawba Street, Suite 180, Columbia, SC (SCRA/USC Columbia Innovation Center), designated CAE01. It offers 15,000 sq ft of raised floor, 2 MW of utility power, and 120 tons of N+1 cooling.","verified_status":"operational","power_capacity_mw":2,"total_sqft":15000,"year_online":"unknown","construction_update":"June 2026 expansion announcement: 500 kW available for pre-leasing with 2N UPS architecture.","recent_news":"June 2026: DartPoints announced 500 kW of new Columbia, SC capacity available for pre-leasing, with up to 15 kW per rack and 2N UPS architecture.","notable_tenants":"","verified_name":"DartPoints CAE01 – Columbia, SC","verified_operator":"DartPoints","verified_owner":"South Carolina Research Authority (USC/Columbia Innovation Center)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2151":{"description":"DartPoints SPA01 is a colocation data center at 5700 N Blackstock Rd in Spartanburg, South Carolina, serving enterprise workloads and interconnection needs.","verified_status":"operational","power_capacity_mw":1.3,"total_sqft":21400,"year_online":"unknown","construction_update":"","recent_news":"DartPoints announced the acquisition of a Lexington, KY data center campus with initial 20–30 MW and long-term 70 MW capacity.","notable_tenants":"","verified_name":"DartPoints SPA01 – Spartanburg, SC","verified_operator":"DartPoints","verified_owner":"NOVA Infrastructure (majority investor since April 2025)","cooling_type":"unknown","tier_level":"","fiber_providers":"6 on-net carriers; Megaport available","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (moderate flood risk); low earthquake risk"},"2152":{"description":"DC BLOX Greenville is a Tier III multi-tenant colocation data center in Greenville, South Carolina, opened in January 2022 and offering carrier-neutral connectivity.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"2022","construction_update":"","recent_news":"In May 2026, DC BLOX increased its company-wide green loan financing to $850 million; in January 2026, it secured $240 million in HoldCo financing from Global Infrastructure Partners/BlackRock.","notable_tenants":"","verified_name":"DC BLOX Greenville Data Center","verified_operator":"DC BLOX","verified_owner":"Post Road Group; Bain Capital Credit","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"South Carolina sales and use tax exemption for certified data centers on computer equipment, software, and electricity.","natural_hazard_zone":"Greenville County: moderate seismic risk; use the City of Greenville flood map for parcel flood zone verification."},"2153":{"description":"Carrier-neutral subsea cable landing station and colocation facility in Myrtle Beach, SC, designed to host multiple subsea cables with full build-out capacity of 125,000 sq ft and 19 MW.","verified_status":"operational","power_capacity_mw":19,"total_sqft":0,"year_online":"2023","construction_update":"Oct 14, 2025: Planned expansion to add capacity for five more subsea cables, with approximately 20 acres acquired within ITAP and additional 20 MW planned.","recent_news":"May 20, 2026: DC BLOX increased its Green Loan financing to $850 million.","notable_tenants":"","verified_name":"DC BLOX Myrtle Beach Cable Landing Station","verified_operator":"DC BLOX","verified_owner":"","cooling_type":"evaporative","tier_level":"Tier III-designed","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Santee Cooper","tax_incentives":"South Carolina sales tax exemption on data center equipment and electricity; FILOT; job tax credits.","natural_hazard_zone":"Hurricane risk: Very High"},"2154":{"description":"Google’s hyperscale Berkeley County (Moncks Corner) data center campus at/near 1669 Garrott Ave in Mount Holly Commerce Park has operated since 2008, with initial build in 2007 and subsequent expansions.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2008","construction_update":"Sept 26, 2024: Google announced a $1.3B expansion of the existing Moncks Corner (Mount Holly Commerce Park) campus.","recent_news":"","notable_tenants":"","verified_name":"Google Berkeley County Campus (Moncks Corner)","verified_operator":"Google LLC","verified_owner":"Google (via affiliates including Maguro Enterprises LLC and Arum Composites LLC)","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"South Carolina data center incentives and county FILOT programs exist; specific active incentives for this campus not verified.","natural_hazard_zone":"Hurricane exposure; moderate-to-high seismic risk; FEMA flood zone unknown."},"2155":{"description":"Lumen-operated colocation/data center located at 1401 Main Street in downtown Columbia, SC, occupying space within a 12‑story office building; the facility totals about 25,936 sqft of data center space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":25936,"year_online":"unknown","construction_update":"","recent_news":"Feb 17, 2026: Lumen announced enhanced metro data center connectivity and a new Multi-Cloud Gateway to address AI bottlenecks.","notable_tenants":"","verified_name":"Lumen Columbia","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (on-net)","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy South Carolina","tax_incentives":"South Carolina sales and use tax exemption for certified data centers on computer equipment, software, and electricity (subject to statutory investment/job thresholds).","natural_hazard_zone":"FEMA flood Zones AE/X common in Columbia; inland hurricane/severe storm exposure; city-level flood risk minor to moderate."},"2156":{"description":"Segra Columbia is a colocation data center operated by Segra at 1500 Hampton Street in Columbia, South Carolina, offering secure, stable hosting with connectivity into Segra’s regional fiber network.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Segra completed a 600G high-capacity network route from Myrtle Beach, streamlining international data flows for hyperscalers and carriers (May 19, 2026).","notable_tenants":"","verified_name":"Segra Columbia","verified_operator":"Segra","verified_owner":"Cox Communications","cooling_type":"unknown","tier_level":"","fiber_providers":"Segra","num_buildings":0,"campus_acres":0,"utility_provider":"Dominion Energy South Carolina","tax_incentives":"South Carolina data center sales and use tax exemption for qualifying facilities (statutory investment and jobs thresholds).","natural_hazard_zone":"Hurricane wind exposure risk; flood risk per FEMA/local flood programs; low-to-moderate seismic risk (South Carolina)."},"2157":{"description":"Single-tenant enterprise data center at 10309 Wilson Blvd, Blythewood, SC, owned by Mapletree Industrial Trust and operated by Atos Group under a lease.","verified_status":"operational","power_capacity_mw":0,"total_sqft":64638,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Atos Group (primary tenant)","verified_name":"ATOS Blythewood Data Center","verified_operator":"Atos Group","verified_owner":"Mapletree Industrial Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":7.03,"utility_provider":"Dominion Energy South Carolina","tax_incentives":"South Carolina provides sales and use tax exemptions on computer equipment, software, and electricity for certified data centers meeting minimum investment and jobs thresholds.","natural_hazard_zone":"FEMA Flood Zone X (moderate-to-low flood risk)"},"2158":{"description":"A proposed data center site on 162 acres at 771 Park Road in Camden, SC led by Terra Nexus Ventures; the rezoning application was later withdrawn and the land sold in January 2026.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"No construction; rezoning application was withdrawn prior to approval.","recent_news":"The 771 Park Road parcel sold on January 23, 2026; no new data center filings have been reported since.","notable_tenants":"","verified_name":"Terra Nexus 771 Park Road Data Center Site","verified_operator":"Terra Nexus Ventures","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":162,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Moderate flood risk; hurricane-prone region (Camden has 11% of properties at flood risk; Kershaw County ranks 14th highest statewide in overall natural hazard risk)."},"2159":{"description":"Planned LightHouse Data Centers hyperscale/AI campus at 300 Jones Road in Spartanburg, SC: the buyer acquired ~152 acres and 60 MW power rights, with local reporting noting plans could scale up to 160 MW and that county officials have paused data center applications for one year.","verified_status":"planned","power_capacity_mw":60,"total_sqft":0,"year_online":"unknown","construction_update":"County states it received a permit/application for the project; as of June 22, 2026, the one-year moratorium paused the proposal.","recent_news":"On June 22, 2026, Spartanburg County voted to pause data center applications for one year, pausing the proposed 300 Jones Road data center.","notable_tenants":"","verified_name":"LightHouse Data Centers 300 Jones Road (Project Lighthouse), Spartanburg","verified_operator":"LightHouse Data Centers","verified_owner":"300 Jones Road Associates LLC (affiliate of LightHouse Data Centers / The Lightstone Group)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":152,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Flood Zone B and X — moderate flood hazard, between 100-year and 500-year flood limits."},"2160":{"description":"An 86 MW data center at 5101 S National Dr, Knoxville, operated by Bitdeer Technologies Group, housed in a ~77,930 sq ft building and currently transitioning from cryptocurrency mining to AI Cloud in phases.","verified_status":"operational","power_capacity_mw":86,"total_sqft":77930,"year_online":"2020","construction_update":"AI conversion Phase 1 design in progress; completion targeted for Q4 2026.","recent_news":"Phase 1 (37 MW) AI data center conversion design work is underway, targeting completion by Q4 2026.","notable_tenants":"","verified_name":"Bitdeer Tennessee Data Center","verified_operator":"Bitdeer Technologies Group","verified_owner":"Bitdeer Technologies Group","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":9.88,"utility_provider":"Knoxville Utilities Board (KUB)","tax_incentives":"TVA economic incentive credits under an existing contract.","natural_hazard_zone":"Moderate seismic risk (Eastern Tennessee Seismic Zone)."},"2161":{"description":"A Bitcoin mining facility at 14250 Hickory Creek Rd in Lenoir City, Tennessee, originally part of GRIID’s portfolio and now operated by CleanSpark following its 2024 acquisition, with 20 MW installed and plans announced to expand to 40 MW.","verified_status":"operational","power_capacity_mw":20,"total_sqft":0,"year_online":"2022","construction_update":"","recent_news":"Jan 6, 2026: CleanSpark said it briefly curtailed hundreds of megawatts of Bitcoin-mining load across its Tennessee sites during extreme cold; Apr 8, 2026: a Washington County, TN site shut following a noise-related settlement (no Lenoir City-specific actions reported).","notable_tenants":"","verified_name":"CleanSpark Lenoir City","verified_operator":"CleanSpark, Inc.","verified_owner":"CleanSpark, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":2.52,"utility_provider":"Lenoir City Utilities Board (LCUB) / Tennessee Valley Authority (TVA)","tax_incentives":"","natural_hazard_zone":"low risk"},"2162":{"description":"A 240,000-square-foot, Tier III design colocation data center at 1711 M St NE in Quincy, WA, originally developed by Intuit and now operated by H5 Data Centers, offering up to ~40 MW at full buildout.","verified_status":"operational","power_capacity_mw":40,"total_sqft":240000,"year_online":"2009","construction_update":"","recent_news":"Feb 2026: H5 Data Centers, via a joint venture with Novacap, acquired three highly interconnected data centers in Buffalo, Nashville, and Tampa.","notable_tenants":"","verified_name":"H5 Data Centers Quincy I","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers (with Novacap as JV partner since 2025)","cooling_type":"chilled water","tier_level":"Tier III design","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":63,"utility_provider":"Grant County PUD","tax_incentives":"Washington state retail sales and use tax exemption for qualifying data centers; exemptions for equipment replacements/refurbishments end July 1, 2026 (SB 6231).","natural_hazard_zone":"moderate seismic risk"},"2163":{"description":"H5 Data Centers Quincy II is a colocation facility at 1500 M Street NE in Quincy, Washington, operated by H5 Data Centers. It is part of the Quincy II & III campus totaling 452,300 square feet across 63 acres and is in a market served by Grant County PUD.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2007","construction_update":"","recent_news":"Feb 2, 2026: H5 Data Centers announced acquisition of three data center locations (Buffalo, Nashville, Tampa) via a joint venture with Novacap.","notable_tenants":"Wave Business","verified_name":"H5 Data Centers Quincy II","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":63,"utility_provider":"Grant County PUD","tax_incentives":"Washington state data center tax incentive (sales/use tax exemption program).","natural_hazard_zone":"FEMA Flood Zone X (moderate flood risk)."},"2164":{"description":"Vantage Data Centers’ Quincy (WA1) campus in Quincy, WA is a 68‑acre, three‑building hyperscale campus delivering 89MW of IT capacity across approximately 775,000 square feet.","verified_status":"operational","power_capacity_mw":89,"total_sqft":775000,"year_online":"2013","construction_update":"WA13 launched in October 2023, completing the three‑building campus at 89MW across nearly 775,000 sq ft.","recent_news":"Public project records list a Vantage Quincy Campus entry as an ‘under construction’ data center project updated on April 27, 2026.","notable_tenants":"","verified_name":"Quincy (WA1) Data Center Campus","verified_operator":"Vantage Data Centers","verified_owner":"DigitalBridge and Silver Lake","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":68,"utility_provider":"","tax_incentives":"Washington State retail sales and use tax exemption for eligible data centers and qualifying tenants.","natural_hazard_zone":"FEMA Flood Zone X (outside 100-year floodplain/minimal flood hazard)"},"2165":{"description":"SDC Quincy is Sabey Data Centers’ operational, carrier-neutral colocation campus at 2200 M St NE in Quincy, Washington, offering 123 MW capacity across a five‑building campus totaling about 525,000 sq ft.","verified_status":"operational","power_capacity_mw":123,"total_sqft":525000,"year_online":"2011","construction_update":"","recent_news":"On April 6, 2026, Washington Ecology issued NOC Approval Order No. 26AQ-E016 for the Intergate Quincy (Sabey) facility.","notable_tenants":"","verified_name":"SDC Quincy","verified_operator":"Sabey Data Centers","verified_owner":"Sabey Data Center Properties LLC (Sabey Corporation)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; 15 carriers","num_buildings":5,"campus_acres":0,"utility_provider":"Grant County Public Utility District (Grant PUD)","tax_incentives":"Washington retail sales and use tax exemption for qualifying (rural) data centers and tenants on eligible server equipment and power infrastructure.","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard)"},"2166":{"description":"SDC Columbia is Sabey Data Centers’ operational colocation campus at 4405 Grant Rd in East Wenatchee, WA, powered by local hydropower. The campus has 70MW under power with 90MW+ planned expansion across multiple buildings.","verified_status":"operational","power_capacity_mw":70,"total_sqft":438000,"year_online":"unknown","construction_update":"Late‑2025 update: 4.5MW leasable now and 18MW available for pre‑leasing, with 9MW targeted for Q4 2026 and another 9MW in 2027/early 2028.","recent_news":"","notable_tenants":"T-Mobile; an unnamed global financial firm (36,000 sq ft lease reported in 2010).","verified_name":"SDC Columbia","verified_operator":"Sabey Data Centers","verified_owner":"Sabey Data Center Properties LLC (backed by Sabey Corporation and National Real Estate Advisors’ National Data Center Fund; investor: Bouwinvest)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; examples include CenturyLink (Lumen); nine carriers in total reported.","num_buildings":4,"campus_acres":0,"utility_provider":"Douglas County Public Utility District","tax_incentives":"Washington data center sales and use tax exemption for qualifying facilities/tenants (Rural Data Center Tax Incentive).","natural_hazard_zone":"unknown"},"2167":{"description":"TierPoint SPO01-02 is a colocation data center at 23403 E. Mission Avenue in Liberty Lake (Spokane metro), offering colocation and managed IT services in a roughly 32,000 sq ft facility.","verified_status":"operational","power_capacity_mw":5,"total_sqft":32000,"year_online":"unknown","construction_update":"","recent_news":"Spokane City Council approved a yearlong moratorium on new large data centers in June 2026.","notable_tenants":"","verified_name":"TierPoint SPO01-02 (Spokane SPO01/02)","verified_operator":"TierPoint","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Avista Utilities","tax_incentives":"Washington sales and use tax exemption for qualifying data centers (RCW 82.08.986); note the state ended exemptions for certain equipment replacements/refurbishments effective July 1, 2026.","natural_hazard_zone":"FEMA Flood Zone X; low seismic risk"},"2168":{"description":"Operational TierPoint carrier-neutral colocation facility at 23017 E. Mission Avenue, Liberty Lake, WA 99019; TierPoint labels it SPO2, while third-party listings also refer to it as SPO03 with about 16,500 sq ft.","verified_status":"operational","power_capacity_mw":5,"total_sqft":16500,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Spokane SPO2 (also referenced as SPO03), 23017 E. Mission Avenue, Liberty Lake, WA 99019","verified_operator":"TierPoint","verified_owner":"LD Acquisition Company 16 LLC","cooling_type":"liquid","tier_level":"","fiber_providers":"carrier-neutral; common carriers include CenturyLink/Lumen, Comcast, Integra Telecom, Mammoth, NoaNet, tw telecom, XO, and Zayo.","num_buildings":1,"campus_acres":1.55,"utility_provider":"Avista Utilities","tax_incentives":"Washington retail sales and use tax exemption for qualifying data centers/tenants; refurbishment exemption for rural data centers expires July 1, 2026.","natural_hazard_zone":"low risk (outside 100- and 500-year floodplains)"},"2169":{"description":"A small colocation facility operated by Cogent Communications at 4725 South Spotted Rd, Spokane, WA 99224, providing 3,829 sq ft with 48U cabinets and private cages.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3829,"year_online":"unknown","construction_update":"","recent_news":"June 29, 2026: Cogent closed the sale of 10 data center facilities. June 10, 2026: Spokane City Council introduced a one-year data center moratorium.","notable_tenants":"","verified_name":"Cogent Data Center - Spokane","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Avista","tax_incentives":"Washington retail sales and use tax exemption for qualifying data centers; exemptions for replacing server equipment end July 1, 2026.","natural_hazard_zone":"unknown"},"2170":{"description":"Yakima County Technology Services operates the Yakima County Secure Data Center at 128 North 2nd Street in Yakima, featuring redundant 40‑ton air‑conditioning, a 130 kVA UPS, a 450 kW diesel generator, FM‑200 fire suppression, and multiple network providers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Yakima County departments; other governmental agencies","verified_name":"Yakima County Secure Data Center","verified_operator":"Yakima County Technology Services","verified_owner":"Yakima County","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.95,"utility_provider":"Pacific Power","tax_incentives":"","natural_hazard_zone":"low risk"},"2171":{"description":"Small, carrier-neutral colocation suite operated by Innova Solutions inside a multi-tenant commercial building at 304 W Pacific Ave Suite 210 in downtown Spokane.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"22 Jun 2026 – Spokane City Council approved a one-year emergency moratorium on permitting or constructing new large data centers (>25 MVA) within city limits.","notable_tenants":"","verified_name":"Innova Solutions Spokane Data Center","verified_operator":"Innova Solutions","verified_owner":"CRACKER BOX, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0.36,"utility_provider":"Avista Utilities","tax_incentives":"","natural_hazard_zone":""},"2172":{"description":"Operational Lunavi colocation/cloud data center located in Suite 206 of The Marina Building at 851 Coho Way in Bellingham, offering enterprise-class colocation and cloud services; directories report roughly 5,000 sq ft and 1.5 MW total power.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"The Marina Building at 851 Coho Way was listed for sale in 2026, with an $11.385M asking price and about 36 years remaining on the Port of Bellingham land lease.","notable_tenants":"","verified_name":"Lunavi Bellingham Data Center","verified_operator":"Lunavi","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Puget Sound Energy","tax_incentives":"","natural_hazard_zone":"seismic risk"},"2173":{"description":"CSSNW Bellingham is a colocation data center operated by CSS Integration & Communications (CSS Communications) at 1911 C St, Suite B, Bellingham, WA 98225, offering connectivity to the CSS backbone.","verified_status":"operational","power_capacity_mw":3,"total_sqft":3155,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CSSNW Bellingham","verified_operator":"CSS Integration & Communications, Inc. (CSS Communications/CSSNW)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"CSS backbone","num_buildings":1,"campus_acres":0.15,"utility_provider":"Puget Sound Energy (PSE)","tax_incentives":"","natural_hazard_zone":"Flood: moderate neighborhood risk; seismic and tsunami exposure identified; no hurricane zone."},"2174":{"description":"A telecom/network PoP with data center capabilities at 110 Cherry St. in Burlington, Vermont, originally operated by SoVerNet and now part of FirstLight Fiber’s regional network following SoVerNet’s 2017 combination with FirstLight.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Mar 2026: FirstLight expanded its Bedford, NH data center, adding ~25% more space and supporting up to 100 additional racks; no Burlington-specific updates identified.","notable_tenants":"Education Networks of America","verified_name":"SoVerNet Burlington","verified_operator":"FirstLight Fiber","verified_owner":"Antin Infrastructure Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"FirstLight Fiber; access to multiple carriers","num_buildings":0,"campus_acres":0,"utility_provider":"Burlington Electric Department","tax_incentives":"","natural_hazard_zone":"low risk (Downtown Burlington minor flood risk)"},"2175":{"description":"A small colocation facility operated by WIN Technology at 800 Wisconsin Street in downtown Eau Claire, offering about 1 MW of capacity and ~4,000 sq ft since 2007, with connectivity into WIN’s 20,000+ mile regional fiber network.","verified_status":"operational","power_capacity_mw":1,"total_sqft":4000,"year_online":"2007","construction_update":"","recent_news":"May 15, 2026: WIN Technology, DCN, and Range announced the $700M Heartland Fiber Project, a 2,000-mile long-haul route to increase network capacity, resiliency, and regional connectivity.","notable_tenants":"","verified_name":"WIN - Eau Claire Data Center","verified_operator":"WIN Technology","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"WIN Technology fiber network; carrier-neutral with Meet-Me-Room (MMR).","num_buildings":0,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"Wisconsin Data Center Sales and Use Tax Exemption (2024 Act 19) — WEDC application and minimum investments required.","natural_hazard_zone":"low risk"},"2176":{"description":"New Era Technology – Appleton is an operational colocation/managed-services data center at 2201 E Enterprise Ave, Appleton, WI, within a 3‑story office building (66,000 SF on 5.25 acres, built 2007). The site also serves as Fox Communities Credit Union’s corporate headquarters.","verified_status":"operational","power_capacity_mw":0,"total_sqft":66000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"New Era Technology - Appleton","verified_operator":"New Era Technology","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5.25,"utility_provider":"We Energies","tax_incentives":"","natural_hazard_zone":""},"2177":{"description":"Small colocation facility operated by New Era Technology at 10400 W. Innovation Drive in the Milwaukee/Wauwatosa area, offering cabinet/cage colocation in an office building setting.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"New Era Technology - Milwaukee","verified_operator":"New Era Technology","verified_owner":"Innovation Point II LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":3.88,"utility_provider":"We Energies","tax_incentives":"","natural_hazard_zone":""},"2178":{"description":"HBS Little Chute is an operational colocation data center operated by Heartland Business Systems at 1700 Stephen Street in Little Chute, Wisconsin. Public materials highlight secure, SOC 1–certified colocation services; detailed IT load, PUE, and square footage are not disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"June 4, 2026: Heartland Business Systems joined the Microsoft Intelligent Security Association (MISA).","notable_tenants":"","verified_name":"HBS Little Chute","verified_operator":"Heartland Business Systems, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":10.98,"utility_provider":"Kaukauna Utilities","tax_incentives":"","natural_hazard_zone":"low risk"},"2179":{"description":"EdgeConneX NOR01 / Norfolk is an operational edge colocation facility at 3800 Village Ave, Suite C, offering a 19,619 sq ft site with 4,623 sq ft of raised floor, 750 kW N+1 power, N+1 CRAC/under-floor forced-air cooling, and carrier-neutral connectivity.","verified_status":"operational","power_capacity_mw":0.75,"total_sqft":19619,"year_online":"2014","construction_update":"","recent_news":"Virginia’s new two-year budget adds a $0.011/kWh tax on data centers’ electricity use; no NOR01-specific announcements in the last six months.","notable_tenants":"","verified_name":"EdgeConneX NOR01 / Norfolk Data Center","verified_operator":"EdgeConneX","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide, for qualifying data centers); Virginia’s new $0.011/kWh data-center energy-use tax.","natural_hazard_zone":"FEMA coastal flood/hurricane exposure; exact FIRM zone unknown"},"2180":{"description":"Operational colocation and managed services facility run by NetTek, LLC at 2415 Almeda Ave, Norfolk, VA, offering colocation, hosting, and cloud/IT services with multi-provider connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"NetTek Data Center","verified_operator":"NetTek, LLC","verified_owner":"Fair Holdings LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multi-provider Internet/BGP","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"","natural_hazard_zone":"Coastal flood/hurricane exposure (Norfolk)"},"2181":{"description":"Carrier-neutral, subsea-connected colocation and cable-landing facility at 1632 Corporate Landing Parkway in Virginia Beach; Phase I is a 10,750 sq ft building on an 11.5-acre campus operated by Globalinx, with connectivity into major subsea systems.","verified_status":"operational","power_capacity_mw":30,"total_sqft":10750,"year_online":"unknown","construction_update":"Feb 2025: City announced Globalinx would break ground on a subsea cable fiber-optic project; prior city records note easements to house four new cables.","recent_news":"May 2026: Virginia Beach approved an $800,000 performance-based grant for a Globalinx expansion; the project is estimated at $34.5 million and targeted to be operational by end of 2027.","notable_tenants":"","verified_name":"Globalinx Virginia Beach Data Center Campus – Phase I","verified_operator":"Globalinx Data Centers LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; subsea connectivity includes MAREA and BRUSA CLS tie-ins","num_buildings":0,"campus_acres":11.5,"utility_provider":"Dominion Energy","tax_incentives":"City data center equipment tax reduction ($0.40 per $100 assessed value) and a May 2026 Virginia Beach Development Authority performance-based grant of $800,000 for Globalinx’s expansion.","natural_hazard_zone":"Above the 500-year flood zone (low flood risk)."},"2182":{"description":"Operational Telxius Virginia Beach Cable Landing Station (CLS) at 1900 Corporate Landing Pkwy supporting the MAREA, BRUSA, and Dunant subsea systems, with Telxius backhaul to Ashburn and Richmond. Facility profiles cite about 10,750 sq ft, though public property records list a different building size.","verified_status":"operational","power_capacity_mw":30,"total_sqft":10750,"year_online":"2018","construction_update":"","recent_news":"June 5, 2026: Virginia Beach City Council backed drafting a citywide ban on large data centers and added oversight/CUP requirements for subsea cable landing/colocation facilities.","notable_tenants":"","verified_name":"Telxius Virginia Beach Cable Landing Station (CLS)","verified_operator":"Telxius","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Subsea systems: MAREA, BRUSA, Dunant; backhaul to Ashburn and Richmond.","num_buildings":1,"campus_acres":3.5,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales and Use Tax Exemption; Virginia Beach local data center computer/peripheral personal property tax rate of $0.40 per $100 with 40% depreciation.","natural_hazard_zone":"FEMA Flood Zones B and X; coastal hurricane exposure."},"2183":{"description":"EdgeConneX RIC01 is a purpose-built edge colocation data center at 1450 E Parham Road in the Richmond (Henrico County), VA market, offering carrier-neutral connectivity and 16,279 sq ft of total space to support low-latency services.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":16279,"year_online":"unknown","construction_update":"","recent_news":"EdgeConneX released an updated Richmond (RIC01) data sheet in Q1 2026 highlighting current on-net providers and IX connectivity.","notable_tenants":"","verified_name":"EdgeConneX RIC01","verified_operator":"EdgeConneX","verified_owner":"North Run LH LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; providers include Zayo, Verizon Fiber, Comcast, SummitIG, Cloudflare, WhiteSky; IX: DE-CIX Richmond","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"Henrico County reduced data center computer equipment personal property tax rate to $0.40 per $100 of assessed value (FY18 onward).","natural_hazard_zone":"Henrico County hazards: floods and severe wind as primary risks; inland hurricane wind exposure; low-probability seismicity in the Central Virginia Seismic Zone."},"2184":{"description":"Operational Flexential colocation data center at 8851 Park Central Drive, Suite B, Richmond, VA, with approximately 2.80 MW capacity and 28,594 sq ft of data-center footprint.","verified_status":"operational","power_capacity_mw":2.8,"total_sqft":28594,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Richmond Data Center","verified_operator":"Flexential","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen NaaS available; Segra connectivity present","num_buildings":1,"campus_acres":5.697,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide program)","natural_hazard_zone":"unknown"},"2185":{"description":"Brush Mountain Data Center is an operational colocation and cloud/DR facility in Blacksburg’s Virginia Tech Corporate Research Center, operated by Advanced Logic Industries. The operator’s and BMDC pages list 1750 Kraft Dr Suite 1200, while third‑party listings reference 2200 Kraft Dr SW, Suite 2025.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Feb 18, 2026: Local coverage noted Brush Mountain as a smaller-scale data center compared to Northern Virginia sites; no expansion or construction announcements identified in the last six months.","notable_tenants":"","verified_name":"Brush Mountain Data Center","verified_operator":"Advanced Logic Industries (ALI)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA flood Zone B/X (moderate)"},"2186":{"description":"A 12,500 sq ft enterprise data center at 2476 Old Ivy Rd on the University of Virginia campus, built in 2010 to serve UVA’s IT and research computing needs with about 5,500 sq ft of raised floor and roughly 1–1.5 MW capacity.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":12500,"year_online":"2010","construction_update":"","recent_news":"June 2026: UVA’s Board of Visitors increased the planned Fontaine Data Center budget to $102M; the 53,000 sq ft facility will commission at about 4.5 MW with expansion paths up to roughly 17 MW.","notable_tenants":"","verified_name":"UVA Data Center","verified_operator":"University of Virginia","verified_owner":"University of Virginia","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"","natural_hazard_zone":"moderate flood and earthquake risk"},"2187":{"description":"VCU’s Technology Operations Center at 707 West Broad Street serves as the university’s primary data center and network operations hub, with the Computer Center/NOC located on the 3rd floor.","verified_status":"operational","power_capacity_mw":0,"total_sqft":28000,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"Virginia Commonwealth University Technology Services (VCU Computer Center / Network Operations Center)","verified_name":"VCU Technology Operations Center","verified_operator":"Virginia Commonwealth University Technology Services","verified_owner":"VCU Real Estate Foundation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy Virginia","tax_incentives":"","natural_hazard_zone":"Minor flood risk; regional hurricane exposure; low-to-moderate seismic risk."},"2188":{"description":"Netrality’s 1301 Fannin Houston Data Center is an operational, carrier-neutral colocation and interconnection hub in downtown Houston, offering 26 MW of power within a 784,143 sq ft, 24‑story building.","verified_status":"operational","power_capacity_mw":26,"total_sqft":784143,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Netrality Houston Data Center, 1301 Fannin","verified_operator":"Netrality Data Centers","verified_owner":"1301 Fannin Owner, LP (c/o Amerimar 1301 Fannin Mgmt Co., LLC); Netrality (acquired 2015); backed by Macquarie Asset Management","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Outside the 500-year FEMA floodplain; hurricane wind-hardened (200 mph windows)"},"2189":{"description":"DataBank HOU1 is a colocation data center at 5150 Westway Park Blvd in Houston on the Westway Park Campus, featuring 15.6MW of critical IT load and 39 onsite carriers. It was originally developed by CyrusOne and was acquired by DataBank in March 2022 as part of a four-facility Houston transaction.","verified_status":"operational","power_capacity_mw":15.6,"total_sqft":0,"year_online":"2009","construction_update":"","recent_news":"Jun 2026: DataBank filed to expand its adjacent HOU2 facility with a $20M investment. May 2026: DataBank to install a 3.1MW rooftop solar array at the HOU3 data center.","notable_tenants":"","verified_name":"DataBank HOU1 - Westway Park I Data Center","verified_operator":"DataBank","verified_owner":"DataBank Holdings Ltd.","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; 39 onsite carriers including AT&T, PS Lightwave, Atlantic Broadband; cloud on-ramps via AWS Direct Connect and Megaport","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Texas state sales and use tax exemption for qualified data centers (statewide program; eligibility required).","natural_hazard_zone":"unknown"},"2190":{"description":"DataBank HOU2 (Westway Park II) is an operational colocation data center at 5170 Westway Park Blvd on DataBank’s Westway Park Campus in Houston, with 9MW critical IT load, 79,520 IT square feet, and 39 onsite carriers; third-party data lists 160,000 total square feet.","verified_status":"operational","power_capacity_mw":9,"total_sqft":160000,"year_online":"unknown","construction_update":"State filing notes a $20M HOU2 capacity expansion; no public schedule or added-MW details disclosed.","recent_news":"On 2026-06-18, a regional business report said DataBank plans a $20 million HOU2 capacity expansion based on a state filing.","notable_tenants":"","verified_name":"(HOU2) Westway Park II Data Center","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 39 onsite carriers","num_buildings":3,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"hurricane and flood risk"},"2191":{"description":"DataBank HOU3 is a colocation data center on DataBank’s Westway Park Campus at 11003 Corporate Centre Dr. in Houston, offering 6.5 MW of capacity across about 41,860 sq ft of IT space and interconnection to dozens of onsite carriers.","verified_status":"operational","power_capacity_mw":6.5,"total_sqft":162000,"year_online":"unknown","construction_update":"","recent_news":"May 2026: DataBank announced a 3.1 MW rooftop solar array at HOU3, billed as the largest rooftop solar installation in the Houston metro area.","notable_tenants":"","verified_name":"DataBank HOU3 - Westway Park III Data Center","verified_operator":"DataBank","verified_owner":"Investor consortium including Swiss Life Asset Managers, EDF Invest, AustralianSuper, Nuveen/TIAA, TJC LP, Northleaf, IMCO, CBRE Caledon, Ardian, and DigitalBridge (~7.8%).","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; 39 onsite carriers (e.g., PS Lightwave among others)","num_buildings":1,"campus_acres":0,"utility_provider":"CenterPoint Energy","tax_incentives":"Texas data center sales/use tax exemption (Texas Tax Code Chapter 151) for qualifying facilities.","natural_hazard_zone":"Hurricane and flood risk (Harris County)"},"2192":{"description":"DataBank HOU5 is a carrier‑neutral colocation data center at 4201 Southwest Freeway in Houston’s Galleria area, with a 112,000 sq ft building and 61,050 sq ft of raised floor. It was acquired by DataBank in March 2022 from CyrusOne.","verified_status":"operational","power_capacity_mw":5.25,"total_sqft":112000,"year_online":"unknown","construction_update":"","recent_news":"May 19, 2026: DataBank announces CEO succession; Apr 7, 2026: DataBank and Goodman Group partner to open a 32MW AI‑ready data center in Los Angeles.","notable_tenants":"","verified_name":"DataBank HOU5 - Houston Galleria Data Center","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 10+ carriers onsite","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Texas data center sales and use tax exemption (Tax Code §151.3186)","natural_hazard_zone":"FEMA flood risk; hurricane zone"},"2193":{"description":"TRG Datacenters HOU1 is a 45,000 GSF carrier-neutral colocation data center at 2626 Spring Cypress Rd, Spring, TX, operational since 2018 with a 6 MW campus utility capacity. The site is operated by TRG Datacenters and, as of August 2025, is owned by Tallvine Partners.","verified_status":"operational","power_capacity_mw":6,"total_sqft":45000,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TRG Datacenters HOU1","verified_operator":"TRG Datacenters","verified_owner":"Tallvine Partners","cooling_type":"air-cooled","tier_level":"Designed to Tier IV (not Uptime-certified)","fiber_providers":"Carrier-neutral with 16+ carriers including Comcast, AT&T, Lumen, Cogent, Crown Castle, PS Lightwave, Ezee Fiber, Megaport, and MegaIX.","num_buildings":1,"campus_acres":10,"utility_provider":"CenterPoint Energy","tax_incentives":"Texas state sales/use tax exemption (6.25%) for qualifying data centers; TRG’s specific qualification status is not publicly confirmed.","natural_hazard_zone":"Hurricane region; site described as outside the 500-year FEMA floodplain with wind hardening; Critical Load power-restoration priority."},"2194":{"description":"Carrier-neutral colocation data center at 12031 North Freeway in North Houston, online since 2011 with 2N power redundancy, and home to the Houston Internet Exchange (HOUIX).","verified_status":"operational","power_capacity_mw":6,"total_sqft":30000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"FIBERTOWN Houston Data Center","verified_operator":"FIBERTOWN","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"CenterPoint Energy","tax_incentives":"","natural_hazard_zone":"FEMA Zone X; hurricane-prone region"},"2195":{"description":"Carrier-neutral colocation facility at 1001 Texas Ave in downtown Houston, housed within the 13‑story Binz Building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Quasar Data Center (Suite 310)","verified_name":"1001 Texas Data Center","verified_operator":"","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent (on-net at 1001 Texas Ave)","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"hurricane and flood risk (Houston area)"},"2196":{"description":"Data Foundry 01 (Texas 1) is a 130,000 sq ft, 24 MW purpose-built, carrier-neutral colocation data center at 4100 Smith School Road in Austin, Texas.","verified_status":"operational","power_capacity_mw":24,"total_sqft":130000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Data Foundry 01 (Texas 1)","verified_operator":"Data Foundry (a subsidiary of Switch)","verified_owner":"DigitalBridge and IFM Investors (via Switch)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Texas state sales and use tax exemption for qualified data centers (10–15 years, subject to meeting statutory thresholds).","natural_hazard_zone":""},"2197":{"description":"SDC Austin is Sabey Data Centers’ carrier-neutral colocation campus at 1300 Louis Henna Blvd in Round Rock, Texas, offering up to 84 MW and about 603k square feet with support for high-density liquid cooling.","verified_status":"operational","power_capacity_mw":84,"total_sqft":603300,"year_online":"2024","construction_update":"Building A launched in Oct 2024; Building B construction began July 2025 and continued on schedule per the operator’s Q1 2026 update.","recent_news":"Q1 2026: Sabey reported on-time progress for the 54 MW, three-story, liquid-cooling-optimized Building B at SDC Austin.","notable_tenants":"Texas Advanced Computing Center (Horizon supercomputer).","verified_name":"SDC Austin","verified_operator":"Sabey Data Centers","verified_owner":"Sabey Data Center Properties LLC","cooling_type":"liquid","tier_level":"","fiber_providers":"carrier-neutral; Cogent Communications","num_buildings":2,"campus_acres":40,"utility_provider":"","tax_incentives":"City of Round Rock economic development agreement in place; minimum investment thresholds apply, and the facility pays roughly $800,000 per year in property taxes. Incentives funded via the City’s Type B economic development mechanism.","natural_hazard_zone":""},"2198":{"description":"EdgeConneX AUS01 is a hyperscale data center development at 6752 FM 535 in Cedar Creek, TX, currently under construction and planned at 96MW for phase one, with an active Texas TDLR project at the same site.","verified_status":"under-construction","power_capacity_mw":96,"total_sqft":0,"year_online":"unknown","construction_update":"TDLR record shows a project at 8001 Wolf Ln Bldg 2 / 6752 FM 535 with start 2025-08-01 and completion 2026-06-14 (est. cost $440M). The facility is listed as currently under construction.","recent_news":"Aqua Water Supply Corporation executed a Large Volume Service Agreement with DFW33220N, LLC (an EdgeConneX subsidiary) to provide potable water service for the Austin/Cedar Creek development.","notable_tenants":"","verified_name":"EdgeConneX AUS01","verified_operator":"EdgeConneX","verified_owner":"DFW33220N, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":0,"utility_provider":"Bluebonnet Electric Cooperative","tax_incentives":"10-year, 75% Bastrop County property-tax abatement on the increase in assessed value (project-specific agreement with DFW33220N, LLC).","natural_hazard_zone":"FEMA flood Zones B/X (low to moderate risk)"},"2199":{"description":"A planned $500 million, liquid-cooled colocation data center by Colovore at 2351 Innovation Blvd in Hutto, Texas, known as Project Raptor. The project includes a 180,000 sq ft data hall plus 13,000 sq ft of office on a 30-acre site.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":193000,"year_online":"2026","construction_update":"Approved by Hutto City Council in Dec 2024; listed as 'Under Construction' by the Central Texas Data Center Tracker.","recent_news":"The Central Texas Data Center Tracker shows Colovore’s Project Raptor in Hutto as 'Under Construction.'","notable_tenants":"","verified_name":"Colovore Hutto / Project Raptor","verified_operator":"Colovore","verified_owner":"Velocis Hutto Innovation Phase 1, LP","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":30,"utility_provider":"Oncor","tax_incentives":"Potentially eligible for Texas State Sales and Use Tax Exemption for Qualified Data Centers; no specific certification publicly cited.","natural_hazard_zone":"Medium risk (FEMA NRI) for Williamson County, TX; elevated tornado/hail exposure and moderate flood risk."},"2200":{"description":"Operational Lumen colocation/telecom facility at 1825-A Kramer Lane in Austin, also known as Level(3) Austin (Kramer), featuring 44,984 sq ft total space with N+1/precision HVAC and carrier-neutral connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":44984,"year_online":"unknown","construction_update":"","recent_news":"Austin Energy energized the new Kramer Substation on Feb 17, 2026, increasing capacity and reliability in North Austin; no facility-specific Lumen Austin/Kramer updates found in the last six months.","notable_tenants":"","verified_name":"Lumen Austin 2 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Austin Energy","tax_incentives":"","natural_hazard_zone":""},"2201":{"description":"A 20,000 sq ft telecom data center operated by Lumen Technologies at 501 West Overland Avenue in downtown El Paso, offering 6,071 sq ft of raised-floor colocation space and diverse fiber connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":20000,"year_online":"unknown","construction_update":"","recent_news":"Lumen Technologies was named to Fast Company’s 2026 List of the World’s Most Innovative Companies (Mar 24, 2026).","notable_tenants":"Arelion","verified_name":"Lumen El Paso 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"Lumen Technologies","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (Level 3), Arelion; alternate carrier networks available","num_buildings":1,"campus_acres":0.61,"utility_provider":"El Paso Electric","tax_incentives":"","natural_hazard_zone":"High wind risk; flood exposure present per city/FEMA mapping; moderate seismic; low hurricane risk."},"2202":{"description":"CyrusOne SAT4 is a purpose-built wholesale data center at 9655 Raba Drive in San Antonio’s Westover Hills, operating as part of the SAT2–SAT4 campus.","verified_status":"operational","power_capacity_mw":36,"total_sqft":295785,"year_online":"2017","construction_update":"","recent_news":"Feb 2026: Constellation and CyrusOne announced an agreement supporting a new data center facility and totaling over 1,100 MW under contract for CyrusOne data centers in Texas.","notable_tenants":"","verified_name":"CyrusOne SAT4","verified_operator":"CyrusOne","verified_owner":"KKR and Global Infrastructure Partners","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":0,"utility_provider":"CPS Energy","tax_incentives":"Texas state sales and use tax exemption for qualified data centers (6.25% on eligible items).","natural_hazard_zone":"Moderate flood risk (Westover Hills); low seismic risk"},"2203":{"description":"CloudHQ SAT-1 is a two‑story, 432,800 sq ft hyperscale data center under construction at 15355 Lambda Drive, delivering up to 96 MW within CloudHQ’s SAT campus. The campus spans about 123 acres and is planned for five data centers totaling up to 600 MW.","verified_status":"under-construction","power_capacity_mw":96,"total_sqft":432800,"year_online":"unknown","construction_update":"Construction began October 2025 on SAT1 (432,800 sq ft, 96 MW, $276.8M) at 15355 Lambda Drive.","recent_news":"Apr 29, 2026: Greater Edwards Aquifer Alliance published a report warning about the proliferation of proposed AI data centers over the aquifer.","notable_tenants":"","verified_name":"CloudHQ SAT-1","verified_operator":"CloudHQ","verified_owner":"CloudHQ / Fateh Family Office (FFO)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":5,"campus_acres":123,"utility_provider":"","tax_incentives":"Texas state sales/use tax exemption for qualifying data center equipment and electricity.","natural_hazard_zone":"unknown"},"2204":{"description":"Connect Temple is a 5 MW, ~61.5k sq ft data center developed by Oppidan’s Connect Data Centers at 2325 Eberhardt Rd in Temple, Texas, with a $31M budget and completion targeted for October 2026.","verified_status":"under-construction","power_capacity_mw":5,"total_sqft":61554,"year_online":"2026","construction_update":"Under construction; targeted completion October 2026.","recent_news":"","notable_tenants":"","verified_name":"Connect Temple","verified_operator":"Connect Data Centers (Oppidan)","verified_owner":"Oppidan Investment Company","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":10,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2205":{"description":"Lumen-operated telecom colocation/data center at 4901 Westway Drive, Corpus Christi, TX, with 4,800 sq ft total space and 1,761 sq ft of colocation/whitespace. Public listings do not disclose site MW, PUE, Uptime tier, or generator capacity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4800,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Corpus Christi 1 Data Center","verified_operator":"Lumen Technologies (Lumen)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen","num_buildings":1,"campus_acres":0.46,"utility_provider":"AEP Texas","tax_incentives":"","natural_hazard_zone":"Hurricane-prone coastal area; precise FEMA flood zone unknown"},"2206":{"description":"A small Lumen-operated colocation facility at 1502 Avenue North in Lubbock, Texas, offering 5,000 sq ft total space with 1,705 sq ft of colocation.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"Feb 25, 2026: Lumen held its 2026 Investor Day, marking a “new phase of transformation.”","notable_tenants":"","verified_name":"Lumen Lubbock 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Lubbock Power & Light (LP&L)","tax_incentives":"","natural_hazard_zone":"Moderate overall hazard: county risk score 39% with 19 disasters in 20 years; city flood zones occur adjacent to playa lakes and the Canyon."},"2207":{"description":"Modular edge data center in Victoria, Texas operated by Duos Edge AI to serve Region 3 Education Service Center and 37 school districts, located at the former Region III Education Center campus at 1905 Leary Ln.","verified_status":"operational","power_capacity_mw":0,"total_sqft":715,"year_online":"2026","construction_update":"","recent_news":"Open house held mid-May 2026 to showcase the Victoria Edge Data Center serving Region 3 school districts.","notable_tenants":"Region 3 Education Service Center; 37 school districts in Region 3.","verified_name":"Victoria Edge Data Center","verified_operator":"Duos Edge AI, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Hurricane and flood risk; low seismic risk"},"2208":{"description":"A large telecom data center at 1876–1890 Data Drive in Hoover, Alabama, built in 1976 with about 920,000 sq ft of space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":920000,"year_online":"1976","construction_update":"","recent_news":"May 2026: Hoover tightened its zoning process for new data centers; the city noted no pending applications and referenced an existing AT&T data center in Hoover.","notable_tenants":"AT&T (enterprise use)","verified_name":"AT&T Regional Data Center","verified_operator":"AT&T South","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":38,"utility_provider":"Alabama Power","tax_incentives":"Alabama offers abatements for data centers investing over $400M and meeting job thresholds; no site-specific incentive disclosed.","natural_hazard_zone":"unknown"},"2209":{"description":"C Spire-operated colocation data center at 201 Summit Parkway in the Birmingham/Homewood market, originally associated with TekLinks before C Spire’s 2018 acquisition. The retrofit facility totals about 31,850 sq ft and maintains N+1 generator redundancy.","verified_status":"operational","power_capacity_mw":0,"total_sqft":31850,"year_online":"unknown","construction_update":"","recent_news":"Homewood passed a temporary moratorium on new data centers on 2026-06-23.","notable_tenants":"","verified_name":"C Spire Birmingham Data Center","verified_operator":"C Spire","verified_owner":"Telepak Networks, Inc. (C Spire affiliate)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Alabama Power","tax_incentives":"","natural_hazard_zone":"unknown"},"2210":{"description":"UAB Technology Innovation Center is an operational enterprise data center and research-computing facility at 1701 9th Ave S that opened in 2021; the 37,500‑sf, $26.5M building houses UAB’s SOC, NOC, and the Cheaha supercomputer. Project coverage also notes use of a battery system instead of conventional generators.","verified_status":"operational","power_capacity_mw":0,"total_sqft":37500,"year_online":"2021","construction_update":"","recent_news":"","notable_tenants":"UAB IT Security Operations Center; UAB IT Network Operations Center; UAB’s Cheaha supercomputer/research-computing users.","verified_name":"UAB Technology Innovation Center","verified_operator":"University of Alabama at Birmingham (UAB IT)","verified_owner":"The Board of Trustees of The University of Alabama System / University of Alabama at Birmingham","cooling_type":"chilled water","tier_level":"","fiber_providers":"UAB campus network / research network; DC BLOX interconnection for research computing is documented, but facility-specific carrier/fiber providers were not publicly listed.","num_buildings":1,"campus_acres":0,"utility_provider":"Alabama Power","tax_incentives":"","natural_hazard_zone":""},"2211":{"description":"A 300 MW hyperscale AI data center being developed by Nebius at 201–260 Milan Parkway in Birmingham’s Oxmoor area, on the former Regions Lakeshore Operations Center campus.","verified_status":"under-construction","power_capacity_mw":300,"total_sqft":0,"year_online":"unknown","construction_update":"Active permits issued (about $40M) and residents asked a judge to halt construction in mid-May 2026.","recent_news":"Late June 2026: local authorities approved a package valued around $3.2B over 30 years for the project, including 65% non-education property tax and 80% construction sales/use tax abatements.","notable_tenants":"","verified_name":"Nebius Birmingham AI Factory (DCFL BHM01)","verified_operator":"Nebius Group N.V.","verified_owner":"Alabama ADC Holdings LLC (Nebius affiliate)","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":75,"utility_provider":"","tax_incentives":"65% abatement on non-education property taxes for up to 30 years; 80% abatement on construction-related sales and use taxes for up to 30 years; package value reported around $3.2 billion over 30 years.","natural_hazard_zone":"FEMA Zone AE (100-year flood risk) area; tornado-prone region."},"2212":{"description":"Evocative Emeryville Data Center (OAK1) is an operational colocation facility at 1400 65th Street, Suite 150, Emeryville, CA, with about 15,042 sq ft of data center space and 600 kW of provisioned UPS power.","verified_status":"operational","power_capacity_mw":0.6,"total_sqft":15042,"year_online":"unknown","construction_update":"","recent_news":"Jan 28, 2026: The EmeryTech property at 1400 65th Street was being marketed for sale by Newmark.","notable_tenants":"","verified_name":"Evocative Emeryville Data Center (OAK1)","verified_operator":"Evocative","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0,"utility_provider":"Pacific Gas and Electric (PG&E)","tax_incentives":"","natural_hazard_zone":"FEMA Zone X flood risk; significant seismic liquefaction hazard (Hayward Fault M7.1 scenario)."},"2213":{"description":"Fortress SF1: San Francisco is an operational colocation/edge meet‑me‑room facility at 274 Brannan Street in San Francisco’s SoMa/South Beach area, operated by Fortress Data Centers. The historic building is seismically retrofitted and offers approximately 105,325 sq ft with marketed power up to 3 MW.","verified_status":"operational","power_capacity_mw":3,"total_sqft":105325,"year_online":"2015","construction_update":"","recent_news":"No facility-specific news in the last 6 months; a June 15, 2026 LoopNet/JLL listing offers office space at 274 Brannan St.","notable_tenants":"","verified_name":"Fortress SF1: San Francisco","verified_operator":"Fortress Data Centers","verified_owner":"Harvest Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Seismic risk; facility building has significant seismic retrofits. FEMA flood zone: unknown."},"2214":{"description":"A carrier-neutral colocation data center at 4700 Old Ironsides Drive in Santa Clara operated by Csquare, offering about 90,139 sq ft and around 6 MW of capacity with multiple network providers.","verified_status":"operational","power_capacity_mw":6,"total_sqft":90139,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Csquare SFO2-A Santa Clara Data Center","verified_operator":"Csquare","verified_owner":"Brookfield Infrastructure Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; carriers include Zayo, Verizon, CenturyLink.","num_buildings":1,"campus_acres":6.53,"utility_provider":"Silicon Valley Power (SVP)","tax_incentives":"","natural_hazard_zone":""},"2215":{"description":"Small colocation/fiber site listed by Datacenters.com as Crown Castle’s Professional Park Boulevard Data Center at 20761 Professional Park Boulevard, Georgetown, DE; following Crown Castle’s May 1, 2026 sale of its Fiber Solutions business, operations likely transitioned to Zayo while some directories still show the legacy Crown Castle name.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1980,"year_online":"unknown","construction_update":"","recent_news":"May 1, 2026: Crown Castle closed the sale of its Fiber Solutions business to Zayo and its Small Cell business to EQT/Arium, making Crown Castle a pure-play tower company; this likely transitions any related fiber/colo operations to Zayo.","notable_tenants":"","verified_name":"Crown Castle Professional Park Boulevard Data Center","verified_operator":"Zayo Group","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2216":{"description":"Planned industrial/business park at the Frightland site that may include data centers, tied to the St. Georges Business Park/Lighthouse Farms project; the exploratory plan outlines multiple large buildings on a sizable tract near Port Penn Road.","verified_status":"planned","power_capacity_mw":0,"total_sqft":3241000,"year_online":"unknown","construction_update":"Exploratory Major Land Development Plan dated Nov. 17, 2025 under county review; DNREC notice (May 28, 2025) for proposed pump stations/force main to serve the project.","recent_news":"","notable_tenants":"","verified_name":"St. Georges Business Park & Lighthouse Farms (Frightland site)","verified_operator":"unknown","verified_owner":"Parkway Gravel, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":1362.0708,"utility_provider":"Delmarva Power","tax_incentives":"","natural_hazard_zone":"Wetlands and some floodplain on site; area subject to regional flood-risk concerns (Port Penn flood study; St. Georges minor flood risk)."},"2217":{"description":"CAPS Shelton is a colocation and disaster‑recovery data center operated by Computer Alternative Processing Sites, Inc. at 2 Enterprise Drive in the Enterprise Corporate Park, Shelton, Connecticut. In operation since 1995, the hardened facility provides colocation and business continuity services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"1995","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CAPS Shelton","verified_operator":"Computer Alternative Processing Sites, Inc. (CAPS)","verified_owner":"R.D. Scinto, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"United Illuminating","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (low flood risk)"},"2218":{"description":"Colocation data center at 66 Hawley Rd, Oxford, CT operated by SteelVault Data Centers; listed as a secure facility and active location in industry directories.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SteelVault OX-1 / SteelVault Oxford Data Center","verified_operator":"SteelVault Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Townwide: inland flooding (mapped floodplains), hurricane/high winds/tornadoes, and winter storms; seismic risk low-to-moderate. Parcel-specific FEMA flood zone not verified."},"2219":{"description":"Gotspace Norwich - Building 1 is a planned 32 MW hyperscale data center at 334 Plain Hill Rd, Norwich, CT, developed by Gotspace Data Partners as part of the three-building Gotspace Norwich Campus. As of July 2026, it remains planned with no verified construction timeline.","verified_status":"planned","power_capacity_mw":32,"total_sqft":0,"year_online":"unknown","construction_update":"No evidence of construction; listed as Planned.","recent_news":"May 26, 2026: GoNetspeed announced plans to connect Norwich to its fiber network.","notable_tenants":"","verified_name":"Gotspace Norwich - Building 1","verified_operator":"Gotspace Data Partners","verified_owner":"Gotspace Data Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"Frontier; GoNetspeed","num_buildings":3,"campus_acres":0,"utility_provider":"Norwich Public Utilities","tax_incentives":"Connecticut Public Act 21-1 (HB 6514) data center tax incentive program offering sales/use and property tax exemptions for qualified data centers; project participation for this site is not confirmed.","natural_hazard_zone":"Low flood risk (Flood factor Minimal); low wildfire risk"},"2220":{"description":"Operational ColoBarn colocation facility at 8905 S Beck Avenue in Tempe with about 28,000 sq ft total space (18,000 sq ft raised floor) and approximately 2 MW capacity, featuring N+1 power and cooling resilience.","verified_status":"operational","power_capacity_mw":2,"total_sqft":28000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Omnis Network clients (migrated to Tempe facility); MPI Teleservices (customer testimonial).","verified_name":"ColoBarn Phoenix Colocation & Data Center","verified_operator":"ColoBarn","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2221":{"description":"Carrier-neutral colocation data center operated by phoenixNAP at 2353 W University Dr in Tempe, Arizona.","verified_status":"operational","power_capacity_mw":6.5,"total_sqft":100000,"year_online":"unknown","construction_update":"","recent_news":"Mar 2026: RadiusDC announced a deal to acquire phoenixNAP’s Phoenix data center and colocation business at 3402 E University Dr (Phoenix I campus); the West University Tempe site is not included.","notable_tenants":"","verified_name":"PhoenixNAP West University","verified_operator":"phoenixNAP","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center Program","natural_hazard_zone":"unknown"},"2222":{"description":"A small colocation facility at 1919 W Lone Cactus Dr in North Phoenix, now operated as the NexusTek Phoenix Data Center following NexusTek’s 2017 acquisition of CyberTrails; directories note ~6,000 sq ft of data hall space within a 16,000-sq-ft industrial building on a 0.98-acre site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":16000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"NexusTek Phoenix Data Center","verified_operator":"NexusTek","verified_owner":"Rancho Sierra Vista Holdings LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.98,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2223":{"description":"The Research Data Center (RDC) is a 1,200 sq ft, chilled-water-cooled data hall in the UArizona Computer Center that houses centrally managed high-performance computing systems; a separate 1,900 sq ft co-location room supports air-cooled researcher equipment.","verified_status":"operational","power_capacity_mw":1.192,"total_sqft":1200,"year_online":"unknown","construction_update":"","recent_news":"On 4 Jun 2026, UITS announced a buy-in program for a new on-prem HPC cluster (40 CPU nodes, two 8-GPU H200 nodes, one 3 TB high-memory node, InfiniBand) that will be installed in the RDC in fall 2026.","notable_tenants":"University of Arizona research groups (internal users only)","verified_name":"Research Data Center (RDC)","verified_operator":"University Information Technology Services (UITS), University of Arizona","verified_owner":"University of Arizona","cooling_type":"chilled water","tier_level":"","fiber_providers":"UArizona core network; Sun Corridor Network; Internet2","num_buildings":1,"campus_acres":0,"utility_provider":"Tucson Electric Power (TEP)","tax_incentives":"","natural_hazard_zone":"unknown"},"2224":{"description":"A small colocation data center operated by Phoenix Internet (by Wi‑Fiber) at 2922 W Clarendon Ave in Phoenix, offering cabinet/server colocation with InRow cooling and modular N+2 backup power in a single‑story industrial building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":14515,"year_online":"unknown","construction_update":"","recent_news":"Phoenix Internet was acquired by Wi‑Fiber in June 2025.","notable_tenants":"","verified_name":"Phoenix Internet","verified_operator":"Phoenix Internet (by Wi-Fiber)","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; blended IP with diverse fiber paths; copper/fiber Ethernet handoffs.","num_buildings":1,"campus_acres":0.8,"utility_provider":"APS (Arizona Public Service)","tax_incentives":"","natural_hazard_zone":"low risk"},"2225":{"description":"TierPoint’s Newton Data Center is a colocation facility at 403 West 4th St. N in Newton, Iowa, within the historic Legacy Plaza campus near downtown.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Newton Data Center","verified_operator":"TierPoint","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Alliant Energy","tax_incentives":"Iowa Data Center Sales and Use Tax Incentives (subject to eligibility and minimum investment thresholds).","natural_hazard_zone":"unknown"},"2226":{"description":"A Verizon Business standard telecom data center at 4500 Carlisle Rd, Pleasant Hill, IA 50327 that supports Verizon’s network; the building at this address was built in 1990.","verified_status":"operational","power_capacity_mw":0,"total_sqft":27608,"year_online":"1990","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Business - Standard DC Pleasant Hill","verified_operator":"Verizon Business","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":0,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa data center sales and use tax exemptions","natural_hazard_zone":"unknown"},"2227":{"description":"Master-planned, wholesale data center campus in Altoona, Iowa, developed by Tract; the fully entitled site spans about 453 acres for future build-out.","verified_status":"planned","power_capacity_mw":1000,"total_sqft":0,"year_online":"unknown","construction_update":"Entitlements/land acquisition complete: Development Agreement on the City’s June 2, 2025 agenda; Tract announced the site is fully entitled on Sept 9, 2025. No verified permits or construction start.","recent_news":"","notable_tenants":"","verified_name":"Altoona Technology Park","verified_operator":"Tract","verified_owner":"Tract (via IALCO Polk County LLC, IALCO Polk County Two LLC, and IALCO Polk County Three LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":453,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2228":{"description":"Windstream’s Lafayette, IN data center at 2304 Brothers Drive is a small telecom/colocation site offering about 1,500 sq ft of colo space with standard carrier connectivity and enterprise features.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream: Lafayette, IN Data Center","verified_operator":"Windstream","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream; diverse fiber entrances (others not named)","num_buildings":1,"campus_acres":1.56,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2229":{"description":"Google’s Michigan City Data Center (Project Maize) is an under‑construction hyperscale redevelopment of the former Federal‑Mogul facility at 402 Royal Road, totaling about 400,827 sq ft on 67.35 acres, with investment reported around $832 million.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":400827,"year_online":"2027 (expected)","construction_update":"Under development; in March 2026 the state approved an air permit request that included 70 diesel emergency generators (66 large, 4 smaller).","recent_news":"June 23, 2026: IUOE Local 150 filed an emergency intervention at the Indiana Utility Regulatory Commission regarding NIPSCO’s service arrangement for Google’s Michigan City data center project.","notable_tenants":"Google","verified_name":"Michigan City Data Center (Project Maize)","verified_operator":"Google","verified_owner":"Google","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":67.35,"utility_provider":"NIPSCO","tax_incentives":"State incentives reportedly over $42M; local abatements around $29.5M, with city tax abatement actions approved for the site.","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard between 100‑ and 500‑year limits)."},"2230":{"description":"Operational colocation and business‑continuity data center at 620 West Coliseum Blvd in Fort Wayne, offering connectivity and cloud services and described as a disaster‑resistant concrete bunker.","verified_status":"operational","power_capacity_mw":0,"total_sqft":27062,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Indiana Data Center (INDDC)","verified_operator":"Indiana Data Center","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Indiana Michigan Power","tax_incentives":"","natural_hazard_zone":"low risk"},"2231":{"description":"Planned wholesale data center campus by PowerTransitions at the former Quindaro Power Station site in Kansas City, KS, with about 1,524,000 gross sq ft and a total investment of $2.4 billion.","verified_status":"planned","power_capacity_mw":300,"total_sqft":1524000,"year_online":"2027","construction_update":"Pre-development/site-readiness with phased enablement; Phase 1 power availability targeted for Q1 2027 per the development timeline.","recent_news":"June 8, 2026 local coverage highlighted ongoing scrutiny of data center proposals, noting the Quindaro-adjacent project had no publicly identified tenants and raised questions about water use and on-site recycling.","notable_tenants":"","verified_name":"Quindaro Data Center Campus","verified_operator":"PowerTransitions","verified_owner":"","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0,"utility_provider":"Kansas City Board of Public Utilities (BPU)","tax_incentives":"Kansas SB 98 data center sales/use tax exemption: 20-year state and local sales/use tax exemption for qualified data-center projects with requirements including minimum investment, Kansas FTEs, electricity agreement, and a water plan.","natural_hazard_zone":"FEMA flood risk (zone unknown) near Missouri River"},"2232":{"description":"STACK Infrastructure’s Resilient Tech Park campus in west Shreveport (7340 Greenwood Road) is a planned hyperscale data center for Amazon Web Services, part of Amazon’s $12 billion Louisiana expansion. Local approvals and reporting describe a multi‑building campus totaling about 2.8 million sq ft.","verified_status":"planned","power_capacity_mw":0,"total_sqft":2800000,"year_online":"unknown","construction_update":"SUP approved Dec 2025; program announced Feb 2026; permit challenge dismissed Apr 2026. No public confirmation of vertical construction start.","recent_news":"Apr 20–21, 2026: A Caddo Parish judge dismissed a lawsuit challenging the special-use permit for the Resilient Technology Park data center, clearing the path for the project.","notable_tenants":"Amazon Web Services (AWS)","verified_name":"Stack: Resilient Tech Park Data Center Campus","verified_operator":"STACK Infrastructure","verified_owner":"STACK Infrastructure; pre-development landowner: Franks Investment Company, L.L.C.","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"SWEPCO (Southwestern Electric Power Company / AEP)","tax_incentives":"Louisiana High Impact Jobs Program; Louisiana Data Center Sales Tax Exemption Program.","natural_hazard_zone":""},"2233":{"description":"Lumen Baltimore 4 Data Center is a Lumen-operated colocation site at 601 East Pratt Street in Baltimore’s Inner Harbor. Public listings confirm the location but do not publish dedicated data-hall square footage, power, or other technical specs.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Baltimore 4 Data Center","verified_operator":"Lumen Technologies","verified_owner":"The Cordish Companies","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Maryland Qualified Data Center Sales and Use Tax Exemption may apply if eligibility criteria are met; no facility-specific award verified.","natural_hazard_zone":"Baltimore Inner Harbor nuisance-flood Zone 3; FEMA flood zone not verified."},"2234":{"description":"Enterprise data center at 4710 W Circle Dr NW in Rochester, MN, built for Mayo Clinic and sold to Epic Systems in a $46M sale-leaseback; Mayo remains associated with the site as the “Mayo Clinic Rochester – 4710 Building.”","verified_status":"operational","power_capacity_mw":0,"total_sqft":77176,"year_online":"2012","construction_update":"July 2020 MEP/HVAC and electrical upgrade (~$3.9M) to equipment serving data hall/support spaces.","recent_news":"","notable_tenants":"Mayo Clinic","verified_name":"Mayo Clinic Rochester – 4710 Building","verified_operator":"Epic Hosting LLC (Epic Systems)","verified_owner":"EPIC HOSTING LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":11.05,"utility_provider":"Rochester Public Utilities (RPU)","tax_incentives":"RPU agreement allowed Epic to apply for up to $2.03M in rebates over 10 years related to a new substation project.","natural_hazard_zone":"FEMA Flood Zone B/X (moderate hazard, between 100-year and 500-year flood limits)."},"2235":{"description":"Farmington Technology Park (also referred to as Tract: Farmington Campus) is a planned hyperscale data center campus in Farmington, Minnesota, on the former Fountain Valley Golf Course near 2830 220th St W. City approvals contemplate a multi-building development led by Tract.","verified_status":"planned","power_capacity_mw":708,"total_sqft":2534200,"year_online":"unknown","construction_update":"Site-preparation phase: soil/groundwater testing completed; demolition and environmental cleanup scheduled before broader grading/berming (2027) and city infrastructure improvements (2028).","recent_news":"May 3, 2026: MPR reported new left–right alliances opposing the project; Apr. 29, 2026: local coverage reported Tract closed on the former Fountain Valley Golf Course property for Phase One on Feb. 10, 2026.","notable_tenants":"","verified_name":"Farmington Technology Park (also listed as Tract: Farmington Campus)","verified_operator":"Tract","verified_owner":"MNLCO Farmington, LLC and MNLCO Farmington Two, LLC (Tract affiliates)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":12,"campus_acres":338.35,"utility_provider":"Dakota Electric Association / Great River Energy","tax_incentives":"","natural_hazard_zone":"Floodplain/wetlands present; conservation easement over portions of the Vermillion River area."},"2236":{"description":"Enterprise data center at 40 Stonewood Drive in Freeport, Maine, operated by L.L.Bean, Inc.; the 18,000 sq ft facility achieved LEED Silver certification.","verified_status":"operational","power_capacity_mw":0,"total_sqft":18000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"L.L. Bean, Inc. Stonewood Data Center","verified_operator":"L.L. Bean, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Central Maine Power","tax_incentives":"","natural_hazard_zone":"low risk"},"2237":{"description":"A Peregrine Networks-listed data center at 383 Central Avenue in Dover, New Hampshire, is identified by Datacenters.com, while Peregrine confirms the same address as its Dover location within the historic Cocheco Mills complex.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Peregrine Networks Dover Data Center","verified_operator":"Peregrine Networks","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":0,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"unknown"},"2238":{"description":"Enterprise data center for the North Dakota University System (NDUS), located on the University of North Dakota campus in Grand Forks and created by renovating an existing building. It serves NDUS IT operations and opened in late 2013.","verified_status":"operational","power_capacity_mw":0,"total_sqft":40000,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"North Dakota University System institutions","verified_name":"NDUS/UND Information Technology Data Center","verified_operator":"NDUS Core Technology Services (CTS)","verified_owner":"North Dakota University System / University of North Dakota","cooling_type":"unknown","tier_level":"","fiber_providers":"Midco; Bluepeak; CenturyLink/Lumen","num_buildings":2,"campus_acres":0,"utility_provider":"Xcel Energy (Northern States Power Company)","tax_incentives":"North Dakota Qualified Data Center Sales & Use Tax Exemption (eligibility for this facility not confirmed)","natural_hazard_zone":"FEMA flood risk area with city levee/floodwall and diversion protections (approx. 500-year protection)"},"2239":{"description":"North Dakota State University’s Center for Computationally Assisted Science and Technology (CCAST) is an operational academic research-computing facility providing the state’s largest academic supercomputing resources. It operates on NDSU’s campus at the Research 2 building (1805 NDSU Research Park Dr N, Fargo).","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"CCAST promoted Spring 2026 HPC/GPU workshops as part of its Advanced Research Computing Training Program (posted Jan. 2026).","notable_tenants":"NDSU researchers; researchers at other institutions within the North Dakota University System.","verified_name":"Center for Computationally Assisted Science and Technology (CCAST)","verified_operator":"North Dakota State University — Center for Computationally Assisted Science and Technology (CCAST)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"Earthquake risk: very low; Flood risk: governed by FEMA floodplains in Fargo; Hurricanes: not applicable."},"2240":{"description":"University-operated machine room of the Holland Computing Center inside the Peter Kiewit Institute (PKI) at the University of Nebraska Omaha (1110 S 67th St), documented as 1,800 sq ft with up to 500 kVA UPS/genset-protected power and 160 tons of cooling.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":1800,"year_online":"unknown","construction_update":"","recent_news":"May 2026: HCC announced/deployed the NSF‑funded PLUMAGE GPU resource; reporting does not indicate the PKI machine room as the deployment site.","notable_tenants":"","verified_name":"Holland Computing Center – Peter Kiewit Institute (PKI) machine room","verified_operator":"Holland Computing Center / University of Nebraska","verified_owner":"University of Nebraska","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":70,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"","natural_hazard_zone":""},"2241":{"description":"Sandia National Laboratories’ Building 725 East (725E) is an operational HPC data-center addition on the Albuquerque campus (1515 Eubank SE) that earned LEED v4 Gold BD+C: Data Center certification and began service in 2018 hosting systems like Astra.","verified_status":"operational","power_capacity_mw":0,"total_sqft":15000,"year_online":"2018","construction_update":"","recent_news":"Spectra, the second Vanguard platform at Sandia, achieved full system acceptance in May 2026.","notable_tenants":"Astra; Vanguard","verified_name":"Sandia National Laboratories Building 725 East (725E) Data Center","verified_operator":"National Technology & Engineering Solutions of Sandia, LLC (NTESS) / Sandia National Laboratories","verified_owner":"U.S. Department of Energy / National Nuclear Security Administration (DOE/NNSA)","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Public Service Company of New Mexico (PNM)","tax_incentives":"","natural_hazard_zone":"unknown"},"2242":{"description":"Planned Compass Datacenters hyperscale campus at 255 Stamey Farm Road, Statesville, NC, comprising five data-center buildings totaling about 1.35 million sq ft on roughly 333 acres and marketed around 500 MW near Duke Energy infrastructure.","verified_status":"planned","power_capacity_mw":500,"total_sqft":1350000,"year_online":"2028","construction_update":"Approvals phase in 2025: Planning Board recommendation (Aug 26, 2025), City Council rezoning approval (Oct 6, 2025), and annexation reported (Oct 20, 2025). No construction start publicly documented.","recent_news":"Feb 2026: Duke Energy signed deals with Microsoft and Compass to power expansive data center complexes in North Carolina.","notable_tenants":"","verified_name":"Compass Statesville Data Center","verified_operator":"Compass Datacenters","verified_owner":"Stamey Land Company","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":333,"utility_provider":"Duke Energy","tax_incentives":"","natural_hazard_zone":""},"2243":{"description":"Small Cogent-operated edge data center at 6800 South 65th West Avenue, Tulsa, OK 74131; listed by Cogent as a CDC site and associated public records show a 3,500-sq-ft building on a 0.50-acre parcel.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3500,"year_online":"unknown","construction_update":"","recent_news":"June 29, 2026: Cogent closed the sale of 10 data center facilities to an entity sponsored by I Squared Capital; no site-specific change was verified for the Tulsa edge site.","notable_tenants":"","verified_name":"Cogent Edge Data Center - Tulsa","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications (not carrier-neutral)","num_buildings":0,"campus_acres":0.5,"utility_provider":"","tax_incentives":"Oklahoma statewide sales-tax exemption for qualifying data centers (NAICS 519130, 519290), including electric power and equipment; no site-specific award identified.","natural_hazard_zone":"FEMA Flood Zones B and X (moderate/minimal flood risk)"},"2244":{"description":"A small colocation facility operated by Data Center West, Inc. at 800 Willamette Street in downtown Eugene, offering about 500 sq ft of climate-controlled, carrier-neutral space with direct fiber to the Eugene 53 Central Office.","verified_status":"operational","power_capacity_mw":0,"total_sqft":500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Data Center West - Eugene Data Center","verified_operator":"Data Center West, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Eugene Water & Electric Board (EWEB)","tax_incentives":"","natural_hazard_zone":"seismic (Cascadia Subduction Zone); moderate flood risk"},"2245":{"description":"Carrier-neutral colocation facility of about 2,000 sq ft at 739 Welch St/Dr in Medford, Oregon, operated by Data Center West, Inc., offering cross-connects to multiple carriers.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2000,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Data Center West - Medford","verified_operator":"Data Center West, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.11,"utility_provider":"Pacific Power","tax_incentives":"","natural_hazard_zone":"unknown"},"2246":{"description":"Operator-owned/operated colocation/data center run by IP Services at 2896 Crescent Ave, Suite 201, Eugene, OR, offering managed and colocation services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"IP Services - Eugene Datacenter","verified_operator":"IP Services","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2247":{"description":"State-owned enterprise data center at 550 Airport RD SE, Suite C, Salem, operated by Oregon’s Enterprise Information Services (Data Center Services) to deliver managed IT and colocation for state agencies; also serving as the destination for OSU Open Source Lab’s migration.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Feb 10, 2026: OSU Open Source Lab posted an update on its ongoing move to Oregon’s State Data Center in Salem.","notable_tenants":"Oregon state agencies; Oregon State University Open Source Lab (OSU OSL).","verified_name":"Oregon State Data Center (Enterprise Information Services Data Center Services)","verified_operator":"State of Oregon Enterprise Information Services (EIS) Data Center Services (DCS)","verified_owner":"State of Oregon, Department of Administrative Services (DAS)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Seismic risk: Cascadia Subduction Zone; Flood risk: unknown; No hurricane risk."},"2248":{"description":"Lumen Eugene 1 is a Lumen-operated colocation/network data center at 1745 W. 5th Avenue in Eugene, Oregon, with 7,940 sq ft total space and 1,234 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":7940,"year_online":"unknown","construction_update":"","recent_news":"Oregon lawmakers removed data centers — for now — from a bill expanding enterprise-zone tax breaks (reported March 2, 2026).","notable_tenants":"","verified_name":"Lumen Eugene 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Eugene Water & Electric Board (EWEB)","tax_incentives":"","natural_hazard_zone":"FEMA-mapped flood risk area; exact site flood zone not verified. Seismic risk region; no hurricane risk."},"2249":{"description":"Small colocation/hosting data center operated by Kattare Inc. at 5010 SW Hout St in Corvallis, Oregon, offering colocated power/circuits and approximately 3,000 sq ft of space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3000,"year_online":"1997","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Kattare Corvallis Data Center","verified_operator":"Kattare Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Low overall natural-disaster risk metro, with regional earthquake/flood/wildfire hazards noted; address-specific FEMA flood zone not verified."},"2250":{"description":"Verizon New England telecom wire center/switch (CLLI: EPRVRINB) at 789 N Broadway, East Providence, RI 02914, active per a 2024 Verizon network-change filing; the property is listed at 14,789 sqft. No data-center-specific specs (PUE, tier, power) are publicly available.","verified_status":"operational","power_capacity_mw":0,"total_sqft":14789,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon East Providence North Broadway Wire Center (CLLI: EPRVRINB)","verified_operator":"Verizon New England Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon New England","num_buildings":0,"campus_acres":0,"utility_provider":"Rhode Island Energy (Narragansett Electric Co.)","tax_incentives":"","natural_hazard_zone":"Exact parcel FEMA flood zone not verified; city guidance notes flood-prone areas near North Broadway/Ten Mile River."},"2251":{"description":"Operational Verizon New England central office/wire center at 56 Phenix Ave, Cranston, RI that hosts Verizon fiber-network equipment.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Cranston Central Office (wire center CNTNRIPH)","verified_operator":"Verizon New England Inc. (Verizon)","verified_owner":"Verizon New England Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon fiber network; not publicly documented as carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":"City-level flood and hurricane exposure; address-specific FEMA flood zone unknown"},"2252":{"description":"Verizon New England central office/wire center (CLLI WRRNRIEVDS1) at 37 Everett St in Warren, RI; a telecom switching facility, not a public colocation data center.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Warren central office / wire center (CLLI WRRNRIEVDS1) — Verizon New England","verified_operator":"Verizon New England Inc. d/b/a Verizon Rhode Island","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon New England (ILEC/wire center operator)","num_buildings":0,"campus_acres":0,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":"Coastal flood risk area (verify via FEMA maps); earthquake risk very low."},"2253":{"description":"Verizon New England central office/wire center at 2194 Mineral Spring Ave, North Providence, RI 02911 (CLLI: NPRVRIMSDS1), housing a Northern Telecom DMS‑100–class digital host switch serving local 401 exchanges.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"North Providence Mineral Spring Wire Center (CLLI: NPRVRIMSDS1)","verified_operator":"Verizon New England Inc. (Verizon Communications)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":1.14,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":"FEMA flood zone B/X (moderate flood hazard); flooding is the primary local natural hazard; moderate regional seismic risk."},"2254":{"description":"Operational, carrier-neutral colocation and managed services facility operated by Tech Vault at 21 Gregory Drive in South Burlington, Vermont, recognized for LEED Silver certification and approximately 39,000 sq ft of space.","verified_status":"operational","power_capacity_mw":3,"total_sqft":39000,"year_online":"unknown","construction_update":"","recent_news":"June 2026: South Burlington advanced citywide data-center land-use regulation updates and held a June 23 public hearing.","notable_tenants":"State of Vermont","verified_name":"Tech Vault Vermont / Tech Vault South Burlington","verified_operator":"Tech Vault, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Green Mountain Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard)"},"2255":{"description":"University of Vermont’s enterprise and research-computing data center located in Technology Park at 30 Community Drive, South Burlington. The 4,897 sq ft facility supports UVM systems with redundant power, cooling, and high-speed networking.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4897,"year_online":"2005","construction_update":"","recent_news":"Jun 2026: South Burlington Planning Commission discussed zoning amendments that include data center regulations; no specific mention of UVM’s 30 Community Drive facility.","notable_tenants":"University of Vermont (enterprise and research computing).","verified_name":"Technology Park (Data Center)","verified_operator":"University of Vermont (Enterprise Technology Services / Vermont Advanced Computing Center)","verified_owner":"Technology Park Partners, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":1,"campus_acres":177,"utility_provider":"Green Mountain Power","tax_incentives":"","natural_hazard_zone":"Flood risk (city-level: some properties at risk); property-specific FEMA zone unknown"},"2256":{"description":"Proposed DC BLOX colocation data center at 648 Grassmere Park in South Nashville, directly adjacent to the Nashville Zoo, has drawn significant community pushback and faces a local moratorium effort.","verified_status":"planned","power_capacity_mw":0,"total_sqft":69220,"year_online":"unknown","construction_update":"Permit application submitted but not issued; a proposed moratorium would freeze new data center approvals and construction until late 2026.","recent_news":"In late June 2026, Nashville’s mayor moved to acquire the site via eminent domain, and Metro Codes confirmed the DC BLOX permit application had been submitted but not issued.","notable_tenants":"","verified_name":"DC BLOX Nashville (Grassmere Park)","verified_operator":"DC BLOX","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":24,"utility_provider":"Nashville Electric Service (NES)","tax_incentives":"Tennessee sales tax exemption for certain hardware and software purchased for a qualified data center; minimum capital investment of $100M.","natural_hazard_zone":"Earthquake risk (score 7/10) and local FEMA flood zones present in Nashville."},"2257":{"description":"Lumen El Paso 2 is an operational Lumen Technologies colocation facility located in One San Jacinto Plaza (201 E Main) in downtown El Paso, offering approximately 3,810 sq ft total space with a designated colocation area. Public listings confirm the corrected East Main address and do not disclose power, PUE, or commissioning year.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3810,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen El Paso 2 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":1,"campus_acres":0,"utility_provider":"El Paso Electric","tax_incentives":"","natural_hazard_zone":"Flood risk present (Downtown); Hurricane/cyclone risk low."},"2258":{"description":"Lumen-operated colocation/data center presence in Harlingen, Texas, with a small footprint and telecom POP characteristics. Public directories disagree on whether 514 E Monroe is Harlingen 1 or Harlingen 2.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5208,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Harlingen 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"alternate carrier networks","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Gulf Coast hurricane/wind and coastal-flood exposure; FEMA flood zone for this address not verified; seismic risk very low"},"2259":{"description":"Operational Lumen colocation and network facility at 501 W Texas Avenue, Stratford, TX 79084 (also listed as 501 Texas Street in some directories). Public listings confirm the site and basic specs but with limited technical and capacity disclosures.","verified_status":"operational","power_capacity_mw":0,"total_sqft":20000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Stratford 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Southwestern Public Service Company (Xcel Energy)","tax_incentives":"","natural_hazard_zone":"County-level: minor flood risk; moderate hail/tornado risk; address-level FEMA flood zone not verified."},"2260":{"description":"Edge data center at the Region 16 Education Service Center (5800 Bell St, Amarillo) operated by Duos Edge AI, opened with a grand event on March 18, 2025 in partnership with FiberLight.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2025","construction_update":"","recent_news":"Mar 19–20, 2026: Duos announced a second Amarillo Edge Data Center on Potter County land, separate from the Region 16 site.","notable_tenants":"Region 16 ESC and regional school districts (ESC 16 serves 60 school districts, 3 charter schools, and 226 campuses).","verified_name":"Duos Edge AI - Amarillo EDC","verified_operator":"Duos Edge AI, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"FiberLight","num_buildings":1,"campus_acres":7.7,"utility_provider":"Xcel Energy / Southwestern Public Service Company (SPS)","tax_incentives":"","natural_hazard_zone":"Minor flood risk; low earthquake risk; inland (no hurricane risk)."},"2261":{"description":"Duos Edge AI - Amarillo is a modular, carrier-neutral, SOC 2 edge data center planned at 810–814 S Tyler St on Potter County–owned parking-lot land near the Santa Fe Building in downtown Amarillo.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"2026 (expected)","construction_update":"County approved the downtown lease on Jan 28, 2026; deployment announced in March 2026 with operation expected in the coming months.","recent_news":"Duos announced/deployed its second Amarillo edge data center in March 2026, saying it would be fully operational in the coming months.","notable_tenants":"","verified_name":"Duos Edge AI - Amarillo","verified_operator":"Duos Edge AI, Inc.","verified_owner":"Potter County","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; adjacent to AT&T and AW Broadband","num_buildings":0,"campus_acres":0,"utility_provider":"Xcel Energy / Southwestern Public Service Company","tax_incentives":"","natural_hazard_zone":"Tornado/hail/windstorm exposure; low seismic; site-specific FEMA flood zone unknown"},"2262":{"description":"Smartcom Telephone (MCAL1) is an operational telecom colocation facility in McAllen, TX, listed at 600 Ash Avenue and operated by SmartCom Telephone, LLC. The site offers colocation with continuity features and is reported at 3.0 MW of power capacity.","verified_status":"operational","power_capacity_mw":3,"total_sqft":5080,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Smartcom Telephone (MCAL1)","verified_operator":"SmartCom Telephone, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Smartcom Telephone AS14860 fiber network; peering available with SmartCom; additional carrier backbones not explicitly named.","num_buildings":1,"campus_acres":0.47,"utility_provider":"AEP Texas","tax_incentives":"","natural_hazard_zone":"Low seismic risk; local area flood risk exists; site-specific FEMA flood zone not determined."},"2263":{"description":"Smartcom Telephone (MCAL2) is an operational colocation/telecom data center at 601 Beech Avenue, McAllen, TX, run by SmartCom Telephone, LLC and listed on PeeringDB and Inflect, with a reported 3.0 MW capacity per DC Hub.","verified_status":"operational","power_capacity_mw":3,"total_sqft":10480,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Smartcom Telephone (MCAL2)","verified_operator":"SmartCom Telephone, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"SmartCom-owned fiber network; diverse IP transit and public-IX peering; specific third-party carriers not listed.","num_buildings":1,"campus_acres":2.27,"utility_provider":"AEP Texas","tax_incentives":"","natural_hazard_zone":"low risk"},"2264":{"description":"A 300 MW Bitcoin mining data center at 2001 Mitchell Bend Hwy in Granbury, TX, adjacent to Constellation Energy’s Wolf Hollow gas plant and operated behind-the-meter.","verified_status":"operational","power_capacity_mw":300,"total_sqft":0,"year_online":"2022","construction_update":"","recent_news":"May 2026: Nine residents filed a federal lawsuit over alleged constant noise and health impacts from the Granbury site. June 2026: Reporting highlighted eight data centers that could transform Hood County and ongoing local control debates.","notable_tenants":"MARA Holdings (self-operated Bitcoin mining)","verified_name":"MARA Granbury Data Center","verified_operator":"MARA Holdings, Inc.","verified_owner":"MARA Holdings, Inc.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Constellation Energy (Wolf Hollow II Generating Station, behind-the-meter)","tax_incentives":"","natural_hazard_zone":"Flood risk (AuguRisk score 65)"},"2265":{"description":"Google is developing an owner‑operated hyperscale data center campus at Winding Woods Commerce Park in St. George, SC, known as Project Evergreen and permitted under Gannett Enterprises LLC; the site is under construction with permitting tied to 550 Sugar Hill Road and a separate listing at 4818–4928 US‑78.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Synthetic minor air construction permit issued Dec 19, 2024; project announced Sep 26, 2024.","recent_news":"May 28, 2026: Local media reported a St. George community meeting discussing Google’s Dorchester County data centers.","notable_tenants":"","verified_name":"Google Winding Woods Data Center (Project Evergreen)","verified_operator":"Google","verified_owner":"Google (via Gannett Enterprises LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":206,"utility_provider":"Edisto Electric Cooperative","tax_incentives":"Fee‑in‑Lieu of Tax (FILOT) incentives via 2024 county ordinances.","natural_hazard_zone":"Minor flood risk; hurricane/severe weather region."},"2266":{"description":"Lumen-operated telecom/colocation PoP inside the Spartanburg Business Technology Center at 145 N Church St, with a Lumen Spartanburg 1 suite of about 4,212 sq ft and roughly 1.5 MW power available.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":110661,"year_online":"unknown","construction_update":"","recent_news":"The 145 N Church St property is being marketed for sale in 2026; no Lumen facility-specific updates in the last six months.","notable_tenants":"","verified_name":"Lumen Spartanburg 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"Spartanburg Business Technology Center, L.P.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":1.88,"utility_provider":"Duke Energy Carolinas","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (city-level), moderate flood risk"},"2267":{"description":"Valara Holdings High Performance Compute Center (Project MOC-1) is a $2.8B high‑performance computing facility under development by NorthMark Strategies via subsidiary Valara at 4000 S Pine St (the former Kohler site) in Spartanburg, SC.","verified_status":"under-construction","power_capacity_mw":50.5,"total_sqft":0,"year_online":"2026 (expected)","construction_update":"Under construction; SCDES issued Synthetic Minor Air Construction Permit CP‑50000316 (Sept 17, 2025).","recent_news":"SCDES held a June 2026 public hearing on Valara’s air permit expansion; Spartanburg County also enacted a one‑year pause on new data‑center applications that excludes this project.","notable_tenants":"","verified_name":"Valara Holdings High Performance Compute Center (Project MOC-1)","verified_operator":"Valara Holdings (subsidiary of NorthMark Strategies)","verified_owner":"Valara Holdings","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"On-site natural-gas self-generation; Spartanburg Water (water/wastewater)","tax_incentives":"Spartanburg County FILOT agreements approved for Project MOC‑1.","natural_hazard_zone":"low risk"},"2268":{"description":"Resilience GSP is a planned wholesale data center by Overwatch Capital at 578 Robinson Rd, Greer, SC, marketed with a prospective capacity of 400 MW.","verified_status":"planned","power_capacity_mw":400,"total_sqft":0,"year_online":"unknown","construction_update":"Listed as a planned site; no public permitting or groundbreaking milestones found in the provided sources.","recent_news":"","notable_tenants":"","verified_name":"Resilience GSP","verified_operator":"Overwatch Capital","verified_owner":"PRP","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Duke Energy","tax_incentives":"South Carolina’s general sales and use tax exemption for qualifying data centers (computer equipment, software, and electricity directly used in datacenter operations).","natural_hazard_zone":"FEMA Flood Zone AE"},"2269":{"description":"Enterprise data center on the Martinsburg VA Medical Center campus, built as a 66,000-sf standalone facility that is part of the VA National Data Center network.","verified_status":"operational","power_capacity_mw":0,"total_sqft":66000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"PayVA (Debt Management Center) server farm; VA OIT workloads.","verified_name":"Capital Region Readiness Center (CRRC) — VAMC Martinsburg","verified_operator":"U.S. Department of Veterans Affairs","verified_owner":"U.S. Department of Veterans Affairs","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Potomac Edison (FirstEnergy)","tax_incentives":"","natural_hazard_zone":"unknown"},"2270":{"description":"A 14,000‑sq‑ft state‑of‑the‑art computing facility under construction on NETL’s Morgantown campus to consolidate campus data centers and host advanced capabilities including Cerebras WSE expansion space, a visualization center, collaboration areas, and enterprise/HPC resources such as the Joule supercomputer.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":14000,"year_online":"unknown","construction_update":"Construction underway as of May–June 2025.","recent_news":"Apr 7, 2026: third‑party tracking page lists NETL as operator and the Morgantown campus address, reflecting continued construction tracking.","notable_tenants":"","verified_name":"NETL Computational Science & Engineering (CSE) Center","verified_operator":"National Energy Technology Laboratory (NETL)","verified_owner":"U.S. Department of Energy","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Mon Power (FirstEnergy)","tax_incentives":"","natural_hazard_zone":"unknown"},"2271":{"description":"Planned Silicon Foundation West Virginia data center and modular data-center production campus at the former Centre Foundry site, 74 Warwood Ave, Wheeling, WV. Reports indicate an initial 10 MW phase and a longer-term ambition up to 100 MW on a ~15-acre property with about 60,000 sq ft of existing buildings.","verified_status":"planned","power_capacity_mw":100,"total_sqft":60000,"year_online":"unknown","construction_update":"Property acquired for about $1.5 million; early-stage planning and phasing discussions, no active construction reported.","recent_news":"June 2026: Officials clarified the Warwood facility will build modules for data centers and confirmed the $1.5M property purchase; plans for a phased rollout were discussed.","notable_tenants":"","verified_name":"Silicon Foundation West Virginia","verified_operator":"Silicon Foundation Energy Inc.","verified_owner":"Silicon Foundation Energy Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":15,"utility_provider":"Appalachian Power","tax_incentives":"West Virginia High Impact Data Center Program (HB 2014); special property tax treatment for qualifying data centers (salvage value basis).","natural_hazard_zone":"FEMA flood zone unknown; riverine flood exposure in Wheeling (Ohio River)."},"2272":{"description":"Cloudnium’s Port Edwards Data Center at 141 Market Ave is a Midwest edge/colocation site marketed with 500 kW service and a 4,120 sq ft building footprint. Legacy listings identify the same address as CyberOne Data, positioned as a Tier II facility.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":4120,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Port Edwards Data Center (Cloudnium)","verified_operator":"Cloudnium LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream; Spectrum; AT&T; GTT","num_buildings":1,"campus_acres":0.18,"utility_provider":"Alliant Energy","tax_incentives":"","natural_hazard_zone":"unknown"},"2273":{"description":"Small operational colocation/hosting facility at 401 Host Dr., Lake Geneva, WI, run by Bella Mia (Mia.net/HostDrive), offering cabinet/1U colocation with redundant power and multi-homed connectivity in a ~4,592 SF office building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4592,"year_online":"unknown","construction_update":"","recent_news":"Property at 401 Host Dr. was listed for sale on March 6, 2026 ($859,000) with other brokerages showing $799,500 in subsequent updates.","notable_tenants":"","verified_name":"Bella Mia – Lake Geneva Data Center","verified_operator":"Bella Mia, Inc. (d/b/a Mia.net / HostDrive.com)","verified_owner":"Peter David Volpendesta and Gail S. Volpendesta","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T; Cogent; TW Telecom; Spectrum; Level 3; NTT","num_buildings":1,"campus_acres":1.001,"utility_provider":"Alliant Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"2274":{"description":"Operational colocation data center at 432 Midland Road, Janesville, WI, marketed as ddCloud – Janesville Data Center and reported as constructed in 2009.","verified_status":"operational","power_capacity_mw":0,"total_sqft":22000,"year_online":"2009","construction_update":"","recent_news":"On April 15, 2026, One Call completed its acquisition of Data Dimensions.","notable_tenants":"","verified_name":"ddCloud – Janesville Data Center","verified_operator":"Data Dimensions (ddCloud), a subsidiary of One Call","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":2.95,"utility_provider":"Alliant Energy","tax_incentives":"","natural_hazard_zone":"unknown"},"2275":{"description":"OFFSITE – Kenosha (Alpha & Beta datacenter) is an operational colocation facility at 3618 7th Ave, Kenosha, WI, run by OFFSITE LLC. The campus comprises two buildings totaling about 50,000 sq ft with 5 MW capacity and diverse utility feeds.","verified_status":"operational","power_capacity_mw":5,"total_sqft":50000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"OFFSITE – Kenosha (Alpha & Beta datacenter)","verified_operator":"OFFSITE LLC","verified_owner":"OFFSITE LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":4.99,"utility_provider":"We Energies (Wisconsin Electric)","tax_incentives":"","natural_hazard_zone":"unknown"},"2276":{"description":"Ethoplex Data Center is an operational colocation/interconnection facility operated by Ethoplex, LLC at N115W19150 Edison Dr, Germantown, WI 53022, offering up to 13,000 sq ft of data center space and a reported 3.0 MW power capacity.","verified_status":"operational","power_capacity_mw":3,"total_sqft":13000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Ethoplex Data Center","verified_operator":"Ethoplex, LLC","verified_owner":"Techplex LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"We Energies","tax_incentives":"No facility-specific incentive verified. Wisconsin’s data center exemption requires WEDC certification; purchases before certification are not eligible.","natural_hazard_zone":"FEMA flood mapping updated Feb 20, 2026 for Germantown; regional risks include flooding and severe storms; seismic/hurricane risk low. Address-specific FEMA zone: unknown."},"2277":{"description":"Small operational Cogent colocation facility at 2915 South 5th Court in Milwaukee offering 5,831 sq ft, carrier-neutral connectivity, HVAC environment, and multiple power options including UPS and backup generators.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5831,"year_online":"unknown","construction_update":"","recent_news":"Cogent Communications closed the sale of 10 data center facilities on June 29, 2026.","notable_tenants":"","verified_name":"Cogent Data Center - Milwaukee 2","verified_operator":"Cogent Communications","verified_owner":"US Sprint Communications Co.","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; Cogent present.","num_buildings":0,"campus_acres":1.56,"utility_provider":"We Energies","tax_incentives":"","natural_hazard_zone":""},"2278":{"description":"Aventus Lakes is an operational colocation data center operated by Aventus Data Centers at 7901 W Clinton Ave, Milwaukee, with approximately 26,432 sq ft; Aventus acquired the site on November 2, 2022.","verified_status":"operational","power_capacity_mw":0,"total_sqft":26432,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aventus Lakes","verified_operator":"Aventus Data Centers","verified_owner":"Aventus Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"We Energies","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard)"},"2279":{"description":"Massive Networks - Boulder is a colocation data center within The Colorado Building at 1919 14th St in downtown Boulder, CO, operated by Massive Networks. The site traces back to RockyNet at this address and continued under Massive Networks after their 2016 merger, offering colocation and cross-connect services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"1996","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Massive Networks - Boulder","verified_operator":"Massive Networks","verified_owner":"W.W. Reynolds Companies","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.36,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard, between 100-year and 500-year floodplain)"},"2280":{"description":"Enterprise data center for JPMorgan Chase at 23505 E 6th Ave, Aurora, CO, operational with 24.224 MW capacity, approximately 250,000 sq ft, and an estimated $100M build cost, opened in 2019.","verified_status":"operational","power_capacity_mw":24.224,"total_sqft":250000,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"JPMorgan Chase (enterprise/internal use)","verified_name":"JP Morgan Aurora Data Center","verified_operator":"JPMorgan Chase","verified_owner":"JPMorgan Chase Bank (JPMorgan Chase & Co.)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"$11 million received at development; current active status not verified","natural_hazard_zone":""},"2281":{"description":"Single-tenant, single‑story enterprise data center at 11525 Main Street, Broomfield, CO, totaling 92,800 sq ft with 62,000 sq ft of data center space; TIAA is the tenant/operator and Landmark Dividend is the owner.","verified_status":"operational","power_capacity_mw":4,"total_sqft":92800,"year_online":"unknown","construction_update":"","recent_news":"LoopNet shows office space at 11525 Main St., Broomfield, CO available for sublease as of June 15, 2026.","notable_tenants":"TIAA","verified_name":"TIAA: Broomfield Data Center","verified_operator":"TIAA","verified_owner":"Landmark Dividend","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"low seismic"},"2282":{"description":"American Honda’s enterprise data center in Longmont, Colorado, at 2501 Clover Basin Dr., is a ~67,045 sq ft facility on an 11.53-acre site and achieved LEED Silver in 2008.","verified_status":"operational","power_capacity_mw":0,"total_sqft":67045,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"American Honda Motor Co. (enterprise use only).","verified_name":"American Honda Motor Company Data Center","verified_operator":"American Honda Motor Co., Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":11.53,"utility_provider":"Longmont Power & Communications","tax_incentives":"","natural_hazard_zone":"unknown"},"2283":{"description":"A 267,177-square-foot data center and office facility at 12121 Grant Street in Thornton, Colorado, marketed with 7 MW of power.","verified_status":"operational","power_capacity_mw":7,"total_sqft":267177,"year_online":"unknown","construction_update":"","recent_news":"June 2026: The 12121 Grant Street data center and office property was listed for sale at $28 million.","notable_tenants":"MYR Group / Sturgeon Electric (Suite 610); historically Avaya.","verified_name":"Grant St Data Center (aka Thornton Data Center)","verified_operator":"Morgan Reed Group","verified_owner":"Morgan Reed Inc","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (outside 100-year floodplain)"},"2284":{"description":"EdgeCore PH02 is a hyperscale data center under construction at 3856 S Everton Terrace in Mesa, Arizona. The 868,431 sq ft, 108 MW facility is built for cloud/AI workloads and uses an air-cooled design with closed-loop chilled water; it topped out in December 2024 and is targeting a 2026 go-live.","verified_status":"under-construction","power_capacity_mw":108,"total_sqft":868431,"year_online":"2026","construction_update":"Topped out December 2024; interior and systems build-out ongoing toward 2026 delivery.","recent_news":"March 2026: EdgeCore scaled back its Mesa campus plan to 1.2 million sq ft to accommodate SRP infrastructure; planners approved the change.","notable_tenants":"","verified_name":"EdgeCore PH02","verified_operator":"EdgeCore Digital Infrastructure","verified_owner":"Partners Group (via EdgeCore Internet Real Estate, LLC)","cooling_type":"hybrid","tier_level":"","fiber_providers":"Cox Enterprises","num_buildings":0,"campus_acres":84,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center Program: 10-year TPT/sales & use tax exemptions on qualifying equipment and construction; additional 10-year incentive for facilities meeting green building standards.","natural_hazard_zone":"FEMA Zone X (low risk)"},"2285":{"description":"EdgeCore PH02 is a large-scale, multi-story wholesale data center under construction at 3856 S Everton Terrace in Mesa, Arizona, within EdgeCore’s Phoenix/Mesa campus. The building topped out in December 2024 and is expected to be fully operational in 2026.","verified_status":"under-construction","power_capacity_mw":108,"total_sqft":868431,"year_online":"2026","construction_update":"PH02 topped out on December 4, 2024; interior fit-out is underway toward a 2026 operational date.","recent_news":"March 2026: EdgeCore scaled back its Mesa data center campus plans by approximately 800,000 square feet, with the proposal moving through Mesa planning review.","notable_tenants":"","verified_name":"EdgeCore PH02","verified_operator":"EdgeCore Digital Infrastructure","verified_owner":"EdgeCore Internet Real Estate, LLC","cooling_type":"hybrid","tier_level":"Tier III","fiber_providers":"Cox Business; SRP Telecom; Lumen (CenturyLink)","num_buildings":1,"campus_acres":84,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center Program: 10-year TPT/sales/use tax exemptions plus an additional 10-year green building incentive.","natural_hazard_zone":"FEMA Zone X (minimal flood risk)"},"2286":{"description":"UV&S Technology operates a Wichita site at 707 E. 33rd St. N. that markets data center and colocation services, with the location publicly listed on the company’s pages.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"UV&S Technology Wichita (707 E. 33rd St. N.)","verified_operator":"UV&S Technology","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":1,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"FEMA flood zone: unknown; severe storm/tornado exposure; not in a hurricane zone."},"2287":{"description":"A $100 million AI innovation campus at 3030 Barrow St. in Houma, Louisiana, is being developed by Neuro.io (powered by MindMaze AI). The multi-phase facility will host AI research, neuro-device manufacturing and future data-center capacity, with initial occupancy targeted for 2026.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":53214,"year_online":"2026","construction_update":"Construction commenced in fall 2025; facility remains under development mid-2026 with an 18–24-month build schedule.","recent_news":"","notable_tenants":"Neuro.io (sole occupant)","verified_name":"Neuro.io BrainHUB Innovation Campus","verified_operator":"Neuro.io (powered by MindMaze AI)","verified_owner":"Neuro.io","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T Fiber","num_buildings":3,"campus_acres":6.17,"utility_provider":"TPCG Electric / Entergy Louisiana","tax_incentives":"$10 million performance-based grant; LED FastStart; Louisiana Industrial Tax Exemption Program; Quality Jobs Program","natural_hazard_zone":"FEMA Flood Zone AE (high-risk coastal flood/hurricane area)"},"2288":{"description":"A planned wholesale data center campus by Convalt Energy in Northern Maine, centered at the former Great Northern Paper mill site in East Millinocket. The project is under development and envisioned at large campus scale.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Brownfields cleanup and site rehabilitation are in progress at the former mill, backed by a $4M EPA cleanup grant, with ongoing structure rehabilitation and infrastructure additions.","recent_news":"April 2026: Maine’s legislature advanced a data center moratorium bill, which Gov. Janet Mills vetoed. June 2026: A new advisory council on data centers convened. February 2026: The East Millinocket mill site secured federal redevelopment funding for structure rehabilitation and infrastructure additions.","notable_tenants":"","verified_name":"Convalt Energy Northern Maine","verified_operator":"Convalt Energy","verified_owner":"Town of East Millinocket","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":10000,"utility_provider":"","tax_incentives":"EPA Brownfields Cleanup Grant ($4,000,000, 2025); $12M federal redevelopment funding for the East Millinocket mill site (Feb 2026).","natural_hazard_zone":"FEMA flood zone D; very low flood risk."},"2289":{"description":"Raeden Indianapolis is a 10,000 sq ft, carrier-neutral colocation facility at 800 Oliver Ave in Indianapolis with approximately 0.33 MW capacity, N+1 redundancy, and dual diesel generator backup.","verified_status":"operational","power_capacity_mw":0.33,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"RAEDEN appointed Edward Stewart as COO (May 2026).","notable_tenants":"","verified_name":"Raeden Indianapolis - 800 Oliver Ave","verified_operator":"Raeden","verified_owner":"Oliver Street, LLC / Paragon Realty","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.65,"utility_provider":"AES Indiana","tax_incentives":"","natural_hazard_zone":""},"2290":{"description":"Microsoft’s hyperscale data center campus on the former St. Joe Farm in Granger, Indiana, planned for six buildings on roughly 939 acres with up to 1,000 MW of power to support cloud and AI workloads.","verified_status":"under-construction","power_capacity_mw":1000,"total_sqft":0,"year_online":"unknown","construction_update":"Active site work underway by June 1, 2026; officials indicated construction could begin in late April or early May 2026.","recent_news":"May–June 2026: Protests and a petition continued around Microsoft’s open house; construction dust complaints were reported.","notable_tenants":"","verified_name":"Microsoft Granger Data Center","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":6,"campus_acres":939,"utility_provider":"Indiana Michigan Power (I&M)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (low flood risk)"},"2291":{"description":"Enterprise data center in Urbana/Frederick, MD, the first LEED‑certified data center in the U.S., long serving as Fannie Mae’s primary technology operations hub; now listed for sale as the company migrates to the cloud.","verified_status":"operational","power_capacity_mw":9.8,"total_sqft":245000,"year_online":"2004","construction_update":"","recent_news":"Listed for sale by JLL on May 28, 2026 as Fannie Mae migrates to the cloud.","notable_tenants":"Fannie Mae (single-tenant enterprise facility)","verified_name":"Fannie Mae Urbana Technology Center","verified_operator":"Fannie Mae","verified_owner":"Fannie Mae","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":37.26,"utility_provider":"Potomac Edison (FirstEnergy)","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (moderate flood hazard); low seismic and hurricane risk"},"2292":{"description":"Colocation facility operated by Cogent Communications known as BOS3‑DC, located in Waltham, MA (Boston–Waltham Office & Data Center), offering carrier‑neutral connectivity, UPS and backup generator, with listings showing about 8.4k sq ft and ~0.6 MW power.","verified_status":"operational","power_capacity_mw":0.6,"total_sqft":8400,"year_online":"unknown","construction_update":"","recent_news":"May 26, 2026: Cogent agreed to sell 10 data center facilities for $225M to an I Squared Capital–sponsored entity; Boston/Waltham was not among the named sites.","notable_tenants":"","verified_name":"Cogent Data Center - Boston (BOS3-DC)","verified_operator":"Cogent Communications","verified_owner":"Anchor Line Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent and other carriers; ports up to 100GE; Wave Enabled","num_buildings":1,"campus_acres":4.3,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"unknown"},"2293":{"description":"Operational colocation/network data center at 1201 Troost Ave in Kansas City, Missouri, commonly listed as Windstream Kansas City and shown as a key Windstream location on the Uniti/Windstream network.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Kansas City","verified_operator":"Uniti Group Inc. / Windstream","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream / Uniti Wholesale","num_buildings":0,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X; SFHA false; area of minimal flood hazard"},"2294":{"description":"A 2,000 sq ft university data center in Morse Hall (Room 213) at the University of New Hampshire that houses multiple HPC clusters operated by the Research Computing Center to support campus research.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"UNH research community and HPC users","verified_name":"Lenharth Data Center","verified_operator":"University of New Hampshire Research Computing Center","verified_owner":"University of New Hampshire","cooling_type":"unknown","tier_level":"","fiber_providers":"Internet2; redundant internet connections (via regional R&E network)","num_buildings":1,"campus_acres":0,"utility_provider":"UNH Combined Heat and Power Plant; Eversource","tax_incentives":"","natural_hazard_zone":""},"2295":{"description":"Natural-gas generator–powered Digital Flare Mitigation site near Sidney, Montana, running modular, containerized bitcoin-mining data centers on captured natural gas; originally developed by Crusoe and now operated by NYDIG DFM, LLC.","verified_status":"operational","power_capacity_mw":13,"total_sqft":0,"year_online":"2021","construction_update":"","recent_news":"June 2026: NYDIG DFM sought a new Richland County data center permit near Sidney to power on-site crypto mining with nearly 15 MW of natural-gas engines.","notable_tenants":"NYDIG (self-operated bitcoin mining)","verified_name":"Kraken Central Site","verified_operator":"NYDIG DFM, LLC","verified_owner":"NYDIG DFM, LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":80.31,"utility_provider":"Self-generated (on-site natural gas engines)","tax_incentives":"","natural_hazard_zone":"unknown"},"2296":{"description":"Kennedy Pad is a permitted small data-center site in Richland County, Montana, using on-site Waukesha natural-gas engines to generate electricity for modular data centers; MAQP #5301-01 documents the 2025 transfer from Crusoe Energy Systems, Inc. to NYDIG DFM, LLC.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Kennedy Pad","verified_operator":"NYDIG DFM, LLC","verified_owner":"NYDIG DFM, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"On-site natural-gas engine generation; no grid electric utility identified","tax_incentives":"","natural_hazard_zone":"Regional flood, severe weather, wildfire; low-to-moderate seismic risk (Eastern Montana Regional Hazard Mitigation Plan)"},"2297":{"description":"Shirley Site is an operational, off‑grid NYDIG DFM, LLC data-center and power-generation site in Section 25, Township 26 North, Range 58 East, Richland County, about 10.7 miles northwest of Fairview, Montana, permitted for two Waukesha 9394 GSI engines (≤5,000 bhp total) to run modular data centers on field gas otherwise flared.","verified_status":"operational","power_capacity_mw":3.73,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Shirley Site","verified_operator":"NYDIG DFM, LLC","verified_owner":"NYDIG DFM, LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Montana Class 17 qualified data-center property taxable value at 0.9% of market value; Montana has no general-use sales tax.","natural_hazard_zone":"Regional FEMA flood exposure along Yellowstone/Missouri river systems; site-specific FEMA flood zone unknown."},"2298":{"description":"A Digital Flare Mitigation cryptocurrency mining site near Bainville, Montana, permitted to operate up to six gas-fired engines that power modular data center units on site.","verified_status":"operational","power_capacity_mw":11.2,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Holly Powers Site","verified_operator":"NYDIG DFM, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Self-generated on-site via natural gas engines","tax_incentives":"","natural_hazard_zone":"low risk"},"2299":{"description":"NYDIG – Davidsen Atlas is a planned bitcoin/crypto data center project in Richland County near Fairview, Montana associated with Montana Air Quality Permit #5357-00; DEQ issued a Department Decision on June 22, 2026.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Permitting milestone reached: Montana DEQ issued the Department Decision for MAQP #5357-00 on June 22, 2026; no construction start verified.","recent_news":"Montana DEQ issued the Department Decision for MAQP #5357-00 (NYDIG – Davidsen Atlas) on June 22, 2026; the public comment period closed June 15, 2026.","notable_tenants":"","verified_name":"NYDIG – Davidsen Atlas","verified_operator":"NYDIG DFM, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"None verified for this project; Montana Class 17 data center property tax classification (0.9% taxable value) is available if statutory thresholds are met.","natural_hazard_zone":"Site-specific FEMA flood zone unknown; county hazards include riverine flooding and severe storms; Montana has non-zero earthquake hazard."},"2300":{"description":"Webb Data Center is an ~82,000 sq ft, six-acre liquid‑cooled data center under construction at 9710–9730 N. Virginia St. in Reno’s North Valleys, developed by Ellis Partners with Colovore as operator.","verified_status":"under-construction","power_capacity_mw":20,"total_sqft":82000,"year_online":"2026","construction_update":"Work has begun at the site as of May 2026.","recent_news":"Work began at the Webb Data Center site by late May 2026; in early June 2026 the City of Reno adopted a data center moratorium that does not affect already-permitted projects.","notable_tenants":"","verified_name":"Webb Data Center","verified_operator":"Colovore","verified_owner":"EPL VIRGINIA INVESTORS LLC","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":6,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"North Valleys area subject to updated FEMA floodplain risk mapping (Swan/Silver Lake/Lemmon Valley); parcel-specific zone unknown."},"2301":{"description":"CENTRA Reno (RNO2), also called the Keystone Data Center, is a carrier-neutral colocation/interconnection facility under construction at 265 Keystone Ave in downtown Reno. It is a ~91,000 sq ft, 12 MW build that topped out in May 2026.","verified_status":"under-construction","power_capacity_mw":12,"total_sqft":91000,"year_online":"2026","construction_update":"Topped out in early May 2026; still under construction as of late May 2026.","recent_news":"May 2026: RNO2 topped out; June 1, 2026: Reno approved a citywide data-center moratorium through Aug 31, 2027.","notable_tenants":"","verified_name":"CENTRA Reno (RNO2) — Keystone Data Center","verified_operator":"CENTRA Digital Interconnect (CENTRA)","verified_owner":"CADC Reno 265, LLC (c/o CENTRA Digital Interconnect)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":3.26,"utility_provider":"NV Energy","tax_incentives":"Nevada GOED tax abatement for CADC Reno 265, LLC; program includes sales/use tax reduced to 2% and a 75% personal property tax abatement (generally over 10 years).","natural_hazard_zone":"unknown"},"2302":{"description":"Planned AI/hyperscale data center by Townsite Solar 2 LLC on ~88.5 acres of Boulder City-owned land southwest of I-11/US-95, with reports indicating up to 170 MW of capacity; the Planning Commission recommended denial and forwarded the proposal to City Council.","verified_status":"planned","power_capacity_mw":170,"total_sqft":0,"year_online":"unknown","construction_update":"No construction. Latest milestone: Planning Commission voted against the application and sent a recommendation of denial to City Council (May 2026).","recent_news":"May 2026: Planning Commission voted against the TS2 data center application and forwarded it to City Council with a recommendation for denial.","notable_tenants":"","verified_name":"TS2 Data Center (Townsite Solar 2)","verified_operator":"Townsite Solar 2 LLC","verified_owner":"City of Boulder City, Nevada","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":88.5,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk"},"2303":{"description":"Carrier-neutral colocation suite of roughly 17 000 sq ft on the 5th floor of the Great Northern Building (180 E 5th St, St. Paul, MN), opened in 2000 by VISI, later OneNeck, and currently operated by US Signal.","verified_status":"operational","power_capacity_mw":0,"total_sqft":17000,"year_online":"2000","construction_update":"","recent_news":"30 Jan 2026 – US Signal announced the acquisition of a data-center facility in Aurora, Illinois, expanding its portfolio; no St. Paul-specific events were reported in the same period.","notable_tenants":"","verified_name":"US Signal: Saint Paul Data Center","verified_operator":"US Signal","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"FEMA Zones B/X – moderate flood risk; low seismic & hurricane risk"},"2304":{"description":"Iron Mountain OHS-1 is a 44,000 sq ft, 1.4 MW colocation data center at 3366 S Tech Blvd in Miamisburg, Ohio, built on a 3.5‑acre campus with Tier III certified design and N+1 chillers/CRAHs and 2N generators.","verified_status":"operational","power_capacity_mw":1.4,"total_sqft":44000,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Iron Mountain OHS-1","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Inc.","cooling_type":"chilled water","tier_level":"Uptime Tier III certified design","fiber_providers":"carrier-neutral; Available Carriers: 7","num_buildings":1,"campus_acres":3.5,"utility_provider":"AES Ohio (formerly Dayton Power & Light)","tax_incentives":"Ohio data center sales-tax exemption exists; no facility-specific award publicly confirmed for OHS-1.","natural_hazard_zone":"FEMA Flood Zone B/X (low risk)"},"2305":{"description":"A 351,000 SF carrier-neutral colocation campus at 1625 Rockwell Ave in downtown Cleveland with 10 MW power capacity and access to multiple internet exchanges.","verified_status":"operational","power_capacity_mw":10,"total_sqft":351000,"year_online":"unknown","construction_update":"$30M expansion proposal to transform nearly 60,000 SF of space into operational capacity.","recent_news":"In June 2026, H5 filed plans for a $30 million Cleveland expansion transforming nearly 60,000 SF; at the same time, Cleveland prepared to pause new data centers pending new zoning rules.","notable_tenants":"","verified_name":"H5 Data Centers Cleveland Data Center","verified_operator":"H5 Data Centers","verified_owner":"H5 Data Centers (via affiliate entity)","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; access to multiple Internet Exchanges.","num_buildings":0,"campus_acres":2.4,"utility_provider":"","tax_incentives":"Ohio Data Center Tax Abatement — eligible for 100% sales and use tax abatement on qualifying data center equipment.","natural_hazard_zone":""},"2306":{"description":"Operational colocation data center at 4726 Hills and Dales Rd NW, Canton, Ohio, operated by Ark Data Centers. The facility lists 1.5 MW utility power capacity and 5,600 sq ft of conditioned space, with a two‑storey, 29,960 sq ft building on a 1.83‑acre parcel.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":29960,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Ark Data Centers Canton","verified_operator":"Ark Data Centers","verified_owner":"Mapletree Industrial Trust","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.83,"utility_provider":"Ohio Edison (FirstEnergy)","tax_incentives":"","natural_hazard_zone":""},"2307":{"description":"Colocation data center at 1343 Belmont Ave, Youngstown, OH, operated by Ark Data Centers in a retrofitted 1930-era building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":20332,"year_online":"unknown","construction_update":"","recent_news":"Ohio paused new data center tax incentives on May 29, 2026, as the state reviews program costs and impacts.","notable_tenants":"","verified_name":"Ark Data Centers Youngstown","verified_operator":"Ark Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Spectrum Networks, CenturyLink, AT&T","num_buildings":1,"campus_acres":1.03,"utility_provider":"Ohio Edison (FirstEnergy)","tax_incentives":"Involta LLC received an Ohio data center sales tax exemption (75% for 15 years) tied to a $30M investment and 11 jobs; Ohio paused new data center tax incentives on May 29, 2026.","natural_hazard_zone":""},"2308":{"description":"CyrusOne CIN2 is an operational downtown Cincinnati colocation data center at 229 West 7th Street, offering around 14 MW of IT capacity and approximately 400,000 sq ft gross with about 143,778 sq ft of technical space.","verified_status":"operational","power_capacity_mw":14,"total_sqft":400000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne CIN2 (Cincinnati 7th Street)","verified_operator":"CyrusOne","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy","tax_incentives":"","natural_hazard_zone":""},"2309":{"description":"CyrusOne CIN3 is a colocation data center at 4800 Parkway Dr, Mason, OH with 1.70 MW power capacity and about 80,000 sq ft of space. In March 2026, the property was sold to Maison Tech for $2.3 million.","verified_status":"operational","power_capacity_mw":1.7,"total_sqft":80000,"year_online":"unknown","construction_update":"","recent_news":"March 2026: The CIN3 site at 4800 Parkway Dr sold to Maison Tech for $2.3 million.","notable_tenants":"","verified_name":"CyrusOne CIN3 Cincinnati Mason Data Center","verified_operator":"CyrusOne","verified_owner":"Maison Tech","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy Ohio","tax_incentives":"","natural_hazard_zone":""},"2310":{"description":"DartPoints CVG01 in downtown Cincinnati (302 W 3rd St, Suite 400) is an operational colocation data center with about 14,715 sq ft of slab floor and up to 4.6 MW utility/total power. The site provides regional interconnection options in a multi-tenant facility.","verified_status":"operational","power_capacity_mw":4.6,"total_sqft":14715,"year_online":"2005","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CVG01 – Cincinnati, OH","verified_operator":"DartPoints","verified_owner":"Time Equities Inc. (TEI Investors LLC / 302 West Third Owner LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2311":{"description":"DartPoints CMH01 is a carrier-neutral colocation data center at 565 Metro Pl S Ste 300, Dublin, OH, with a 40,000 sq ft building, a 5,900 sq ft data hall, and approximately 2.75 MW fully built-out power.","verified_status":"operational","power_capacity_mw":2.75,"total_sqft":40000,"year_online":"2011","construction_update":"","recent_news":"Ohio announced a statewide pause on new data center sales-tax exemptions (May–June 2026), potentially affecting future incentives for facilities like CMH01.","notable_tenants":"","verified_name":"DartPoints CMH01 – Dublin, OH","verified_operator":"DartPoints","verified_owner":"Argosy Real Estate Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":5.75,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2312":{"description":"Carrier-neutral colocation facility at 5307 Muhlhauser Rd in West Chester, OH, with approximately 43,551 sq ft and total capacity up to 3.8 MW across two phases (Cincinnati 1 and 2), operated by Flexential.","verified_status":"operational","power_capacity_mw":3.8,"total_sqft":43551,"year_online":"2008","construction_update":"","recent_news":"Ohio lawmakers proposed a bill to stop all new data center tax exemptions statewide (June 2026).","notable_tenants":"","verified_name":"Flexential Cincinnati Data Center","verified_operator":"Flexential","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0,"utility_provider":"Duke Energy Ohio","tax_incentives":"","natural_hazard_zone":"Low flood risk area; moderate tornado exposure (EF0 confirmed near West Chester in 2025)."},"2313":{"description":"H5 Data Centers Cincinnati II is an operational, carrier-neutral colocation facility at 925 Dalton Ave, Cincinnati, OH, totaling 107,000 SF with SOC 2 and ISO 27001 controls and Duke Energy utility feeds. Commissioned UPS-backed capacity is about 2 MW today with listings indicating potential expansion to 6 MW.","verified_status":"operational","power_capacity_mw":2,"total_sqft":107000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"H5 Data Centers Cincinnati II","verified_operator":"H5 Data Centers","verified_owner":"Legacy Investing LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":10.63,"utility_provider":"Duke Energy","tax_incentives":"Ohio Data Center Tax Abatement (state sales and use tax exemption) available; facility-specific award not verified.","natural_hazard_zone":"Potential FEMA 100-year floodplain exposure (Queensgate area); exact parcel unverified."},"2314":{"description":"Encore Technologies BLU1 is a colocation data center at 11515 Grooms Rd in Blue Ash, Ohio, operated by Encore Technologies, totaling about 80,000 sq ft with a currently listed 3.0 MW power capacity.","verified_status":"operational","power_capacity_mw":3,"total_sqft":80000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Encore Technologies BLU1","verified_operator":"Encore Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Duke Energy","tax_incentives":"","natural_hazard_zone":""},"2315":{"description":"Aligned NEO-01 is a hyperscale data center development by Aligned Data Centers at 2509 Hayes Ave., Sandusky, Ohio, planned as the first of a multi-building campus with rapid expansion capability and a reported 96 MW initial capacity. The project is supported by state and local economic development efforts, including a $202M capital investment.","verified_status":"under-construction","power_capacity_mw":96,"total_sqft":0,"year_online":"2026","construction_update":"Construction continued as of January 16, 2026.","recent_news":"Jan 16, 2026: Local news reported construction continued at the Aligned Sandusky site.","notable_tenants":"","verified_name":"NEO-01 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"Aligned Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":0,"utility_provider":"Ohio Edison (FirstEnergy)","tax_incentives":"Ohio Tax Credit Authority assistance approved; local TIF providing a 30-year, 100% property tax exemption on all new buildings.","natural_hazard_zone":"FEMA property-specific flood zone unknown; county-level: flood is a priority risk, seismic risk is low."},"2316":{"description":"Telecom central office at 85 High Street in Pawtucket, RI, historically the New England Telephone & Telegraph Building (1948). Verizon’s network-change notice lists DMS100 switches (PWTCRIHIDS1, PWTCRIHIDSA) at this address for retirement/removal on/after Jan 2, 2025.","verified_status":"operational","power_capacity_mw":0,"total_sqft":61056,"year_online":"1948","construction_update":"","recent_news":"Jan 20, 2026: Local media reported Verizon phone-provider issues affecting calls to the Pawtucket Police non-emergency line (911 unaffected).","notable_tenants":"","verified_name":"Verizon Pawtucket Central Office","verified_operator":"Verizon New England Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.73,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":""},"2317":{"description":"A Verizon New England Inc. telecom central office at 59 Church Street, East Greenwich, RI 02818. The legacy DMS100 switch was retired on/after Jan 3, 2023 with traffic migrated to Verizon’s Providence PEO switch, while the site remains a CO location identified by CLLI EGRNRICHRP0.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Verizon announced on June 12, 2026 that the Providence Washington Street RI DMS100 switch will be retired and removed from the network after traffic migration.","notable_tenants":"","verified_name":"Verizon East Greenwich Central Office","verified_operator":"Verizon New England Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon (Fios)","num_buildings":0,"campus_acres":0,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":"Moderate flood risk (First Street) for Downtown East Greenwich"},"2318":{"description":"State government enterprise data center operated by North Dakota Information Technology (NDIT) at 4201 Normandy St., Bismarck, providing hosting and related IT services for North Dakota state agencies.","verified_status":"operational","power_capacity_mw":0,"total_sqft":74564,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"North Dakota state agencies","verified_name":"NDIT Enterprise Data Center","verified_operator":"North Dakota Information Technology (NDIT)","verified_owner":"State of North Dakota","cooling_type":"unknown","tier_level":"","fiber_providers":"STAGEnet","num_buildings":0,"campus_acres":0,"utility_provider":"Montana-Dakota Utilities (MDU)","tax_incentives":"North Dakota qualified data center sales and use tax exemption for enterprise IT equipment and computer software (NDCC §57-39.2-04.17).","natural_hazard_zone":"low risk"},"2319":{"description":"A 93,000 sq ft former colocation data center at 421 Maiden Lane in Fayetteville, NC, historically operated by AIT. Sold in 2023 for conversion, it is now marketed for office/retail use while AIT maintains a reduced presence.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":93000,"year_online":"unknown","construction_update":"Active office/retail leasing and build-out as of June 2026.","recent_news":"As of June 2026, the property at 421 Maiden Lane is actively marketed for office/retail leasing.","notable_tenants":"Sol’s Arcade & Taproom (building tenant).","verified_name":"AIT.com Data Center","verified_operator":"Advanced Internet Technologies, Inc. (AIT)","verified_owner":"Richards Property Group LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.62,"utility_provider":"Fayetteville Public Works Commission (PWC)","tax_incentives":"","natural_hazard_zone":"Hurricane and flooding risk"},"2320":{"description":"A purpose-built enterprise data center on SAS’s headquarters campus in Cary, North Carolina, announced as a $70M project in 2009 to support SAS operations.","verified_status":"operational","power_capacity_mw":0,"total_sqft":38000,"year_online":"2010","construction_update":"","recent_news":"SAS cut 300 positions companywide in late June 2026 as part of a workforce realignment.","notable_tenants":"SAS Institute (internal use)","verified_name":"SAS Institute Data Center","verified_operator":"SAS Institute Inc.","verified_owner":"SAS Institute Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":900,"utility_provider":"Duke Energy Progress","tax_incentives":"North Carolina sales and use tax exemptions are available for qualifying data centers (electricity and certain equipment purchases) subject to state criteria.","natural_hazard_zone":"Moderate hurricane/wind exposure; generally low-to-moderate flood risk in Cary, NC."},"2321":{"description":"Lumen Pittsburgh 1 is an operational, telecom-heritage colocation facility at 143 South 25th Street in Pittsburgh’s South Side, operated by Lumen Technologies. It offers 3,661 sq ft total space with 1,208 sq ft of raised-floor colocation.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3661,"year_online":"unknown","construction_update":"","recent_news":"Mar 24, 2026: Lumen was named to Fast Company’s 2026 List of the World’s Most Innovative Companies, noting plans to reach 58 million intercity fiber miles by 2031.","notable_tenants":"","verified_name":"Lumen Pittsburgh 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Flood risk present near Monongahela River (South Side Flats rated extreme flood risk); low seismic and hurricane risk."},"2322":{"description":"Lumen Pittsburgh 2 (also known as Level 3 Pittsburgh-2) is a Lumen Technologies telecom/colocation data center at 200 Technology Drive, Pittsburgh, PA 15219, totaling about 30,966 sq ft; City planning materials indicate Lumen owns the building and is the sole tenant.","verified_status":"operational","power_capacity_mw":4.5,"total_sqft":30966,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Lumen is the sole tenant; no third-party anchor tenants verified.","verified_name":"Lumen Pittsburgh 2","verified_operator":"Lumen Technologies","verified_owner":"Lumen Technologies / Hyperion Telecommunications of Pennsylvania Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.347,"utility_provider":"Duquesne Light Company","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (state sales/use tax relief for qualified equipment in certified data centers); no site-specific certification found.","natural_hazard_zone":"FEMA Flood Zone X (low flood risk) indicated for Pittsburgh generally; address-specific FIRM confirmation not provided."},"2323":{"description":"Operational colocation facility branded as Cogent Pittsburgh / Pittsburgh Data Center, marketed at 3216 Liberty Ave with 5,880 sq ft and standard features (UPS, backup generator, HVAC, security) and listed in Cogent’s locator as a carrier-neutral site at 3126 Liberty Ave.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5880,"year_online":"unknown","construction_update":"","recent_news":"June 29, 2026: Cogent announced the closing of the sale of 10 data center facilities.","notable_tenants":"","verified_name":"Cogent Pittsburgh Data Center","verified_operator":"Cogent Communications, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent and other carriers","num_buildings":0,"campus_acres":0.128,"utility_provider":"Duquesne Light Company","tax_incentives":"","natural_hazard_zone":"unknown"},"2324":{"description":"DQE Butler is an operational DQE Communications colocation facility at 238 Pillow St, Butler, PA, offering about 1,700 sq ft of raised-floor space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1700,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DQE Butler","verified_operator":"DQE Communications","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"DQE Communications; not documented as carrier-neutral","num_buildings":1,"campus_acres":0.25,"utility_provider":"West Penn Power (FirstEnergy)","tax_incentives":"","natural_hazard_zone":"unknown"},"2325":{"description":"A small colocation and managed hosting data center at 1650 Dewey Ave in Baker City, Oregon, operated by Synergy Data Center & Services in the historic Old Post Office Square building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"State of Oregon (Records Management)","verified_name":"Synergy Data Center","verified_operator":"Synergy Data Center & Services","verified_owner":"Chaves Consulting Inc.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.45,"utility_provider":"Oregon Trail Electric Cooperative (OTEC)","tax_incentives":"","natural_hazard_zone":"FEMA flood risk"},"2326":{"description":"Building 2 of Google’s The Dalles hyperscale campus at 4200 Columbia Rd, part of Google’s first custom-built U.S. data center site (established 2006) on a former aluminum smelter along the Columbia River.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Campus-wide: fourth building completed in 2025, fifth planned for 2026; 300 MW expansion under construction; retooling work underway at the original 4200 Columbia Rd campus (2025).","recent_news":"Apr 2026: Reported 2025 water use reached nearly 550 million gallons (~40% of city supply). Jan–Feb 2026: Policy debate and organized opposition regarding expanded water sources to support the data centers.","notable_tenants":"Google (self-use)","verified_name":"Google The Dalles - Building 2","verified_operator":"Google","verified_owner":"Google","cooling_type":"unknown","tier_level":"","fiber_providers":"QLife (municipal fiber network)","num_buildings":5,"campus_acres":0,"utility_provider":"Northern Wasco County PUD","tax_incentives":"Enterprise Zone (EZ) and Strategic Investment Program (SIP) agreements approved for new Google facilities in The Dalles.","natural_hazard_zone":"Updated FEMA flood mapping in progress; moderate seismic risk and elevated wildfire hazard county-wide."},"2327":{"description":"OneNet’s Oklahoma City Datacenter is an operational colocation and disaster‑recovery facility at 655 Research Parkway in Oklahoma City, operated by OneNet, the digital communications initiative of the Oklahoma State Regents for Higher Education.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"2026: OneNet marked its 30th anniversary, highlighted in its 2026 Impact Report and a commemorative article.","notable_tenants":"","verified_name":"OneNet's Oklahoma City Datacenter","verified_operator":"OneNet","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"OneNet; diverse fiber paths to OneNet core (not described as carrier-neutral)","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"High natural hazard risk (FEMA National Risk Index for Oklahoma County: composite 97.9/100; 98th percentile)"},"2328":{"description":"Operational OneNet colocation/data center on the OSU‑Tulsa campus at 700 N Greenwood Ave, operated by OneNet (a division of the Oklahoma State Regents for Higher Education), with a listed power capacity of 3.0 MW.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 13, 2026: OneNet highlighted utilizing 3,100+ miles of high-speed fiber connecting universities, hospitals, and schools.","notable_tenants":"","verified_name":"OneNet OSU Tulsa","verified_operator":"OneNet (a division of the Oklahoma State Regents for Higher Education)","verified_owner":"Oklahoma State Regents for Higher Education","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2329":{"description":"Lumen Columbia 4 is a carrier-neutral colocation data center operated by Lumen Technologies at 520 Whaley St in Columbia, South Carolina, described as a Tier III-standard facility with redundant infrastructure.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Columbia 4 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Dominion Energy South Carolina","tax_incentives":"","natural_hazard_zone":"Downtown Columbia flood risk: 11.7% of properties at risk (model-based); parcel-specific FEMA zone not verified."},"2330":{"description":"Enterprise data center at 1200 Brookfield Blvd in Greenville, South Carolina, operated for Ahold Delhaize USA’s corporate IT. It sits within a Class A office campus on roughly 16.1 acres.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Jan 13, 2026: Ahold Delhaize USA announced a strategic investment with Blackstone tied to an $860 million distribution network development plan.","notable_tenants":"","verified_name":"Ahold Information Services Data Center","verified_operator":"Ahold Delhaize USA (formerly Ahold Information Services, Inc.)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":16.1,"utility_provider":"Duke Energy Carolinas","tax_incentives":"","natural_hazard_zone":""},"2331":{"description":"An 18 MW Bitcoin mining data center at 1649 Pearman Dairy Rd in a repurposed textile warehouse, operational since February 2023; now under AiOnX via its June 2026 acquisition of Genesis Digital Assets and being positioned for AI/HPC workloads.","verified_status":"operational","power_capacity_mw":18,"total_sqft":108000,"year_online":"2023","construction_update":"","recent_news":"June 15, 2026: AiOnX closed a $500m acquisition of a controlling stake in Genesis Digital Assets and plans to pivot the portfolio’s crypto data centers, including Anderson, to AI/HPC workloads.","notable_tenants":"Self-operated (no colocation tenants reported).","verified_name":"AiOnX Anderson (formerly GDA Anderson)","verified_operator":"AiOnX (via Genesis Digital Assets)","verified_owner":"Industrial Warehouse Services, Inc.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":66,"utility_provider":"Duke Energy","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (outside Special Flood Hazard Area); moderate county risk"},"2332":{"description":"Data Foundry Houston 2 is a 350,000 sq ft, 60 MW carrier-neutral colocation data center on an 18-acre campus at 660 Greens Pkwy in North Houston, opened in 2015 with a chilled-water design and 185 mph wind-rated construction. Originally developed by Data Foundry, it was acquired by Switch for $420 million in 2021 and is now operated by Data Foundry, a Switch subsidiary owned by DigitalBridge and IFM Investors.","verified_status":"operational","power_capacity_mw":60,"total_sqft":350000,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Data Foundry Houston 2","verified_operator":"Data Foundry (a Switch company)","verified_owner":"Switch (owned by DigitalBridge & IFM Investors)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; Level 3, AT&T, Verizon, Zayo, Alpheus, TLSN, Phonoscope","num_buildings":1,"campus_acres":18,"utility_provider":"CenterPoint Energy","tax_incentives":"Texas state sales tax exemption for qualified data center equipment (Tax Code §151.3595)","natural_hazard_zone":"FEMA Flood Zone X; hurricane-wind zone (185 mph design)"},"2333":{"description":"Stream San Antonio III is a hyperscale data center campus at 11203 W Military Drive in San Antonio that is under construction and planned for roughly 1.5 million square feet and 200 MW of IT capacity.","verified_status":"under-construction","power_capacity_mw":200,"total_sqft":1500000,"year_online":"unknown","construction_update":"Groundbreaking announced June 26, 2024; TDLR shows SAT B1 ‘SAT 23 Data Hall 5 Fit Out’ at 11203 W Military Dr with an estimated completion of Dec 1, 2025.","recent_news":"","notable_tenants":"","verified_name":"Stream San Antonio III","verified_operator":"Stream Data Centers","verified_owner":"Apollo-managed funds (majority owner of Stream Data Centers)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"CPS Energy","tax_incentives":"","natural_hazard_zone":""},"2334":{"description":"LightEdge Austin I is an operational colocation data center operated by LightEdge at 2916 Montopolis Dr., Suite 300, Austin, TX 78741. Sources list 2.0 MW of power and a building footprint of about 30,960 sq ft.","verified_status":"operational","power_capacity_mw":2,"total_sqft":30960,"year_online":"unknown","construction_update":"","recent_news":"Apr 30, 2026: LightEdge announced the acquisition of a 3 MW, Uptime Institute Tier III certified data center in Kansas City, Missouri.","notable_tenants":"","verified_name":"LightEdge Austin I","verified_operator":"LightEdge","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; Lumen, Logix, Spectrum, Zayo","num_buildings":1,"campus_acres":2.8,"utility_provider":"Austin Energy","tax_incentives":"","natural_hazard_zone":"FEMA flood: Zone X (outside 100-year and 500-year floodplains)"},"2335":{"description":"LightEdge Austin II is a colocation data center at 7000‑B Burleson Rd, Suite 400, Austin, TX 78744, originally opened by OnRamp in 2014 and now operated by LightEdge within the Colorado Crossing complex.","verified_status":"operational","power_capacity_mw":2,"total_sqft":42930,"year_online":"2014","construction_update":"","recent_news":"LightEdge highlighted expansion in Kansas City with a 3MW Tier III data center acquisition and executive leadership updates; no Austin II–specific announcements in the last six months.","notable_tenants":"","verified_name":"LightEdge Austin II","verified_operator":"LightEdge","verified_owner":"EastGroup Properties","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; multiple on-net providers (e.g., AT&T, Cogent, Crown Castle/FPL, Fiberlight, Grande, Lumen, Logix, Spectrum, Zayo).","num_buildings":1,"campus_acres":23.365,"utility_provider":"Austin Energy","tax_incentives":"Texas state sales and use tax exemption for qualified data centers (6.25% on eligible items).","natural_hazard_zone":"low risk"},"2336":{"description":"CyrusOne AUS2 is a colocation data center at 7301 Metropolis Drive in Austin featuring about 70,000 sq ft (with ~41,000 sq ft raised-floor colocation space) and 9 MW of total power capacity.","verified_status":"operational","power_capacity_mw":9,"total_sqft":70000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"DataCanopy","verified_name":"CyrusOne AUS2 Austin Data Center","verified_operator":"CyrusOne","verified_owner":"CyrusOne","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Texas state sales and use tax exemption for qualified data centers (Tex. Tax Code §151.3595/§151.3597 program).","natural_hazard_zone":""},"2337":{"description":"CyrusOne AUS3 (Austin III) is a purpose-built colocation data center at 7100 Metropolis Drive in Austin, offering about 172,000 sq ft of space and up to 24 MW of capacity; it has been operational since 2015.","verified_status":"operational","power_capacity_mw":24,"total_sqft":172000,"year_online":"2015","construction_update":"","recent_news":"CyrusOne broke ground on a 380MW data center campus in Freestone County, Texas (June 2026).","notable_tenants":"","verified_name":"CyrusOne AUS3 (Austin III)","verified_operator":"CyrusOne","verified_owner":"CyrusOne (owned by funds managed by KKR and Global Infrastructure Partners)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Austin Energy","tax_incentives":"Texas state 6.25% sales and use tax exemption for qualified data centers (program eligibility-dependent).","natural_hazard_zone":"low risk"},"2338":{"description":"MDC Laredo (LDO1) is an operational, carrier-neutral colocation and interconnection facility at 13619 Cabezut Dr in Laredo, serving as a U.S.–Mexico border gateway. Listings indicate 8,400 sq ft with 650 kW installed power and international fiber connectivity at Laredo.","verified_status":"operational","power_capacity_mw":0.65,"total_sqft":8400,"year_online":"unknown","construction_update":"","recent_news":"May 14, 2026: Gold Data expanded to MDC Eagle Pass and noted existing deployments at MDC Laredo as part of its border platform.","notable_tenants":"Gold Data (existing deployment/PoP).","verified_name":"MDC Laredo (LDO1)","verified_operator":"MDC Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; international cross-border connectivity (Laredo–Nuevo Laredo crossings).","num_buildings":1,"campus_acres":3.46,"utility_provider":"AEP Texas","tax_incentives":"","natural_hazard_zone":"Seismic: very low; Flood: minor citywide risk; Hurricane/Wind: inland exposure."},"2339":{"description":"Operational Lumen colocation/enterprise data center at 1417 Air Base Rd, Waco, Texas.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4800,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Waco 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":""},"2340":{"description":"Lumen McAllen 1 is a small telecom-class colocation data center at 906 Beech Avenue in McAllen, Texas, operated by Lumen Technologies. It provides colocation and carrier-neutral connectivity with access to Lumen’s backbone.","verified_status":"operational","power_capacity_mw":0,"total_sqft":6015,"year_online":"unknown","construction_update":"","recent_news":"Lumen announced an agreement to acquire Alkira (June 10, 2026) and highlighted a new phase of transformation at its Feb 25, 2026 Investor Day, including 17 million intercity fiber miles deployed by year-end 2025.","notable_tenants":"","verified_name":"Lumen McAllen 1","verified_operator":"Lumen Technologies","verified_owner":"Lumen Technologies","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; Lumen/Level 3 backbone and carriers: China Telecom, PCCW, China Unicom, NTT Communications, Cogent","num_buildings":0,"campus_acres":0,"utility_provider":"AEP Texas Central","tax_incentives":"","natural_hazard_zone":"Hurricane-prone region; local FEMA Flood Zone A areas (1% annual chance) in McAllen; low overall county risk score; low seismic risk."},"2341":{"description":"A Segra network node and point of presence (POP) at 500 Summers St in Charleston, WV, supporting Segra’s regional fiber network.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Segra: Charleston 500 Summers","verified_operator":"Segra","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Segra","num_buildings":1,"campus_acres":1.01,"utility_provider":"Appalachian Power (AEP)","tax_incentives":"","natural_hazard_zone":"FEMA flood risk — Zone AE and Zone X common in Charleston"},"2342":{"description":"A telecom-oriented data center and regional network hub operated by Segra at 1200 Greenbrier St in Charleston, WV, with historical ties to FiberNet and later Lumos Networks prior to Segra’s branding.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Segra will retire all legacy TDM infrastructure and related active circuits on September 30, 2026.","notable_tenants":"","verified_name":"Segra: Charleston 1200 Greenbrier","verified_operator":"Segra","verified_owner":"Cox Communications","cooling_type":"unknown","tier_level":"","fiber_providers":"Segra","num_buildings":1,"campus_acres":2.26,"utility_provider":"Appalachian Power (AEP)","tax_incentives":"State incentives include sales/use tax exemptions for certain computer-related property and related high-technology exemptions.","natural_hazard_zone":"FEMA flood zone AE (base floodplain)"},"2343":{"description":"CoreSite VA1 is a 261,000-sq-ft carrier-neutral colocation data center at 12100 Sunrise Valley Dr. in Reston, Virginia, providing cloud and network interconnection via the Any2Exchange and Open Cloud Exchange platforms.","verified_status":"operational","power_capacity_mw":10,"total_sqft":261000,"year_online":"2008","construction_update":"","recent_news":"February 2026 update: CoreSite filed site plans for a three-story, 215,000-sq-ft VA3 Phase 2 expansion on the Reston campus, prompting neighborhood objections.","notable_tenants":"","verified_name":"CoreSite VA1 - Reston Data Center","verified_operator":"CoreSite","verified_owner":"American Tower Corporation (NYSE: AMT)","cooling_type":"chilled water","tier_level":"Tier III (design)","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"Virginia 6 % data-center sales and use tax exemption through June 30 2035.","natural_hazard_zone":"low risk"},"2344":{"description":"Carrier-neutral colocation facility at 12098 Sunrise Valley Drive, Reston, VA, offering about 188,447 sq ft with direct cloud on-ramps available across CoreSite’s Northern Virginia campus.","verified_status":"operational","power_capacity_mw":12,"total_sqft":188447,"year_online":"unknown","construction_update":"","recent_news":"Feb 26, 2026: CoreSite’s Virginia data centers welcomed Community IX’s CIX-NoVA Internet Exchange, expanding peering on the Reston campus.","notable_tenants":"","verified_name":"CoreSite VA2 - Reston Data Center","verified_operator":"CoreSite (an American Tower company)","verified_owner":"American Tower Corporation (parent); property owner of record: CORESITE REAL ESTATE 12100 AND SUNRISE VALLEY DRIVE LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Virginia retail sales and use tax exemption (6%) for qualifying data center IT equipment and enabling software for eligible customers.","natural_hazard_zone":""},"2345":{"description":"CoreSite VA3 is an operational colocation data center in Reston, Virginia, within CoreSite’s interconnected Northern Virginia campus, offering large-scale space and carrier/cloud interconnection.","verified_status":"operational","power_capacity_mw":0,"total_sqft":940000,"year_online":"2019","construction_update":"","recent_news":"Feb 26, 2026: Community IX (CIX-NoVA) launched presence at CoreSite’s Virginia data centers, its first in Northern Virginia.","notable_tenants":"","verified_name":"CoreSite VA3 - Virginia Data Center","verified_operator":"CoreSite","verified_owner":"American Tower Corporation (via CoreSite)","cooling_type":"chilled water","tier_level":"","fiber_providers":"Carrier-neutral; cloud on-ramps include AWS, Microsoft Azure, Google Cloud and Oracle Cloud; carriers include Lepton Global, Allied Telecom, and Arelion.","num_buildings":4,"campus_acres":21.75,"utility_provider":"","tax_incentives":"Virginia data center retail sales and use tax exemption (e.g., 6% on qualifying IT equipment, subject to program requirements).","natural_hazard_zone":"FEMA Zone X (outside 100-year floodplain); moderate regional storm/hurricane exposure typical for Northern Virginia."},"2346":{"description":"A 12,000 sq ft colocation and network facility at 13873 Park Center Rd, Herndon, VA 20171, offering raised-floor space and fiber/copper overhead pathways near Dulles International Airport.","verified_status":"operational","power_capacity_mw":0.83,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"On May 6, 2026, 365 Data Centers and Aphorio Carter announced a ~200 MW AI‑ready data center pipeline targeting high‑density liquid‑to‑chip infrastructure across initial U.S. sites in Colorado and Kentucky.","notable_tenants":"","verified_name":"365 Data Centers Herndon Data Center (VA1)","verified_operator":"365 Data Centers","verified_owner":"BECO Management","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":8.07,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide program for qualifying data centers).","natural_hazard_zone":""},"2347":{"description":"Colocation data center operated by Lumen at 520 Van Buren Street in Herndon, Virginia, offering enterprise‑grade colocation and connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Feb 2, 2026: Lumen completed the $5.75B sale of its mass market fiber business to AT&T.","notable_tenants":"","verified_name":"Lumen Herndon 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (DCRSUT).","natural_hazard_zone":"low risk"},"2348":{"description":"H5 Herndon Data Center is an H5 Data Centers carrier‑neutral colocation campus at 470 and 480 Springpark Place in Herndon, Virginia, totaling about 53,000 sq ft with up to 15 critical MW.","verified_status":"operational","power_capacity_mw":15,"total_sqft":53000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"H5 Herndon Data Center","verified_operator":"H5 Data Centers","verified_owner":"SPRINGPARK PLACE TECHNOLOGY PARTNERS LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":5.98,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (through June 30, 2035) for qualifying projects; no facility-specific MOU found.","natural_hazard_zone":"low risk (FEMA Zones B/X)"},"2349":{"description":"H5 Data Centers’ Herndon campus at 470 and 480 Springpark Place is a carrier-neutral colocation facility in Northern Virginia’s data center corridor offering about 53,000 sq ft and up to 15 MW of power, minutes from Dulles International Airport.","verified_status":"operational","power_capacity_mw":15,"total_sqft":53000,"year_online":"unknown","construction_update":"New facility at 480 Springpark Pl is under construction with capacity targeted for Q1 2027.","recent_news":"","notable_tenants":"","verified_name":"H5 Herndon Data Center","verified_operator":"H5 Data Centers","verified_owner":"Springpark Place Technology Partners LLC (c/o Principal Real Estate Investors, LLC)","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":5.99,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (available to qualifying colocation facilities/tenants).","natural_hazard_zone":"FEMA Flood Zone X (low risk)"},"2350":{"description":"Carrier-neutral colocation facility at 1764A Old Meadow Lane in McLean offering 40,000+ sq ft and 24/7 support with ~3 MW capacity.","verified_status":"operational","power_capacity_mw":3,"total_sqft":62002,"year_online":"1991","construction_update":"","recent_news":"DataBank closed $1.45 billion in new financing across two transactions (June 15, 2026).","notable_tenants":"","verified_name":"DataBank IAD2 - McLean Data Center","verified_operator":"DataBank","verified_owner":"Mapletree Industrial Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; on-site carriers available","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (through June 30, 2035, subject to eligibility)","natural_hazard_zone":"unknown"},"2351":{"description":"A small CenterServ colocation node located at 1545 Crossways Blvd in the multi-tenant Crossways Commerce I building in Chesapeake, Virginia.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CenterServ Chesapeake Data Center","verified_operator":"CenterServ","verified_owner":"Heritage Capital","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"","natural_hazard_zone":"FEMA flood-prone and coastal hurricane risk area"},"2352":{"description":"Middletown Data Center is an operational colocation facility at 8209 Valley Pike in Middletown, Virginia, operated by Middletown Data Center, offering over 43,400 sq ft of raised-floor space and 10 MW critical IT load (14 MW total). The site was refurbished and fully commissioned for tenants in 2022.","verified_status":"operational","power_capacity_mw":14,"total_sqft":69021,"year_online":"2022","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Middletown Data Center","verified_operator":"Middletown Data Center","verified_owner":"Cardinal Energy Corp","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; 7 diverse fiber routes; two diverse POP/MMR rooms","num_buildings":1,"campus_acres":6.15,"utility_provider":"Rappahannock Electric Cooperative","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (eligibility subject to statutory requirements)","natural_hazard_zone":""},"2353":{"description":"CTP-04 is a planned AI/HPC-focused data center within Chirisa Technology Parks’ 230-acre campus at Meadowville Technology Park near Richmond, designed as part of future phases reserved for development.","verified_status":"planned","power_capacity_mw":100,"total_sqft":250000,"year_online":"unknown","construction_update":"CTP-04 is reserved for future development as part of the CTP-04/05/06 phases.","recent_news":"Plans were filed by Chirisa and American Real Estate Partners to construct two data center buildings in Chesterfield County (Jan 5, 2026).","notable_tenants":"CoreWeave (campus tenant; CTP-04 tenant not disclosed)","verified_name":"Chirisa Technology Parks: CTP-04 Campus, Richmond, VA","verified_operator":"Chirisa Technology Parks","verified_owner":"Chirisa Technology Parks and PowerHouse Data Centers (AREP), in partnership with Blue Owl Capital","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":230,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption","natural_hazard_zone":""},"2354":{"description":"A small colocation data center operated by Cogent Communications at 1001 Oliver Hill Way in Richmond, Virginia, offering about 6,056 sq ft of technical space with 42U cabinets, UPS protection, and an 800 kW diesel backup generator.","verified_status":"operational","power_capacity_mw":0,"total_sqft":6056,"year_online":"unknown","construction_update":"","recent_news":"May 2026: Cogent announced a $225 million sale of 10 data centers to an I Squared–backed platform.","notable_tenants":"","verified_name":"Cogent Data Center - Richmond","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0.95,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (DCRSUT) available to qualifying facilities.","natural_hazard_zone":""},"2355":{"description":"Small colocation facility operated by Richweb at 7474 Lee Davis Road in Mechanicsville, VA, offering cabinets/cages and remote-hands in a single-building setup.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"1996","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Richweb Data Center","verified_operator":"Richweb","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia statewide data center sales and use tax exemption on qualifying equipment.","natural_hazard_zone":"FEMA Zone X (outside 100-year floodplain)"},"2356":{"description":"Range Sheridan is a telecom-class colocation facility at 1 West Loucks Street in Sheridan, Wyoming, historically operated by Advanced Communications Technology (ACT) and now under the Range brand. It delivers colocation services connected to Range’s regional fiber network.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 15, 2026: Range and partners launched the Heartland Fiber Project, a major high-capacity fiber expansion across the Upper Midwest; Range notes offices including Sheridan, WY and a 6,500+ mile fiber network.","notable_tenants":"","verified_name":"Range Sheridan","verified_operator":"Range (formerly Advanced Communications Technology / ACT)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Range","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Wyoming data center sales tax exemption on qualifying computer equipment for facilities investing at least $5M; enhanced exemptions at $50M+.","natural_hazard_zone":"Moderate wildfire and earthquake risk; inland with no hurricane exposure; FEMA flood zone for 1 W Loucks undetermined without parcel-level map."},"2357":{"description":"Gotspace Wallingford 1 - Building 2 is a planned data center building at 961 Northrop Rd, Wallingford, CT, developed by Gotspace Data Partners. It is part of a multi‑building campus concept in Wallingford and remains in the proposal/planning stage.","verified_status":"planned","power_capacity_mw":32,"total_sqft":50000,"year_online":"unknown","construction_update":"No construction start reported; project remains proposed/planned.","recent_news":"May 2026 local discussion notes the project remains a proposal following zoning changes; no construction start has been announced.","notable_tenants":"","verified_name":"Gotspace Wallingford 1 - Building 2","verified_operator":"Gotspace Data Partners","verified_owner":"Gotspace Data Partners","cooling_type":"unknown","tier_level":"Tier 3","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Connecticut Data Center Tax Incentive Program: sales and use tax exemptions and property tax exemptions; 20-year exemption for $200M+ investment (30 years for $400M+).","natural_hazard_zone":"FEMA flood zone X (moderate flood risk)"},"2358":{"description":"Gotspace Wallingford 1 - Building 3 is a planned 32 MW hyperscale data center at 965 Northrop Rd in Wallingford, Connecticut, developed by Gotspace Data Partners as part of the Wallingford 1 campus. Local posts in May 2026 reference the proposed campus and town zoning changes.","verified_status":"planned","power_capacity_mw":32,"total_sqft":0,"year_online":"unknown","construction_update":"No construction milestones publicly reported; project remains in proposed/planning stage.","recent_news":"May 2026: Local post notes the proposed campus and that the town voted to change some zoning laws for the project.","notable_tenants":"","verified_name":"Gotspace Wallingford 1 - Building 3","verified_operator":"Gotspace Data Partners","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":0,"utility_provider":"Wallingford Electric Division (WED)","tax_incentives":"Connecticut Public Act 21-1 provides sales and use tax exemptions and property tax exemptions for qualified data centers.","natural_hazard_zone":"FEMA Zone X; moderate flood risk"},"2359":{"description":"Segra’s 12,000 sq ft colocation data center at 317 N. Main Street in downtown Pueblo, CO, providing network-connected infrastructure.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Segra Pueblo Data Center","verified_operator":"Segra","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Segra","num_buildings":1,"campus_acres":0.58,"utility_provider":"Black Hills Energy","tax_incentives":"Colorado Enterprise Zone (Pueblo County)","natural_hazard_zone":"FEMA Flood Zone C/X"},"2360":{"description":"Massive Networks’ CTC1 colocation facility in Louisville’s Colorado Technology Center provides carrier connectivity and cross‑connects along with managed infrastructure services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":15000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Massive Networks - Louisville (CTC1 Data Center)","verified_operator":"Massive Networks","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.59,"utility_provider":"Xcel Energy","tax_incentives":"Louisville Business Assistance Program (permit fee rebates, construction use tax rebates, sales/use tax rebates)","natural_hazard_zone":"FEMA flood zone B/X (moderate flood hazard); area experienced Marshall Fire (wildfire exposure)."},"2361":{"description":"Visa’s Central US enterprise data center campus at 8910 Ridgeline Blvd in Highlands Ranch, Colorado supports core payment processing, spanning roughly 12+ acres across four buildings totaling about 300,000 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":300000,"year_online":"2003","construction_update":"","recent_news":"","notable_tenants":"Visa Inc.","verified_name":"Visa Central US Denver","verified_operator":"Visa Inc.","verified_owner":"Visa Inc.","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":12,"utility_provider":"Xcel Energy (Public Service Company of Colorado)","tax_incentives":"","natural_hazard_zone":"low risk"},"2362":{"description":"A small, cost‑efficient colocation facility operated by Vastnet in Denver, featuring its Outside Air Cooling System (VOACS) and located at 800 E 73rd Ave within the Washington Gardens Center industrial complex.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Denver approved a one‑year moratorium on new data center development in May 2026; additionally, vastnet.com is listed for sale.","notable_tenants":"","verified_name":"Vastnet - Denver","verified_operator":"Vastnet (Vastnet Corp)","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"unknown"},"2363":{"description":"Carrier‑grade colocation facility at 313 Inverness Way South in Englewood, Colorado, operated by Verizon and formerly an XO Communications site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":72590,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon: 313 Inverness Data Center","verified_operator":"Verizon Communications Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon (XO network)","num_buildings":3,"campus_acres":5.54,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2364":{"description":"RSA Dexter Avenue Datacenter is a colocation facility within the RSA Dexter Avenue Building at 445 Dexter Avenue in downtown Montgomery, Alabama. Owned by the Retirement Systems of Alabama and managed by NTT DATA Services, it opened on October 4, 2012 and offers about 44,000 square feet of data center space with 2 MW UPS capacity and two 2.5 MW generators across six independent rooms.","verified_status":"operational","power_capacity_mw":2,"total_sqft":44000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"Businesses and government entities","verified_name":"RSA Dexter Avenue Datacenter","verified_operator":"NTT DATA Services","verified_owner":"Retirement Systems of Alabama (RSA)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; 13 ISPs","num_buildings":1,"campus_acres":1.71,"utility_provider":"Alabama Power","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (very low flood risk); low seismic/hurricane risk; moderate tornado risk"},"2365":{"description":"An ~87,000-square-foot Bitcoin mining data center in Norcross, Georgia, operating at 20 MW with immersion cooling and run by CleanSpark since 2021.","verified_status":"operational","power_capacity_mw":20,"total_sqft":86842,"year_online":"2021","construction_update":"","recent_news":"June 4, 2026: CleanSpark’s May 2026 operational update reported 671 BTC produced and 808 MW utilized across its portfolio, with continued scaling initiatives.","notable_tenants":"CleanSpark (self-operated)","verified_name":"CleanSpark Norcross Data Center","verified_operator":"CleanSpark, Inc.","verified_owner":"CleanSpark, Inc.","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":7.06,"utility_provider":"Norcross Power (City of Norcross)","tax_incentives":"","natural_hazard_zone":"low risk"},"2366":{"description":"Switch Atlanta North – The KEEP 2.0 is a multi-phase hyperscale data center campus under development at 151 Etowah Ridge Trail SE in Cartersville, Georgia, spanning roughly 126 acres. Switch is investing about $772 million, with Phase 1 targeted for completion in Q2 2026 and longer-term buildout extending well beyond initial phases.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"2026","construction_update":"Phase 1 targeted for completion in Q2 2026; initial building is roughly 1,620 feet long; annexation/zoning filing submitted in April 2025 for additional acreage.","recent_news":"","notable_tenants":"","verified_name":"Switch Atlanta North - The KEEP 2.0","verified_operator":"Switch","verified_owner":"DigitalBridge","cooling_type":"hybrid","tier_level":"","fiber_providers":"FiberCom (City of Cartersville)","num_buildings":1,"campus_acres":126,"utility_provider":"Cartersville Electric System","tax_incentives":"Georgia HB 696 sales and use tax exemption on high-technology data center equipment.","natural_hazard_zone":"FEMA Zone X (outside 100-year floodplain); moderate earthquake and wildfire risk."},"2367":{"description":"A planned 200MW hyperscale data center campus by DataBank at 218 Industrial Park Road in Cartersville, GA, spanning 69 acres and totaling about 1.1 million sq ft.","verified_status":"planned","power_capacity_mw":200,"total_sqft":1100000,"year_online":"unknown","construction_update":"Development/DRI filing stage as of June 2026.","recent_news":"DataBank filed plans for a 200MW, 1.1M sq ft Project Indo campus on a 69-acre site at 218 Industrial Park Road in Cartersville, GA (June 2026).","notable_tenants":"","verified_name":"DataBank Cartersville Campus (Project Indo)","verified_operator":"DataBank","verified_owner":"DataBank (backed by institutional investors including DigitalBridge and TJC LP)","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":0,"campus_acres":69,"utility_provider":"Cartersville Electric System (MEAG Power)","tax_incentives":"Georgia High-Technology Data Center Equipment Sales & Use Tax Exemption (HB 696, 2018).","natural_hazard_zone":"Low-to-moderate risk; county hazards include flooding, tornadoes, winter storms, wildfire, drought, severe thunderstorms, earthquakes, landslides, and dam failure; very low storm events risk (7.1%)."},"2368":{"description":"A planned Vantage Data Centers hyperscale campus in South Fulton, GA, known as the Westlake project, comprising two data center buildings totaling about 754,220 sq ft on land west of Plummer Rd SW and north of Riverside Dr SW.","verified_status":"planned","power_capacity_mw":96,"total_sqft":754220,"year_online":"2028","construction_update":"Filed in 2024 and publicly covered; as of now the facility is not yet commissioned or leased.","recent_news":"Jan 5, 2026: Vantage and Liberty Energy announced a partnership to develop and operate up to 1 GW of power solutions for next-generation data centers.","notable_tenants":"","verified_name":"Vantage Data Center - Westlake (GA21/GA22)","verified_operator":"Vantage Data Centers","verified_owner":"DigitalBridge Holdings LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":35.42,"utility_provider":"Georgia Power","tax_incentives":"Georgia Data Center Sales & Use Tax Exemption (enacted 2018).","natural_hazard_zone":"Portions of site within FEMA 100-year floodplain."},"2369":{"description":"A 250 sq ft AI micro-datacenter operated by Euphemystic Ventures in Room 123A of KU Innovation Park’s Phase III building in Lawrence, Kansas, designed to support pilot AI workloads and proof-of-concept testing.","verified_status":"operational","power_capacity_mw":0,"total_sqft":250,"year_online":"2026","construction_update":"","recent_news":"KCTV5 covered the April 9, 2026 launch of the 250 sq ft Euphemystic Ventures micro data center at KU Innovation Park.","notable_tenants":"","verified_name":"Euphemystic Ventures AI micro-datacenter","verified_operator":"Euphemystic Ventures LLC","verified_owner":"Lawrence-Douglas County Biosciences Authority","cooling_type":"unknown","tier_level":"","fiber_providers":"KanREN","num_buildings":1,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (outside Special Flood Hazard Area)"},"2370":{"description":"Deep Green DG06 was a proposed high‑density colocation data center in downtown Lansing, Michigan (around 220 S Larch St/229 S Cedar St) planned at ~24 MW; the developer withdrew the proposal on April 7, 2026, and the facility was never built.","verified_status":"decommissioned","power_capacity_mw":24,"total_sqft":64583,"year_online":"unknown","construction_update":"Project canceled before construction; no ground was broken.","recent_news":"Deep Green withdrew its Michigan DG06 proposal on April 7, 2026.","notable_tenants":"","verified_name":"Deep Green DG06","verified_operator":"Deep Green","verified_owner":"","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Lansing Board of Water & Light (BWL)","tax_incentives":"Michigan data center sales and use tax incentives enacted Dec 2024.","natural_hazard_zone":""},"2371":{"description":"Meta Hyperion – Building 1 is a planned 251 MW hyperscale data center building within Meta’s Richland Parish (Hyperion) campus in Louisiana, part of a roughly 4 million sq ft, 2,250‑acre development. The campus is being developed through a Meta–Blue Owl Capital joint venture and is under construction.","verified_status":"planned","power_capacity_mw":251,"total_sqft":0,"year_online":"2028","construction_update":"Campus construction began in late 2024; campus operations expected by 2030.","recent_news":"Mar 27, 2026: Entergy Louisiana announced an additional agreement with Meta to support the Northeast Louisiana hyperscale campus; May 2026: reporting detailed about $3.3B in tax breaks and ethics questions tied to local land deals.","notable_tenants":"Meta Platforms (owner-occupier)","verified_name":"Meta Hyperion - Building 1","verified_operator":"Meta","verified_owner":"Joint venture between Meta and funds managed by Blue Owl Capital (reported 80% Blue Owl-managed funds / 20% Meta).","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":9,"campus_acres":2250,"utility_provider":"Entergy Louisiana","tax_incentives":"Approximately $3.3B in local tax breaks approved in July 2024; PILOT property-tax arrangement noted.","natural_hazard_zone":"Moderate flood risk (parish-level); low seismic risk."},"2372":{"description":"Hut 8 River Bend – Building 1 is part of Hut 8’s hyperscale AI data center campus in West Feliciana Parish, Louisiana, anchored by a 15‑year, 245 MW AI lease with Fluidstack to support Anthropic, with Phase I operations targeted for Q2 2027.","verified_status":"under-construction","power_capacity_mw":165,"total_sqft":0,"year_online":"2027","construction_update":"Under construction; Phase I operations targeted for Q2 2027.","recent_news":"May 19, 2026: Hut 8 committed $16 million to expand water infrastructure in West Feliciana Parish to support the River Bend AI data center campus.","notable_tenants":"Fluidstack (15-year 245 MW lease); Anthropic (AI end-user)","verified_name":"Hut 8 River Bend - Building 1","verified_operator":"Hut 8 Corp.","verified_owner":"Hut 8 Corp.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":592,"utility_provider":"Entergy Louisiana","tax_incentives":"","natural_hazard_zone":"FEMA flood zone (15% property flood risk); severe hurricane/wind risk zone"},"2373":{"description":"Small colocation facility at 2304 Brothers Drive, Lafayette, Indiana, historically branded by nGenX and now listed under Windstream, offering about 1,500 sq ft of colo space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Lafayette","verified_operator":"Windstream","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":1.56,"utility_provider":"Duke Energy Indiana","tax_incentives":"Indiana Data Center Sales and Use Tax Exemption (statewide program).","natural_hazard_zone":"FEMA floodplain present in county; site-specific flood zone not determined. Elevated tornado/severe-storm risk; seismic hazard lower than SW Indiana."},"2374":{"description":"A small telecom central office and fiber switching site by US Internet at 3819 W Broadway in Robbinsdale, MN, approved by the city in March 2025 to support US Internet’s fiber network expansion.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":4000,"year_online":"unknown","construction_update":"Robbinsdale City Council approved variance and CUP (Mar 4, 2025); design completed by Meyer Group Architecture (July 2025).","recent_news":"","notable_tenants":"US Internet (self-use)","verified_name":"US Internet Robbinsdale (Robbinsdale Central Office Building)","verified_operator":"US Internet","verified_owner":"US Internet","cooling_type":"unknown","tier_level":"","fiber_providers":"US Internet","num_buildings":1,"campus_acres":0.45,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":""},"2375":{"description":"Proposed 54,000 sq ft edge data center by QLevr Data Centers at the former Travel Tags site on Carmen Ave E in Inver Grove Heights, MN. The project is presently paused under a one‑year city data center moratorium enacted on June 26, 2026.","verified_status":"planned","power_capacity_mw":5,"total_sqft":54000,"year_online":"unknown","construction_update":"Project advancement is paused under a one‑year data center moratorium adopted June 26, 2026.","recent_news":"City Council passed a one‑year data center moratorium by a 3–2 vote on June 26, 2026, pausing the QLevr project.","notable_tenants":"","verified_name":"QLevr Inver Grove Heights","verified_operator":"QLevr Data Centers","verified_owner":"FIG Ion Timber LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":14,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota data center sales tax exemption (potentially eligible if statutory criteria are met)","natural_hazard_zone":"unknown"},"2376":{"description":"Proposed 54,000-square-foot QLevr data center at the former Travel Tags site on Carmen Avenue East in Inver Grove Heights, Minnesota; the project remains planned following the city’s one-year moratorium on data centers adopted June 26, 2026.","verified_status":"planned","power_capacity_mw":5,"total_sqft":54000,"year_online":"unknown","construction_update":"Approvals paused: EAW petition activity and a one-year city moratorium have tabled progress on the proposed site-plan review.","recent_news":"On June 26, 2026, the City Council passed a one-year moratorium on data centers, pausing the proposed QLevr facility.","notable_tenants":"","verified_name":"QLevr Inver Grove Heights","verified_operator":"QLevr Data Centers","verified_owner":"","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":14,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low seismic risk; flood zone unknown"},"2377":{"description":"AT&T’s Kings Mountain, NC data center is an operational telecom facility built around 2014 within T5’s Kings Mountain Data Center Park, following a $200 million investment.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2014","construction_update":"","recent_news":"Kings Mountain approved a six‑month moratorium on new data centers (Feb 26, 2026) and later considered extending it (Jun 27, 2026).","notable_tenants":"","verified_name":"AT&T Kings Mountain Data Center (also referenced as AT&T Cardinal Data Center)","verified_operator":"AT&T","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":130,"utility_provider":"Duke Energy","tax_incentives":"Local and state incentives including tax rebates; campus growth supported by city tax incentives.","natural_hazard_zone":"FEMA Zone X (outside 100-year floodplain); low earthquake risk."},"2378":{"description":"Operational Disney enterprise data center at 138 Riverside Ct, Kings Mountain, NC, with about 98,950 sq ft and 20 MW critical power; design uses air-side economizers/AHUs and targets PUE 1.25 within the T5 Kings Mountain park.","verified_status":"operational","power_capacity_mw":20,"total_sqft":98950,"year_online":"unknown","construction_update":"","recent_news":"Kings Mountain enacted a six‑month moratorium on new data centers (Feb 2026) and weighed extending it in late June 2026.","notable_tenants":"Disney (self-use)","verified_name":"Disney Kings Mountain NC Data Center","verified_operator":"Disney","verified_owner":"Disney Worldwide Services, Inc.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":26,"utility_provider":"","tax_incentives":"City annexation incentive package providing 30 years of property tax rebates for assets placed on the land.","natural_hazard_zone":"low risk"},"2379":{"description":"T5 @ Charlotte II is T5 Data Centers’ wholesale powered‑shell data center at 131 Riverside Ct in Kings Mountain, NC, with an existing ~150,000 sq ft building on a 300‑acre campus and a dedicated 180 MW Duke Energy substation.","verified_status":"operational","power_capacity_mw":180,"total_sqft":150000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"T5 @ Charlotte II","verified_operator":"T5 Data Centers","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":300,"utility_provider":"Duke Energy","tax_incentives":"City of Kings Mountain tax incentives; North Carolina HB117 data center sales and use tax incentives.","natural_hazard_zone":"FEMA Flood Zone X (low risk)"},"2380":{"description":"A legacy Verizon central office at 234 Washington Street in downtown Providence, RI, serving as a telecom switching and network facility since the Providence Telephone Company moved here in 1917.","verified_status":"operational","power_capacity_mw":0,"total_sqft":168000,"year_online":"1917","construction_update":"","recent_news":"On June 12, 2026, Verizon announced the retirement of the Providence Washington Street RI DMS100 switch (CLLI PRVDRIWADS2) on or after August 1, 2026, with traffic to be moved to a C20 switch.","notable_tenants":"","verified_name":"Verizon Providence Washington Street Central Office (CLLI: PRVDRIWA)","verified_operator":"Verizon New England Inc.","verified_owner":"New England Telephone And Telegraph Co. (Verizon subsidiary)","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon","num_buildings":1,"campus_acres":0.52,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":"FEMA flood risk: moderate (downtown Providence area)"},"2381":{"description":"A Verizon New England wire center at 1096 Broad St in Providence (CLLI PRVDRIBR), historically hosting a Nortel DMS‑100 switch. Verizon retired the DMS‑100 in 2023 and migrated traffic to a packet end office at 234 Washington St.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Verizon Wireless (retail store at same address)","verified_name":"Verizon Providence Broad Street Wire Center (CLLI PRVDRIBR)","verified_operator":"Verizon New England Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Rhode Island Energy","tax_incentives":"","natural_hazard_zone":""},"2382":{"description":"Two purpose-built, concurrently maintainable colocation facilities (Akron I & II) at 191 East Miller Avenue, Akron, Ohio, totaling about 52,000–54,000 sq ft with approximately 2 MW total capacity.","verified_status":"operational","power_capacity_mw":2,"total_sqft":54000,"year_online":"2012","construction_update":"Expansion supported by a newly approved 10-year state tax break.","recent_news":"$4.5 million, 10-year state tax break approved to help the data center expand in Akron.","notable_tenants":"","verified_name":"Ark Data Centers Akron I and II","verified_operator":"ark data centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0,"utility_provider":"","tax_incentives":"$4.5 million, 10-year state tax break approved for expansion.","natural_hazard_zone":"FEMA Flood Zones B/X (moderate flood hazard)."},"2383":{"description":"Microtronix Datacenter is a privately owned colocation and cloud facility at 349 Wayne St, Ottoville, Ohio, that Microtronix ESolutions, LLC has operated since 2001, providing colocation, bare-metal servers, VPS, and up-to-100 Gbps direct-fiber connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Microtronix Datacenter","verified_operator":"Microtronix ESolutions, LLC","verified_owner":"Microtronix ESolutions, LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Direct fiber (Microtronix-operated, ASN 400175)","num_buildings":1,"campus_acres":0,"utility_provider":"Paulding Putnam Electric Cooperative (PPEC)","tax_incentives":"","natural_hazard_zone":"low risk"},"2384":{"description":"Brightspeed Lima is an operational Brightspeed central office/data center at 122 S Elizabeth St, Lima, Ohio. Public listings note roughly 71,060 sq ft on ~0.92 acres and its inclusion in a Brightspeed Ohio sale-leaseback package.","verified_status":"operational","power_capacity_mw":0,"total_sqft":71060,"year_online":"unknown","construction_update":"","recent_news":"March 2026 reporting notes Lima currently has three data centers operated by Microtronix, Form8tion, and Brightspeed.","notable_tenants":"Brightspeed (central office); no third-party anchor tenants publicly listed.","verified_name":"Brightspeed Lima","verified_operator":"Brightspeed","verified_owner":"United Telephone Company of Ohio","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.92,"utility_provider":"AEP Ohio","tax_incentives":"","natural_hazard_zone":""},"2385":{"description":"Strata Expanse AI Center of Excellence is Strata Expanse’s AI/data center project at 1476 County Rd 1A near Ironton/Hanging Rock in Lawrence County, Ohio, developed with partners RAVEL and Supermicro. Reports describe a ~40-acre site with an initial ~10 MW capacity expandable to ~80 MW.","verified_status":"under-construction","power_capacity_mw":10,"total_sqft":0,"year_online":"2025","construction_update":"Ribbon-cutting held Dec. 19, 2025; January 2026 coverage still described construction activity and local moratorium discussions.","recent_news":"Mar. 2026: Local reporting identified Lawrence County as the launch site for Strata Expanse’s national AI infrastructure network and noted the land sale for $919,500; the company also announced a March 2026 platform/partnership update.","notable_tenants":"","verified_name":"Strata Expanse AI Center of Excellence","verified_operator":"Strata Expanse","verified_owner":"Strata Expanse","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":40,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2386":{"description":"Bitdeer Niles is a planned 300 MW grid‑interconnected data center campus at 1047 Belmont Ave on the former Niles power plant site, targeting energization in 2028.","verified_status":"planned","power_capacity_mw":300,"total_sqft":0,"year_online":"2028","construction_update":"As of April–May 2026, Bitdeer lists Niles as a 300 MW grid‑interconnected development targeting Q4 2028 energization; on May 21, 2026, Niles approved a 180‑day moratorium on new data‑center permits.","recent_news":"June 18, 2026: Bitdeer reaffirmed Niles as a 300 MW grid‑interconnected development with Q4 2028 target energization. May 21, 2026: Niles City Council approved a 180‑day moratorium on new data‑center permits.","notable_tenants":"","verified_name":"Bitdeer Niles","verified_operator":"Bitdeer Technologies Group","verified_owner":"White Tail Creek LLC (Bitdeer subsidiary)","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":41.8,"utility_provider":"","tax_incentives":"No active, project-specific incentives verified; Ohio paused new data‑center tax exemptions on May 27, 2026.","natural_hazard_zone":"FEMA flood zone AE"},"2387":{"description":"Carrier-neutral colocation on the 5th floor of 3701 Market Street in Philadelphia’s University City, offering about 20,500 sq ft of raised-floor space with 1 MW of power and multiple fiber carriers within an 8‑story mixed-use building.","verified_status":"operational","power_capacity_mw":1,"total_sqft":20500,"year_online":"2009","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"365 Data Centers Philadelphia (University City)","verified_operator":"365 Data Centers","verified_owner":"GI Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral (AT&T, Cogent Communications, Comcast, Crown Castle, Lumen/CenturyLink, Verizon Business, Zayo)","num_buildings":1,"campus_acres":0,"utility_provider":"PECO Energy","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (sales and use tax exemption on qualified computer data center equipment).","natural_hazard_zone":""},"2388":{"description":"Carrier-neutral colocation facility at 115 Evergreen Heights Dr, operated by Fidium (formerly Consolidated Communications), offering 24/7/365 access and redundant power and cooling on a raised floor.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Jan 22, 2026: A Pennsylvania House co-sponsorship memo proposed repealing the 2021 data center sales and use tax exemption.","notable_tenants":"","verified_name":"Fidium Pittsburgh Data Center","verified_operator":"Fidium (Consolidated Communications)","verified_owner":"MSA Purpose Trust (Management Science Associates)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.98,"utility_provider":"Duquesne Light","tax_incentives":"Pennsylvania data center sales and use tax exemption (enacted 2021; repeal bill introduced Jan 22, 2026).","natural_hazard_zone":""},"2389":{"description":"Operational colocation site at 400 MSA Dr (RockPointe), listed by Fidium (formerly Consolidated Communications), with 42,000 sq ft total, 20,000 sq ft raised floor, and access to 5 MW power.","verified_status":"operational","power_capacity_mw":5,"total_sqft":42000,"year_online":"2002","construction_update":"","recent_news":"June 2026: Tarentum Borough began drafting ordinances addressing large-load facilities (including data centers); no site-specific development was reported.","notable_tenants":"","verified_name":"Fidium Tarentum (Rockpointe) Data Center","verified_operator":"Fidium","verified_owner":"Management Science Associates, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":4,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2390":{"description":"A planned hyperscale data center campus by QTS Data Centers in Salem Township, Luzerne County, Pennsylvania, spanning roughly 1,700 acres and currently in the early planning stage.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Master site plan resubmitted in March 2026 with fewer buildings; project remains in planning/permitting.","recent_news":"March 2026: QTS submitted a revised master site plan with fewer buildings. June 2026: Pennsylvania House voted 197–5 to repeal data center sales tax incentives.","notable_tenants":"","verified_name":"Salem Township Data Center Campus","verified_operator":"QTS Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":1700,"utility_provider":"PPL Electric Utilities","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (Act 25 of 2021); on June 2026 the PA House voted 197–5 to repeal data center sales tax incentives (final status pending).","natural_hazard_zone":"unknown"},"2391":{"description":"A proposed 2.6 million‑sq‑ft hyperscale data center campus at 7300 Cetronia Road in Upper Macungie Township, PA, on Air Products’ former headquarters site. Plans call for three buildings on 194 acres, but the township’s zoning board unanimously rejected the appeal in May 2026.","verified_status":"planned","power_capacity_mw":0,"total_sqft":2600000,"year_online":"unknown","construction_update":"No construction; zoning appeal denied and project paused.","recent_news":"June 11, 2026: Air Products’ counsel said the company “may or may not” move forward with the plan pending due diligence after the appeal’s denial.","notable_tenants":"","verified_name":"Cetronia Road Data Center","verified_operator":"Air Products & Chemicals","verified_owner":"Air Products & Chemicals","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":194,"utility_provider":"","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption (Act 25 of 2021) – 6% state sales/use tax exemption on qualifying data center equipment (subject to meeting program criteria).","natural_hazard_zone":"Moderate flood risk; low seismic and low wildfire risk (regional context for Lehigh County/Macungie area)."},"2392":{"description":"CleanSpark Crossville 1 is a Bitcoin mining facility at 5784 Plateau Rd in Crossville, Tennessee, originally operated by Exponential Digital and acquired by CleanSpark in 2024. It is part of CleanSpark’s statewide Tennessee portfolio of mining sites.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"2022","construction_update":"","recent_news":"January 2026: CleanSpark curtailed ‘hundreds of megawatts’ of Bitcoin mining load across its 11 Tennessee sites during extreme cold weather.","notable_tenants":"","verified_name":"CleanSpark Crossville 1","verified_operator":"CleanSpark","verified_owner":"CleanSpark","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5,"utility_provider":"Volunteer Energy Cooperative (TVA distributor)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard area)"},"2393":{"description":"CleanSpark Crossville 2 is a CleanSpark-operated Bitcoin mining site at 268 Sparta Hwy, Crossville, TN 38572. It forms part of CleanSpark’s seven-facility Tennessee acquisition completed in 2024.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"January 2026: CleanSpark curtailed “hundreds of megawatts” of Bitcoin mining load across 11 Tennessee sites during extreme cold via its flexible consumption model.","notable_tenants":"","verified_name":"CleanSpark Crossville 2","verified_operator":"CleanSpark","verified_owner":"CleanSpark","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Volunteer Energy Cooperative (TVA power)","tax_incentives":"","natural_hazard_zone":"FEMA Zone X, low risk"},"2394":{"description":"A colocation data center operated by Litewire, LLC at 204 Red Rd in McMinnville, Tennessee. Opened in 2015, it occupies a 285,000 sq ft building on a 20‑acre site and is marketed as built to Tier IV specifications.","verified_status":"operational","power_capacity_mw":0,"total_sqft":285000,"year_online":"2015","construction_update":"","recent_news":"June 2026: McMinnville adopted an 18‑month moratorium on new data centers; the 204 Red Rd property was also updated on listings as available for lease and for sale in June 2026.","notable_tenants":"","verified_name":"Litewire Data Center","verified_operator":"Litewire, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":20,"utility_provider":"McMinnville Electric System (TVA)","tax_incentives":"","natural_hazard_zone":"Moderate flood risk"},"2395":{"description":"LCUB Data Center is a Tier 3 colocation facility operated by the Lenoir City Utilities Board at 7698 Creekwood Park Blvd in Lenoir City, Tennessee, offering carrier-neutral connectivity and redundant power/cooling. It sits within LCUB’s headquarters campus and serves regional organizations requiring high availability.","verified_status":"operational","power_capacity_mw":2,"total_sqft":4400,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"LCUB Data Center","verified_operator":"LCUB (Lenoir City Utilities Board)","verified_owner":"LCUB (Lenoir City Utilities Board)","cooling_type":"chilled water","tier_level":"Tier 3","fiber_providers":"Carrier-neutral: LCUB Broadband, AT&T, IRIS Networks, Windstream","num_buildings":1,"campus_acres":2.94,"utility_provider":"LCUB (Lenoir City Utilities Board)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (minimal risk); low seismic risk (East Tennessee Seismic Zone)"},"2396":{"description":"Windstream operates an enterprise-grade colocation data center at 105 Westwood Pl in Brentwood, TN (suburban Nashville), providing resilient colocation services for regional customers.","verified_status":"operational","power_capacity_mw":1.2,"total_sqft":22000,"year_online":"2013","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Brentwood, TN Data Center","verified_operator":"Windstream","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Seismic: outside primary New Madrid impact zone; flood risk not determined."},"2397":{"description":"1547 MCTX1 is a carrier-neutral interconnection hub inside the 17‑story Chase Tower at 200 S 10th St in McAllen, TX, owned/operated by 1547. It hosts the McAllen Internet Exchange (MCT‑IX) and is expanding with a dedicated 13,000 sq ft data center annex and infrastructure upgrades.","verified_status":"under-construction","power_capacity_mw":1.5,"total_sqft":222000,"year_online":"2026","construction_update":"Active expansion: new meet‑me room/interconnection builds and a dedicated 13,000 sq ft data center annex, alongside backup power, fire/life‑safety, elevator, and HVAC upgrades.","recent_news":"Dec 16, 2025: 1547 launched the McAllen Internet Exchange (MCT‑IX) at Chase Tower and announced ecosystem expansions and infrastructure upgrades.","notable_tenants":"","verified_name":"1547 MCTX1 (Chase Tower McAllen)","verified_operator":"1547 Critical Systems Realty","verified_owner":"Harrison Street","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral (45+ unique carrier networks)","num_buildings":2,"campus_acres":9.09,"utility_provider":"AEP Texas","tax_incentives":"Texas data center sales/use tax exemption on qualifying equipment and electricity","natural_hazard_zone":"FEMA Zone D; very low flood risk"},"2398":{"description":"Core Scientific Austin 1 is a 20 MW data center at 3301 Hibbetts Road in Austin, Texas, spanning 38 acres and converted from a former HP facility for hosting high-density compute. CoreWeave leases capacity here for specialized GPU cloud compute alongside Bitcoin mining.","verified_status":"operational","power_capacity_mw":20,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 6, 2026: Core Scientific reported Q1 FY2026 results—total revenue $115.2M and colocation revenue $77.5M; the company expects to exceed 450 billable MW by the end of summer 2026.","notable_tenants":"CoreWeave — 16 MW lease for specialized GPU cloud compute (8-year agreement).","verified_name":"Core Scientific Austin 1","verified_operator":"Core Scientific","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":38,"utility_provider":"Austin Energy","tax_incentives":"Texas Qualifying Data Center (QDC) sales and use tax exemption program participation (Core Scientific, Inc.; Coreweave, Inc.).","natural_hazard_zone":"Low seismic risk per ThinkHazard; flood/hurricane risk not determined from provided sources."},"2399":{"description":"A 200 MW bitcoin-mining data center at 12022 Ranch Rd 33, Garden City, Texas, energized in 2023 and acquired by MARA in April 2024; the site is adjacent to and directly interconnected with a TerraForm Power wind farm.","verified_status":"operational","power_capacity_mw":200,"total_sqft":0,"year_online":"2023","construction_update":"","recent_news":"MARA’s 2025 10‑K filed March 2, 2026 confirms the Garden City site as operational with 132 MW operational capacity at acquisition.","notable_tenants":"Owner-operated by MARA; previously hosted Marathon under a 200 MW contract.","verified_name":"MARA Garden City Data Center","verified_operator":"MARA Holdings, Inc.","verified_owner":"Mara Garden City LLC (subsidiary of MARA Holdings, Inc.)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":50,"utility_provider":"TerraForm Power wind farm (direct interconnection); ERCOT grid","tax_incentives":"","natural_hazard_zone":"low risk"},"2400":{"description":"Barrio Energy’s Tyler project (Project Rose) is a 12MW data center retrofit of a 1947 former auto-repair building at 1105 W Erwin St in Tyler, Texas, with recent city planning activity covering 1101 and 1105 W Erwin. Listings indicate roughly 8,000–8,160 SF and the facility remains in development with a special use permit under consideration.","verified_status":"under-construction","power_capacity_mw":12,"total_sqft":8160,"year_online":"unknown","construction_update":"Listed as under construction with an active 2026 Special Use Permit case (S26-003) covering 1101 and 1105 W Erwin St.","recent_news":"June 2026: City of Tyler opened SUP case S26-003 for Barrio Resources LLC at 1101 and 1105 W Erwin St, with a public meeting and a Planning & Zoning hearing set for July 7, 2026.","notable_tenants":"","verified_name":"Barrio Energy - Tyler (Project Rose)","verified_operator":"Barrio Energy","verified_owner":"Barrio Resources LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":""},"2401":{"description":"Skybox Atlantic Station is a planned build-to-suit hyperscale data center campus at 2300 Plano Parkway in Plano, Texas, developed by Skybox Datacenters with Prologis. The 64-acre site features an onsite substation expandable to 100 MW and up to 1 million sq ft of data center space.","verified_status":"planned","power_capacity_mw":100,"total_sqft":1000000,"year_online":"unknown","construction_update":"Phase 2 is designed for up to four mission-critical data centers; the facility has not yet been commissioned or leased, and there is no leaseable power under construction.","recent_news":"","notable_tenants":"","verified_name":"Skybox Atlantic Station","verified_operator":"Skybox Datacenters","verified_owner":"Prologis","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":64,"utility_provider":"","tax_incentives":"Texas Data Center Sales and Use Tax Exemption for Qualified Data Centers","natural_hazard_zone":"Minor flood risk; exposure to severe hail and tornado events typical of North Texas."},"2402":{"description":"Serverfarm’s TiTAN – Moses Lake Data Center is a hardened former military command facility in Moses Lake, WA that now operates as a colocation site powered by 100% hydroelectric energy. The high‑desert location enables efficient hybrid cooling and a low PUE.","verified_status":"operational","power_capacity_mw":22,"total_sqft":163000,"year_online":"2011","construction_update":"","recent_news":"Washington ended the sales tax exemption for replacement/refurbishment of data center server equipment effective July 1, 2026.","notable_tenants":"","verified_name":"TiTAN – Moses Lake Data Center","verified_operator":"Serverfarm","verified_owner":"Manulife Investment Management (controlling interest via Manulife Infrastructure Fund II; property entity: RS Titan, LLC)","cooling_type":"hybrid","tier_level":"","fiber_providers":"CenturyLink/Lumen, Level 3, Zayo, AT&T, T-Mobile, NOANet, LocalTel, Northland Cable, Grant County PUD Dark Fiber","num_buildings":1,"campus_acres":10,"utility_provider":"Grant County PUD","tax_incentives":"Washington State sales and use tax exemption for qualifying data center equipment/power infrastructure; replacement/refurbishment of servers no longer exempt as of July 1, 2026.","natural_hazard_zone":"Low risk — Seismic 2B; outside 500-year flood zone"},"2403":{"description":"A large-scale cryptocurrency mining facility in Usk, Washington at the former Ponderay Newsprint Mill site, now operated by Merkle Standard. The site is active and designed for significant scale, with liquid-cooled infrastructure and plans extending toward several hundred megawatts.","verified_status":"operational","power_capacity_mw":100,"total_sqft":0,"year_online":"unknown","construction_update":"Planned deployment of an initial 72 MW GPU cluster at the Washington liquid-cooled facility.","recent_news":"Apr 27, 2026: Washington ended data center tax exemptions for equipment replacements and refurbishments effective July 1, 2026.","notable_tenants":"Argo Blockchain; Hashbranch","verified_name":"Merkle Standard: Washington - Crypto Mining Data Center","verified_operator":"Merkle Standard","verified_owner":"","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Pend Oreille County Public Utility District (PUD)","tax_incentives":"Washington data center retail sales and use tax exemption (eligibility-based); equipment replacement/refurbishment exemption ended July 1, 2026.","natural_hazard_zone":"FEMA flood risk; moderate seismic risk"},"2404":{"description":"A telecom central office and data center PoP at 426 East Casino Road in Everett, WA, originally built in 1970. Owned by Ziply Fiber and operated as a colocation point-of-presence by MOD Mission Critical, it serves as Ziply’s Everett Primary Central Office (CLLI: EVRTWAXA).","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"1970","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EVE1 - Ziply Everett WA Data Center PoP","verified_operator":"MOD Mission Critical","verified_owner":"Ziply Fiber","cooling_type":"unknown","tier_level":"","fiber_providers":"Ziply Fiber","num_buildings":1,"campus_acres":3.77,"utility_provider":"Snohomish County PUD","tax_incentives":"Washington state sales and use tax exemption for qualifying data centers/tenants; replacement/refurbishment exemptions ended July 1, 2026 (SB 6231).","natural_hazard_zone":"Seismic risk (Zone 3 standards; potential M7.4 crustal events) and mapped flood hazard areas in Everett."},"2405":{"description":"Small privately-owned colocation and managed-hosting data center operated by Vivio Technologies at 1473 W Rose St in Walla Walla, Washington, serving local and remote customers since the early 2000s.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2002","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Vivio Technologies – WW TS Site","verified_operator":"Vivio Technologies","verified_owner":"Vivio Technologies (SMK Solutions Inc)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Wave; PocketiNet","num_buildings":1,"campus_acres":0,"utility_provider":"Pacific Power","tax_incentives":"Washington State rural-county data-center sales & use-tax exemption (RCW 82.08.986).","natural_hazard_zone":"FEMA Flood Zone D (very low flood); medium seismic risk"},"2406":{"description":"A small Vivio Technologies-operated colocation data center at 22 W Main St in downtown Walla Walla, WA, featuring UPS and generator power redundancy.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"A Feb 27, 2026 regional article on a separate proposed project noted Vivio Technologies as an established data center operator in Walla Walla.","notable_tenants":"","verified_name":"Vivio Technologies - WW UG Site","verified_operator":"Vivio Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0.06,"utility_provider":"Pacific Power","tax_incentives":"","natural_hazard_zone":"FEMA flood zone (parcel) unknown; community-level flood and moderate earthquake risk."},"2407":{"description":"Small colocation facility operated by PocketiNet Communications Inc., located inside the Walla Walla Regional Airport terminal building at 45 Terminal Loop Rd, Suite 210.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Local press in February 2026 cited PocketiNet as one of three existing data center operators in Walla Walla in coverage of a separate hyperscale project.","notable_tenants":"","verified_name":"PocketiNet Walla Walla","verified_operator":"PocketiNet Communications Inc.","verified_owner":"Port of Walla Walla","cooling_type":"unknown","tier_level":"","fiber_providers":"PocketiNet (own fiber network)","num_buildings":1,"campus_acres":0,"utility_provider":"Pacific Power","tax_incentives":"Washington retail sales and use tax exemption for qualifying data centers (RCW 82.08.986/82.12.986); exemptions for equipment replacements/refurbishments ended July 1, 2026.","natural_hazard_zone":"Moderate seismic risk; limited wildfire hazard; community participates in FEMA flood risk mapping."},"2408":{"description":"A roughly 2,000-sq-ft, carrier-neutral colocation data center on the first floor of SupraNet’s Excelsior Drive office building in Madison, WI, operated by SupraNet Communications, Inc. and equipped with redundant power, cooling, and diverse network connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SupraNet Communications Madison","verified_operator":"SupraNet Communications, Inc.","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; Spectrum, TDS, AT&T, WIN, Lumen, U.S. Signal, Verizon","num_buildings":1,"campus_acres":0,"utility_provider":"Madison Gas and Electric (MGE)","tax_incentives":"","natural_hazard_zone":"low risk"},"2409":{"description":"Proposed hyperscale data center concept on the ~250-acre former GM/JATCO brownfield at 1000 General Motors Drive and 544 Kellogg Avenue in Janesville, WI, once discussed at up to 800 MW; the City Council let the developer LOI expire on June 22, 2026, and the site is now in master planning.","verified_status":"planned","power_capacity_mw":800,"total_sqft":0,"year_online":"unknown","construction_update":"No construction. The site is a brownfield requiring remediation; the LOI expired before any build began.","recent_news":"June 2026: The City Council unanimously let the Viridian LOI expire and moved to create data center guardrails; the city launched its GM/JATCO redevelopment website.","notable_tenants":"","verified_name":"GM/JATCO Data Center Campus (Former GM Assembly Plant)","verified_operator":"","verified_owner":"City of Janesville","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":250,"utility_provider":"Alliant Energy","tax_incentives":"","natural_hazard_zone":"Proximity to Rock River; local flooding observed April 2026. Consult FEMA Flood Maps for site-specific flood risk."},"2410":{"description":"State-operated high-performance computing data center in Huntsville’s Cummings Research Park run by the Alabama Supercomputer Authority; the facility spans nearly 24,000 square feet and serves as a central hub for ASA services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":24000,"year_online":"unknown","construction_update":"","recent_news":"Alabama Fiber Network (AFN) selected to support ASA’s Project ELEVATE (June 5, 2026); ASA announced transition to insourcing certain contractor-provided services.","notable_tenants":"","verified_name":"Alabama Supercomputer Center","verified_operator":"Alabama Supercomputer Authority","verified_owner":"Alabama Supercomputer Authority (state-funded corporation)","cooling_type":"unknown","tier_level":"","fiber_providers":"Alabama Fiber Network (AFN)","num_buildings":0,"campus_acres":0,"utility_provider":"Huntsville Utilities","tax_incentives":"","natural_hazard_zone":"unknown"},"2411":{"description":"Directory‑listed Lumen colocation site at 208 Telegraph Rd in Prichard/Mobile, AL, with limited public specifications; distinct from the separate proposed Edged “Project Gateway” data center at 214 Telegraph Rd.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"No direct updates on the Lumen site; separately, the proposed Edged “Project Gateway” at 214 Telegraph Rd (~$93M) drew mixed reactions at June 2026 meetings.","notable_tenants":"","verified_name":"Lumen: Prichard AL Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Hurricane-prone Gulf Coast; FEMA flood zone unknown."},"2412":{"description":"An enterprise data center operated by CGI at 10007 S 51st St in Phoenix, supporting CGI’s managed IT and infrastructure services and identified by CGI as its largest company‑owned enterprise data center in Phoenix.","verified_status":"operational","power_capacity_mw":0,"total_sqft":40000,"year_online":"2001","construction_update":"","recent_news":"June 22, 2026: CGI and NetApp announced that NetApp Keystone will power CGI’s block storage solutions; May 21, 2026: CGI announced expanded AI capabilities within the CGI Advantage ERP platform.","notable_tenants":"","verified_name":"CGI Phoenix Data Center","verified_operator":"CGI","verified_owner":"CGI","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen","num_buildings":1,"campus_acres":2.77,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk"},"2413":{"description":"A planned ~600-acre hyperscale data center campus by Beale Infrastructure on two parcels west of I-10 at Luckett and Hardin Roads in Marana, AZ. The Marana Town Council unanimously approved the rezoning in early January 2026.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Rezoning approved January 2026; no construction start reported (planning/pre-construction).","recent_news":"June 2026: Arizona enacted a three-year moratorium on new data center sales-tax exemptions; June 29, 2026: Town of Marana clarified the required review process and development standards for hyperscale data centers.","notable_tenants":"","verified_name":"Luckett Road North and South Data Centers","verified_operator":"Beale Infrastructure","verified_owner":"Herbert Kai S12 LLC / Kai Trst 97 S12 LLC / Jihong S12 LLC (south parcel); Corporation of the Presiding Bishop of The Church of Jesus Christ of Latter-day Saints (north parcel)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":600,"utility_provider":"Tucson Electric Power (TEP) and Trico Electric Cooperative","tax_incentives":"Arizona Computer Data Center Program exists, but a three-year moratorium on new data center sales-tax exemptions was enacted in June 2026.","natural_hazard_zone":"unknown"},"2414":{"description":"Planned hyperscale data center campus in Weld County, Colorado by Cielo Digital Infrastructure, listed at 750 MW planned capacity on a 500-acre site; status is planned.","verified_status":"planned","power_capacity_mw":750,"total_sqft":0,"year_online":"unknown","construction_update":"Planned; no public confirmation of permits, groundbreaking, or construction start.","recent_news":"Weld County Commissioners approved adding data centers to Chapter 23 of county code on Apr 6, 2026, establishing siting and documentation requirements that affect projects in unincorporated Weld County.","notable_tenants":"","verified_name":"Cielo Hudson Data Center","verified_operator":"Cielo Digital Infrastructure","verified_owner":"Arroyo Investors (backing Cielo Digital Infrastructure)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":500,"utility_provider":"","tax_incentives":"None active; statewide data center tax-incentive legislation failed in May 2026.","natural_hazard_zone":""},"2415":{"description":"STACK Infrastructure CHI01B is an operational wholesale data center at 1301 Touhy Ave in Elk Grove Village, Illinois, and is part of STACK’s CHI01 campus alongside CHI01A, which delivers 40MW across 14 acres.","verified_status":"operational","power_capacity_mw":24,"total_sqft":202000,"year_online":"unknown","construction_update":"","recent_news":"Illinois announced a pause on new data center tax incentive agreements in June 2026; existing agreements are to be honored.","notable_tenants":"","verified_name":"STACK Infrastructure CHI01B - Chicago","verified_operator":"STACK Infrastructure","verified_owner":"Blue Owl Capital (owner of STACK Infrastructure via acquisition of IPI Partners)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":14,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Illinois Data Center Investment Program (state sales/use tax exemptions and credits). New agreements paused June 2026; existing agreements honored.","natural_hazard_zone":"unknown"},"2416":{"description":"STACK Infrastructure CHI02 is a planned hyperscale data center in Elk Grove Village (Chicago market), designed for AI/ML and cloud workloads, delivering 36 MW on an 18‑acre site in an approximately 263,000 sq ft two‑story building.","verified_status":"planned","power_capacity_mw":36,"total_sqft":263000,"year_online":"2026","construction_update":"Listed as planned/under development; no official groundbreaking or commissioning milestone published.","recent_news":"","notable_tenants":"","verified_name":"STACK Infrastructure CHI02","verified_operator":"STACK Infrastructure","verified_owner":"Blue Owl Capital (via IPI Partners); site-specific real-estate title not verified","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":18,"utility_provider":"ComEd","tax_incentives":"","natural_hazard_zone":"Flood risk present in Cook County; regional seismic exposure (Wabash Valley Seismic Zone); no coastal hurricane risk."},"2417":{"description":"Element Critical Chicago Two (CH2) is an operational colocation data center at 341 Haynes Drive, Wood Dale, Illinois, offering about 45,000 sq ft (with ~26,000 sq ft raised floor) and around 5 MW of capacity.","verified_status":"operational","power_capacity_mw":5,"total_sqft":45000,"year_online":"unknown","construction_update":"","recent_news":"On May 26, 2026, JLL listed Element Critical’s Chicago One and Chicago Two (including CH2 at 341 Haynes Drive) for sale.","notable_tenants":"","verified_name":"Element Critical Chicago Two (CH2)","verified_operator":"Element Critical","verified_owner":"Element Critical","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2418":{"description":"US Signal’s IL02 Aurora Data Center is an operational colocation facility at 4267 Meridian Parkway, Aurora, IL 60504, acquired by US Signal in early 2026. It is a 70,000 SF site with about 1.35 MW UPS-supported power and a 2026 expansion underway.","verified_status":"operational","power_capacity_mw":1.35,"total_sqft":70000,"year_online":"2007","construction_update":"Phase 1 expansion to reach ~3 MW UPS-supported capacity is underway in 2026; facility remains operational.","recent_news":"June 4, 2026: US Signal announced a multi-phase Aurora expansion lifting UPS-supported capacity from ~1.35 MW to 3 MW and targeting 8–10 MW total facility capacity.","notable_tenants":"","verified_name":"US Signal IL02 Aurora Data Center","verified_operator":"US Signal","verified_owner":"US Signal Company, LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"","natural_hazard_zone":"unknown"},"2419":{"description":"Operational colocation data center at 4513 Western Ave, Lisle, IL, operated by Csquare and marketed as ORD4-A, with about 194,057 sq ft and 15 MW of capacity.","verified_status":"operational","power_capacity_mw":15,"total_sqft":194057,"year_online":"unknown","construction_update":"Feb 2026: Village issued a stop-work action on exterior work; interior remodeling permits remained in effect.","recent_news":"Feb 17, 2026: Lisle officials stopped exterior work at 4513 Western Ave for lacking proper permits for chiller/generator-related activities.","notable_tenants":"First National Technology Solutions (FNTS) at 4513 Western Ave 1st floor","verified_name":"Csquare - Chicago ORD4-A","verified_operator":"Csquare","verified_owner":"Brookfield Infrastructure-backed Csquare/Centersquare (parcel owner not verified)","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":14.68,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"","natural_hazard_zone":"low flood risk (not in FEMA floodplain)"},"2420":{"description":"Operational colocation/cloud data center at 3080 Ogden Ave, Suite 303, Lisle, IL, operated by XNet Information Systems, Inc.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"1993","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"XNet Information Systems, Inc. – Lisle Data Center","verified_operator":"XNet Information Systems, Inc.","verified_owner":"True Properties, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"","natural_hazard_zone":"FEMA flood zones B and X (moderate hazard)"},"2421":{"description":"Small downtown Chicago colocation site commonly listed as Cogent Chicago 2 at 216 W. Jackson Blvd, with ~11,940 sq ft in a 10‑story multi-tenant building; directories show Cogent at the address and list the site as a data center.","verified_status":"operational","power_capacity_mw":0,"total_sqft":11940,"year_online":"unknown","construction_update":"","recent_news":"June 29, 2026: Cogent closed the sale of 10 data center facilities, including a Chicago site identified in industry coverage as 4200 W. 40th St (not 216 W. Jackson). Mid‑June 2026: 216 W. Jackson’s LoopNet listing continued to market suites in the 10‑story building while highlighting building connectivity/infrastructure.","notable_tenants":"","verified_name":"Cogent Data Center - Chicago 2","verified_operator":"Cogent Communications, Inc.","verified_owner":"Brog Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent (on-net)","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zones B/X (moderate flood hazard); low seismic risk"},"2422":{"description":"Cogent Data Center - Chicago 3 is a carrier-neutral colocation facility operated by Cogent at 4200 W 40th St in Chicago, offering about 44,432 sq ft of data center space with a total power capacity around 7.2 MW.","verified_status":"operational","power_capacity_mw":7.2,"total_sqft":44432,"year_online":"unknown","construction_update":"","recent_news":"On May 26, 2026, Cogent announced a definitive agreement to sell 10 data center facilities, including this Chicago location, to I Squared Capital for $225 million in cash, with closing targeted for Q3 2026 pending approvals.","notable_tenants":"","verified_name":"Cogent Data Center - Chicago 3","verified_operator":"Cogent Communications, Inc.","verified_owner":"Cogent Communications, Inc. (pending sale to I Squared Capital, expected Q3 2026)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":2.63,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Illinois Data Centers Investment Program (state sales/use tax exemptions for qualifying data centers; new approvals suspended in 2026)","natural_hazard_zone":"FEMA Zone X – low flood risk"},"2423":{"description":"Carrier-neutral colocation data center operated by NetSource at 2368 Corporate Lane, Suite 112, Naperville, IL 60563, featuring redundant UPS, generators, and N+1 HVAC/CRAC cooling.","verified_status":"operational","power_capacity_mw":1,"total_sqft":3960,"year_online":"unknown","construction_update":"","recent_news":"Property at 2368 Corporate Ln showed sale/lease listing activity in June 2026.","notable_tenants":"","verified_name":"NetSource Chicago Data Center","verified_operator":"NetSource Communications, Inc.","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":2.86,"utility_provider":"City of Naperville Electric Utility","tax_incentives":"","natural_hazard_zone":""},"2424":{"description":"Digital Fortress Chicago (CHI) is a colocation data center at 360 E 22nd St, Lombard, IL, in a 111,185 sq ft retrofit building with an 8 MW power capacity.","verified_status":"operational","power_capacity_mw":8,"total_sqft":111185,"year_online":"unknown","construction_update":"","recent_news":"Jan 2026: Digital Fortress acquired three data center facilities in Portland, Oregon; Jun 2026: Illinois Governor Pritzker paused new state data center tax incentives.","notable_tenants":"","verified_name":"Digital Fortress Chicago Data Center (CHI)","verified_operator":"Digital Fortress","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Illinois Data Center Investment Tax Exemption program; note: on Jun 5, 2026, the Governor paused new state data center tax incentives.","natural_hazard_zone":"low risk"},"2425":{"description":"HydraVault Data Center is a purpose-built, 76,000-sf, two-story AI/colocation facility under construction at 2538 S Wabash Avenue in Chicago, designed for high-density workloads with hybrid liquid/air cooling and up to 20MW of supply power.","verified_status":"under-construction","power_capacity_mw":20,"total_sqft":76000,"year_online":"2027","construction_update":"Under construction: construction permit secured Oct 2025; full building permit issued Feb 2026; operator lists the site as under construction.","recent_news":"Full building permit issued for the project (Feb 16, 2026) and local coverage of neighborhood transparency concerns (Mar 13, 2026).","notable_tenants":"","verified_name":"HydraVault Data Center","verified_operator":"HydraVault","verified_owner":"ECD Company (Scott D. Greenberg)","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral/dark-fiber ready; proximity to Chicago’s primary interconnects (e.g., 350 E. Cermak).","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Eligible clients may qualify for Illinois Data Centers Investment Program sales/use tax exemptions (up to 20 years); site is in an Opportunity Zone and Bronzeville TIF District.","natural_hazard_zone":""},"2426":{"description":"Operational colocation data center at 725 South Wells Street in Chicago’s South Loop, branded by Hivelocity as Chicago 4 (ORD4) and by 1547 as CHIL2.","verified_status":"operational","power_capacity_mw":5,"total_sqft":66000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Hivelocity Chicago 4 (ORD4) — 725 South Wells; marketed by 1547 as CHIL2","verified_operator":"Hivelocity","verified_owner":"Harrison Street Real Estate Capital and fifteenfortyseven Critical Systems Realty (1547) joint venture","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; robust connectivity to Chicago’s Fiber Ring and 350 Cermak","num_buildings":1,"campus_acres":0.14,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"unknown","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard); low seismic and minor wind/hurricane risk for downtown Chicago"},"2427":{"description":"EdgeConneX ATL01 (EDCATL01) is an edge colocation data center at 1003 Donnelly Ave SW in Atlanta, delivering roughly 2.1 MW within about 29,527 sq ft and operating since around 2014. It is carrier-neutral on a campus with ATL02 and has earned ENERGY STAR certification.","verified_status":"operational","power_capacity_mw":2.1,"total_sqft":29527,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"Akamai; Netflix; Cloudflare; ByteDance; Fastly; Hurricane Electric; Cogent; Comcast","verified_name":"EdgeConneX ATL01 (EDCATL01)","verified_operator":"EdgeConneX","verified_owner":"EQT Infrastructure (minority stake held by Sixth Street as of 2024)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia High-Technology Data Center Equipment Sales & Use Tax Exemption (HB 696, 2018)","natural_hazard_zone":"low risk"},"2428":{"description":"CyrusOne OCB1 is a 216,000‑sq‑ft colocation data center at 4700 Gifford Rd in Council Bluffs, IA, offering 120,000 sq ft of raised floor. It operates on 100% renewable electricity via a MidAmerican Energy green tariff.","verified_status":"operational","power_capacity_mw":18,"total_sqft":216000,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne OCB1","verified_operator":"CyrusOne","verified_owner":"KKR and Global Infrastructure Partners (GIP)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa Data Center Sales and Use Tax Incentives (exemptions/partial refunds for qualifying purchases once eligibility criteria are met).","natural_hazard_zone":"FEMA Flood Zone X (levee-protected); regional tornado risk."},"2429":{"description":"Ark Data Centers’ Marion (Cedar Rapids) colocation facility at 5055 Rec Drive, Marion, IA serves the Cedar Rapids market, offering a 19,000+ sq ft, concurrently maintainable environment with 0.81 MW capacity, operated by Ark (formerly Involta) and owned by funds managed by Carlyle.","verified_status":"operational","power_capacity_mw":0.81,"total_sqft":19000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Ark Data Centers Marion (Cedar Rapids) Data Center","verified_operator":"Ark Data Centers","verified_owner":"Carlyle (funds managed by Carlyle)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":10.03,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2430":{"description":"Colocation data center in the Des Moines, Iowa metro area that opened in late 2009 and is now operated by US Signal after acquiring OneNeck in 2024. A 6 MW power expansion for the facility was announced in 2025.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2009","construction_update":"6 MW power expansion announced in 2025; US Signal celebrated the Des Moines data center expansion in October 2025.","recent_news":"","notable_tenants":"","verified_name":"US Signal Des Moines IA01 (formerly OneNeck Urbandale Data Center)","verified_operator":"US Signal","verified_owner":"Igneo Infrastructure Partners","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa data center sales and use tax incentives for eligible data centers (exemption or partial refund on qualifying purchases).","natural_hazard_zone":"Moderate tornado/storm and flood risk; review FEMA flood maps for site-specific status."},"2431":{"description":"Small colocation and disaster‑recovery data center operated by Pioneer Broadband in Presque Isle, Maine, with 24/7 access and redundant connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Pioneer Broadband DataCenter (Presque Isle)","verified_operator":"Pioneer Broadband","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; internationally redundant routes via Pioneer Broadband","num_buildings":0,"campus_acres":0,"utility_provider":"Versant Power","tax_incentives":"","natural_hazard_zone":""},"2432":{"description":"A 148,000 SF secure facility in National Business Park, Annapolis Junction, MD, under construction near Fort Meade and fully leased to a top 10 U.S. defense contractor with commencement targeted for Q4 2026.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":148000,"year_online":"2026","construction_update":"Shell under construction with tenant interior build-out targeting lease commencement in Q4 2026.","recent_news":"On Feb 5, 2026, a full-building, 148,000 SF lease was executed with a top 10 U.S. defense contractor at 400 National Business Parkway; commencement is expected in Q4 2026.","notable_tenants":"Top 10 U.S. Defense contractor (undisclosed); full-building lease executed Feb 5, 2026","verified_name":"COPT Defense Properties - 400 National Business Parkway","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties (Corporate Office Properties Trust)","cooling_type":"unknown","tier_level":"","fiber_providers":"Fiber optics available","num_buildings":1,"campus_acres":500,"utility_provider":"BGE (Baltimore Gas & Electric)","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption Incentive Program","natural_hazard_zone":"low risk"},"2433":{"description":"A 17‑story, 476,000 SF Class A office/enterprise tower at 1501 S Clinton Street in Baltimore, owned and operated by COPT Defense Properties and located within the 67‑acre Canton Crossing development.","verified_status":"operational","power_capacity_mw":0,"total_sqft":476000,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"Johns Hopkins Federal Credit Union; Stantec; Johns Hopkins Community Physicians; CareFirst","verified_name":"1501 S Clinton Street (Canton Crossing Tower)","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties (REIT)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":67,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"","natural_hazard_zone":"unknown"},"2434":{"description":"100 Light Street is a COPT Defense Properties-operated landmark office tower in downtown Baltimore that is also listed as a data center location.","verified_status":"operational","power_capacity_mw":0,"total_sqft":530000,"year_online":"unknown","construction_update":"","recent_news":"COPT Defense Properties reported Q1 2026 results highlighting a 6.2% increase in FFO per share and a Moody's credit upgrade.","notable_tenants":"","verified_name":"100 Light Street","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.3,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Maryland Data Center Sales & Use Tax Exemption (up to 20 years for qualified projects).","natural_hazard_zone":"FEMA/Inner Harbor flood risk context (elevated flood exposure in the neighborhood)."},"2435":{"description":"A secure office/R&D building operated by COPT Defense Properties at North Gate Business Park near Aberdeen Proving Ground, listed as a data center location for defense-oriented operations.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"COPT Defense reported Q1 2026 results, noting nearly $250 million committed to three new investments; the U.S. Army also launched a new Data Operations Center at Aberdeen Proving Ground in April 2026.","notable_tenants":"","verified_name":"COPT Defense Properties - 206 Research Boulevard","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Maryland Data Center Sales & Use Tax Exemption Incentive Program (exempts sales and use tax on qualified data center personal property; up to 20 years for qualifying projects).","natural_hazard_zone":"FEMA Flood Zone X context for APG area; moderate flood risk context."},"2436":{"description":"A secure, mission-critical COPT Defense Properties facility at 210 Research Boulevard within the North Gate Business Park adjacent to Aberdeen Proving Ground in Aberdeen, Maryland, supporting defense-related operations.","verified_status":"operational","power_capacity_mw":0,"total_sqft":84000,"year_online":"2010","construction_update":"","recent_news":"COPT Defense Properties reported Q1 2026 results, noting portfolio metrics and development pipeline progress.","notable_tenants":"U.S. Department of Defense, intelligence agencies, and defense contractors","verified_name":"COPT Defense Properties - 210 Research Boulevard","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2437":{"description":"Former small data center/ISP site at 205 2nd Street SW in downtown Braham that is now listed for sale/lease as a commercial property; historical directory records list it as a data center, but current listings indicate the site is not in active DC operation.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":2064,"year_online":"unknown","construction_update":"","recent_news":"June 2026: The property at 205 2nd Street SW remained actively listed for sale/lease as a commercial property (0.11 acres; 2,064 sq ft).","notable_tenants":"","verified_name":"Former RevNet RNDC #1 / Integris Braham – 205 2nd St SW","verified_operator":"","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.11,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2438":{"description":"Vaultas Alexandria Data Center (ALX1) is an operational, carrier‑neutral edge/colocation facility at 720 Hawthorne St, Alexandria, MN 56308, offering colocation and cloud connectivity; directories list about 10,000 sq ft of space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"A Jan 15, 2026 Minnesota Thermal Energy Network Site Suitability Study flagged the Vaultas Alexandria Data Center as a primary thermal‑capture opportunity due to high‑temperature effluent from server cooling.","notable_tenants":"","verified_name":"Vaultas Alexandria Data Center (ALX1)","verified_operator":"Vaultas","verified_owner":"Vaultas, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0.3,"utility_provider":"ALP Utilities (Alexandria Board of Public Utilities)","tax_incentives":"","natural_hazard_zone":"County risks: severe storms/tornadoes, severe winter storms, and flooding; hurricane and seismic risk are low/not applicable."},"2439":{"description":"Colocation data center at 221 E Hickory St, Mankato, MN operated by Fidium (formerly Consolidated Communications), offering carrier‑neutral connectivity and long‑running service since 2008.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12500,"year_online":"2008","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fidium Mankato Data Center","verified_operator":"Fidium (formerly Consolidated Communications)","verified_owner":"Affiliates of Searchlight Capital Partners and British Columbia Investment Management Corporation (BCI)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Carrier-neutral; multiple Tier 1 ISPs (per facility marketing)","num_buildings":1,"campus_acres":0.75,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota Qualified Data Center sales tax exemption (state program; applicability to this facility unknown)","natural_hazard_zone":"unknown"},"2440":{"description":"Operational colocation facility at 3401 Technology Drive in Duluth offering redundant power/HVAC and specialized fire detection, with a 26,000+ sq ft, LEED Silver data center footprint.","verified_status":"operational","power_capacity_mw":1,"total_sqft":26000,"year_online":"unknown","construction_update":"","recent_news":"Feb 24, 2026: Local editorial spotlighted Ark’s Duluth site as the area’s enterprise-class data center amid discussion of a separate Hermantown proposal.","notable_tenants":"","verified_name":"Ark Data Centers Duluth 1","verified_operator":"Ark Data Centers","verified_owner":"Ark Data Centers (Carlyle funds)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Minnesota Power","tax_incentives":"","natural_hazard_zone":"low risk"},"2441":{"description":"A small Innova Solutions-listed colocation site at 421 1st Ave SW in downtown Rochester, MN appears on Datacenters.com and aligns with Innova’s global-locations address; no public technical specifications are disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Innova Solutions Rochester 2","verified_operator":"Innova Solutions","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0.33,"utility_provider":"Rochester Public Utilities (RPU)","tax_incentives":"","natural_hazard_zone":""},"2442":{"description":"15 MW colocation data center in Blue Earth, Minnesota operated by AAIM Data Centers, supporting high-performance computing (HPC), crypto mining, and enterprise workloads.","verified_status":"operational","power_capacity_mw":15,"total_sqft":10000,"year_online":"2025","construction_update":"A major 15 MW expansion at the Blue Earth site is underway/near completion.","recent_news":"Blue Earth Light and Water presented on data centers at the City Council work session on June 15, 2026.","notable_tenants":"","verified_name":"AAIM Minnesota 1","verified_operator":"AAIM Data Centers","verified_owner":"AAIM Data Centers","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Bevcomm","num_buildings":1,"campus_acres":0,"utility_provider":"Blue Earth Light and Water (BELW)","tax_incentives":"Minnesota Qualified Data Center sales tax exemption (up to 35 years on eligible purchases) — qualification status for this facility not confirmed.","natural_hazard_zone":"Risk exposure includes tornadoes, straight-line winds, flooding, ice storms, and blizzards (per county hazard planning)."},"2443":{"description":"Planned ~4,000-sq-ft US Internet facility at 3819 W Broadway (former Robbinsdale Clinic site) to serve as a local data center/switching-station supporting USI’s fiber network build-out in Robbinsdale.","verified_status":"planned","power_capacity_mw":0,"total_sqft":4000,"year_online":"unknown","construction_update":"2025 milestones: site acquisition reported and plans to demolish the former clinic and build a 4,000‑sq‑ft facility; no confirmation of construction start or operation by early 2026.","recent_news":"As of Jan 10, 2026, the project remains listed as a planned industrial development on The Development Tracker; no newer substantive updates located.","notable_tenants":"","verified_name":"US Internet Robbinsdale","verified_operator":"US Internet","verified_owner":"US Internet (reported acquired early 2025)","cooling_type":"unknown","tier_level":"","fiber_providers":"US Internet","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy (electric)","tax_incentives":"","natural_hazard_zone":""},"2444":{"description":"Operational colocation/data center service at 702 Main Ave in Moorhead, MN, operated by 702 Communications (Val‑Ed Joint Venture LLP), marketed as a “Tier 2” facility with a 99.8% uptime claim.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"702 Communications Data Center (Moorhead)","verified_operator":"VAL-ED Joint Venture, L.L.P. d/b/a 702 Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Moorhead Public Service (MPS)","tax_incentives":"","natural_hazard_zone":""},"2445":{"description":"A Lumen Technologies colocation data center located within the 34‑story office tower at 1111 Main St. in downtown Kansas City, MO, providing enterprise colocation services in a multi-tenant building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"No facility-specific announcements in the last 6 months. Related context: AT&T closed its $5.75B acquisition of Lumen’s mass-market fiber business (Feb 2026) and LightEdge acquired a separate 3 MW Tier III data center in Kansas City (May 2026; address not specified).","notable_tenants":"","verified_name":"Lumen Kansas City","verified_operator":"Lumen Technologies","verified_owner":"Robinson Park and Copaken Brooks (ownership/asset management partnership; Copaken Brooks is property manager)","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":1,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"Missouri Data Center Sales Tax Exemption Program","natural_hazard_zone":"unknown"},"2446":{"description":"Proposed 20‑story data center tower at 304 W. 10th St. in downtown Kansas City, Missouri, by Revitalization Unlimited, totaling about 142,085 sq ft and replacing the existing Western Newspaper Union Building.","verified_status":"planned","power_capacity_mw":30,"total_sqft":142085,"year_online":"unknown","construction_update":"Planning/permitting stage; City Plan Commission review scheduled for Aug 5, 2026.","recent_news":"June 2026: Ingram’s reported the 20‑story project at 304 W. 10th St. is advancing to a City Plan Commission review set for August 5, 2026.","notable_tenants":"","verified_name":"304 West 10th Street Data Center","verified_operator":"Revitalization Unlimited","verified_owner":"Revitalization Unlimited","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":1,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"Moderate flood risk (Downtown Kansas City); FEMA zone for parcel not specified."},"2447":{"description":"Proposed 20‑story, 384‑ft downtown Kansas City data‑center tower at 934 Central St./304 W. 10th St. to replace the Western Newspaper Union Building; listings cite ~142,085 sq ft and 30 MW; the project is in the city review stage, not operational.","verified_status":"planned","power_capacity_mw":30,"total_sqft":142085,"year_online":"unknown","construction_update":"Planned only; development plans submitted, project in city review. No verified construction start.","recent_news":"On June 22, 2026, the developer submitted formal plans for the 20‑story data‑center tower to the city.","notable_tenants":"","verified_name":"304 W. 10th St / 934 Central St Data Center (proposed)","verified_operator":"Revitalization Unlimited","verified_owner":"Revitalization Unlimited","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2448":{"description":"Thornton Labs - Butte is an operational boutique colocation/data center in the historic Thornton Building at 65 E Broadway St, offering office/colo space and fiber connectivity in a 55,000 SF building.","verified_status":"operational","power_capacity_mw":1,"total_sqft":55000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Thornton Labs - Butte","verified_operator":"Thornton Labs","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral (one or more ISPs/carriers)","num_buildings":1,"campus_acres":0.21,"utility_provider":"NorthWestern Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"2449":{"description":"A 172,000 SF mission‑critical facility at 760 Washington Avenue in Carlstadt, NJ, developed in 2003 by Russo Development with 5 MW utility capacity; the site previously hosted a SunGard Availability Services data center.","verified_status":"operational","power_capacity_mw":5,"total_sqft":172000,"year_online":"2003","construction_update":"","recent_news":"","notable_tenants":"Formerly SunGard Availability Services (CRL-760)","verified_name":"760 Washington Avenue Mission Critical Data Center Facility","verified_operator":"Russo Development","verified_owner":"Russo Development","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G","tax_incentives":"Next New Jersey Program – AI","natural_hazard_zone":"unknown"},"2450":{"description":"Operational Verizon/Cellco telecom network equipment/data center at 145 Chubb Way, Branchburg, NJ, totaling about 252,966 sq ft and LEED O+M: Data Centers v4 certified in 2021.","verified_status":"operational","power_capacity_mw":0,"total_sqft":252966,"year_online":"unknown","construction_update":"","recent_news":"USGBC lists “Verizon Branchburg NEC Recertification” submitted on 2026-02-01.","notable_tenants":"","verified_name":"Verizon Branchburg NEC","verified_operator":"Verizon Wireless (Cellco Partnership d/b/a Verizon Wireless)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":28.76,"utility_provider":"Jersey Central Power & Light (JCP&L)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE"},"2451":{"description":"Former Sungard AS enterprise data center at 1008 Virgil Avenue, Ridgefield, NJ that was marketed for auction/sale as an office property. The site is no longer operated as a data center.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":24900,"year_online":"unknown","construction_update":"Decommissioned and marketed at auction in early 2024; sold in 2024 for $2.33M.","recent_news":"","notable_tenants":"Former occupant: Sungard Availability Services.","verified_name":"1008 Virgil Avenue (former Sungard AS data center)","verified_operator":"none","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"PSE&G","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X"},"2452":{"description":"Rackspace’s New York 2 (NYC2) Somerset data center at the 200/202–216 Campus Drive property is a ~35,000 sq ft, Rackspace‑operated colocation facility owned by Mapletree Industrial Trust. The site is operational and offers around 2.738 MW total capacity.","verified_status":"operational","power_capacity_mw":2.738,"total_sqft":35000,"year_online":"unknown","construction_update":"","recent_news":"June 23, 2026: 200 Campus Drive listing posted, offering the data center for lease/sublease with redundant building and security systems noted.","notable_tenants":"","verified_name":"Rackspace New York 2 (NYC2) — Somerset","verified_operator":"Rackspace Technology","verified_owner":"Mapletree Industrial Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"Level 3 (Lumen), Verizon, Zayo","num_buildings":1,"campus_acres":2.88,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA flood Zone X (low risk)"},"2453":{"description":"Operational blockchain/crypto-mining and digital infrastructure facility at 500 N. Fourth St. (former WestRock paper mill) in Coshocton, Ohio, opened with a ribbon-cutting in 2022 and around 50 MW of mining power. The campus spans about 125 acres on North Fourth Street.","verified_status":"operational","power_capacity_mw":50,"total_sqft":0,"year_online":"2022","construction_update":"","recent_news":"June 2026: City testimony to Ohio’s Select Data Center Committee cited Standard Power’s established 125-acre digital infrastructure campus on North Fourth Street.","notable_tenants":"BlockchainK2 Corp. (2019 agreement with 500 N 4th Street LLC d/b/a Standard Power).","verified_name":"Standard Power Coshocton","verified_operator":"Standard Power","verified_owner":"500 N 4th Street LLC d/b/a Standard Power","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":125,"utility_provider":"Energy Harbor Corp. (retail power supply agreement)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone AE"},"2454":{"description":"A 380,000 sq ft crypto-mining and AI data center at 428 Seiberling St in East Akron, Ohio, converted from a former Goodyear tire factory and operating up to 150 MW.","verified_status":"operational","power_capacity_mw":150,"total_sqft":380000,"year_online":"2021","construction_update":"","recent_news":"Atlantic Energy selected as retail power supplier for the 380,000 sq ft Akron facility (announced Mar 5, 2026).","notable_tenants":"","verified_name":"Viking Data Centers Akron","verified_operator":"Viking Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Ohio Edison (FirstEnergy); Atlantic Energy (retail supplier)","tax_incentives":"Ohio paused new data center sales tax exemptions (May 2026). A 10-year state tax break for data centers in Akron and Independence was approved on Mar 5, 2026.","natural_hazard_zone":"Moderate flood risk (Akron area)."},"2455":{"description":"DataYard operates a colocation-focused data center at 130 W Second St, Suite 250 in downtown Dayton, Ohio, providing redundant power, cooling, connectivity, and physical security. The facility is housed inside The 130 Building, a 21‑story office tower.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"In 2026, DataYard moved its administrative offices to the Arcade Innovation Hub at 31 S. Main St., while maintaining the data center at W 2nd St.","notable_tenants":"","verified_name":"DataYard Data Center","verified_operator":"DataYard","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"AES Ohio","tax_incentives":"","natural_hazard_zone":""},"2456":{"description":"Lumen Dayton 1 is a telecom-class colocation facility operated by Lumen Technologies at 600 S Broadway Street in Dayton, Ohio, with a total footprint of 4,685 sq ft. Industry directories list the site as operational.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4685,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Dayton 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"AES Ohio (formerly Dayton Power & Light)","tax_incentives":"","natural_hazard_zone":"low risk"},"2457":{"description":"Small enterprise data center/colocation room operated by The Karcher Group at 5590 Lauby Rd Suite 8 in North Canton, Ohio, listed as 'TKG Data Center' on DataCenterMap.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TKG Data Center","verified_operator":"The Karcher Group (TKG)","verified_owner":"Gate 77 LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Ohio Edison","tax_incentives":"","natural_hazard_zone":""},"2458":{"description":"Lumen Akron 2 is an operational telecom colocation facility at 110 South Arlington Street in Akron, Ohio, operated by Lumen Technologies. It has 12,000 sq ft total space with 6,000 sq ft of raised-floor colocation.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"Feb 2, 2026: AT&T completed the $5.75B acquisition of Lumen’s mass-market fiber business.","notable_tenants":"","verified_name":"Lumen Akron 2","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (Level 3); diverse fiber connectivity","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X; low seismic risk"},"2459":{"description":"DataBank CLE1 (Downtown Cleveland) is an operational colocation facility at 1255 Euclid Ave offering carrier-neutral connectivity in the Euclid corridor, with about 7,440 IT sq ft and 0.4 MW critical IT load. The earlier association of 1255 Euclid with a Verizon facility appears outdated; current Verizon Cleveland data center listings are tied to 1525 Rockwell.","verified_status":"operational","power_capacity_mw":0.4,"total_sqft":7440,"year_online":"unknown","construction_update":"","recent_news":"Local media profiled downtown Cleveland’s data centers and carrier-hotel ecosystem on Jun 22, 2026.","notable_tenants":"","verified_name":"DataBank CLE1 - Downtown Cleveland Data Center","verified_operator":"DataBank","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 16 onsite carriers","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2460":{"description":"Windstream operates a data center at 200 W Prospect Ave in downtown Cleveland, an address also referred to as 100 Public Square (Higbee Building). Public listings confirm the location and carrier presence, but do not publish detailed technical specifications.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Cleveland","verified_operator":"Windstream","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2461":{"description":"A colocation and managed hosting facility operated by InfinIT (formerly N2Net) inside the historic 22‑story Superior Building in downtown Cleveland, offering Tier 3‑class, N+1 infrastructure and 24/7 monitoring.","verified_status":"operational","power_capacity_mw":0,"total_sqft":20000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"InfinIT Cleveland Data Center (formerly N2Net Cleveland Data Center)","verified_operator":"InfinIT (formerly N2Net)","verified_owner":"E.V. Bishoff Company","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk"},"2462":{"description":"Ark Data Centers Independence (formerly Involta) is a colocation data center at 7300 East Pleasant Valley Road in Independence, Ohio, operated by Ark Data Centers to serve enterprise workloads in Northeast Ohio.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"March 2026: Ohio approved a sales tax exemption (about $4.5M) to support Ark’s planned $136 million expansion across its Akron and Independence data centers.","notable_tenants":"","verified_name":"Ark Data Centers Independence","verified_operator":"Ark Data Centers","verified_owner":"The Carlyle Group","cooling_type":"air-cooled","tier_level":"Tier III","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"The Illuminating Company (FirstEnergy)","tax_incentives":"10-year, 50% sales tax exemption on eligible data center equipment (~$4.5M approved for the Akron/Independence expansion).","natural_hazard_zone":"Flood risk near the Cuyahoga River in and near Independence (USGS flood-inundation mapping; local flood risk documented)."},"2463":{"description":"Carrier/interconnection colocation facility at 3850 Tower Road, Rapid City, SD, operated by Golden West Telecommunications Cooperative.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Golden West Telecommunications (AS6580); SDN Communications (AS13576)","verified_name":"Golden West Rapid City Skyline Facility","verified_operator":"Golden West Telecommunications Coop., Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Midco; SDN Communications","num_buildings":0,"campus_acres":0.86,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2464":{"description":"Planned hyperscale data center redevelopment of the Dauphin Highlands Golf Course at 650 S Harrisburg Street, Harrisburg/Swatara Township, PA, led by Harrisburg I, LLC (a Provident Realty affiliate). The land sale settled in June 2026 and the course will close Oct 12, 2026 before redevelopment.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Pre-construction/planned: land sale settled in June 2026; DCGA noted operations could continue via lease through mid‑Nov 2026; course closing Oct 12, 2026 ahead of redevelopment.","recent_news":"June 2026: final settlement of the Dauphin Highlands sale to Harrisburg I, LLC; the course will close Oct 12, 2026 ahead of data center redevelopment.","notable_tenants":"","verified_name":"Harrisburg I, LLC Data Center","verified_operator":"Harrisburg I, LLC (Provident Realty Advisors/Provident Data Centers)","verified_owner":"Harrisburg I, LLC (affiliate of Provident Realty Advisors/Provident Data Centers)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"PPL Electric Utilities","tax_incentives":"","natural_hazard_zone":"flood risk (FEMA 100-year/500-year zones present in Harrisburg)"},"2465":{"description":"Popca LLC: Scranton Campus is a proposed two‑building, approximately 290,400‑sq‑ft data center campus on about 76 acres along Newton Road in Newton Township, Lackawanna County, Pennsylvania, with an on‑site substation and well/septic infrastructure. Local reporting distinguishes this site from a separate data center proposal at 819 Newton Road in Ransom Township.","verified_status":"planned","power_capacity_mw":0,"total_sqft":290400,"year_online":"unknown","construction_update":"Entitlement appeal in process; hearing continued/canceled and no new date set.","recent_news":"June 11, 2026: Local report says no hearing has been scheduled yet on Popca LLC’s appeal of Newton Township’s denial.","notable_tenants":"","verified_name":"Popca LLC: Scranton Campus","verified_operator":"Popca LLC","verified_owner":"Popca LLC / Mark Gawron","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":76,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2466":{"description":"Windstream San Antonio is a telecom/colocation point at 106 S St Mary’s St (One Alamo Center) in downtown San Antonio. Public listings confirm the site but do not disclose detailed technical specifications.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream San Antonio","verified_operator":"Windstream (Uniti Group)","verified_owner":"Entrada Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream","num_buildings":1,"campus_acres":0,"utility_provider":"CPS Energy","tax_incentives":"","natural_hazard_zone":"FEMA flood: Zone X (Area of Minimal Flood Hazard)"},"2467":{"description":"CityNAP is a three-story, carrier-neutral colocation and Internet exchange facility at 415 N Main Ave in downtown San Antonio, operating since 2006 and acting as a convergence point for multiple fiber-optic networks.","verified_status":"operational","power_capacity_mw":0,"total_sqft":31140,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"CenturyLink","verified_name":"CityNAP","verified_operator":"CityNAP (a Liquid Networx Partner)","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; CenturyLink/Lumen, AboveNet, Verizon, AT&T, Level 3","num_buildings":1,"campus_acres":0.35,"utility_provider":"CPS Energy","tax_incentives":"Texas state sales and use tax exemption for qualifying data center equipment and electricity","natural_hazard_zone":"low risk (FEMA Zone X)"},"2468":{"description":"An operational Cogent colocation and connectivity facility at 831 North Hampton Avenue in Fairfax, SC, offering carrier-neutral services across a 30,800 sq ft building with protected power around 2 MW.","verified_status":"operational","power_capacity_mw":2.08,"total_sqft":30800,"year_online":"1986","construction_update":"","recent_news":"May 26, 2026: Cogent announced a $225M sale of 10 data centers to an I Squared Capital-sponsored entity (Phoenix, Anaheim, Burbank, Stockton, Atlanta, Chicago, Elkridge, Kansas City, Nashville, Houston) — Fairfax SC was not among them. Feb 26, 2026: Cogent said it completed converting legacy Sprint sites into data centers.","notable_tenants":"","verified_name":"Fairfax SC Data Center","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral; Cogent, AT&T, Comcast, Time Warner, FiberLight","num_buildings":0,"campus_acres":1.4,"utility_provider":"Dominion Energy","tax_incentives":"","natural_hazard_zone":"FEMA flood risk present (exact zone not confirmed); hurricane exposure for South Carolina; low seismic risk"},"2469":{"description":"IAD-03 is Aligned Data Centers’ hyperscale facility at 22715 Relocation Drive in Sterling, Virginia, marketed at 72 MW of IT capacity and roughly 430,000 square feet.","verified_status":"operational","power_capacity_mw":72,"total_sqft":430000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"IAD-03 Data Center","verified_operator":"Aligned Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide program).","natural_hazard_zone":""},"2470":{"description":"Vantage VA21 is Building 1 on Vantage’s Ashburn II (VA2) campus in Sterling, Virginia, a wholesale, multistory facility on an 18‑acre site planned for three buildings totaling up to 96 MW and ~800,000 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":80000,"year_online":"2024","construction_update":"First phase of the VA2 campus became operational in 2024; subsequent buildings are in development toward the full campus build-out.","recent_news":"June 2026: Local coverage described residents seeking help from an environmental group about noise at the VA2 site and noted plans for added soundproofing; statewide, the Virginia Senate’s budget proposal preserved the data center sales tax exemption.","notable_tenants":"","verified_name":"Vantage VA21","verified_operator":"Vantage Data Centers","verified_owner":"VANTAGE DATA CENTERS VA2 LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":18,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Retail Sales & Use Tax Exemption for qualifying data center computer equipment and enabling software.","natural_hazard_zone":"low risk"},"2471":{"description":"Vienna Office & Data Center is Cogent Communications’ telecom-class colocation site at 1921 Gallows Rd in Vienna, VA, offering Internet, VPN, Transport, and Colocation services with approximately 0.4 MW of power capacity within the Tysons International Plaza campus.","verified_status":"operational","power_capacity_mw":0.4,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"On May 26, 2026, Cogent Communications announced a definitive agreement to sell 10 data center facilities for $225 million to an entity sponsored by I Squared Capital.","notable_tenants":"","verified_name":"Vienna Office & Data Center","verified_operator":"Cogent Communications","verified_owner":"Fortress Investment Group","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":3,"utility_provider":"Dominion Energy","tax_incentives":"","natural_hazard_zone":"FEMA flood zone X (outside 100-year floodplain)"},"2472":{"description":"Carrier-neutral colocation facility operated by Neutron LLC (Neutron Colocation) in Suite 1401 of the U.S. Bank (Old National Bank) Building at 422 W Riverside Ave, Spokane, WA, with 50,000 sq ft total and 2,000 sq ft of colocation space; interconnection is active with multiple networks and a local internet exchange.","verified_status":"operational","power_capacity_mw":0,"total_sqft":50000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Neutron - Spokane","verified_operator":"Neutron LLC (Neutron Colocation)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; PeeringDB lists 11 networks and 1 local exchange (SpokaneIX); confirmed provider includes Hurricane Electric (PoP on site).","num_buildings":1,"campus_acres":0,"utility_provider":"Avista Utilities","tax_incentives":"Washington retail sales and use tax exemption is available for qualifying data centers/tenants.","natural_hazard_zone":"FEMA Zone X (low flood risk); low earthquake hazard."},"2473":{"description":"Small colocation data center at 1 W. Alder in downtown Walla Walla. Originally branded by OrbitCom, it is now listed as Fusion Connect - Walla Walla following OrbitCom’s asset transfer to Birch (2015) and Birch’s Cloud/Business Services sale to Fusion (2018).","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fusion Connect - Walla Walla Data Center","verified_operator":"Fusion Connect","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0.78,"utility_provider":"Pacific Power","tax_incentives":"Washington retail sales/use tax exemption for qualifying data center equipment and power infrastructure (eligibility required).","natural_hazard_zone":"Moderate flood risk (Flood Factor 3/10); FEMA zone unknown"},"2474":{"description":"Small colocation facility operated by Franklin PUD inside its Administrative Building at 1411 W Clark St, Pasco, WA. Provides space for private businesses to house equipment offsite.","verified_status":"operational","power_capacity_mw":0,"total_sqft":19238,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Franklin PUD Colocation Data Center / Franklin PUD Data Center","verified_operator":"Franklin PUD (Public Utility District No. 1 of Franklin County)","verified_owner":"Public Utility District No. 1 of Franklin County (Franklin PUD)","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":1,"campus_acres":2.75,"utility_provider":"Franklin PUD","tax_incentives":"","natural_hazard_zone":"Address-specific FEMA flood zone unknown; county hazard plan in place."},"2475":{"description":"Proposed NE Edge hyperscale data-center campus at the Millstone Power Station site in Waterford, CT (≈1.5 million sq ft, up to 300 MW behind-the-meter). The town’s host-fee agreement was terminated in March 2026, and subsequent reporting describes the project as defeated.","verified_status":"decommissioned","power_capacity_mw":300,"total_sqft":1500000,"year_online":"unknown","construction_update":"Host-fee agreement terminated in March 2026 after NE Edge failed to file a building permit; no construction start verified.","recent_news":"April 2026 reporting described the NE Edge–Waterford project as defeated after the town terminated the host-fee agreement.","notable_tenants":"","verified_name":"NE Edge: Connecticut Data Center (Millstone Data Center)","verified_operator":"NE Edge, LLC (NE Edge Waterford LLC)","verified_owner":"Dominion Energy Nuclear Connecticut, Inc. (Millstone Power Station property owner)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Proposed behind-the-meter supply from Dominion Energy Nuclear Connecticut (Millstone Power Station)","tax_incentives":"State program under CT Public Act 21-1; Waterford Host Municipality Fee Agreement (~$231M over 30 years) was terminated with the project.","natural_hazard_zone":"Coastal FEMA flood risk (Millstone site subject to flood hazard evaluations)"},"2476":{"description":"CT Data Center at Beacon Falls is a 32 MW wholesale data center project in Beacon Falls, Connecticut, developed by O&G Industries via CT Data Center, LLC. The two‑story facility is planned at 294,164 sq ft on ~47 acres with on‑site Class I fuel‑cell generation and a chilled‑water plant; it was approved in 2022 and is listed as under construction.","verified_status":"under-construction","power_capacity_mw":32,"total_sqft":294164,"year_online":"unknown","construction_update":"Approved by the town in May 2022; Baxtel lists the project as “is building.” No later, dated milestones (e.g., groundbreaking/topping out) were verified.","recent_news":"","notable_tenants":"","verified_name":"CT Data Center at Beacon Falls","verified_operator":"CT Data Center, LLC / O&G Industries","verified_owner":"O&G Industries","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":47,"utility_provider":"Eversource","tax_incentives":"Connecticut Data Center Incentive program: sales and use tax exemptions, property tax exemptions, and exemption from any future financial transaction tax, subject to a DECD agreement; project materials indicate the Beacon Falls facility qualifies and reference multi‑year sales/use‑tax abatement.","natural_hazard_zone":"Above 500-year floodplain; nearby Railroad Avenue areas have experienced flooding; local flood risk appears low to moderate depending on exact parcel."},"2477":{"description":"STACK Infrastructure CHI01A is a wholesale colocation data center at 1441 Touhy Avenue in Elk Grove Village (Chicago metro) delivering ~12MW of capacity across 221,000 sq ft as part of the CHI01 campus.","verified_status":"operational","power_capacity_mw":12,"total_sqft":221000,"year_online":"2015","construction_update":"","recent_news":"Feb 2026: Illinois announced a two-year suspension of state tax incentives for new data center developments.","notable_tenants":"Cyxtera Technologies (lease rejected in 2023)","verified_name":"STACK Infrastructure CHI01A","verified_operator":"STACK Infrastructure","verified_owner":"IPI Partners (owned by Blue Owl Capital as of Jan 2025)","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral; Zayo, Time Warner Telecom, Comcast","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Tax Exemptions program; new data center incentives suspended for two years starting July 1, 2026","natural_hazard_zone":"FEMA Zone X (moderate flood risk); not in 100-year floodplain"},"2478":{"description":"KARIS Critical is exploring a potential data center development at the former BP/INEOS campus at 150 W. Warrenville Road in Naperville; no formal plan has been filed and the effort remains exploratory, distinct from the earlier Lucent Lane proposal that was denied.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"No data center construction activity; the site is marketed for redevelopment with prior cleanup/demolition noted.","recent_news":"June 2026: KARIS Critical began exploring a data center development at the former BP/INEOS campus at 150 W. Warrenville Road in Naperville, shortly after its separate Lucent Lane proposal was denied in January.","notable_tenants":"","verified_name":"KARIS Critical potential data center at 150 W. Warrenville Road (Naperville)","verified_operator":"KARIS Critical","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":169,"utility_provider":"","tax_incentives":"No site-specific incentive agreement identified; Illinois has paused new data center tax incentives as of July 1, 2026.","natural_hazard_zone":"Moderate flood hazard"},"2479":{"description":"Operational GoNetspeed local telecom office/POP at 113 S Main St, Arab, Alabama providing fiber internet service to the Arab market.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"GoNetspeed Arab POP / local telecom office","verified_operator":"GoNetspeed","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"GoNetspeed (not marketed as carrier-neutral); business services up to 100 Gbps.","num_buildings":0,"campus_acres":0,"utility_provider":"Arab Electric Cooperative","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard)."},"2480":{"description":"Edged Atlanta ATL01-02 is a 100 MW hyperscale data center at 1760 Thomas Street NW on Edged’s Atlanta campus, totaling 452,280 sq ft and reported operational in 2026.","verified_status":"operational","power_capacity_mw":100,"total_sqft":452280,"year_online":"2026","construction_update":"ATL01-02 is operational. ATL01-03 (42 MW) topped out in April 2026 and is expected online in early 2027.","recent_news":"April 2026: Edged reported ATL01-03 (42 MW) topped out and ATL01-02 (100 MW) operational, with ATL01-03 expected online in early 2027.","notable_tenants":"","verified_name":"Edged Atlanta ATL01-02","verified_operator":"Edged (an Endeavour company)","verified_owner":"Endeavour (parent of Edged)","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral; multiple fiber providers; four diverse fiber POEs; two MMRs","num_buildings":3,"campus_acres":80,"utility_provider":"","tax_incentives":"Georgia High-Technology Data Center Equipment Sales & Use Tax Exemption (eligibility subject to investment/job thresholds).","natural_hazard_zone":"unknown"},"2481":{"description":"T5 @ Atlanta IV is a planned hyperscale AI/HPC data center campus on a 91‑acre site in South Fulton County (Fairburn/Palmetto area), marketed at up to 200 MW with three buildings totaling up to 1.32 million sq ft and scalability toward 300 MW.","verified_status":"planned","power_capacity_mw":200,"total_sqft":1320000,"year_online":"unknown","construction_update":"Filed/entitled; planned development stage, not operational.","recent_news":"Palmetto approved a rewritten industrial zoning code to exclude/ban data centers.","notable_tenants":"","verified_name":"T5 @ Atlanta IV","verified_operator":"T5 Data Centers","verified_owner":"T5 Data Centers; platform jointly owned by QuadReal Property Group and T5 principals","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":91,"utility_provider":"Georgia Power","tax_incentives":"Georgia High-Technology Data Center Equipment sales/use tax exemption (statewide program). Legislative efforts to repeal/modify were reported in March 2026.","natural_hazard_zone":"unknown"},"2482":{"description":"Meta’s Stanton Springs Data Center is a hyperscale campus at 240 Shire Parkway in Social Circle (Stanton Springs), Georgia, operated by Meta. It opened with a 970,000‑sq‑ft first building and has expanded to multiple buildings on the campus.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2020","construction_update":"Operational campus; Building 11 (40 MW) is planned/expected to be operational in 2026.","recent_news":"May 20, 2026: An EPA official agreed to review whether the Meta Stanton Springs data center project contaminated drinking water.","notable_tenants":"","verified_name":"Meta Stanton Springs Data Center","verified_operator":"Meta","verified_owner":"Meta Platforms, Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":75,"utility_provider":"Walton Electric Membership Corporation (Walton EMC)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone A (1% annual-chance) at 240 Shire Pkwy parcel"},"2483":{"description":"Project Sail is a planned 900 MW hyperscale data center campus on roughly 832 acres near Newnan in Coweta County, Georgia, being developed by Prologis. At full buildout, it is planned for around nine buildings totaling about 4.34 million sq ft with an estimated $17 billion investment.","verified_status":"planned","power_capacity_mw":900,"total_sqft":4340000,"year_online":"2036","construction_update":"Rezoning approved in a split 3–2 vote in early April 2026; project received the go-ahead but construction start has not been confirmed.","recent_news":"Coweta County commissioners approved Project Sail rezoning in a 3–2 vote on April 7–8, 2026.","notable_tenants":"Microsoft (unconfirmed)","verified_name":"Project Sail","verified_operator":"Prologis","verified_owner":"Prologis","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":9,"campus_acres":832,"utility_provider":"","tax_incentives":"Georgia HB 696 high-technology data center equipment sales and use tax exemption","natural_hazard_zone":"Low seismic risk; moderate storm/tornado exposure; inland hurricane exposure; moderate wildfire potential; verify site-specific flood risk via FEMA FIRMs."},"2484":{"description":"A planned hyperscale data center campus on Gregory Road in Covington (Newton County), Georgia, totaling about 1.41 million sq ft across multiple buildings and targeting up to 360 MW of capacity.","verified_status":"planned","power_capacity_mw":360,"total_sqft":1410000,"year_online":"2036","construction_update":"Planning/regulatory phase: DRI review occurred in May 2025; annexation dispute sent to arbitration. No construction start identified.","recent_news":"May 7, 2026: Plans filed for the 1.4 million-square-foot data center campus on Gregory Road.","notable_tenants":"AWS (reported, unconfirmed)","verified_name":"Gregory Road Data Center","verified_operator":"Universal Planning & Development, LLC","verified_owner":"JBW Investments, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":230,"utility_provider":"Georgia Power","tax_incentives":"Georgia high-tech data center equipment sales and use tax exemption (HB 696) for qualifying projects.","natural_hazard_zone":"FEMA Flood Zone X; Newton County moderate overall risk."},"2485":{"description":"Gregory Road Data Center is a planned multi-building hyperscale campus on roughly 213 acres along Gregory Road in Covington/Newton County, Georgia, totaling up to about 1.41 million square feet. The project is associated with Universal Planning and Development and is undergoing annexation-related review by the City of Covington.","verified_status":"planned","power_capacity_mw":0,"total_sqft":1410000,"year_online":"unknown","construction_update":"Regional review final report issued May 1, 2025; parcels proposed for annexation into the City of Covington. No construction start documented.","recent_news":"Jan 22, 2026: City of Covington enacted a moratorium and moved to reject two annexation requests related to data center development.","notable_tenants":"","verified_name":"Gregory Road Data Center","verified_operator":"Universal Planning and Development, LLC (project proponent; end-user operator not identified)","verified_owner":"Tide Investments LLC; John B. Williams & Alyce Toonk; JBW Investments LLC; JF Land Investments LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":213,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2486":{"description":"GA1 – Maysville is an Ardent Data Centers AI/HPC campus in Maysville, Georgia, marketed at 96MW IT in high‑density configurations. Northern Data previously announced a 120MW AI/HPC development at the site.","verified_status":"under-construction","power_capacity_mw":120,"total_sqft":0,"year_online":"2026/2027","construction_update":"Design and development progressing as of Apr 30, 2025; local planning hearings were scheduled in Dec 2024 and Jan 2025.","recent_news":"On 2026-06-17, RUM Group Inc. (formerly Rumble Inc.) closed its acquisition of Northern Data AG.","notable_tenants":"","verified_name":"GA1 – Maysville","verified_operator":"Ardent Data Centers","verified_owner":"","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":64.87,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Inland Georgia location with moderate severe-wind risk; parcel-specific FEMA flood zone not verified."},"2487":{"description":"A planned hyperscale data center campus by Southeast Property Holdings LLC on a 133-acre Henderson Farms tract north of GA-20 at McDonough Street in Hampton, GA, approved for three 195,000-sq-ft buildings (585,000 sq ft total) and an on-site electrical substation.","verified_status":"planned","power_capacity_mw":0,"total_sqft":585000,"year_online":"unknown","construction_update":"Conditional-use approval obtained; contractor page lists major site/civil work quantities. No verified vertical-construction or energization milestone found.","recent_news":"March 2026: Regional coverage highlighted Hampton’s debate over data center growth and noted the Southeast Property project’s unanimous council approval a year earlier.","notable_tenants":"","verified_name":"Southeast Property: Hampton Campus (Henderson Farms)","verified_operator":"Southeast Property Holdings LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":133,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2488":{"description":"Planned 133-acre hyperscale data center campus in Hampton (Henry County) associated with the Henderson Farms area and approved via conditional use permitting north of Georgia 20 at McDonough Street.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Conditional use permit approved in March 2025; no verified vertical-construction or operational milestones identified.","recent_news":"March 2026 reporting highlighted Hampton’s growing scrutiny of data center projects and confirmed the Southeast Property proposal’s prior approval.","notable_tenants":"","verified_name":"Southeast Property: Hampton Campus (Henderson Farms)","verified_operator":"Southeast Property Holdings LLC","verified_owner":"Southeast Property Holdings LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":133,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Hampton area: FEMA Zone X/500‑year flood risk; low seismic risk."},"2489":{"description":"Planned hyperscale data center campus by Link Logistics/B9 Union City Owner LLC at Evans Dr & Westbrook Rd in Union City, Georgia, on 231 acres, with up to five buildings totaling about 1.56 million sq ft and a first phase targeted for 2028.","verified_status":"planned","power_capacity_mw":0,"total_sqft":1560000,"year_online":"2028","construction_update":"Planned/pre‑construction: development filing announced; no verified building permits or construction start.","recent_news":"Link Logistics filed to develop a five‑building, ~1.56m sq ft data center campus in Union City; first phase targeted for 2028.","notable_tenants":"","verified_name":"The Crossings Campus","verified_operator":"Link Logistics","verified_owner":"B9 Union City Owner LLC / Link Logistics (Blackstone-owned)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":231,"utility_provider":"","tax_incentives":"Georgia High‑Technology Data Center Equipment sales/use tax exemption (for qualifying projects under O.C.G.A. § 48-8-3(68.1)).","natural_hazard_zone":""},"2490":{"description":"Planned two-building Digital Realty hyperscale data center campus on ~97 acres at the former Fort Gillem site in Forest Park, GA, developed via Digital Fort Gillem LLC, totaling about 1.9 million sq ft and up to 200 MW with an estimated $2B investment.","verified_status":"planned","power_capacity_mw":200,"total_sqft":1900000,"year_online":"unknown","construction_update":"Filed DRI application; facility remains listed as planned.","recent_news":"Community post noted an EPD Water Pollution Branch comment period for the Fort Gillem Data Center ending June 4, 2026.","notable_tenants":"","verified_name":"Digital Realty Fort Gillem ATL15/ATL16","verified_operator":"Digital Realty","verified_owner":"Digital Fort Gillem LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":97,"utility_provider":"Georgia Power","tax_incentives":"","natural_hazard_zone":""},"2491":{"description":"Proposed hyperscale data center campus at 5745 and 5841 Jackson Road in Griffin (Spalding County, GA), planned across ~189–190 acres with up to ~5 million sq ft across multiple buildings.","verified_status":"planned","power_capacity_mw":0,"total_sqft":5000000,"year_online":"unknown","construction_update":"Rezoning/special exception/variance reflected in county packet (late Feb. 2026); no public construction start or permits found.","recent_news":"Spalding County Commissioners unanimously approved the $3.9B Wallace Jackson data center campus on Jan. 22, 2026.","notable_tenants":"","verified_name":"Wallace Jackson Data Center Campus","verified_operator":"Wallace Jackson, LLC","verified_owner":"Wallace Jackson, LLC","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":10,"campus_acres":190,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Watershed/wetlands overlays (S-2/S-4) on site; FEMA flood zone unknown."},"2492":{"description":"A planned hyperscale data center campus in Spalding County (Griffin), Georgia, approved in January 2026 with an estimated $3.9 billion investment on roughly 190 acres and nearly 5 million square feet at full build-out.","verified_status":"planned","power_capacity_mw":0,"total_sqft":4986000,"year_online":"unknown","construction_update":"Unanimously approved by Spalding County commissioners in January 2026; project remains in planning.","recent_news":"Lawsuits were filed in February 2026 challenging the zoning approval of the Wallace Jackson Data Center Campus.","notable_tenants":"","verified_name":"Wallace Jackson Data Center Campus","verified_operator":"Wallace Jackson LLC","verified_owner":"Havenwood Holdings","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":190,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Moderate flood risk (county-level)"},"2493":{"description":"C1 Kansas Data Center (formerly AOScloud) is an operational One C1 colocation site at 17795 W. 106th St in Olathe, Kansas, housed in a two-story, 34,000-sq-ft building on a 2.57-acre parcel. Detailed MEP and performance specs are not publicly disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":34000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"C1 Kansas Data Center (formerly AOScloud Data Center)","verified_operator":"One C1","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":2.57,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"unknown"},"2494":{"description":"Beale: De Soto 3 is a planned building within Beale Infrastructure’s multi-building hyperscale campus near 103rd Street and Edgerton Road in De Soto, Kansas. The broader project envisions four data center buildings across roughly 290 acres.","verified_status":"planned","power_capacity_mw":0,"total_sqft":1140000,"year_online":"unknown","construction_update":"Campus groundbreaking targeted for May 2026 per Beale’s April 28, 2026 announcement; De Soto pages describe the Beale campus and supporting infrastructure.","recent_news":"On April 28, 2026, Beale announced the first phase of its De Soto data center campus and indicated the development would break ground in May 2026.","notable_tenants":"","verified_name":"Beale: De Soto 3","verified_operator":"Beale Infrastructure","verified_owner":"Mount Sunflower Properties, LLC (managed by Beale Infrastructure); Blue Owl-backed","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":290,"utility_provider":"Evergy","tax_incentives":"City approvals include Industrial Revenue Bond-enabled property and sales-tax exemptions for the Beale/Mount Sunflower project.","natural_hazard_zone":"unknown"},"2495":{"description":"Building 1 of Microsoft’s Project Ginger East hyperscale campus at 1475 SE Maffitt Lake Ct in West Des Moines, Iowa. The campus is under construction and is planned to span ~1.8 million sq ft across a ~146-acre site with up to 444 MW of capacity; Building 1 is ~250,000 sq ft.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":250000,"year_online":"2027","construction_update":"Under construction with Weitz Construction as GC; campus completion estimated by mid-2028. 2024 approvals and permits advanced multiple Ginger East buildings.","recent_news":"January 2026: Microsoft said its next two West Des Moines data center buildings will use new zero-water cooling technology.","notable_tenants":"Microsoft Azure (self-operated for Microsoft cloud services)","verified_name":"Microsoft Project Ginger East - Building 1","verified_operator":"Microsoft","verified_owner":"Microsoft","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":146,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa data center exemptions (e.g., sales/use tax exemptions on qualifying data center equipment/facilities and electricity); no additional local grants/abatements cited.","natural_hazard_zone":"FEMA Flood Zone X (low-to-moderate flood risk)"},"2496":{"description":"COPT Defense Properties’ 7880 Milestone Parkway is a secure, mission‑critical office/data‑center/cyber operations facility in Hanover, Maryland, totaling 122,332 square feet and developed/managed by COPT Defense Properties.","verified_status":"operational","power_capacity_mw":0,"total_sqft":122332,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"22Beacon / Charter Schools Development Corporation (Suite 425).","verified_name":"COPT Defense Properties - 7880 Milestone Parkway","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":63,"utility_provider":"Baltimore Gas & Electric (BGE)","tax_incentives":"Maryland Data Center Sales & Use Tax Exemption; Anne Arundel County data‑center incentives (site‑specific participation not confirmed).","natural_hazard_zone":"unknown"},"2497":{"description":"A secure enterprise office/data facility at 901 Elkridge Landing Road in Linthicum Heights, MD, developed and operated by COPT Defense Properties within the Airport Square area.","verified_status":"operational","power_capacity_mw":0,"total_sqft":60988,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Chugach Government Solutions","verified_name":"COPT Defense Properties - 901 Elkridge Landing Road","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties (REIT, NYSE: OFC)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":3.53,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Maryland Sales and Use Tax Exemption for Qualified Data Centers","natural_hazard_zone":"unknown"},"2498":{"description":"CIRQL at 7134 Columbia Gateway Drive is a single‑story, ~21.6k SF office property owned/operated by COPT Defense Properties within the Columbia Gateway campus. A third‑party listing promotes mission‑critical features, but no verified data‑center metrics (MW, PUE, Tier) are published.","verified_status":"operational","power_capacity_mw":0,"total_sqft":21586,"year_online":"1990","construction_update":"","recent_news":"LoopNet shows the property as currently available for lease with a 2026 update; no separate data‑center project news in the last six months.","notable_tenants":"Aidar Health; Silent Circle","verified_name":"CIRQL / 7134 Columbia Gateway Drive","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"Diverse fiber connectivity (carriers not listed).","num_buildings":1,"campus_acres":0,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Eastern Howard County Enterprise Zone tax credits; Maryland Data Center Sales & Use Tax Exemption (if qualified; no site-specific certification found).","natural_hazard_zone":"unknown"},"2499":{"description":"Small colocation facility at 4887 E St Louis Ave in Las Vegas offering about 5,000 sq ft total (1,800 sq ft raised floor), N+1 HVAC, on-site UPS and diesel generator, and multiple network carriers.","verified_status":"operational","power_capacity_mw":0.1,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"South West Data Centers - Las Vegas Data Center","verified_operator":"Southwest Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"TW Telecom, Cogent, AFS, Embarq, XO, Cox, AT&T, Wi-Fiber","num_buildings":1,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"","natural_hazard_zone":"Low flood risk (First Street: minor for 89104); marketed as 'disaster free'."},"2500":{"description":"Under-construction, multi-building hyperscale AI/data center campus by Nebius at EastGate Commerce Center in eastern Independence, Missouri, spanning about 400 acres and targeting gigawatt-scale capacity with an estimated ~2.5M sq ft build-out.","verified_status":"under-construction","power_capacity_mw":1200,"total_sqft":2500000,"year_online":"unknown","construction_update":"Groundbreaking completed May 12, 2026; first-phase construction is underway.","recent_news":"May 12, 2026: Nebius held the groundbreaking for its gigawatt-scale Independence AI factory, initiating construction.","notable_tenants":"","verified_name":"Nebius Independence AI Factory","verified_operator":"Nebius","verified_owner":"Nebius","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":400,"utility_provider":"","tax_incentives":"Chapter 100 industrial development plan: up to $150.6B in taxable industrial development revenue bonds and 90% property tax abatement, with PILOTs projected to local jurisdictions.","natural_hazard_zone":""},"2501":{"description":"Cogent POP Bismarck is a small carrier data center/point-of-presence operated by Cogent Communications at 215 S 15th St in Bismarck, North Dakota, listed by Cogent as a CDC (Carrier Data Center).","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 26, 2026: Cogent announced a definitive agreement to sell 10 data center facilities to an entity affiliated with I Squared Capital.","notable_tenants":"","verified_name":"Cogent POP Bismarck","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications (Tier 1 backbone)","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Regional hazards: tornadoes, severe winter storms; flood risk along the Missouri River (address-level FEMA zone not determined)."},"2502":{"description":"Operational Continent 8 Technologies colocation/data center located inside Ocean Casino Resort (500 Boardwalk) in Atlantic City, supporting online gambling and sports-betting workloads with connectivity on Continent 8’s network.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2018","construction_update":"","recent_news":"June 2026: Ilitch Gaming moves toward full ownership of Ocean Casino Resort, the host property for the data center.","notable_tenants":"","verified_name":"Continent 8 Atlantic City DC2","verified_operator":"Continent 8 Technologies","verified_owner":"AC Ocean Walk, LLC (owner of Ocean Casino Resort at 500 Boardwalk)","cooling_type":"unknown","tier_level":"","fiber_providers":"Continent 8 global network connectivity; third-party carrier list not disclosed.","num_buildings":0,"campus_acres":0,"utility_provider":"Atlantic City Electric","tax_incentives":"","natural_hazard_zone":"Coastal flood/hurricane exposure"},"2503":{"description":"Operational enterprise/managed-colocation data center at 201 Main Ave, Clifton, NJ, totaling about 285,000 sq ft; opened in 2011 for Credit Suisse and acquired by DXC Technology in 2019 under a long-term managed colocation agreement.","verified_status":"operational","power_capacity_mw":0,"total_sqft":285000,"year_online":"2011","construction_update":"","recent_news":"","notable_tenants":"Credit Suisse","verified_name":"DXC Technology Clifton Data Center","verified_operator":"DXC Technology","verified_owner":"201 MAIN AVENUE, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":9.38,"utility_provider":"PSE&G","tax_incentives":"","natural_hazard_zone":"FEMA flood zone X; low-to-moderate flood hazard (outside SFHA)"},"2504":{"description":"Brightspeed Warren is a Brightspeed-operated telecom central office/data-center site at 220 S Park Ave, Warren, Ohio, totaling about 91,160–91,161 sq ft on a 2.44-acre parcel. The building was constructed in 1928 and renovated in 1991; public sources do not disclose technical specs such as MW, cooling, backup generation, or PUE.","verified_status":"operational","power_capacity_mw":0,"total_sqft":91161,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Brightspeed","verified_name":"Brightspeed Warren","verified_operator":"Brightspeed","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":2.44,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2505":{"description":"Former Brightspeed telecom central office at 25 S Mulberry St, Mansfield, Ohio; the property was sold to the Milliron Foundation for conversion to housing, indicating decommissioning as a data center.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Brightspeed Mansfield","verified_operator":"Brightspeed","verified_owner":"Milliron Foundation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":10.3,"utility_provider":"Ohio Edison (FirstEnergy)","tax_incentives":"","natural_hazard_zone":"Moderate flood risk; 15.4% of downtown Mansfield properties have current flood risk."},"2506":{"description":"5C Data Centers’ CMH01 is a hyperscale data center redevelopment at 601 Benjamin Dr in Springfield, Ohio, reusing the former LexisNexis site; it is under construction with an initial 75 MW phase and a campus marketed up to 350 MW.","verified_status":"under-construction","power_capacity_mw":75,"total_sqft":66781,"year_online":"2026","construction_update":"Under construction; targeted initial opening in early 2026.","recent_news":"May 25, 2026: Local petition effort to ban mega‑data centers in Ohio, citing noise and water concerns; Jan 7, 2026: 5C outlined reduced water and energy plans for the 75 MW facility.","notable_tenants":"","verified_name":"5C Data Centers CMH01 (5CDC Columbus - CMH01)","verified_operator":"5C Group Inc. / 5C Data Centers","verified_owner":"5C Group / 5C Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":41.3,"utility_provider":"Ohio Edison (FirstEnergy)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zones B and X (moderate flood hazard)"},"2507":{"description":"Operational hardened colocation facility: SDN Communications’ La Mesa Data Center at Mark Shlanta Technology Park (5300 N La Mesa Dr, Sioux Falls) serves as the company’s primary colocation site; the 2900 W. 10th Street address is SDN’s HQ/campus contact.","verified_status":"operational","power_capacity_mw":0,"total_sqft":50000,"year_online":"2012","construction_update":"Mar 2022: SDN announced an expansion adding 25,000 sq ft to double the data center’s size.","recent_news":"","notable_tenants":"Hurricane Electric (IP transit PoP).","verified_name":"SDN Communications La Mesa Data Center at Mark Shlanta Technology Park","verified_operator":"South Dakota Network dba SDN Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Hurricane Electric; SDN Communications","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk (hardened for F4 tornado/200+ mph)"},"2508":{"description":"Carrier-neutral colocation facility operated by DATA3 Corporation inside CityPlex Towers in Tulsa, featuring redundant HVAC, A+B power with inline UPS, two utility feeds, and a 500 kVA diesel generator; the operator self-describes the site as Tier3+.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Data3 - Tulsa Data Center","verified_operator":"DATA3 Corporation","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; multiple Tier I providers; dual OC-48 fiber; dual-entry SONET ring","num_buildings":0,"campus_acres":46.63,"utility_provider":"Public Service Company of Oklahoma (PSO)","tax_incentives":"Oklahoma statewide sales tax exemption for qualifying data centers (includes electric power, computers, servers, etc.).","natural_hazard_zone":""},"2509":{"description":"American Tower EDC Austin is a micro edge data center at 1601 West 10th Street offering 360 sq ft of space and 100 kW of IT capacity across eight customer cabinets for low‑latency colocation and interconnection.","verified_status":"operational","power_capacity_mw":0.1,"total_sqft":360,"year_online":"2020","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"American Tower EDC Austin","verified_operator":"American Tower Corporation","verified_owner":"American Tower Corporation (REIT)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Flexential (FlexAnywhere backbone access)","num_buildings":0,"campus_acres":0.53,"utility_provider":"Austin Energy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (minimal flood risk)"},"2510":{"description":"A 450kW modular edge data center at 717 N. Tancahua Street in Corpus Christi, TX, operated by Duos Edge AI. The facility opened May 12, 2026 and is described as AI-ready with zero-water cooling.","verified_status":"operational","power_capacity_mw":0.45,"total_sqft":0,"year_online":"2026","construction_update":"","recent_news":"Facility officially opened May 12, 2026, with an open house event in Corpus Christi.","notable_tenants":"","verified_name":"Duos Edge AI Corpus Christi Edge Data Center","verified_operator":"Duos Edge AI, Inc.","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.23,"utility_provider":"AEP Texas","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (moderate flood hazard, between 100-year and 500-year limits)"},"2511":{"description":"Modular edge data center at 421 W. 4th St., Dumas, Texas, operated by Duos Edge AI as a regional computing hub serving Dumas ISD and local users.","verified_status":"operational","power_capacity_mw":0,"total_sqft":715,"year_online":"2025","construction_update":"","recent_news":"June 2026: Duos Edge AI held an open house/ribbon-cutting for the Dumas Edge Data Center.","notable_tenants":"Dumas Independent School District (Dumas ISD)","verified_name":"Dumas Edge Data Center","verified_operator":"Duos Edge AI, Inc.","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone D (very low/undetermined flood risk)"},"2512":{"description":"A modular edge data center pod at Hereford ISD in Hereford, Texas, delivering on‑premises, low‑latency compute and connectivity to support education and community technology initiatives.","verified_status":"operational","power_capacity_mw":0,"total_sqft":688,"year_online":"2026","construction_update":"","recent_news":"Amarillo Globe-News reported on June 25, 2026 that Duos Edge AI opened new data centers in Dumas and Hereford; an open house for the Hereford Edge Data Center was announced for June 18, 2026.","notable_tenants":"Hereford Independent School District (Hereford ISD)","verified_name":"Duos Edge AI Hereford Edge Data Center","verified_operator":"Duos Edge AI, Inc.","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"High tornado risk"},"2513":{"description":"Operational AI/GPU data center leased by CoreWeave within Lincoln Rackhouse/Lincoln Property Company’s 1000 Coit Rd campus in Plano, Texas, with at least 454,421 gross sq ft and a minimum $1.6B investment commitment.","verified_status":"operational","power_capacity_mw":13,"total_sqft":454421,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"CoreWeave","verified_name":"CoreWeave Plano Data Center","verified_operator":"CoreWeave","verified_owner":"Lincoln Rackhouse / Lincoln Property Company","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":24,"utility_provider":"Oncor","tax_incentives":"City of Plano Economic Development Incentive Agreement providing a tax rebate tied to CoreWeave occupying at least 454,421 gross sq ft at 1000 Coit Rd and investing at least $1.6B; Council approved the rebate, and directory reporting estimates approximately $141M in tax benefits.","natural_hazard_zone":"FEMA Flood Zone B/X (area of moderate flood hazard)"},"2514":{"description":"Carrier‑neutral colocation data center operated by Flexential at 3010 Waterview Pkwy, Richardson, TX 75080, totaling 100,807 sq ft with 3.75 MW power capacity.","verified_status":"operational","power_capacity_mw":3.75,"total_sqft":100807,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Dallas - Richardson Data Center","verified_operator":"Flexential","verified_owner":"GI Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Local hazards include flood, tornado, hail, and winter storms; address-specific FEMA flood zone unknown."},"2515":{"description":"TierPoint Dallas - Allen Data Center (DA2) is an operational colocation facility at 820 Allen Commerce Parkway in Allen, Texas, offering approximately 30,000 sq ft with about 16,000 sq ft of raised floor. Public listings note Uptime Institute design and constructed certifications and LEED certification.","verified_status":"operational","power_capacity_mw":0,"total_sqft":30000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"TierPoint Dallas - Allen Data Center (DA2)","verified_operator":"TierPoint","verified_owner":"Compass Datacenters","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":9,"utility_provider":"Oncor Electric Delivery","tax_incentives":"Texas data center sales tax relief program (Qualifying Data Center sales tax exemption).","natural_hazard_zone":"FEMA flood: outside mapped floodplain per site specs; inland/low hurricane risk."},"2516":{"description":"Evocative’s Dallas Data Center (DAL6) is an operational colocation facility at 1221 Coit Road in Plano, TX, formerly known as Internap/INAP Dallas and acquired by Evocative in 2022. Listings note 111,000 sq ft total with 52,000 sq ft raised floor.","verified_status":"operational","power_capacity_mw":12,"total_sqft":111000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Evocative Dallas Data Center (DAL6)","verified_operator":"Evocative Data Centers","verified_owner":"Mapletree Industrial Trust (Mapletree)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Megaport available (via MegaIX Dallas)","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2517":{"description":"Cogent maintains an extended facility/PoP on the Vermont IX fabric at 1 Ivy Lane, Essex Junction, VT; no public data-center specifications are published.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Vermont IX page updated on Jun 3, 2026.","notable_tenants":"","verified_name":"Cogent — Essex Junction / Vermont IX Extended Facility (1 Ivy Lane, Essex Junction, VT)","verified_operator":"Cogent Communications, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral context; Cogent present at 1 Ivy Lane; multiple fiber footprints available at the nearby 530 Community hub.","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA flood hazard mapping present citywide; parcel-specific flood zone for 1 Ivy Lane not verified."},"2518":{"description":"Operational colocation facility at 3355 S 120th Place, Tukwila, WA—formerly INAP Seattle (SEF003), now listed as HorizonIQ Seattle 2—located on Sabey’s Intergate East campus, with about 64,000 sq ft and 5 MW of capacity.","verified_status":"operational","power_capacity_mw":5,"total_sqft":64000,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"HorizonIQ Seattle 2 Data Center (formerly INAP Seattle Data Center SEF003)","verified_operator":"HorizonIQ","verified_owner":"Sabey Data Centers / Sabey Data Center Properties LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"","natural_hazard_zone":"low risk"},"2519":{"description":"Digital Realty ORD15 is a colocation data center at 9401 W Grand Ave, Franklin Park, IL, operated by Digital Realty within the company’s Franklin Park/Chicago campus. Third‑party listings identify the site as ORD15 at this address.","verified_status":"operational","power_capacity_mw":36,"total_sqft":390000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Digital Realty ORD15 / 9401 West Grand Avenue","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":40,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"","natural_hazard_zone":""},"2520":{"description":"CyrusOne CHI6 – Wood Dale is a multi-building data center campus planned at 460 & 480 Bryn Mawr Avenue in Wood Dale, Illinois, with an initial 18MW facility topped out in May 2025 and a broader six-building, approximately 1.4 million sq ft campus on 62 acres.","verified_status":"under-construction","power_capacity_mw":18,"total_sqft":1400000,"year_online":"unknown","construction_update":"Topping-out ceremony held May 13, 2025.","recent_news":"","notable_tenants":"","verified_name":"CyrusOne CHI6 - Wood Dale","verified_operator":"CyrusOne","verified_owner":"CyrusOne (owned by funds managed by KKR and Global Infrastructure Partners)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":6,"campus_acres":62,"utility_provider":"ComEd","tax_incentives":"","natural_hazard_zone":"unknown"},"2521":{"description":"T5 @ Chicago III is a three‑story wholesale data center under construction at 11650 W. Grand Avenue in Northlake, Illinois, delivering 36 MW across ~250,000 SF of critical space (300,000 SF total) with investment exceeding $500 million and targeted for 2027.","verified_status":"under-construction","power_capacity_mw":36,"total_sqft":300000,"year_online":"2027","construction_update":"Topped out in May 2025; Clune Construction is the general contractor.","recent_news":"Illinois suspended new data center tax incentive agreements effective July 1, 2026, pending reforms.","notable_tenants":"","verified_name":"T5 @ Chicago III","verified_operator":"T5 Data Centers","verified_owner":"T5 Data Centers / QuadReal Property Group (joint platform)","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Program; new agreements suspended effective July 1, 2026.","natural_hazard_zone":""},"2522":{"description":"Lumen Chicago 3 is a carrier-neutral colocation data center operated by Lumen Technologies inside the 30‑story office building at 200 North LaSalle Street in Chicago’s Loop. It provides interconnection and colocation options within a multitenant office tower.","verified_status":"operational","power_capacity_mw":17.6,"total_sqft":43611,"year_online":"1996","construction_update":"","recent_news":"Feb 17, 2026: Lumen launched its Multi‑Cloud Gateway and metro expansion, adding centralized multi‑cloud routing and high‑capacity connectivity in markets including Chicago.","notable_tenants":"","verified_name":"Lumen Chicago 3","verified_operator":"Lumen Technologies","verified_owner":"Onni Group","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral, Lumen backbone","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Tax Exemptions and Credits program; two-year suspension announced for new data center developments in 2026.","natural_hazard_zone":"low risk"},"2523":{"description":"Telecom colocation facility operated by Lumen Technologies on the 1st and 2nd floors of 600 West Chicago Avenue (the historic Montgomery Ward building) in Chicago’s River North, providing enterprise connectivity and access to Lumen’s network.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"June 5, 2026: Illinois paused all new state tax incentives for data centers, pending further legislative action.","notable_tenants":"","verified_name":"Lumen Chicago 4","verified_operator":"Lumen Technologies","verified_owner":"3Edgewood","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen backbone","num_buildings":1,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"Illinois Data Center Investment Program: 10.25% sales tax exemption on eligible IT equipment (for qualified facilities); new state data center incentives paused June 5, 2026.","natural_hazard_zone":"Moderate urban flood risk near the Chicago River (Downtown Chicago)."},"2524":{"description":"Lumen South Holland 1 is an operational Lumen Technologies colocation/data center at 200 East 166th Street, South Holland, IL, listed by multiple directories, with 57,847 sq ft and cabinet densities up to 15 kW per cabinet.","verified_status":"operational","power_capacity_mw":0,"total_sqft":57847,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen South Holland 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2525":{"description":"Project Azalea is a planned $1 billion hyperscale data center campus on roughly 200 acres along Randall Hunt Road in Thomson, Georgia, featuring up to six buildings totaling about 1.5 million square feet and targeting 400 MW with operations expected around 2029.","verified_status":"planned","power_capacity_mw":400,"total_sqft":1500000,"year_online":"2029","construction_update":"County planning recommendation on Mar 3, 2026, followed by rezoning/commission approvals in mid-March 2026; site remains planned with no reported construction start.","recent_news":"McDuffie County approved rezoning and advanced Project Azalea in mid-March 2026.","notable_tenants":"","verified_name":"Project Azalea","verified_operator":"Project Turbo LLC (Williams Brothers Development)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":6,"campus_acres":200,"utility_provider":"","tax_incentives":"Georgia high-technology data center equipment sales and use tax exemption; legislative attempts to repeal/pause in 2026; reported gubernatorial veto of pause.","natural_hazard_zone":"Limited FEMA-designated flood hazard areas; tornado risk present (EF1 recorded in 2023)."},"2526":{"description":"Project Spalding is a planned hyperscale data center campus by Montana Property Group LLC on roughly 132.9 acres at High Falls Road and Alicia Drive in Spalding County, Georgia, totaling about 2,559,500 square feet across three primary data center buildings.","verified_status":"planned","power_capacity_mw":0,"total_sqft":2559500,"year_online":"2030","construction_update":"Planned/approved steps only; no reported groundbreaking.","recent_news":"Industry press reported the application for Project Spalding, noting Montana Property Group’s campus could total ~2.55 million sq ft (Jan 2026).","notable_tenants":"","verified_name":"Project Spalding","verified_operator":"Montana Property Group LLC","verified_owner":"Alan R. Mobley","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":132.9,"utility_provider":"City of Griffin (proposed)","tax_incentives":"","natural_hazard_zone":"unknown"},"2527":{"description":"Proposed hyperscale campus (DRI 4422) by East Village Dothan LLC on ~700 acres south of I‑20 near Villa Rica in Douglas County, GA, initially scoped at ~6.2M sq ft across 11 buildings before the rezoning was denied 4–1 in Dec. 2025.","verified_status":"planned","power_capacity_mw":0,"total_sqft":6220000,"year_online":"unknown","construction_update":"No construction. Cases were heard in late 2025; the Board of Commissioners denied rezoning/SUP 4–1 in Dec. 2025.","recent_news":"Local coverage (updated Feb. 11, 2026) continued to note the county’s 4–1 denial of the rezoning; no refile or construction start reported.","notable_tenants":"","verified_name":"Hickman Property Data Center Campus (DRI 4422)","verified_operator":"East Village Dothan, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":11,"campus_acres":700,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2528":{"description":"VA Project 508-22-700 is an EHRM Infrastructure and Data Center Upgrades effort at the Joseph Maxwell Cleland Atlanta VA Medical Center, 1670 Clairmont Road, Decatur, GA. The construction contract was awarded to HURLEY JV, LLP for $27,849,345 on September 25, 2025.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Contract 36C77625C0087 for the EHRM Infrastructure and Data Center Upgrades was awarded to HURLEY JV, LLP on September 25, 2025, for $27,849,345.","recent_news":"May 14, 2026: The Atlanta VA Health Care System announced receipt of FY2026 funding for infrastructure upgrades.","notable_tenants":"U.S. Department of Veterans Affairs (internal enterprise use)","verified_name":"508-22-700 EHRM Infrastructure and Data Center Upgrades — Joseph Maxwell Cleland Atlanta VA Medical Center","verified_operator":"U.S. Department of Veterans Affairs (Atlanta VA Health Care System)","verified_owner":"U.S. Department of Veterans Affairs","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":26,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2529":{"description":"A 120MW AI/HPC-focused, liquid‑cooled data center in Maysville, Georgia, developed under the Ardent/Northern Data program and expandable to 180MW, with operations targeted for 2027.","verified_status":"under-construction","power_capacity_mw":120,"total_sqft":0,"year_online":"2027","construction_update":"Design advancing as of Apr 30, 2025; City of Maysville held January 2025 hearings for the Industrial Dr/Meeks Rd site; by June 2026, local coverage referred to the project as already approved and facing resident opposition.","recent_news":"June 2026: Rumble closed its Northern Data acquisition, rebranded to RUM Group, and launched Quake AI to house the data center and cloud business.","notable_tenants":"","verified_name":"Ardent Georgia (Northern Data Maysville)","verified_operator":"Ardent Data Centers (Northern Data), now within Quake AI (RUM Group)","verified_owner":"RUM Group (via Quake AI/Northern Data assets)","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Georgia high‑tech data center equipment sales/use tax exemption (state and local) subject to investment and job thresholds.","natural_hazard_zone":"Low composite natural hazard risk; Jackson County NRI score ~41.9 (low–moderate), with ice storms a primary driver."},"2530":{"description":"Project Sail is a planned hyperscale data center campus in northwest Coweta County, Georgia, being developed by Prologis. At full build-out, it targets 900 MW of capacity across roughly 829–832 acres.","verified_status":"planned","power_capacity_mw":900,"total_sqft":4340000,"year_online":"unknown","construction_update":"Rezoning approved 3–2 on April 8, 2026; project subsequently met with a May 2026 appeal in Superior Court. No confirmed start of construction.","recent_news":"In May 2026, local residents filed a lawsuit/appeal in Coweta County Superior Court to overturn the county’s rezoning approval for Project Sail.","notable_tenants":"","verified_name":"Project Sail","verified_operator":"Prologis","verified_owner":"Prologis, Inc. (NYSE: PLD)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":9,"campus_acres":832,"utility_provider":"Georgia Power","tax_incentives":"Tax abatements are included in fiscal projections; officials and reports cite very large annual tax revenue at full build-out (estimates in the 10-figure range).","natural_hazard_zone":"Low risk (NRI score 65.6); primary exposure: tornado and hail."},"2531":{"description":"A 210,000 sq ft enterprise data center owned and operated by Walmart in northern Colorado Springs, brought online in 2012 to support Walmart’s corporate IT. The campus spans 24 acres and is listed in public records with a defined total power capacity.","verified_status":"operational","power_capacity_mw":16.259,"total_sqft":210000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"Walmart","verified_name":"Walmart Colorado Springs Data Center","verified_operator":"Walmart","verified_owner":"Walmart","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":24,"utility_provider":"Colorado Springs Utilities","tax_incentives":"Approximately $4.5 million in sales and business personal property tax rebates.","natural_hazard_zone":"low risk"},"2532":{"description":"Operational Lumen Technologies colocation facility at 811 South 16th Street in Phoenix, with 47,836 sq ft total space and 26,250 sq ft colocation space.","verified_status":"operational","power_capacity_mw":11,"total_sqft":47836,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Phoenix 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":3.75,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2533":{"description":"Operational Lumen Technologies colocation/telecom POP at 17 E. Virginia Ave in Phoenix with 5,000 sq ft total space and about 2,800–2,833 sq ft raised/colocation area; listings note N+1 HVAC and generator/battery backup.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Phoenix 2 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen/Level 3; carrier-neutral with alternate carrier networks/backhaul available","num_buildings":1,"campus_acres":0,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"","natural_hazard_zone":"unknown"},"2534":{"description":"Lumen Phoenix 4 is an operational Lumen Technologies colocation/data center at 3220 N 3rd St, Phoenix, Arizona. Public listings confirm the name, operator, and address but do not publish site-level technical specifications.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Phoenix 4","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0.41,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2535":{"description":"Lumen Phoenix 4 is an operational Lumen telecom/colocation data center at 3220 N 3rd St, Phoenix, AZ 85012, with legacy lineage to tw telecom’s Phoenix Data Center #1 that transitioned under Level 3/CenturyLink and then Lumen.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Phoenix 4","verified_operator":"Lumen","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T present at 3220 North 3rd Street building; carrier-neutral status not verified.","num_buildings":0,"campus_acres":0.41,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2536":{"description":"Liquid Web’s Phoenix service is delivered from the phoenixNAP/RadiusDC Phoenix I DC1 colocation facility at 3402 E University Dr in Phoenix; the cited 7025 N Scottsdale Rd address is an office, not a data center.","verified_status":"operational","power_capacity_mw":20,"total_sqft":200000,"year_online":"2010","construction_update":"","recent_news":"March 2026: RadiusDC announced it would acquire phoenixNAP’s Phoenix data center and colocation business and commence an expansion at DC1 to increase total IT capacity to 8 MW; closing was expected in Q2 2026.","notable_tenants":"Liquid Web; MOD Mission Critical","verified_name":"Liquid Web Phoenix (hosted at phoenixNAP/RadiusDC Phoenix I DC1)","verified_operator":"phoenixNAP","verified_owner":"RadiusDC (pending close Q2 2026); previously phoenixNAP","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; 40+ carriers; two meet-me rooms","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk"},"2537":{"description":"CenterServ Scottsdale Data Center is a listed colocation site at 7272 East Indian School Road in Scottsdale, AZ, operated by CenterServ. The address corresponds to Scottsdale Financial Center III; specific technical specifications are not published.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CenterServ Scottsdale Data Center","verified_operator":"CenterServ (CenterServ International, Ltd.)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2538":{"description":"Compass Goodyear – Building 1 is an operational wholesale data-center building within Compass Datacenters’ Goodyear/Phoenix campus at 850 S Bullard Ave in Goodyear, AZ. The campus sits on 225 acres with three diverse fiber paths and an adjacent 230kV substation, and Compass cites a 212 MW campus capacity.","verified_status":"operational","power_capacity_mw":212,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Compass Goodyear - Building 1","verified_operator":"Compass Datacenters","verified_owner":"Compass Datacenters (via Compass Datacenters-PHX I entities); parent owners Brookfield Infrastructure and Ontario Teachers’ Pension Plan","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; three diverse fiber paths","num_buildings":0,"campus_acres":225,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona data-center sales/use-tax waiver on qualifying data-center equipment and labor for 10 years, with a possible additional 10 years if qualifying criteria are met.","natural_hazard_zone":"unknown"},"2539":{"description":"STACK Infrastructure PHX01C is a planned phase within STACK’s PHX01 Avondale hyperscale campus at W Lower Buckeye Rd & S Litchfield Rd in Avondale, Arizona, operated by STACK Infrastructure. The campus is marketed at up to 225MW today, with earlier materials citing a 79-acre, ~1 million sq ft development.","verified_status":"planned","power_capacity_mw":225,"total_sqft":1000000,"year_online":"unknown","construction_update":"Listed as Planned.","recent_news":"","notable_tenants":"","verified_name":"STACK Infrastructure PHX01C","verified_operator":"STACK Infrastructure","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":100,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona Computer Data Center (CDC) Program: state, county, and local Transaction Privilege Tax and Use Tax exemptions on qualifying CDC purchases after certification.","natural_hazard_zone":"low risk"},"2540":{"description":"Project Baccara – Building 1 is a planned ~1,000,000-sq-ft hyperscale data center by Takanock, LLC within the 160-acre Project Baccara campus at 14707–14323 W Olive Ave in Waddell, AZ, which includes on-site natural-gas generation of about 700 MW.","verified_status":"planned","power_capacity_mw":700,"total_sqft":1000000,"year_online":"unknown","construction_update":"Planned; latest milestone is Maricopa County approval of the Military Compatibility Permit on May 6, 2026.","recent_news":"On May 6, 2026, the Maricopa County Board of Supervisors approved the project’s Military Compatibility Permit (MCP), allowing Project Baccara to advance with conditions.","notable_tenants":"","verified_name":"Project Baccara - Building 1","verified_operator":"Takanock, LLC","verified_owner":"Baccara Eagle Land, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":160,"utility_provider":"","tax_incentives":"Arizona enacted a three-year moratorium on new data center sales-tax exemptions (effective July 1, 2026–June 30, 2029).","natural_hazard_zone":""},"2541":{"description":"Project Baccara – Building 1 is a planned hyperscale data center developed by Takanock, LLC in Waddell, Arizona, as part of a 160‑acre campus featuring two data center buildings and roughly 700 MW of on‑site natural gas generation.","verified_status":"planned","power_capacity_mw":700,"total_sqft":0,"year_online":"unknown","construction_update":"Military compatibility permit approved 4–1 by Maricopa County (May 6, 2026); Glendale initiated annexation on April 28, 2026; sector listing notes potential start in Q3 2026.","recent_news":"On May 6, 2026, the Maricopa County Board of Supervisors voted 4–1 to grant the project a military compatibility permit, allowing two data centers and a gas power plant.","notable_tenants":"","verified_name":"Project Baccara - Building 1","verified_operator":"Takanock, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":160,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (minimal flood hazard)"},"2542":{"description":"Planned hyperscale data center campus at the NEC of 491st Avenue and Thomas Road near Tonopah, AZ, on approximately 638 acres; county actions advanced rezoning/entitlements for the site in early 2026.","verified_status":"planned","power_capacity_mw":0,"total_sqft":2250000,"year_online":"unknown","construction_update":"Entitlements advanced: P&Z recommended approval 9-0 on Jan 8, 2026; the case was on the BOS agenda for Feb 11, 2026. No construction start or permits verified.","recent_news":"County rezoning approval for the 638-acre site advanced in February 2026; in June 2026, Arizona imposed a three-year pause on new data center tax incentives.","notable_tenants":"","verified_name":"NEC 491st Ave & Thomas Rd","verified_operator":"unknown","verified_owner":"Grandilla (Arizona) Inc. / Foot Creek Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":638,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona CDC program exists, but new data center tax incentives are paused statewide for three years (enacted June 2026); no project-specific incentive identified.","natural_hazard_zone":"Land subsidence feature area (Harquahala Valley); FEMA flood zone not verified; county floodplain compliance will be required during development."},"2543":{"description":"ClearDATA Networks – Phoenix Data Center is a colocation facility at 4250 E. Camelback Rd., Suite K-300, Phoenix, AZ 85018. It is listed by third‑party directories, while ClearDATA’s official site focuses on healthcare cloud security rather than this physical site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ClearDATA Networks – Phoenix Data Center","verified_operator":"ClearDATA Networks","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (moderate 500-year flood risk)"},"2544":{"description":"HBS Phoenix is an operational colocation facility of Heartland Business Systems at 10201 S. 51st Street, Suite 180, Phoenix, AZ 85044, offering SOC 1–certified colocation with 24x7 access and expert support; detailed power, size, and efficiency metrics are not publicly disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"HBS Phoenix","verified_operator":"Heartland Business Systems","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":2.44,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk (low-to-moderate seismic; minor citywide flood risk)"},"2545":{"description":"Operational Cogent colocation/telecom data center at 13 South Davidson St, Indianapolis, IN 46202, offering 4,400 sq ft with 42U cabinets, UPS/backup generators, and Cogent connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4400,"year_online":"unknown","construction_update":"","recent_news":"May 26, 2026: Cogent announced an agreement to sell 10 data center facilities for $225M to an entity sponsored by I Squared Capital; Indianapolis was not listed among the properties.","notable_tenants":"","verified_name":"Cogent Data Center - Indianapolis","verified_operator":"Cogent Communications, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications; ports up to 100GE","num_buildings":1,"campus_acres":0.6,"utility_provider":"AES Indiana","tax_incentives":"","natural_hazard_zone":"Address-specific FEMA flood zone unknown; Indianapolis/Marion County shows elevated flood exposure and very high tornado risk."},"2546":{"description":"LGI Broad Ripple is an operational, small colocation/data-hosting facility run by LifeGrid Internet at 1810 Broad Ripple Ave, Suite 12, Indianapolis. Public materials confirm colocation services and redundant power/cooling but do not disclose MW, PUE, or Uptime tier [1][2][3].","verified_status":"operational","power_capacity_mw":0,"total_sqft":15992,"year_online":"unknown","construction_update":"","recent_news":"A real-estate post announced the 1810 Broad Ripple Ave property “JUST CLOSED,” with buyer details undisclosed [9].","notable_tenants":"","verified_name":"LGI Broad Ripple","verified_operator":"LifeGrid Internet","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Fiber available; specific providers not publicly disclosed","num_buildings":1,"campus_acres":0,"utility_provider":"AES Indiana","tax_incentives":"","natural_hazard_zone":"Moderate flood risk (Broad Ripple); White River floodworks present."},"2547":{"description":"Proposed hyperscale data center and technology campus on roughly 1,000+ acres along the Mousam River in Sanford, Maine, led by multiFUELS; the concept is in very early stages with an estimated ~$2.16B total investment.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Very early-stage concept; paused by a 91‑day local moratorium on data centers.","recent_news":"Sanford enacted a 91‑day moratorium on data centers, pausing the 1,000‑acre project along the Mousam River.","notable_tenants":"","verified_name":"Sanford Woods Industrial and Technical Campus","verified_operator":"multiFUELS LP","verified_owner":"New England Energy / Northern New England Energy Company (Gibbs family)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":1000,"utility_provider":"Central Maine Power","tax_incentives":"Eligibility uncertain; LD 713 would exclude data centers beginning operations on or after Aug 1, 2026 from certain state incentive programs.","natural_hazard_zone":"moderate flood risk"},"2548":{"description":"Planned data center called Scarborough Technology Park on a 52-acre site in Scarborough, ME; the proposal envisions about 140,000 sq ft and is currently paused under a 180-day town moratorium enacted June 3, 2026.","verified_status":"planned","power_capacity_mw":0,"total_sqft":140000,"year_online":"unknown","construction_update":"Application (April 2026) was rejected as incomplete; a 180-day moratorium (June 3, 2026) has paused advancement. No construction start reported.","recent_news":"June 2026: Scarborough Town Council approved a 180-day moratorium on data centers, pausing the project.","notable_tenants":"","verified_name":"Scarborough Technology Park","verified_operator":"unknown","verified_owner":"Daniel Dickinson","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":52,"utility_provider":"Central Maine Power","tax_incentives":"","natural_hazard_zone":"unknown"},"2549":{"description":"Proposed data center concept on Wiscasset’s town‑owned Old Ferry Road parcel adjacent to the former Maine Yankee nuclear site; discussions remained preliminary and were later paused by the town in November 2025.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"No construction. Town discussion was paused on Nov. 4, 2025; no permits or building activity reported.","recent_news":"May–June 2026: $240,000 in ARPA housing-planning funds linked to Old Ferry Road were rescinded after the town sought to pivot toward data‑center evaluation.","notable_tenants":"","verified_name":"Proposed Wiscasset Old Ferry Road data center (near former Maine Yankee) — no official project name disclosed","verified_operator":"unknown","verified_owner":"Town of Wiscasset","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":300,"utility_provider":"Central Maine Power (CMP)","tax_incentives":"No project-specific incentives approved. State framework: sales-tax refund/exemption for eligible data centers; applicability to this project unconfirmed.","natural_hazard_zone":"coastal/riverine flood exposure (parcel-specific FEMA zone unknown)"},"2550":{"description":"The Bell at 6716 Alexander Bell Drive is a two‑story, 52,018 SF office/amenity building in COPT’s Columbia Gateway campus; there is no public evidence it operates as a data center.","verified_status":"operational","power_capacity_mw":0,"total_sqft":52018,"year_online":"1990","construction_update":"","recent_news":"","notable_tenants":"Soil Safe, Inc. (Suite 150); Sweetgreen Outpost; Foodsby Outpost.","verified_name":"The Bell (6716 Alexander Bell Drive)","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":3.82,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"","natural_hazard_zone":"unknown"},"2551":{"description":"An existing office building branded The Stade at 7067 Columbia Gateway Drive in Columbia Gateway, owned and operated by COPT Defense Properties; it is offered for lease and has no published data center technical specs.","verified_status":"operational","power_capacity_mw":0,"total_sqft":83508,"year_online":"2000","construction_update":"","recent_news":"May 22, 2026: Property listed as available for lease.","notable_tenants":"WSP; Collins Engineers; Della Behavioral Health Services","verified_name":"The Stade / 7067 Columbia Gateway Drive","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Howard County Enterprise Zone (covers Columbia Gateway) offers tax incentives for qualifying business investment; see county program details.","natural_hazard_zone":"unknown"},"2552":{"description":"ITS operates a SOC 2 certified data center in Monticello, Iowa providing colocation/cloud services with redundant power and cooling at 22068 Business Hwy 151.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3200,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ITS Data Center","verified_operator":"Infrastructure Technology Solutions (ITS)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2553":{"description":"Small, carrier-neutral interconnection/telecom POP operated by South Front Networks at 1202 W 9th St, Albert Lea, MN, hosting a MICE IXP presence. The property is about 908 sq ft on a 0.37‑acre lot.","verified_status":"operational","power_capacity_mw":0,"total_sqft":908,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"SFN MN-Albert Lea","verified_operator":"South Front Networks","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; hosts MICE (Midwest Internet Cooperative Exchange)","num_buildings":1,"campus_acres":0.37,"utility_provider":"Freeborn Mower Electric Cooperative (FMEC)","tax_incentives":"","natural_hazard_zone":"low risk"},"2554":{"description":"ISP.Net DC2 (formerly LV.Net) is an operational colocation facility at 1221 S Casino Center Blvd in Las Vegas, operated by ISP.Net. Public listings and the operator’s site reference Las Vegas data centers and show this address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ISP.Net DC2","verified_operator":"ISP.Net","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2555":{"description":"A colocation and managed hosting data center in Aurora, Nebraska, operated by Hamilton Business Technologies (a division of Hamilton Telecommunications), providing 24x7x365 operations and backup power.","verified_status":"operational","power_capacity_mw":0,"total_sqft":14000,"year_online":"2004","construction_update":"","recent_news":"March 9, 2026: Hamilton announced plans to build a new fiber network expansion in Nebraska.","notable_tenants":"","verified_name":"Hamilton Managed Hosting – Aurora Data Center","verified_operator":"Hamilton Business Technologies (division of Hamilton Telecommunications)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.58,"utility_provider":"Nebraska Public Power District (NPPD)","tax_incentives":"","natural_hazard_zone":"low risk"},"2556":{"description":"Lumen Columbus 5 is a 10 000 sq ft carrier-neutral colocation data center at 345 N. 2nd St., Columbus OH that began life as tw telecom’s Columbus Data Center #2 and now operates under Lumen Technologies after a series of acquisitions.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Columbus 5","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Columbus Division of Power","tax_incentives":"","natural_hazard_zone":"low risk"},"2557":{"description":"Operational colocation/cloud data center operated by BlueBridge Networks in the Sterling Building at 1255–1275 Euclid Ave in downtown Cleveland (operator lists 1255 Euclid, 5th Floor; marketplace listing shows 1275 Euclid).","verified_status":"operational","power_capacity_mw":0,"total_sqft":193600,"year_online":"unknown","construction_update":"","recent_news":"June 22, 2026: Local report notes Cuyahoga County relies on BlueBridge for connections, cooling, security, and fire suppression.","notable_tenants":"Agile Networks; Cuyahoga County","verified_name":"BlueBridge Networks – Cleveland (Sterling Building, 1255–1275 Euclid Ave)","verified_operator":"BlueBridge Networks, LLC","verified_owner":"Sterling Linder Investors LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":1,"campus_acres":2.14,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown – use FEMA MSC for parcel detail; Downtown Cleveland: 22.2% properties have flood risk."},"2558":{"description":"Fort Rock Data Center / Columbia 1 (formerly Cascade Divide) is an operational, carrier-neutral colocation facility at 207 SW Columbia St, Bend, Oregon, offering about 12,475 sq ft of white space, Tier III-style infrastructure and 2.5 MW of critical capacity since 2015.","verified_status":"operational","power_capacity_mw":2.5,"total_sqft":12475,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fort Rock Data Center / Columbia 1 (formerly Cascade Divide)","verified_operator":"Fort Rock Data Center","verified_owner":"DirectLink & Scio Mutual Telephone Association (SMTA)","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":3.09,"utility_provider":"Pacific Power (PacifiCorp)","tax_incentives":"","natural_hazard_zone":"low risk"},"2559":{"description":"State-government enterprise data center operated by New Mexico DoIT in the John F. Simms Jr. Building at 715 Alta Vista in Santa Fe; it is one of DoIT’s two data centers and serves state IT workloads and hosting services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":71425,"year_online":"unknown","construction_update":"State issued a 2025 solicitation to renovate the John F. Simms Building (715 Alta Vista), including approximately 34,142 sq ft of tenant-improvement work.","recent_news":"","notable_tenants":"State agencies and other government entities.","verified_name":"New Mexico DoIT John F. Simms Building Data Center","verified_operator":"New Mexico Department of Information Technology (DoIT)","verified_owner":"State of New Mexico","cooling_type":"unknown","tier_level":"","fiber_providers":"Statewide DoIT WAN; carrier names not specified publicly.","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X"},"2560":{"description":"SDC Ashburn is Sabey Data Centers’ carrier-neutral colocation/powered-shell campus at 21741 Red Rum Dr in Ashburn, VA, offering 85 MW of capacity across about 645,000 sq ft on a 38‑acre site.","verified_status":"operational","power_capacity_mw":85,"total_sqft":645000,"year_online":"2017","construction_update":"Final phase Building A under construction; expected Ready for Service in 2026.","recent_news":"","notable_tenants":"","verified_name":"SDC Ashburn","verified_operator":"Sabey Data Centers","verified_owner":"Sabey Data Center Properties LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"Carrier-neutral","num_buildings":3,"campus_acres":38,"utility_provider":"Dominion Energy","tax_incentives":"Virginia data center retail sales and use tax exemption for qualifying computer equipment (subject to statutory investment/job thresholds).","natural_hazard_zone":"unknown"},"2561":{"description":"Carrier-neutral Centersquare colocation facility at 45845 Nokes Blvd in Sterling, Virginia, forming part of Centersquare’s IAD1 Northern Virginia campus.","verified_status":"operational","power_capacity_mw":6,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare IAD1-B Sterling Data Center","verified_operator":"Centersquare","verified_owner":"Mapletree Investments / Mapletree Industrial Trust (MIT)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide program).","natural_hazard_zone":"Outside the 100-year flood zone."},"2562":{"description":"Centersquare IAD2-B Sterling Data Center is an operational, carrier-neutral colocation facility at 22860 International Drive, Sterling, Virginia, offering about 71,033 sq ft and 6 MW of built-out capacity.","verified_status":"operational","power_capacity_mw":6,"total_sqft":71033,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Centersquare IAD2-B Sterling Data Center","verified_operator":"Centersquare","verified_owner":"ACPF Nova Data Center LLC (affiliate of American Realty Advisors)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; carriers include Verizon Communications and Level 3/Lumen","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide program for qualifying data centers).","natural_hazard_zone":"unknown"},"2563":{"description":"Operational OVHcloud US East VIN1 data center at 6872 Watson Ct in the Vint Hill area of Warrenton, Virginia, supporting OVHcloud public/private cloud and bare metal services; the facility is about 84,199 sq ft on roughly 9 acres, launched in 2017, and has around 18 MW of capacity.","verified_status":"operational","power_capacity_mw":18,"total_sqft":84199,"year_online":"2017","construction_update":"","recent_news":"2026: Virginia DEQ minor NSR air permit registration 74127 v3 for 'Data Center Vint Hill' (Fauquier County) was posted/updated.","notable_tenants":"","verified_name":"OVH US East Vint Hill / OVHcloud VIN1","verified_operator":"OVHcloud US","verified_owner":"Data Center Vint Hill LLC","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":9,"utility_provider":"Northern Virginia Electric Cooperative (NOVEC)","tax_incentives":"$1.25M Commonwealth’s Opportunity Fund grant and eligibility for Virginia data center sales/use tax exemptions on equipment.","natural_hazard_zone":"Minor flood risk; low seismic hazard."},"2564":{"description":"Vint Hill Corners is a planned two‑building wholesale data center campus at 4295 Aiken Drive in the Vint Hill PCID of Fauquier County, VA, totaling up to ~720,000 sq ft on ~46 acres. The project was grandfathered from newer Vint Hill zoning rules, allowing by‑right progression while the county awaits a formal site plan.","verified_status":"planned","power_capacity_mw":0,"total_sqft":720000,"year_online":"unknown","construction_update":"Grandfathered from new Vint Hill PCID zoning rules in 2024; remains a planned/proposed project with no reported groundbreaking.","recent_news":"On Mar 13, 2026, the Fauquier County Board of Supervisors passed a resolution urging Richmond to end or limit the state retail sales and use tax exemption for data centers.","notable_tenants":"","verified_name":"Vint Hill Corners Data Center","verified_operator":"Vint Hill Corners LLC","verified_owner":"Vint Hill Corners LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":46,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption may be available if statutory thresholds are met; Fauquier County sets a Data Center Equipment tax rate of $4.15 per $100 assessed value. No project‑specific incentive is confirmed.","natural_hazard_zone":"low risk"},"2565":{"description":"Operational network PoP/colocation site at 901 Pitcher St in Yakima, listed as “YAKMWAFP - Wholesail Yakima” and as an operational Wholesail/Ziply Fiber facility.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5760,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"YAKMWAFP - Wholesail Yakima","verified_operator":"Ziply Fiber (Wholesail Networks)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Ziply Fiber (AS20055); legacy Wholesail/Noel (AS26935)","num_buildings":1,"campus_acres":0.25,"utility_provider":"Pacific Power","tax_incentives":"","natural_hazard_zone":"unknown"},"2566":{"description":"Proposed sub-20MW data center converting approximately 45,600 sq ft of ground-floor space within the Starbucks Center at 2401 Utah Ave S in Seattle’s SoDo, filed as a conceptual plan by Colossus Data Center Advisors in June 2026.","verified_status":"planned","power_capacity_mw":0,"total_sqft":45600,"year_online":"unknown","construction_update":"Conceptual/site plan application filed June 12, 2026 (pre-construction).","recent_news":"Conceptual application filed June 12, 2026 to convert ~45,600 sq ft at Starbucks Center into a sub-20MW data center; reported June 16–24, 2026.","notable_tenants":"","verified_name":"2401 Utah Ave Data Center","verified_operator":"Colossus Data Center Advisors","verified_owner":"Nitze-Stagen & Co.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":17,"utility_provider":"Seattle City Light","tax_incentives":"Washington sales and use tax exemption for qualifying data centers (RCW 82.08.986); applicability uncertain pending eligibility criteria (e.g., minimum size thresholds).","natural_hazard_zone":"Seismic/liquefaction-prone area; building received a seismic upgrade in 2003."},"2567":{"description":"A planned data center development at 3625 First Avenue South in Seattle’s SODO/Duwamish area, with preliminary plans submitted in April 2026. Reports indicate an estimated $220 million project totaling about 320,000 sq ft on a roughly 4.6-acre site.","verified_status":"planned","power_capacity_mw":0,"total_sqft":320000,"year_online":"unknown","construction_update":"Preliminary plans submitted on April 27, 2026.","recent_news":"On June 9, 2026, the Seattle City Council adopted a one-year moratorium on new large data centers.","notable_tenants":"","verified_name":"3625 First Avenue South Data Center","verified_operator":"","verified_owner":"CRP 3625 1st Ave Owner LLC (The Carlyle Group)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":4.6,"utility_provider":"Seattle City Light","tax_incentives":"Federal Opportunity Zone","natural_hazard_zone":"Seismic/liquefaction zone"},"2568":{"description":"Legacy Fibertech Networks Hartford colocation room at 260 Constitution Plaza providing cabinet/cage space in a downtown multi-building complex; operator branding is unclear following Lightower/Crown Castle succession and Crown Castle’s 2026 Fiber Solutions sale to Zayo.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 1, 2026: Crown Castle closed the sale of its Fiber Solutions business to Zayo.","notable_tenants":"","verified_name":"Fibertech Networks – Hartford Data Center","verified_operator":"unknown","verified_owner":"Bondholder group represented by Wilmington Trust National Association/LNR Partners (post-2025 strict foreclosure); Madison Properties markets the complex.","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":0,"campus_acres":0,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"FEMA flood zone exposure (site-specific zone unknown)"},"2569":{"description":"CyrusOne Stamford NYM10 (formerly the Cervalis – Stamford Data Center) is a 57,000 sq ft, 4 MW colocation and work-area recovery site at 10 Riverbend Drive South in Stamford, CT, opened in 2007 by Cervalis and later acquired by CyrusOne.","verified_status":"operational","power_capacity_mw":4,"total_sqft":57000,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne Stamford NYM10","verified_operator":"CyrusOne","verified_owner":"CyrusOne","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":4.57,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"FEMA flood zone AE (100-year floodplain)"},"2570":{"description":"Enterprise data center operated by The Cigna Group at 9 Griffin Road North in Windsor, Connecticut. The 153,462‑square‑foot facility has been the subject of a major renovation program.","verified_status":"operational","power_capacity_mw":0,"total_sqft":153462,"year_online":"unknown","construction_update":"","recent_news":"Apr 2026: Connecticut lawmakers debated ending the state’s data center tax incentive program that offers 20–30 year tax waivers for qualifying investments.","notable_tenants":"The Cigna Group (enterprise self-use)","verified_name":"Cigna Windsor Data Center","verified_operator":"The Cigna Group","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Connecticut Data Center Tax Incentive Program: sales and use tax exemptions and property tax relief, with 20–30 year terms depending on qualified investment thresholds.","natural_hazard_zone":""},"2571":{"description":"A planned four‑building hyperscale data center campus on roughly 280 acres at the 13000 block of Thayer Road in Talkington Township (near Waverly), Sangamon County, Illinois. The Sangamon County Board approved the project in early April 2026, with total investment around $500 million.","verified_status":"planned","power_capacity_mw":636,"total_sqft":1800000,"year_online":"2027","construction_update":"Zoning approved by the Sangamon County Board in early April 2026; the project then moved into the next phase.","recent_news":"June 5, 2026: Governor Pritzker suspended new state data center tax incentives; April 2026: Sangamon County Board approved zoning for the campus.","notable_tenants":"","verified_name":"CyrusOne Sangamon County Data Center Campus (Waverly/Talkington Township)","verified_operator":"CyrusOne","verified_owner":"KKR and Global Infrastructure Partners (GIP)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":280,"utility_provider":"","tax_incentives":"Illinois Data Center Investment program exists (state and local tax exemptions), with new applications suspended in 2026 pending further discussion.","natural_hazard_zone":"Tornado-prone region; consult FEMA Flood Insurance Rate Maps for site-specific flood risk; low seismic; not hurricane zone."},"2572":{"description":"HorizonIQ Atlanta 2 is an 88,000-sq-ft Tier III colocation data center at 40 Perimeter Center East (Dunwoody, Atlanta) providing up to 10 MW of IT power on a 12.76-acre campus with carrier-neutral connectivity and redundant Georgia Power feeds.","verified_status":"operational","power_capacity_mw":10,"total_sqft":88000,"year_online":"1999","construction_update":"","recent_news":"Summit completed the acquisition of HorizonIQ in December 2025 and has begun integrating the Atlanta 2 facility into its broader platform.","notable_tenants":"The Coca-Cola Company (historic anchor)","verified_name":"HorizonIQ Atlanta 2 Data Center","verified_operator":"HorizonIQ (a Summit company)","verified_owner":"Lincoln Property Company (Lincoln Rackhouse)","cooling_type":"chilled water","tier_level":"Tier III (marketing, not certified)","fiber_providers":"CenturyLink, FiberLight, Level 3, Windstream, XO, Zayo and other carriers (carrier-neutral)","num_buildings":1,"campus_acres":12.76,"utility_provider":"Georgia Power Company","tax_incentives":"Georgia Sales & Use Tax Exemption for high-technology data center equipment (HB 696, 2018)","natural_hazard_zone":"low risk"},"2573":{"description":"Microsoft’s Douglasville Campus (FTY101) is a hyperscale data center development at 1601 North River Road in Lithia Springs/Douglasville, GA, planned as four 245,000-sq-ft buildings (~980,000 sq ft total) on ~160 acres within the Azure East US 3 region.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":980000,"year_online":"unknown","construction_update":"Vertical construction advancing as of May 6, 2026.","recent_news":"May 2026: Vertical construction advanced on the Douglasville data center campus amid surging AI demand.","notable_tenants":"","verified_name":"Microsoft Douglasville Campus (FTY101)","verified_operator":"Microsoft","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":160,"utility_provider":"","tax_incentives":"$14m local tax break approved in 2020.","natural_hazard_zone":"low risk"},"2574":{"description":"Planned Verizon data center expansion at 10325 Turner Road in Roswell, Georgia: a 50,800-sq-ft facility approved in March 2022 and intended to connect to Verizon’s existing Alpharetta site.","verified_status":"planned","power_capacity_mw":0,"total_sqft":50800,"year_online":"unknown","construction_update":"Unanimous Roswell City Council approval in March 2022 for rezoning/conditional use to build the 50,800-sq-ft expansion; no later construction or opening milestone verified.","recent_news":"","notable_tenants":"","verified_name":"Verizon Roswell Data Center Expansion (10325 Turner Road)","verified_operator":"Verizon","verified_owner":"Verizon","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2575":{"description":"Verizon-operated telecom/data center at 999 Lee St SW, Atlanta, GA, on a 2.86-acre parcel with about 88,604 sq ft of building area; the structure dates to 1947 and was later converted for network/data uses.","verified_status":"operational","power_capacity_mw":2.8,"total_sqft":88604,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Atlanta","verified_operator":"Verizon Communications, Inc.","verified_owner":"Verizon Communications (successor to MCI WorldCom Network Services, Inc.)","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon, Coloblox Data Centers","num_buildings":1,"campus_acres":2.86,"utility_provider":"Georgia Power","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard)"},"2576":{"description":"Proposed conversion of the Athena Studios film studio campus in Athens, Georgia into a data center, including the retrofit of existing facilities and new construction totaling about 1.3 million square feet.","verified_status":"planned","power_capacity_mw":20,"total_sqft":1300000,"year_online":"unknown","construction_update":"Concept/master plan submitted Nov 26, 2025 for 900 Athena Dr and proposed development at 680 Athena Dr; county imposed a pause and staff indicated a rezone would be needed. No construction has begun.","recent_news":"April 2026: The Athens-Clarke County Commission lifted the temporary data center ban and moved to regulate data centers, sending the ordinance back for further review.","notable_tenants":"","verified_name":"Athena Studios Proposed Data Center","verified_operator":"Reynolds Capital / Athena Studios","verified_owner":"Reynolds Capital","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":45,"utility_provider":"Georgia Power","tax_incentives":"Georgia High-Technology Data Center Equipment Exemption (state sales and use tax).","natural_hazard_zone":""},"2577":{"description":"Small Cogent Edge Data Center at 3443 Blake Street in Denver operated by Cogent Communications; the operator lists the site but does not publish address-specific technical specs.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"June 29, 2026: Cogent closed the sale of 10 data center facilities in Phoenix, Anaheim, Burbank, Stockton, Atlanta, Chicago, Elkridge, Kansas City, Nashville, and Houston; Denver was not listed among the sold sites.","notable_tenants":"","verified_name":"Cogent Edge Data Center - Denver","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications (on-net)","num_buildings":0,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":""},"2578":{"description":"Council Bluffs Southlands – Building 6 is an operating Google hyperscale data center at 10420 Bunge Ave in Council Bluffs, Iowa, with 72 MW of capacity.","verified_status":"operational","power_capacity_mw":72,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"June 2026: Google increased Iowa water project funding to $5.5 million amid resident concerns about data center water use.","notable_tenants":"Google","verified_name":"Council Bluffs Southlands - Building 6","verified_operator":"Google","verified_owner":"Google","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"MidAmerican Energy","tax_incentives":"Iowa Sales and Use tax incentives for qualifying data centers.","natural_hazard_zone":""},"2579":{"description":"A small colocation data center operated by Heartland Business Systems (HBS) in Suite 180 of the 10 Corporate Center at 10201 S. 51st St, Phoenix, AZ 85044, offering SOC 1-certified colocation with 24x7 access.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"HBS Phoenix Data Center","verified_operator":"Heartland Business Systems (HBS)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center Program – Transaction Privilege Tax (TPT) and Use Tax exemptions on qualifying data center equipment purchases; note a three-year moratorium on new certifications was signed June 15, 2026.","natural_hazard_zone":"low risk"},"2580":{"description":"Planned 360 MW hyperscale data center campus at 21200 Martinsburg Road within the former Dickerson Generating Station property, developed by Atmosphere Data Centers on ~170 acres with five two‑story, 225,000‑sq‑ft buildings.","verified_status":"planned","power_capacity_mw":360,"total_sqft":1125000,"year_online":"unknown","construction_update":"Plans posted online May 2026; application on County development portal; no construction start reported.","recent_news":"Montgomery County imposed a six‑month moratorium on data center permits in June 2026, affecting the Dickerson project.","notable_tenants":"","verified_name":"Dickerson Data Center Campus","verified_operator":"Atmosphere Data Centers","verified_owner":"Terra Energy LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":170,"utility_provider":"","tax_incentives":"Maryland Sales and Use Tax Exemption for Data Centers.","natural_hazard_zone":""},"2581":{"description":"A Brightspeed-operated telecom central office at 1008 N Elm St, Rolla, MO, totaling 31,355 sq ft on roughly half an acre and serving as pivotal telecommunications infrastructure for the city.","verified_status":"operational","power_capacity_mw":0,"total_sqft":31355,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Brightspeed Rolla","verified_operator":"Brightspeed","verified_owner":"Brightspeed of Missouri, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"Brightspeed","num_buildings":1,"campus_acres":0.5,"utility_provider":"Rolla Municipal Utilities","tax_incentives":"","natural_hazard_zone":"low risk"},"2582":{"description":"Operational 6,600 sq ft Cogent colocation facility at 1925 Chouteau Ave, St. Louis, MO 63103, offering 42U cabinets and power redundancy (UPS and backup generators).","verified_status":"operational","power_capacity_mw":0,"total_sqft":6600,"year_online":"unknown","construction_update":"","recent_news":"Cogent announced (May 26, 2026) and closed (June 29, 2026) the sale of 10 data center facilities for $225 million; the releases do not specify whether St. Louis was included.","notable_tenants":"","verified_name":"Cogent Data Center - St. Louis","verified_operator":"Cogent Communications, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications","num_buildings":0,"campus_acres":0,"utility_provider":"Ameren Missouri","tax_incentives":"","natural_hazard_zone":"Regional exposure to flood, tornado/severe-storm, and New Madrid seismic risk; consult FEMA MSC for address-specific flood zone."},"2583":{"description":"On‑campus enterprise data center at 920 S. College Ave. in Columbia, Missouri, operated by the University of Missouri’s Division of Information Technology to support MU computing needs.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"MU Data Center","verified_operator":"University of Missouri Division of Information Technology","verified_owner":"The Curators of the University of Missouri","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"University of Missouri Energy Management (Mizzou Power Plant)","tax_incentives":"","natural_hazard_zone":"unknown"},"2584":{"description":"AVAIO Digital’s Taurus (Project Taurus) is an under-construction, AI‑ready data center campus in Brandon, Mississippi. The $6 billion project broke ground in September 2025, with a first phase exceeding 600,000 sq ft and 116 MW and initial occupancy targeted for 2027.","verified_status":"under-construction","power_capacity_mw":116,"total_sqft":600000,"year_online":"2027","construction_update":"Site work began Sept. 10, 2025; first phase is 600k+ sq ft. Yates Construction is leading construction; readiness targeted for 1H 2027.","recent_news":"Jan 8, 2026 coverage confirmed the $6B Taurus campus had broken ground in September 2025 and summarized the project’s scope and timeline.","notable_tenants":"","verified_name":"Taurus Data Center Hub (AVAIO Digital Taurus), Brandon, Mississippi","verified_operator":"AVAIO Digital Partners (AVAIO Digital)","verified_owner":"AVAIO Digital Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":175,"utility_provider":"","tax_incentives":"Mississippi Development Authority approval for the state Data Center Enterprises tax exemption.","natural_hazard_zone":"unknown"},"2585":{"description":"Carrier‑neutral interconnection and colocation site at the Johnson Building (112 N Black Ave, Bozeman) known as JSLLC Bozeman / Johnson Services Data Center, operated by Johnson Services, LLC, with a reported 3.0 MW power capacity.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"JSLLC Bozeman / Johnson Services Data Center","verified_operator":"Johnson Services, LLC.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent present","num_buildings":0,"campus_acres":0,"utility_provider":"NorthWestern Energy","tax_incentives":"","natural_hazard_zone":""},"2586":{"description":"A small, carrier‑neutral N+1 colocation facility in downtown Great Falls, Montana, operated by Konceptio Data Services LLC (North Data Centers), offering single‑server, rack, and cage colocation with a 99.999% uptime guarantee.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"North Data Center, LLC","verified_operator":"Konceptio Data Services LLC / North Data Centers","verified_owner":"Konceptio Data Services LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"NorthWestern Energy","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard, between 100-year and 500-year flood limits)"},"2587":{"description":"A satellite teleport facility operated by Encompass Digital Media at 6221 Holly Drive in Lino Lakes, Minnesota, on a roughly 100-acre parcel supporting broadcast uplink operations.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2288,"year_online":"early 1980s","construction_update":"","recent_news":"Encompass announced at NAB 2026 the launch of Altitude Intelligence, an AI-powered platform for media supply chain workflows (company-wide).","notable_tenants":"","verified_name":"Encompass Minneapolis Facility (Lino Lakes Teleport)","verified_operator":"Encompass Digital Media","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":100,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone A"},"2588":{"description":"Operational enterprise campus data center for New Mexico Tech at 801 Leroy Place in Socorro, supporting campus IT with in-row cooling and related critical infrastructure.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2018","construction_update":"Operational; public-record listing shows an entry titled “NMT DATA CENTER -CAPACITY EXPANSION” with permit details at 801 Leroy Place.","recent_news":"June 2026: New Mexico Tech halted the separate Green Data Center proposal after community concerns.","notable_tenants":"New Mexico Tech campus IT (internal enterprise); no listed third-party tenants.","verified_name":"New Mexico Tech Data Center","verified_operator":"New Mexico Institute of Mining and Technology (New Mexico Tech)","verified_owner":"New Mexico Institute of Mining and Technology (New Mexico Tech)","cooling_type":"chilled water","tier_level":"","fiber_providers":"Campus backbone with access to Internet, Internet2, and ESNet.","num_buildings":1,"campus_acres":0,"utility_provider":"Socorro Electric Cooperative, Inc.","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (city-level); facility-specific panel not documented."},"2589":{"description":"The US Liquidity Center (USLC) in Mahwah, NJ is ICE’s exchange-hosting colocation facility that provides equalized, ultra‑low‑latency access to NYSE markets and other hosted venues. The site offers large‑scale space and power with carrier access for financial firms.","verified_status":"operational","power_capacity_mw":28,"total_sqft":400000,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"NYSE U.S. equities and options markets hosted at USLC; ICE markets; third‑party financial firms and vendors connected via colocation.","verified_name":"US Liquidity Center (USLC)","verified_operator":"ICE Data Services","verified_owner":"Intercontinental Exchange, Inc. (ICE)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":28.28,"utility_provider":"PSE&G (Public Service Electric & Gas)","tax_incentives":"","natural_hazard_zone":"FEMA flood zones AE, 0.2% annual chance, and X on portions of the parcel"},"2590":{"description":"Operational Cogent Communications edge data center at 3500 192ND ST NW, Okarche, OK 73762, branded “Cogent Edge Data Center - Oklahoma City,” distinct from Cogent’s separate 630 Southwest 7th Street Oklahoma City data center.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 2026: Cogent agreed to sell 10 data centers to I Squared Capital; Oklahoma/Okarche not listed among the sites sold.","notable_tenants":"","verified_name":"Cogent Edge Data Center - Oklahoma City","verified_operator":"Cogent Communications","verified_owner":"Cogent Communications","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications (on-net)","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2591":{"description":"A Verizon Business 'Standard' data center in Oklahoma City providing carrier-grade colocation with scalable bandwidth from DS-1/T-1 through OCx/GB levels.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Oklahoma City temporarily paused new data center projects (April 2026) and then amended the policy in May 2026 to exempt facilities under 75 MW.","notable_tenants":"","verified_name":"Verizon Business – Standard Data Center Oklahoma City 2","verified_operator":"Verizon Business","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Oklahoma Data Center Sales and Use Tax Exemption; state incentives that include exemptions for qualifying computer/data processing facilities.","natural_hazard_zone":"High tornado risk; generally low flood risk (downtown Oklahoma City)."},"2592":{"description":"A small, single‑story SOC 2 Type 2‑certified data center operated by Dynamic Quest at its Greensboro, NC headquarters, in a 13,636 SF building constructed in 2007.","verified_status":"operational","power_capacity_mw":0,"total_sqft":13636,"year_online":"2007","construction_update":"","recent_news":"Dynamic Quest achieved CMMC Level 2 certification with a perfect score on its first assessment, announced June 15, 2026.","notable_tenants":"","verified_name":"Dynamic Quest Data Center","verified_operator":"Dynamic Quest","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"2593":{"description":"SolidSpace Winston-Salem was a colocation data center at 450 W. Hanes Mill Road, Suite 100, operated by SolidSpace. The company ceased operations on February 28, 2025, and the facility is now decommissioned.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":0,"year_online":"2003","construction_update":"","recent_news":"SolidSpace confirmed it ceased operations effective February 28, 2025; the facility remains decommissioned.","notable_tenants":"","verified_name":"SolidSpace Winston-Salem Data Center","verified_operator":"SolidSpace","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":15.76,"utility_provider":"Duke Energy Carolinas","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B and X (moderate flood hazard)"},"2594":{"description":"Proposed ~1,845-acre hyperscale data center campus near Duke Energy’s Belews Creek plant in Walnut Cove, Stokes County, NC, led by Engineered Land Solutions, with up to nine buildings totaling about 4.34 million sq ft; the January 2026 rezoning was later voided in April 2026 and the developer plans to resubmit.","verified_status":"planned","power_capacity_mw":0,"total_sqft":4340000,"year_online":"2028","construction_update":"No construction. Rezoning was voided in April 2026; the developer must restart the application and hearing process.","recent_news":"April 2026: Stokes County commissioners voided the January 2026 rezoning approval due to a procedural error, requiring the process to restart.","notable_tenants":"","verified_name":"Project Delta Data Center Campus","verified_operator":"Engineered Land Solutions (ELS)","verified_owner":"DFC Stokes LLC / DFC Stokes 2 LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":9,"campus_acres":1845,"utility_provider":"Duke Energy","tax_incentives":"North Carolina sales and use tax exemptions for qualifying data centers (≥$75M investment over five years); a phase-out has been proposed by 2033.","natural_hazard_zone":"Flood risk along the Dan River; Stokes County has moderate flood risk (7.1% of properties at risk)."},"2595":{"description":"Planned hyperscale data center campus at 8084 Glade St in Rural Hall, NC, advanced as “Project Iron Spur,” with The Drox Group as developer on a roughly 129–130‑acre site and a three‑building concept, currently in rezoning/permitting.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"No construction. Still in rezoning/permitting; Planning Board recommended denial (2026-06-11) and Rural Hall council later voiced support (2026-06-22).","recent_news":"2026-06-22: Rural Hall Town Council reversed course and passed a resolution supporting Project Iron Spur.","notable_tenants":"","verified_name":"Drox Group Rural Hall DC2","verified_operator":"The Drox Group LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":129,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low flood risk"},"2596":{"description":"Purpose-built, carrier-neutral colocation and interconnection facility at 422 South 11th Street in McAllen, Texas, serving as a core hub for U.S.–Mexico cross-border connectivity.","verified_status":"operational","power_capacity_mw":1,"total_sqft":16258,"year_online":"2020","construction_update":"","recent_news":"Bestel consolidated its McAllen infrastructure at MDC’s MCA2 facility at 422 S 11th St, affirming MCA2 as the center of interconnection in McAllen (Jan 2026).","notable_tenants":"Bestel (izzi Telecom), Axtel, Gold Data","verified_name":"MCA2","verified_operator":"MDC Data Centers","verified_owner":"MDC Data Centers","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0.48,"utility_provider":"AEP Texas","tax_incentives":"","natural_hazard_zone":"FEMA Zone D (undetermined flood hazard); severe wind risk"},"2597":{"description":"MDC EGP1 Eagle Pass is an edge, 100% carrier-neutral colocation data center on the Texas–Mexico border at 464 Bliss St that serves as a strategic cross‑border interconnection point, supporting a third diverse route between Dallas and Querétaro.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":5208,"year_online":"2022","construction_update":"","recent_news":"Gold Data activated a new PoP at MDC Eagle Pass in May 2026, expanding its footprint and strengthening the third diverse Dallas–Querétaro route.","notable_tenants":"Vivaro Telecom; Fibranet; Gold Data","verified_name":"MDC EGP1 Eagle Pass","verified_operator":"MDC Data Centers","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"AEP Texas Central Co.","tax_incentives":"City of Eagle Pass Incentive Programs: up to 80% ad valorem property tax rebate for qualifying investments over $20M.","natural_hazard_zone":"low risk"},"2598":{"description":"Tyler Vault Datacenter is an operational local edge/colocation facility inside Plaza Tower at 110 N College Ave in Tyler, Texas, offering redundant power/cooling and services like business internet and hosting. A 1,100 sq ft vault supports about 40 racks.","verified_status":"operational","power_capacity_mw":0,"total_sqft":1100,"year_online":"unknown","construction_update":"Operator describes a 3rd-floor datacenter in Plaza Tower; no dated construction milestones disclosed.","recent_news":"","notable_tenants":"","verified_name":"Tyler Vault Datacenter","verified_operator":"Tyler Vault Datacenter (TylerVault.com)","verified_owner":"Tim Brookshire; Garnett Brookshire; Andy Bergfeld","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":"Moderate natural-disaster risk; very-low earthquake risk; no coastal flooding exposure."},"2599":{"description":"NacSpace Data Center is a 10,000-sq-ft, Tier II-plus, carrier-neutral colocation facility at 2400 N Stallings Dr., Nacogdoches TX. Opened in 2019 as a branch of Elliott Electric Supply, it offers racks, cages and office space with redundant power and cooling.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"NacSpace Data Center","verified_operator":"NacSpace","verified_owner":"Elliott Electric Supply","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; AT&T, Suddenlink, Consolidated","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":"FEMA Zone X; moderate hurricane wind; low seismic risk"},"2600":{"description":"BBT Midland 1 is a modular, carrier‑neutral colocation data center in Midland, Texas, built by Mission Critical Facilities International using its GENIUS modular platform for Big Bend Telephone; it serves regional enterprises and is billed as the first colocation facility in the Permian Basin/West Texas.","verified_status":"operational","power_capacity_mw":1,"total_sqft":2000,"year_online":"2021","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"BBT Midland 1","verified_operator":"Big Bend Telephone Company (BBT)","verified_owner":"Big Bend Telephone Company","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; scalable MMR supporting up to 30 fiber carriers; PacketFabric","num_buildings":1,"campus_acres":0,"utility_provider":"Oncor","tax_incentives":"","natural_hazard_zone":"low risk"},"2601":{"description":"DataBank Waco (ACT1) is an operational colocation data center at 700 Austin Avenue in downtown Waco, Texas, offering 14,210 IT sq ft, a 0.8 MW critical IT load, and 12 onsite carriers. The facility occupies a retrofitted, hardened building with origins as a Cold War-era fallout shelter/command center.","verified_status":"operational","power_capacity_mw":0.8,"total_sqft":43596,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataBank Waco (ACT1)","verified_operator":"DataBank","verified_owner":"Mapletree Industrial Trust (MIT)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; 12 onsite carriers","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2602":{"description":"Prometheus TX-1 is a planned 200 MW Prometheus Hyperscale campus near 6998 FM 987 in Terrell (Kaufman County), described as a ~500‑acre, four‑building site west of Dallas.","verified_status":"planned","power_capacity_mw":200,"total_sqft":0,"year_online":"2027","construction_update":"Planned; no verified construction-start filing or start date disclosed.","recent_news":"Feb 27, 2026: Detailed plans surfaced for a 500-acre, 200 MW campus in Kaufman County west of Dallas.","notable_tenants":"","verified_name":"Prometheus TX-1","verified_operator":"Prometheus Hyperscale","verified_owner":"","cooling_type":"liquid","tier_level":"","fiber_providers":"Lumen; Zayo","num_buildings":4,"campus_acres":500,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2603":{"description":"CyrusOne DFW10 – Whitney is an under-construction hyperscale data-center campus at 557 CR 3610, Bosque County, Texas; the first 250,000-sq-ft building (TABS2025005284) is part of a $1.2 billion, 400 MW campus developed with power from Calpine’s adjacent Thad Hill Energy Center and targeted for service in late 2026.","verified_status":"under-construction","power_capacity_mw":400,"total_sqft":250000,"year_online":"2026","construction_update":"Building topped-out in March 2026; campus remains under construction.","recent_news":"March 11 2026: CyrusOne and Clune celebrated the topping-out of the first Bosque County data center building.","notable_tenants":"","verified_name":"CyrusOne DFW10 - Whitney","verified_operator":"CyrusOne","verified_owner":"CyrusOne, LP (portfolio company of KKR & Global Infrastructure Partners)","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":250,"utility_provider":"Calpine / Thad Hill Energy Center","tax_incentives":"10-year 30 % Bosque County property-tax abatement (Reinvestment Zone #24-02)","natural_hazard_zone":"FEMA Flood Zone X; high hail/tornado exposure"},"2604":{"description":"Cipher Odessa is a 207 MW bitcoin mining data center at 2901 Navasota Dr, Odessa, Texas, operated by Cipher Digital Inc. (via Cipher Mining Technologies Inc.); mining began in November 2022 and full build-out completed in September 2023. As of Q1 2026, it operates at 207 MW and management is evaluating a post-July 2027 pivot of the site toward HPC following a corporate rebrand to Cipher Digital.","verified_status":"operational","power_capacity_mw":207,"total_sqft":0,"year_online":"2022","construction_update":"","recent_news":"Q1 2026: ~346 BTC mined at Odessa; operations can run through July 2027 under the fixed‑price PPA; company rebranded to Cipher Digital and is evaluating repurposing Odessa for HPC.","notable_tenants":"","verified_name":"Cipher Odessa","verified_operator":"Cipher Digital Inc. (operated via Cipher Mining Technologies Inc.)","verified_owner":"Cipher Digital Inc. (facility wholly owned; land leased under Luminant Lease Agreement effective August 27, 2021)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":52,"utility_provider":"Luminant ET Services Company LLC (fixed‑price PPA through July 31, 2027)","tax_incentives":"Texas Comptroller Qualifying Data Center sales and use tax exemption (certified 01/24/2023).","natural_hazard_zone":"FEMA Flood Zones B and X (outside 100‑year floodplain); elevated citywide flood risk."},"2605":{"description":"An enterprise data center within Slagle Hall on the University of South Dakota campus in Vermillion, SD, supporting university IT and administrative workloads. The facility received HVAC/electrical upgrades and operates as an internal (non-colocation) site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"South Dakota enacted data center restrictions in March 2026, targeting large (≥10 MW) facilities; not directly applicable to this small university data center.","notable_tenants":"","verified_name":"University of South Dakota Slagle Hall Data Center","verified_operator":"University of South Dakota","verified_owner":"State of South Dakota / South Dakota Board of Regents","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"City of Vermillion","tax_incentives":"","natural_hazard_zone":"FEMA flood risk present; high tornado/severe-storm exposure; low seismic risk."},"2606":{"description":"NetEx NDC01 is an operational NetEx Inc. colocation facility at 8460 Tyco Road (Suite I), Vienna, VA, featuring biometric security, advanced fire suppression, N+1 infrastructure, a multi-node cooling system, and 24/7 monitoring. Directory materials report approximately 22,500 sq ft of raised floor.","verified_status":"operational","power_capacity_mw":0,"total_sqft":22500,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"NetEx NDC01","verified_operator":"NetEx Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption is available to qualifying data centers and tenants that meet statutory investment/job thresholds with a VEDP MOU; no public confirmation for NetEx NDC01.","natural_hazard_zone":"Seismic: very low; FEMA flood zone: unknown."},"2607":{"description":"Carrier-neutral colocation facility operated by Superb Internet (a CherryRoad brand) inside the 12‑story office tower at 8201 Greensboro Drive in McLean/Tysons, VA, marketed as a secured site originally designed for NSA.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Superb Internet, A CherryRoad Company DCA2 - McLean Data Center","verified_operator":"Superb Internet, A CherryRoad Company","verified_owner":"B.F. Saul Company","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; HopOne, Level 3/Lumen, Cox, Windstream, AboveNet/Zayo, Verizon, Verizon Business","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"2608":{"description":"Lumen Ashburn is an operational colocation data center operated by Lumen Technologies at 44633 Guilford Drive, Ashburn, Virginia, in a roughly 49,734‑square‑foot, single‑story building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":49734,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Ashburn","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption","natural_hazard_zone":""},"2609":{"description":"Lumen-operated colocation data center at 1755 Old Meadow Road in McLean, Virginia, totaling about 62,904 sq ft. The property is a two‑storey data centre within the Tysons/McLean submarket.","verified_status":"operational","power_capacity_mw":0,"total_sqft":62904,"year_online":"unknown","construction_update":"","recent_news":"Lumen introduced new 'AI corridors' and reported $13B in private connectivity deals to support AI workloads (Feb 2026).","notable_tenants":"","verified_name":"Lumen McLean 1","verified_operator":"Lumen Technologies","verified_owner":"Mapletree Industrial Trust (via Yosemite DC Assets LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption","natural_hazard_zone":"FEMA Flood Zone A; Seismic Zone 1"},"2610":{"description":"Equinix DC7 is a carrier-neutral IBX colocation data center at 7990 Science Applications Court in Vienna (Tysons), Virginia, offering interconnection to hundreds of network providers in the Washington, D.C. metro.","verified_status":"operational","power_capacity_mw":2,"total_sqft":44382,"year_online":"2002","construction_update":"","recent_news":"February 2026: Serverfarm filed a rezoning and special exception application to redevelop 7980 and 7990 Quantum Drive in Tysons, Fairfax County.","notable_tenants":"","verified_name":"Equinix DC7","verified_operator":"Equinix","verified_owner":"Serverfarm (SF DC1 LLC)","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral; 200+ network providers","num_buildings":1,"campus_acres":9.4,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia data center retail sales and use tax exemption","natural_hazard_zone":""},"2611":{"description":"Small, single-tenant data center at 304 Progress Circle in Cheyenne, leased to Lunavi, totaling about 8,580 sq ft; do not confuse it with Lunavi’s larger 340 Progress Circle facility next door.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8580,"year_online":"unknown","construction_update":"","recent_news":"Cheyenne City Council voted 8–1 to reject a 12‑month moratorium on new data centers (May 27, 2026).","notable_tenants":"Lunavi (formerly Green House Data)","verified_name":"Lunavi – 304 Progress Circle Data Center","verified_operator":"Lunavi (formerly Green House Data)","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.1,"utility_provider":"Black Hills Energy","tax_incentives":"Wyoming data center Sales & Use Tax Exemption on qualifying data center equipment (investment thresholds apply).","natural_hazard_zone":""},"2612":{"description":"A small colocation and hosting facility operated by AO Business Technology Services in a multi-tenant building at 4031 E. Harry St., Wichita, Kansas.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"AO Business Technology Solutions - Wichita Data Center","verified_operator":"AO Business Technology Services LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"Tornado Alley; severe storm/tornado risk; FEMA flood zone unknown"},"2613":{"description":"An operational wholesale data center at 760 Doug Davis Dr in the Atlanta/Hapeville area, purchased by Menlo Equities for $65.5 million and operated via its Menlo Digital platform.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"1992","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"760 Doug Davis Drive (ATL12)","verified_operator":"Menlo Digital","verified_owner":"Menlo Equities","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":13.04,"utility_provider":"","tax_incentives":"Georgia Data Center Sales & Use Tax Exemption (enacted 2018)","natural_hazard_zone":""},"2614":{"description":"A 5,400 sq ft telecom colocation facility inside the 270 Peachtree office tower in downtown Atlanta, operated by Southern Telecom, providing dark fiber connectivity, DC power, precision cooling, and carrier-hotel access.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5400,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"GigSouth","verified_name":"Southern Telecom 270 Peachtree Colocation Facility","verified_operator":"Southern Telecom, Inc.","verified_owner":"Richard Bowers & Co.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Southern Telecom dark fiber ring; connections to local carrier hotels","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia High-Technology Data Center Equipment Sales & Use Tax Exemption (subject to minimum investment thresholds)","natural_hazard_zone":""},"2615":{"description":"Serverfarm’s ATL1 is a wholesale data center at 305 Satellite Blvd NW in Suwanee, GA, totaling 153,000 sq ft and originally developed by AMD, commissioned in 2012. Serverfarm acquired the site in 2017 and later opened up an additional 110,000 sq ft of space in 2021, offering a modernized facility with robust power and connectivity.","verified_status":"operational","power_capacity_mw":12,"total_sqft":153000,"year_online":"2012","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ATL1 – Atlanta Data Center","verified_operator":"Serverfarm","verified_owner":"Server Farm Realty, LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":11.82,"utility_provider":"Georgia Power","tax_incentives":"Georgia Sales & Use Tax Exemption for data centers (100% sales/use tax savings on qualifying equipment purchases for eligible developments).","natural_hazard_zone":"FEMA Zone X (moderate flood hazard, between 100- and 500-year flood limits)"},"2616":{"description":"Planned hyperscale data center campus at 2912 Post Road in Winston (Douglas County), developed by TC Atlanta Development/Trammell Crow, consisting of two buildings totaling about 1,760,850 sq ft on roughly 166 acres.","verified_status":"planned","power_capacity_mw":0,"total_sqft":1760850,"year_online":"2027","construction_update":"County approvals (M2024-07 / Z2024-55 / S2024-56) granted 4-0 on Feb 5, 2025; no public construction-start or building-permit milestone found.","recent_news":"","notable_tenants":"","verified_name":"Douglas Waldrop Data Center (DRI 4192)","verified_operator":"TC Atlanta Development, Inc. / Trammell Crow Company","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":166,"utility_provider":"","tax_incentives":"Georgia high-technology data center equipment sales and use tax exemption (statewide); no project-specific abatement identified.","natural_hazard_zone":""},"2617":{"description":"Planned hyperscale data-center campus in Villa Rica, Georgia, described as a 428-acre technology and data park with up to seven single-story data center buildings.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"2028","construction_update":"Planned/not operational; Technology Park overlay and rezoning/annexation approved January 2025; project filings reported April 2025.","recent_news":"June 7, 2026 local report notes data centers are still stoking local anxiety and references the January 2025 overlay approval for Avemore.","notable_tenants":"","verified_name":"Avemore Data Park","verified_operator":"Atlas Development LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":7,"campus_acres":428,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk"},"2618":{"description":"Iron Mountain AZP-3 is a 36 MW, two‑story colocation facility under construction on a 10‑acre parcel adjacent to Iron Mountain’s existing Phoenix campus, with a 287,585 sq ft building and carrier‑neutral connectivity.","verified_status":"under-construction","power_capacity_mw":36,"total_sqft":287585,"year_online":"2026","construction_update":"Active build with permit F049828 (IMDC AZP3) listing The Weitz Company LLC as GC; Cannon & Wendt’s scope includes 22×3,000 kW generators and extensive MV distribution across a two‑story 287,585 sq ft facility.","recent_news":"Arizona suspended new data center tax incentives for three years (June 2026), with Iron Mountain referenced among large prior recipients.","notable_tenants":"","verified_name":"Iron Mountain AZP-3","verified_operator":"Iron Mountain Data Centers","verified_owner":"Iron Mountain Incorporated (NYSE: IRM)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; 25+ network providers including AZIX, DE-CIX Phoenix, Ninja-IX","num_buildings":1,"campus_acres":49,"utility_provider":"Salt River Project (SRP)","tax_incentives":"Arizona Computer Data Center Program — Transaction Privilege Tax (TPT) and Use Tax exemptions up to 20 years; new certifications suspended for three years as of June 2026.","natural_hazard_zone":"low risk"},"2619":{"description":"Planned EdgeCore hyperscale campus at the Dobson Farms/Florence Tech Park in Florence, Arizona, envisioned as ten two‑story data centers of about 332,100 sq ft each (72 MW per building), with the site rezoned to Industrial in Oct 2025.","verified_status":"planned","power_capacity_mw":720,"total_sqft":3321000,"year_online":"unknown","construction_update":"Not under construction; latest milestone is Oct 2025 rezoning to Industrial, with no active site plan or building permit under review as of the Town’s update.","recent_news":"Town of Florence posted an April update on the Florence Tech Park and data center questions; a March piece referenced Dobson Farm amid SRP data center growth discussions.","notable_tenants":"","verified_name":"EdgeCore Florence Tech Park (Dobson Farms)","verified_operator":"EdgeCore Digital Infrastructure","verified_owner":"Strand 600 LLC (Dobson Family Farms)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":10,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2620":{"description":"A 160-acre, land-banked hyperscale data center site at the northeast corner of Johnson Road and Southern Avenue in Buckeye, AZ, acquired by Arizona Land Consulting in early 2025. Listings project up to 3.5 million sq ft and cite potential $1–4B total investment, but no permits or construction are underway.","verified_status":"planned","power_capacity_mw":0,"total_sqft":3500000,"year_online":"unknown","construction_update":"Land acquired by Arizona Land Consulting in early 2025; no permits filed and no construction activity reported.","recent_news":"June 2026 coverage reported Arizona residents campaigning against data centers amid water supply concerns.","notable_tenants":"","verified_name":"Johnson Road and Southern Avenue","verified_operator":"Arizona Land Consulting (ALC)","verified_owner":"Arizona Land Consulting (ALC)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":160,"utility_provider":"Arizona Public Service (APS)","tax_incentives":"Arizona Computer Data Center Program offering sales/use tax exemptions for qualifying data center equipment and activity.","natural_hazard_zone":"FEMA Zone X (outside 100-year floodplain)"},"2621":{"description":"Municipal enterprise data center within Danbury City Hall at 155 Deer Hill Avenue supporting all City departments’ IT infrastructure.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"City of Danbury departments (municipal agencies).","verified_name":"City of Danbury Data Center","verified_operator":"City of Danbury Information Technology Division","verified_owner":"City of Danbury","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":1,"campus_acres":2.06,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"unknown"},"2622":{"description":"Enterprise data center operated by Aetna Life Insurance Company (a CVS Health subsidiary) on the former Aetna campus at 1000 Middle Street in Middletown, CT; the facility is roughly 126k sq ft and has remained in operation as a separate building after the main office complex was demolished.","verified_status":"operational","power_capacity_mw":0,"total_sqft":125924,"year_online":"1982","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Aetna Middletown Data Center","verified_operator":"Aetna Life Insurance Company","verified_owner":"CVS Health / Aetna Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":260,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"low risk"},"2623":{"description":"A small Lumen-operated colocation data center at 1514 Chandler Road West in Bellevue, Nebraska, with about 10,000 sq ft of space serving the Omaha metro area.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Bellevue 1 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"OPPD","tax_incentives":"ImagiNE Nebraska Act – data centers may earn a sales tax exemption if $50M is invested and 25 new jobs are created.","natural_hazard_zone":"High tornado risk (ZIP 68147)."},"2624":{"description":"Lumen operates a colocation facility at 6805 Pine Street (“Lumen Omaha 1”) within the Scott Data Center campus in Omaha, Nebraska. The Scott Data Center building is a purpose-built, Tier III facility totaling about 110,000 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":110000,"year_online":"unknown","construction_update":"","recent_news":"Feb 18, 2026: Scott Data Center deployed AI facial-authentication access control to replace fingerprint readers at the campus.","notable_tenants":"","verified_name":"Lumen Omaha 1 Data Center","verified_operator":"Lumen","verified_owner":"","cooling_type":"unknown","tier_level":"Uptime Institute Tier III","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Outside/elevated above 100-year floodplain; storm-hardened; low hurricane risk"},"2625":{"description":"Google’s Lincoln hyperscale campus (Project Agate) near N. 56th St. and I‑80 involves roughly $600M of investment on about 580 acres, with plans up to 2 million sq ft and development via Agate LLC.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":2000000,"year_online":"2026","construction_update":"June 2026: Start of construction on the $10M wastewater line to convey non-contact cooling water to the Northeast Water Resource Recovery Facility.","recent_news":"June 2026: Construction began on a $10M wastewater line to transport non-contact cooling water from the Google/Agate data center to the Northeast Water Resource Recovery Facility, with completion targeted for January 2027.","notable_tenants":"Google self-use; no third-party tenants disclosed.","verified_name":"Google Lincoln Data Center (Project Agate)","verified_operator":"Google","verified_owner":"Agate LLC (Google)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":580,"utility_provider":"Lincoln Electric System (LES)","tax_incentives":"","natural_hazard_zone":"unknown"},"2626":{"description":"A three‑story, 74,240 sq ft enterprise data center and office building at 650 Centerton Road in Moorestown, New Jersey, situated on roughly 5.1 acres and operated by Comcast.","verified_status":"operational","power_capacity_mw":0,"total_sqft":74240,"year_online":"2001","construction_update":"","recent_news":"","notable_tenants":"Comcast","verified_name":"Comcast Moorestown","verified_operator":"Comcast","verified_owner":"Comcast","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5.1,"utility_provider":"PSE&G","tax_incentives":"","natural_hazard_zone":"low risk"},"2627":{"description":"An enterprise data center and office facility at 5300 S. Broadband Lane in Sioux Falls, SD. The building includes a Sanford Health data center with UPS/generator backup and precision CRAC cooling, and office space occupied by Avera Health Plans and Avera@Home.","verified_status":"operational","power_capacity_mw":0,"total_sqft":60481,"year_online":"unknown","construction_update":"","recent_news":"Lincoln County Board of Equalization revised the 2025 assessed value for SFC Holdings No. 2 LLC’s office building at 5300 S. Broadband Lane (total $8.87 million; structure value $7.36 million).","notable_tenants":"Avera Health Plans, Avera@Home","verified_name":"Sanford Data / Peterson Center","verified_operator":"Sanford Health","verified_owner":"SFC Holdings No. 2 LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"SDN Communications, Midco","num_buildings":1,"campus_acres":5.42,"utility_provider":"Xcel Energy / MidAmerican Energy","tax_incentives":"","natural_hazard_zone":"Very low seismic risk; citywide moderate flood risk"},"2628":{"description":"DataBank PIT2 – Summit Park is a three-story, 115,000 sq ft colocation data center at 35 Summit Park Dr in North Fayette Township near Pittsburgh, delivering 5MW of critical IT load on a 17‑acre campus. It anchors DataBank’s Summit Park Campus with carrier-neutral connectivity and room for two additional data centers.","verified_status":"operational","power_capacity_mw":5,"total_sqft":115000,"year_online":"2020","construction_update":"","recent_news":"DataBank closed $1.45 billion in new financing across two transactions (June 2026); no PIT2-specific developments reported in the last 6 months.","notable_tenants":"PNC Bank (anchor tenant via long-term leaseback)","verified_name":"DataBank PIT2 – Summit Park","verified_operator":"DataBank","verified_owner":"DataBank (backed by DigitalBridge, Swiss Life AM, AustralianSuper, EDF Invest, and other institutional investors)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; 31 onsite carriers","num_buildings":1,"campus_acres":17,"utility_provider":"West Penn Power (FirstEnergy)","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (Act 25 of 2021); potential repeal under consideration as of June 2026.","natural_hazard_zone":"unknown"},"2629":{"description":"Ark Data Centers Pittsburgh – Northpointe is an operational colocation data center at 161 Armstrong Drive, Freeport, PA, formerly branded Involta. It offers about 39,570 sq ft with 1.50 MW capacity and Tier 3 design, opened in 2017.","verified_status":"operational","power_capacity_mw":1.5,"total_sqft":39570,"year_online":"2017","construction_update":"","recent_news":"","notable_tenants":"UPMC (anchor tenant)","verified_name":"Ark Data Centers Pittsburgh – Northpointe","verified_operator":"Ark Data Centers","verified_owner":"Ark Data Centers","cooling_type":"unknown","tier_level":"Uptime Institute Tier III","fiber_providers":"Carrier-neutral; connected to Ark’s ION Network; redundant fiber","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2630":{"description":"Ziply Fiber edge PoP and colocation facility located in a former central-office building at 4916 W Clearwater Ave, Kennewick, WA.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Washington SB 6231 removes the sales/use tax exemption for data center equipment replacements effective July 1, 2026.","notable_tenants":"","verified_name":"KEN1 Ziply Kennewick WA Data Center PoP","verified_operator":"Ziply Fiber","verified_owner":"Ziply Fiber","cooling_type":"unknown","tier_level":"","fiber_providers":"Ziply Fiber","num_buildings":0,"campus_acres":0,"utility_provider":"Benton PUD","tax_incentives":"Washington data center sales and use tax exemption applies to qualifying facilities; replacement/refurbishment exemption ends July 1, 2026 (SB 6231).","natural_hazard_zone":"Minor flood risk; moderate seismic risk (Washington)."},"2631":{"description":"Planned hyperscale data center campus by Trammell Crow Company at Lewis & Clark Ranch in West Richland, WA, currently in feasibility/due diligence.","verified_status":"planned","power_capacity_mw":912,"total_sqft":0,"year_online":"unknown","construction_update":"No construction; project remains in feasibility/due diligence.","recent_news":"May 12, 2026: Tri‑City Herald reports TCC is still studying a 500–1,000 acre data center at Lewis & Clark Ranch; June 3, 2026: community petition launched seeking a moratorium on data centers in Richland/West Richland referencing this project.","notable_tenants":"","verified_name":"Trammell Crow Lewis & Clark Ranch Data Center","verified_operator":"Trammell Crow Company","verified_owner":"Frank Tiegs LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":1000,"utility_provider":"Benton Rural Electric Association (Benton REA)","tax_incentives":"Washington state data center sales and use tax exemption (RCW 82.08.986 / 82.12.986)","natural_hazard_zone":"Low overall risk; moderate earthquake risk (~41), low flood risk, moderate wildfire risk for West Richland."},"2632":{"description":"Planned hyperscale data-center campus at 2100 Horn Rapids Rd in Richland’s Northwest Advanced Clean Energy Park: ~$500M for five ~500,000-sq-ft buildings on land under a one‑year option approved Dec 2025.","verified_status":"planned","power_capacity_mw":0,"total_sqft":2500000,"year_online":"unknown","construction_update":"Dec 2, 2025: Richland City Council approved a one‑year land option for the ~275‑acre site; construction not started.","recent_news":"Project continued to be listed as proposed: Tri-City Herald (May 2026) and Spokesman-Review (Apr 2026) noted Atlas’ $500M data center plans.","notable_tenants":"","verified_name":"Atlas Agro Richland Data Center Campus","verified_operator":"Atlas Agro North America","verified_owner":"City of Richland (current landowner); Atlas Agro North America holds a one-year purchase option (Dec 2025).","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":275,"utility_provider":"City of Richland Energy Services","tax_incentives":"Washington state sales and use tax exemption for qualifying data centers.","natural_hazard_zone":"unknown"},"2633":{"description":"Planned DOE/PNNL AI data center in Richland, WA, aiming for 2 MW of compute by 2028 and expandable to about 40 MW to serve federal artificial-intelligence research workloads.","verified_status":"planned","power_capacity_mw":2,"total_sqft":0,"year_online":"2028","construction_update":"RFI/sources-sought phase only (posting Feb 25 2026; update Apr 10 2026). No construction contract or physical work has begun.","recent_news":"10 Jun 2026 – ASHRAE, NEMA, and PNNL released the AI Data Center Energy Performance Framework to guide next-generation AI data-center design and operation.","notable_tenants":"U.S. Department of Energy research programs and PNNL scientists","verified_name":"On-Premises Next-Gen AI Compute Data Center","verified_operator":"Battelle Memorial Institute (operating PNNL for DOE)","verified_owner":"U.S. Department of Energy","cooling_type":"unknown","tier_level":"","fiber_providers":"ESnet","num_buildings":0,"campus_acres":0,"utility_provider":"Richland Energy Services","tax_incentives":"","natural_hazard_zone":"low risk"},"2634":{"description":"A small municipal enterprise data center operated by the City of Beckley’s Information Technology Services (BITS) at 169 Industrial Drive, supporting the City’s departments.","verified_status":"operational","power_capacity_mw":0,"total_sqft":8568,"year_online":"2002","construction_update":"","recent_news":"","notable_tenants":"Internal City of Beckley departments","verified_name":"Beckley Information Technology Services Main Data Center","verified_operator":"City of Beckley / Beckley Information Technology Services (BITS)","verified_owner":"City of Beckley","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.53,"utility_provider":"Appalachian Power Company","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X"},"2635":{"description":"The West Campus Data Center operated by the Yale Center for Research Computing (a core facility under the Office of the Provost) supports Yale’s HPC clusters and storage for researchers at Yale’s West Campus, 100 West Campus Drive in Orange, CT.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2015","construction_update":"","recent_news":"2026-05-11: Power drop at the West Campus Data Center impacting running jobs on multiple clusters.","notable_tenants":"Internal enterprise users: all Yale researchers.","verified_name":"West Campus Data Center","verified_operator":"Yale Center for Research Computing (Office of the Provost, Yale University)","verified_owner":"Yale University","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":136,"utility_provider":"United Illuminating (UI)","tax_incentives":"","natural_hazard_zone":"FEMA flood"},"2636":{"description":"Enterprise/research HPC data center operated by UConn Health in the Cell & Genome Sciences Building (400 Farmington Ave, Farmington, CT), providing HPC services with UPS/generator-backed power, redundant cooling, dark fiber to DR, and a 10/40/100/400 GbE network core.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"UConn Health and UConn researchers; no commercial anchor tenants disclosed.","verified_name":"UConn Health High Performance Computing Facility","verified_operator":"UConn Health / Richard D. Berlin Center for Cell Analysis and Modeling (CCAM)","verified_owner":"University of Connecticut Health Center / UConn Health","cooling_type":"unknown","tier_level":"","fiber_providers":"CEN/Internet2; dark fiber to off-site DR; 10/40/100/400 GbE data-center network core","num_buildings":1,"campus_acres":206,"utility_provider":"Eversource","tax_incentives":"","natural_hazard_zone":"Site-specific FEMA flood zone not verified here; regional plan notes flood and storm risks."},"2637":{"description":"Enterprise data center function operated by Bridgeport Public Schools ITS, located in Bridgeport City Hall at 45 Lyon Terrace, supporting district servers, storage, networking, and related security/operations.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"District modernized Wi‑Fi with Wi‑Fi 7 (Extreme Networks case study, Mar 26, 2026) and announced free home Wi‑Fi for all students/families (Apr 13, 2026).","notable_tenants":"Bridgeport Public Schools","verified_name":"Bridgeport Public Schools Data Center Operations","verified_operator":"Bridgeport Public Schools Information Technology Services (ITS)","verified_owner":"City of Bridgeport","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"United Illuminating (Avangrid)","tax_incentives":"","natural_hazard_zone":"Coastal flood/hurricane exposure (FEMA coastal zones present in Bridgeport)"},"2638":{"description":"GA1 – Maysville (also marketed as Ardent Georgia) is an AI/HPC data center campus in Maysville, Georgia, planned/under construction by Ardent Data Centers (Northern Data Group). Corporate disclosures cite a 63-acre site with 120 MW initial capacity and expansion potential to 180 MW.","verified_status":"under-construction","power_capacity_mw":120,"total_sqft":0,"year_online":"unknown","construction_update":"Design has begun on the 63-acre, 120MW development; local planning hearings occurred in late 2024/early 2025.","recent_news":"June 2026: Acquisition of Northern Data closed and the buyer rebranded to RUM Group, launching Quake AI to combine Northern Data’s assets with Rumble Cloud.","notable_tenants":"","verified_name":"GA1 – Maysville (Ardent Georgia)","verified_operator":"Ardent Data Centers (Northern Data Group), now part of Quake AI (RUM Group)","verified_owner":"","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":63,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2639":{"description":"DataBank’s Westminster Data Center (DEN4) at 7579 W. 103rd Avenue, Westminster, CO is an operational colocation facility with 9,890 raised sq ft, 0.5MW critical IT load, and 3 onsite carriers in a 29,500 sq ft building.","verified_status":"operational","power_capacity_mw":0.5,"total_sqft":29500,"year_online":"2006","construction_update":"","recent_news":"Apr 21, 2026: Xcel said Westminster’s substations are at maximum capacity, affecting new development in the city (local grid headroom context; not DEN4-specific).","notable_tenants":"","verified_name":"DataBank Westminster Data Center (DEN4)","verified_operator":"DataBank","verified_owner":"DataBank","cooling_type":"unknown","tier_level":"","fiber_providers":"CenturyLink (Qwest), Zayo, Comcast; carrier-neutral","num_buildings":1,"campus_acres":2.29,"utility_provider":"Xcel Energy (Public Service Company of Colorado)","tax_incentives":"","natural_hazard_zone":"unknown"},"2640":{"description":"Connect Data Centers: Des Moines at 5900 Thornton Ave is a single‑story, ~60k sq ft, 5 MW, LEED‑certified facility delivered in 2024 by Oppidan/Weitz. It is not Cologix DSM2 (which is in Cedar Falls), and the land was acquired by CLOP Des Moines IA LLC.","verified_status":"operational","power_capacity_mw":5,"total_sqft":60589,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Connect Data Centers: Des Moines","verified_operator":"Connect Data Centers by Oppidan","verified_owner":"CLOP Des Moines IA LLC / Oppidan Investment Company","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":8.13,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2641":{"description":"The Price Computing Center at 1001 Sunnyside Ave. is KU’s central computing facility and home of KU Information Technology, supporting campus IT and data center services. KU notes a 750 kW emergency generator and high-speed connectivity, and KU Places records the building’s 1978 dedication and $4 million cost.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"1978","construction_update":"","recent_news":"KU issued RFP 3011454 for a Data Center Network Refresh (posted Nov 7, 2025; responses due Jan 5, 2026), and the January 2026 Kansas Campus Restoration Act report lists a $350,000 Air Conditioning Improvement for the Price Computing Center.","notable_tenants":"KU Information Technology; internal KU enterprise applications and services. No external anchor tenants publicly identified.","verified_name":"Price Computing Center","verified_operator":"University of Kansas Information Technology (KU IT)","verified_owner":"University of Kansas","cooling_type":"air-cooled","tier_level":"","fiber_providers":"KanREN / Internet2","num_buildings":1,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":""},"2642":{"description":"Operational KU IT enterprise network/data-center facility in the Ellsworth Hall Annex that supports KU’s primary campus network/phone services and redundant servers; the Annex is attached to Ellsworth Hall at 1734 Engel Road in Lawrence, KS.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"KU’s 2026 Data Center Network Refresh includes one top-of-rack installation at Ellsworth Annex with 10/25/40/100G fiber and 100G uplinks (responses due Jan 5, 2026).","notable_tenants":"University of Kansas internal users only; no external anchor tenants disclosed.","verified_name":"Ellsworth Annex Network Center","verified_operator":"University of Kansas / KU Information Technology","verified_owner":"University of Kansas","cooling_type":"unknown","tier_level":"","fiber_providers":"KanREN; not advertised as carrier-neutral.","num_buildings":1,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"FEMA flood zone: unknown; regional tornado/severe storm exposure."},"2643":{"description":"Kansas’s first carrier-neutral Internet Exchange Point (IXP), a modular facility on Wichita State University’s Innovation Campus developed by CNIXP to improve regional connectivity; the IX platform is in collaboration with DE-CIX.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"2026","construction_update":"Groundbreaking on May 15, 2025; construction targeted for completion by early/Spring 2026. No confirmed operational announcement as of July 2026.","recent_news":"CNIXP promoted a May 17–20, 2026 launch event for the state’s first IXP at Wichita State University.","notable_tenants":"Wichita State University (40-year no-cost interconnection presence)","verified_name":"Wichita State University Internet Exchange Point (IXP)","verified_operator":"Connected Nation Internet Exchange Points (CNIXP) LLC","verified_owner":"Connected Nation Internet Exchange Points (CNIXP) LLC; land leased from Wichita State University under a 40-year ground lease","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; DE-CIX (IX platform collaboration)","num_buildings":0,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"High tornado/severe wind risk; FEMA floodplains present in Wichita area"},"2644":{"description":"An existing COPT Defense Properties office/technology building in Columbia Gateway at 8621 Robert Fulton Drive, marketed by COPT as The Stade and listed as available; the building totals about 83,496 SF on a 6.34‑acre lot and was built in 2005. No verifiable data‑center MW, PUE, Uptime certification, or carrier details are disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":83496,"year_online":"2005","construction_update":"","recent_news":"","notable_tenants":"Hamilton Home Mortgage (Lower, LLC) – Suite 150.","verified_name":"8621 Robert Fulton Drive","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":1,"campus_acres":6.34,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"","natural_hazard_zone":"unknown"},"2645":{"description":"A 98,318‑SF, 4‑story COPT Defense Properties building in the Columbia Gateway park known as “Soundtrack,” positioned as secure, adaptable office/technical space with potential data‑center‑friendly features.","verified_status":"operational","power_capacity_mw":0,"total_sqft":98318,"year_online":"unknown","construction_update":"","recent_news":"Property is currently listed as available for lease on LoopNet.","notable_tenants":"Advarra (Suite 110, historical principal place of business); Myriddian (Suite 200).","verified_name":"COPT Defense Properties: 6940 Columbia Gateway Drive / Soundtrack","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties (public REIT; formerly Corporate Office Properties Trust)","cooling_type":"unknown","tier_level":"","fiber_providers":"Diverse fiber connectivity reported; specific carriers not publicly stated.","num_buildings":1,"campus_acres":0,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Maryland Sales & Use Tax Exemption for Qualified Data Centers (program available; no site-specific certification found).","natural_hazard_zone":"unknown"},"2646":{"description":"Soundtrack – 6950 Columbia Gateway Drive is a COPT Defense Properties–operated, mission-ready enterprise/cyber office facility within the Columbia Gateway business park and is actively marketed for lease.","verified_status":"operational","power_capacity_mw":0,"total_sqft":112740,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"IntelliGenesis LLC; iNovex; Red Alpha","verified_name":"Soundtrack – 6950 Columbia Gateway Drive","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"","natural_hazard_zone":""},"2647":{"description":"Enterprise/mission‑critical facility owned and operated by COPT Defense Properties at 7000 Columbia Gateway Drive in Columbia, Maryland, totaling 140,575 square feet.","verified_status":"operational","power_capacity_mw":0,"total_sqft":140575,"year_online":"1999","construction_update":"","recent_news":"June 1, 2026: Howard County approved a 17‑month moratorium on new data centers; May 22, 2026: updated leasing listing for 7000 Columbia Gateway Dr appeared on LoopNet.","notable_tenants":"DreamPort / Technology Advancement Center (formerly MISI); Nielsen Audio.","verified_name":"COPT Defense Properties: 7000 Columbia Gateway Drive","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":1,"campus_acres":9.38,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"No facility‑specific incentive confirmed; Maryland’s Data Center Sales & Use Tax Exemption program exists.","natural_hazard_zone":"low risk"},"2648":{"description":"A Class A office building within the Columbia Gateway business park that is owned and operated by COPT Defense Properties and marketed as flexible, amenitized workspace.","verified_status":"operational","power_capacity_mw":0,"total_sqft":125000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"ABM (Suite 200).","verified_name":"COPT Defense Properties - 6731 Columbia Gateway Drive","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties (held via COPT affiliates; REIT, NYSE: OFC)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":6.92,"utility_provider":"BGE (Baltimore Gas and Electric)","tax_incentives":"Eastern Howard County Enterprise Zone (announced Jan 2025); Maryland Qualified Data Center Sales & Use Tax Exemption (statewide, eligibility required).","natural_hazard_zone":"low risk"},"2649":{"description":"COPT Defense Properties’ facility at 209 Research Boulevard in Aberdeen, Maryland is part of the three-building North Gate Business Park near Aberdeen Proving Ground, with a 78,220 sq ft building on 4.78 acres.","verified_status":"operational","power_capacity_mw":0,"total_sqft":78220,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"COPT Defense Properties: 209 Research Boulevard","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties (REIT); owning entity: COPT Northgate A LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":4.78,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"Greater Aberdeen–Havre de Grace Enterprise Zone (North Gate Business Park is within the zone; eligible for real property and state income/job tax credits).","natural_hazard_zone":"unknown"},"2650":{"description":"A COPT Defense Properties–managed facility at 939 Elkridge Landing Road in Linthicum Heights, MD, within the Airport Square corporate campus near BWI. Marketed for secure, federal/defense-oriented tenancy with office/data capabilities.","verified_status":"operational","power_capacity_mw":0,"total_sqft":53031,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Associated Behavioral Health Services of Maryland; Variable Annuity Life Insurance (per COPT press release).","verified_name":"COPT Defense Properties - 939 Elkridge Landing Road","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon, Xfinity/Comcast, Astound (DC Maryland Virginia).","num_buildings":1,"campus_acres":3.17,"utility_provider":"Baltimore Gas & Electric (BGE)","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption program (applicable if qualification criteria are met).","natural_hazard_zone":"Moderate overall risk; flood risk high for the area; hurricane/coastal moderate; seismic low (area-level)."},"2651":{"description":"A 24‑story, Class A office tower in Baltimore’s Inner Harbor owned and operated by COPT Defense Properties, totaling about 368,194 SF and marketed as a commercial/enterprise facility with robust connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":368194,"year_online":"1986","construction_update":"","recent_news":"Feb 5, 2026: COPT Defense reported full‑year 2025 results (FFO/share $2.72, up 5.8% vs. 2024). No site‑specific updates for 250 West Pratt Street in the last 6 months.","notable_tenants":"Wells Fargo; University of Maryland; Semmes, Bowen & Semmes","verified_name":"COPT Defense Properties - 250 West Pratt Street","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"BGE (Baltimore Gas & Electric)","tax_incentives":"Maryland Data Center Sales & Use Tax Exemption Program; Baltimore Enterprise Zone real property and state income tax credits","natural_hazard_zone":"FEMA flood Zone X (shaded) — adjacent to Inner Harbor nuisance flood areas"},"2652":{"description":"A 4‑story Class A office building branded “The Bell” at 6750 Alexander Bell Drive in Columbia Gateway, owned and operated by COPT Defense Properties; some directories list it as a secure facility, but no dedicated data‑center MW specs are published.","verified_status":"operational","power_capacity_mw":0,"total_sqft":75798,"year_online":"2001","construction_update":"","recent_news":"Listing updated June 3, 2026 showing the office property available for lease.","notable_tenants":"","verified_name":"6750 Alexander Bell Drive (The Bell)","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"BGE (Baltimore Gas and Electric)","tax_incentives":"","natural_hazard_zone":"Low seismic risk (Maryland); flood zone not verified."},"2653":{"description":"Franklin Center is a LEED Gold, Class A office building with mission‑critical/data center capabilities in Columbia Gateway, totaling about 200,603 SF and operated by COPT Defense Properties.","verified_status":"operational","power_capacity_mw":0,"total_sqft":200603,"year_online":"2008","construction_update":"","recent_news":"On March 3, 2025, COPT Defense executed a 48,100 SF, 10‑year lease with a top 10 U.S. defense contractor at Franklin Center, bringing the building to 80% leased.","notable_tenants":"Top 10 U.S. Defense Contractor (48,100 SF, 10-year lease signed March 2025)","verified_name":"6841 Benjamin Franklin Drive (Franklin Center)","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties (NYSE: CDP)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":14.96,"utility_provider":"Baltimore Gas & Electric (BGE)","tax_incentives":"Maryland Data Center Sales and Use Tax Exemption Program (up to 20 years)","natural_hazard_zone":"low risk"},"2654":{"description":"1201 Winterson Road in Linthicum Heights, MD is a COPT Defense Properties-owned office building (not a disclosed data center), commonly listed at about 72,045 sf and actively marketed for lease.","verified_status":"operational","power_capacity_mw":0,"total_sqft":72045,"year_online":"unknown","construction_update":"","recent_news":"LoopNet updated the office leasing listing on June 22, 2026; COPT’s 2025 Form 10‑K filed February 20, 2026 references 1201 Winterson Road; no data center development updates found.","notable_tenants":"Variable Annuity Life Insurance Company (VALIC/Corebridge) leased 2,200 sf at 1201 Winterson Road.","verified_name":"1201 Winterson Road","verified_operator":"COPT Defense Properties","verified_owner":"COPT Defense Properties","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Baltimore Gas and Electric (BGE)","tax_incentives":"","natural_hazard_zone":"low risk"},"2655":{"description":"Women-owned colocation data center at 4901 Colt Road in Rockford, Illinois, operated by DataPoint, Inc., offering colocation, VM hosting, disaster recovery/DRaaS, and related data protection services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"2016","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DataPoint Data Center","verified_operator":"DataPoint, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.37,"utility_provider":"ComEd (Commonwealth Edison)","tax_incentives":"Illinois Data Center Investment Tax Exemptions program is available statewide; new agreements were suspended by the governor effective July 2026. Participation for this site is unconfirmed.","natural_hazard_zone":"Flood risk (moderate)"},"2656":{"description":"A 33 MW wholesale data center under construction via adaptive reuse of the former Cboe Global Markets headquarters (300,500 SF) at 400 S LaSalle Street in Chicago’s Loop, developed by Legacy Investing with GI Partners.","verified_status":"under-construction","power_capacity_mw":33,"total_sqft":300500,"year_online":"2026","construction_update":"Conversion under way with ARCO/Murray as construction partner; targeting late-2026 ready-for-service for initial capacity.","recent_news":"Illinois suspended new data center tax incentive applications effective July 1, 2026, potentially affecting timing for any new project applications.","notable_tenants":"","verified_name":"Legacy - Chicago Byte Exchange (CBE1)","verified_operator":"Legacy Investing","verified_owner":"Legacy Investing & GI Partners","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.15,"utility_provider":"","tax_incentives":"Illinois Data Center Investment Program (eligibility subject to application; new applications suspended as of July 1, 2026).","natural_hazard_zone":"low risk"},"2657":{"description":"Operational colocation/data center operated by DLS Internet Services at 950 E. Oak St., Lake in the Hills, IL (often called DLS Internet LITH), and described as one of two DLS data centers in the Chicago metro.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"DLS Internet Services – Lake in the Hills (DLS Internet LITH)","verified_operator":"DLS Internet Services","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"DLS operates its own network (AS10692 DLS-LITH); third-party carrier list not publicly provided.","num_buildings":0,"campus_acres":0,"utility_provider":"ComEd","tax_incentives":"","natural_hazard_zone":"unknown"},"2658":{"description":"Operational campus data center run by Technology Services inside the Advanced Computation Building (ACB) at 1011 W. Springfield Ave., Urbana, IL; the building is owned/active and serves university units.","verified_status":"operational","power_capacity_mw":0,"total_sqft":45346,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"University of Illinois units (e.g., ACES research workstations).","verified_name":"Advanced Computation Building (ACB) Data Center","verified_operator":"Technology Services at Illinois (Office of the CIO)","verified_owner":"University of Illinois Urbana-Champaign (Board of Trustees of the University of Illinois)","cooling_type":"chilled water","tier_level":"","fiber_providers":"University of Illinois campus network (single-mode and multi-mode fiber; redundant 10Gb uplinks; dual routers).","num_buildings":1,"campus_acres":0,"utility_provider":"University of Illinois Abbott Power Plant (campus cogeneration and distribution)","tax_incentives":"","natural_hazard_zone":"unknown"},"2659":{"description":"Gail Technology is developing a data center with an on-site solar array and microgrid at 15244 E. 1700th Avenue, Effingham, Illinois, under a special-use permit. The project is led by Gail Technology, with IAG Investments LLC – Effingham as the petitioner/owner entity for the site.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Special Use Permit action by Effingham City Council on Apr. 15, 2025 for a data center at 15244 E 1700th Ave; reporting later noted the company is building the data center and solar array.","recent_news":"","notable_tenants":"","verified_name":"Gail Technology Effingham Data Center","verified_operator":"GAIL Technology, Inc.","verified_owner":"IAG Investments LLC – Effingham","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2660":{"description":"NP Belle Plaine (MSP1) is a small interconnection/colocation POP at 713 E Church St in Belle Plaine, MN, operated by Neutral Path Communications, LLC; it hosts a Hurricane Electric POP and carries a reported 3.0 MW power capacity.","verified_status":"operational","power_capacity_mw":3,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Hurricane Electric","verified_name":"NP Belle Plaine (MSP1)","verified_operator":"Neutral Path Communications, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Zayo; Neutral Path Communications","num_buildings":0,"campus_acres":0.12,"utility_provider":"Xcel Energy; Minnesota Valley Electric Cooperative","tax_incentives":"","natural_hazard_zone":"Low seismic risk; FEMA-designated floodplains are present in Scott County/Belle Plaine"},"2661":{"description":"Carrier-neutral South Front Networks PoP location in Farmington, MN supporting middle-mile transport and interconnection services; the site corresponds to a 12,600‑sq‑ft commercial building at 5031 208th St W.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12600,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"South Front Networks MN-Farmington PoP","verified_operator":"South Front Networks, LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"Dakota Electric Association","tax_incentives":"","natural_hazard_zone":""},"2662":{"description":"Carrier-neutral South Front Networks point-of-presence (PoP) at 220 S Broadway in Rochester, MN, listed as “SFN MN-Rochester” and announced by SFN as a new PoP at that address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 26, 2026: 220 Broadway Ave S commercial condo listing marketed with details on costs and location.","notable_tenants":"Hurricane Electric","verified_name":"SFN MN-Rochester","verified_operator":"South Front Networks","verified_owner":"DKM LLC (2013 purchase of office/condo space in the building); current PoP suite owner not confirmed","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; South Front Networks; legacy Zayo presence at 220 S Broadway LL-12","num_buildings":1,"campus_acres":0,"utility_provider":"Rochester Public Utilities (RPU)","tax_incentives":"Federal Opportunity Zone: Yes (property-level)","natural_hazard_zone":"low risk"},"2663":{"description":"AWS Canton Data Center Building 12 is a planned hyperscale data center building within Amazon’s Canton, Mississippi campus near MS‑22 & Nissan Parkway, part of the broader Project Atlas development that already has multiple operational buildings.","verified_status":"planned","power_capacity_mw":0,"total_sqft":250000,"year_online":"unknown","construction_update":"Announcement stage (planned); no ground-breaking disclosed for Building 12.","recent_news":"Amazon announced a $25B Mississippi data center investment (including $11B for the Madison County/Canton campus) and reported five buildings already operational at the Canton site with plans to at least double that presence.","notable_tenants":"Amazon Web Services (self-use)","verified_name":"AWS Canton Data Center Building 12","verified_operator":"Amazon Web Services (AWS)","verified_owner":"Amazon","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":100,"utility_provider":"Entergy Mississippi","tax_incentives":"10-year 100% corporate income tax exemption; state support via Mississippi Major Economic Impact Authority programs.","natural_hazard_zone":"Moderate flood risk and tornado-prone area."},"2664":{"description":"An enterprise data center within the 4230 Building on the shared Nebraska Medicine/UNMC campus in Omaha, renovated in 2015 with 2N UPS power, chilled-water in-row cooling, and about 4,000 SF of raised floor to support Nebraska Medicine’s healthcare IT.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4000,"year_online":"2015","construction_update":"","recent_news":"On June 30, 2026, the NU Board of Regents unanimously approved the $800 million deal with Clarkson Health, giving the university full control of Nebraska Medicine.","notable_tenants":"Nebraska Medicine","verified_name":"Nebraska Medicine 4230 Data Center","verified_operator":"Nebraska Medicine","verified_owner":"University of Nebraska Medical Center (UNMC)","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"","natural_hazard_zone":"unknown"},"2665":{"description":"Former Mutual of Omaha office and data center at 9330 Highway 133 in Blair, Nebraska, built in 2003. The 117,546 sq ft, two-level facility on 22.7 acres is vacant and offered for sale at $11.5 million.","verified_status":"operational","power_capacity_mw":0,"total_sqft":117546,"year_online":"2003","construction_update":"","recent_news":"Crexi listed the property as vacant and offered for sale at $11.5M (Apr 28, 2026).","notable_tenants":"","verified_name":"9330 Highway 133 Data Center Building (Mutual of Omaha Disaster Recovery Center)","verified_operator":"Vacant (formerly Mutual of Omaha)","verified_owner":"Mutual of Omaha Insurance Company","cooling_type":"unknown","tier_level":"","fiber_providers":"Great Plains Communications; Fastwyre Broadband; CenturyLink/Lumen","num_buildings":1,"campus_acres":22.7,"utility_provider":"","tax_incentives":"Nebraska sales and use tax exemption for data centers; ImagiNE Nebraska Act incentives (sales tax exemption available if $50M invested and 25 jobs created).","natural_hazard_zone":""},"2666":{"description":"A 65,200 SF, two‑story hardened enterprise data center facility at 7300 World Communications Dr in Omaha, purpose‑built for ConAgra circa 1999–2000 with robust power/cooling infrastructure on a 5.49‑acre lot within the World Communications Park area.","verified_status":"operational","power_capacity_mw":3,"total_sqft":65200,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"U.S. Drug Enforcement Administration (DEA) Omaha Division","verified_name":"ConAgra Data Center Building (7300 World Communications Dr)","verified_operator":"U.S. Drug Enforcement Administration (DEA) Omaha Division","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"AT&T, CenturyLink, Cox, Verizon","num_buildings":1,"campus_acres":5.49,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"Nebraska sales/use tax exemption for data center equipment (Neb. Rev. Stat. § 77-2704.62); ImagiNE Nebraska Act incentives (investment tax credits, sales/use tax refunds, property tax exemptions).","natural_hazard_zone":"Tornado Alley (high tornado risk 9/10), low seismic and hurricane risk"},"2667":{"description":"Operational Hostirian colocation facility at 11756 Borman Drive in the St. Louis County Bandwidth Exchange, providing hosting/colocation services in St. Louis.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Building tenants include Hostirian / River City Internet Group and Vogler & Associates; no publicly named anchor colocation customers.","verified_name":"Hostirian St. Louis","verified_operator":"Hostirian","verified_owner":"Rivercity Real Estate LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":1.927,"utility_provider":"Ameren Missouri","tax_incentives":"","natural_hazard_zone":"FEMA flood zone not verified. Local context: Maryland Heights enforces floodplain management; region has earthquake risk from the New Madrid and Wabash Valley seismic zones."},"2668":{"description":"A 10,000 sq ft colocation and managed hosting facility operated by Connectria (a LightEdge company) inside the WestChase Park office building at 10845 Olive Blvd in Creve Coeur (St. Louis metro), MO.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Connectria Hosting - St. Louis Data Center #2","verified_operator":"Connectria (a LightEdge company)","verified_owner":"GI Partners","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Ameren Missouri (AmerenUE)","tax_incentives":"Missouri Data Center Sales Tax Exemption Program","natural_hazard_zone":"low risk"},"2669":{"description":"WhiteFiber NC-1 is a hyperscale AI/HPC data center campus by WhiteFiber Inc. (Bit Digital’s AI unit) at 805 Island Drive in Madison, NC, retrofitting a 96-acre, ~1 million sq ft former industrial facility with 99 MW utility capacity secured and scalability to 200 MW.","verified_status":"under-construction","power_capacity_mw":99,"total_sqft":946585,"year_online":"2026","construction_update":"Q1 2026: Construction and commissioning advancing; Duke Energy completed delivery of 54 MW gross utility power to site; initial 2026 capacity ramp expected.","recent_news":"May 14, 2026: Duke Energy completed work to deliver 54 MW of gross power to NC-1; construction and commissioning advanced.","notable_tenants":"Nscale (10-year, 40 MW colocation agreement valued at ~$865 million, signed December 2025)","verified_name":"WhiteFiber NC-1","verified_operator":"WhiteFiber Inc.","verified_owner":"WhiteFiber Inc. / Bit Digital, Inc. (Nasdaq: BTBT)","cooling_type":"liquid","tier_level":"Tier III (targeted, not certified)","fiber_providers":"","num_buildings":1,"campus_acres":96,"utility_provider":"Duke Energy Carolinas, LLC","tax_incentives":"North Carolina qualifying data center designation; eligible for state sales and use tax exemptions on data center equipment.","natural_hazard_zone":"FEMA Flood Zone AE; county natural disaster risk: moderate (31%), primarily hurricane-related."},"2670":{"description":"A GPU-focused data center under construction on Duke University’s Central Campus along Yearby Avenue in Durham, NC, permitted at 13,173 sq ft and sited on a 12‑acre Duke-owned parcel, targeting completion next year.","verified_status":"under-construction","power_capacity_mw":1.5,"total_sqft":13173,"year_online":"2027","construction_update":"Building permit issued in April 2026; site construction underway by mid‑June 2026 on the 12‑acre Yearby Avenue parcel.","recent_news":"Construction began on Duke’s Yearby Avenue GPU data center and Durham advanced a 60‑day moratorium on new data center approvals in May–June 2026.","notable_tenants":"","verified_name":"Duke University Central Campus GPU Data Center","verified_operator":"Duke University","verified_owner":"Duke University","cooling_type":"chilled water","tier_level":"","fiber_providers":"Duke OIT, MCNC","num_buildings":1,"campus_acres":12,"utility_provider":"Duke Energy","tax_incentives":"","natural_hazard_zone":""},"2671":{"description":"ITS Manning is an enterprise data center on UNC-Chapel Hill’s campus at 211 Manning Drive, operated by ITS Data Center Operations (DCOPS) with redundant power/cooling and controlled access. It is one of three ITS-managed data centers supporting university IT services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"UNC School of Data Science and Society; UNC School of Nursing simulation labs","verified_name":"ITS Manning","verified_operator":"UNC-Chapel Hill Information Technology Services (ITS) / Data Center Operations (DCOPS)","verified_owner":"University of North Carolina at Chapel Hill","cooling_type":"chilled water","tier_level":"","fiber_providers":"MCNC/NCREN, Internet2","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy","tax_incentives":"","natural_hazard_zone":"FEMA-mapped floodplain area; inland NC hurricane exposure; low seismic region (Piedmont NC)"},"2672":{"description":"Operational telecom/colocation data center at 301 S McDowell St (301 Midtown), originally developed for Windstream at ~60,850 sq ft and ~10 MW; the building is owned by The Fallon Company.","verified_status":"operational","power_capacity_mw":10,"total_sqft":60850,"year_online":"2014","construction_update":"","recent_news":"June 8, 2026: Charlotte City Council approved a 150-day moratorium on new data centers to study impacts on infrastructure and utility costs.","notable_tenants":"","verified_name":"Uniti Charlotte Data Center","verified_operator":"Uniti (merged with Windstream in 2025)","verified_owner":"The Fallon Company","cooling_type":"unknown","tier_level":"","fiber_providers":"Uniti/Windstream fiber backbone","num_buildings":1,"campus_acres":2.7,"utility_provider":"Duke Energy Carolinas","tax_incentives":"North Carolina data-center sales and use tax exemptions exist; no facility-specific incentive verified.","natural_hazard_zone":"Low seismic risk; flood risk mapped by FEMA/City (parcel-specific zone not verified); inland tropical storm rainfall exposure."},"2673":{"description":"47,500-sq-ft Tier 3 data center at 2436 Penny Rd, Claremont, N.C., built for Bed Bath & Beyond in 2013 and acquired by colocation provider Data Journey in 2024; today the single-building site offers 3 MW of critical load with expansion potential to ~100 MW.","verified_status":"operational","power_capacity_mw":3,"total_sqft":47500,"year_online":"2013","construction_update":"","recent_news":"June 2026 LoopNet listing offers the 47,500-sq-ft data center for sale at $11.95 million, positioning it as an expandable 95,500-sq-ft campus.","notable_tenants":"Sourceability; 10X Consulting Group; XOR Group","verified_name":"Data Journey Catawba County Data Center","verified_operator":"Data Journey","verified_owner":"Data Journey","cooling_type":"air-cooled","tier_level":"Tier 3","fiber_providers":"AT&T; Broadplex; carrier-neutral","num_buildings":1,"campus_acres":6.95,"utility_provider":"Duke Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"2674":{"description":"Telecom colocation facility at 991 Peiffers Lane, Harrisburg, formerly operated by XO Communications and now under Verizon following XO’s acquisition; public listings confirm the address and basic colocation features.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Pennsylvania House voted 197–5 to repeal statewide data-center sales-tax incentives, a development relevant to data centers operating in PA.","notable_tenants":"","verified_name":"Verizon: Harrisburg Data Center","verified_operator":"Verizon","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon (former XO)","num_buildings":0,"campus_acres":0,"utility_provider":"PPL Electric Utilities","tax_incentives":"Pennsylvania’s Computer Data Center Equipment Exemption Program exists; no facility-specific certification verified. The PA House voted to repeal the incentive in June 2026.","natural_hazard_zone":"unknown"},"2675":{"description":"Proposed data center at 2100 Renaissance Boulevard in King of Prussia, PA, cited at 187,946 sq ft and included in a larger multi-site data center proposal in Upper Merion Township that has drawn neighborhood pushback.","verified_status":"planned","power_capacity_mw":0,"total_sqft":187946,"year_online":"unknown","construction_update":"Plan Set filed Feb 20, 2026; extension letter accepted by the Board of Supervisors in April 2026; project remains in planning/review.","recent_news":"May 27, 2026: Upper Merion Township Planning Commission meeting on the data center proposals drew significant opposition, with TV news reporting thousands of petition signatures.","notable_tenants":"","verified_name":"MLP Ventures 2100 Renaissance Boulevard Data Center","verified_operator":"MLP Ventures","verified_owner":"MLP Ventures","cooling_type":"unknown","tier_level":"","fiber_providers":"Broadview Networks","num_buildings":1,"campus_acres":9,"utility_provider":"","tax_incentives":"Pennsylvania Computer Data Center Equipment Sales and Use Tax Exemption","natural_hazard_zone":"unknown"},"2676":{"description":"Planned $3 billion hyperscale data center campus on 452 acres in Appomattox County, Virginia, with 300 MW of confirmed grid power and a long-term path to 1,000 MW total baseload power, targeting initial power in 2027.","verified_status":"planned","power_capacity_mw":300,"total_sqft":0,"year_online":"2027","construction_update":"Agreement signed with the county EDA; site is fully zoned for data centers; project remains planned as of March 2026.","recent_news":"March 2026: Local reports describe growing resident concern and organized pushback regarding the proposed data center campus.","notable_tenants":"","verified_name":"AVAIO Hercules (Appomattox)","verified_operator":"AVAIO Digital","verified_owner":"AVAIO Digital Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":6,"campus_acres":452,"utility_provider":"Central Virginia Electric Cooperative (CVEC) and Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption","natural_hazard_zone":"low risk"},"2677":{"description":"Dahlgren West Campus is a planned hyperscale data center campus at/near 6113 James Madison Pkwy (Route 301) in King George County, Virginia, branded by Oasis Digital Properties and advanced legally as Dahlgren Innovation Hub, LLC. The approved program is reported as 1.2GW across 10 buildings totaling about 6.8 million sq ft on approximately 497 acres.","verified_status":"planned","power_capacity_mw":1200,"total_sqft":6800000,"year_online":"unknown","construction_update":"Approved Aug. 19, 2025; as of June 2026, proceeding through administrative/permitting (not operational).","recent_news":"June 2026: Local outlet reported residents protesting already-approved data centers, including the 500-acre Dahlgren West campus.","notable_tenants":"","verified_name":"Dahlgren West Campus","verified_operator":"Oasis Digital Properties","verified_owner":"Family of the late Ed Veazey (landowner); applicant/developer entity: Dahlgren Innovation Hub, LLC.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":10,"campus_acres":497,"utility_provider":"Dominion Energy Virginia","tax_incentives":"","natural_hazard_zone":"unknown"},"2678":{"description":"AWS Lake Anna Data Center – Building 7 is a hyperscale, single‑story, 151,895‑sq‑ft facility within the Lake Anna Technology Campus at Kentucky Springs Rd and Haley Dr in Louisa County, adjacent to the North Anna Power Station. It is part of AWS’s two‑campus, $11 billion investment in Louisa County by 2040.","verified_status":"under-construction","power_capacity_mw":44,"total_sqft":151895,"year_online":"2027","construction_update":"Campus under active construction by mid‑2025; DEQ issued data center air permits in early 2026.","recent_news":"June 2026: DEQ public hearing covered by local news on AWS’s draft permit to discharge up to 280,000 gpd of treated cooling water into Sedges Creek.","notable_tenants":"Amazon Web Services (single-tenant hyperscale)","verified_name":"AWS Lake Anna Data Center - Building 7","verified_operator":"Amazon Web Services (AWS)","verified_owner":"Amazon (via Amazon Data Services, Inc.); land owner REB Investment Company, LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":7,"campus_acres":153,"utility_provider":"Dominion Energy; Rappahannock Electric Cooperative (REC)","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption","natural_hazard_zone":"Regional flood exposure near Lake Anna; hurricane/tornado risk in Central Virginia; flood elevation context from North Anna Power Station studies"},"2679":{"description":"Lumen Wichita Falls 1 is an enterprise-grade, carrier-neutral colocation data center at 301 Lee Street in Wichita Falls, Texas, operated by Lumen Technologies. The single-story, 10,000-sq-ft building, originally built as a telephone facility, now provides cages and cabinets with redundant power, N+1 precision cooling, and infrastructure built to Tier III design standards.","verified_status":"operational","power_capacity_mw":0,"total_sqft":10000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Wichita Falls 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen (waves, dark fiber, private line)","num_buildings":1,"campus_acres":0.34,"utility_provider":"Oncor Electric Delivery","tax_incentives":"","natural_hazard_zone":"FEMA flood zone B/X; high tornado risk"},"2680":{"description":"Colocation data center at 7060 Empire Central Drive, Houston, TX 77040, operated by Lumen Technologies, offering about 12,000 sq ft total with approximately 8,130 sq ft of raised-floor space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"Feb 2026: Lumen announced new 'AI corridors' to interconnect AI workloads and reoriented its network strategy.","notable_tenants":"","verified_name":"Lumen Houston 2 Data Center","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Texas state sales and use tax exemption for qualifying data centers (equipment and electricity).","natural_hazard_zone":"Hurricane exposure; moderate flood risk (77040)."},"2681":{"description":"Lumen Laredo 1 is an operational Lumen Technologies colocation data center at 518 Farragut in Laredo, Texas, with 4,800 sq ft total and 1,750 sq ft of colocation space.","verified_status":"operational","power_capacity_mw":0,"total_sqft":4800,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Laredo 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Lumen (on-net)","num_buildings":0,"campus_acres":0,"utility_provider":"AEP Texas","tax_incentives":"","natural_hazard_zone":"Citywide FEMA flood mapping with predominant Zone X; minor overall flood risk; wind/hurricane exposure present."},"2682":{"description":"Windstream Laredo is a small colocation data center operated by Windstream at 520 Matamoros St in Laredo, Texas.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3650,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Windstream Laredo","verified_operator":"Windstream","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream; VTX1 Companies","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA flood risk near Rio Grande (area includes Zone AE and Zone X; exact parcel not confirmed)"},"2683":{"description":"CNDC MFE02 is a small, carrier-neutral colocation facility at 900 Beech Avenue in McAllen, Texas, providing access to the city’s cross‑border interconnection ecosystem.","verified_status":"operational","power_capacity_mw":0,"total_sqft":3150,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CNDC MFE02","verified_operator":"CNDC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"AEP Texas (AEP Central)","tax_incentives":"Texas Data Center Sales and Use Tax Exemption (state program)","natural_hazard_zone":"FEMA flood zone D"},"2684":{"description":"T-Mobile McAllen Data Center is a T-Mobile telecom/data-center site at 1400 E. Upas Ave, McAllen, Texas undergoing a ~$9.5M renovation to house new 5G cabinets in an approximately 14,800 sq ft building.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":14800,"year_online":"2026","construction_update":"Phase 2 renovation/alteration scheduled 2025-08-01 to 2026-08-01 to remodel existing telecom equipment space for 5G cabinets.","recent_news":"","notable_tenants":"","verified_name":"T-Mobile McAllen Data Center","verified_operator":"T-Mobile US, Inc.","verified_owner":"T-Mobile","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":1.78,"utility_provider":"Magic Valley Electric Cooperative","tax_incentives":"","natural_hazard_zone":"Regional flood and hurricane exposure; parcel shows medium flood risk; FEMA zone not confirmed."},"2685":{"description":"Small colocation/disaster-recovery data center located below the Davenport Hotel at 10 S. Post Street in downtown Spokane, WA, with connectivity that includes Cisco/HP core routing and 1 Gbps capacity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"June 2026: Spokane City Council passed a one-year moratorium on building-permit applications for new computer data centers (Ordinance C36887); existing facilities are not targeted.","notable_tenants":"","verified_name":"NetRiver – Spokane Data Center","verified_operator":"ByteGrid","verified_owner":"KSL Capital Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"Private network connectivity with Cisco/HP core routing; 1 Gbps capacity; carrier-neutral posture implied.","num_buildings":1,"campus_acres":0,"utility_provider":"Avista Utilities","tax_incentives":"","natural_hazard_zone":"low risk"},"2686":{"description":"Colocation facility on the 2nd floor at 155 S. Stevens Street in downtown Spokane, originally operated by XO Communications and now operated by Verizon following completion of the XO transition.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon: Spokane","verified_operator":"Verizon","verified_owner":"","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Avista Utilities","tax_incentives":"Washington State data center sales and use tax exemption (eligibility-based).","natural_hazard_zone":"low risk"},"2687":{"description":"EF-5 tornado-hardened colocation facility in Lake Park, Iowa, operated by Great Lakes Communication Corp., spanning about 2,400–2,500 sq ft and opened in 2014.","verified_status":"operational","power_capacity_mw":1,"total_sqft":2500,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Great Lakes Colocation Data Center","verified_operator":"Great Lakes Communication Corp. (Great Lakes Colocation)","verified_owner":"Great Lakes Communication Corp.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5.68,"utility_provider":"Lake Park Municipal Utilities (LPMU)","tax_incentives":"Iowa data center sales and use tax incentive (exemption or partial refund for qualifying purchases once eligible).","natural_hazard_zone":"Minor flood risk; tornadoes posing a moderate risk."},"2688":{"description":"Equinix Minooka CH8 (Building 1) is the first phase of a large, multi‑building colocation campus on roughly 300–310 acres at the northeast corner of Ridge and Holt Roads in Minooka, Illinois. The full buildout targets a substantial power footprint (reported up to ~700 MW) over a multi‑year development.","verified_status":"under-construction","power_capacity_mw":700,"total_sqft":0,"year_online":"unknown","construction_update":"Village Board approvals in late March 2026; campus listed as currently under construction on the Village’s transparency portal.","recent_news":"On March 27, 2026, the Minooka Village Board approved multiple items for the Equinix data center campus, with construction expected to start within weeks.","notable_tenants":"","verified_name":"Equinix Minooka CH8","verified_operator":"Equinix","verified_owner":"Equinix","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":8,"campus_acres":310,"utility_provider":"Commonwealth Edison (ComEd)","tax_incentives":"Enterprise Zone incentives approved via the Upper Illinois River Valley Development Authority; includes 6.5% state sales tax exemption on building materials and an additional state investment tax credit.","natural_hazard_zone":"low risk"},"2689":{"description":"Former small colocation and satellite-services facility at 76 Inverness Dr E, Englewood, CO, operated by Clear Channel Satellite; operations effectively ended after the company ceased satellite distribution services in 2014.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Clear Channel Satellite - Denver Data Center","verified_operator":"Clear Channel Satellite, Inc.","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"low-to-moderate seismic risk"},"2690":{"description":"Former Global Crossing telecom/data facility at 1499 W 121st Ave in Westminster, CO; now marketed as standard office space for lease, indicating data center operations have been decommissioned.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":58033,"year_online":"unknown","construction_update":"","recent_news":"As of June 22, 2026, the property is listed with 40,000 SF of office space available for lease at $26.00/SF/YR.","notable_tenants":"Homestead Management Corporation (Suite #100)","verified_name":"Global Crossing - Westminster Data Center","verified_operator":"","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":""},"2691":{"description":"Colocation data center located at 550 East 84th Avenue, Suite E-5, Thornton, CO 80229 (former SunGard AS DEN-550), associated with 365 Data Centers after it acquired SunGard’s U.S. colocation/network business in 2022, while marketplace listings also show the site under 11:11 Systems.","verified_status":"operational","power_capacity_mw":2.2,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"May 2026: 365 Data Centers and Aphorio Carter launched a ~200 MW AI-ready data center development pipeline, with Aurora, Colorado noted as a priority location.","notable_tenants":"","verified_name":"365 Data Centers - Thornton (DEN-550)","verified_operator":"365 Data Centers","verified_owner":"Stonecourt Capital","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"FEMA flood Zones A/AE present along the South Platte River corridor in Thornton; site-specific mapping not confirmed."},"2692":{"description":"A 165,000 sq ft enterprise data center at 1650 Union Hill Road in Alpharetta, GA, built in 1999 for E*TRADE and acquired by Strategic Datasphere for $80 million in 2022. It provides approximately 5.4 MW of 2N critical power with expansion potential to 8.1 MW.","verified_status":"operational","power_capacity_mw":5.4,"total_sqft":165000,"year_online":"1999","construction_update":"","recent_news":"","notable_tenants":"E*TRADE (Morgan Stanley)","verified_name":"Strategic Datasphere 1650 Union Hill Road","verified_operator":"Strategic Datasphere","verified_owner":"Strategic Datasphere, LLC (affiliate of Strategic Capital Fund Management, LLC)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Original 1999 bond financing from the Development Authority of Fulton County","natural_hazard_zone":"low risk"},"2693":{"description":"A 7,400 sq ft enterprise data center for the Gila River Indian Community’s MIS/IT department, completed in 2018 for about $4M and designed to a Tier III standard.","verified_status":"operational","power_capacity_mw":0,"total_sqft":7400,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Gila River Indian Community Data Center (GRIC MIS Data Center)","verified_operator":"Gila River Indian Community","verified_owner":"Gila River Indian Community","cooling_type":"chilled water","tier_level":"","fiber_providers":"GRTI (Gila River Telecommunications Inc.)","num_buildings":0,"campus_acres":0,"utility_provider":"GRICUA (Gila River Indian Community Utility Authority)","tax_incentives":"","natural_hazard_zone":""},"2694":{"description":"A planned 400MW hyperscale data center campus by Ryan Companies on a 122‑acre greenfield site at the southeast corner of Estrella Road and Houser Road in Eloy, Arizona, with an estimated buildout of about 1.25 million square feet.","verified_status":"planned","power_capacity_mw":400,"total_sqft":1250000,"year_online":"unknown","construction_update":"Rezoning application submitted for approximately 122 acres at the site; the project is undergoing entitlements following a January 2025 pivot announcement.","recent_news":"Arizona suspended data center tax incentives statewide for three years in June 2026, which could affect the project’s economics and timing.","notable_tenants":"","verified_name":"Southwest Crossing Data Center","verified_operator":"Ryan Companies US, Inc.","verified_owner":"Cotton City Industrial Park, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":122,"utility_provider":"Arizona Public Service (APS) or Electrical District No. 4 (ED4)","tax_incentives":"Arizona Computer Data Center Program; statewide data center tax incentives suspended for three years as of June 2026.","natural_hazard_zone":""},"2695":{"description":"Enterprise data center for Hancock Bank (now Hancock Whitney), a reinforced-concrete, hurricane-hardened facility in Gulfport, MS, designed to Tier III with Tier IV components and approximately 35,000–37,000 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":37000,"year_online":"2007","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Hancock Bank Data Center","verified_operator":"Hancock Whitney Bank","verified_owner":"Hancock Whitney Bank","cooling_type":"unknown","tier_level":"Tier III with Tier IV components","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"Mississippi Data Center Incentives Program (state sales and use tax exemption for new and replacement computing equipment and software for qualifying data centers).","natural_hazard_zone":"Hurricane/wind exposure; Flood Factor minimal; hardened for Category 5 hurricane / F4 tornado."},"2696":{"description":"A 100 MW Bitcoin-mining data center campus at Kearney’s Tech oNE Crossing, the facility began operations in 2019 under Compute North and was later acquired by Marathon (MARA), which assumed operational control by April 30, 2024.","verified_status":"operational","power_capacity_mw":100,"total_sqft":0,"year_online":"2019","construction_update":"","recent_news":"","notable_tenants":"Foundry Digital LLC (historical host).","verified_name":"MARA Kearney (formerly Compute North Kearney / Compute North NE 05 at Tech oNE Crossing)","verified_operator":"MARA Holdings Inc.","verified_owner":"MARA Holdings Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":11,"utility_provider":"Nebraska Public Power District (NPPD)","tax_incentives":"","natural_hazard_zone":"Tech oNE Crossing materials indicate the site is outside the 100- and 500-year FEMA floodplains and in a non-threat seismic region; a property listing flags 'Flood - Medium Risk' for the address."},"2697":{"description":"A modular cryptocurrency data center developed and operated by ArchGreen Infrastructure LLC, located west of Grand Island in Southern Public Power District’s Energy Park on 60th Road a quarter-mile south of Capital Avenue.","verified_status":"operational","power_capacity_mw":12.5,"total_sqft":0,"year_online":"2024","construction_update":"","recent_news":"June 26, 2026: Local media revisited ArchGreen’s Hall County data center history while covering a separate East Grand Island project.","notable_tenants":"","verified_name":"ArchGreen Infrastructure Project 1 (Hall County modular cryptocurrency data center)","verified_operator":"ArchGreen Infrastructure LLC","verified_owner":"Southern Public Power District","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":14,"campus_acres":2,"utility_provider":"Southern Public Power District","tax_incentives":"","natural_hazard_zone":"FEMA floodplain mapping exists for Hall County; site-specific zone unknown."},"2698":{"description":"Carrier-neutral colocation facility at 3100 International Airport Dr in Charlotte operated by Segra, offering space and power near Charlotte Douglas International Airport.","verified_status":"operational","power_capacity_mw":1.6,"total_sqft":18068,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Segra: Charlotte One Data Center","verified_operator":"Segra","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral; multiple providers (e.g., AT&T, Lumen/CenturyLink, Zayo, Cogent, Time Warner Cable, XO, RST, DukeNet)","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy","tax_incentives":"North Carolina data center sales & use tax exemptions (qualification not verified for this site).","natural_hazard_zone":"FEMA Flood Zone X (low flood risk); inland location lowers hurricane surge risk; low seismicity."},"2699":{"description":"A modular edge data center operated by Duos Edge AI at 1634 18th Street in Lubbock, TX, opened in May 2026. It provides localized compute for AI/HPC and edge workloads in a small, decentralized footprint.","verified_status":"operational","power_capacity_mw":0.2,"total_sqft":0,"year_online":"2026","construction_update":"","recent_news":"Ribbon cutting and open house for the Lubbock Edge Data Center in late May 2026.","notable_tenants":"Region 16 Education Service Center (ESC)","verified_name":"Duos Edge AI Lubbock Edge Data Center (Lubbock EDC)","verified_operator":"Duos Edge AI, Inc.","verified_owner":"Lubbock ISD (property lessor)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0,"utility_provider":"Lubbock Power & Light (LP&L)","tax_incentives":"","natural_hazard_zone":"Moderate risk: tornado and flash-flood exposure; very low seismic risk (Lubbock County risk score 39%)."},"2700":{"description":"Planned hyperscale campus by Eneus Energy in Cameron County, Texas, on a 1,785-acre site with up to 2 GW total capacity and a current design of 16 data halls.","verified_status":"planned","power_capacity_mw":2000,"total_sqft":0,"year_online":"unknown","construction_update":"Initial planning and evaluations; optioned land and utility/water studies; no verified construction start.","recent_news":"May 2026: Harlingen approved a 120-day moratorium on data center applications to study infrastructure, water, energy, and environmental impacts.","notable_tenants":"","verified_name":"The RGV Data Center (Harlingen RGV Campus)","verified_operator":"Eneus Energy","verified_owner":"RGV Property Group LLC / RGV Property LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"9 metro fiber providers within 10 miles (carriers not named)","num_buildings":16,"campus_acres":1785,"utility_provider":"AEP Texas","tax_incentives":"None verified; county officials stated they are not willing to offer abatements. Texas offers a statewide data center sales tax exemption, but participation for this project is not confirmed.","natural_hazard_zone":"High hurricane and flood exposure; site-specific FEMA flood zone unknown"},"2701":{"description":"A carrier-neutral colocation facility operated by 365 Data Centers at 13873 Park Center Rd, Herndon, VA, offering about 12,000 sq ft with an N+1 80-ton cooling plant and diverse network connectivity.","verified_status":"operational","power_capacity_mw":0.83,"total_sqft":12000,"year_online":"2012","construction_update":"","recent_news":"May 2026: 365 Data Centers announced a strategic partnership with Aphorio Carter to develop an AI-ready data center pipeline in the U.S.","notable_tenants":"","verified_name":"365 Data Centers Herndon","verified_operator":"365 Data Centers","verified_owner":"BECO Management","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption","natural_hazard_zone":""},"2702":{"description":"Carrier‑neutral H5 colocation facility at 4030 Lafayette Center Dr within a 3‑building, 145k+ sq ft campus on ~11 acres in Chantilly, VA.","verified_status":"operational","power_capacity_mw":23,"total_sqft":145000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"IBM Cloud / SoftLayer WDC01 at 4030 Lafayette Center Drive.","verified_name":"H5 Data Centers Virginia (4030)","verified_operator":"H5 Data Centers","verified_owner":"Chantilly Technology Partners LLC (legal parcel owner); Menlo Equities (real-estate acquirer in Sep 2023).","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; Cogent present at 4030","num_buildings":3,"campus_acres":11,"utility_provider":"","tax_incentives":"Virginia data center retail sales & use tax exemption (statewide).","natural_hazard_zone":""},"2703":{"description":"DataBank IAD2 – McLean is an operational colocation facility at 1764A Old Meadow Lane in McLean, VA, offering 4.5 MW of on-site power with a 2N power design and N+1 cooling. The data center totals about 65,000 sq ft and was brought into service for colocation by Zayo in 2018 before DataBank’s 2020 zColo portfolio acquisition.","verified_status":"operational","power_capacity_mw":4.5,"total_sqft":65000,"year_online":"2018","construction_update":"","recent_news":"Virginia lawmakers advanced a plan to condition data center sales tax exemptions on purchasing renewable energy certificates, potentially affecting facilities statewide.","notable_tenants":"","verified_name":"DataBank IAD2 – McLean","verified_operator":"DataBank","verified_owner":"DataBank Holdings (majority owned by Swiss Life Asset Management / EDF Invest consortium; DigitalBridge retains ~7.8% stake)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption","natural_hazard_zone":"low risk"},"2704":{"description":"STACK NVA05B is a hyperscale data center building under construction at 9001 Freedom Center Boulevard (Building B) in Manassas, Virginia, with an expected gross size of about 340,000 square feet on STACK’s NVA05 campus.","verified_status":"under-construction","power_capacity_mw":48,"total_sqft":340000,"year_online":"unknown","construction_update":"Under construction as of April 2026 per public records; market listings also show the project as under construction.","recent_news":"March 2026: The Virginia Senate budget (SB30) proposed ending the state’s data center sales & use tax exemption on January 1, 2027, potentially impacting incentives available to facilities like NVA05B.","notable_tenants":"","verified_name":"STACK NVA05B","verified_operator":"STACK Infrastructure","verified_owner":"STACK Infrastructure (sponsored by IPI Partners)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":62,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (through June 30, 2035, subject to statutory thresholds); note: March 2026 proposal (SB30) to end the exemption effective Jan 1, 2027.","natural_hazard_zone":"Portions of the site lie within the FEMA 100-year floodplain."},"2705":{"description":"QTS Manassas DC1 is a 123,200 sq ft wholesale/colocation data center at 9400 Godwin Drive, Manassas, VA, and the first building on QTS’s 105-acre Manassas campus planned for 6 buildings and 190+ MW of capacity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":123200,"year_online":"2019","construction_update":"","recent_news":"April 2026: Virginia Court of Appeals halted the Prince William Digital Gateway project near Manassas National Battlefield Park.","notable_tenants":"","verified_name":"QTS Manassas DC1","verified_operator":"QTS Data Centers","verified_owner":"Blackstone","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":6,"campus_acres":105,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (qualifying computer equipment).","natural_hazard_zone":"low risk"},"2706":{"description":"QTS Manassas DC3 is a 140,000 SF, tilt-up concrete wholesale data center on QTS’s Manassas campus featuring a zero-water, air-cooled design. It sits within a 105-acre, planned 6‑building campus with 190+ MW of total critical capacity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":140000,"year_online":"2024","construction_update":"","recent_news":"May 2026: QTS filed a last‑minute appeal to the Virginia Supreme Court in the Digital Gateway rezoning case.","notable_tenants":"","verified_name":"QTS Manassas DC3","verified_operator":"QTS Data Centers","verified_owner":"Blackstone","cooling_type":"air-cooled","tier_level":"","fiber_providers":"Redundant campus fiber conduit system","num_buildings":6,"campus_acres":105,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (DCRSUT)","natural_hazard_zone":"low risk"},"2707":{"description":"A 72 MW hyperscale data center operated by Corscale and the first phase of the Gainesville Crossing campus, a 130-acre development in Prince William County, Virginia planned for five buildings.","verified_status":"operational","power_capacity_mw":72,"total_sqft":0,"year_online":"2024","construction_update":"","recent_news":"June 2026: Blue Owl provided $975 million balance sheet financing for Project Helios (Corscale Gainesville Building 1), arranged by Newmark.","notable_tenants":"","verified_name":"Corscale Gainesville - Bldg 1","verified_operator":"Corscale","verified_owner":"Affinius Capital in joint venture with Corscale","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":130,"utility_provider":"Dominion Energy","tax_incentives":"Virginia data center retail sales and use tax exemption","natural_hazard_zone":""},"2708":{"description":"Yondr Bristow Campus is a hyperscale data center development by Yondr Group at 12981 Rollins Ford Road, Bristow, Virginia, with third-party listings showing a 60 MW campus. County permit filings indicate three buildings totaling 901,640 sq ft, with Building 3 still under construction.","verified_status":"under-construction","power_capacity_mw":60,"total_sqft":901640,"year_online":"unknown","construction_update":"Building 3 is under construction per county permit aggregation.","recent_news":"No site-specific updates verified in the last 6 months. On Mar 11, 2026, Prince William County published PFR #PFR2026-00005 for a NOVEC substation near Casey Lane/Rollins Ford intended to provide approximately 300 MW.","notable_tenants":"","verified_name":"Yondr Bristow Campus","verified_operator":"Yondr Group","verified_owner":"Yondr Group; corporate owners DigitalBridge and CDPQ","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":0,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide) for qualifying data centers.","natural_hazard_zone":"unknown"},"2709":{"description":"Operational Telxius cable landing/data center at 1900 Corporate Landing Pkwy in Virginia Beach that lands the MAREA and BRUSA subsea systems; listed at approximately 10,750 sq ft with access to 30 MW.","verified_status":"operational","power_capacity_mw":30,"total_sqft":10750,"year_online":"2018","construction_update":"","recent_news":"May 2026: Virginia Beach approved an $800,000 economic-development grant for Globalinx to expand its Corporate Landing campus adjacent to the Telxius CLS.","notable_tenants":"","verified_name":"Telxius Virginia Beach Cable Landing Station","verified_operator":"Telxius","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"MAREA and BRUSA subsea systems via Telxius; interconnection architecture with Equinix (Ashburn); nearby terrestrial connectivity mentioned by Lumos via the Globalinx interconnect campus.","num_buildings":0,"campus_acres":12,"utility_provider":"Dominion Energy","tax_incentives":"City: Data Center Tax Reduction ($0.40 per $100 assessed value for qualifying equipment). State: Data Center Retail Sales & Use Tax Exemption (qualifying criteria apply).","natural_hazard_zone":"Outside the 100-year floodplain"},"2710":{"description":"Microsoft East Wenatchee (EAT03) is an operational Microsoft hyperscale data center at 875 Urban Industrial Way in East Wenatchee, Washington. It is part of a larger Microsoft campus in the Pangborn area and is listed with 57 MW capacity and a 2024 in-service date.","verified_status":"operational","power_capacity_mw":57,"total_sqft":0,"year_online":"2024","construction_update":"","recent_news":"","notable_tenants":"Microsoft Azure; no third-party tenants publicly disclosed.","verified_name":"Microsoft East Wenatchee (EAT03)","verified_operator":"Microsoft","verified_owner":"Microsoft Corporation","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":170,"utility_provider":"Douglas County PUD","tax_incentives":"Eligible for Washington state data center sales/use tax exemptions; Microsoft received more than $300 million in Washington data center tax exemptions from 2018–2023 (not EAT03-specific).","natural_hazard_zone":""},"2711":{"description":"State-operated enterprise data center at 1500 Jefferson St SE in Olympia, run by WaTech to provide colocation and IT services for Washington agencies in a LEED-certified office and data center complex with a dedicated multi-story data center wing.","verified_status":"operational","power_capacity_mw":0,"total_sqft":373097,"year_online":"2011","construction_update":"","recent_news":"Enterprise Service: Data Center standard published/maintained in 2026, establishing the Data Center as a statewide enterprise service under EA-02.","notable_tenants":"Washington state agencies; Department of Enterprise Services (DES); WaTech; Department of Children, Youth, and Families (DCYF)","verified_name":"Washington State Data Center (1500 Jefferson Building)","verified_operator":"WaTech (Washington Technology Solutions)","verified_owner":"FYI Properties (63-20 P3 ownership; long-term lease to the State; developed/managed by Wright Runstad & Company)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Puget Sound Energy (PSE)","tax_incentives":"Originally financed via 63-20 tax-exempt bonds through a public-private partnership; no active ongoing site-specific incentives identified.","natural_hazard_zone":"Seismic risk (Puget Sound/Cascadia) and regional coastal/riverine flood exposure for low-lying Olympia areas."},"2712":{"description":"Equinix AT1 is a carrier‑neutral IBX/colocation data center located at 180 Peachtree Street NW in downtown Atlanta, providing interconnection and colocation services. The facility occupies multiple floors (2, 3, and 6) within the 180 Peachtree building.","verified_status":"operational","power_capacity_mw":4,"total_sqft":79200,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Atlanta AT1","verified_operator":"Equinix","verified_owner":"Mapletree Industrial Trust (Mapletree JV)","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral; over 150 network service providers","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2713":{"description":"Centersquare ATL1 is a carrier-neutral colocation campus at 375 Riverside Parkway in Lithia Springs, GA, operated by Centersquare, featuring chilled-water cooling and Tier III–equivalent design across multiple phases.","verified_status":"operational","power_capacity_mw":81.5,"total_sqft":137203,"year_online":"1998","construction_update":"","recent_news":"","notable_tenants":"AT&T; Cigna","verified_name":"Centersquare ATL1 - Atlanta Campus","verified_operator":"Centersquare","verified_owner":"Mapletree Industrial Trust (Mapletree Investments)","cooling_type":"chilled water","tier_level":"Tier III (design equivalent, not formally Uptime Institute certified)","fiber_providers":"carrier-neutral; 14 providers (examples include Cogent)","num_buildings":1,"campus_acres":0,"utility_provider":"GreyStone Power Corporation","tax_incentives":"Georgia High-Technology Data Center Equipment Exemption (HB 696, 2018) — active","natural_hazard_zone":"low risk (outside 100-year and 500-year FEMA floodplains)"},"2714":{"description":"A planned Nex-Tech data center at 1624 Sunflower Drive in Salina, Kansas, redeveloping the former Jumpin' Joe's building; Nex-Tech will also keep its downtown Salina location.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Plans announced April 2025; community posts show Nex-Tech signage at the former Jumpin’ Joe’s site. No formal construction milestones publicly reported since.","recent_news":"","notable_tenants":"","verified_name":"Nex-Tech Salina Data Center","verified_operator":"Nex-Tech","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Nex-Tech","num_buildings":1,"campus_acres":0,"utility_provider":"Evergy","tax_incentives":"","natural_hazard_zone":"Salina includes FEMA Special Flood Hazard Areas; address-specific flood zone unknown. Tornado risk typical for central Kansas."},"2715":{"description":"CloudHQ’s MSP Campus is a planned hyperscale data center development on roughly 70 acres at 2007 Schoolmaster Dr. in Chaska’s West Creek Corporate Center, designed for up to 200 MW across one or two buildings totaling about 1.4–1.5 million sq ft. The project received preliminary city approval in October 2024 and remains in planning.","verified_status":"planned","power_capacity_mw":200,"total_sqft":1400000,"year_online":"unknown","construction_update":"Preliminary city approval granted in Oct 2024; as of Feb 2026 the campus remains in planning (no reported groundbreaking).","recent_news":"Feb 2026: Listed among Minnesota’s top large data center projects, still in planning and designed for up to 200 MW.","notable_tenants":"","verified_name":"CloudHQ MSP Campus","verified_operator":"CloudHQ","verified_owner":"CloudHQ","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":70.66,"utility_provider":"City of Chaska Electric Utility (MMPA member)","tax_incentives":"Minnesota Qualified Data Center sales and use tax exemptions (up to 35 years for qualifying purchases).","natural_hazard_zone":"Low seismic; inland non-coastal (no hurricane); exposure to winter storms/tornadoes and localized flood risk."},"2716":{"description":"Planned data center at 500 Prospect Ave next to the St. Louis Armory (3660 Market St), with a conditional-use permit approved on 2026-04-21 as part of the Armory Innovation District.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Permit stage: Conditional-use permit approved 2026-04-21; prior conditional-use hearing item AB-586691-25 noticed in 2025; building permit application reported filed with $600M project cost.","recent_news":"2026-04-21: City unanimously approved the conditional-use permit for the data center at 500 Prospect Ave.","notable_tenants":"","verified_name":"Armory Innovation Data Center","verified_operator":"unknown","verified_owner":"500 Prospect (data center site): ENVISAGE PROPERTIES LLC & GREEN STREET 2900 INVESTORS LLC; 3660 Market (Armory): GREEN STREET ARMY INVESTORS LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":4,"utility_provider":"Ameren Missouri","tax_incentives":"","natural_hazard_zone":"unknown"},"2717":{"description":"An operational colocation facility branded as CenterServ: Albuquerque Data Center at 6565 Americas Parkway NE in Albuquerque, offering connectivity from multiple providers within an office building.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CenterServ: Albuquerque Data Center","verified_operator":"CenterServ","verified_owner":"Unknown; last reported sale to Jim Long and investors (2016).","cooling_type":"unknown","tier_level":"","fiber_providers":"Multiple providers (unspecified)","num_buildings":1,"campus_acres":0,"utility_provider":"Public Service Company of New Mexico (PNM)","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone B (moderate risk)"},"2718":{"description":"Single-building colocation and managed-services data center operated by CentriLogic (via Dacentec) at 801 Main Street NW in Lenoir, North Carolina.","verified_status":"operational","power_capacity_mw":1,"total_sqft":23500,"year_online":"2010","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CentriLogic Lenoir, North Carolina Data Center","verified_operator":"CentriLogic (Dacentec)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; bandwidth by major Tier 1 carriers; connectivity by 5 diverse fiber operators","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2719":{"description":"NCDIT Western Data Center is a state-operated colocation facility at 1371 Old Caroleen Road in Forest City, NC, providing secured data center space and environment for North Carolina government needs.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"North Carolina state government agencies","verified_name":"NCDIT Western Data Center","verified_operator":"North Carolina Department of Information Technology (NCDIT)","verified_owner":"State of North Carolina","cooling_type":"unknown","tier_level":"","fiber_providers":"MCNC/NCREN backbone","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Minor flood risk (citywide); moderate seismic risk (Rutherford County)."},"2720":{"description":"TierPoint Raleigh–Cary is an operational colocation data center at 111 Corning Road, Cary, NC 27518 in Crossroads Corporate Park III, operated by TierPoint. The site traces back to Windstream Hosted Solutions assets acquired by TierPoint in 2015.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"TierPoint initiated a search for its next CEO in March 2026, with founder Jerry Kent transitioning to Executive Chairman.","notable_tenants":"","verified_name":"TierPoint Raleigh-Cary","verified_operator":"TierPoint","verified_owner":"Menlo Equities","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":12.98,"utility_provider":"Duke Energy Progress","tax_incentives":"North Carolina data center sales & use tax exemptions (e.g., qualifying data centers with $75M+ investment; exemptions for electricity and support equipment).","natural_hazard_zone":"Low seismic risk; localized flood exposure (about 8% of buildings at flood risk) and seasonal storm/hurricane effects typical for central NC."},"2721":{"description":"Operational AceHost colocation facility at 4518 S. Miami Blvd., Durham (Raleigh–Durham/Research Triangle), with 14,000 sq ft, N+1 UPS, raised-floor down-flow air distribution, dedicated fiber pathways, and on-site generator backup.","verified_status":"operational","power_capacity_mw":1,"total_sqft":14000,"year_online":"unknown","construction_update":"","recent_news":"June 15, 2026: The RTP office property at 4518 S Miami Blvd is listed as currently available for lease.","notable_tenants":"","verified_name":"AceHost Raleigh-Durham Data Center","verified_operator":"AceHost","verified_owner":"","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":1.59,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (low flood risk)"},"2722":{"description":"Planned hyperscale data center campus in Limerick Township, PA, proposed by MCD 7 LLC under conditional-use case CU 25-04. Public listings describe “Project Laurel” at roughly 1.4 million sq ft across ~192 acres.","verified_status":"planned","power_capacity_mw":750,"total_sqft":1400000,"year_online":"unknown","construction_update":"In conditional-use review; no construction start or permits cited.","recent_news":"June 2026: Conditional-use hearing for Project Laurel (CU 25-04) drew significant public attention and opposition.","notable_tenants":"","verified_name":"Project Laurel Data Center Campus (MCD 7 LLC)","verified_operator":"unknown","verified_owner":"MCD 7 LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":192,"utility_provider":"","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program; repeal legislation advanced in June 2026 (status evolving).","natural_hazard_zone":"low risk"},"2723":{"description":"A proposed $2.1 billion hyperscale data center campus along Business Route 6 and Wildcat Road in Archbald, PA, targeting 14 data center buildings and very large power and water needs. The project remains in conditional-use hearings with active community scrutiny.","verified_status":"planned","power_capacity_mw":1600,"total_sqft":0,"year_online":"unknown","construction_update":"No construction start. Conditional-use hearings continued through May–June 2026; land acquisition reported March 30, 2026.","recent_news":"May 14, 2026: the fourth conditional-use hearing continued; a fifth was slated for mid-June. In late June 2026, Pennsylvania lawmakers voted overwhelmingly to repeal data center sales-tax incentives.","notable_tenants":"","verified_name":"Wildcat Ridge Data Center Campus","verified_operator":"Cornell Realty Management LLC","verified_owner":"Cornell Realty Management LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":14,"campus_acres":574.2,"utility_provider":"PPL Electric Utilities","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption (Act 25 of 2021) existed; both chambers voted in June 2026 to repeal it via SB 1344 (final enactment pending).","natural_hazard_zone":"Moderate flood risk: 28.8% of properties in Archbald at flood risk over 30 years (First Street Foundation)."},"2724":{"description":"Vantage NV12 is a 64MW, ~260,000 sq ft hyperscale facility under construction as the second building on Vantage’s NV1 campus near Reno/Sparks, NV. The larger campus is planned for 224MW when fully built out.","verified_status":"under-construction","power_capacity_mw":64,"total_sqft":260000,"year_online":"2027","construction_update":"Topped out (Jan 2026); phased turnover of NV12 to begin December 2027.","recent_news":"NV12 topped out in January 2026.","notable_tenants":"","verified_name":"Vantage NV12","verified_operator":"Vantage Data Centers","verified_owner":"Vantage Data Centers NV12, LLC","cooling_type":"chilled water","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":4,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Nevada GOED tax abatement (NV12 LLC Board Packet, Nov 14, 2024).","natural_hazard_zone":"FEMA flood Zones B/X (moderate risk, between 100- and 500-year flood limits)."},"2725":{"description":"Purpose-built, LEED Gold colocation data center at 22000 Franz Rd in Katy’s Energy Corridor, offering 26 MW across about 118,248 sq ft on a 20‑acre campus.","verified_status":"operational","power_capacity_mw":26,"total_sqft":118248,"year_online":"unknown","construction_update":"10MW AI‑ready expansion underway; Phase 1 (4.5MW) targeted online by Q4 2026.","recent_news":"","notable_tenants":"","verified_name":"Element Critical Houston One Data Center","verified_operator":"Element Critical","verified_owner":"Element Critical (backed by 26North Partners, Arctos, Mercuria, and Safanad)","cooling_type":"unknown","tier_level":"Tier III Concurrently Maintainable","fiber_providers":"","num_buildings":1,"campus_acres":20,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Outside FEMA 100/500-year floodplains; engineered for 190+ mph hurricane winds; low seismic risk."},"2726":{"description":"Lancium’s Fort Stockton Clean Campus at 1753 US Hwy 285 in Fort Stockton, Texas is an operational 25 MW first-phase data center qualified as an ERCOT Controllable Load Resource, with substations being built to enable expansion toward ~300 MW.","verified_status":"operational","power_capacity_mw":25,"total_sqft":100000,"year_online":"2022","construction_update":"Substations are being built to enable expansion toward 300 MW from the operating 25 MW phase.","recent_news":"No major facility-specific announcements in the last 6 months; a third-party project page shows it was UPDATED 2026-06-09.","notable_tenants":"","verified_name":"Fort Stockton Clean Campus","verified_operator":"Lancium","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":110,"utility_provider":"","tax_incentives":"Pecos County economic development/tax abatement with an annual PILOT flat fee of $598,000 during the abatement period; City of Fort Stockton EDC agreement referencing a 25 MW data center and 300 MW substation.","natural_hazard_zone":"low risk (FEMA National Risk Index Very Low; 25th percentile)"},"2727":{"description":"PowerCampus® Dallas is a 300 MW hyperscale data center campus in Lancaster (South Dallas) with a private onsite substation in Oncor territory, delivering up to 1,000,000 square feet for large-scale, high-density deployments.","verified_status":"under-construction","power_capacity_mw":300,"total_sqft":1000000,"year_online":"2026","construction_update":"Phase 1 building (≈270,900 sq ft) is underway; delivery is anticipated in early 2026. TCEQ Permit-by-Rule approval reported in Nov 2024.","recent_news":"","notable_tenants":"","verified_name":"PowerCampus® Dallas","verified_operator":"Skybox Datacenters","verified_owner":"Bandera Ventures and Skybox Datacenters (joint development)","cooling_type":"hybrid","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":3,"campus_acres":115,"utility_provider":"Oncor","tax_incentives":"Texas state sales and use tax exemption for qualified data centers (on eligible items).","natural_hazard_zone":"FEMA county-level flood risk: Very High; tornado exposure (Lancaster EF-2 in 2012)."},"2728":{"description":"Building 1 (AUS04/AUS NAP04) is the first data center on Switch’s “The Rock” exascale campus at 150 Dell Way in Round Rock, adjacent to Dell Technologies’ HQ, and is part of a campus planned for more than 1.5 million sq ft of space.","verified_status":"operational","power_capacity_mw":25,"total_sqft":0,"year_online":"2024","construction_update":"","recent_news":"April 20 2026: Austin Business Journal reported Switch will begin vertical construction this summer on a 72,600-sq-ft data center at 300 Dell Way, the next expansion phase of The Rock campus.","notable_tenants":"","verified_name":"Switch AUS04 (The Rock Building 1)","verified_operator":"Switch, Inc.","verified_owner":"Switch (owned by DigitalBridge Group & IFM Investors)","cooling_type":"hybrid","tier_level":"","fiber_providers":"LOGIX Fiber Networks","num_buildings":0,"campus_acres":32.48,"utility_provider":"","tax_incentives":"Round Rock Chapter 380 agreement: 50 % rebate of city 1-cent sales/use tax through 2037, contingent on $80 M taxable activity by 2026.","natural_hazard_zone":""},"2729":{"description":"Colocation data center at 7620 Metro Center Dr in Austin, currently operated as Enzu AUS1. Historically, the site appears in Digital Realty SEC filings as a 45,000‑sq‑ft data center asset acquired in 2005.","verified_status":"operational","power_capacity_mw":0,"total_sqft":45000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"Former tenant: ERCOT (moved Feb 1, 2022 to 8000 Metropolis Dr).","verified_name":"Enzu AUS1 – Austin, TX","verified_operator":"Enzu","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2730":{"description":"TierPoint Oklahoma City (OKC) is a colocation data center at 4121 Perimeter Center Place in Oklahoma City, operated by TierPoint and part of a two-building campus that also includes 4114 Perimeter Center Place.","verified_status":"operational","power_capacity_mw":0,"total_sqft":22455,"year_online":"unknown","construction_update":"","recent_news":"Oklahoma City enacted a temporary moratorium on new data centers over 75 MW through Dec. 31, 2026; existing facilities remain in operation.","notable_tenants":"","verified_name":"TierPoint Oklahoma City (OKC)","verified_operator":"TierPoint","verified_owner":"Mapletree Industrial Trust (MIT)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0,"utility_provider":"OG&E (Oklahoma Gas & Electric)","tax_incentives":"","natural_hazard_zone":""},"2731":{"description":"Historic, carrier-neutral colocation site at 8100 Boone Blvd in Tysons/Vienna, VA—originally the MAE-East exchange point in 1992—now a small but well-connected Digital Realty facility within a Gosnell Properties office building.","verified_status":"operational","power_capacity_mw":2.2,"total_sqft":17015,"year_online":"1992","construction_update":"","recent_news":"Digital Realty agreed to purchase Blackstone’s interests in three Northern Virginia data centers (June 29, 2026), expanding its NoVA footprint; the assets are in Manassas, not at 8100 Boone.","notable_tenants":"","verified_name":"8100 Boone Boulevard","verified_operator":"Digital Realty","verified_owner":"Digital Realty Trust (REIT); building owned by Gosnell Properties (Digital Realty leases/operates data center space within the building)","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; Verizon Business, Crown Castle, Fiberlight","num_buildings":1,"campus_acres":3.28,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (DCRSUT) potentially applicable to qualifying equipment and tenants","natural_hazard_zone":"FEMA Flood Zone B/X (moderate risk; outside Special Flood Hazard Area)"},"2732":{"description":"A small SunGard colocation/workgroup data center at 501 South 336th Street #200 in Federal Way, WA, historically operated by Sungard Availability Services, with approximately 12,000 sq ft of space.","verified_status":"decommissioned","power_capacity_mw":0,"total_sqft":12000,"year_online":"unknown","construction_update":"","recent_news":"June 2026 listing shows 2,774 sq ft office space for lease at 501 S 336th St, indicating the property is marketed for office use.","notable_tenants":"","verified_name":"SunGard – Washington Data Center (Federal Way Workgroup)","verified_operator":"","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Puget Sound Energy","tax_incentives":"Washington data center retail sales and use tax exemption is available for qualifying operators/tenants; SB 6231 ended exemptions for equipment replacements/refurbishments effective July 1, 2026.","natural_hazard_zone":"Low to moderate flood risk (outside Green River flood plain); high earthquake risk."},"2733":{"description":"Bitdeer’s 13 MW site at 624 Urban Industrial Way in East Wenatchee, WA began operations as a cryptocurrency mining facility in 2018 and is now being converted into an AI-ready data center. Bitdeer’s 2026 updates note decommissioning of mining rigs at Wenatchee to make room for the AI data center, with conversion targeted for Q4 2026.","verified_status":"under-construction","power_capacity_mw":13,"total_sqft":0,"year_online":"2018","construction_update":"Dismantling of the crypto mining infrastructure began in March 2026 to facilitate conversion to an AI data center; completion targeted for Q4 2026.","recent_news":"Bitdeer began dismantling its Wenatchee crypto mining data center in March 2026 to convert it into an AI data center, targeting completion in Q4 2026.","notable_tenants":"","verified_name":"Bitdeer Washington Data Center","verified_operator":"Bitdeer Technologies Group","verified_owner":"Bitdeer Technologies Group","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Douglas County PUD","tax_incentives":"Washington state sales and use tax exemption for eligible data centers and qualifying tenants (RCW 82.08.986), per WA Department of Revenue guidance on data center eligibility.","natural_hazard_zone":"low risk"},"2734":{"description":"Enterprise data center operated by UW‑IT in the 4545 Building at 4545 15th Ave NE in Seattle’s U‑District; it is one of two active UW data centers along with the UW Tower site.","verified_status":"operational","power_capacity_mw":0,"total_sqft":113944,"year_online":"unknown","construction_update":"","recent_news":"Mar 9, 2026: Campus reporting highlighted UW’s two data centers, confirming one at 4545 15th Ave NE and the other in UW Tower, with discussion of operations and placement.","notable_tenants":"","verified_name":"University of Washington 4545 Building Data Center","verified_operator":"University of Washington (UW-IT)","verified_owner":"University of Washington","cooling_type":"unknown","tier_level":"","fiber_providers":"Pacific Northwest Gigapop (PNWGP); Internet2 (via PNWGP)","num_buildings":1,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"","natural_hazard_zone":"FEMA Flood Zone X (very low flood risk); high seismic hazard"},"2735":{"description":"A multi-tenant colocation data center at 375 Riverside Parkway in Lithia Springs, GA, totaling 250,193 sq ft and built in 1998 with 32 MW of power capacity; it is owned by Mapletree Industrial Trust and operated by Digital Realty.","verified_status":"operational","power_capacity_mw":32,"total_sqft":250193,"year_online":"1998","construction_update":"","recent_news":"","notable_tenants":"Cyxtera; Centersquare (Csquare)","verified_name":"375 Riverside - Digital Realty Data Center (Lithia Springs)","verified_operator":"Digital Realty","verified_owner":"Mapletree Industrial Trust","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"Georgia High-Technology Data Center Equipment Exemption (HB 696) – sales & use tax exemption on qualifying equipment","natural_hazard_zone":"unknown"},"2736":{"description":"Small C Spire colocation/data-center presence within a multi-tenant office building at 4200 Mamie St., Suite 210, Hattiesburg, MS; listed by Datacenters.com and corroborated by a 2026 LoopNet tenant mix note.","verified_status":"operational","power_capacity_mw":0,"total_sqft":36714,"year_online":"unknown","construction_update":"","recent_news":"May–June 2026: 4200 Mamie St. marketed for lease/sale; listings note tenant mix including C-Spire (office and data center).","notable_tenants":"C Spire; Forrest General Home Health","verified_name":"C-Spire: MegaGate Data Center","verified_operator":"C Spire","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":5.43,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2737":{"description":"The Malcolm A. Portera High Performance Computing Center at 2 Research Boulevard in Starkville’s Thad Cochran Research Park is Mississippi State University’s enterprise HPC facility that houses MSU’s research computing organizations and resources.","verified_status":"operational","power_capacity_mw":0,"total_sqft":73000,"year_online":"2014","construction_update":"Operational facility. Adjacent HPC Data Center: groundbreaking May 23, 2023 (≈35,000 sq ft, $45M; target 2025) and a project listing of 30,000 sq ft, $45M (April 2025 completion).","recent_news":"Apr 21, 2026: MSU appointed Mark Keever executive director of high performance computing; MSU also noted a recently completed 10,000‑sq‑ft HPC data center in the Research Park.","notable_tenants":"NOAA’s Orion supercomputer; USDA Agricultural Research Service’s Atlas supercomputer.","verified_name":"Malcolm A. Portera High Performance Computing Center","verified_operator":"Applied Research Collaboratory (ARC), Mississippi State University (formerly HPC²)","verified_owner":"Mississippi State University","cooling_type":"liquid","tier_level":"","fiber_providers":"Mississippi Optical Network (MissiON); redundant dual 100 Gbps campus connectivity","num_buildings":1,"campus_acres":0,"utility_provider":"Starkville Utilities","tax_incentives":"","natural_hazard_zone":"unknown"},"2738":{"description":"Enterprise university data center operated by Missouri State University within the Telecommunications Center at Blair‑Shannon, supporting university systems and governed by MSU’s data center policies. Recent capital work includes a generator replacement/UPS/fire‑suppression controls project for the Telecommunications Center.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Generator Replacement (Telecommunications Center, Blair‑Shannon): standby generator/distribution, UPS relocation/replacement, and fire‑suppression control‑panel replacement; bidding and bid tab June 24, 2025.","recent_news":"Mar 3, 2026: MSU reported a MOREnet connectivity issue affecting Missouri State services; connectivity was restored the same day.","notable_tenants":"Missouri State University internal systems/departments; no external tenants disclosed.","verified_name":"Missouri State University Telecommunication Center Data Center","verified_operator":"Missouri State University Information Services — Telecommunications Services / Networking and Telecommunications","verified_owner":"Missouri State University","cooling_type":"unknown","tier_level":"","fiber_providers":"MOREnet; campus fiber/copper operated by MSU Telecommunications Services","num_buildings":1,"campus_acres":225,"utility_provider":"City Utilities of Springfield","tax_incentives":"","natural_hazard_zone":"Tornado/severe weather and regional seismic (New Madrid) risks; city participates in FEMA NFIP floodplain management; no building‑specific FEMA flood zone verified."},"2739":{"description":"Colocation data center operated by Anexio at 2717 Weck Drive in Durham, NC, serving the Research Triangle area with enterprise-grade power and connectivity. The facility offers multi-carrier access and Tier-3-style design characteristics.","verified_status":"operational","power_capacity_mw":3.3,"total_sqft":34631,"year_online":"unknown","construction_update":"","recent_news":"Durham extended its temporary ban on new data centers and crypto-mining facilities, bringing the total pause to 12 months.","notable_tenants":"","verified_name":"Anexio Infrastructure Park Data Center","verified_operator":"Anexio","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"AT&T, Frontier, Lumen, Spectrum, T-Mobile, Verizon Business","num_buildings":1,"campus_acres":8.15,"utility_provider":"Duke Energy","tax_incentives":"North Carolina data center sales and use tax exemptions for qualifying data centers and tenants.","natural_hazard_zone":"low risk"},"2740":{"description":"Verizon’s advanced data center in Raleigh provides colocation services at 3801 Rock Quarry Rd, Raleigh, NC 27610, operated by Verizon Business. It is a telecom-grade facility on Verizon’s footprint in the Raleigh market.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"June 2026: Governor Josh Stein proposed phasing out North Carolina’s data center tax incentives over time, including ending the electricity sales tax exemption and sunsetting remaining exemptions by 2032.","notable_tenants":"","verified_name":"Verizon Business – Advanced Data Center Raleigh","verified_operator":"Verizon Business","verified_owner":"Verizon Communications Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Duke Energy Progress","tax_incentives":"North Carolina offers sales and use tax exemptions for qualifying data centers (including electricity and eligible support equipment); a June 2026 proposal seeks to phase out these incentives over time.","natural_hazard_zone":"Moderate hurricane and flood exposure; low seismic risk (per FEMA mapping tools and NC hazard summaries for Raleigh)."},"2741":{"description":"Serverfarm’s HTX1 is an operational colocation data center at 28401 Betka Rd in Hockley (Houston market), with a 350,000 sq ft facility and line‑of‑sight to 410 MW of customer capacity.","verified_status":"operational","power_capacity_mw":410,"total_sqft":350000,"year_online":"2006","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"HTX1 | Houston Data Center","verified_operator":"Serverfarm","verified_owner":"SF HOUH, LLC (Serverfarm; Manulife Investment Management–backed)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"CenterPoint Energy Houston Electric LLC","tax_incentives":"","natural_hazard_zone":""},"2742":{"description":"Serverfarm CTX2 Houston is a 60MW hyperscale data center under construction at 15555 Cutten Road adjacent to Serverfarm’s existing campus, with filings indicating ~438,000 sq ft and an estimated $137M project cost and initial 36MW targeted for Q3 2027.","verified_status":"under-construction","power_capacity_mw":60,"total_sqft":438000,"year_online":"Q3 2027","construction_update":"Under construction; structure topped out in Feb 2026 and work progressed toward MEP/commissioning, with first 36MW targeted for Q3 2027.","recent_news":"February 2026: CTX2 topped out in Houston; Serverfarm marked structural completion of the 60MW facility.","notable_tenants":"","verified_name":"Serverfarm CTX2 Houston Data Center","verified_operator":"Serverfarm","verified_owner":"Serverfarm (Manulife-backed)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"CenterPoint Energy","tax_incentives":"","natural_hazard_zone":"Hurricane and flood-prone (Harris County); low seismic risk."},"2743":{"description":"Edged Dallas is a 24MW, AI‑ready colocation data center at 505 N Wildwood Drive in Irving, Texas, operated by Edged Energy. Launched in January 2025, it uses a waterless cooling system and targets an ultra‑efficient 1.15 PUE.","verified_status":"operational","power_capacity_mw":24,"total_sqft":168610,"year_online":"2025","construction_update":"Operational first building; second 24MW building approved January 2026.","recent_news":"January 2026: Edged secured permission for a second 24MW data center building at its Irving campus.","notable_tenants":"","verified_name":"Edged Dallas (DFW01-1)","verified_operator":"Edged Energy","verified_owner":"Edged Dallas, LLC","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0,"utility_provider":"Oncor","tax_incentives":"Texas state sales and use tax exemption for qualified data centers; City of Irving considers property tax rebates/abatements for qualifying projects.","natural_hazard_zone":"Severe storm, flash flooding, and tornado risk (per City of Irving); flood risk varies by parcel—verify with FEMA flood maps."},"2744":{"description":"Operational EdgeConneX colocation facility (HOU01) at 1510 Primewest Parkway in Katy (Houston market).","verified_status":"operational","power_capacity_mw":1,"total_sqft":91400,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"EdgeConneX HOU01 Houston Data Center","verified_operator":"EdgeConneX","verified_owner":"EdgeConneX (parent: EQT Infrastructure)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"CenterPoint Energy Houston Electric","tax_incentives":"Texas state sales tax exemption program for qualified data centers; no facility-specific registration identified.","natural_hazard_zone":"Hurricane/tropical-storm exposure; local flood risk in Katy; FEMA flood zone for parcel not determined."},"2745":{"description":"Operational colocation data center at 811 Louisiana St. in downtown Houston, operated by LOGIX Fiber Networks and interconnected to LOGIX’s nearby fiber hub.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Feb 23, 2026: LOGIX announced a Texas multi-route fiber expansion to support hyperscale and multi-tenant data center growth.","notable_tenants":"","verified_name":"LOGIX Houston #2 (811 Louisiana)","verified_operator":"LOGIX Fiber Networks","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Carrier-neutral; LOGIX on-net with high-capacity DWDM interconnect to 1010 Travis.","num_buildings":1,"campus_acres":0,"utility_provider":"CenterPoint Energy Houston Electric","tax_incentives":"","natural_hazard_zone":"Hurricane and heavy-rain exposure area (Houston Gulf Coast); FEMA flood zone for 811 Louisiana not specified (unknown)."},"2746":{"description":"A small colocation data center at 140 Akron Road in Ephrata, PA, offering about 5,000 sq ft with an average 725 kW load and three backup generators, operated under Windstream’s colocation business within Uniti.","verified_status":"operational","power_capacity_mw":0.725,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"April 30, 2026 local press profile detailed the Ephrata site as ~5,000 sq ft with a 725 kW average load and three backup generators.","notable_tenants":"","verified_name":"Windstream Hosted Solutions - Ephrata Data Center","verified_operator":"Windstream Hosted Solutions","verified_owner":"Uniti Group Inc.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":1.4,"utility_provider":"Ephrata Borough Electric","tax_incentives":"","natural_hazard_zone":""},"2747":{"description":"Carrier-operated telecom/data center by Verizon Business at 572–598 Grant St (“Pittsburgh 2”), housed in Verizon’s downtown 7th Ave/Grant St central office building totaling about 575,000 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":575000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Business - Standard Data Center Pittsburgh 2","verified_operator":"Verizon Business / Verizon","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Verizon (on-net); carrier list unknown","num_buildings":1,"campus_acres":0,"utility_provider":"Duquesne Light Company","tax_incentives":"","natural_hazard_zone":"FEMA flood zones B and X"},"2748":{"description":"Verizon Business – Standard Data Center Philadelphia 2 is a Verizon-operated telecom/colocation site in central Philadelphia associated with 30–36 S 15th St; the building itself is The Graham Building, owned by a Method Co. affiliate, with no public disclosure of dedicated data-hall size or power.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Verizon Business – Standard Data Center Philadelphia 2","verified_operator":"Verizon Business","verified_owner":"Affiliate of Method Co. (owner of The Graham Building at 30–36 S 15th St)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0.27,"utility_provider":"PECO Energy Company","tax_incentives":"","natural_hazard_zone":""},"2749":{"description":"A planned hyperscale AI data center at 151 Porter Street, Springdale, PA, being developed on a 47-acre former coal power plant site. The project targets up to 240 MW and is branded by Dynamo DC (Allegheny DC Property Co.).","verified_status":"planned","power_capacity_mw":240,"total_sqft":652000,"year_online":"unknown","construction_update":"Conditional use approved by Springdale Borough Council (5-2) on Dec 17, 2025; site purchased for $14.3M in early Dec 2025; community open house sessions and updated plan presentations in June 2026.","recent_news":"June 2026: Developers unveiled a redesign and branding update (Dynamo DC) and communicated larger-scale project framing, with reports calling it a $2B project.","notable_tenants":"","verified_name":"Springdale Data Center","verified_operator":"Dynamo DC (Allegheny DC Property Co.)","verified_owner":"Davidson Kempner Capital Management","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":47,"utility_provider":"Duquesne Light","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption (Act 25 of 2021).","natural_hazard_zone":"Flood risk — First Street Foundation identifies Springdale as having major flood risk (18% of properties at risk)."},"2750":{"description":"A planned hyperscale AI data center campus on a 47-acre former Cheswick Generating Station brownfield in Springdale, PA, developed by Dynamo DC (Allegheny DC Property Co. LLC), targeting up to 240 MW of IT load across about 652,300 sq ft in two buildings.","verified_status":"planned","power_capacity_mw":240,"total_sqft":652300,"year_online":"unknown","construction_update":"Conditional use permit approved 5–2 by Springdale Borough Council in Dec 2025; developer held an open house in June 2026 as planning advanced.","recent_news":"June 10, 2026 open house hosted by the developer; public debate and opposition activities continued.","notable_tenants":"","verified_name":"Springdale Data Center","verified_operator":"Dynamo DC","verified_owner":"Allegheny DC Property Co. LLC","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":47,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA floodplain"},"2751":{"description":"Cologix ASH2 is a 226,000-sq-ft, two-story colocation data center under construction at 21673 Beaumeade Circle in Ashburn, VA’s Data Center Alley.","verified_status":"under-construction","power_capacity_mw":51,"total_sqft":226000,"year_online":"unknown","construction_update":"May 2026 – facility remains under construction per updated Cologix spec sheet.","recent_news":"February 2026 – Cologix bought an additional 38 acres in Ashburn for about $375 million to support a long-term $5 billion, 300 MW+ Northern Virginia expansion plan.","notable_tenants":"","verified_name":"Cologix ASH2","verified_operator":"Cologix","verified_owner":"Stonepeak Infrastructure Partners","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":22.6,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia 6 % data-center sales & use tax exemption on qualifying IT and infrastructure equipment","natural_hazard_zone":"low risk"},"2752":{"description":"STACK Infrastructure NVA02F is a wholesale data center in Manassas, Virginia at 9650 Hornbaker Rd, offering around 260,000 sq ft of data center space with an air-cooled design.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":260000,"year_online":"unknown","construction_update":"Under active development at 9640/9650 Hornbaker Road.","recent_news":"","notable_tenants":"","verified_name":"STACK Infrastructure NVA02F","verified_operator":"STACK Infrastructure","verified_owner":"IPI Partners","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption","natural_hazard_zone":"low seismic; moderate flood risk"},"2753":{"description":"A planned 32 MW hyperscale data center building at 775 Northrop Rd in Wallingford, CT, part of Gotspace Data Partners’ Wallingford 1 Campus envisioned as multiple buildings totaling around 96 MW. As of mid-2026, it remains planned with no construction start publicly reported.","verified_status":"planned","power_capacity_mw":32,"total_sqft":132351,"year_online":"unknown","construction_update":"No construction activity reported; facility remains in planned/pre-development status.","recent_news":"Connecticut leaders are reconsidering or seeking to eliminate the data center tax incentive program due to limited public benefits and high energy costs (April 2026).","notable_tenants":"","verified_name":"Gotspace Wallingford 1 - Building 1","verified_operator":"Gotspace Data Partners","verified_owner":"Gotspace Data Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":3,"campus_acres":57,"utility_provider":"Wallingford Electric Division (municipal utility)","tax_incentives":"Connecticut Data Center Tax Incentive Program — 20-year exemptions on sales, use, and property taxes for $200M+ investments (30 years for $400M+).","natural_hazard_zone":"FEMA Flood Zone X (moderate flood risk)"},"2754":{"description":"Small colocation facility operated by ImplexNet in downtown Minneapolis at Canadian Pacific Plaza.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Implex Minneapolis Data Center","verified_operator":"ImplexNet","verified_owner":"Artis REIT (subsidiary of RFA Financial); managed by RFA Asset Management","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Xcel Energy","tax_incentives":"Minnesota data center sales and use tax exemption on qualifying technology equipment for up to 35 years.","natural_hazard_zone":"low risk"},"2755":{"description":"ColoCrossing GA1 at 34 Peachtree St NW (One Park Tower) is an operational 10,000‑sq‑ft colocation facility with a 1.6 MW utility feed, UPS/generator backup, and multiple carriers; it was commissioned in 2014.","verified_status":"operational","power_capacity_mw":1.6,"total_sqft":10000,"year_online":"2014","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"ColoCrossing GA1 – 34 Peachtree St NW","verified_operator":"ColoCrossing","verified_owner":"Lalani Ventures (Shaneel Lalani)","cooling_type":"unknown","tier_level":"","fiber_providers":"GTT; Hibernia Networks","num_buildings":1,"campus_acres":0,"utility_provider":"Georgia Power","tax_incentives":"","natural_hazard_zone":"unknown"},"2756":{"description":"Enterprise data center at 2601 Enterprise Rd. in Reno operated by NSHE’s System Computing Services, providing colocation/hosting and shared digital services over the NevadaNet backbone for NSHE institutions and state entities.","verified_status":"operational","power_capacity_mw":0,"total_sqft":20000,"year_online":"1990","construction_update":"","recent_news":"Reno City Council passed a data center moratorium through August 2027 (June 2026), which targets new commercial projects rather than existing institutional facilities.","notable_tenants":"NSHE institutions; Nevada state agencies","verified_name":"NSHE North Data Center","verified_operator":"Nevada System of Higher Education – System Computing Services (SCS)","verified_owner":"State of Nevada / Nevada System of Higher Education","cooling_type":"unknown","tier_level":"","fiber_providers":"NevadaNet (NSHE-operated statewide backbone)","num_buildings":1,"campus_acres":1.08,"utility_provider":"NV Energy","tax_incentives":"","natural_hazard_zone":"Seismic Zone 3 (Reno area; elevated earthquake risk)"},"2757":{"description":"Project Laurel is a planned multi‑building, ~1.4 million sq ft data center campus by MCD 7 LLC in Limerick Township, PA, currently in the township’s conditional‑use review process near Sanatoga, Evergreen, Possum Hollow, and Lightcap roads.","verified_status":"planned","power_capacity_mw":750,"total_sqft":1400000,"year_online":"unknown","construction_update":"No construction start verified; conditional‑use hearing continued on June 16, 2026, and the project remains in the conditional‑use/land‑development process.","recent_news":"June 17, 2026: State legislation proposed to link data‑center tax incentives to transparency; the article notes Limerick developers had requested an NDA that township leaders declined.","notable_tenants":"","verified_name":"Project Laurel Data Center Campus","verified_operator":"MCD 7 LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":8,"campus_acres":192,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2758":{"description":"Planned multi-building data center campus by MRP Industrial in Watts Township, PA, between Amity Road, Susquehanna Trail, and US 22/322; the concept calls for ten 138,000-sq-ft facilities replacing a shelved warehouse plan.","verified_status":"planned","power_capacity_mw":0,"total_sqft":1380000,"year_online":"unknown","construction_update":"Zoning and ordinance review stage; no construction start verified.","recent_news":"June 25, 2026 public hearing on a Watts Township data center zoning ordinance was noticed; separate June 30 ZHB meeting also scheduled.","notable_tenants":"","verified_name":"MRP Industrial Watts Township / Susquehanna Crossings Data Center Campus","verified_operator":"MRP Industrial","verified_owner":"MRPI Amity Hall, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":10,"campus_acres":288,"utility_provider":"PPL Electric Utilities","tax_incentives":"","natural_hazard_zone":""},"2759":{"description":"A planned $500 million, 750,000-square-foot hyperscale data center by Fairview Crossroads LLC (affiliated with Elysian Partners) at Interstate 83 and Lewisberry Road in Fairview Township, York County, Pennsylvania. In June 2025, the township approved a zoning text amendment permitting data centers by conditional use; further approvals are still required before construction.","verified_status":"planned","power_capacity_mw":0,"total_sqft":750000,"year_online":"unknown","construction_update":"Zoning text amendment adopted in June 2025 permits data centers as a conditional use; no conditional-use approval or construction start is documented.","recent_news":"June 2026: Pennsylvania media reported municipalities (including Fairview Township) restricting data centers to industrial zones, and state-level debate intensified over data center tax credits and regulation.","notable_tenants":"","verified_name":"Fairview Crossroads Data Center","verified_operator":"Elysian Partners LLC","verified_owner":"Fairview Crossroads LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Met-Ed (FirstEnergy)","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (state sales and use tax relief on qualified data center equipment).","natural_hazard_zone":"unknown"},"2760":{"description":"216 Greenfield Road in Lancaster, PA is a former printing plant being redeveloped as a CoreWeave AI data center, with roughly 78 acres and about 1.1 million sq ft, initially 100 MW and scalable to 300 MW. The City identifies Chirisa as developer at this address.","verified_status":"under-construction","power_capacity_mw":300,"total_sqft":1100000,"year_online":"2027","construction_update":"Q1 2026: Project posted a construction update; Phase 1 adaptive reuse is underway with permits in process.","recent_news":"Late June 2026: Lancaster City Council tabled a proposed data-center zoning text amendment after hours of public testimony and legal questions.","notable_tenants":"CoreWeave","verified_name":"CoreWeave Lancaster Data Center – 216 Greenfield Road","verified_operator":"CoreWeave","verified_owner":"Machine Investment Group","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":78,"utility_provider":"PPL Electric Utilities","tax_incentives":"","natural_hazard_zone":""},"2761":{"description":"Planned AI data center redevelopment at 1375 Harrisburg Pike, designated Lancaster AI Hub West (LPW), part of the broader Lancaster AI Hub led by CoreWeave and partners. The site converts a former R.R. Donnelley/LSC industrial property into a hyperscale facility.","verified_status":"planned","power_capacity_mw":100,"total_sqft":1000000,"year_online":"2029","construction_update":"Construction of an approximately 1,000,000-sq-ft LPW DC building is targeted for November 2026; earlier, no development plans had been received for 1375 Harrisburg Pike.","recent_news":"March 18, 2026 coverage highlighted CoreWeave’s Lancaster project and its partnership-driven expansion approach.","notable_tenants":"CoreWeave","verified_name":"Lancaster AI Hub West (LPW) - 1375 Harrisburg Pike","verified_operator":"CoreWeave, Inc.","verified_owner":"Machine Investment Group; campus JV with Blue Owl and Chirisa Technology Parks affiliates","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":66,"utility_provider":"PPL Electric Utilities","tax_incentives":"","natural_hazard_zone":""},"2762":{"description":"A multi‑billion‑dollar AI data center campus by CoreWeave in Lancaster, Pennsylvania, spanning two sites at 216 Greenfield Road and 1375 Harrisburg Pike. The facility is being developed to support high‑density AI workloads at scale.","verified_status":"under-construction","power_capacity_mw":100,"total_sqft":0,"year_online":"unknown","construction_update":"Phase 1 at 216 Greenfield Road is underway; permitting activity is in progress.","recent_news":"Mar 2026: CoreWeave discussed leasing data centers replacing two former LSC Communications plants at 216 Greenfield Road and 1375 Harrisburg Pike.","notable_tenants":"","verified_name":"CoreWeave: Lancaster, PA Data Center","verified_operator":"CoreWeave","verified_owner":"Machine Investment Group and Chirisa Technology Parks","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Lancaster Seismic Zone; countywide moderate natural-disaster risk (score ~35%)"},"2763":{"description":"Pennsylvania Digital 1 (PAX-1) is a PowerHouse Data Centers and Pennsylvania Data Center Partners hyperscale campus in Carlisle/Middlesex Township, PA, planned for 693 acres with up to 18 two‑story buildings and 4.2M developable square feet, designed for 1.35 GW of utility power with phased delivery starting in 2027.","verified_status":"under-construction","power_capacity_mw":1350,"total_sqft":4200000,"year_online":"2027","construction_update":"Blasting at the data center site set to begin again June 3, 2026 (daily, weather permitting).","recent_news":"Middlesex Township announced site blasting would resume June 3, 2026; a 450 MW substation for PAX-1 was reported approved in mid‑June 2026; and Pennsylvania House action advanced bills to repeal the state’s data center sales‑tax incentive.","notable_tenants":"","verified_name":"Pennsylvania Digital 1 (PAX-1) Hyperscale Campus","verified_operator":"PowerHouse Data Centers","verified_owner":"Joint venture of Pennsylvania Data Center Partners and PowerHouse Data Centers; land acquired by Carlisle Development Partners LLC.","cooling_type":"unknown","tier_level":"","fiber_providers":"Connectivity to 17 metro fiber networks; carrier-neutral.","num_buildings":18,"campus_acres":693,"utility_provider":"PPL Electric Utilities","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (active program framework); repeal legislation (HB 2198) advanced in 2026.","natural_hazard_zone":"Not Federal Flood Zone at 980 Waggoners Gap Rd; low flood risk indicated."},"2764":{"description":"A hyperscale Amazon Web Services (Amazon Data Services, Inc.) data center campus at the Keystone Trade Center (former U.S. Steel Fairless Works) in Falls Township, approved for a multi‑building, ~2 million sq ft development.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":2000000,"year_online":"unknown","construction_update":"Under construction; per Falls Township (Jun 23, 2026), plans were finalized in Mar 2025 and construction is near completion. DEP invited comment in Apr 2026 on adding 280 natural-gas-fired backup generators.","recent_news":"Falls Township scheduled a June 23, 2026 town hall noting construction is near completion, and Amazon announced Bucks County Community Fund recipients in June 2026.","notable_tenants":"Amazon Web Services / Amazon Data Services, Inc.","verified_name":"Falls Township Data Center Development","verified_operator":"Amazon Data Services, Inc. (Amazon Web Services)","verified_owner":"NorthPoint Development / NP Falls Township Industrial, LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":10,"campus_acres":0,"utility_provider":"PECO Energy (Exelon)","tax_incentives":"Keystone Opportunity Zone (KOZ/KOIZ) abatements at Keystone Trade Center run Jan 1, 2021–Dec 31, 2035; Pennsylvania’s Computer Data Center Equipment Program provides sales/use tax exemption for certified data centers.","natural_hazard_zone":"Flood Zone C/X (minimal flood hazard)"},"2765":{"description":"Proposed 15‑building hyperscale data‑center campus in Hazle Township, PA, developed by NorthPoint Development, with on‑site switchyard/substation; the project remains in planning amid local approval challenges.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Not under construction; land‑development approval was denied and is under appeal. Related PPL transmission/switchyard elements are in hearings.","recent_news":"June 30, 2026: At a PUC hearing, residents opposed PPL’s $59.9 million plan; PPL would own the Tomhicken Switchyard while NorthPoint would own a nearby customer substation.","notable_tenants":"","verified_name":"Project Hazelnut Data Center Technology Campus","verified_operator":"NorthPoint Development","verified_owner":"NP Hazleton Holdings 1 LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":15,"campus_acres":1306,"utility_provider":"PPL Electric Utilities","tax_incentives":"10-year property tax break approved by Luzerne County Council.","natural_hazard_zone":"unknown"},"2766":{"description":"Lumen Lancaster 1 is an operational Lumen Technologies network colocation/data center at 1720 Hempstead Rd, Lancaster, PA, totaling about 5,000 sq ft with roughly 920 sq ft of raised floor and sharing a building with a fitness club.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5000,"year_online":"unknown","construction_update":"","recent_news":"Apr 30, 2026: Local coverage noted Lumen’s 1720 Hempstead Rd data center is about 5,000 sq ft and shares space with a fitness club, contrasting with newer hyperscale projects.","notable_tenants":"","verified_name":"Lumen Lancaster 1","verified_operator":"Lumen Technologies","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Lumen","num_buildings":1,"campus_acres":1.9,"utility_provider":"PPL Electric Utilities","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program is active statewide for certified data centers/equipment; no public record found confirming certification for this site.","natural_hazard_zone":"unknown"},"2767":{"description":"Chirisa Technology Parks acquired the former BNY Mellon site at 182 Northpointe Blvd (Freeport/South Buffalo Township, PA) for $5.5M and is redeveloping the 71,000-sf data center plus a 44,255-sf office building toward up to 100MW capacity on a 37-acre campus.","verified_status":"planned","power_capacity_mw":100,"total_sqft":115255,"year_online":"2026","construction_update":"Planned 100MW redevelopment; no public groundbreaking or milestone updates identified as of 2026-07-01.","recent_news":"","notable_tenants":"","verified_name":"Chirisa: Pittsburgh, PA Data Center (182 Northpointe Blvd)","verified_operator":"Chirisa Technology Parks (CTP)","verified_owner":"Chirisa Technology Parks (Chirisa Capital affiliate)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":37,"utility_provider":"","tax_incentives":"Pennsylvania Computer Data Center Equipment sales/use tax exemption (statewide; certification required). KOZ program exists; no site-specific certification verified.","natural_hazard_zone":""},"2768":{"description":"TECfusions Keystone Connect is an adaptive-reuse hyperscale/AI data center campus at the former Alcoa/Arconic R&D site in Upper Burrell/New Kensington, PA, planned for up to 3 GW across roughly 1,400 acres, with a multi-phase, behind-the-meter power model.","verified_status":"under-construction","power_capacity_mw":3000,"total_sqft":0,"year_online":"2026","construction_update":"Township placed a temporary pause on new data-center developments, but officials said work on the existing TECfusions building was underway.","recent_news":"TensorWave signed to deploy capacity at Keystone Connect with delivery scheduled for H1 2026; Upper Burrell advanced a draft data-center ordinance amid resident concerns.","notable_tenants":"TensorWave","verified_name":"TECfusions Keystone Connect","verified_operator":"TECfusions","verified_owner":"TECfusions","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":1395,"utility_provider":"West Penn Power (FirstEnergy)","tax_incentives":"Tax abatements and incentives available.","natural_hazard_zone":""},"2769":{"description":"Planned 187,946‑sq‑ft data center at 2100 Renaissance Blvd. (Upper Merion Township, SM‑1 district) under township planning review. The Inquirer notes it is proposed at an office building owned by Brian O’Neill on/near a remediated Superfund reuse area.","verified_status":"planned","power_capacity_mw":0,"total_sqft":187946,"year_online":"unknown","construction_update":"No construction; Planning Commission review held and an application extension accepted until Aug. 14, 2026.","recent_news":"Developers filed proposals roughly 10 days before Upper Merion’s new data center ordinance; the May 27, 2026 Planning Commission heard the 2100 Renaissance Blvd application with no approval issued.","notable_tenants":"","verified_name":"2100 Renaissance Blvd Data Center (proposal)","verified_operator":"unknown","verified_owner":"MLP Ventures (Brian O’Neill)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral (campus advertises 'Extensive Dark Fiber Network')","num_buildings":1,"campus_acres":9.11,"utility_provider":"PECO Energy","tax_incentives":"Pennsylvania Sales & Use Tax Exemption for data center equipment (enacted 2021); repeal under consideration in 2026.","natural_hazard_zone":""},"2770":{"description":"Planned hyperscale data center campus at Calpine’s York 2 Energy Center in Peach Bottom Township, York County, Pennsylvania, backed by a ~$5 billion investment from Energy Capital Partners.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Pre-construction; no reported groundbreaking as of March 2026 while zoning work and planning continue.","recent_news":"Pennsylvania House voted 197–5 in June 2026 to repeal data center sales tax incentives (HB 2198), and on May 21, 2026 Peach Bottom Township released a draft Data Center Ordinance for county review.","notable_tenants":"","verified_name":"York 2 Energy Center Data Center","verified_operator":"Energy Capital Partners (ECP) / Calpine Corporation","verified_owner":"Energy Capital Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Met-Ed (FirstEnergy)","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (sales/use tax relief on qualifying equipment); June 2026 PA House vote (197–5) to repeal incentives pending further action.","natural_hazard_zone":"Moderate overall risk; potential riverine flood exposure; low seismic; tropical storm remnants possible."},"2771":{"description":"A proposed Amazon Web Services hyperscale data center campus on Lofty Road in Kline Township, Schuylkill County, Pennsylvania, with plans revised to nine buildings of roughly 226,000 square feet each on about 350 acres.","verified_status":"planned","power_capacity_mw":0,"total_sqft":2034000,"year_online":"unknown","construction_update":"Planning/permitting stage: AWS announced it would present a formal major‑modification land development plan and set public meetings in late June 2026.","recent_news":"June 2026: AWS set public sessions to present major-modification land development plans in Kline Township and briefed county commissioners; separately, the PA House voted 197–5 to repeal the state’s data center sales tax incentives.","notable_tenants":"","verified_name":"AWS Kline Township Data Center Campus","verified_operator":"Amazon Web Services (AWS)","verified_owner":"Amazon Web Services (AWS)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":9,"campus_acres":350,"utility_provider":"PPL Electric Utilities","tax_incentives":"Pennsylvania sales tax exemption on qualifying data center equipment (program in effect), with a House vote in June 2026 to repeal; final outcome pending further action.","natural_hazard_zone":"low risk"},"2772":{"description":"Building 1 of a proposed two-building data center campus on a 250-acre former quarry site on Wagner Avenue in South Hanover Township (near Hummelstown/Harrisburg), including a planned on-site substation; the project is in permitting amid community opposition.","verified_status":"planned","power_capacity_mw":0,"total_sqft":401800,"year_online":"unknown","construction_update":"Pre-development/permitting: applications filed for data centers and special exception; no construction started.","recent_news":"Late June 2026: Developer filed applications to build two data centers and an on-site substation on a 250-acre quarry site; the zoning dispute is heading to court.","notable_tenants":"","verified_name":"Hummelstown Quarry Campus - Building 1","verified_operator":"Hanover Company","verified_owner":"HCI DP Land Acquisition LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":250,"utility_provider":"PPL Electric Utilities","tax_incentives":"Pennsylvania Computer Data Center Equipment Exemption Program (sales and use tax exemption for qualified data center equipment)","natural_hazard_zone":"Moderate flood risk"},"2773":{"description":"OU Information Technology operates an active Data Center Co-Location service that provides secure, escorted-access rack space with redundant power and cooling for university customers in Norman.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"June 2026: Norman City Council enacted a one-year moratorium on data centers to study and craft zoning regulations.","notable_tenants":"","verified_name":"Data Center Co-Location","verified_operator":"OU Information Technology (University Information Technology)","verified_owner":"University of Oklahoma","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Oklahoma tornado and flash-flood risk area; FEMA flood zone unknown"},"2774":{"description":"Enterprise data center operated by UW-IT inside the UW Tower at 4333 Brooklyn Ave NE, supporting the University’s computing infrastructure.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"Mar 9, 2026: Campus reporting highlighted UW operates two data centers in the U-District, including one inside the UW Tower.","notable_tenants":"","verified_name":"UW Tower Data Center","verified_operator":"University of Washington Information Technology (UW-IT)","verified_owner":"University of Washington","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Seattle City Light","tax_incentives":"","natural_hazard_zone":""},"2775":{"description":"A Tier III, carrier-neutral colocation facility operated by Lumen Technologies (formerly CenturyLink) inside the 1801 California Street tower in downtown Denver, offering approximately 46,542 sq ft of total space and about 3.2 MW of utility power.","verified_status":"operational","power_capacity_mw":3.2,"total_sqft":46542,"year_online":"unknown","construction_update":"","recent_news":"Denver City Council unanimously approved a 1‑year moratorium on new data centers in May 2026; Lumen announced a Multi‑Cloud Gateway and metro expansion in February 2026.","notable_tenants":"","verified_name":"Lumen Denver Data Center #1 (formerly CenturyLink Denver Data Center #1)","verified_operator":"Lumen Technologies","verified_owner":"AFL-CIO Building Investment Trust (51%) and Brookfield Properties (49%)","cooling_type":"unknown","tier_level":"Tier III","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (low flood risk)"},"2776":{"description":"An enterprise data center for the University of Colorado system located in the Anschutz Health Sciences Building (AHSB) on the Anschutz Medical Campus in Aurora, CO. The UIS facility was relocated from Denver in October 2023 to a modern data center in AHSB to enhance reliability and scalability.","verified_status":"operational","power_capacity_mw":0,"total_sqft":5500,"year_online":"2023","construction_update":"","recent_news":"","notable_tenants":"University of Colorado system (all four campuses and System Administration)","verified_name":"Anschutz Health Sciences Building (AHSB) Data Center","verified_operator":"University of Colorado – University Information Services (UIS)","verified_owner":"University of Colorado Anschutz Medical Campus","cooling_type":"chilled water","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":256,"utility_provider":"Xcel Energy","tax_incentives":"","natural_hazard_zone":"Flood and wildfire risk areas in Aurora, CO"},"2777":{"description":"Planned Hut 8 data center at 1780 Hubbard Ave., Batavia, IL: ~120,000 sq ft facility developed via Batavia DC Corp., with city-approved agreements supporting up to 50 MW utility capacity.","verified_status":"planned","power_capacity_mw":50,"total_sqft":120000,"year_online":"unknown","construction_update":"Approvals completed in 2025; as of Mar 2026, described in explanatory materials with no announced construction start.","recent_news":"Mar 20, 2026: City 5th Ward post summarized the planned 120,000-sq-ft facility at 1780 Hubbard Ave with power capped up to 50 MW and water strictly limited.","notable_tenants":"","verified_name":"Batavia Data Center Project-Hut 8","verified_operator":"Hut 8","verified_owner":"Batavia DC Corp.","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"City of Batavia (municipal electric)","tax_incentives":"","natural_hazard_zone":""},"2778":{"description":"Google Papillion Data Center Campus is a Google-operated hyperscale campus in Papillion, Nebraska, on a 275-acre site with an initial announced investment of $600 million and a build-out potential up to 2.4 million sq ft.","verified_status":"operational","power_capacity_mw":405,"total_sqft":1302804,"year_online":"2020","construction_update":"","recent_news":"No Papillion-specific update in the last six months; a separate proposed Google Nebraska data center requiring massive power was reported on Mar 13, 2026.","notable_tenants":"Google LLC (self-use)","verified_name":"Google Papillion Data Center Campus","verified_operator":"Google LLC","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":6,"campus_acres":275,"utility_provider":"","tax_incentives":"Statewide data center incentives under Nebraska programs (e.g., ImagiNE Nebraska Act and related frameworks); specific Papillion award details not itemized publicly.","natural_hazard_zone":"Site-specific FEMA flood zone not verified. Local hazards include Big Papillion Creek, West Papillion Creek, Walnut Creek, and Midland Creek."},"2779":{"description":"A small colocation and cloud services facility at 113 W Edwards St in Princeton, NC, operated by Tarheel Media (MLW & Associates, LLC), offering colocation, bare metal servers, and cloud services.","verified_status":"operational","power_capacity_mw":0,"total_sqft":778,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Tarheel Cloud Data Center","verified_operator":"Tarheel Media (MLW & Associates, LLC)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Duke Energy Progress","tax_incentives":"","natural_hazard_zone":"Moderate flood risk (non-SFHA) and hurricane-prone region"},"2780":{"description":"A small colocation data center in Sylva, North Carolina operated by BalsamWest Fibernet LLC, offering full and half rack colocation with redundant power and diversely routed connectivity.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"2018","construction_update":"","recent_news":"February 2026: Article highlights BalsamWest’s Sylva facility as a smaller data center serving local needs.","notable_tenants":"","verified_name":"BalsamWest Data Center","verified_operator":"BalsamWest Fibernet LLC","verified_owner":"Drake Enterprises (50%) and Eastern Band of Cherokee Indians (50%)","cooling_type":"unknown","tier_level":"","fiber_providers":"carrier-neutral; diversely routed connectivity","num_buildings":1,"campus_acres":1.29,"utility_provider":"Duke Energy Carolinas","tax_incentives":"","natural_hazard_zone":"Flood risk (Sylva: 38.8% of properties at risk over 30 years)"},"2781":{"description":"A planned data center near Henderson, North Carolina at Pine Meadow Trail & US-158 Business, proposed by Natelli, with rezoning approved by the Vance County Board of Commissioners in April 2026.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Rezoning approved April 2026; project remains in pre-development/permitting with no construction start announced.","recent_news":"Vance County Board of Commissioners voted 6-1 in April 2026 to approve rezoning tied to the Natelli data center near Henderson.","notable_tenants":"","verified_name":"Natelli Henderson Data Center","verified_operator":"Natelli Holdings","verified_owner":"Natelli Investments LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Duke Energy","tax_incentives":"North Carolina data centers may qualify for sales and use tax exemptions on electricity and support equipment, subject to statutory investment and other criteria.","natural_hazard_zone":"Low earthquake risk; moderate wildfire hazard potential."},"2782":{"description":"Wholesale facility at 5341 N Hanley Road in the NorthPark business park (Berkeley, St. Louis County), developed by Oppidan and operated by its Connect Data Centers division; approved by the Berkeley Plan Commission in January 2024 and reported as finishing construction in January 2026.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Finishing construction as of Jan 13, 2026.","recent_news":"Oppidan pursued a second St. Louis-area data center site while the North Hanley Road facility was reported as finishing construction (Jan 13, 2026).","notable_tenants":"","verified_name":"Connect Data Centers | 5341 N Hanley Road","verified_operator":"Connect Data Centers","verified_owner":"Oppidan Investment Company","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":20.16,"utility_provider":"Ameren Missouri","tax_incentives":"Missouri Data Center Sales Tax Exemption Program available; no facility-specific award found.","natural_hazard_zone":"Seismic exposure (USGS St. Louis hazard); FEMA flood zone not verified; Berkeley shows flood risk in mapping tools; hurricane risk low."},"2783":{"description":"World Wide Technology’s Building 60 ATC at 60 Weldon Parkway is an operational ATC data center/lab facility within WWT’s St. Louis Technology Campus, comprising a 26,000-sq-ft building with an 8,000-sq-ft data hall and supporting the broader ATC environment of 500+ racks.","verified_status":"operational","power_capacity_mw":0,"total_sqft":26000,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"World Wide Technology Building 60 ATC","verified_operator":"World Wide Technology","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"Ameren Missouri","tax_incentives":"","natural_hazard_zone":"unknown"},"2784":{"description":"Lumen Houston 3 is an operational Lumen-operated colocation data center at 2300 Lyons Avenue in Houston. Public listings confirm the site, operator, and data center use at this address.","verified_status":"operational","power_capacity_mw":0,"total_sqft":23870,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Lumen Houston 3","verified_operator":"Lumen Technologies (Lumen)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0.43,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"FEMA flood zone: unknown; flood/hurricane exposure in Houston; seismic risk very low."},"2785":{"description":"Windstream: Texarkana, TX Data Center is an operational Windstream colocation and switch facility at 507 Olive St supporting telecommunications interconnection, with a total building size of about 67,500 sq ft.","verified_status":"operational","power_capacity_mw":0,"total_sqft":67500,"year_online":"unknown","construction_update":"","recent_news":"May 20, 2026: Texarkana declared a 'Gig-Ready Community' after Kinetic’s fiber expansion to more than 37,000 locations.","notable_tenants":"Windstream","verified_name":"Windstream: Texarkana, TX Data Center","verified_operator":"Windstream (a Uniti company)","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Windstream/Uniti/Kinetic on-net fiber; carrier-neutral status not verified","num_buildings":0,"campus_acres":0,"utility_provider":"AEP SWEPCO","tax_incentives":"","natural_hazard_zone":"FEMA Zone X (outside 100-year floodplain) at city level; low seismic risk."},"2786":{"description":"Containerized modular Edge Data Center pod by Duos Edge AI at the Region 14 Education Service Center campus in Abilene, Texas, serving as a local carrier-neutral colocation and computing hub for the region.","verified_status":"operational","power_capacity_mw":0.3,"total_sqft":715,"year_online":"2026","construction_update":"","recent_news":"Mar 31, 2026: Duos Technologies reported record 2025 results, achieving 270% revenue growth; May–Jun 2026: Duos Edge AI hosted additional Texas EDC open-house events (e.g., Waco, Dumas).","notable_tenants":"Region 14 Education Service Center","verified_name":"Duos Edge AI - Abilene EDC","verified_operator":"Duos Edge AI, Inc.","verified_owner":"Duos Technologies Group, Inc.","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":0,"utility_provider":"AEP Texas","tax_incentives":"","natural_hazard_zone":"Tornado and severe storm exposure; extreme heat risk; local FEMA floodplains mapped by City of Abilene"},"2787":{"description":"Texas A&M University's West Campus Data Center (WCDC) is an enterprise‑grade facility operated by Technology Services that provides secure hosting with redundant power and cooling and 24/7 monitoring for campus IT and research/HPC workloads, including the VISION supercomputer.","verified_status":"operational","power_capacity_mw":6,"total_sqft":50000,"year_online":"2018","construction_update":"","recent_news":"June 2026: VISION, a 95‑node NVIDIA DGX H200 system housed at WCDC, debuted as the most powerful U.S. university supercomputer and was highlighted by the Texas A&M System.","notable_tenants":"Texas A&M High Performance Research Computing (HPRC); VISION supercomputer (NVIDIA DGX H200 system); Texas A&M University System workloads","verified_name":"West Campus Data Center (WCDC)","verified_operator":"Texas A&M Technology Services","verified_owner":"Texas A&M University","cooling_type":"hybrid","tier_level":"","fiber_providers":"LEARN (Lonestar Education and Research Network)","num_buildings":1,"campus_acres":0,"utility_provider":"College Station Utilities (City of College Station)","tax_incentives":"","natural_hazard_zone":"Moderate FEMA flood risk; inland hurricane/severe storm exposure"},"2788":{"description":"CyrusOne NVA8 is an operational colocation data center at 45905 Maries Road, Sterling, Virginia, totaling 154,230 sq ft with 24 MW of critical IT capacity.","verified_status":"operational","power_capacity_mw":24,"total_sqft":154230,"year_online":"2018","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"CyrusOne NVA8","verified_operator":"CyrusOne","verified_owner":"CyrusOne (parent owned by funds managed by KKR and Global Infrastructure Partners)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (statewide program; no NVA8-specific award verified).","natural_hazard_zone":"low risk"},"2789":{"description":"Amazon IAD-165 is an AWS hyperscale data center at the EDS Campus in Herndon, Virginia, that forms part of a 250+ MW multi-building campus along EDS Drive.","verified_status":"operational","power_capacity_mw":250,"total_sqft":2400000,"year_online":"unknown","construction_update":"","recent_news":"Dominion Energy reported data center power requests in Virginia now total 70,000 MW, triple its peak load, per a February 2026 SCC filing.","notable_tenants":"Amazon Web Services (AWS)","verified_name":"Amazon IAD-165","verified_operator":"Amazon Web Services (AWS)","verified_owner":"Amazon Data Services Inc. (Vadata)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":55.1,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (DCRSUT).","natural_hazard_zone":"low risk"},"2790":{"description":"CyrusOne: Vint Hill (also referenced as the Vint Hill Technology Campus) is a planned hyperscale data center campus in Fauquier County’s Vint Hill area, totaling about 870,000 sq ft and being developed by C1 Vint Hill LLC (an affiliate of CyrusOne).","verified_status":"planned","power_capacity_mw":0,"total_sqft":870000,"year_online":"unknown","construction_update":"First site plan submitted March 2024; project remains in county review with no construction start publicly reported.","recent_news":"Mar 2026: County supervisors urged ending state data center tax breaks; Jun 2026: Virginia Senate budget kept the sales tax exemption but added a new industry tax.","notable_tenants":"","verified_name":"CyrusOne: Vint Hill","verified_operator":"CyrusOne LLC","verified_owner":"KKR and Global Infrastructure Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":4,"campus_acres":0,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption on qualifying computer equipment and enabling software.","natural_hazard_zone":"low risk"},"2791":{"description":"Planned Revolve Labs AI/HPC data center in Glencoe, Minnesota (“Revolve Labs: Minnesota 2”), linked to the former Seneca Foods property and advanced through local rezoning, with the company shifting focus to AI hosting in 2025; no detailed technical spec or opening date has been published.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Local rezoning approved Nov 2024; company refocused on Glencoe and moved toward purchase/construction by Mar 27, 2025; local announcement published Nov 12, 2025. No confirmed 2026 build/commissioning date.","recent_news":"Jan 1, 2026: Glencoe City Council agenda listed a “Revolve Labs update – Jeff St. Onge, Senior Manager Operations.”","notable_tenants":"","verified_name":"Revolve Labs: Minnesota 2","verified_operator":"Revolve Labs","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Glencoe Light and Power Commission","tax_incentives":"","natural_hazard_zone":"unknown"},"2792":{"description":"Flexential Denver – Centennial Data Center is a colocation facility at 12500 East Arapahoe Road, Ste C, Centennial, CO 80112 with a 43,294 sq ft footprint and 1.6 MW capacity, serving customers in the Denver metro market.","verified_status":"operational","power_capacity_mw":1.6,"total_sqft":43294,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Flexential Denver - Centennial Data Center","verified_operator":"Flexential","verified_owner":"GI Partners","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"low risk"},"2793":{"description":"Helios is Galaxy’s AI/HPC data center campus in Afton (Dickens County), Texas, with ERCOT-approved power capacity over 1.6 GW and its first AI data hall delivered in 2026; CoreWeave is the anchor tenant under a long-term lease and 800 MW commitment.","verified_status":"operational","power_capacity_mw":1600,"total_sqft":0,"year_online":"2026","construction_update":"Phase 2 projects filed with TDLR (e.g., Helios 3 at 1003 FM 193); construction underway on first phase per trade press.","recent_news":"First AI data hall delivered at Helios in Q2 2026 and ERCOT approval added 830 MW, taking total approved capacity over 1.6 GW.","notable_tenants":"CoreWeave (15-year lease; committed to 800 MW).","verified_name":"Helios Data Center Campus","verified_operator":"Galaxy","verified_owner":"Galaxy Digital","cooling_type":"liquid","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"$20.5M PILOT abatement agreement with Dickens County.","natural_hazard_zone":"FEMA flood Zone D / undetermined flood hazard (county-level)."},"2794":{"description":"Alborz Data Center is a 40 MW bitcoin-mining facility co-located with the Astra Wind Farm in Randall County near Happy, Texas. In February 2026, Canaan acquired Cipher Mining’s 49% interest in the Alborz LLC joint venture while WindHQ retained 51%.","verified_status":"operational","power_capacity_mw":40,"total_sqft":0,"year_online":"2022","construction_update":"","recent_news":"Feb 23, 2026: Canaan acquired Cipher Mining’s 49% equity stake in the ABC Projects (including Alborz LLC); WindHQ retained 51%.","notable_tenants":"","verified_name":"Alborz Data Center","verified_operator":"Alborz LLC (JV of WindHQ LLC and Canaan Inc.)","verified_owner":"Alborz LLC (JV): WindHQ LLC 51%, Canaan Inc. 49%","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":7,"utility_provider":"Astra Wind Farm (Falvez Energy)","tax_incentives":"","natural_hazard_zone":"low risk"},"2795":{"description":"Enterprise on‑campus data center serving Fairfield University systems, operated by the University’s Information Technology Services; detailed technical specs (cooling, PUE, capacity) are not publicly disclosed.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Fairfield University Data Center","verified_operator":"Fairfield University Information Technology Services","verified_owner":"Fairfield University","cooling_type":"unknown","tier_level":"","fiber_providers":"Optimum by Altice; Frontier Communications","num_buildings":0,"campus_acres":200,"utility_provider":"United Illuminating","tax_incentives":"","natural_hazard_zone":"North Benson Road underpass near campus is vulnerable to 100-year storm‑surge flooding; exact data‑center building flood zone unverified."},"2796":{"description":"Duluth Missabe is an operational data center in Duluth, Minnesota operated by First Properties, with a reported 3.0 MW capacity and an estimated 5,974 sq ft footprint.","verified_status":"operational","power_capacity_mw":3,"total_sqft":5974,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"","verified_name":"Duluth Missabe","verified_operator":"First Properties","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":0,"utility_provider":"Minnesota Power","tax_incentives":"","natural_hazard_zone":"unknown"},"2797":{"description":"Lincoln Data Center (LDC) at 3115 N. Lincoln Blvd. in Oklahoma City is the State of Oklahoma’s primary enterprise data center operated by OMES, and it is hardened to withstand up to 200 mph winds.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"","notable_tenants":"State of Oklahoma agencies (OMES enterprise IT).","verified_name":"Lincoln Data Center (LDC)","verified_operator":"Oklahoma Office of Management and Enterprise Services (OMES)","verified_owner":"State of Oklahoma / OMES","cooling_type":"unknown","tier_level":"","fiber_providers":"OMES-managed internal cabling; no named carriers found.","num_buildings":0,"campus_acres":0,"utility_provider":"","tax_incentives":"","natural_hazard_zone":"Tornado risk; facility hardened to withstand up to 200 mph (≈EF4) winds."},"2798":{"description":"CyrusOne – Waverly DC1 is the first building planned within a hyperscale data center campus at Thayer and Clark roads in Talkington Township, Sangamon County, Illinois, about 14 miles southwest of Springfield. The project received county approval to move forward in April 2026 and targets a large multi-hundred-MW buildout on a 280-acre site.","verified_status":"planned","power_capacity_mw":634,"total_sqft":0,"year_online":"2027","construction_update":"Conditional use zoning permit approved in April 2026; project moved into next phase after land approval and will proceed to further permitting before construction.","recent_news":"On April 7, 2026, the Sangamon County Board approved the controversial CyrusOne data center project, clearing a major zoning hurdle.","notable_tenants":"","verified_name":"CyrusOne - Waverly DC1","verified_operator":"CyrusOne Data Centers","verified_owner":"CyrusOne (owned by KKR and Global Infrastructure Partners)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":280,"utility_provider":"Rural Electric Convenience Cooperative (RECC)","tax_incentives":"Eligible for Illinois Data Center Investment Tax Exemptions and Credits (state program).","natural_hazard_zone":"County hazard ratings: Floods (High), Tornadoes (High), Severe Storms (Severe)."},"2799":{"description":"The Travelers Companies, Inc. owns and operates a $200 million, 183,000-sq-ft enterprise data center on a 140-acre campus at Highway 50 and Schram Road in Sarpy County, Nebraska. Designed to Tier III standards, the facility provides 4 MW of initial critical load for the insurer’s primary data-processing operations, with land reserved for future expansion.","verified_status":"operational","power_capacity_mw":4,"total_sqft":183000,"year_online":"2015","construction_update":"","recent_news":"","notable_tenants":"The Travelers Companies, Inc. (owner-occupied)","verified_name":"Travelers Data Center","verified_operator":"The Travelers Companies, Inc.","verified_owner":"The Travelers Companies, Inc.","cooling_type":"hybrid","tier_level":"","fiber_providers":"","num_buildings":1,"campus_acres":140,"utility_provider":"Omaha Public Power District (OPPD)","tax_incentives":"Nebraska Advantage Act Tier 2 Large Data Center incentive: sales & use tax refund, 10 % investment credit, wage credit and up to 10-year personal property tax exemption.","natural_hazard_zone":"FEMA Flood Zone B & X – moderate risk"},"2800":{"description":"Project Labrador is a planned hyperscale data center campus at 1401 Greene Road in Lancaster, Texas, spanning about 419 acres with five two‑story data center buildings proposed under WHL Dallas 45 LLC’s development agreement.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"City of Lancaster development agreement (Project Labrador, M24-49) dated Aug 11, 2025; no public record of construction start as of 2026-07.","recent_news":"","notable_tenants":"","verified_name":"Project Labrador","verified_operator":"","verified_owner":"WHL Dallas 45 LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":419,"utility_provider":"","tax_incentives":"","natural_hazard_zone":""},"2801":{"description":"Project Orange is a planned hyperscale data center campus at 201 Sunrise Road in Lancaster, Texas, led by WHL Dallas 45 LLC and linked to Prime45 Development, spanning roughly 116 acres with seven 36MW buildings totaling about 1.59 million sq ft.","verified_status":"planned","power_capacity_mw":252,"total_sqft":1586410,"year_online":"unknown","construction_update":"Aug 11, 2025: Lancaster City Council actions included a development agreement with site owner WHL Dallas 45 LLC; no verified construction-start or completion filings found since.","recent_news":"","notable_tenants":"","verified_name":"Project Orange","verified_operator":"WHL Dallas 45 LLC / Prime45 Development","verified_owner":"WHL Dallas 45 LLC","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":7,"campus_acres":116,"utility_provider":"Oncor","tax_incentives":"","natural_hazard_zone":"Flood Zone B and X (moderate/minimal flood hazard)"},"2802":{"description":"Renovation of 4,568 sq ft on the first floor of UTEP’s College of Education Building at 500 W University Avenue to create a campus data center, budgeted at $3 million with construction running through July 2026.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":4568,"year_online":"2026","construction_update":"TDLR status shows 'Review Complete'; Work Type: Renovation/Alteration; Estimated start 7/31/2025 and completion 7/31/2026.","recent_news":"","notable_tenants":"","verified_name":"Education Building - Data Center (College of Education Building)","verified_operator":"The University of Texas at El Paso (UTEP)","verified_owner":"The University of Texas at El Paso (UTEP)","cooling_type":"unknown","tier_level":"","fiber_providers":"unknown","num_buildings":1,"campus_acres":367,"utility_provider":"El Paso Electric","tax_incentives":"","natural_hazard_zone":"Address-specific FEMA flood zone unknown; campus hazards include heat waves, severe thunderstorms/lightning, flash flooding/floods, high winds, possible tornadoes, winter weather, and earthquakes."},"2803":{"description":"PowerHouse Arcola is an under-construction wholesale hyperscale data center campus in Loudoun County, Virginia, planned as two two-story buildings totaling about 615,000 sq ft and designed for up to 120 MW of utility capacity. In January 2026, a long-term lease with an unnamed hyperscaler was announced.","verified_status":"under-construction","power_capacity_mw":120,"total_sqft":615000,"year_online":"2027","construction_update":"Under construction; company materials referenced construction start in April 2024 and targeted 2026 delivery milestones.","recent_news":"Jan 2026: Long-term hyperscale lease executed at PowerHouse Arcola; tenant not named.","notable_tenants":"Unnamed hyperscaler (long-term lease announced Jan 2026).","verified_name":"PowerHouse Arcola","verified_operator":"PowerHouse Data Centers","verified_owner":"American Real Estate Partners (AREP)","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":30.39,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption.","natural_hazard_zone":"low risk"},"2804":{"description":"A proposed two‑building hyperscale data center campus on approximately 87 acres at 20961 Gulick Mill Road (Holyfield Farm) south of Leesburg in Loudoun County, Virginia. The owners filed an April 2026 pre‑meeting/rezoning application seeking data center use and an on‑site substation.","verified_status":"planned","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"Pre‑meeting/rezoning application filed (April 2026); no construction reported.","recent_news":"April 2026: Pre‑meeting/rezoning application filed to develop a two‑building data center campus on ~87 acres at 20961 Gulick Mill Road, including an on‑site substation.","notable_tenants":"","verified_name":"Holyfield Farm Data Center Campus","verified_operator":"","verified_owner":"Farkas family","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":2,"campus_acres":87,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (state sales/use tax exemption for qualifying data centers). Loudoun County computer equipment in a data center tax rate: $4.15 per $100 assessed value.","natural_hazard_zone":"low risk"},"2805":{"description":"Proposed hyperscale data center campus on roughly 130 acres replacing The Regency neighborhood near Waxpool Rd and Ashburn Village Blvd in Ashburn, VA; reports cite a potential 432 MW build, but it remains only a proposal with no construction.","verified_status":"planned","power_capacity_mw":432,"total_sqft":0,"year_online":"unknown","construction_update":"No construction; proposal stage/pre-application.","recent_news":"June 2, 2026 coverage reported ongoing debate among The Regency homeowners over selling for a data center redevelopment.","notable_tenants":"","verified_name":"Regency DC Campus Ashburn","verified_operator":"unknown","verified_owner":"Regency at Ashburn homeowners; Community Works, LLC (HOA-affiliated negotiation/entitlement vehicle).","cooling_type":"unknown","tier_level":"","fiber_providers":"","num_buildings":0,"campus_acres":130,"utility_provider":"Dominion Energy","tax_incentives":"","natural_hazard_zone":"low risk"},"2806":{"description":"Meta’s hyperscale, owner‑operated data center campus at White Oak Technology Park in Sandston, Virginia has five buildings online and is expanding with “Project Tropical” on an additional 475 acres south of Portugee Road.","verified_status":"operational","power_capacity_mw":0,"total_sqft":2500000,"year_online":"2020","construction_update":"Project Tropical Phase 2 Plan of Development application was listed in November 2025; Phase 1 (site logistics and Dominion substation improvements) was approved in December 2024.","recent_news":"Meta announced its 2026 Data Center Community Action Grants recipients for Henrico.","notable_tenants":"Meta (sole occupant; owner‑operated)","verified_name":"Meta Henrico Data Center","verified_operator":"Meta Platforms, Inc.","verified_owner":"Meta Platforms, Inc. (via Scout Development LLC / HD CVA LLC)","cooling_type":"evaporative","tier_level":"","fiber_providers":"","num_buildings":5,"campus_acres":605,"utility_provider":"Dominion Energy Virginia","tax_incentives":"Henrico County data center business personal property tax rate reduced to $0.40 per $100 of assessed value (2017).","natural_hazard_zone":"Low flood risk at existing campus; portions of the expansion site include FEMA 100‑year floodplain."},"2807":{"description":"CloudHQ LC1 is a carrier‑neutral wholesale hyperscale data center at 21955 Loudoun County Parkway in Ashburn, Virginia, consisting of two buildings (LC1A and LC1B). The facility delivers 144 MW of critical IT power across roughly 998,400 sq ft.","verified_status":"operational","power_capacity_mw":144,"total_sqft":998400,"year_online":"unknown","construction_update":"","recent_news":"CloudHQ closed an approximately $1.4 billion inaugural ABS issuance in May 2026, led by Guggenheim; rating agency materials describe the securitization of two adjacent turnkey hyperscale data centers in Ashburn.","notable_tenants":"","verified_name":"CloudHQ LC1","verified_operator":"CloudHQ","verified_owner":"Iskandar Ventures LLC","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":2,"campus_acres":61.07,"utility_provider":"","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (DCRSUT) on qualifying equipment and software; Loudoun County 6% sales and use tax exemption on servers, generators, chillers, and related equipment.","natural_hazard_zone":""},"2808":{"description":"CloudHQ LC2 is an operational, carrier‑neutral wholesale data center at 44621 Waxpool Rd in Ashburn, operated by CloudHQ; the two‑story facility offers about 88 MW of critical power and totals roughly 493,504 sq ft.","verified_status":"operational","power_capacity_mw":88,"total_sqft":493504,"year_online":"unknown","construction_update":"","recent_news":"April 2026: CloudHQ sought over $1 billion through its first asset-backed securitization that includes Virginia data centers (including LC2).","notable_tenants":"","verified_name":"CloudHQ LC2","verified_operator":"CloudHQ","verified_owner":"Kaveh Ventures LLC","cooling_type":"evaporative","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":1,"campus_acres":16,"utility_provider":"Dominion Energy","tax_incentives":"Virginia Data Center Retail Sales & Use Tax Exemption (for qualifying equipment purchases).","natural_hazard_zone":"FEMA Flood Zone B/X (moderate flood hazard)"},"2809":{"description":"A Cogent-operated edge data center at 7941 Giles Street, Las Vegas, NV 89123, listed by Cogent as a CDC site and connected to Cogent’s network.","verified_status":"operational","power_capacity_mw":0,"total_sqft":0,"year_online":"unknown","construction_update":"","recent_news":"June 29, 2026: Cogent Communications closed the sale of 10 data center facilities for $225 million.","notable_tenants":"","verified_name":"Cogent Edge Data Center - Las Vegas","verified_operator":"Cogent Communications","verified_owner":"","cooling_type":"unknown","tier_level":"","fiber_providers":"Cogent Communications","num_buildings":0,"campus_acres":0,"utility_provider":"NV Energy","tax_incentives":"Nevada data center abatements available: sales/use tax reduced to 2% and up to 75% personal property tax abatement for 10 or 20 years (subject to GOED approval and eligibility).","natural_hazard_zone":"unknown"},"2810":{"description":"QTS Phoenix 3 DC14 is one of 16 planned data center buildings on QTS’s Phoenix 3 campus in Glendale/Litchfield Park, Arizona, a ~3 million sq ft wholesale campus designed for large-scale deployments.","verified_status":"under-construction","power_capacity_mw":0,"total_sqft":180000,"year_online":"unknown","construction_update":"DC14 structural topping-out achieved (reported by Layton Construction); interior/build-out scopes continue with active permits into 2026.","recent_news":"Mar 2026: QTS to secure a $510M ABS refinancing package backed by three data center properties in Phoenix and Richmond, VA.","notable_tenants":"","verified_name":"QTS Phoenix 3 DC14 (PHX 3 DC14)","verified_operator":"QTS Data Centers","verified_owner":"Blackstone (via Blackstone Infrastructure Partners and BREIT)","cooling_type":"air-cooled","tier_level":"","fiber_providers":"carrier-neutral","num_buildings":16,"campus_acres":375,"utility_provider":"","tax_incentives":"Arizona Computer Data Center Program: Transaction Privilege Tax (TPT) and Use Tax exemptions on qualifying data center equipment purchases (subject to program certification).","natural_hazard_zone":"FEMA Zone X (low flood risk); low seismic; no hurricane/tornado risk (Maricopa County assessment)."}} \ No newline at end of file diff --git a/typescript-recipes/parallel-datacenter-map/public/file.svg b/typescript-recipes/parallel-datacenter-map/public/file.svg new file mode 100644 index 0000000..004145c --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/public/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/typescript-recipes/parallel-datacenter-map/public/globe.svg b/typescript-recipes/parallel-datacenter-map/public/globe.svg new file mode 100644 index 0000000..567f17b --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/public/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/typescript-recipes/parallel-datacenter-map/public/next.svg b/typescript-recipes/parallel-datacenter-map/public/next.svg new file mode 100644 index 0000000..5174b28 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/public/next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/typescript-recipes/parallel-datacenter-map/public/vercel.svg b/typescript-recipes/parallel-datacenter-map/public/vercel.svg new file mode 100644 index 0000000..7705396 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/public/vercel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/typescript-recipes/parallel-datacenter-map/public/window.svg b/typescript-recipes/parallel-datacenter-map/public/window.svg new file mode 100644 index 0000000..b2b2a44 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/public/window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/typescript-recipes/parallel-datacenter-map/scripts/add-new-facilities.ts b/typescript-recipes/parallel-datacenter-map/scripts/add-new-facilities.ts new file mode 100644 index 0000000..90c7b4d --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/add-new-facilities.ts @@ -0,0 +1,111 @@ +/** + * Adds new facilities from an enriched CSV to the existing dataset. + * Only adds rows that don't already exist (by lat/lng coordinate match). + * Preserves all existing data untouched. + * + * Usage: npx tsx scripts/add-new-facilities.ts /path/to/enriched.csv + */ + +import * as fs from "fs"; +import Papa from "papaparse"; + +const csvPath = process.argv[2]; +if (!csvPath) { console.error("Usage: npx tsx scripts/add-new-facilities.ts /path/to/enriched.csv"); process.exit(1); } + +// Load existing data +const dcPath = "./public/data/datacenters.json"; +const compactPath = "./public/data/enrichments-compact.json"; + +const existing: Record[] = JSON.parse(fs.readFileSync(dcPath, "utf-8")); +const compact: Record> = fs.existsSync(compactPath) + ? JSON.parse(fs.readFileSync(compactPath, "utf-8")) + : {}; + +console.log(`Existing: ${existing.length} facilities, ${Object.keys(compact).length} enrichments`); + +// Build index of existing coords +const existingCoords = new Set(); +for (const dc of existing) { + existingCoords.add(`${(dc as { lat: number }).lat.toFixed(6)},${(dc as { lng: number }).lng.toFixed(6)}`); +} + +// Parse new CSV +const raw = fs.readFileSync(csvPath, "utf-8"); +const { data } = Papa.parse(raw, { header: true, skipEmptyLines: true }); +const rows = data as Record[]; + +console.log(`CSV: ${rows.length} rows`); + +let added = 0; +let skipped = 0; + +for (const row of rows) { + const lat = parseFloat(row.latitude) || 0; + const lng = parseFloat(row.longitude) || 0; + if (lat === 0 && lng === 0) { skipped++; continue; } + + const coordKey = `${lat.toFixed(6)},${lng.toFixed(6)}`; + if (existingCoords.has(coordKey)) { skipped++; continue; } + + // Filter out unknown/empty status + const status = (row.verified_status || row.status || "").trim(); + if (!status || status === "unknown") { skipped++; continue; } + + existingCoords.add(coordKey); // prevent dupes within new data + + const newIndex = existing.length; + + // Add to datacenters.json (base fields only) + const dc = { + name: (row.verified_name || row.name || "").trim(), + operator: (row.verified_operator || row.operator_company || "").trim(), + owner: (row.verified_owner || row.owner_company || "").trim(), + address: (row.address || "").trim(), + city: (row.city || "").trim(), + state: (row.state || "").trim(), + zip: (row.zip_code || "").trim(), + lat, + lng, + yearOnline: (row.year_online || "unknown").trim(), + powerMw: Math.min(parseFloat(row.power_capacity_mw) || 0, 5000), + sqft: parseFloat(row.total_sqft) || 0, + type: (row.facility_type || "unknown").trim(), + status, + region: (row._shard || "").trim(), + }; + existing.push(dc); + + // Add to enrichments-compact.json + compact[String(newIndex)] = { + description: (row.description || "").trim(), + verified_status: status, + power_capacity_mw: parseFloat(row.power_capacity_mw) || 0, + total_sqft: parseFloat(row.total_sqft) || 0, + year_online: (row.year_online || "").trim(), + construction_update: (row.construction_update || "").trim(), + recent_news: (row.recent_news || "").trim(), + notable_tenants: (row.notable_tenants || "").trim(), + verified_name: (row.verified_name || "").trim(), + verified_operator: (row.verified_operator || "").trim(), + verified_owner: (row.verified_owner || "").trim(), + cooling_type: (row.cooling_type || "").trim(), + tier_level: (row.tier_level || "").trim(), + fiber_providers: (row.fiber_providers || "").trim(), + num_buildings: parseFloat(row.num_buildings) || 0, + campus_acres: parseFloat(row.campus_acres) || 0, + utility_provider: (row.utility_provider || "").trim(), + tax_incentives: (row.tax_incentives || "").trim(), + natural_hazard_zone: (row.natural_hazard_zone || "").trim(), + }; + + added++; +} + +// Save +fs.writeFileSync(dcPath, JSON.stringify(existing)); +fs.writeFileSync(compactPath, JSON.stringify(compact, null, 0)); + +console.log(`\nAdded: ${added} new facilities`); +console.log(`Skipped: ${skipped} (existing, missing coords, or unknown status)`); +console.log(`Total now: ${existing.length} facilities, ${Object.keys(compact).length} enrichments`); +console.log(`\nSaved to ${dcPath} and ${compactPath}`); diff --git a/typescript-recipes/parallel-datacenter-map/scripts/backfill-basis.ts b/typescript-recipes/parallel-datacenter-map/scripts/backfill-basis.ts new file mode 100644 index 0000000..2a5450e --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/backfill-basis.ts @@ -0,0 +1,126 @@ +/** + * Backfills the missing `basis` (citations + reasoning) on facility enrichment + * blob files that were imported with data but no basis. + * + * Each blob file (enrichments/{index}.json) already stores the `runId` of the + * Task API enrichment run that produced it. Those runs are still retrievable, + * so we re-fetch /result and write output.basis back onto the file — no new + * Task API runs, no fabricated data. + * + * Usage: npx tsx scripts/backfill-basis.ts [--dry] + */ + +import { list, put } from "@vercel/blob"; +import * as fs from "fs"; + +const BASE_URL = "https://api.parallel.ai"; + +function env(key: string): string { + const line = fs.readFileSync(".env.local", "utf8").split("\n").find((l) => l.startsWith(key + "=")); + return line ? line.slice(key.length + 1).replace(/^["']|["']$/g, "").trim() : ""; +} + +const API_KEY = process.env.PARALLEL_API_KEY || env("PARALLEL_API_KEY"); +const TOKEN = process.env.BLOB_READ_WRITE_TOKEN || env("BLOB_READ_WRITE_TOKEN"); +const DRY = process.argv.includes("--dry"); + +interface BlobEntry { + enrichment?: Record; + basis?: unknown[]; + runId?: string; + [k: string]: unknown; +} + +async function fetchResultBasis(runId: string): Promise { + try { + const statusRes = await fetch(`${BASE_URL}/v1/tasks/runs/${runId}`, { headers: { "x-api-key": API_KEY } }); + if (!statusRes.ok) return null; + const status = await statusRes.json(); + if (status.status !== "completed") return null; + const res = await fetch(`${BASE_URL}/v1/tasks/runs/${runId}/result`, { headers: { "x-api-key": API_KEY } }); + if (!res.ok) return null; + const data = await res.json(); + const basis = data.output?.basis; + return Array.isArray(basis) ? basis : null; + } catch { + return null; + } +} + +async function mapWithConcurrency(items: T[], limit: number, fn: (item: T, i: number) => Promise): Promise { + const results: R[] = new Array(items.length); + let next = 0; + async function worker() { + while (next < items.length) { + const i = next++; + results[i] = await fn(items[i], i); + } + } + await Promise.all(Array.from({ length: Math.min(limit, items.length) }, worker)); + return results; +} + +async function main() { + if (!API_KEY || !TOKEN) { console.error("Missing PARALLEL_API_KEY or BLOB_READ_WRITE_TOKEN"); process.exit(1); } + + // 1. List every enrichment blob and its downloadUrl + console.log("Listing enrichment blobs…"); + const files: { index: number; pathname: string; downloadUrl: string }[] = []; + let cursor: string | undefined; + do { + const r = await list({ prefix: "enrichments/", token: TOKEN, cursor, limit: 1000 }); + for (const b of r.blobs) { + const m = b.pathname.match(/enrichments\/(\d+)\.json$/); + if (m) files.push({ index: Number(m[1]), pathname: b.pathname, downloadUrl: b.downloadUrl }); + } + cursor = r.cursor; + } while (cursor); + files.sort((a, b) => a.index - b.index); + console.log(`Found ${files.length} enrichment blobs.`); + + // 2. Find files with empty basis but a runId + console.log("Scanning for empty-basis files…"); + const scan = await mapWithConcurrency(files, 24, async (f) => { + try { + const res = await fetch(f.downloadUrl, { headers: { Authorization: `Bearer ${TOKEN}` } }); + if (!res.ok) return null; + const entry: BlobEntry = await res.json(); + const hasBasis = Array.isArray(entry.basis) && entry.basis.length > 0; + return { ...f, entry, hasBasis, runId: entry.runId }; + } catch { + return null; + } + }); + + const targets = scan.filter((s): s is NonNullable => !!s && !s.hasBasis && !!s.runId); + const noRun = scan.filter((s) => s && !s.hasBasis && !s.runId).length; + console.log(`Empty basis: ${scan.filter((s) => s && !s.hasBasis).length} (with runId: ${targets.length}, without: ${noRun})`); + + if (DRY) { + console.log("Dry run — sample targets:", targets.slice(0, 5).map((t) => ({ index: t.index, runId: t.runId }))); + return; + } + + // 3. Recover basis from each runId and re-upload + let fixed = 0, failed = 0, empty = 0; + await mapWithConcurrency(targets, 12, async (t) => { + const basis = await fetchResultBasis(t.runId!); + if (!basis) { failed++; return; } + if (basis.length === 0) { empty++; return; } + const updated = { ...t.entry, basis, basisBackfilledAt: new Date().toISOString() }; + try { + await put(t.pathname, JSON.stringify(updated), { + access: "private", allowOverwrite: true, contentType: "application/json", token: TOKEN, + }); + fixed++; + if (fixed % 50 === 0) console.log(` …${fixed} fixed`); + } catch (e) { + failed++; + console.error(` put failed idx ${t.index}:`, (e as Error).message); + } + }); + + console.log(`\nDone. Fixed: ${fixed}, run had empty basis: ${empty}, failed: ${failed}`); +} + +main().catch((e) => { console.error(e); process.exit(1); }); diff --git a/typescript-recipes/parallel-datacenter-map/scripts/build_datacenters_iterative.py b/typescript-recipes/parallel-datacenter-map/scripts/build_datacenters_iterative.py new file mode 100644 index 0000000..a486e08 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/build_datacenters_iterative.py @@ -0,0 +1,237 @@ +#!/usr/bin/env python3 +""" +Build a US datacenter list with Parallel ultra2x — iterative / paginated. + +THE IDEA (why this works) +───────────────────────── +A single broad "find all US datacenters" query plateaus fast (~50): the model +recalls the facilities it has the most training-signal about (hyperscaler +campuses) and can't reach the long tail of ~1,800 colocation/enterprise/edge +operators. Two techniques fix that: + + 1. SHARD by geography. Scope every query to ONE state so enumeration + (reading directories) is the natural move instead of dumping a global + top-of-mind list. One dense metro alone (Ashburn) goes 13 → ~90 this way. + + 2. PAGINATE via interactions. After the first pass for a state, keep asking + "find MORE net-new" while passing `previous_interaction_id` — the model + carries its OWN context of what it already returned in that thread, so we + never paste a list of known facilities into the prompt. Loop until a page + stops adding new results ("loop until dry"). + +Everything is resumable: results checkpoint after each shard, and every run's +`run_id` / `interaction_id` / `previous_interaction_id` is logged so work that +completed server-side is always recoverable (the runs execute on Parallel's +servers regardless of this process staying alive). + +USAGE +───── + export PARALLEL_API_KEY=... + python build_datacenters_iterative.py # all states, until dry + python build_datacenters_iterative.py --states "Texas,Ohio" + python build_datacenters_iterative.py --max-pages 3 --min-new 5 --workers 8 + +OUTPUT +────── + datacenters.json deduped list (each record + _shard + _trun provenance) + datacenters.runs.jsonl run manifest: {run_id, interaction_id, previous_interaction_id, state, page} +Re-run any time to go deeper; states that have gone dry are skipped. +""" + +import argparse +import json +import os +import re +import sys +import threading +from concurrent.futures import ThreadPoolExecutor, as_completed + +from parallel import Parallel + +# ── Shards: state is the universal unit (covers all US geography) ────────────── +STATES = [ + "Alabama", "Alaska", "Arizona", "Arkansas", "California", "Colorado", "Connecticut", + "Delaware", "Florida", "Georgia", "Hawaii", "Idaho", "Illinois", "Indiana", "Iowa", + "Kansas", "Kentucky", "Louisiana", "Maine", "Maryland", "Massachusetts", "Michigan", + "Minnesota", "Mississippi", "Missouri", "Montana", "Nebraska", "Nevada", "New Hampshire", + "New Jersey", "New Mexico", "New York", "North Carolina", "North Dakota", "Ohio", + "Oklahoma", "Oregon", "Pennsylvania", "Rhode Island", "South Carolina", "South Dakota", + "Tennessee", "Texas", "Utah", "Vermont", "Virginia", "Washington", "West Virginia", + "Wisconsin", "Wyoming", "District of Columbia", +] + +# ── Output schema: everything needed to map & attribute a facility ───────────── +ITEM = { + "type": "object", + "properties": { + "name": {"type": "string", "description": "Facility name."}, + "operator_company": {"type": "string", "description": "Company that operates the facility."}, + "owner_company": {"type": "string", "description": "Owner if different; else same as operator."}, + "address": {"type": "string", "description": "Full street address if known."}, + "city": {"type": "string"}, + "state": {"type": "string", "description": "US state, 2-letter abbreviation."}, + "zip_code": {"type": "string"}, + "latitude": {"type": "number", "description": "Decimal degrees; null if unknown."}, + "longitude": {"type": "number", "description": "Decimal degrees; null if unknown."}, + "year_online": {"type": "string", "description": "Year online (YYYY) or 'unknown'."}, + "power_capacity_mw": {"type": "number", "description": "Critical IT power MW; null if unknown."}, + "total_sqft": {"type": "number", "description": "Total sqft; null if unknown."}, + "facility_type": {"type": "string", "description": "colocation, hyperscale, enterprise, edge, telecom, wholesale, crypto."}, + "status": {"type": "string", "description": "operational, under-construction, planned, unknown."}, + "source_url": {"type": "string", "description": "URL supporting existence/location."}, + }, + "required": ["name", "operator_company", "city", "state"], + "additionalProperties": False, +} +OUTPUT_SCHEMA = { + "type": "json", + "json_schema": { + "type": "object", + "properties": {"datacenters": {"type": "array", "items": ITEM}}, + "required": ["datacenters"], + "additionalProperties": False, + }, +} + + +def first_prompt(state): + """Page 1 for a state: exhaustive, directory-anchored, long-tail-aware.""" + return ( + f"Enumerate EVERY physical data center facility located in the U.S. state of {state}. " + f"Be exhaustive across the whole state — all cities and towns, including secondary and " + f"smaller markets, not just the largest hub.\n\n" + f"Go FAR beyond the well-known hyperscaler campuses (AWS, Microsoft, Google, Meta). Most " + f"facilities are COLOCATION, wholesale, enterprise, telecom/network, and edge, run by a " + f"long tail of operators (Equinix, Digital Realty, CoreSite, Cyxtera, Iron Mountain, QTS, " + f"Sabey, Stack, Vantage, Aligned, Flexential, DataBank, Cologix, EdgeConneX, H5, and many " + f"smaller regional providers). Consult facility directories (datacentermap.com, " + f"cloudscene.com) and operator site lists to enumerate them.\n\n" + f"For each facility return name, operator, owner, full street address, city, state, zip, " + f"latitude/longitude (the specific building), year online, power MW, sqft, facility type, " + f"and status — with a source_url. PRECISION REQUIRED: each must be a real, individually " + f"verifiable, physically distinct building; never fabricate; use null/'unknown' for " + f"anything you cannot verify." + ) + + +def next_prompt(state): + """Pages 2..N: the model already has its prior results via the interaction chain.""" + return ( + f"Continue. Return MORE real data center facilities in the U.S. state of {state} that you " + f"have NOT already returned earlier in this conversation — net-new only, no repeats, no " + f"fabrication. Push into cities, towns, and operators you have not yet covered (colocation, " + f"enterprise, telecom, wholesale, edge, crypto). Keep the same fields and precision rules; " + f"include a real source_url." + ) + + +# ── Dedupe: address is the most reliable key; the model fills 0.0 for unknown geo ── +def norm(s): + return re.sub(r"[^a-z0-9]+", "", (s or "").lower()) + + +def dedupe_key(dc): + addr = norm(dc.get("address")) + if addr: + return f"addr:{addr}|{norm(dc.get('city'))}|{norm(dc.get('state'))}" + lat, lng = dc.get("latitude"), dc.get("longitude") + if isinstance(lat, (int, float)) and isinstance(lng, (int, float)) and (lat, lng) != (0, 0): + return f"geo:{round(lat, 3)},{round(lng, 3)}" + return f"name:{norm(dc.get('operator_company'))}|{norm(dc.get('city'))}|{norm(dc.get('state'))}|{norm(dc.get('name'))}" + + +_lock = threading.Lock() + + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument("--states", default=None, help="Comma-separated states; default = all 51.") + ap.add_argument("--processor", default="ultra2x", help="ultra2x | ultra2x-fast | ultra4x ...") + ap.add_argument("--max-pages", type=int, default=6, help="Max pagination pages per state.") + ap.add_argument("--min-new", type=int, default=3, help="Stop a state when a page adds fewer than this.") + ap.add_argument("--workers", type=int, default=8, help="States processed concurrently.") + ap.add_argument("--timeout", type=int, default=3600) + ap.add_argument("--out", default="datacenters.json") + args = ap.parse_args() + if not os.environ.get("PARALLEL_API_KEY"): + sys.exit("Set PARALLEL_API_KEY") + + client = Parallel(api_key=os.environ["PARALLEL_API_KEY"]) + manifest = args.out.rsplit(".", 1)[0] + ".runs.jsonl" + targets = [s.strip() for s in args.states.split(",")] if args.states else STATES + + # Resume: load prior results, skip states already done in this file. + all_dc, done = [], set() + if os.path.exists(args.out): + all_dc = json.load(open(args.out)).get("datacenters", []) + done = {dc.get("_shard") for dc in all_dc} + print(f"[resume] loaded {len(all_dc)} facilities; {len(done)} states already done.", file=sys.stderr) + seen = {dedupe_key(dc) for dc in all_dc} + + def log_run(run_id, iid, prev, state, page): + with _lock: + with open(manifest, "a") as f: + f.write(json.dumps({"run_id": run_id, "interaction_id": iid, + "previous_interaction_id": prev, "state": state, "page": page}) + "\n") + + def checkpoint(): + with _lock: + json.dump({"count": len(all_dc), "datacenters": all_dc}, open(args.out, "w"), indent=2) + + def one_call(state, prev_iid, page): + kwargs = {"input": first_prompt(state) if page == 1 else next_prompt(state), + "processor": args.processor, "task_spec": {"output_schema": OUTPUT_SCHEMA}} + if prev_iid: + kwargs["previous_interaction_id"] = prev_iid + run = client.task_run.create(**kwargs) + log_run(run.run_id, run.interaction_id, prev_iid, state, page) # persist BEFORE blocking + res = client.task_run.result(run.run_id, api_timeout=args.timeout) + content = res.output.content + if isinstance(content, str): + content = json.loads(content) + items = (content or {}).get("datacenters", []) if isinstance(content, dict) else [] + return items, run.run_id, run.interaction_id + + def process_state(state): + """Page 1, then paginate via interaction chaining until a page goes dry.""" + prev_iid, total_new = None, 0 + for page in range(1, args.max_pages + 1): + try: + items, run_id, iid = one_call(state, prev_iid, page) + except Exception as e: + print(f" [{state} p{page}] error: {e}", file=sys.stderr) + break + prev_iid = iid # extend the chain + new = 0 + with _lock: + for dc in items: + k = dedupe_key(dc) + if k in seen: + continue + seen.add(k) + dc["_shard"], dc["_trun"] = state, run_id + all_dc.append(dc) + new += 1 + total_new += new + print(f" [{state} p{page}] +{new} net-new (state total this run: {total_new})", file=sys.stderr) + checkpoint() + if new < args.min_new: # loop-until-dry + break + return state, total_new + + todo = [s for s in targets if s not in done] + print(f"processing {len(todo)} states ({args.workers}-wide, {args.processor})", file=sys.stderr) + with ThreadPoolExecutor(max_workers=args.workers) as ex: + for fut in as_completed([ex.submit(process_state, s) for s in todo]): + try: + s, n = fut.result() + print(f"[done] {s}: +{n} (grand total {len(all_dc)})", file=sys.stderr) + except Exception as e: + print(f"[error] {e}", file=sys.stderr) + + checkpoint() + print(f"\nDONE. {len(all_dc)} unique facilities -> {args.out}", file=sys.stderr) + + +if __name__ == "__main__": + main() diff --git a/typescript-recipes/parallel-datacenter-map/scripts/check-events.ts b/typescript-recipes/parallel-datacenter-map/scripts/check-events.ts new file mode 100644 index 0000000..3df5a55 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/check-events.ts @@ -0,0 +1,52 @@ +/** + * Check for events from all active monitors. + * Usage: npx tsx scripts/check-events.ts + */ + +import * as fs from "fs"; + +const API_KEY = process.env.PARALLEL_API_KEY; +const BASE_URL = "https://api.parallel.ai"; + +async function main() { + const monitorsPath = "./src/data/monitors.json"; + if (!fs.existsSync(monitorsPath)) { + console.error("No monitors.json found. Run setup-monitors.ts first."); + process.exit(1); + } + + const monitors = JSON.parse(fs.readFileSync(monitorsPath, "utf-8")); + + for (const [defId, info] of Object.entries(monitors) as [string, { monitorId: string; name: string }][]) { + console.log(`\n--- ${info.name} (${info.monitorId}) ---`); + + const res = await fetch( + `${BASE_URL}/v1/monitors/${info.monitorId}/events`, + { headers: { "x-api-key": API_KEY } } + ); + + if (!res.ok) { + console.error(` Error: ${res.status} ${await res.text()}`); + continue; + } + + const data = await res.json(); + const events = data.events || []; + + if (events.length === 0) { + console.log(" No events yet."); + } else { + for (const evt of events) { + console.log(` [${evt.type}] ${evt.event_id}`); + if (evt.output?.content) { + const content = typeof evt.output.content === "string" + ? evt.output.content.slice(0, 200) + : JSON.stringify(evt.output.content).slice(0, 200); + console.log(` ${content}...`); + } + } + } + } +} + +main().catch(console.error); diff --git a/typescript-recipes/parallel-datacenter-map/scripts/classify-ai.ts b/typescript-recipes/parallel-datacenter-map/scripts/classify-ai.ts new file mode 100644 index 0000000..0907f86 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/classify-ai.ts @@ -0,0 +1,207 @@ +#!/usr/bin/env npx tsx +/** + * AI datacenter classification: which facilities are AI datacenters, and what + * are their environmental/community impact classifications (water, grid, + * community) — à la brockovichdatacenter.com, scoped to AI facilities. + * + * Candidates: facilities with AI/GPU/hyperscale signals in existing enrichment, + * ≥100 MW power, or AI-heavy operators/owners (~700 of 2,811). + * + * Usage: + * PARALLEL_API_KEY=xxx npx tsx scripts/classify-ai.ts kickoff # start task group + * PARALLEL_API_KEY=xxx npx tsx scripts/classify-ai.ts collect # poll + save results + * + * Both steps are idempotent and resumable. Run IDs are saved at kickoff to + * src/data/ai-classification-runs.json; results land in + * public/data/ai-classifications.json keyed by facility index. + */ + +import * as fs from "fs"; + +const API_KEY = process.env.PARALLEL_API_KEY; +if (!API_KEY) { console.error("Set PARALLEL_API_KEY env var."); process.exit(1); } + +const BASE_URL = "https://api.parallel.ai"; +const RUNS_PATH = "./src/data/ai-classification-runs.json"; +const OUT_PATH = "./public/data/ai-classifications.json"; +const PROCESSOR = "ultra2x"; + +function sleep(ms: number) { return new Promise(r => setTimeout(r, ms)); } + +const AI_OPERATORS = /microsoft|azure|google|meta|amazon|aws|oracle|openai|xai|x\.ai|coreweave|crusoe|lambda|nvidia|anthropic|tesla|applied digital|core scientific|cipher|terawulf|vantage|switch|aligned|stack infra|qts|compass|cyrusone|novva|edged|prime data|colovore/i; +const AI_SIGNALS = /\b(AI|artificial intelligence|GPU|H100|GB200|hyperscale|machine learning)\b/i; + +type Dc = Record; + +function loadCandidates(): { index: number; dc: Dc; enrichment: Record }[] { + const dcs = JSON.parse(fs.readFileSync("./public/data/datacenters.json", "utf-8")) as Dc[]; + const enr = JSON.parse(fs.readFileSync("./public/data/enrichments-compact.json", "utf-8")) as Record>; + + const candidates: { index: number; dc: Dc; enrichment: Record }[] = []; + dcs.forEach((dc, i) => { + const e = enr[String(i)] || {}; + const text = [dc.name, dc.operator, dc.owner, e.notable_tenants, e.description, e.recent_news].join(" "); + const power = Math.max((dc.powerMw as number) || 0, (e.power_capacity_mw as number) || 0); + if (AI_SIGNALS.test(text) || power >= 100 || AI_OPERATORS.test(`${dc.operator} ${dc.owner}`)) { + candidates.push({ index: i, dc, enrichment: e }); + } + }); + return candidates; +} + +function buildInput(dc: Dc, e: Record): string { + const facts = [ + `Facility: ${dc.name}`, + `Operator: ${dc.operator}`, + dc.owner && dc.owner !== dc.operator ? `Owner: ${dc.owner}` : "", + `Location: ${dc.address}, ${dc.city}, ${dc.state}`, + (dc.powerMw as number) > 0 ? `Power: ${dc.powerMw} MW` : "", + e.notable_tenants ? `Known tenants: ${e.notable_tenants}` : "", + e.cooling_type ? `Cooling: ${e.cooling_type}` : "", + e.utility_provider ? `Utility: ${e.utility_provider}` : "", + e.description ? `Background: ${e.description}` : "", + ].filter(Boolean).join("\n"); + + return `Classify this U.S. data center facility for an infrastructure-investor audience: + +${facts} + +1. Determine whether this is an AI data center: does it host AI training clusters (GPU superclusters), AI inference/cloud AI workloads, or is it traditional colocation/enterprise? Look for GPU deployments, AI tenant announcements, liquid cooling retrofits, and power density signals. +2. Assess its local-impact profile with specific evidence: + - WATER: cooling water consumption, water source stress, aquifer/drought concerns, discharge issues. + - GRID: strain on the local grid, ratepayer cost impact, new generation/transmission required, curtailment risk. + - COMMUNITY: organized opposition, lawsuits, zoning fights, noise/air-quality complaints (e.g., diesel or gas turbine generators), moratorium campaigns. +Base every classification on verifiable reporting. If there is no evidence for an impact, say so rather than speculating.`; +} + +const SCHEMA = { + type: "json" as const, + json_schema: { + type: "object" as const, + properties: { + ai_class: { + type: "string" as const, + enum: ["ai-training", "ai-inference", "ai-mixed", "cloud-hyperscale", "not-ai"], + description: "AI workload classification. 'ai-training' = GPU training clusters; 'ai-inference' = inference/cloud AI serving; 'ai-mixed' = both or AI plus other workloads; 'cloud-hyperscale' = hyperscale cloud without confirmed AI focus; 'not-ai' = traditional colo/enterprise.", + }, + ai_evidence: { type: "string" as const, description: "1-2 sentence evidence for the AI classification (GPU deployments, tenants, announcements). Empty if not-ai." }, + water_impact: { type: "string" as const, enum: ["high", "moderate", "low", "unknown"], description: "Water impact: consumption scale, source stress, discharge concerns." }, + water_note: { type: "string" as const, description: "1 sentence on water: gallons/day if reported, source, drought/aquifer concerns. Empty if nothing found." }, + grid_impact: { type: "string" as const, enum: ["high", "moderate", "low", "unknown"], description: "Grid impact: load relative to local grid, new generation/transmission needed, ratepayer effects." }, + grid_note: { type: "string" as const, description: "1 sentence on grid: MW load, utility upgrades, rate cases. Empty if nothing found." }, + community_pushback: { type: "string" as const, enum: ["active-opposition", "some-concern", "none-found"], description: "Community response: organized opposition/litigation, scattered concern, or none found." }, + community_note: { type: "string" as const, description: "1 sentence on community response: who opposes, over what, current status. Empty if none." }, + }, + required: ["ai_class", "ai_evidence", "water_impact", "water_note", "grid_impact", "grid_note", "community_pushback", "community_note"], + additionalProperties: false, + }, +}; + +// ─── Kickoff ───────────────────────────────────────────────────────── + +async function kickoff() { + if (fs.existsSync(RUNS_PATH)) { + const existing = JSON.parse(fs.readFileSync(RUNS_PATH, "utf-8")); + console.log(`Already kicked off ${existing.runs?.length || 0} runs (${existing.startedAt}). Delete ${RUNS_PATH} to restart.`); + return; + } + + const candidates = loadCandidates(); + console.log(`Classifying ${candidates.length} AI-candidate facilities with ${PROCESSOR}...`); + + const runData: { groups: unknown[]; runs: { runId: string; groupId: string; facilityIndex: number; facilityName: string }[]; startedAt: string; processor: string; totalCandidates: number } = { + groups: [], runs: [], startedAt: new Date().toISOString(), processor: PROCESSOR, totalCandidates: candidates.length, + }; + + const grpRes = await fetch(`${BASE_URL}/v1/tasks/groups`, { + method: "POST", headers: { "x-api-key": API_KEY!, "Content-Type": "application/json" }, + body: JSON.stringify({ metadata: { type: "ai-classification", size: String(candidates.length) } }), + }); + if (!grpRes.ok) { console.error(`Group create failed: ${grpRes.status} ${await grpRes.text()}`); process.exit(1); } + const grp = await grpRes.json(); + runData.groups.push({ groupId: grp.taskgroup_id, size: candidates.length }); + console.log(`Task group: ${grp.taskgroup_id}`); + + for (let j = 0; j < candidates.length; j += 500) { + const sub = candidates.slice(j, j + 500); + const inputs = sub.map((c) => ({ + input: buildInput(c.dc, c.enrichment), + task_spec: { output_schema: SCHEMA }, + processor: PROCESSOR, + metadata: { facility_index: String(c.index), facility_name: String(c.dc.name).slice(0, 100), type: "ai-classification" }, + })); + + const res = await fetch(`${BASE_URL}/v1/tasks/groups/${grp.taskgroup_id}/runs`, { + method: "POST", headers: { "x-api-key": API_KEY!, "Content-Type": "application/json" }, + body: JSON.stringify({ inputs }), + }); + if (!res.ok) { console.error(` Submit failed at ${j}: ${res.status} ${await res.text()}`); break; } + const data = await res.json(); + const runIds: string[] = data.run_ids || []; + + runIds.forEach((runId, k) => { + runData.runs.push({ runId, groupId: grp.taskgroup_id, facilityIndex: sub[k].index, facilityName: String(sub[k].dc.name) }); + }); + // Save immediately after each sub-batch so run IDs are never lost + fs.writeFileSync(RUNS_PATH, JSON.stringify(runData, null, 2)); + console.log(` Submitted ${j + 1}-${j + sub.length}: ${runIds.length} run IDs`); + } + + console.log(`Kicked off ${runData.runs.length} classification tasks. Run 'collect' to gather results.`); +} + +// ─── Collect ───────────────────────────────────────────────────────── + +async function collect() { + if (!fs.existsSync(RUNS_PATH)) { console.error("No runs file. Run kickoff first."); process.exit(1); } + const runData = JSON.parse(fs.readFileSync(RUNS_PATH, "utf-8")); + + let results: Record = {}; + if (fs.existsSync(OUT_PATH)) results = JSON.parse(fs.readFileSync(OUT_PATH, "utf-8")); + + let collected = 0, pending = 0, failed = 0; + + for (let i = 0; i < runData.runs.length; i += 20) { + const batch = runData.runs.slice(i, i + 20); + const settled = await Promise.all(batch.map(async (run: { runId: string; facilityIndex: number; facilityName: string }) => { + if (results[String(run.facilityIndex)]) return null; + + const statusRes = await fetch(`${BASE_URL}/v1/tasks/runs/${run.runId}`, { headers: { "x-api-key": API_KEY! } }); + if (!statusRes.ok) { pending++; return null; } + const statusData = await statusRes.json(); + if (statusData.status === "failed") { failed++; return null; } + if (statusData.status !== "completed") { pending++; return null; } + + const resultRes = await fetch(`${BASE_URL}/v1/tasks/runs/${run.runId}/result`, { headers: { "x-api-key": API_KEY! } }); + if (!resultRes.ok) return null; + return { run, result: await resultRes.json() }; + })); + + for (const r of settled) { + if (!r) continue; + const content = r.result?.output?.content; + if (!content || typeof content !== "object") continue; + const basis = (r.result?.output?.basis || []) as { citations?: { title?: string; url?: string }[] }[]; + const citations = basis + .flatMap((b) => (b.citations || []).map((c) => ({ title: c.title || "", url: c.url || "" }))) + .filter((c) => c.url) + .slice(0, 5); + results[String(r.run.facilityIndex)] = { ...content, citations, runId: r.run.runId, classifiedAt: new Date().toISOString() }; + collected++; + } + + fs.writeFileSync(OUT_PATH, JSON.stringify(results, null, 0)); + process.stdout.write(`\r Collected: ${Object.keys(results).length}/${runData.runs.length} (${collected} new, ${pending} pending, ${failed} failed)`); + await sleep(100); + } + + console.log(`\nDone. ${Object.keys(results).length}/${runData.runs.length} classifications in ${OUT_PATH}`); + if (pending > 0) console.log(`${pending} still pending — re-run 'collect' later.`); +} + +// ─── Main ──────────────────────────────────────────────────────────── + +const mode = process.argv[2]; +if (mode === "kickoff") kickoff().catch(console.error); +else if (mode === "collect") collect().catch(console.error); +else { console.error("Usage: npx tsx scripts/classify-ai.ts "); process.exit(1); } diff --git a/typescript-recipes/parallel-datacenter-map/scripts/collect-enrichments-v2.ts b/typescript-recipes/parallel-datacenter-map/scripts/collect-enrichments-v2.ts new file mode 100644 index 0000000..c23cced --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/collect-enrichments-v2.ts @@ -0,0 +1,150 @@ +/** + * Collects v2 enrichment results and merges with v1. + * Saves combined enrichments to public/data/enrichments.json. + * + * Usage: npx tsx scripts/collect-enrichments-v2.ts + */ + +import * as fs from "fs"; + +const API_KEY = + process.env.PARALLEL_API_KEY; +const BASE_URL = "https://api.parallel.ai"; + +async function checkGroupStatus(groupId: string) { + const res = await fetch(`${BASE_URL}/v1/tasks/groups/${groupId}`, { + headers: { "x-api-key": API_KEY }, + }); + if (!res.ok) return null; + return res.json(); +} + +async function fetchResult(runId: string) { + const statusRes = await fetch(`${BASE_URL}/v1/tasks/runs/${runId}`, { + headers: { "x-api-key": API_KEY }, + }); + if (!statusRes.ok) return null; + const statusData = await statusRes.json(); + if (statusData.status !== "completed") return null; + + const resultRes = await fetch(`${BASE_URL}/v1/tasks/runs/${runId}/result`, { + headers: { "x-api-key": API_KEY }, + }); + if (!resultRes.ok) return null; + return resultRes.json(); +} + +function sleep(ms: number) { + return new Promise((r) => setTimeout(r, ms)); +} + +async function main() { + const runsPath = "./src/data/enrichment-v2-runs.json"; + if (!fs.existsSync(runsPath)) { + console.error("No enrichment-v2-runs.json. Run run-enrichment-v2.ts first."); + process.exit(1); + } + + const runData = JSON.parse(fs.readFileSync(runsPath, "utf-8")); + console.log(`Collecting v2 results for ${runData.runs.length} runs...\n`); + + for (const group of runData.groups) { + const status = await checkGroupStatus(group.groupId); + if (status) { + console.log(`Group ${group.groupId}: ${JSON.stringify(status.status?.task_run_status_counts)}`); + } + } + console.log(); + + // Load existing v1 enrichments + const enrichPath = "./public/data/enrichments.json"; + const enrichments = JSON.parse(fs.readFileSync(enrichPath, "utf-8")); + console.log(`Existing v1 enrichments: ${Object.keys(enrichments).length}\n`); + + // Track v2 collection + let collected = 0; + let pending = 0; + const CONCURRENCY = 20; + + for (let i = 0; i < runData.runs.length; i += CONCURRENCY) { + const batch = runData.runs.slice(i, i + CONCURRENCY); + + const results = await Promise.all( + batch.map(async (run: { runId: string; facilityIndex: number; facilityName: string }) => { + // Skip if v2 already merged + const existing = enrichments[String(run.facilityIndex)]; + if (existing?.enrichment?.verified_operator) return null; + + const result = await fetchResult(run.runId); + if (!result) { + pending++; + return null; + } + return { run, result }; + }) + ); + + for (const r of results) { + if (!r) continue; + const v2Content = r.result?.output?.content; + if (!v2Content) continue; + + const key = String(r.run.facilityIndex); + const existing = enrichments[key]; + + if (existing) { + // Merge v2 fields into existing v1 enrichment + existing.enrichment = { + ...existing.enrichment, + ...v2Content, + }; + // Merge v2 basis into existing basis + const v2Basis = r.result?.output?.basis || []; + if (Array.isArray(v2Basis)) { + existing.basis = [...(existing.basis || []), ...v2Basis]; + } + existing.v2RunId = r.run.runId; + existing.v2CollectedAt = new Date().toISOString(); + } else { + enrichments[key] = { + runId: r.run.runId, + facilityName: r.run.facilityName, + facilityIndex: r.run.facilityIndex, + enrichment: v2Content, + basis: r.result?.output?.basis || [], + collectedAt: new Date().toISOString(), + }; + } + collected++; + } + + if ((i + CONCURRENCY) % 100 === 0 || i + CONCURRENCY >= runData.runs.length) { + fs.writeFileSync(enrichPath, JSON.stringify(enrichments, null, 2)); + process.stdout.write( + `\r Collected: ${collected} new v2, ${pending} pending` + ); + } + + await sleep(100); + } + + fs.writeFileSync(enrichPath, JSON.stringify(enrichments, null, 2)); + console.log(`\n\nDone. ${collected} v2 enrichments merged.`); + console.log(`${pending} still pending.`); + + // Show sample + const sample = enrichments["0"]; + if (sample?.enrichment) { + const e = sample.enrichment; + console.log(`\nSample (facility 0):`); + console.log(` verified_operator: ${e.verified_operator || "?"}`); + console.log(` verified_owner: ${e.verified_owner || "?"}`); + console.log(` cooling_type: ${e.cooling_type || "?"}`); + console.log(` utility_provider: ${e.utility_provider || "?"}`); + console.log(` campus_acres: ${e.campus_acres || "?"}`); + console.log(` expansion_capacity_mw: ${e.expansion_capacity_mw || "?"}`); + console.log(` community_opposition: ${e.community_opposition || "?"}`); + } +} + +main().catch(console.error); diff --git a/typescript-recipes/parallel-datacenter-map/scripts/collect-enrichments.ts b/typescript-recipes/parallel-datacenter-map/scripts/collect-enrichments.ts new file mode 100644 index 0000000..245eb77 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/collect-enrichments.ts @@ -0,0 +1,159 @@ +/** + * Collects enrichment results from completed Task API runs. + * Reads run IDs from src/data/enrichment-runs.json, fetches results, + * saves to public/data/enrichments.json. + * + * Can be run multiple times — only fetches completed runs, skips others. + * + * Usage: npx tsx scripts/collect-enrichments.ts + */ + +import * as fs from "fs"; + +const API_KEY = + process.env.PARALLEL_API_KEY; +const BASE_URL = "https://api.parallel.ai"; + +interface EnrichmentRun { + runId: string; + groupId: string; + facilityIndex: number; + facilityName: string; +} + +interface EnrichmentData { + groups: { groupId: string; batchIndex: number; size: number }[]; + runs: EnrichmentRun[]; + startedAt: string; + processor: string; + totalFacilities: number; +} + +async function checkGroupStatus(groupId: string) { + const res = await fetch(`${BASE_URL}/v1/tasks/groups/${groupId}`, { + headers: { "x-api-key": API_KEY }, + }); + if (!res.ok) return null; + return res.json(); +} + +async function fetchResult(runId: string) { + // Check status first + const statusRes = await fetch(`${BASE_URL}/v1/tasks/runs/${runId}`, { + headers: { "x-api-key": API_KEY }, + }); + if (!statusRes.ok) return null; + const statusData = await statusRes.json(); + if (statusData.status !== "completed") return null; + + // Fetch full result + const resultRes = await fetch( + `${BASE_URL}/v1/tasks/runs/${runId}/result`, + { headers: { "x-api-key": API_KEY } } + ); + if (!resultRes.ok) return null; + return resultRes.json(); +} + +function sleep(ms: number) { + return new Promise((r) => setTimeout(r, ms)); +} + +async function main() { + const runsPath = "./src/data/enrichment-runs.json"; + if (!fs.existsSync(runsPath)) { + console.error("No enrichment-runs.json found. Run run-enrichment.ts first."); + process.exit(1); + } + + const data: EnrichmentData = JSON.parse(fs.readFileSync(runsPath, "utf-8")); + console.log(`Collecting results for ${data.runs.length} enrichment runs...\n`); + + // Check group status first + for (const group of data.groups) { + const status = await checkGroupStatus(group.groupId); + if (status) { + console.log(`Group ${group.groupId}: ${JSON.stringify(status.status?.task_run_status_counts)}`); + } + } + console.log(); + + // Load existing enrichments (for incremental collection) + const enrichPath = "./public/data/enrichments.json"; + let enrichments: Record = {}; + if (fs.existsSync(enrichPath)) { + enrichments = JSON.parse(fs.readFileSync(enrichPath, "utf-8")); + } + const existingCount = Object.keys(enrichments).length; + console.log(`Existing enrichments: ${existingCount}\n`); + + // Fetch results in parallel batches + const CONCURRENCY = 20; + let completed = 0; + let failed = 0; + let pending = 0; + + for (let i = 0; i < data.runs.length; i += CONCURRENCY) { + const batch = data.runs.slice(i, i + CONCURRENCY); + + const results = await Promise.all( + batch.map(async (run) => { + // Skip if already collected + if (enrichments[String(run.facilityIndex)]) return null; + + const result = await fetchResult(run.runId); + if (!result) { + pending++; + return null; + } + + return { run, result }; + }) + ); + + for (const r of results) { + if (!r) continue; + + const content = r.result?.output?.content; + if (content) { + enrichments[String(r.run.facilityIndex)] = { + runId: r.run.runId, + facilityName: r.run.facilityName, + facilityIndex: r.run.facilityIndex, + enrichment: content, + basis: r.result?.output?.basis, + collectedAt: new Date().toISOString(), + }; + completed++; + } else { + failed++; + } + } + + // Save incrementally every 100 results + if ((i + CONCURRENCY) % 100 === 0 || i + CONCURRENCY >= data.runs.length) { + fs.writeFileSync(enrichPath, JSON.stringify(enrichments, null, 2)); + const total = Object.keys(enrichments).length; + process.stdout.write( + `\r Collected: ${total}/${data.runs.length} (${completed} new, ${pending} pending, ${failed} failed)` + ); + } + + // Small delay to avoid rate limits + await sleep(100); + } + + const totalCollected = Object.keys(enrichments).length; + console.log( + `\n\nDone. ${totalCollected}/${data.runs.length} enrichments collected.` + ); + console.log(`Saved to ${enrichPath}`); + + if (totalCollected < data.runs.length) { + console.log( + `\n${data.runs.length - totalCollected} runs still pending. Run this script again later.` + ); + } +} + +main().catch(console.error); diff --git a/typescript-recipes/parallel-datacenter-map/scripts/convert-csv.ts b/typescript-recipes/parallel-datacenter-map/scripts/convert-csv.ts new file mode 100644 index 0000000..7b30936 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/convert-csv.ts @@ -0,0 +1,34 @@ +import * as fs from "fs"; +import Papa from "papaparse"; + +const csvPath = "/Users/khushishelat/Downloads/datacenters_clean.csv"; +const outPath = "./public/data/datacenters.json"; + +const raw = fs.readFileSync(csvPath, "utf-8"); +const { data } = Papa.parse(raw, { header: true, skipEmptyLines: true }); + +const cleaned = (data as Record[]).map((row) => ({ + name: row.name?.trim() || "", + operator: row.operator_company?.trim() || "", + owner: row.owner_company?.trim() || "", + address: row.address?.trim() || "", + city: row.city?.trim() || "", + state: row.state?.trim() || "", + zip: row.zip_code?.trim() || "", + lat: parseFloat(row.latitude) || 0, + lng: parseFloat(row.longitude) || 0, + yearOnline: row.year_online?.trim() || "unknown", + powerMw: Math.min(parseFloat(row.power_capacity_mw) || 0, 5000), // clamp absurd values + sqft: parseFloat(row.total_sqft) || 0, + type: row.facility_type?.trim() || "unknown", + status: row.status?.trim() || "unknown", + region: row._shard?.trim() || "", +})).filter((r) => r.lat !== 0 && r.lng !== 0); // drop rows with no coords + +fs.writeFileSync(outPath, JSON.stringify(cleaned, null, 0)); +console.log(`Wrote ${cleaned.length} datacenters to ${outPath}`); + +// Stats +const statusCounts: Record = {}; +cleaned.forEach((r) => { statusCounts[r.status] = (statusCounts[r.status] || 0) + 1; }); +console.log("Status counts:", statusCounts); diff --git a/typescript-recipes/parallel-datacenter-map/scripts/create-snapshots.ts b/typescript-recipes/parallel-datacenter-map/scripts/create-snapshots.ts new file mode 100644 index 0000000..dd6a27e --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/create-snapshots.ts @@ -0,0 +1,144 @@ +/** + * Creates snapshot monitors for all enrichment runs. + * Each monitor watches one facility's enrichment for changes daily (1d). + * Uses v2 run IDs (most complete enrichment). + * + * Usage: npx tsx scripts/create-snapshots.ts + */ + +import * as fs from "fs"; + +const API_KEY = + process.env.PARALLEL_API_KEY; +const BASE_URL = "https://api.parallel.ai"; + +// Deployed webhook URL — update after deployment +const WEBHOOK_URL = process.env.WEBHOOK_URL || ""; +if (!WEBHOOK_URL) console.warn("Warning: WEBHOOK_URL not set. Snapshots won't push events to the app."); + +interface RunEntry { + runId: string; + groupId: string; + facilityIndex: number; + facilityName: string; +} + +function sleep(ms: number) { + return new Promise((r) => setTimeout(r, ms)); +} + +async function createSnapshotMonitor( + taskRunId: string, + facilityName: string, + facilityIndex: number +): Promise { + const res = await fetch(`${BASE_URL}/v1/monitors`, { + method: "POST", + headers: { + "x-api-key": API_KEY, + "Content-Type": "application/json", + }, + body: JSON.stringify({ + type: "snapshot", + frequency: "1d", + processor: "base", + settings: { task_run_id: taskRunId }, + webhook: { + url: WEBHOOK_URL, + event_types: ["monitor.event.detected"], + }, + metadata: { + facility_name: facilityName.slice(0, 100), + facility_index: String(facilityIndex), + type: "datacenter-snapshot", + }, + }), + }); + + if (!res.ok) { + const err = await res.text(); + console.error(` ✗ [${facilityIndex}] ${facilityName}: ${res.status} ${err.slice(0, 150)}`); + return null; + } + + const data = await res.json(); + return data.monitor_id; +} + +async function main() { + // Use v2 run IDs (most complete enrichment) + const runsPath = "./src/data/enrichment-v2-runs.json"; + if (!fs.existsSync(runsPath)) { + console.error("No enrichment-v2-runs.json found."); + process.exit(1); + } + + const runData = JSON.parse(fs.readFileSync(runsPath, "utf-8")); + const runs: RunEntry[] = runData.runs; + + console.log(`Creating snapshot monitors for ${runs.length} facilities...`); + console.log(`Webhook: ${WEBHOOK_URL}`); + console.log(`Rate limit: ~300/min, pacing at ~200/min\n`); + + // Load existing snapshots to resume + const snapshotPath = "./src/data/snapshot-monitors.json"; + let snapshots: Record = {}; + if (fs.existsSync(snapshotPath)) { + snapshots = JSON.parse(fs.readFileSync(snapshotPath, "utf-8")); + } + + let created = 0; + let skipped = 0; + let failed = 0; + + for (let i = 0; i < runs.length; i++) { + const run = runs[i]; + const key = String(run.facilityIndex); + + // Skip if already has a snapshot + if (snapshots[key]) { + skipped++; + continue; + } + + const monitorId = await createSnapshotMonitor( + run.runId, + run.facilityName, + run.facilityIndex + ); + + if (monitorId) { + snapshots[key] = { + monitorId, + runId: run.runId, + facilityName: run.facilityName, + }; + created++; + } else { + failed++; + } + + // Save every 50 + if ((created + failed) % 50 === 0 && (created + failed) > 0) { + fs.writeFileSync(snapshotPath, JSON.stringify(snapshots, null, 2)); + process.stdout.write( + `\r Progress: ${i + 1}/${runs.length} | Created: ${created} | Skipped: ${skipped} | Failed: ${failed}` + ); + } + + // Rate limit: ~200/min = 1 every 300ms + await sleep(300); + } + + // Final save + fs.writeFileSync(snapshotPath, JSON.stringify(snapshots, null, 2)); + + console.log(`\n\n=== DONE ===`); + console.log(`Created: ${created}`); + console.log(`Skipped: ${skipped}`); + console.log(`Failed: ${failed}`); + console.log(`Total snapshots: ${Object.keys(snapshots).length}`); + console.log(`Saved to ${snapshotPath}`); +} + +main().catch(console.error); diff --git a/typescript-recipes/parallel-datacenter-map/scripts/finish-issue.ts b/typescript-recipes/parallel-datacenter-map/scripts/finish-issue.ts new file mode 100644 index 0000000..ce35162 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/finish-issue.ts @@ -0,0 +1,103 @@ +#!/usr/bin/env npx tsx +/** + * Resume a Datacenter Signal issue whose Task API research run is already + * in-flight (or done): poll the existing run, then run the Claude writer and + * store to Vercel Blob. Avoids re-kicking research that's already running. + * + * Usage: + * ... npx tsx scripts/finish-issue.ts "" + */ + +import * as fs from "fs"; +import { put, list } from "@vercel/blob"; +import { writeNewsletter, wrapEmailTemplate } from "../src/lib/newsletter-writer"; +import monitorsData from "../src/data/monitors.json"; + +const API_KEY = process.env.PARALLEL_API_KEY || ""; +const ANTHROPIC_KEY = process.env.ANTHROPIC_API_KEY || ""; +const BLOB_TOKEN = process.env.BLOB_READ_WRITE_TOKEN || ""; +const BASE_URL = "https://api.parallel.ai"; + +function weekOf(n: number): string { + const ms = new Date("2024-01-01").getTime() + n * 7 * 24 * 60 * 60 * 1000; + return new Date(ms).toLocaleDateString("en-US", { month: "long", day: "numeric", year: "numeric" }); +} + +async function fetchMonitorEvents() { + const monitors = monitorsData as Record; + const all: { headline: string; monitorName: string; severity: string }[] = []; + const full = new Map(); + for (const [, info] of Object.entries(monitors)) { + try { + const res = await fetch(`${BASE_URL}/v1/monitors/${info.monitorId}/events`, { headers: { "x-api-key": API_KEY }, cache: "no-store" }); + if (!res.ok) continue; + const data = await res.json(); + for (const evt of data.events || []) { + const c = evt.output?.content; + if (!c || typeof c !== "object") continue; + const e = { headline: c.headline || "", monitorName: info.name, severity: c.severity || "informational" }; + all.push(e); + if (!full.has(info.name)) full.set(info.name, []); + full.get(info.name)!.push(e); + } + } catch {} + } + return { all, regions: full }; +} + +async function main() { + const issueNumber = parseInt(process.argv[2]); + const runId = process.argv[3]; + const focus = process.argv[4] || ""; + if (!issueNumber || !runId) { console.error("Pass [focus]"); process.exit(1); } + + const existing = await list({ prefix: `newsletters/issue-${issueNumber}`, token: BLOB_TOKEN }); + if (existing.blobs.length) { + const r = await fetch(existing.blobs[0].downloadUrl, { headers: { Authorization: `Bearer ${BLOB_TOKEN}` } }); + if (r.ok && (await r.json()).content) { console.log(`[${issueNumber}] already done`); fs.writeFileSync(`/tmp/issue-${issueNumber}.done`, "ok"); return; } + } + + console.log(`[${issueNumber}] Polling existing run ${runId}...`); + let research = "", interactionId = runId; + const start = Date.now(); + while (Date.now() - start < 20 * 60 * 1000) { + await new Promise((r) => setTimeout(r, 6000)); + const s = await fetch(`${BASE_URL}/v1/tasks/runs/${runId}`, { headers: { "x-api-key": API_KEY } }); + if (!s.ok) continue; + const sd = await s.json(); + if (sd.status === "completed") { + interactionId = sd.interaction_id || runId; + const rr = await fetch(`${BASE_URL}/v1/tasks/runs/${runId}/result`, { headers: { "x-api-key": API_KEY } }); + const raw = (await rr.json()).output?.content; + research = typeof raw === "string" ? raw : JSON.stringify(raw) || ""; + break; + } + if (sd.status === "failed" || sd.status === "cancelled") { console.error(`[${issueNumber}] run ${sd.status}`); process.exit(1); } + } + if (!research) { console.error(`[${issueNumber}] research timed out`); process.exit(1); } + console.log(`[${issueNumber}] research done (${research.length} chars). Writing...`); + + const { all, regions } = await fetchMonitorEvents(); + const bodyHtml = await writeNewsletter({ + research, interactionId, issueNumber, + eventsTotal: all.length, + criticalCount: all.filter((e) => e.severity === "critical").length, + marketsActive: regions.size, + regionSummaries: Array.from(regions.entries()).map(([name, evts]) => `${name} (${evts.length} events): ${evts[0]?.headline || ""}`).join("\n"), + parallelApiKey: API_KEY, anthropicApiKey: ANTHROPIC_KEY, + }); + + const issueData = { + issueNumber, content: bodyHtml, emailHtml: wrapEmailTemplate(bodyHtml, issueNumber), + focus, weekOf: weekOf(issueNumber), researchRunId: runId, interactionId, + stats: { events: all.length, critical: all.filter((e) => e.severity === "critical").length, markets: regions.size }, + generatedAt: new Date().toISOString(), status: "completed", + }; + await put(`newsletters/issue-${issueNumber}.json`, JSON.stringify(issueData), { + access: "private", allowOverwrite: true, contentType: "application/json", token: BLOB_TOKEN, + }); + console.log(`[${issueNumber}] ✓ stored (${bodyHtml.length} chars)`); + fs.writeFileSync(`/tmp/issue-${issueNumber}.done`, "ok"); +} + +main().catch((e) => { console.error(e); process.exit(1); }); diff --git a/typescript-recipes/parallel-datacenter-map/scripts/generate-issue.ts b/typescript-recipes/parallel-datacenter-map/scripts/generate-issue.ts new file mode 100644 index 0000000..831a7b3 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/generate-issue.ts @@ -0,0 +1,179 @@ +#!/usr/bin/env npx tsx +/** + * Generate a single Datacenter Signal issue for a given issue number and store + * it to Vercel Blob (same shape the app's /api/newsletter pipeline writes). + * + * Real Task API deep research + Claude writer — nothing fabricated. Used to + * seed the newsletter archive with a few back-issues so the reader has issues + * to click through. Each issue takes an editorial "focus" so back-issues read + * distinctly even though they draw from the same live monitor pool. + * + * Usage: + * PARALLEL_API_KEY=.. ANTHROPIC_API_KEY=.. BLOB_READ_WRITE_TOKEN=.. \ + * npx tsx scripts/generate-issue.ts "" + */ + +import * as fs from "fs"; +import { put, list } from "@vercel/blob"; +import { writeNewsletter, wrapEmailTemplate } from "../src/lib/newsletter-writer"; +import monitorsData from "../src/data/monitors.json"; + +const API_KEY = process.env.PARALLEL_API_KEY || ""; +const ANTHROPIC_KEY = process.env.ANTHROPIC_API_KEY || ""; +const BLOB_TOKEN = process.env.BLOB_READ_WRITE_TOKEN || ""; +const BASE_URL = "https://api.parallel.ai"; + +if (!API_KEY || !ANTHROPIC_KEY || !BLOB_TOKEN) { + console.error("Need PARALLEL_API_KEY, ANTHROPIC_API_KEY, BLOB_READ_WRITE_TOKEN."); + process.exit(1); +} + +function weekOf(issueNumber: number): string { + const ms = new Date("2024-01-01").getTime() + issueNumber * 7 * 24 * 60 * 60 * 1000; + return new Date(ms).toLocaleDateString("en-US", { month: "long", day: "numeric", year: "numeric" }); +} + +async function fetchMonitorEvents() { + const monitors = monitorsData as Record; + const allEvents: { headline: string; summary: string; category: string; severity: string; eventDate: string; affectedEntities: string; monitorName: string; citations: { title: string; url: string }[] }[] = []; + for (const [, info] of Object.entries(monitors)) { + try { + const res = await fetch(`${BASE_URL}/v1/monitors/${info.monitorId}/events`, { headers: { "x-api-key": API_KEY }, cache: "no-store" }); + if (!res.ok) continue; + const data = await res.json(); + for (const evt of data.events || []) { + const content = evt.output?.content; + if (!content || typeof content !== "object") continue; + const basis = evt.output?.basis || []; + const citations = basis.flatMap((b: { citations?: { title?: string; url?: string }[] }) => + (b.citations || []).map((c) => ({ title: c.title || "", url: c.url || "" }))).slice(0, 3); + allEvents.push({ + headline: content.headline || "", summary: content.summary || "", + category: content.category || "", severity: content.severity || "informational", + eventDate: evt.event_date || "", affectedEntities: content.affected_entities || "", + monitorName: info.name, citations, + }); + } + } catch {} + } + return allEvents; +} + +function buildPrompt(events: Awaited>, issueNumber: number, focus: string) { + const critical = events.filter((e) => e.severity === "critical").slice(0, 6); + const regions = new Map(); + for (const e of events) { + if (!regions.has(e.monitorName)) regions.set(e.monitorName, []); + regions.get(e.monitorName)!.push(e); + } + let criticalSection = ""; + for (const evt of critical) { + criticalSection += `\n### ${evt.headline}\nRegion: ${evt.monitorName} | Category: ${evt.category} | Date: ${evt.eventDate}\n${evt.summary}\n`; + if (evt.affectedEntities) criticalSection += `Affects: ${evt.affectedEntities}\n`; + if (evt.citations.length) criticalSection += `Sources: ${evt.citations.map((c) => `${c.title} (${c.url})`).join("; ")}\n`; + } + let regionalSection = ""; + for (const [name, evts] of Array.from(regions.entries()).slice(0, 12)) { + regionalSection += `- **${name}** (${evts.length} events): ${evts[0].headline}\n`; + } + + return `Write "Datacenter Signal — Issue ${issueNumber}" (Week of ${weekOf(issueNumber)}), a weekly infrastructure intelligence brief for datacenter investors. + +EDITORIAL FOCUS FOR THIS ISSUE: ${focus} +Lead the issue with the developments most relevant to that focus. Do not omit other critical items, but frame the "week in one read" and lead story around the focus. + +CRITICAL EVENTS THIS WEEK (deep-research each one): +${criticalSection || "No critical events this week."} + +ALL EVENTS SUMMARY: +- Total events detected: ${events.length} +- Critical: ${critical.length} +- Markets with activity: ${regions.size} + +REGIONAL ACTIVITY: +${regionalSection || "No regional activity."} + +INSTRUCTIONS: +1. Open with "The Week in One Read" — 2-3 sentence executive summary anchored on the editorial focus +2. "Critical Developments" — thorough analysis of each critical event with background, stakeholders, implications, and what to watch +3. "Regional Roundup" — one line per active region +4. "By the Numbers" — key stats + +Tone: analytical, concise, data-anchored, like a Financial Times briefing. No hype, no speculation. Weave inline source links into prose using publication names. No emoji. No numbered references like [1].`; +} + +async function main() { + const issueNumber = parseInt(process.argv[2]); + const focus = process.argv[3] || "The most consequential developments of the week"; + if (!issueNumber) { console.error("Pass an issue number."); process.exit(1); } + + // Skip if already fully generated + const { blobs } = await list({ prefix: `newsletters/issue-${issueNumber}`, token: BLOB_TOKEN }); + if (blobs.length) { + const res = await fetch(blobs[0].downloadUrl, { headers: { Authorization: `Bearer ${BLOB_TOKEN}` } }); + if (res.ok && (await res.json()).content) { console.log(`Issue ${issueNumber} already generated. Skipping.`); return; } + } + + console.log(`[${issueNumber}] Fetching monitor events...`); + const events = await fetchMonitorEvents(); + console.log(`[${issueNumber}] ${events.length} events. Kicking off Task API research (ultra-fast)...`); + + const taskRes = await fetch(`${BASE_URL}/v1/tasks/runs`, { + method: "POST", headers: { "x-api-key": API_KEY, "Content-Type": "application/json" }, + body: JSON.stringify({ + input: buildPrompt(events, issueNumber, focus), + task_spec: { output_schema: { type: "text", description: "Comprehensive factual research with specific data points, dates, numbers, and source URLs for each critical event." } }, + processor: "ultra-fast", + }), + }); + if (!taskRes.ok) { console.error(`[${issueNumber}] Task API failed: ${await taskRes.text()}`); process.exit(1); } + const { run_id } = await taskRes.json(); + console.log(`[${issueNumber}] Research run: ${run_id}`); + + // Poll research + let research = "", interactionId = run_id; + const start = Date.now(); + while (Date.now() - start < 8 * 60 * 1000) { + await new Promise((r) => setTimeout(r, 5000)); + const s = await fetch(`${BASE_URL}/v1/tasks/runs/${run_id}`, { headers: { "x-api-key": API_KEY } }); + if (!s.ok) continue; + const sd = await s.json(); + if (sd.status === "completed") { + interactionId = sd.interaction_id || run_id; + const rr = await fetch(`${BASE_URL}/v1/tasks/runs/${run_id}/result`, { headers: { "x-api-key": API_KEY } }); + const raw = (await rr.json()).output?.content; + research = typeof raw === "string" ? raw : JSON.stringify(raw) || ""; + break; + } + if (sd.status === "failed") { console.error(`[${issueNumber}] Research failed`); process.exit(1); } + } + if (!research) { console.error(`[${issueNumber}] Research timed out`); process.exit(1); } + console.log(`[${issueNumber}] Research done (${research.length} chars). Writing with Claude...`); + + const regions = new Map(); + for (const e of events) { if (!regions.has(e.monitorName)) regions.set(e.monitorName, []); regions.get(e.monitorName)!.push(e); } + + const bodyHtml = await writeNewsletter({ + research, interactionId, issueNumber, + eventsTotal: events.length, + criticalCount: events.filter((e) => e.severity === "critical").length, + marketsActive: regions.size, + regionSummaries: Array.from(regions.entries()).map(([name, evts]) => `${name} (${evts.length} events): ${evts[0]?.headline || ""}`).join("\n"), + parallelApiKey: API_KEY, anthropicApiKey: ANTHROPIC_KEY, + }); + + const emailHtml = wrapEmailTemplate(bodyHtml, issueNumber); + const issueData = { + issueNumber, content: bodyHtml, emailHtml, focus, weekOf: weekOf(issueNumber), + researchRunId: run_id, interactionId, + stats: { events: events.length, critical: events.filter((e) => e.severity === "critical").length, markets: regions.size }, + generatedAt: new Date().toISOString(), status: "completed", + }; + await put(`newsletters/issue-${issueNumber}.json`, JSON.stringify(issueData), { + access: "private", allowOverwrite: true, contentType: "application/json", token: BLOB_TOKEN, + }); + console.log(`[${issueNumber}] ✓ Stored to blob (${bodyHtml.length} chars body).`); + fs.writeFileSync(`/tmp/issue-${issueNumber}.done`, "ok"); +} + +main().catch((e) => { console.error(e); process.exit(1); }); diff --git a/typescript-recipes/parallel-datacenter-map/scripts/monitor-configs.ts b/typescript-recipes/parallel-datacenter-map/scripts/monitor-configs.ts new file mode 100644 index 0000000..8726826 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/monitor-configs.ts @@ -0,0 +1,509 @@ +export interface MonitorDef { + id: string; + name: string; + class: "region" | "facility" | "discovery"; + query: string; + frequency: string; + processor: string; + region?: string; + facilityCode?: string; + states?: string[]; // which US states this monitor covers +} + +/** + * Structured output schema for all monitors. + * Every detected event comes back with a classified category. + */ +export const MONITOR_OUTPUT_SCHEMA = { + type: "json" as const, + json_schema: { + type: "object" as const, + properties: { + category: { + type: "string" as const, + description: "The primary category of this development", + enum: [ + "POWER_GRID", + "ZONING_POLICY", + "COMMUNITY", + "WATER", + "LAND_SUPPLY", + "TENANT_DEMAND", + "CAPITAL_OWNERSHIP", + "CONSTRUCTION", + ], + }, + headline: { + type: "string" as const, + description: "One-line headline for the event (under 120 characters)", + }, + summary: { + type: "string" as const, + description: + "2-3 sentence summary including specific entities, dates, numbers, and what changed", + }, + severity: { + type: "string" as const, + description: "Impact level for datacenter infrastructure investors", + enum: ["critical", "notable", "informational"], + }, + affected_entities: { + type: "string" as const, + description: + "Specific companies, facilities, or projects affected (e.g., 'QTS Manassas, Dominion Energy')", + }, + }, + required: [ + "category", + "headline", + "summary", + "severity", + "affected_entities", + ], + additionalProperties: false, + }, +}; + +/** + * Category labels for the UI + */ +export const CATEGORY_LABELS: Record = { + POWER_GRID: "Power & Grid", + ZONING_POLICY: "Zoning & Policy", + COMMUNITY: "Community", + WATER: "Water & Cooling", + LAND_SUPPLY: "Land & Supply", + TENANT_DEMAND: "Tenant & Demand", + CAPITAL_OWNERSHIP: "Capital & Ownership", + CONSTRUCTION: "Construction", +}; + +// Comprehensive query template covering all signal types +function regionQuery(region: string, specifics: string): string { + return `Data center developments in ${region}: ${specifics}. Track: utility interconnection and power capacity filings, rezoning and special-use permit applications and decisions, moratoria or development freezes, community opposition and litigation, water-use restrictions or drought actions, large land assemblies and site transactions, hyperscaler expansion announcements, operator M&A or ownership changes, and construction milestones.`; +} + +function facilityQuery(facility: string, specifics: string): string { + return `${facility}: ${specifics}. Track any material development including power interconnection filings, zoning or permit actions, construction milestones, ownership or tenant changes, community opposition, and water or environmental restrictions.`; +} + +export const MONITOR_DEFS: MonitorDef[] = [ + // ============================================= + // CLASS 1: Region monitors (23) + // ============================================= + + // --- Original 8 regions --- + { + id: "region-nova", + name: "Northern Virginia", + class: "region", + query: regionQuery( + "Loudoun and Prince William County, Virginia", + "Dominion Energy interconnection and large-load filings, SCC transmission approvals, county zoning and special-exception votes" + ), + frequency: "1h", + processor: "base", + region: "Northern Virginia", + states: ["VA"], + }, + { + id: "region-atlanta", + name: "Atlanta / Georgia", + class: "region", + query: regionQuery( + "Georgia (metro Atlanta, Fayette, Coweta, DeKalb counties)", + "Georgia Power interconnection actions, county rezoning approvals and denials, development moratoria" + ), + frequency: "1h", + processor: "base", + region: "Atlanta, GA", + states: ["GA"], + }, + { + id: "region-ohio", + name: "Central Ohio", + class: "region", + query: regionQuery( + "central Ohio (New Albany, Columbus, Licking County, Etna Township)", + "AEP Ohio power agreements and tariff disputes, township zoning bans, statewide moratorium legislation" + ), + frequency: "1h", + processor: "base", + region: "Central Ohio", + states: ["OH"], + }, + { + id: "region-phoenix", + name: "Phoenix / Arizona", + class: "region", + query: regionQuery( + "metro Phoenix and Maricopa County, Arizona", + "APS and SRP power capacity, groundwater restrictions, municipal water-use caps for data centers, Pinal County developments" + ), + frequency: "1h", + processor: "base", + region: "Phoenix, AZ", + states: ["AZ"], + }, + { + id: "region-utah", + name: "Utah", + class: "region", + query: regionQuery( + "Utah (Eagle Mountain, Salt Lake City corridor, West Jordan)", + "Rocky Mountain Power load commitments, municipal water and power approvals, West Valley and Iron County permits" + ), + frequency: "1h", + processor: "base", + region: "Utah", + states: ["UT"], + }, + { + id: "region-texas", + name: "Texas", + class: "region", + query: regionQuery( + "Texas", + "ERCOT large-load interconnection rules and Batch Zero process, grid-reliability legislation, PUCT actions, municipal approvals in Dallas, San Antonio, and Red Oak" + ), + frequency: "1h", + processor: "base", + region: "Texas", + states: ["TX"], + }, + { + id: "region-pnw", + name: "Pacific Northwest", + class: "region", + query: regionQuery( + "Washington and Oregon (Seattle, Hillsboro, Quincy, The Dalles)", + "Seattle municipal moratoria, BPA and PSE power constraints, Bonneville Power Administration capacity, Oregon permitting" + ), + frequency: "1h", + processor: "base", + region: "Pacific Northwest", + states: ["WA", "OR"], + }, + { + id: "region-florida", + name: "Florida", + class: "region", + query: regionQuery( + "Florida", + "county moratoria and rezoning freezes (Citrus, Palm Coast, Flagler, Lake), FPL power agreements, hurricane resilience requirements" + ), + frequency: "1h", + processor: "base", + region: "Florida", + states: ["FL"], + }, + + // --- 15 new regions for 90% coverage --- + { + id: "region-norcal", + name: "Northern California", + class: "region", + query: regionQuery( + "Northern California (Silicon Valley, Santa Clara, Sacramento, Stockton)", + "PG&E power capacity and interconnection, CPUC filings, Santa Clara city approvals, Bay Area environmental review" + ), + frequency: "1h", + processor: "base", + region: "Northern California", + states: ["CA"], + }, + { + id: "region-socal", + name: "Southern California", + class: "region", + query: regionQuery( + "Southern California (Los Angeles, Inland Empire, San Diego)", + "SCE and LADWP power capacity, SCAQMD air quality permits, water restrictions, Riverside and San Bernardino county approvals" + ), + frequency: "1h", + processor: "base", + region: "Southern California", + states: ["CA"], + }, + { + id: "region-chicago", + name: "Chicago / Illinois", + class: "region", + query: regionQuery( + "Illinois (Chicago, Elk Grove Village, Aurora, Joliet)", + "ComEd power capacity and interconnection, Cook and DuPage county approvals, Illinois tax incentive programs" + ), + frequency: "1h", + processor: "base", + region: "Chicago, IL", + states: ["IL"], + }, + { + id: "region-nymetro", + name: "New York Metro", + class: "region", + query: regionQuery( + "New Jersey and New York", + "PSE&G and ConEd interconnection capacity, NJ Board of Public Utilities filings, NYC and Newark zoning, New York State moratorium proposals" + ), + frequency: "1h", + processor: "base", + region: "New York Metro", + states: ["NJ", "NY"], + }, + { + id: "region-newengland", + name: "New England", + class: "region", + query: regionQuery( + "New England (Massachusetts, Connecticut, New Hampshire)", + "Eversource and National Grid power capacity, Boston-area and Hartford zoning, Maine renewable-powered DC proposals" + ), + frequency: "1h", + processor: "base", + region: "New England", + states: ["MA", "CT", "NH", "ME", "RI", "VT"], + }, + { + id: "region-minnesota", + name: "Minnesota", + class: "region", + query: regionQuery( + "Minnesota (Minneapolis, Shakopee, Chaska)", + "Xcel Energy power capacity, Shakopee and Scott County approvals, Minnesota legislative actions on data centers" + ), + frequency: "1h", + processor: "base", + region: "Minnesota", + states: ["MN"], + }, + { + id: "region-michigan", + name: "Michigan", + class: "region", + query: regionQuery( + "Michigan (Detroit, Grand Rapids, West Michigan)", + "DTE Energy and Consumers Energy power capacity, county economic incentives, Michigan Strategic Fund approvals" + ), + frequency: "1h", + processor: "base", + region: "Michigan", + states: ["MI"], + }, + { + id: "region-kentucky", + name: "Kentucky", + class: "region", + query: regionQuery( + "Kentucky (Louisville, Lexington, Bowling Green)", + "LG&E and KU power agreements, Kentucky economic development incentives, TVA-connected sites" + ), + frequency: "1h", + processor: "base", + region: "Kentucky", + states: ["KY"], + }, + { + id: "region-nevada", + name: "Las Vegas / Nevada", + class: "region", + query: regionQuery( + "Nevada (Las Vegas, Reno, Henderson)", + "NV Energy power capacity, Southern Nevada Water Authority restrictions, Clark County approvals, Switch and other operator expansions" + ), + frequency: "1h", + processor: "base", + region: "Nevada", + states: ["NV"], + }, + { + id: "region-dcmetro", + name: "DC Metro / Maryland", + class: "region", + query: regionQuery( + "Maryland and Washington DC metro (Prince George's County, Frederick, Loudoun adjacent)", + "BGE and Pepco power capacity, PJM interconnection for MD sites, county zoning, Frederick County data center ordinances" + ), + frequency: "1h", + processor: "base", + region: "DC Metro", + states: ["MD", "DC", "DE"], + }, + { + id: "region-tennessee", + name: "Tennessee", + class: "region", + query: regionQuery( + "Tennessee (Nashville, Clarksville, Chattanooga)", + "TVA power agreements and industrial rates, Clarksville campus developments, state economic incentives" + ), + frequency: "1h", + processor: "base", + region: "Tennessee", + states: ["TN"], + }, + { + id: "region-midwest", + name: "Kansas City / Midwest", + class: "region", + query: regionQuery( + "the central Midwest (Missouri, Kansas, Nebraska, Iowa)", + "Evergy and MidAmerican Energy power capacity, Kansas City metro approvals, Iowa and Nebraska economic incentives" + ), + frequency: "1h", + processor: "base", + region: "Central Midwest", + states: ["MO", "KS", "NE", "IA"], + }, + { + id: "region-carolinas", + name: "Carolinas", + class: "region", + query: regionQuery( + "North and South Carolina", + "Duke Energy power capacity and interconnection, Charlotte and Raleigh-Durham area approvals, Stokes County and rural county rezoning controversies" + ), + frequency: "1h", + processor: "base", + region: "Carolinas", + states: ["NC", "SC"], + }, + { + id: "region-colorado", + name: "Colorado", + class: "region", + query: regionQuery( + "Colorado (Denver, Aurora, Colorado Springs)", + "Xcel Energy power capacity, Aurora and Douglas County approvals, Colorado water court filings" + ), + frequency: "1h", + processor: "base", + region: "Colorado", + states: ["CO"], + }, + { + id: "region-pennsylvania", + name: "Pennsylvania", + class: "region", + query: regionQuery( + "Pennsylvania (Philadelphia, Lehigh Valley, Pittsburgh)", + "PECO and PPL Electric power capacity, Lehigh Valley zoning, Pennsylvania economic incentive programs" + ), + frequency: "1h", + processor: "base", + region: "Pennsylvania", + states: ["PA"], + }, + + // ============================================= + // CLASS 2: Facility monitors (6) + // ============================================= + { + id: "facility-qts-cedar-rapids", + name: "QTS Cedar Rapids", + class: "facility", + query: facilityQuery( + "QTS Data Centers Cedar Rapids, Iowa campus", + "Alliant Energy and ITC Midwest power agreements, Linn County approvals, construction progress" + ), + frequency: "1h", + processor: "base", + facilityCode: "QTS-CR", + region: "Iowa", + states: ["IA"], + }, + { + id: "facility-qts-new-albany", + name: "QTS New Albany", + class: "facility", + query: facilityQuery( + "QTS Data Centers New Albany, Ohio campus expansion", + "AEP Ohio power agreements, New Albany and Licking County zoning, construction milestones" + ), + frequency: "1h", + processor: "base", + facilityCode: "QTS-NA", + region: "Central Ohio", + states: ["OH"], + }, + { + id: "facility-qts-eagle-mountain", + name: "QTS Eagle Mountain", + class: "facility", + query: facilityQuery( + "QTS Data Centers Eagle Mountain, Utah campus", + "Rocky Mountain Power commitments, Eagle Mountain City water rights and municipal actions" + ), + frequency: "1h", + processor: "base", + facilityCode: "QTS-EM", + region: "Utah", + states: ["UT"], + }, + { + id: "facility-qts-manassas", + name: "QTS Manassas", + class: "facility", + query: facilityQuery( + "QTS Data Centers Manassas, Virginia expansion", + "Prince William County zoning votes, Dominion Energy interconnection filings, community opposition" + ), + frequency: "1h", + processor: "base", + facilityCode: "QTS-MAN", + region: "Northern Virginia", + states: ["VA"], + }, + { + id: "facility-qts-fayetteville", + name: "QTS Fayetteville", + class: "facility", + query: facilityQuery( + "QTS Data Centers Fayetteville and Atlanta, Georgia campuses", + "Fayette County rezoning, Georgia Power interconnection, local government actions" + ), + frequency: "1h", + processor: "base", + facilityCode: "QTS-FAY", + region: "Atlanta, GA", + states: ["GA"], + }, + { + id: "facility-qts-aurora", + name: "QTS Aurora-Denver", + class: "facility", + query: facilityQuery( + "QTS Data Centers Aurora, Colorado campus expansion", + "Xcel Energy power agreements, Aurora city approvals, construction milestones" + ), + frequency: "1h", + processor: "base", + facilityCode: "QTS-AUR", + region: "Colorado", + states: ["CO"], + }, + + // ============================================= + // CLASS 3: Discovery monitors (2) + // ============================================= + { + id: "discovery-hyperscale", + name: "New Hyperscale Sites", + class: "discovery", + query: + "Newly disclosed or rumored hyperscale data center projects in the U.S.: large land assemblies (500+ acres), new substation load studies, county rezoning filings consistent with 200MW+ campuses, and reports of hyperscaler site selection activity where no operator has confirmed. Include brownfield or failed-industrial sites with grid access being repurposed for data centers.", + frequency: "1h", + processor: "base", + region: "National", + }, + { + id: "discovery-power-markets", + name: "Power-First Emerging Markets", + class: "discovery", + query: + "U.S. regions newly attracting data center investment due to available power: utility announcements of large-load data center customers, new generation (gas, nuclear, SMR) tied to data center campuses, and secondary markets (Louisiana, Mississippi, Indiana, Wyoming, Alabama, Idaho, Wisconsin) seeing their first large-scale data center proposals or groundbreakings.", + frequency: "1h", + processor: "base", + region: "National", + }, +]; diff --git a/typescript-recipes/parallel-datacenter-map/scripts/regenerate-brief.ts b/typescript-recipes/parallel-datacenter-map/scripts/regenerate-brief.ts new file mode 100644 index 0000000..716714d --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/regenerate-brief.ts @@ -0,0 +1,146 @@ +#!/usr/bin/env npx tsx +/** + * Regenerate the current week's Datacenter Signal issue with DENSE citations. + * + * Builds a large citation pool from (a) every monitor event's basis citations + * and (b) the deep-research run's own basis, then hands it to the enhanced + * writer which is instructed to hyperlink aggressively. All real Task API data. + * + * Usage: PARALLEL_API_KEY=.. ANTHROPIC_API_KEY=.. BLOB_READ_WRITE_TOKEN=.. \ + * npx tsx scripts/regenerate-brief.ts + */ +import * as fs from "fs"; +import { put } from "@vercel/blob"; +import { writeNewsletter, wrapEmailTemplate } from "../src/lib/newsletter-writer"; +import monitorsData from "../src/data/monitors.json"; + +const API_KEY = process.env.PARALLEL_API_KEY || ""; +const ANTHROPIC_KEY = process.env.ANTHROPIC_API_KEY || ""; +const BLOB_TOKEN = process.env.BLOB_READ_WRITE_TOKEN || ""; +const BASE_URL = "https://api.parallel.ai"; + +function getIssueNumber() { + return Math.floor((Date.now() - new Date("2024-01-01").getTime()) / (7 * 24 * 60 * 60 * 1000)); +} +function weekOf(n: number): string { + const ms = new Date("2024-01-01").getTime() + n * 7 * 24 * 60 * 60 * 1000; + return new Date(ms).toLocaleDateString("en-US", { month: "long", day: "numeric", year: "numeric" }); +} + +interface Evt { headline: string; summary: string; category: string; severity: string; eventDate: string; affectedEntities: string; monitorName: string; citations: { title: string; url: string }[]; } + +async function fetchMonitorEvents() { + const monitors = monitorsData as Record; + const all: Evt[] = []; + const pool: { title: string; url: string }[] = []; + for (const [, info] of Object.entries(monitors)) { + try { + const res = await fetch(`${BASE_URL}/v1/monitors/${info.monitorId}/events`, { headers: { "x-api-key": API_KEY }, cache: "no-store" }); + if (!res.ok) continue; + const data = await res.json(); + for (const evt of data.events || []) { + const c = evt.output?.content; + if (!c || typeof c !== "object") continue; + const basis = evt.output?.basis || []; + const cites = basis.flatMap((b: { citations?: { title?: string; url?: string }[] }) => + (b.citations || []).map((x) => ({ title: x.title || "", url: x.url || "" }))).filter((x: { url: string }) => x.url); + pool.push(...cites); + all.push({ headline: c.headline || "", summary: c.summary || "", category: c.category || "", severity: c.severity || "informational", eventDate: evt.event_date || "", affectedEntities: c.affected_entities || "", monitorName: info.name, citations: cites.slice(0, 3) }); + } + } catch {} + } + return { all, pool }; +} + +function buildPrompt(events: Evt[], issueNumber: number) { + const critical = events.filter((e) => e.severity === "critical").slice(0, 6); + const regions = new Map(); + for (const e of events) { if (!regions.has(e.monitorName)) regions.set(e.monitorName, []); regions.get(e.monitorName)!.push(e); } + let cs = ""; + for (const e of critical) { + cs += `\n### ${e.headline}\nRegion: ${e.monitorName} | Category: ${e.category} | Date: ${e.eventDate}\n${e.summary}\n`; + if (e.affectedEntities) cs += `Affects: ${e.affectedEntities}\n`; + if (e.citations.length) cs += `Sources: ${e.citations.map((c) => `${c.title} (${c.url})`).join("; ")}\n`; + } + const rs = Array.from(regions.entries()).slice(0, 12).map(([n, e]) => `- **${n}** (${e.length} events): ${e[0].headline}`).join("\n"); + return `Write "Datacenter Signal — Issue ${issueNumber}" (Week of ${weekOf(issueNumber)}), a weekly infrastructure intelligence brief for datacenter investors. + +CRITICAL EVENTS THIS WEEK (deep-research each one, and surface as many primary sources with URLs as possible): +${cs || "No critical events this week."} + +ALL EVENTS SUMMARY: ${events.length} total, ${critical.length} critical, ${regions.size} markets. + +REGIONAL ACTIVITY: +${rs} + +Return comprehensive factual research with specific data points, dates, dollar figures, and — critically — the source URL for every claim. Include as many distinct primary sources as possible.`; +} + +async function main() { + const issueNumber = getIssueNumber(); + console.log(`Regenerating issue ${issueNumber} (Week of ${weekOf(issueNumber)}) with dense citations...`); + + console.log("Fetching monitor events + citation pool..."); + const { all: events, pool: eventPool } = await fetchMonitorEvents(); + console.log(`${events.length} events, ${eventPool.length} raw event citations`); + + console.log("Kicking off Task API deep research (ultra-fast)..."); + const taskRes = await fetch(`${BASE_URL}/v1/tasks/runs`, { + method: "POST", headers: { "x-api-key": API_KEY, "Content-Type": "application/json" }, + body: JSON.stringify({ input: buildPrompt(events, issueNumber), task_spec: { output_schema: { type: "text", description: "Comprehensive factual research with specific data points, dates, numbers, and a source URL for every claim." } }, processor: "ultra-fast" }), + }); + if (!taskRes.ok) { console.error("Task API failed:", await taskRes.text()); process.exit(1); } + const { run_id } = await taskRes.json(); + console.log("Research run:", run_id); + + let research = "", interactionId = run_id; + const researchPool: { title: string; url: string }[] = []; + const start = Date.now(); + while (Date.now() - start < 20 * 60 * 1000) { + await new Promise((r) => setTimeout(r, 6000)); + const s = await fetch(`${BASE_URL}/v1/tasks/runs/${run_id}`, { headers: { "x-api-key": API_KEY } }); + if (!s.ok) continue; + const sd = await s.json(); + if (sd.status === "completed") { + interactionId = sd.interaction_id || run_id; + const rr = await (await fetch(`${BASE_URL}/v1/tasks/runs/${run_id}/result`, { headers: { "x-api-key": API_KEY } })).json(); + const raw = rr.output?.content; + research = typeof raw === "string" ? raw : JSON.stringify(raw) || ""; + for (const b of rr.output?.basis || []) for (const c of b.citations || []) if (c.url) researchPool.push({ title: c.title || "", url: c.url }); + break; + } + if (sd.status === "failed" || sd.status === "cancelled") { console.error("research", sd.status); process.exit(1); } + } + if (!research) { console.error("research timed out"); process.exit(1); } + console.log(`research done (${research.length} chars, ${researchPool.length} research citations)`); + + const regions = new Map(); + for (const e of events) { if (!regions.has(e.monitorName)) regions.set(e.monitorName, []); regions.get(e.monitorName)!.push(e); } + + // Combined, deduped citation pool: research basis first (most relevant), then event citations + const pool = Array.from(new Map([...researchPool, ...eventPool].filter((c) => c.url).map((c) => [c.url, c])).values()); + console.log(`combined citation pool: ${pool.length} distinct sources`); + + console.log("Writing with enhanced writer (dense citations)..."); + const bodyHtml = await writeNewsletter({ + research, interactionId, issueNumber, + eventsTotal: events.length, criticalCount: events.filter((e) => e.severity === "critical").length, + marketsActive: regions.size, + regionSummaries: Array.from(regions.entries()).map(([n, e]) => `${n} (${e.length} events): ${e[0]?.headline || ""}`).join("\n"), + parallelApiKey: API_KEY, anthropicApiKey: ANTHROPIC_KEY, citationPool: pool, + }); + + const linkCount = (bodyHtml.match(/ e.severity === "critical").length, markets: regions.size, sources: pool.length, links: linkCount }, + generatedAt: new Date().toISOString(), status: "completed", + }; + await put(`newsletters/issue-${issueNumber}.json`, JSON.stringify(issueData), { access: "private", allowOverwrite: true, contentType: "application/json", token: BLOB_TOKEN }); + console.log(`✓ stored issue ${issueNumber} (${linkCount} links, ${pool.length} sources available)`); + fs.writeFileSync("/tmp/regen-brief.done", "ok"); +} +main().catch((e) => { console.error(e); process.exit(1); }); diff --git a/typescript-recipes/parallel-datacenter-map/scripts/run-backfill.ts b/typescript-recipes/parallel-datacenter-map/scripts/run-backfill.ts new file mode 100644 index 0000000..a00b635 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/run-backfill.ts @@ -0,0 +1,226 @@ +/** + * Runs Task API deep research for each of the 16 monitor topics. + * This backfills the event feed with recent past events. + * + * Usage: npx tsx scripts/run-backfill.ts + * + * Uses "pro" processor for deep research (2-10 min per query). + * Results are saved to src/data/backfill-events.json + */ + +import * as fs from "fs"; +import { MONITOR_DEFS } from "./monitor-configs"; + +const API_KEY = process.env.PARALLEL_API_KEY; +const BASE_URL = "https://api.parallel.ai"; + +const OUTPUT_SCHEMA = { + type: "json" as const, + json_schema: { + type: "object" as const, + properties: { + events: { + type: "array" as const, + items: { + type: "object" as const, + properties: { + headline: { + type: "string" as const, + description: "Short headline summarizing the event (under 100 chars)", + }, + description: { + type: "string" as const, + description: + "2-3 sentence description of what happened, including specific numbers, dates, and entities involved", + }, + date: { + type: "string" as const, + description: "Approximate date of the event (YYYY-MM-DD or YYYY-MM)", + }, + category: { + type: "string" as const, + description: "Event category", + enum: [ + "POWER & GRID", + "OWNERSHIP", + "NEW SITE", + "PERMITS", + "EXPANSION", + "COMMUNITY", + "WATER", + "POLICY", + ], + }, + affected_facilities: { + type: "string" as const, + description: + "Names or codes of specific data center facilities affected, if identifiable", + }, + source_name: { + type: "string" as const, + description: "Name of the primary source (e.g., 'Virginia SCC Filing', 'County Board Minutes')", + }, + source_url: { + type: "string" as const, + description: "URL of the primary source, or empty string if not available", + }, + }, + required: [ + "headline", + "description", + "date", + "category", + "affected_facilities", + "source_name", + "source_url", + ], + additionalProperties: false, + }, + }, + summary: { + type: "string" as const, + description: + "Brief overall summary of the current landscape for this region/facility (2-3 sentences)", + }, + }, + required: ["events", "summary"], + additionalProperties: false, + }, +}; + +async function createTaskRun(query: string, name: string) { + const body = { + input: `Find the most significant recent developments (last 3 months) related to: ${query}\n\nFocus on concrete events with dates, specific entities, and verifiable details. Include regulatory filings, zoning decisions, utility actions, community opposition, construction milestones, and ownership changes. Return up to 8 of the most material events.`, + task_spec: { + output_schema: OUTPUT_SCHEMA, + }, + processor: "pro", + metadata: { demo_backfill: true, monitor_name: name }, + }; + + const res = await fetch(`${BASE_URL}/v1/tasks/runs`, { + method: "POST", + headers: { + "x-api-key": API_KEY, + "Content-Type": "application/json", + }, + body: JSON.stringify(body), + }); + + if (!res.ok) { + const err = await res.text(); + throw new Error(`Failed to create task for ${name}: ${res.status} ${err}`); + } + + return res.json(); +} + +async function pollForResult( + runId: string, + name: string, + maxWaitMs = 600000 // 10 minutes +): Promise | null> { + const start = Date.now(); + let attempt = 0; + + while (Date.now() - start < maxWaitMs) { + attempt++; + const res = await fetch(`${BASE_URL}/v1/tasks/runs/${runId}`, { + headers: { "x-api-key": API_KEY }, + }); + + if (!res.ok) { + console.error(` Poll error for ${name}: ${res.status}`); + await sleep(5000); + continue; + } + + const data = await res.json(); + + if (data.status === "completed") { + // Fetch full result with output from /result endpoint + const resultRes = await fetch(`${BASE_URL}/v1/tasks/runs/${runId}/result`, { + headers: { "x-api-key": API_KEY }, + }); + if (resultRes.ok) { + const resultData = await resultRes.json(); + return { ...data, output: resultData.output }; + } + return data; + } + if (data.status === "failed") { + console.error(` Task failed for ${name}:`, data.error); + return null; + } + + // Still running — wait with increasing delay + const delay = Math.min(5000 + attempt * 2000, 15000); + process.stdout.write(` [${name}] status=${data.status}, waiting ${delay / 1000}s...\r`); + await sleep(delay); + } + + console.error(` Timeout waiting for ${name}`); + return null; +} + +function sleep(ms: number) { + return new Promise((resolve) => setTimeout(resolve, ms)); +} + +async function main() { + const concurrency = 4; // run 4 at a time to avoid rate limits + const allResults: Record[] = []; + + console.log(`Starting backfill for ${MONITOR_DEFS.length} topics (${concurrency} concurrent)...\n`); + + // Submit all tasks first + const submissions: { def: (typeof MONITOR_DEFS)[number]; runId: string }[] = []; + + for (const def of MONITOR_DEFS) { + try { + const result = await createTaskRun(def.query, def.name); + submissions.push({ def, runId: result.run_id }); + console.log(` Submitted: ${def.name} → ${result.run_id}`); + } catch (e) { + console.error(` Failed to submit ${def.name}:`, (e as Error).message); + } + // Small delay between submissions + await sleep(500); + } + + console.log(`\nWaiting for ${submissions.length} tasks to complete...\n`); + + // Poll in batches + for (let i = 0; i < submissions.length; i += concurrency) { + const batch = submissions.slice(i, i + concurrency); + const batchResults = await Promise.all( + batch.map(async ({ def, runId }) => { + const result = await pollForResult(runId, def.name); + if (result) { + console.log(`\n✓ ${def.name} completed`); + return { + monitorDefId: def.id, + monitorName: def.name, + monitorClass: def.class, + region: def.region, + facilityCode: def.facilityCode, + runId, + ...result, + }; + } + console.log(`\n✗ ${def.name} failed or timed out`); + return null; + }) + ); + + allResults.push( + ...batchResults.filter((r): r is Record => r !== null) + ); + } + + const outPath = "./src/data/backfill-results.json"; + fs.writeFileSync(outPath, JSON.stringify(allResults, null, 2)); + console.log(`\nSaved ${allResults.length} backfill results to ${outPath}`); +} + +main().catch(console.error); diff --git a/typescript-recipes/parallel-datacenter-map/scripts/run-enrichment-v2.ts b/typescript-recipes/parallel-datacenter-map/scripts/run-enrichment-v2.ts new file mode 100644 index 0000000..8c77d1c --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/run-enrichment-v2.ts @@ -0,0 +1,306 @@ +/** + * Second enrichment pass — expands the dataset with 15+ additional fields. + * Confirms operator/owner/name and adds technical, financial, land, and risk data. + * Uses ultra2x processor via Task Groups. + * + * Usage: npx tsx scripts/run-enrichment-v2.ts + */ + +import * as fs from "fs"; + +const API_KEY = + process.env.PARALLEL_API_KEY; +const BASE_URL = "https://api.parallel.ai"; + +const ENRICHMENT_V2_SCHEMA = { + type: "json" as const, + json_schema: { + type: "object" as const, + properties: { + // Identity verification + verified_name: { + type: "string" as const, + description: + "The correct, current facility name. Correct any errors in the provided name.", + }, + verified_operator: { + type: "string" as const, + description: + "The company that currently operates this facility. May differ from owner.", + }, + verified_owner: { + type: "string" as const, + description: + "The company or entity that owns the real estate asset (e.g., Digital Realty Trust, Blackstone/QTS, Brookfield). This is often a REIT, PE fund, or JV — not the operator. Use empty string if not determinable.", + }, + + // Technical specs + cooling_type: { + type: "string" as const, + description: + "Primary cooling technology: air-cooled, evaporative, chilled water, liquid cooling, hybrid, or unknown.", + }, + tier_level: { + type: "string" as const, + description: + "Uptime Institute Tier certification level (Tier I, Tier II, Tier III, Tier IV) or equivalent design standard. Empty string if not certified or not determinable.", + }, + backup_power_mw: { + type: "number" as const, + description: + "Backup/generator power capacity in MW. Use 0 if not determinable.", + }, + fiber_providers: { + type: "string" as const, + description: + "Major fiber/network providers connected to this facility, or 'carrier-neutral' if applicable. Empty string if not determinable.", + }, + pue: { + type: "number" as const, + description: + "Power Usage Effectiveness ratio if publicly reported (e.g., 1.2). Use 0 if not determinable.", + }, + + // Land & expansion + campus_acres: { + type: "number" as const, + description: + "Total campus or land area in acres. Use 0 if not determinable.", + }, + expansion_capacity_mw: { + type: "number" as const, + description: + "Planned or permitted expansion capacity in MW beyond current capacity. Use 0 if none or not determinable.", + }, + num_buildings: { + type: "number" as const, + description: + "Number of data center buildings or phases on this campus. Use 0 if not determinable.", + }, + + // Financial signals + estimated_investment_usd: { + type: "number" as const, + description: + "Estimated total project investment in USD if publicly reported (e.g., 500000000 for $500M). Use 0 if not determinable.", + }, + utility_provider: { + type: "string" as const, + description: + "Primary electric utility serving this facility (e.g., Dominion Energy, PG&E, ComEd). Empty string if not determinable.", + }, + tax_incentives: { + type: "string" as const, + description: + "Any active state or local tax incentives, abatements, or enterprise zone benefits. Empty string if none or not determinable.", + }, + + // Risk + water_source: { + type: "string" as const, + description: + "Primary water source for cooling: municipal, groundwater/well, recycled/reclaimed, air-cooled (no water), or unknown.", + }, + natural_hazard_zone: { + type: "string" as const, + description: + "Notable natural hazard exposure: FEMA flood zone designation, seismic zone, hurricane zone, or 'low risk' if none identified. Empty string if not determinable.", + }, + community_opposition: { + type: "string" as const, + description: + "Any organized community opposition, litigation, or political controversy affecting this facility. Empty string if none found.", + }, + }, + required: [ + "verified_name", + "verified_operator", + "verified_owner", + "cooling_type", + "tier_level", + "backup_power_mw", + "fiber_providers", + "pue", + "campus_acres", + "expansion_capacity_mw", + "num_buildings", + "estimated_investment_usd", + "utility_provider", + "tax_incentives", + "water_source", + "natural_hazard_zone", + "community_opposition", + ], + additionalProperties: false, + }, +}; + +interface Datacenter { + name: string; + operator: string; + owner: string; + address: string; + city: string; + state: string; + type: string; + status: string; + powerMw: number; + sqft: number; +} + +function buildInput(dc: Datacenter): string { + const parts = [ + `Facility: ${dc.name}`, + `Operator: ${dc.operator}`, + dc.owner !== dc.operator ? `Owner: ${dc.owner}` : "", + `Location: ${dc.address}, ${dc.city}, ${dc.state}`, + `Type: ${dc.type}`, + `Status: ${dc.status}`, + dc.powerMw > 0 ? `Power: ${dc.powerMw} MW` : "", + dc.sqft > 0 ? `Size: ${dc.sqft} sq ft` : "", + ] + .filter(Boolean) + .join("\n"); + + return `Research this U.S. data center facility thoroughly and provide detailed technical, financial, and risk information:\n\n${parts}\n\nVerify the facility name, operator, and owner (owner may differ from operator — look for the REIT, PE fund, or real estate entity that owns the asset). Find technical specs (cooling, tier, backup power, fiber, PUE), land and expansion details, financial signals (investment cost, utility provider, tax incentives), and risk factors (water source, natural hazards, community opposition).`; +} + +async function createTaskGroup( + metadata: Record +): Promise { + const res = await fetch(`${BASE_URL}/v1/tasks/groups`, { + method: "POST", + headers: { + "x-api-key": API_KEY, + "Content-Type": "application/json", + }, + body: JSON.stringify({ metadata }), + }); + if (!res.ok) + throw new Error( + `Failed to create task group: ${res.status} ${await res.text()}` + ); + const data = await res.json(); + return data.taskgroup_id; +} + +async function submitBatch( + groupId: string, + runs: { input: string; task_spec: unknown; processor: string; metadata: Record }[] +): Promise { + const res = await fetch(`${BASE_URL}/v1/tasks/groups/${groupId}/runs`, { + method: "POST", + headers: { + "x-api-key": API_KEY, + "Content-Type": "application/json", + }, + body: JSON.stringify({ inputs: runs }), + }); + if (!res.ok) + throw new Error( + `Failed to submit batch: ${res.status} ${await res.text()}` + ); + const data = await res.json(); + return data.run_ids || []; +} + +async function main() { + const dcs: Datacenter[] = JSON.parse( + fs.readFileSync("./public/data/datacenters.json", "utf-8") + ); + console.log(`Enrichment v2: ${dcs.length} datacenters with ultra2x\n`); + + const BATCH_SIZE = 1000; + const batches: Datacenter[][] = []; + for (let i = 0; i < dcs.length; i += BATCH_SIZE) { + batches.push(dcs.slice(i, i + BATCH_SIZE)); + } + + const enrichmentData: { + groups: { groupId: string; batchIndex: number; size: number }[]; + runs: { runId: string; groupId: string; facilityIndex: number; facilityName: string }[]; + startedAt: string; + processor: string; + version: string; + totalFacilities: number; + } = { + groups: [], + runs: [], + startedAt: new Date().toISOString(), + processor: "ultra2x", + version: "v2", + totalFacilities: dcs.length, + }; + + for (let batchIdx = 0; batchIdx < batches.length; batchIdx++) { + const batch = batches[batchIdx]; + const globalOffset = batchIdx * BATCH_SIZE; + + console.log( + `Creating task group ${batchIdx + 1}/${batches.length} (${batch.length} facilities)...` + ); + const groupId = await createTaskGroup({ + batch: String(batchIdx), + type: "datacenter-enrichment-v2", + size: String(batch.length), + }); + console.log(` Group ID: ${groupId}`); + enrichmentData.groups.push({ groupId, batchIndex: batchIdx, size: batch.length }); + + const SUB_BATCH = 500; + for (let j = 0; j < batch.length; j += SUB_BATCH) { + const sub = batch.slice(j, j + SUB_BATCH); + console.log(` Submitting runs ${j + 1}-${j + sub.length}...`); + + const specs = sub.map((dc, k) => ({ + input: buildInput(dc), + task_spec: { output_schema: ENRICHMENT_V2_SCHEMA }, + processor: "ultra2x", + metadata: { + facility_index: String(globalOffset + j + k), + facility_name: dc.name.slice(0, 100), + version: "v2", + }, + })); + + const runIds = await submitBatch(groupId, specs); + for (let k = 0; k < runIds.length; k++) { + enrichmentData.runs.push({ + runId: runIds[k], + groupId, + facilityIndex: globalOffset + j + k, + facilityName: batch[j + k].name, + }); + } + console.log(` Got ${runIds.length} run IDs`); + } + + // Save immediately after each group + fs.writeFileSync( + "./src/data/enrichment-v2-runs.json", + JSON.stringify(enrichmentData, null, 2) + ); + console.log(` Saved ${enrichmentData.runs.length} run IDs\n`); + } + + console.log(`\n=== KICKOFF COMPLETE ===`); + console.log(`Groups: ${enrichmentData.groups.length}`); + console.log(`Runs: ${enrichmentData.runs.length}`); + console.log(`Processor: ultra2x`); + console.log(`Schema: v2 (17 new fields)`); + console.log(`All run IDs saved to src/data/enrichment-v2-runs.json`); + + // Poll status + console.log(`\nPolling group status...`); + for (const group of enrichmentData.groups) { + const res = await fetch(`${BASE_URL}/v1/tasks/groups/${group.groupId}`, { + headers: { "x-api-key": API_KEY }, + }); + if (res.ok) { + const data = await res.json(); + console.log(` Group ${group.groupId}: ${JSON.stringify(data.status?.task_run_status_counts)}`); + } + } +} + +main().catch(console.error); diff --git a/typescript-recipes/parallel-datacenter-map/scripts/run-enrichment.ts b/typescript-recipes/parallel-datacenter-map/scripts/run-enrichment.ts new file mode 100644 index 0000000..b29602d --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/run-enrichment.ts @@ -0,0 +1,274 @@ +/** + * Enriches all 1,939 datacenters via Task API using Task Groups. + * Uses ultra2x processor for maximum depth. + * Saves run IDs IMMEDIATELY at kickoff (not after completion). + * + * Usage: npx tsx scripts/run-enrichment.ts + */ + +import * as fs from "fs"; + +const API_KEY = + process.env.PARALLEL_API_KEY; +const BASE_URL = "https://api.parallel.ai"; + +const ENRICHMENT_SCHEMA = { + type: "json" as const, + json_schema: { + type: "object" as const, + properties: { + description: { + type: "string" as const, + description: + "1-2 sentence summary of the facility: what it is, who operates it, and what is notable about it", + }, + verified_status: { + type: "string" as const, + description: + "Current operational status based on latest available information", + enum: ["operational", "under-construction", "planned", "decommissioned"], + }, + power_capacity_mw: { + type: "number" as const, + description: + "Total power capacity in megawatts. Use 0 if not determinable.", + }, + total_sqft: { + type: "number" as const, + description: + "Total facility footprint in square feet. Use 0 if not determinable.", + }, + year_online: { + type: "string" as const, + description: + "Year the facility came online or is expected to come online. Use 'unknown' if not determinable.", + }, + construction_update: { + type: "string" as const, + description: + "Latest construction or development milestone with date, if facility is under construction or planned. Empty string if operational and no active expansion.", + }, + recent_news: { + type: "string" as const, + description: + "Most notable recent development about this facility (last 6 months): expansion, new tenant, opposition, regulatory action. Empty string if no recent news found.", + }, + notable_tenants: { + type: "string" as const, + description: + "Known anchor tenants or major customers. Empty string if not publicly known.", + }, + }, + required: [ + "description", + "verified_status", + "power_capacity_mw", + "total_sqft", + "year_online", + "construction_update", + "recent_news", + "notable_tenants", + ], + additionalProperties: false, + }, +}; + +interface Datacenter { + name: string; + operator: string; + owner: string; + address: string; + city: string; + state: string; + type: string; + status: string; + powerMw: number; + sqft: number; +} + +function buildInput(dc: Datacenter): string { + const parts = [ + `Facility: ${dc.name}`, + `Operator: ${dc.operator}`, + dc.owner !== dc.operator ? `Owner: ${dc.owner}` : "", + `Location: ${dc.address}, ${dc.city}, ${dc.state}`, + `Type: ${dc.type}`, + `Current listed status: ${dc.status}`, + dc.powerMw > 0 ? `Listed power: ${dc.powerMw} MW` : "", + dc.sqft > 0 ? `Listed size: ${dc.sqft} sq ft` : "", + ] + .filter(Boolean) + .join("\n"); + + return `Research this U.S. data center facility and provide verified, current information:\n\n${parts}\n\nVerify or correct all fields. Find the actual power capacity, square footage, and year online if not listed. Check for recent news, construction updates, and notable tenants.`; +} + +async function createTaskGroup( + metadata: Record +): Promise { + const res = await fetch(`${BASE_URL}/v1/tasks/groups`, { + method: "POST", + headers: { + "x-api-key": API_KEY, + "Content-Type": "application/json", + }, + body: JSON.stringify({ metadata }), + }); + if (!res.ok) { + throw new Error(`Failed to create task group: ${res.status} ${await res.text()}`); + } + const data = await res.json(); + return data.taskgroup_id; +} + +interface RunSpec { + input: string; + task_spec: { output_schema: typeof ENRICHMENT_SCHEMA }; + processor: string; + metadata: Record; +} + +async function submitBatchRuns( + groupId: string, + runs: RunSpec[] +): Promise { + const res = await fetch(`${BASE_URL}/v1/tasks/groups/${groupId}/runs`, { + method: "POST", + headers: { + "x-api-key": API_KEY, + "Content-Type": "application/json", + }, + body: JSON.stringify({ inputs: runs }), + }); + if (!res.ok) { + throw new Error( + `Failed to submit batch: ${res.status} ${await res.text()}` + ); + } + const data = await res.json(); + return data.run_ids || []; +} + +async function main() { + // Load datacenters + const dcs: Datacenter[] = JSON.parse( + fs.readFileSync("./public/data/datacenters.json", "utf-8") + ); + console.log(`Enriching ${dcs.length} datacenters with ultra2x...\n`); + + // Split into groups of 1000 + const BATCH_SIZE = 1000; + const batches: Datacenter[][] = []; + for (let i = 0; i < dcs.length; i += BATCH_SIZE) { + batches.push(dcs.slice(i, i + BATCH_SIZE)); + } + console.log(`Split into ${batches.length} task groups\n`); + + // Track everything for immediate save + const enrichmentData: { + groups: { groupId: string; batchIndex: number; size: number }[]; + runs: { + runId: string; + groupId: string; + facilityIndex: number; + facilityName: string; + }[]; + startedAt: string; + processor: string; + totalFacilities: number; + } = { + groups: [], + runs: [], + startedAt: new Date().toISOString(), + processor: "ultra2x", + totalFacilities: dcs.length, + }; + + for (let batchIdx = 0; batchIdx < batches.length; batchIdx++) { + const batch = batches[batchIdx]; + const globalOffset = batchIdx * BATCH_SIZE; + + // Create task group + console.log( + `Creating task group ${batchIdx + 1}/${batches.length} (${batch.length} facilities)...` + ); + const groupId = await createTaskGroup({ + batch: String(batchIdx), + type: "datacenter-enrichment", + size: String(batch.length), + }); + console.log(` Group ID: ${groupId}`); + + enrichmentData.groups.push({ + groupId, + batchIndex: batchIdx, + size: batch.length, + }); + + // Build run specs + const runSpecs: RunSpec[] = batch.map((dc, i) => ({ + input: buildInput(dc), + task_spec: { output_schema: ENRICHMENT_SCHEMA }, + processor: "ultra2x", + metadata: { + facility_index: String(globalOffset + i), + facility_name: dc.name.slice(0, 100), + }, + })); + + // Submit in sub-batches of 500 to be safe + const SUB_BATCH = 500; + for (let j = 0; j < runSpecs.length; j += SUB_BATCH) { + const subBatch = runSpecs.slice(j, j + SUB_BATCH); + console.log( + ` Submitting runs ${j + 1}-${j + subBatch.length} of ${runSpecs.length}...` + ); + + const runIds = await submitBatchRuns(groupId, subBatch); + + for (let k = 0; k < runIds.length; k++) { + enrichmentData.runs.push({ + runId: runIds[k], + groupId, + facilityIndex: globalOffset + j + k, + facilityName: batch[j + k].name, + }); + } + + console.log(` Got ${runIds.length} run IDs`); + } + + // SAVE IMMEDIATELY after each group + fs.writeFileSync( + "./src/data/enrichment-runs.json", + JSON.stringify(enrichmentData, null, 2) + ); + console.log( + ` Saved ${enrichmentData.runs.length} run IDs to src/data/enrichment-runs.json\n` + ); + } + + console.log(`\n=== KICKOFF COMPLETE ===`); + console.log(`Groups: ${enrichmentData.groups.length}`); + console.log(`Runs: ${enrichmentData.runs.length}`); + console.log(`Processor: ultra2x`); + console.log(`All run IDs saved to src/data/enrichment-runs.json`); + console.log(`\nRun 'npx tsx scripts/collect-enrichments.ts' to collect results once complete.`); + + // Poll for group status + console.log(`\nPolling group status...`); + for (const group of enrichmentData.groups) { + const res = await fetch( + `${BASE_URL}/v1/tasks/groups/${group.groupId}`, + { headers: { "x-api-key": API_KEY } } + ); + if (res.ok) { + const data = await res.json(); + console.log( + ` Group ${group.groupId}: ${JSON.stringify(data.status)}` + ); + } + } +} + +main().catch(console.error); diff --git a/typescript-recipes/parallel-datacenter-map/scripts/run-pipeline.ts b/typescript-recipes/parallel-datacenter-map/scripts/run-pipeline.ts new file mode 100644 index 0000000..6dfe564 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/run-pipeline.ts @@ -0,0 +1,485 @@ +#!/usr/bin/env npx tsx +/** + * End-to-end pipeline: CSV → enriched dataset with monitors + snapshots. + * + * Takes a raw datacenter CSV and produces: + * 1. Clean JSON dataset (public/data/datacenters.json) + * 2. 31 event-stream monitors watching U.S. markets + * 3. V1 enrichment (8 fields: description, status, power, size, year, news, tenants, construction) + * 4. V2 enrichment (17 fields: owner, cooling, tier, fiber, PUE, acres, buildings, utility, tax, hazard...) + * 5. Compact enrichment index for the app (public/data/enrichments-compact.json) + * 6. Per-facility enrichment files in Vercel Blob (for basis panel) + * 7. Snapshot monitors (daily re-verification, 1d) + * + * Usage: + * PARALLEL_API_KEY=xxx npx tsx scripts/run-pipeline.ts /path/to/datacenters.csv + * + * Optional env vars: + * BLOB_READ_WRITE_TOKEN — for uploading to Vercel Blob (step 6) + * WEBHOOK_URL — for snapshot monitor webhooks (step 7) + * + * Each step is idempotent — re-running skips already-completed work. + * Progress is saved after each batch so the script can be interrupted and resumed. + */ + +import * as fs from "fs"; +import Papa from "papaparse"; +import { MONITOR_DEFS, MONITOR_OUTPUT_SCHEMA } from "./monitor-configs"; + +const API_KEY = process.env.PARALLEL_API_KEY; +if (!API_KEY) { console.error("Set PARALLEL_API_KEY env var."); process.exit(1); } + +const BASE_URL = "https://api.parallel.ai"; +const BLOB_TOKEN = process.env.BLOB_READ_WRITE_TOKEN || ""; +const WEBHOOK_URL = process.env.WEBHOOK_URL || ""; + +function sleep(ms: number) { return new Promise(r => setTimeout(r, ms)); } + +// ─── STEP 1: CSV → JSON ───────────────────────────────────────────── + +function step1_convertCsv(csvPath: string) { + console.log("\n═══ STEP 1: Convert CSV to JSON ═══"); + const outPath = "./public/data/datacenters.json"; + + if (fs.existsSync(outPath)) { + const existing = JSON.parse(fs.readFileSync(outPath, "utf-8")); + console.log(` Already exists: ${existing.length} facilities. Skipping.`); + return existing.length; + } + + const raw = fs.readFileSync(csvPath, "utf-8"); + const { data } = Papa.parse(raw, { header: true, skipEmptyLines: true }); + + const cleaned = (data as Record[]).map((row) => ({ + name: row.name?.trim() || "", + operator: row.operator_company?.trim() || "", + owner: row.owner_company?.trim() || "", + address: row.address?.trim() || "", + city: row.city?.trim() || "", + state: row.state?.trim() || "", + zip: row.zip_code?.trim() || "", + lat: parseFloat(row.latitude) || 0, + lng: parseFloat(row.longitude) || 0, + yearOnline: row.year_online?.trim() || "unknown", + powerMw: Math.min(parseFloat(row.power_capacity_mw) || 0, 5000), + sqft: parseFloat(row.total_sqft) || 0, + type: row.facility_type?.trim() || "unknown", + status: row.status?.trim() || "unknown", + region: row._shard?.trim() || "", + })).filter((r) => r.lat !== 0 && r.lng !== 0); + + fs.mkdirSync("./public/data", { recursive: true }); + fs.writeFileSync(outPath, JSON.stringify(cleaned)); + console.log(` Wrote ${cleaned.length} facilities to ${outPath}`); + return cleaned.length; +} + +// ─── STEP 2: Create monitors ───────────────────────────────────────── + +async function step2_setupMonitors() { + console.log("\n═══ STEP 2: Create event-stream monitors ═══"); + const outPath = "./src/data/monitors.json"; + + if (fs.existsSync(outPath)) { + const existing = JSON.parse(fs.readFileSync(outPath, "utf-8")); + const count = Object.keys(existing).length; + if (count >= MONITOR_DEFS.length) { + console.log(` Already have ${count} monitors. Skipping.`); + return count; + } + } + + const results: Record = {}; + + for (const def of MONITOR_DEFS) { + const metadata: Record = { demo_id: def.id, name: def.name, class: def.class }; + if (def.region) metadata.region = def.region; + if (def.facilityCode) metadata.facilityCode = def.facilityCode; + if (def.states) metadata.states = def.states.join(","); + + const res = await fetch(`${BASE_URL}/v1/monitors`, { + method: "POST", + headers: { "x-api-key": API_KEY!, "Content-Type": "application/json" }, + body: JSON.stringify({ + type: "event_stream", frequency: def.frequency, + settings: { query: def.query, processor: def.processor, output_schema: MONITOR_OUTPUT_SCHEMA }, + metadata, + }), + }); + + if (res.ok) { + const data = await res.json(); + results[def.id] = { monitorId: data.monitor_id, name: def.name, class: def.class, query: def.query, frequency: def.frequency, region: def.region, facilityCode: def.facilityCode, states: def.states }; + console.log(` ✓ ${def.id}`); + } else { + console.error(` ✗ ${def.id}: ${res.status}`); + } + } + + fs.mkdirSync("./src/data", { recursive: true }); + fs.writeFileSync(outPath, JSON.stringify(results, null, 2)); + console.log(` Created ${Object.keys(results).length} monitors`); + return Object.keys(results).length; +} + +// ─── STEP 3+4: Run enrichment (v1 or v2) ──────────────────────────── + +async function step_runEnrichment(version: "v1" | "v2") { + const isV2 = version === "v2"; + console.log(`\n═══ STEP ${isV2 ? "4" : "3"}: Run ${version} enrichment (ultra2x) ═══`); + + const runsPath = isV2 ? "./src/data/enrichment-v2-runs.json" : "./src/data/enrichment-runs.json"; + + if (fs.existsSync(runsPath)) { + const existing = JSON.parse(fs.readFileSync(runsPath, "utf-8")); + console.log(` Already kicked off ${existing.runs?.length || 0} runs. Skipping.`); + return; + } + + const dcs = JSON.parse(fs.readFileSync("./public/data/datacenters.json", "utf-8")); + const schema = isV2 ? getV2Schema() : getV1Schema(); + + const BATCH_SIZE = 1000; + const enrichmentData: { groups: unknown[]; runs: { runId: string; groupId: string; facilityIndex: number; facilityName: string }[]; startedAt: string; processor: string; version: string; totalFacilities: number } = { + groups: [], runs: [], startedAt: new Date().toISOString(), processor: "ultra2x", version, totalFacilities: dcs.length, + }; + + for (let batchIdx = 0; batchIdx * BATCH_SIZE < dcs.length; batchIdx++) { + const batch = dcs.slice(batchIdx * BATCH_SIZE, (batchIdx + 1) * BATCH_SIZE); + const offset = batchIdx * BATCH_SIZE; + + // Create task group + const grpRes = await fetch(`${BASE_URL}/v1/tasks/groups`, { + method: "POST", headers: { "x-api-key": API_KEY!, "Content-Type": "application/json" }, + body: JSON.stringify({ metadata: { batch: String(batchIdx), type: `enrichment-${version}`, size: String(batch.length) } }), + }); + const grp = await grpRes.json(); + enrichmentData.groups.push({ groupId: grp.taskgroup_id, batchIndex: batchIdx, size: batch.length }); + console.log(` Group ${batchIdx + 1}: ${grp.taskgroup_id}`); + + // Submit in sub-batches of 500 + for (let j = 0; j < batch.length; j += 500) { + const sub = batch.slice(j, j + 500); + const inputs = sub.map((dc: Record, k: number) => ({ + input: buildEnrichmentInput(dc, isV2), + task_spec: { output_schema: schema }, + processor: "ultra2x", + metadata: { facility_index: String(offset + j + k), facility_name: (dc.name as string).slice(0, 100), version }, + })); + + const res = await fetch(`${BASE_URL}/v1/tasks/groups/${grp.taskgroup_id}/runs`, { + method: "POST", headers: { "x-api-key": API_KEY!, "Content-Type": "application/json" }, + body: JSON.stringify({ inputs }), + }); + const data = await res.json(); + const runIds = data.run_ids || []; + + for (let k = 0; k < runIds.length; k++) { + enrichmentData.runs.push({ runId: runIds[k], groupId: grp.taskgroup_id, facilityIndex: offset + j + k, facilityName: batch[j + k].name }); + } + console.log(` Submitted ${j + 1}-${j + sub.length}: ${runIds.length} run IDs`); + } + + // Save immediately after each group + fs.writeFileSync(runsPath, JSON.stringify(enrichmentData, null, 2)); + } + + console.log(` Kicked off ${enrichmentData.runs.length} ${version} enrichment tasks`); +} + +// ─── STEP 5+6: Collect results ─────────────────────────────────────── + +async function step_collectResults(version: "v1" | "v2") { + const isV2 = version === "v2"; + console.log(`\n═══ STEP ${isV2 ? "6" : "5"}: Collect ${version} enrichment results ═══`); + + const runsPath = isV2 ? "./src/data/enrichment-v2-runs.json" : "./src/data/enrichment-runs.json"; + if (!fs.existsSync(runsPath)) { console.log(" No runs file found. Skipping."); return; } + + const runData = JSON.parse(fs.readFileSync(runsPath, "utf-8")); + const enrichPath = "./public/data/enrichments.json"; + let enrichments: Record = {}; + if (fs.existsSync(enrichPath)) enrichments = JSON.parse(fs.readFileSync(enrichPath, "utf-8")); + + let collected = 0, pending = 0; + + for (let i = 0; i < runData.runs.length; i += 20) { + const batch = runData.runs.slice(i, i + 20); + const results = await Promise.all(batch.map(async (run: { runId: string; facilityIndex: number; facilityName: string }) => { + const key = String(run.facilityIndex); + // Skip if already collected (for v1) or already has v2 (for v2) + if (!isV2 && enrichments[key]) return null; + if (isV2 && (enrichments[key] as Record)?.v2RunId) return null; + + const statusRes = await fetch(`${BASE_URL}/v1/tasks/runs/${run.runId}`, { headers: { "x-api-key": API_KEY! } }); + if (!statusRes.ok) { pending++; return null; } + const statusData = await statusRes.json(); + if (statusData.status !== "completed") { pending++; return null; } + + const resultRes = await fetch(`${BASE_URL}/v1/tasks/runs/${run.runId}/result`, { headers: { "x-api-key": API_KEY! } }); + if (!resultRes.ok) return null; + return { run, result: await resultRes.json() }; + })); + + for (const r of results) { + if (!r) continue; + const key = String(r.run.facilityIndex); + const content = r.result?.output?.content; + if (!content) continue; + + if (isV2 && enrichments[key]) { + // Merge v2 into existing v1 + const existing = enrichments[key] as Record; + existing.enrichment = { ...(existing.enrichment as object), ...content }; + existing.basis = [...((existing.basis as unknown[]) || []), ...((r.result?.output?.basis || []) as unknown[])]; + existing.v2RunId = r.run.runId; + existing.v2CollectedAt = new Date().toISOString(); + } else { + enrichments[key] = { + runId: r.run.runId, facilityName: r.run.facilityName, facilityIndex: r.run.facilityIndex, + enrichment: content, basis: r.result?.output?.basis || [], collectedAt: new Date().toISOString(), + }; + } + collected++; + } + + if ((i + 20) % 100 === 0 || i + 20 >= runData.runs.length) { + fs.writeFileSync(enrichPath, JSON.stringify(enrichments, null, 2)); + process.stdout.write(`\r Collected: ${collected} new, ${pending} pending, ${Object.keys(enrichments).length} total`); + } + await sleep(100); + } + + console.log(`\n Done: ${collected} new ${version} enrichments collected`); + if (pending > 0) console.log(` ${pending} still pending — re-run this script later`); +} + +// ─── STEP 7: Build compact index ───────────────────────────────────── + +function step7_buildCompactIndex() { + console.log("\n═══ STEP 7: Build compact enrichment index ═══"); + const enrichPath = "./public/data/enrichments.json"; + if (!fs.existsSync(enrichPath)) { console.log(" No enrichments.json found. Skipping."); return; } + + const data = JSON.parse(fs.readFileSync(enrichPath, "utf-8")); + const compact: Record = {}; + + for (const [key, entry] of Object.entries(data)) { + const e = (entry as Record).enrichment as Record; + if (!e) continue; + compact[key] = { + description: e.description || "", verified_status: e.verified_status || "", + power_capacity_mw: e.power_capacity_mw || 0, total_sqft: e.total_sqft || 0, + year_online: e.year_online || "", construction_update: e.construction_update || "", + recent_news: e.recent_news || "", notable_tenants: e.notable_tenants || "", + verified_name: e.verified_name || "", verified_operator: e.verified_operator || "", + verified_owner: e.verified_owner || "", cooling_type: e.cooling_type || "", + tier_level: e.tier_level || "", fiber_providers: e.fiber_providers || "", + num_buildings: e.num_buildings || 0, campus_acres: e.campus_acres || 0, + utility_provider: e.utility_provider || "", tax_incentives: e.tax_incentives || "", + natural_hazard_zone: e.natural_hazard_zone || "", + }; + } + + const outPath = "./public/data/enrichments-compact.json"; + fs.writeFileSync(outPath, JSON.stringify(compact, null, 0)); + const sizeMb = (fs.statSync(outPath).size / 1024 / 1024).toFixed(1); + console.log(` Wrote compact index: ${Object.keys(compact).length} facilities (${sizeMb} MB)`); +} + +// ─── STEP 8: Upload per-facility to Vercel Blob ───────────────────── + +async function step8_uploadToBlob() { + console.log("\n═══ STEP 8: Upload per-facility enrichments to Vercel Blob ═══"); + if (!BLOB_TOKEN) { console.log(" BLOB_READ_WRITE_TOKEN not set. Skipping."); return; } + + const { put } = await import("@vercel/blob"); + const data = JSON.parse(fs.readFileSync("./public/data/enrichments.json", "utf-8")); + const keys = Object.keys(data); + let uploaded = 0; + + for (let i = 0; i < keys.length; i += 20) { + const batch = keys.slice(i, i + 20); + await Promise.all(batch.map(async (key) => { + await put(`enrichments/${key}.json`, JSON.stringify(data[key]), { + access: "private", allowOverwrite: true, contentType: "application/json", token: BLOB_TOKEN, + }); + uploaded++; + })); + process.stdout.write(`\r ${uploaded} / ${keys.length}`); + } + console.log(`\n Uploaded ${uploaded} per-facility files`); +} + +// ─── STEP 9: Create snapshot monitors ──────────────────────────────── + +async function step9_createSnapshots() { + console.log("\n═══ STEP 9: Create snapshot monitors ═══"); + const runsPath = "./src/data/enrichment-v2-runs.json"; + if (!fs.existsSync(runsPath)) { console.log(" No v2 runs file. Skipping."); return; } + + const snapshotPath = "./src/data/snapshot-monitors.json"; + let snapshots: Record = {}; + if (fs.existsSync(snapshotPath)) snapshots = JSON.parse(fs.readFileSync(snapshotPath, "utf-8")); + + const runData = JSON.parse(fs.readFileSync(runsPath, "utf-8")); + let created = 0, skipped = 0; + + for (const run of runData.runs) { + if (snapshots[String(run.facilityIndex)]) { skipped++; continue; } + + const res = await fetch(`${BASE_URL}/v1/monitors`, { + method: "POST", headers: { "x-api-key": API_KEY!, "Content-Type": "application/json" }, + body: JSON.stringify({ + type: "snapshot", frequency: "1d", processor: "base", + settings: { task_run_id: run.runId }, + ...(WEBHOOK_URL ? { webhook: { url: WEBHOOK_URL, event_types: ["monitor.event.detected"] } } : {}), + metadata: { facility_name: run.facilityName.slice(0, 100), facility_index: String(run.facilityIndex), type: "datacenter-snapshot" }, + }), + }); + + if (res.ok) { + const data = await res.json(); + snapshots[String(run.facilityIndex)] = { monitorId: data.monitor_id, runId: run.runId, facilityName: run.facilityName }; + created++; + } + + if ((created + skipped) % 50 === 0) { + fs.writeFileSync(snapshotPath, JSON.stringify(snapshots, null, 2)); + process.stdout.write(`\r Created: ${created}, Skipped: ${skipped}`); + } + await sleep(300); // Rate limit: ~200/min + } + + fs.writeFileSync(snapshotPath, JSON.stringify(snapshots, null, 2)); + console.log(`\n Created ${created} snapshot monitors (${skipped} skipped)`); +} + +// ─── Helpers ───────────────────────────────────────────────────────── + +function buildEnrichmentInput(dc: Record, isV2: boolean): string { + const parts = [ + `Facility: ${dc.name}`, `Operator: ${dc.operator}`, + dc.owner !== dc.operator ? `Owner: ${dc.owner}` : "", + `Location: ${dc.address}, ${dc.city}, ${dc.state}`, + `Type: ${dc.type}`, `Status: ${dc.status}`, + (dc.powerMw as number) > 0 ? `Power: ${dc.powerMw} MW` : "", + (dc.sqft as number) > 0 ? `Size: ${dc.sqft} sq ft` : "", + ].filter(Boolean).join("\n"); + + if (isV2) { + return `Research this U.S. data center facility thoroughly and provide detailed technical, financial, and risk information:\n\n${parts}\n\nVerify the facility name, operator, and owner. Find technical specs (cooling, tier, backup power, fiber, PUE), land and expansion details, financial signals (investment cost, utility provider, tax incentives), and risk factors (water source, natural hazards, community opposition).`; + } + return `Research this U.S. data center facility and provide verified, current information:\n\n${parts}\n\nVerify or correct all fields. Find the actual power capacity, square footage, and year online if not listed. Check for recent news, construction updates, and notable tenants.`; +} + +function getV1Schema() { + return { + type: "json" as const, json_schema: { + type: "object" as const, + properties: { + description: { type: "string" as const, description: "1-2 sentence summary of the facility" }, + verified_status: { type: "string" as const, enum: ["operational", "under-construction", "planned", "decommissioned"] }, + power_capacity_mw: { type: "number" as const, description: "Total power in MW. 0 if unknown." }, + total_sqft: { type: "number" as const, description: "Total footprint in sq ft. 0 if unknown." }, + year_online: { type: "string" as const, description: "Year online or expected. 'unknown' if indeterminate." }, + construction_update: { type: "string" as const, description: "Latest construction milestone. Empty if operational." }, + recent_news: { type: "string" as const, description: "Most notable recent development (last 6 months). Empty if none." }, + notable_tenants: { type: "string" as const, description: "Known anchor tenants. Empty if unknown." }, + }, + required: ["description", "verified_status", "power_capacity_mw", "total_sqft", "year_online", "construction_update", "recent_news", "notable_tenants"], + additionalProperties: false, + }, + }; +} + +function getV2Schema() { + return { + type: "json" as const, json_schema: { + type: "object" as const, + properties: { + verified_name: { type: "string" as const, description: "Correct, current facility name." }, + verified_operator: { type: "string" as const, description: "Current operating company." }, + verified_owner: { type: "string" as const, description: "Real estate owner (REIT, PE fund). Empty if unknown." }, + cooling_type: { type: "string" as const, description: "Primary cooling: air-cooled, evaporative, chilled water, liquid, hybrid, unknown." }, + tier_level: { type: "string" as const, description: "Uptime Institute tier. Empty if not certified." }, + backup_power_mw: { type: "number" as const, description: "Generator capacity in MW. 0 if unknown." }, + fiber_providers: { type: "string" as const, description: "Major fiber providers or 'carrier-neutral'. Empty if unknown." }, + pue: { type: "number" as const, description: "Power Usage Effectiveness. 0 if unreported." }, + campus_acres: { type: "number" as const, description: "Total campus area in acres. 0 if unknown." }, + expansion_capacity_mw: { type: "number" as const, description: "Planned expansion MW. 0 if none." }, + num_buildings: { type: "number" as const, description: "Number of DC buildings/phases. 0 if unknown." }, + estimated_investment_usd: { type: "number" as const, description: "Total project investment in USD. 0 if unknown." }, + utility_provider: { type: "string" as const, description: "Primary electric utility. Empty if unknown." }, + tax_incentives: { type: "string" as const, description: "Active tax incentives. Empty if none." }, + water_source: { type: "string" as const, description: "Primary water source: municipal, groundwater, recycled, air-cooled, unknown." }, + natural_hazard_zone: { type: "string" as const, description: "FEMA flood zone, seismic, hurricane, or 'low risk'. Empty if unknown." }, + community_opposition: { type: "string" as const, description: "Opposition or litigation. Empty if none." }, + }, + required: ["verified_name", "verified_operator", "verified_owner", "cooling_type", "tier_level", "backup_power_mw", "fiber_providers", "pue", "campus_acres", "expansion_capacity_mw", "num_buildings", "estimated_investment_usd", "utility_provider", "tax_incentives", "water_source", "natural_hazard_zone", "community_opposition"], + additionalProperties: false, + }, + }; +} + +// ─── Main ──────────────────────────────────────────────────────────── + +async function main() { + const csvPath = process.argv[2]; + if (!csvPath) { + console.error("Usage: PARALLEL_API_KEY=xxx npx tsx scripts/run-pipeline.ts /path/to/datacenters.csv"); + console.error("\nOptional env vars:"); + console.error(" BLOB_READ_WRITE_TOKEN — upload to Vercel Blob"); + console.error(" WEBHOOK_URL — snapshot monitor webhooks"); + process.exit(1); + } + + if (!fs.existsSync(csvPath)) { console.error(`CSV not found: ${csvPath}`); process.exit(1); } + + console.log("╔═══════════════════════════════════════════════╗"); + console.log("║ Datacenter Monitor — E2E Pipeline ║"); + console.log("╚═══════════════════════════════════════════════╝"); + console.log(` CSV: ${csvPath}`); + console.log(` API Key: ${API_KEY!.slice(0, 8)}...`); + console.log(` Blob: ${BLOB_TOKEN ? "configured" : "not set (skip upload)"}`); + console.log(` Webhook: ${WEBHOOK_URL || "not set (skip snapshot webhooks)"}`); + + const startTime = Date.now(); + + // Step 1: CSV → JSON + const facilityCount = step1_convertCsv(csvPath); + + // Step 2: Create monitors (parallel with enrichment) + await step2_setupMonitors(); + + // Step 3: Kick off v1 enrichment + await step_runEnrichment("v1"); + + // Step 4: Kick off v2 enrichment (can run in parallel with v1) + await step_runEnrichment("v2"); + + // Step 5: Collect v1 results (poll until done or pending) + await step_collectResults("v1"); + + // Step 6: Collect v2 results and merge + await step_collectResults("v2"); + + // Step 7: Build compact index for the app + step7_buildCompactIndex(); + + // Step 8: Upload per-facility to Vercel Blob + if (BLOB_TOKEN) await step8_uploadToBlob(); + + // Step 9: Create snapshot monitors + await step9_createSnapshots(); + + const elapsed = Math.round((Date.now() - startTime) / 1000); + console.log(`\n╔═══════════════════════════════════════════════╗`); + console.log(`║ Pipeline complete in ${elapsed}s `); + console.log(`║ ${facilityCount} facilities enriched `); + console.log(`║ ${MONITOR_DEFS.length} event-stream monitors created `); + console.log(`║ Run 'npm run dev' to see the app `); + console.log(`╚═══════════════════════════════════════════════╝`); +} + +main().catch(console.error); diff --git a/typescript-recipes/parallel-datacenter-map/scripts/seed-issue.ts b/typescript-recipes/parallel-datacenter-map/scripts/seed-issue.ts new file mode 100644 index 0000000..3175da9 --- /dev/null +++ b/typescript-recipes/parallel-datacenter-map/scripts/seed-issue.ts @@ -0,0 +1,153 @@ +#!/usr/bin/env npx tsx +/** + * Seed a back-issue of Datacenter Signal directly from real monitor events. + * + * The events themselves come from the Parallel Task API monitors (real + * headlines, summaries, categories, and source citations). Claude composes + * them into a themed newsletter body in ONE call — no dependency on the + * (currently slow) deep-research runs or the multi-turn lookup loop that was + * truncating output. Nothing is fabricated: every fact traces to a monitor + * event and its cited source. + * + * Usage: + * ... npx tsx scripts/seed-issue.ts "" + */ + +import * as fs from "fs"; +import Anthropic from "@anthropic-ai/sdk"; +import { put, list } from "@vercel/blob"; +import { wrapEmailTemplate } from "../src/lib/newsletter-writer"; +import monitorsData from "../src/data/monitors.json"; + +const API_KEY = process.env.PARALLEL_API_KEY || ""; +const ANTHROPIC_KEY = process.env.ANTHROPIC_API_KEY || ""; +const BLOB_TOKEN = process.env.BLOB_READ_WRITE_TOKEN || ""; +const BASE_URL = "https://api.parallel.ai"; + +function weekOf(n: number): string { + const ms = new Date("2024-01-01").getTime() + n * 7 * 24 * 60 * 60 * 1000; + return new Date(ms).toLocaleDateString("en-US", { month: "long", day: "numeric", year: "numeric" }); +} + +interface Evt { + headline: string; summary: string; category: string; severity: string; + eventDate: string; affectedEntities: string; monitorName: string; + citations: { title: string; url: string }[]; +} + +async function fetchMonitorEvents(): Promise { + const monitors = monitorsData as Record; + const all: Evt[] = []; + for (const [, info] of Object.entries(monitors)) { + try { + const res = await fetch(`${BASE_URL}/v1/monitors/${info.monitorId}/events`, { headers: { "x-api-key": API_KEY }, cache: "no-store" }); + if (!res.ok) continue; + const data = await res.json(); + for (const evt of data.events || []) { + const c = evt.output?.content; + if (!c || typeof c !== "object") continue; + const basis = evt.output?.basis || []; + const citations = basis.flatMap((b: { citations?: { title?: string; url?: string }[] }) => + (b.citations || []).map((x) => ({ title: x.title || "", url: x.url || "" }))).filter((x: {url: string}) => x.url).slice(0, 3); + all.push({ + headline: c.headline || "", summary: c.summary || "", category: c.category || "", + severity: c.severity || "informational", eventDate: evt.event_date || "", + affectedEntities: c.affected_entities || "", monitorName: info.name, citations, + }); + } + } catch {} + } + return all; +} + +const SYSTEM = `You are the editor of "Datacenter Signal," a weekly intelligence brief for datacenter infrastructure investors. Transform the supplied monitor events into a polished HTML newsletter body. + +VOICE: Analytical, concise, data-anchored — like a Financial Times or Stratechery briefing. No hype, no speculation, no emoji. + +STRUCTURE: +1. An issue line:

Issue N — Week of DATE

+2. "The Week in One Read" — 2-3 sentence executive summary anchored on the editorial focus +3. "Critical Developments" — 3-4 of the most important events (lead with ones matching the focus). For each: a category tag, a bold headline, and 2 paragraphs of analysis (what happened, stakeholders, implications, what to watch). Weave the provided source links inline using the publication name as anchor text. +4. "Regional Roundup" — one line per active region +5. "By the Numbers" — 6-10 key data points + +Use ONLY the supplied events as facts. Do not invent numbers, deals, or quotes beyond what the events state. If an event lacks a citation, state the fact without a link. + +HTML (inline styles only): +- H2:

+- Body:

+- Links: +- Bold: +- Lists: