Moratorium Nation

Methodology

How this dataset was built, in plain English.

What we set out to do

Every U.S. local government has the legal authority to pause new development of certain kinds for a defined period. When a city council, county commission, or township board uses that authority, they typically do it through a public ordinance or resolution that is published online (sometimes), posted in a meeting agenda (often), and recorded in board minutes (almost always, eventually).

Our goal: identify every such moratorium adopted in the U.S. that targets data centers, battery storage, solar, wind, or cryptocurrency mining — and capture enough structured information about each one to support cross-jurisdictional comparison.

How we did it

Three phases.

Phase 1: Document collection

We deployed AI-assisted research agents (built on the OpenAI Codex CLI with web-search enabled) across all 50 states. Each agent operated within a single state's scope and was given a research brief for that state.

The agents searched:

Each agent was instructed to download original documents — PDFs of ordinances, HTML of agenda pages, Word documents — and save them locally with provenance metadata (source URL, download timestamp, retrieval method).

We supplemented this with a SerpAPI sweep for "<state>" "data center" moratorium and similar queries, which surfaced documents the per-state agents had missed.

Output of Phase 1: approximately 4,400 unique source documents, totaling ~12 GB, archived in their native formats. Each has a .meta sidecar JSON file recording its provenance.

Phase 2: Classification

Not every document we collected is a moratorium document. Many are project announcements, EIA reports, news articles unrelated to any specific ordinance. We classified each document with a small language model (gpt-5.4-mini at the OpenAI flex tier) using structured prompts that produced JSON-valid classifications:

Output of Phase 2: 709 documents classified as moratorium-related across the corpus. About 1,123 of the 4,400 are primary legal sources of one kind or another.

Phase 3: Structured extraction

For each moratorium-related document, we used a larger language model (gpt-5.5 at the OpenAI flex tier) with a detailed extraction schema to produce a structured record.

The extraction schema captures 60+ fields per document, organized into five tiers that mirror the 44-clause taxonomy used in the working paper:

Each extraction received a confidence score from the language model. We retained extractions with confidence ≥ 0.4 for downstream analysis. The cohort is n = 348, with mean confidence 0.72 and range 0.40 to 0.95.

Output of Phase 3: the JSONL file at data/structured_extractions.jsonl.

Manual review and cleaning

We manually reviewed every extraction record to:

As of the v2026.07 refresh the cleaned inventory has 323 entries across 35 states (data/moratorium_inventory.csv). It held 222 at v2026.04.4; see Phase 5 below for how the refresh cycle works.

Phase 4: Geocoding (added v2026.04.2)

Each row in the cleaned inventory was assigned WGS84 latitude and longitude coordinates representing the jurisdiction's centroid. Two-tiered approach:

  1. Primary geocoder: OSM Nominatim. Free, open-source, with reasonable U.S. administrative boundary coverage. Rate-limited to 1 request/second per the public API usage policy.
  2. Fallback: U.S. Census Geocoder. Used when Nominatim returns no result. The Census Geocoder is authoritative for U.S. jurisdictions but works best for street addresses; for "Jurisdiction, State" queries we found Nominatim more reliable.

Of 323 rows, 321 (99.4%) are successfully geocoded. The 2 blanks are aggregate meta-rows (Other Reported Local Moratoria, Michigan and Proposed or Rejected Local Pauses, Maryland) that aren't real geographic points.

After geocoding, a triple-check audit ran 89 verifications across three independent methods:

  1. Random sampling against geographic knowledge (24 rows): manually verify each coordinate matches a well-known location.
  2. Wikipedia GeoSearch reverse-lookup (50 rows): query Wikipedia for pages within 10 km of our coordinates; verify the jurisdiction name appears among them.
  3. Targeted high-risk subset (15 rows): the 4 manual within-state-ambiguity fixes plus other generic township names where ambiguity is most likely.

Across all 89 verifications, zero confirmed wrong geocodes (after the 4 manual Ohio corrections in v2026.04.2). The audit caught and corrected:

Each correction used article-context disambiguation (legal_basis, trigger, and news-source mentions). Treat the lat/lon column as ≥99% accurate. The script is scripts/geocode_inventory.py; re-run after adding new rows to fill in their coordinates.

Why the inventory (n=323) and the extraction cohort (n=348) differ

Right — the numbers can be confusing. Here's the difference:

The two numbers measure different things and do not need to match. The 323 is the headline count of moratoria; the 348 is the size of the line-coded sample used for clause-prevalence percentages.

What we don't claim

Phase 5: The refresh cycle (added v2026.07)

Phases 1-4 build a dataset. Keeping it true is a different problem: a moratorium is a time-bounded instrument, so a correct record decays into a wrong one on a known date, with no external signal. The v2026.07 refresh introduced an explicit cycle for this, and it is the procedure future refreshes should follow.

1. Gate before touching anything. scripts/validate_dataset.py is the executable form of the codebook — closed vocabularies, date/duration coherence, ID uniqueness, geocoding bounds, [VERIFY] accounting, and agreement between the CSVs and summary_stats.json. Run it first, so any error found later is attributable to the refresh rather than inherited.

2. Derive the worklist, don't guess it. scripts/build_worklist.py computes which rows need attention as of a reference date, and why:

Bucket Meaning
expired_in_force recorded in force, but date_enacted_iso + duration_days has already passed
until_date_stale in force, ends on a calendar date not captured in typed columns
stale_pending proposed, and old enough that it has surely been decided
open_ended in force with no scheduled end — currency must be affirmatively confirmed
verify_backlog carries one or more [VERIFY ...] markers
unverified_date adoption date never confirmed against a primary source

Each item is emitted with the exact question to answer, so the researcher is not inferring the ask. In v2026.07 this produced 160 of 222 rows needing work.

3. Partition and fan out. scripts/make_packets.py splits the worklist into per-state packets, matching how the sources are organized — one state's portals, minutes, and legislature. Research is then parallel and independent.

4. Research writes JSON, never CSV. Every pass emits a decision file conforming to work/schemas/research_decision.schema.json: an outcome (confirmed_unchanged / status_changed / corrected / unresolvable), the proposed field changes with their prior values, resolutions for each [VERIFY] marker, and evidence with a source-type ranking that puts ordinances and minutes above news. unresolvable is a first-class outcome and is recorded rather than papered over.

5. Merge deterministically, with a conflict guard. scripts/apply_research.py is the only thing that writes findings into the inventory. It requires explicit answer-file paths (never selecting by modification time), validates against the schema, and refuses any change whose stated prior value no longer matches the CSV — which is how a stale answer, written against a revision another pass has since corrected, gets caught instead of silently overwriting newer data. Every applied change is logged to work/audit/.

6. Flag weak evidence rather than laundering it. A new instrument admitted on news-only evidence, or below a confidence threshold, automatically receives a [VERIFY ...] marker naming what is missing. It therefore reappears in the next refresh's worklist instead of hardening into apparent fact.

7. Reconcile, re-geocode, regenerate, re-gate. reconcile_durations.py enforces the codebook's one valid duration_days/duration_kind combination; geocode_inventory.py plus declared overrides fill coordinates; the generators rebuild every artifact; then the validator runs again.

A property worth preserving: every step is idempotent. Re-running the merge over already-applied answers is a clean no-op, which is what makes incremental application safe when different states' research lands at different times.

Reproducibility

Every step of the pipeline can be re-run. The scripts are in scripts/ with a README explaining each one. To regenerate every artifact from the source data:

pip install pandas matplotlib seaborn geopandas shapely markdown pymdown-extensions

python3 scripts/validate_dataset.py          # gate
python3 scripts/fetch_basemap.py             # one-time: Census state shapefile
python3 scripts/build_summary_stats.py       # data/summary_stats.json
python3 scripts/build_geojson.py             # site/moratoria.geojson
python3 -m scripts.generate_tables           # tables/*.tex
PYTHONPATH=scripts python3 -m moratorium_maps all   # figures/{pdf,svg,png}/
python3 scripts/make_timeline.py             # site/timeline.svg
python3 scripts/update_state_counts.py       # states/
python3 scripts/build_site.py                # HTML site

Before v2026.07 these commands did not work: the table and map modules had been copied from the private working repository without repathing, and summary_stats.json and moratoria.geojson had no generator at all. Both are fixed, which is why the artifacts in this release are reproducible from the shipped CSVs.

The original document corpus (~12 GB) is not in this repository (it's hosted separately on Zenodo as the supplementary data deposit) but the cleaned inventory + structured extractions are sufficient to reproduce all published statistics.

Tooling and models

Step Tool Model
Document discovery OpenAI Codex CLI with web-search gpt-5.5 at medium reasoning effort
State-month chronology OpenAI Codex CLI with web-search gpt-5.5 at medium reasoning effort
SerpAPI ordinance search google-search-results Python package n/a
Document download Playwright + stealth wrappers n/a
OCR (image-based PDFs) EasyOCR + Tesseract n/a
PDF classification pydantic-ai with OpenAI provider gpt-5.4-mini at flex tier
Structured extraction pydantic-ai with OpenAI provider gpt-5.5 at flex tier
Real-browser verification Playwright + system Chrome (Xvfb) for JS-rendered portals n/a
Aggregation, table generation, mapping Python (pandas, geopandas, matplotlib, seaborn) n/a

Updates

Each refresh of the dataset is a tagged GitHub release (v2026.04, v2026.07, ...) with a corresponding Zenodo DOI (planned). Refresh cadence is roughly quarterly while the moratorium wave is active.