Jonas Eberle Posted November 3, 2022 at 08:29 PM Posted November 3, 2022 at 08:29 PM I noticed that recently QuteScoop showed way less controller infos than what I am used to. I verified yesterday that EGLL_ATIS did not have "text_atis" in the JSON but I was able to request it with my xPilot sim client. I would think most of these stations should have a controller info set in their controller client: Quote # controller infos: curl --silent https://data.vatsim.net/v3/vatsim-data.json \ | jq '.controllers[] | select(.facility > 0) | {"c/s": .callsign, "controller info": .text_atis}' ... { "c/s": "EDDE_TWR", "controller info": null } { "c/s": "EDDH_E_GND", "controller info": [ "Callsign HAMBURG APRON", "East Apron + WestApron(when offline)" ] } { "c/s": "EDGG_GIN_CTR", "controller info": null } { "c/s": "EHAM_N_GND", "controller info": [ "Schiphol Ground - PDC logon EHAM", "Voice ATIS on 132.975 MHz", "Charts and info www.dutchvacc.nl" ] } { "c/s": "EDDN_TWR", "controller info": null } { "c/s": "EDDH_DEL", "controller info": null } { "c/s": "EDDF_N_APP", "controller info": null } { "c/s": "EPWA_X_APP", "controller info": null } { "c/s": "EPWA_T_APP", "controller info": [ "Warszawa Approach.", "Covering EPWA, EPMO, EPLL | For EPWA ATIS check frequency 120.450.", "Charts, feedback and airport coverage on plvacc.pl" ] } ...# ATISes: curl --silent https://data.vatsim.net/v3/vatsim-data.json \ | jq '.atis[] | select(.facility > 0) | {"c/s":.callsign, "controller info":.text_atis}'... { "c/s": "EFHK_ATIS", "controller info": null } { "c/s": "LLBG_A_ATIS", "controller info": null } { "c/s": "LLBG_D_ATIS", "controller info": null } { "c/s": "ESGG_ATIS", "controller info": [ "LANDVETTER ATIS D TIME 1950 ILS APCH RWY 21 TRL 65 MET REPORT", "WIND 140 DEG 10 KT VIS 10 KM CLD SCT 3300 FT T 8 DP 6 QNH 1006", "HPA LANDVETTER ATIS D" ] } { "c/s": "EDFH_ATIS", "controller info": null } ... Any changes in the network that might explain that? It seems to be about many clients, but not all. Link to comment Share on other sites More sharing options...
Recommended Posts