# Region model. `probe_regions` are where OUR probes sit (sources); `target_regions` are where destinations are # anchored. Both use the same id space so a Pressure Front can be expressed as source → destination. # Centroids are approximate and only used for map placement / arc drawing. regions: na-east: { name: "North America East", continent: "North America", lat: 43.0, lon: -76.0 } na-central: { name: "North America Central", continent: "North America", lat: 41.0, lon: -95.0 } na-west: { name: "North America West", continent: "North America", lat: 40.0, lon: -120.0 } latam: { name: "Latin America", continent: "South America", lat: -15.0, lon: -55.0 } eu-west: { name: "Western Europe", continent: "Europe", lat: 49.0, lon: 3.0 } eu-north: { name: "Northern Europe", continent: "Europe", lat: 60.0, lon: 18.0 } eu-east: { name: "Eastern Europe", continent: "Europe", lat: 50.0, lon: 22.0 } eu-east-med: { name: "Eastern Mediterranean", continent: "Europe", lat: 38.0, lon: 30.0 } mena: { name: "Middle East & North Africa", continent: "Asia", lat: 26.0, lon: 45.0 } africa: { name: "Sub-Saharan Africa", continent: "Africa", lat: -5.0, lon: 22.0 } asia-south: { name: "South Asia", continent: "Asia", lat: 22.0, lon: 78.0 } asia-se: { name: "Southeast Asia", continent: "Asia", lat: 5.0, lon: 108.0 } asia-east: { name: "East Asia", continent: "Asia", lat: 35.0, lon: 125.0 } oceania: { name: "Oceania", continent: "Oceania", lat: -30.0, lon: 140.0 } global: { name: "Global / anycast", continent: "Global", lat: 0.0, lon: 0.0 } # Country → region (ISO-3166 alpha-2). Countries missing here default to their continent via the fallback below. country_regions: CA: na-east US: na-east # refined by `us_states` when a probe/target carries a state MX: latam BR: latam AR: latam CL: latam CO: latam PE: latam GB: eu-west IE: eu-west FR: eu-west DE: eu-west NL: eu-west BE: eu-west LU: eu-west CH: eu-west AT: eu-west ES: eu-west PT: eu-west IT: eu-west SE: eu-north "NO": eu-north DK: eu-north FI: eu-north IS: eu-north EE: eu-north LV: eu-north LT: eu-north PL: eu-east CZ: eu-east SK: eu-east HU: eu-east RO: eu-east BG: eu-east UA: eu-east GR: eu-east-med TR: eu-east-med CY: eu-east-med IL: mena AE: mena SA: mena QA: mena EG: mena MA: mena ZA: africa NG: africa KE: africa IN: asia-south PK: asia-south BD: asia-south SG: asia-se ID: asia-se MY: asia-se TH: asia-se VN: asia-se PH: asia-se JP: asia-east KR: asia-east CN: asia-east HK: asia-east TW: asia-east AU: oceania NZ: oceania us_states: west: [CA, OR, WA, NV, AZ, UT, CO, ID, MT, WY, NM, AK, HI] central: [TX, OK, KS, NE, SD, ND, MN, IA, MO, AR, LA, WI, IL, IN, MI, OH, KY, TN, MS, AL] east: [NY, NJ, PA, MA, CT, RI, VT, NH, ME, MD, DE, VA, WV, NC, SC, GA, FL, DC]