like hardcoding the entire json list of colos, and then looking up for region?
like hardcoding the entire json list of colos, and then looking up for region?
substring(cf.ray_id, 17) get you most of the way there?MIA for my location.substring(cf.ray_id, 17) in {"MIA" "EWR"}



substring(cf.ray_id, 17)MIAsubstring(cf.ray_id, 17) in {"MIA" "EWR"}curl "https://colo.cloudflare.chaika.me/?iataregion" | jq '.results | to_entries | map(select(.value == "wnam")) | map(.key) | map("\"" + . + "\"") | join(" ")' -r
curl "https://colo.cloudflare.chaika.me/?iataregion" | jq '.results | to_entries | map(select(.value == "enam")) | map(.key) | map("\"" + . + "\"") | join(" ")' -r
curl "https://colo.cloudflare.chaika.me/?iataregion" | jq '.results | to_entries | map(select(.value == "weur")) | map(.key) | map("\"" + . + "\"") | join(" ")' -r
curl "https://colo.cloudflare.chaika.me/?iataregion" | jq '.results | to_entries | map(select(.value == "eeur")) | map(.key) | map("\"" + . + "\"") | join(" ")' -r
curl "https://colo.cloudflare.chaika.me/?iataregion" | jq '.results | to_entries | map(select(.value == "apac")) | map(.key) | map("\"" + . + "\"") | join(" ")' -r