NYS RENEWABLE
INTELLIGENCE
  • Dashboard
  • Night Desk
  • Projects
  • Opposition Monitor
  • Actors
  • Funding Network
  • Disinformation
  • Legislation
  • Knowledgebase
  • Counter-Measures
  • Reports
  • Map
  • Data Explorer
  • Admin

Quick Search

Data Explorer

Query the knowledgebase directly — visually, in SQL, in plain English, or over the REST API.

8
10 tables · 17,208 rows6,742 embeddings6 API endpointssynced 6 min ago

Schema10 tablesThe relational core: PostgreSQL with Apache AGE for graph traversal and pgvector for document search.The relational core: PostgreSQL with Apache AGE for graph traversal and pgvector for document search.

Solar and battery storage projects tracked across NYS.

Rows indexed
17,208
Embeddings
6,742
Last sync
6 min ago

Query WorkspaceThree ways into the same warehouse: a visual builder, raw SQL, or a natural language question compiled by the model.Three ways into the same warehouse: a visual builder, raw SQL, or a natural language question compiled by the model.

read replica · us-east-1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SELECT p.name              AS project,
       c.name              AS county,
       p.technology        AS tech,
       p.capacity_mw       AS mw,
       p.jurisdiction,
       p.status,
       count(DISTINCT f.org_id) AS opposing_orgs,
       count(f.filing_id)       AS filings
FROM   projects p
JOIN   counties c ON c.fips = p.county_fips
LEFT   JOIN dockets d  ON d.project_id = p.project_id
LEFT   JOIN filings f  ON f.docket_id = d.docket_id
JOIN   organizations o ON o.org_id = f.org_id
       AND o.tier IN ('front','local')
WHERE  p.technology IN ('solar', 'storage', 'solar+storage')
  AND  p.decision_date > date '2024-06-01'
GROUP  BY 1, 2, 3, 4, 5, 6
ORDER  BY filings DESC
LIMIT  50;
Snippets:

ResultsContested projects by countyQuery results stream from the read replica. Sorting is applied client-side on the returned page.Query results stream from the read replica. Sorting is applied client-side on the returned page.

84 ms
24 rows·8 columns·contested-projects
Wilton Solar ProjectSaratogasolar20LocalUnder Review424
Warwick Battery HubOrangestorage80ORESUnder Review322
Romulus Solar CenterSenecasolar+storage110ORESUnder Review319
Bath Valley SolarSteubensolar+storage120ORESUnder Review318
Silver Creek SolarChautauquasolar+storage90ORESUnder Review317
Berkshire Storage ProjectTiogastorage60ORESUnder Review215
Somerset Storage CenterNiagarastorage50ORESDenied314
Stillwater Farms SolarSaratogasolar12LocalDenied313
Cazenovia Fields SolarMadisonsolar14LocalDenied212
Chaumont Bay StorageJeffersonstorage30LocalDenied312
Amenia Ridge SolarDutchesssolar16LocalUnder Review311
Massena Solar FarmSt. Lawrencesolar100ORESUnder Review210
Benton SolarYatessolar18LocalDenied310
Lenox Battery StorageMadisonstorage45LocalUnder Review29
Watertown North SolarJeffersonsolar65ORESApproved w/ Conditions29
Schodack Storage HubRensselaerstorage55ORESApproved w/ Conditions28
Kaydeross StorageSaratogastorage40ORESApproved w/ Conditions28
Hanover Ridge SolarChautauquasolar18LocalWithdrawn27
Mamakating StorageSullivanstorage20LocalDenied27
Pine Plains StorageDutchessstorage25LocalWithdrawn26
Shawangunk SolarUlstersolar26LocalApproved w/ Conditions26
Verona Battery ParkOneidastorage48LocalUnder Review15
Goshen Meadows SolarOrangesolar24LocalApproved25
Lockport Solar ArrayNiagarasolar22LocalApproved w/ Conditions14

Saved Queries8Saved by you and shared across the research team. Opening one swaps the result set.Saved by you and shared across the research team. Opening one swaps the result set.

Query Historythis session