yindengxie Posted April 9, 2021 Report Posted April 9, 2021 Hello Pete, I want to use your FSUIPC6 (offsets) to set weather P3Dv5. At present, the 0x0238 is used to set Hour of local time very well. Can you tell me how to set snow, rain, wind, and cloud weather functions? Very many thanks for your help and supports! Dengxie
John Dowson Posted April 10, 2021 Report Posted April 10, 2021 First, you posted in the FAQ section, where it explicitly states NOT for Support Requests. I have moved your post to the main support forum. 13 hours ago, yindengxie said: Can you tell me how to set snow, rain, wind, and cloud weather functions? You can use the offset area starting at B000, which uses METAR weather strings. However, you may find it easier to use a 3rd party weather engine to control weather, either free or payware.
yindengxie Posted April 11, 2021 Author Report Posted April 11, 2021 Hello Pete! You always give me great help and support, THANKS! I use your FSUIPC6 0X238 to set Hour of local time, P3Dv5 is working very well. However, I use your FSUIPC6 0X04D4 to set Dew point, whatever values I set, the P3Dv5 always is not changed as the attached picture. Please you help me. Very many thanks! Dengxie
Pete Dowson Posted April 11, 2021 Report Posted April 11, 2021 1 hour ago, yindengxie said: However, I use your FSUIPC6 0X04D4 to set Dew point, whatever values I set, the P3Dv5 always is not changed as the attached picture. Please you help me. Changing individual weather values isn't always successful due to the quirks of the FSX/P3D weather interface, which is very convoluted. You would normally have to first put the weather system into Global mode (i.e. the same weather everywhere). That can be done via the New Weather Interface (see below), You need to understand that there is no weather actually defined for every spot on the globe. The weather is only defined at Weather Stations (as listed in wxstationlist.bin). The weather elsewhere is calculated by extrapolation. So to change the weather in one place you need to change all the nearby weather stations (by ICAO ID). The more reliable way is via the METAR strings, as John suggested, or using the New Weather Interface (see the document in your FSUIPC SDK). The METAR strings set weather at weather stations (you give the ICAO ID). You can set the global or general weather that way too, but that only takes effect if you put the weather into global mode except that the global setting is also the default weather for any weather station for which no METAR has been read. Also try using WeatherSet2 to see what happens. That uses the NWI. One last thing: sometimes the weather changes slowly to your settings. This is deliberate. No one likes sudden changes. If you want more immediate and much easier controls you need to revert to the less well simulated weather in FS2000 and before. It got more and more complex after that. Most of the offsets other than the NWI and the METAR string method date from the very early versions, and, whilst FSUIPC does its best to apply them, it is well nigh impossible without prior settings paving the way. Nowadays, with such high quality weather setting programs avaialable, some of which are using much more complex hooks into FSX/P3D, the facilities to set weather via FSUIPC is much less used, and the those weather programs which do use it use the METAR string or NWI methods. Pete
yindengxie Posted April 11, 2021 Author Report Posted April 11, 2021 Hello Pete! You patiently gave me such a detailed explanation, and I must thank you very much. It is because of your help and support that I have learned and understood a lot about FSUIPC and P3D. Have a nice weekend, PETE! Dengxie
yindengxie Posted April 11, 2021 Author Report Posted April 11, 2021 Hello Pete, First, I thank you very much for your help. According to your suggestion, I test METAR function in your FSUIPC6 to P3Dv5, it works very well. Now I want to try your New Weather Interface (NWI), but I can not find a sample (NWI) program to test NWI function. If it is convenient for you, PLEASE you give me a simple sample program to test the NWI function for your FSUIPC6 to P3Dv5. THANKS and Best Regards! Dengxie
yindengxie Posted April 19, 2021 Author Report Posted April 19, 2021 Hello Pete, Good Morning! I use your FSUIPC6 0XB000 to send the attached P3D METAR Format data to P3D, and find the P3D weather not to change. Can you give me some help? THANKS! Dengxie P3D Metar Data Format.docx
Pete Dowson Posted April 19, 2021 Report Posted April 19, 2021 18 minutes ago, yindengxie said: I use your FSUIPC6 0XB000 to send the attached P3D METAR Format data You haven't attached your METAR string, so I can't even look at it. You certainly didn't need to post the standard SimConnect documentation of the format! Don't you think we've got access to that in any case? Are you positioned at the weather station you are setting? If so, wait for it to change. If not then the weather is interpolated between the station you set and those around you. And will still take time to change. If you are setting global weather you need to set Global mode (same weather everywhere) to use it. That's done by a different NWI call documented in the NWI text document. Many weather programs using SimConnect were only ever fully successful using global weather. It gets complicated otherwise. Pete
yindengxie Posted April 19, 2021 Author Report Posted April 19, 2021 Hello Pete, THANKS for your quick reply! I send the following lines to your FSUIPC6=> P3Dv5 and find not any changes in the weather of P3D. sprintf(TxBuffer, "GLOB METAR 101208Z 27055KT +VCTSRA"); FSUIPC_Write(0xB000, strlen(TxBuffer)+1, (void *)TxBuffer, &dwResult); FSUIPC_Process(&dwResult); ======================================================== What is the problem? THANKS for your help! Best Regards! Dengxie
John Dowson Posted April 19, 2021 Report Posted April 19, 2021 2 hours ago, yindengxie said: What is the problem? Did you do this: 7 hours ago, Pete Dowson said: If you are setting global weather you need to set Global mode (same weather everywhere) to use it. That's done by a different NWI call documented in the NWI text document. ? If not, please do that before setting global weather. Also, try activating Weather logging in FSUIPC6, and if you still have issues please show us your FSUIPC6.log file.
yindengxie Posted April 19, 2021 Author Report Posted April 19, 2021 FSUIPC6.ini Hello Pete, Thanks for your reply. The attached is FSUIPC6.ini file. Can you help me how to set for activating Weather logging in FSUIPC6? NOTE: I do not use NWI for weather setting. I use ONLY 0XB000 to set weather for P3D. sprintf(TxBuffer, "GLOB METAR 101208Z 27055KT +VCTSRA"); FSUIPC_Write(0xB000, strlen(TxBuffer)+1, (void *)TxBuffer, &dwResult); FSUIPC_Process(&dwResult); Best Regards! Dengxie ---------------------------------------------------------------------------- sprintf(TxBuffer, "GLOB METAR 101208Z 27055KT +VCTSRA"); FSUIPC_Write(0xB000, strlen(TxBuffer)+1, (void *)TxBuffer, &dwResult); FSUIPC_Process(&dwResult); [General] UpdatedByVersion=6011 History=9ZLCRZHA3PKEX3TIRG9US AxesWrongRange=No TCASid=Flight TCASrange=40,3 AxisCalibration=No DirectAxesToCalibs=No ShowMultilineWindow=Yes SuppressSingleline=No SuppressMultilineFS=No AxisIntercepts=No DontResetAxes=No ThreadAffinityMask=x0 LuaAffinityMask=x0 InitDelay=0 GetNearestAirports=No LogOptionProtect=Yes TimeForLuaClosing=2 WeatherReadFactor=2 WeatherRewriteSeconds=1 TrafficStallTime=1 InitialStallTime=10 NormalStallTime=1 LuaRerunDelay=66 ComReadLoopTime=20 FSVersionUsed="Lockheed Martin® Prepar3D® v5",5.1.12.26829 SimConnectUsed=5.1.0.0 ControlsListBuild=26829 Console=No ConsoleWindowTopMost=No [WideServer] WideFSenabled=Yes [Programs] Run1=DELAY,KILL,C:\FSUIPC_YIN\Release\FSUIPC_YIN.EXE Delay=1 [Window.Message Window] NewDocked=8, 25, 1008, 17
Pete Dowson Posted April 20, 2021 Report Posted April 20, 2021 11 hours ago, yindengxie said: I do not use NWI for weather setting. I use ONLY 0XB000 You can only set GLOB via the facility to do so in the NWI. After that you can set the global weather via B000. Weather set with GLOB otherwise merely sets the default weather for any weather stations for which no METAR report is available. So, unless you set global mode, you are very unlikely see see any result from what you are doing. Pete
yindengxie Posted April 24, 2021 Author Report Posted April 24, 2021 Hello Pete, Good Morning! According to your suggestion, I write weather program part as follows, but I still can not make the P3D weather any change. ------------------------------------------------------------------ sprintf(TxBuffer, "GLOB"); FSUIPC_Write(0xC800, strlen(TxBuffer)+1, (void *)TxBuffer, &dwResult); sprintf(TxBuffer, "GLOB METAR 101208Z 27055KT +VCTSRA"); //Thunder FSUIPC_Write(0xB000, strlen(TxBuffer)+1, (void *)TxBuffer, &dwResult); FSUIPC_Process(&dwResult); ---------------------------------------------------------------------- If it is convenient for you, please you send me a short sample program to test METAR weather data from FSUIPC6 to P3Dv5. THANKS! Dengxie
John Dowson Posted April 24, 2021 Report Posted April 24, 2021 1 hour ago, yindengxie said: but I still can not make the P3D weather any change. ------------------------------------------------------------------ sprintf(TxBuffer, "GLOB"); FSUIPC_Write(0xC800, strlen(TxBuffer)+1, (void *)TxBuffer, &dwResult); sprintf(TxBuffer, "GLOB METAR 101208Z 27055KT +VCTSRA"); //Thunder FSUIPC_Write(0xB000, strlen(TxBuffer)+1, (void *)TxBuffer, &dwResult); FSUIPC_Process(&dwResult); You have to write the controlling command (GLOB) to offset 0xC800 last - it is this write that triggers the weather change. See here for more details: I'm not sure if you also need the GLOB control in the Metar string, maybe @Pete Dowson can clarify. 1 hour ago, yindengxie said: If it is convenient for you, please you send me a short sample program Try the WeatherSet2 utility, available from: although I'm not sure if the source is included....
Pete Dowson Posted April 24, 2021 Report Posted April 24, 2021 58 minutes ago, John Dowson said: You have to write the controlling command (GLOB) to offset 0xC800 last - it is this write that triggers the weather change. Actually I think that need is related to the setting of the weather using the Binary structures in the full NWI. I think the GLOB METAR is written in any case, and would apply if Global mode was active in any case. 2 hours ago, yindengxie said: sprintf(TxBuffer, "GLOB"); FSUIPC_Write(0xC800, strlen(TxBuffer)+1, (void *)TxBuffer, &dwResult); Writing GLOB to C800 does nothing. Please do read the text provided in the SDK. As described, setting GLOB mode is just one of the commands you can send using this structure (see the NewWeather.h header file which you should include in your program. typedef struct _NewWeather { unsigned short uCommand; // C000 C400 C800 CC00 unsigned short uFlags; // C002 C402 C802 CC02 // Not used until FSX - see below unsigned int ulSignature; // C004 C404 C804 CC04 char chICAO[4]; // C008 C408 C808 CC08 unsigned short uDynamics; // C00C C40C C80C CC0C // 0=none, 4=extreme unsigned short uSeconds; // C00E C40E C80E CC0E // FSX only -- see below double dLatitude; // C010 C410 C810 CC10 // LLA zero for GLOB or unknown ICAO double dLongitude; // C018 C418 C818 CC18 int nElevation; // C020 C420 C820 CC20 // metres * 65536 unsigned int ulTimeStamp; // C024 C424 C824 CC24 // mSecs since start of session NewPress Press; // C028 C428 C828 CC28 NewVis Vis; // C02C C42C C82C CC2C // Base Vis -- for upper Vis layers see int nTempCtr; // C034 C434 C834 CC34 // Number of temperature layers NewTemp Temp[24]; // C038 C438 C838 CC38 int nWindsCtr; // C0F8 C4F8 C8F8 CCF8 // Number of wind layers NewWind Wind[24]; // C0FC C4FC C8FC CCFC int nCloudsCtr; // C27C C67C CA7C CE7C // Number of Cloud layers (max 16 in FSX, was 24 NewCloud Cloud[16]; // C280 C680 CA80 CE80 char chUTCstamp[6]; // C380 C780 CB80 CF80 // UTC time stamp on METAR (internal use) unsigned short fWriteback; // C386 C786 CB86 CF86 // Flags for writing back to FSX (internal use only) unsigned long ulSettingTimeStamp; // C388 c788 CB88 CF88 // Timestamp METAR sent (internal use) int nUpperVisCtr; // C38C C78C CB8C CF8C // Number of upper Vis layer (new in FSX) NewVis UpperVis[12]; // C390 C790 CB90 CF90 unsigned short uSpare[8]; // C3F0 C7F0 CBF0 CFF0 } NewWeather; You'll see that you need to write this with a Command in C800 according to // Commands (for set weather area only) #define NW_SET 1 // Set weather via FSUIPC user filters #define NW_SETEXACT 2 // Set weather bypassing user filters #define NW_CLEAR 3 // Clear all weather, but leave dynamic setting alone #define NW_DYNAMICS 4 // Set weather dynamics (from uDynamics value) #define NW_GLOBAL 5 // (FSX) Put FS into Global weather mode // You should write only 'GLOB' weather after this, which will be applied everywhere. So, instead of writing "GLOB" to C800, write NW_GLOBAL or 5 as a WORD (2 bytes). You may also want to change the rate of change value in P3D. To do that you need to set the rate in the uDynamics with the command set to NW_DYNAMICS (4). 1 hour ago, John Dowson said: I'm not sure if you also need the GLOB control in the Metar string, maybe @Pete Dowson can clarify. The METAR string always contains the ICAO for the weather station being set. For GLOBal weather the pseudo ICAO code GLOB is used. If omitted it isn't parsed bty P£d as a valid METAR string. 1 hour ago, John Dowson said: I'm not sure if the source is included.... Sources for example projects are pending your next visit here. Or I could send everything to you for publishing in the correct way, when you aren't too busy (!). Pete
yindengxie Posted April 24, 2021 Author Report Posted April 24, 2021 Hello Sir! THANKS for your help and support! If it is convenient to you, please you put a short complete sample NWI program here. Best Regards! Dengxie
Pete Dowson Posted April 25, 2021 Report Posted April 25, 2021 12 hours ago, yindengxie said: If it is convenient to you, please you put a short complete sample NWI program here. Haven't you just tried adapting your program to set Global mode as well as send the METAR string. To use the NWI fully you need to do a lot more work setting up all of the structures and converting yuor METAR strings into numbers. Here, I've corrected it for you: TxValue = 0x0005; //NW_GLOBAL FSUIPC_Write(0xC800, 2, (BYTE *)TxValue, &dwResult); sprintf(TxBuffer, "GLOB METAR 101208Z 27055KT +VCTSRA"); //Thunder FSUIPC_Write(0xB000, strlen(TxBuffer)+1, (void *)TxBuffer, &dwResult); FSUIPC_Process(&dwResult); Some time in the future, when time permits, we will release both WeatherSet2 and TrafficLook as example projects, complete. But it won't be for a while. Pete
yindengxie Posted April 25, 2021 Author Report Posted April 25, 2021 Hello Pete, THANKS for your help! uint16 TxValue = 0x0005; //NW_GLOBAL ================================================ 1) FSUIPC_Write(0xC800, 2, (BYTE *)TxValue, &dwResult); I got a running error. ------------------------------------------------------------- 2) FSUIPC_Write(0xC800, 2, &TxValue, &dwResult); I have not got running error, but no weather change on P3D. sprintf(TxBuffer, "GLOB METAR 101208Z 27055KT +VCTSRA"); //Thunder FSUIPC_Write(0xB000, strlen(TxBuffer)+1, (void *)TxBuffer, &dwResult); FSUIPC_Process(&dwResult); Best Regards! Dengxie
Pete Dowson Posted April 25, 2021 Report Posted April 25, 2021 3 hours ago, yindengxie said: 1) FSUIPC_Write(0xC800, 2, (BYTE *)TxValue, &dwResult); I got a running error. What's a "running error"? There should be a compiler error as I missed off the & to get the address of the value. Sorry about that. 3 hours ago, yindengxie said: "GLOB METAR 101208Z 27055KT +VCTSRA") It may be that SimConnect doesn't like the METAR string. I don't know +VCTSRA, and you don't seem to be setting any clouds or the pressure (QNH). Please show the FSUIPC6.log file. You might need to get a SimConnect log too. Instructions in a topic in the FAQ subforum. You could also log weather in FSUIPC to see what FSUIPC tries to do, and also run WeatherSet2 to set your 'thunder' and see what gets logged for that. FSUIPC makes correct SimConnet METAR strings from the binary AWI data. Pete
yindengxie Posted April 25, 2021 Author Report Posted April 25, 2021 uint16 TxValue = 0x0005; //NW_GLOBAL FSUIPC_Write(0xC800, 2, (BYTE *)&TxValue, &dwResult); sprintf(TxBuffer, "GLOB METAR 101208Z 27055KT +VCTSRA"); //Thunder FSUIPC_Write(0xB000, strlen(TxBuffer)+1, (void *)TxBuffer, &dwResult); FSUIPC_Process(&dwResult); Hello Pete, The above-mentioned program works, no error, but the weather has not any change on P3D. Best Regards! Dengxie
Pete Dowson Posted April 25, 2021 Report Posted April 25, 2021 15 minutes ago, yindengxie said: The above-mentioned program works, no error, but the weather has not any change on P3D. Please see my previous reply! Pete
yindengxie Posted April 25, 2021 Author Report Posted April 25, 2021 0 System time = 25/04/2021 15:48:49 0 FLT path = "C:\Users\Dengxie\Documents\Prepar3D v5 Files\" 0 Using DialogMode 16 FS path = "C:\Program Files\Lockheed Martin\Prepar3D v5\" 125 Controllers are set to ON, using RawInput within P3D 125 LogOptions=00000000 00000003 125 ------------------------------------------------------------------- 125 SimConnect_Open succeeded: waiting to check version okay 125 Opened separate AI Traffic client okay 6438 Running in "Lockheed Martin® Prepar3D® v5", Version: 5.1.12.26829 (SimConnect: 5.1.0.0) 6438 Initialising SimConnect data requests now 6438 FSUIPC Menu entry added 6453 ... Using Prepar3D with Professional License 6485 C:\Users\Dengxie\Documents\Prepar3D v5 Files\Lockheed Martin F-35A Lightning II F35 - 2021-03-31 12-29-34.fxml 6485 C:\Program Files\Lockheed Martin\Prepar3D v5\SimObjects\Airplanes\F-35A\F-35A.air 6516 ### The user object is 'Lockheed Martin F-35A Lightning II' 6516 ### Mode is NORMAL 8453 ### Mode: PAUSE on 30391 Loading Complete ... 30422 ### Mode is NORMAL 31032 User Aircraft ID 2 supplied, now being used 31032 Aircraft loaded: running normally now ... 31500 System time = 25/04/2021 15:49:21, Simulator time = 12:00:34 (17:00Z) 38438 -------------------- Starting everything now ---------------------- 39594 Weather Read request (Nr Station) to area 5: Lat=29.52, Lon=-98.28, Alt=0.0, Req=1 39625 Weather Received (type 5 request, Nearest): "KRND&A232 000000Z 00000KT&D0NG 27020KT&A1999NG 27025KT&A5999NG 100KM&B-450&D3048 2CU057&CU001FNMN000N 6CI393&CI001FNMN000N 15/05 Q1013 @@@ 73 15 270 20 | 204 15 270 25 | " 39625 WX Received in (31 mSecs), WX request type 5, Lat=29.5154, Lon=-98.2803, Alt=0.0m 39625 ***ICAOset = KRND 39625 Advanced Weather Interface Enabled 41516 ### Mode: PAUSE on 41782 Weather Read request (Global set) to area 1: ICAO="GLOB", Req=0 41828 Weather Received (type 1 request, AtStation): "GLOB&A0 000000Z 00000KT&D985NG 27020KT&A2231NG 27025KT&A6231NG 100KM&B-218&D3048 2CU065&CU001FNMN000N 6CI401&CI001FNMN000N 15/05 Q1013 @@@ 73 15 270 20 | 204 15 270 25 | " 41828 WX Received in (46 mSecs), WX request type 1, ICAO=GLOB 41828 Results: FS98 Pressure=1013.1 mb 41828 Results: FS98 Wind0: ground (761ft) to -760ft AGL, dir 0M, vel 0, gust 0, turb 0 41828 Results: FS98 AmbientWind at PlaneAlt=768: dir 359T, vel 0 41828 Results: FS98 CurrTemp at PlaneAlt=768: 15C 44047 Weather Read request (Nr Station) to area 5: Lat=29.52, Lon=-98.28, Alt=0.0, Req=1 44078 Weather Received (type 5 request, Nearest): "KRND&A232 000000Z 00000KT&D0NG 27020KT&A1999NG 27025KT&A5999NG 100KM&B-450&D3048 2CU057&CU001FNMN000N 6CI393&CI001FNMN000N 15/05 Q1013 @@@ 73 15 270 20 | 204 15 270 25 | " 44078 WX Received in (31 mSecs), WX request type 5, Lat=29.5154, Lon=-98.2803, Alt=0.0m 44078 >Change: FS98 Vis: range =0sm, (raw value=0) 44078 >Change: FS98 Temp0: to 760ft, Day 0.0C, NightVar 0.0C 44078 >Change: FS98 Dewpoint Control: disabled 44078 >Change: FS98 Precip Control: disabled 44344 Setting Position: IAS=0k, OnGround=N, Lat=29.5154, Lon=-98.2803, Alt=769ft, Pitch=0.97, Bank=0.01, Hdg=330.00T 44344 NW_GLOBAL command, setting weather to global mode 44360 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 44360 Weather Mode now = Global 44360 ### Mode: SLEW on 44453 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 44547 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 44782 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 44782 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 44797 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 44813 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 44891 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 44985 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45063 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45078 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45110 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45141 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45188 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45219 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45235 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45266 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45297 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45313 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45328 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45328 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45344 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45360 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45391 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45516 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45532 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45532 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45547 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45563 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45578 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45578 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45594 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45610 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45610 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45625 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45641 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45657 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45657 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45672 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45688 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45688 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45703 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45719 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45735 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45735 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45750 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45766 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45766 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45782 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45797 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45797 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45813 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45828 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45844 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45844 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45860 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45875 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45875 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45891 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45907 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45922 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45922 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45938 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45953 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45953 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45969 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 45985 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46000 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46000 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46016 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46032 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46032 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46047 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46063 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46063 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46078 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46094 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46110 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46110 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46125 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46141 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46141 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46157 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46172 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46188 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46188 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46203 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46219 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46219 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46235 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46250 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46250 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46266 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46282 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46297 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46297 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46313 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46328 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46328 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46344 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46360 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46360 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46375 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46391 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46407 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46407 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46422 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 46438 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA"
Pete Dowson Posted April 25, 2021 Report Posted April 25, 2021 How is it looping sending your METAR string? Check your program. Also you could enable IPC writes logging to see the relationship between your writes and the commands being obeyed. Pete
yindengxie Posted April 25, 2021 Author Report Posted April 25, 2021 uint16 TxValue = 0x0005; //NW_GLOBAL FSUIPC_Write(0xC800, 2, (BYTE *)&TxValue, &dwResult); while (1) { Sleep (10); ........................ sprintf(TxBuffer, "GLOB METAR 101208Z 27055KT +VCTSRA"); FSUIPC_Write(0xB000, strlen(TxBuffer)+1, (void *)TxBuffer, &dwResult); ......................... FSUIPC_Process(&dwResult); }//while ============================================================ Hello Pete, THANKS for your help! The above-mentioned is the weather part of my program. Best Regards! Dengxie
yindengxie Posted April 25, 2021 Author Report Posted April 25, 2021 0 System time = 25/04/2021 16:56:54 0 FLT path = "C:\Users\Dengxie\Documents\Prepar3D v5 Files\" 0 Using DialogMode 31 FS path = "C:\Program Files\Lockheed Martin\Prepar3D v5\" 125 Controllers are set to ON, using RawInput within P3D 125 LogOptions=00000000 00000007 125 ------------------------------------------------------------------- 140 SimConnect_Open succeeded: waiting to check version okay 140 Opened separate AI Traffic client okay 6422 Running in "Lockheed Martin® Prepar3D® v5", Version: 5.1.12.26829 (SimConnect: 5.1.0.0) 6422 Initialising SimConnect data requests now 6422 FSUIPC Menu entry added 6437 ... Using Prepar3D with Professional License 6453 C:\Users\Dengxie\Documents\Prepar3D v5 Files\Lockheed Martin F-35A Lightning II F35 - 2021-03-31 12-29-34.fxml 6453 C:\Program Files\Lockheed Martin\Prepar3D v5\SimObjects\Airplanes\F-35A\F-35A.air 6484 ### The user object is 'Lockheed Martin F-35A Lightning II' 6484 ### Mode is NORMAL 8406 ### Mode: PAUSE on 30281 Loading Complete ... 30297 ### Mode is NORMAL 30843 Aircraft loaded: running normally now ... 30890 User Aircraft ID 2 supplied, now being used 31312 System time = 25/04/2021 16:57:25, Simulator time = 12:00:34 (17:00Z) 37797 ### Mode: PAUSE on 38297 -------------------- Starting everything now ---------------------- 39422 Weather Read request (Nr Station) to area 5: Lat=29.52, Lon=-98.28, Alt=0.0, Req=1 39453 Weather Received (type 5 request, Nearest): "KRND&A232 000000Z 00000KT&D0NG 27020KT&A1999NG 27025KT&A5999NG 100KM&B-450&D3048 2CU057&CU001FNMN000N 6CI393&CI001FNMN000N 15/05 Q1013 @@@ 73 15 270 20 | 204 15 270 25 | " 39453 WX Received in (31 mSecs), WX request type 5, Lat=29.5154, Lon=-98.2803, Alt=0.0m 39453 ***ICAOset = KRND 39453 Advanced Weather Interface Enabled 41125 WRITE0[992] 330A, 2 bytes: D2 07 .. 41265 WRITE0[992] 8001, 12 bytes: 49 4B 42 33 42 49 36 37 54 43 48 45 IKB3BI67TCHE 41265 WRITE0[992] 05DC, 2 bytes: 01 00 .. 41265 WRITE0[992] 0BC8, 2 bytes: 00 00 .. 41265 WRITE0[992] 055C, 4 bytes: 00 00 00 00 .... 41265 Setting Position: IAS=0k, OnGround=N, Lat=29.5154, Lon=-98.2803, Alt=769ft, Pitch=0.96, Bank=-0.01, Hdg=330.00T 41265 WRITE0[992] 0238, 1 bytes: 0C . 41265 WRITE0[992] C800, 2 bytes: 05 00 .. 41265 NW_GLOBAL command, setting weather to global mode 41281 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 41281 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 41281 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 41281 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 41281 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 41281 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 41281 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 41281 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 41281 52 41 00 RA. 41281 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 41281 Weather Mode now = Global 41281 ### Mode: SLEW on 41343 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 41343 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 41343 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 41343 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 41343 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 41343 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 41343 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 41343 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 41343 52 41 00 RA. 41343 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 41437 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 41437 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 41437 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 41437 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 41437 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 41437 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 41437 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 41437 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 41437 52 41 00 RA. 41437 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 41453 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 41453 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 41453 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 41453 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 41453 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 41453 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 41453 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 41453 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 41453 52 41 00 RA. 41453 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 41453 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 41453 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 41453 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 41453 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 41453 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 41453 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 41453 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 41453 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 41453 52 41 00 RA. 41453 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 41718 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 41718 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 41718 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 41718 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 41718 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 41718 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 41718 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 41718 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 41718 52 41 00 RA. 41718 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 41734 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 41734 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 41734 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 41734 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 41734 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 41734 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 41734 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 41734 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 41734 52 41 00 RA. 41734 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 41812 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 41812 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 41812 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 41812 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 41812 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 41812 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 41812 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 41812 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 41812 52 41 00 RA. 41812 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 41828 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 41828 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 41828 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 41828 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 41828 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 41828 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 41828 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 41828 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 41828 52 41 00 RA. 41828 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 41906 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 41906 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 41906 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 41906 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 41906 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 41906 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 41906 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 41906 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 41906 52 41 00 RA. 41906 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 42000 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 42000 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 42000 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 42000 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 42000 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 42000 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 42000 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 42000 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 42000 52 41 00 RA. 42000 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 42015 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 42015 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 42015 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 42015 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 42015 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 42015 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 42015 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 42015 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 42015 52 41 00 RA. 42015 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 42109 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 42109 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 42109 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 42109 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 42109 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 42109 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 42109 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 42109 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 42109 52 41 00 RA. 42109 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 42187 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 42187 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 42187 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 42187 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 42187 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 42187 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 42187 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 42187 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 42187 52 41 00 RA. 42187 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 42281 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 42281 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 42281 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 42281 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 42281 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 42281 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 42281 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 42281 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 42281 52 41 00 RA. 42281 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 42343 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 42343 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 42343 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 42343 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 42343 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 42343 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 42343 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 42343 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 42343 52 41 00 RA. 42343 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 42390 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 42390 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 42390 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 42390 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 42390 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 42390 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 42390 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 42390 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 42390 52 41 00 RA. 42390 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 42422 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 42422 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 42422 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 42422 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 42422 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 42422 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 42422 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 42422 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 42422 52 41 00 RA. 42422 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 42437 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 42437 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 42437 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 42437 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 42437 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 42437 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 42437 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 42437 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 42437 52 41 00 RA. 42437 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 42453 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 42453 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 42453 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 42453 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 42453 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 42453 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 42453 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 42453 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 42453 52 41 00 RA. 42453 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 42468 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 42468 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 42468 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 42468 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 42468 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 42468 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 42468 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 42468 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 42468 52 41 00 RA. 42468 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 42468 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 42468 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 42468 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 42468 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 42468 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 42468 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 42468 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 42468 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 42468 52 41 00 RA. 42468 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 42484 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 42484 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 42484 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 42484 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 42484 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 42484 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 42484 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 42484 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 42484 52 41 00 RA. 42484 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 42500 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 42500 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 42500 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 42500 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 42500 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 42500 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 42500 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 42500 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 42500 52 41 00 RA. 42500 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA" 42515 WRITE0[992] 0560, 8 bytes: 9A 99 99 E9 57 45 33 00 ....WE3. 42515 WRITE0[992] 0568, 8 bytes: 00 FC 53 6E 53 DA A6 55 ..SnS..U 42515 WRITE0[992] 0570, 8 bytes: 00 00 00 00 1C 00 00 00 ........ 42515 WRITE0[992] 0578, 4 bytes: 00 00 00 00 .... 42515 WRITE0[992] 057C, 4 bytes: 00 00 00 00 .... 42515 WRITE0[992] 0580, 4 bytes: CC CC CC AC .... 42515 WRITE0[992] B000, 35 bytes: 47 4C 4F 42 20 4D 45 54 41 52 20 31 30 31 32 30 GLOB METAR 10120 42515 38 5A 20 32 37 30 35 35 4B 54 20 2B 56 43 54 53 8Z 27055KT +VCTS 42515 52 41 00 RA. 42515 Setting Metar: "GLOB METAR 101208Z 27055KT +VCTSRA"
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now