Skip to main content
A regional bank’s commercial real-estate desk underwrites a $4.2 M warehouse loan on a coastal industrial parcel in Houston. The collateral review needs to confirm the site is buildable, not subject to undisclosed floodplain restrictions, and has working access to power and rail infrastructure. The bank’s auditors will sample the file in 18 months and expect each data point to be re-verifiable.

The query

Address geocodes to lat=29.7604, lng=-95.3698 (downtown Houston). Run the site_selection preset:

The response

What the credit memo says

The relationship manager files a one-page collateral summary:
Site characteristics (Mireye Earth, fetched 2026-06-12T07:28Z)
  • Elevation 14.4 m (USGS EPQS / 3DEP) — above the local storm-surge plane.
  • Slope 0.7° (USGS 3DEP COG) — buildable as-is, no grading required.
  • Land cover “Barren or Impervious” (USFS LCMS) — already hardscaped urban ground; no greenfield conversion.
  • Not in a FEMA Special Flood Hazard Area (FEMA NFHL). NOTE: this is the NFHL SFHA polygon check, not a regulated flood-zone determination — the bank’s flood-insurance determination still needs a certified determination product.
  • Nearest major road 54 m (Overture Transportation).
  • Nearest transmission line 77 m at 138 kV, class 100–161 kV (EIA Energy Atlas) — service feasible without trunk extension.
  • No conservation easement intersection (PAD-US).
  • Parcel record: none at this point on the Regrid free tier (parcel_id: null, confidence unknown) — parcel geometry deferred to the title package.
  • Protected-area status unavailable this fetch — surfaced in partial_failures, recorded as a data gap rather than assumed clear.
The auditor in 2027 can click any source_url, plug the lat/lng into the agency’s own viewer (e.g. https://atlas.eia.gov/), and see the transmission line that was 77 m away on the underwrite date.

The honesty pattern matters here

It already did its job in the response above: the two protected-area fields arrived in partial_failures with retryable: false instead of silently reading as clear. The memo records the gap and the desk decides whether to re-pull later or resolve it another way. The retryable flag drives the runbook. A transient upstream failure (e.g. an EIA Atlas timeout) comes back retryable: true — the underwriting system retries with backoff. A retryable: false failure means the source has no data at this coordinate or is missing an upstream asset; retrying won’t help, so the gap goes in the memo: “protected-area status unavailable at underwrite time; deferred.” Either way, the bank never makes a credit decision on a value that silently substituted a stale or approximate number.

Protected-land encumbrances: a worked rejection

Same desk, different parcel. The borrower offers lat=37.8651, lng=-119.5383 (a parcel in the Sierra Nevada) as collateral for a $1.8 M loan. The borrower’s broker swears the land is clear of restrictions. The desk pulls the encumbrance fields:
No conservation easement — the broker was right about that — but the parcel intersects final designated USFWS critical habitat. That is a federal Endangered Species Act overlay: Section 7 consultation applies to any federally permitted work, which changes the development story the loan was priced on. The loan goes back for renegotiation or pricing adjustment. (When a parcel does intersect a PAD-US easement, intersects_conservation_easement flips true and easement_holder names the holding organization for the title follow-up.)

Why this works for lending

  • Per-source citations survive auditor sampling. No vendor lookup required years later.
  • partial_failures honesty prevents silent substitutions that would otherwise contaminate the underwriting record.
  • Federal-only sources sidestep contractual issues with proprietary data on long-tenor loans where the data license might expire before the loan does.
  • ttl_seconds hints to the bank’s data warehouse how often each source is worth re-fetching — Census/Overture boundaries once a year, EIA daily.

What it does NOT do

  • Not a certified flood-zone determination. within_floodplain_polygon checks the FEMA National Flood Hazard Layer SFHA polygons directly, but a regulated flood-insurance determination (SFHDF) must come from a certified determination vendor.
  • Not an appraisal. Building values, comparable sales, and cap rates live elsewhere.
  • Not a title search. Conservation easements are surfaced via PAD-US; private easements, liens, and access agreements require a title search.