<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help in ArcGIS Velocity Questions</title>
    <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499195#M391</link>
    <description>&lt;P&gt;I suppose!&lt;/P&gt;&lt;P&gt;You can actually grab all their sensors data by not including the sensor ID in the WebSocket - but there's not any indication of location information in the data so not very useful for spatial analysis.&lt;/P&gt;</description>
    <pubDate>Fri, 28 Jun 2024 17:02:31 GMT</pubDate>
    <dc:creator>Teresa_Blader</dc:creator>
    <dc:date>2024-06-28T17:02:31Z</dc:date>
    <item>
      <title>Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1416744#M354</link>
      <description>&lt;P&gt;Trying to connect websocket in ArcGIS Velocity for Vaisala Air Quality sensors, hosted with XWeather. I'm getting an error in ArcGIS Velocity for the first step - just adding in the URI. I do need to incorporate the api key, so I'm wondering if I'm getting the error because there is not a place to add in an api-key header parameters on the first step?&lt;/P&gt;&lt;P&gt;The company confirmed websocket is external and has given me Python to try to make sure my API key is good, but I've never used Python so not really sure how to use that.&amp;nbsp; Ultimately, I really just want to connect to the sensor in ArcGIS Velocity and not worry about python!&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Websocket: wss://ws-api.eu.platform.xweather.com&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;URI to call a specific sensor (I think?):&lt;BR /&gt;&lt;STRONG&gt;wss://ws-api.eu.platform.xweather.com/measurement-stream?sensor-id=urn:dev:ops:16961AQT530-V0810232&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;But gives error in ArcGIS Velocity. Would this be because the api-key is not in the URL? Is there a way to add this into the URL? Or should I be able to connect to the base uri without the parameters?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Teresa_Blader_0-1714421025488.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/102486i579EDEE3B83CECEC/image-size/large?v=v2&amp;amp;px=999" role="button" title="Teresa_Blader_0-1714421025488.png" alt="Teresa_Blader_0-1714421025488.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Teresa_Blader_1-1714421096106.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/102488i8D6DFFA2E2CE98F5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Teresa_Blader_1-1714421096106.png" alt="Teresa_Blader_1-1714421096106.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;##
#
# Copyright (c) Vaisala Oyj. All rights reserved.
#
##

import asyncio
import pathlib
import ssl
import websockets&lt;/LI-CODE&gt;&lt;LI-CODE lang="c"&gt;base_uri = "wss://ws-api.eu.platform.xweather.com"
endpoint = "/measurement-stream"
api_key = "" # Place api-key here
sensor_id = "urn:dev:ops:16961-AQT530-V0810232"

uri = f"{base_uri}{endpoint}?sensor-id={sensor_id}"

headers = {"x-api-key": api_key,}

async with websockets.connect(uri, extra_headers=headers) as websocket:
print("WebSocket connection established")

# Receive data once
response = await websocket.recv()
print(f"{response}")

if __name__ == "__main__":
asyncio.get_event_loop().run_until_complete(connect_websocket())&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2024 21:08:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1416744#M354</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2024-04-29T21:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1416833#M355</link>
      <description>&lt;P&gt;Teresa,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Just a guess here after taking a look at the Documention on Weather --&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;A href="https://docs.vaisala.com/r/M212980EN-B/en-US/GUID-64E9D6A5-0D6E-4A8A-B4E1-040E157A568D" target="_blank"&gt;https://docs.vaisala.com/r/M212980EN-B/en-US/GUID-64E9D6A5-0D6E-4A8A-B4E1-040E157A568D&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;STRONG&gt;wss://ws-api.eu.platform.xweather.com/measurement-stream?sensor-id=urn:dev:ops:16961AQT530-V0810232&amp;amp;x-api_key="your_api_kery_here'&lt;/STRONG&gt; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Note the &amp;amp; after the sensor-id to separate the Key-Value Pairs.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 01:50:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1416833#M355</guid>
      <dc:creator>JeffSilberberg</dc:creator>
      <dc:date>2024-04-30T01:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1416954#M356</link>
      <description>&lt;P&gt;Hi Teresa,&lt;/P&gt;&lt;P&gt;We have this written up on our end to implement as an enhancement to add support for custom headers in WebSocket connection from the Velocity backend. Please test the workaround provided by&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/140376"&gt;@JeffSilberberg&lt;/a&gt;&amp;nbsp;and let me know if that works for you or not?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 11:38:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1416954#M356</guid>
      <dc:creator>PeterNasuti</dc:creator>
      <dc:date>2024-04-30T11:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1417252#M357</link>
      <description>&lt;P&gt;Shoot... I did try your suggestion and it still errors... I tried ? and &amp;amp;... Thanks for providing the link! Sounds like Peter and the team will explore header parameter options with my api key... so I'll see how that goes.&lt;/P&gt;&lt;P&gt;In the meantime I'm going to see if Xweather can first get my sensors re-registered to the US api and not the europe api.&lt;span class="lia-unicode-emoji" title=":face_with_rolling_eyes:"&gt;🙄&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 20:17:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1417252#M357</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2024-04-30T20:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1418063#M359</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good Morning -- I talked with Viasla about this and got two interesting pieces of data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;First, "&lt;SPAN&gt;So, the key-value pair is x-api-key={'My-Api-Key'}."&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Second, the documentation page I referenced is in review as it "needs updating".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Try this in Velocity --&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;wss://ws-api.eu.platform.xweather.com/measurement-stream?x-api-key='My-Api-Key'&amp;amp;sensor-id=urn:dev:ops:16961AQT530-V0810232&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 13:54:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1418063#M359</guid>
      <dc:creator>JeffSilberberg</dc:creator>
      <dc:date>2024-05-02T13:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1418190#M362</link>
      <description>&lt;P&gt;Still a no go - Vaisala support is telling me api key HAS to be passed as a header parameter and can't be passed in the URL&lt;span class="lia-unicode-emoji" title=":crying_face:"&gt;😢&lt;/span&gt; Thanks for investigating!&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;Regarding the measurement stream api, the api key has to be passed in the headers. The link you shared won't work as the key is passed as a query parameter.&lt;BR /&gt;&lt;BR /&gt;So, if it will be something like this in the system you are using:&lt;BR /&gt;URI field: wss://ws-api.eu.platform.xweather.com/measurement-stream?sensor-id=urn:dev:ops:16961AQT530-V0810232&lt;BR /&gt;headers field: "x-api_key": ”my-api-key-here”&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 16:03:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1418190#M362</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2024-05-02T16:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1418301#M363</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/425496"&gt;@Teresa_Blader&lt;/a&gt;&amp;nbsp;We are targeting a Velocity 5.2 release of this functionality which should go live around mid-June and enable you to ingest this data. If there are any unforeseen delays to a later release I will update this thread.&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 19:13:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1418301#M363</guid>
      <dc:creator>PeterNasuti</dc:creator>
      <dc:date>2024-05-02T19:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1498600#M385</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/56766"&gt;@PeterNasuti&lt;/a&gt;&amp;nbsp;or &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/140376"&gt;@JeffSilberberg&lt;/a&gt;&amp;nbsp;! Glad to see the Velocity update! I'm trying out connecting to my two websocket sensors, got past adding the header parameter with the API key, yay! But am having a bit of trouble with deriving the schema. Vaisala's documentation says it's using JSON but it's got two or three pieces that are nested and Velocity isn't detecting it automatically. Think you could take a look and give me advice on how to set up the schema? This would be my first time really working with JSON where the schema wasn't auto-detected. How would I use the Flatten options? Which is the root node? I did see this documentation:&amp;nbsp;&lt;A href="https://doc.arcgis.com/en/iot/ingest/configure-input-data.htm#ESRI_SECTION1_65F4CA586A08486CA1675BD2C6114C56" target="_blank"&gt;https://doc.arcgis.com/en/iot/ingest/configure-input-data.htm#ESRI_SECTION1_65F4CA586A08486CA1675BD2C6114C56&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is an example payload they provided in their API documentation (there would be probably 4 or 5 measurementType but below is just one for AIR_PRESSURE):&lt;/P&gt;&lt;LI-CODE lang="c"&gt;[
  {
    "observedTime": "2023-05-12T14:49:00Z",
    "value": 1021.1,
    "sourceId": "urn:dev:ops:16961-WXT530-S4131016",
    "quality": {
      "qualityValue": 8500,
      "checkLevel": 1,
      "checkedAt": "2023-05-12T14:49:00Z",
      "qualityReasons": [
        {
          "name": "Level0.Unknown",
          "description": "ACCEPTED by the measurement device."
        }
      ]
    },
    "measurementType": {
      "parameter": "AIR_PRESSURE",
      "unit": "HECTOPASCALS",
      "statistics": "MEAN",
      "period": "PT1M",
      "height": 2,
      "dataLevel": "LEVEL_TWO"
    }
  }
]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Teresa_Blader_0-1719516586250.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/108180i5099C1FC0E9D8CD1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Teresa_Blader_0-1719516586250.png" alt="Teresa_Blader_0-1719516586250.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2024 19:40:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1498600#M385</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2024-06-27T19:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1498642#M386</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/425496"&gt;@Teresa_Blader&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; The issue you have here is that Velocity did not get any data/sample data back from its test poll.&amp;nbsp; So there is no information to Derive the Schema from.&amp;nbsp; &amp;nbsp;I was able to force a set of data and then edit the "sample Daa" from my poll and replace it with yours.&amp;nbsp; When I had both Flatten and Flatten Arrays checked, then clicked Derive Schema it did so, although the names it built in one case had more than the allowed number of characters so you will need to edit that.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Handling Aarry's might still be an issue as I have not seen any news on that front in the Release notes for 5.2 so far.&amp;nbsp; Use this tool to validate the JSON further if you need.&amp;nbsp; &lt;A href="https://jsoncrack.com/editor" target="_blank"&gt;https://jsoncrack.com/editor&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2024 20:14:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1498642#M386</guid>
      <dc:creator>JeffSilberberg</dc:creator>
      <dc:date>2024-06-27T20:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499172#M387</link>
      <description>&lt;P&gt;Thanks Jeff! I will reach out to them to get an example of the full JSON payload!&lt;/P&gt;&lt;P&gt;Not sure why Velocity wouldn't be getting data, as the sensors are live an collecting. Guess I'll see what happens next!&lt;/P&gt;&lt;P&gt;I don't see any lat/long fields in the JSON - is that an issue?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 16:40:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499172#M387</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2024-06-28T16:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499176#M388</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/425496"&gt;@Teresa_Blader&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No data means that some part of the Header / Query is not correct yet.&lt;/P&gt;&lt;P&gt;Not having a Lat/Lon/Alt is not a show-stopper, but if you are going to do GIS-type things with the process you will need it.&amp;nbsp; Maybe do a Survey 123 to collect the location and then a Join in your Anaytic to enrich your data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 16:45:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499176#M388</guid>
      <dc:creator>JeffSilberberg</dc:creator>
      <dc:date>2024-06-28T16:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499182#M389</link>
      <description>&lt;P&gt;Ok, gotcha!&lt;/P&gt;&lt;P&gt;These sensors are stationary, so I think I'll get that added in there.&lt;/P&gt;&lt;P&gt;Weird they wouldn't have that in the JSON!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 16:54:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499182#M389</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2024-06-28T16:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499185#M390</link>
      <description>&lt;P&gt;It's not really weird, if the sensor is stationary why use up the bits.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 16:57:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499185#M390</guid>
      <dc:creator>JeffSilberberg</dc:creator>
      <dc:date>2024-06-28T16:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499195#M391</link>
      <description>&lt;P&gt;I suppose!&lt;/P&gt;&lt;P&gt;You can actually grab all their sensors data by not including the sensor ID in the WebSocket - but there's not any indication of location information in the data so not very useful for spatial analysis.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 17:02:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499195#M391</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2024-06-28T17:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499220#M392</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/140376"&gt;@JeffSilberberg&lt;/a&gt;&amp;nbsp;Turns out I was using the sensor ID for the wrong component in the.&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;urn:dev:ops:16961-AQT530-V0810232 is the correct one and the schema is detected right away.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 17:42:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499220#M392</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2024-06-28T17:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499224#M393</link>
      <description>&lt;P&gt;Nevermind... I was confused. Alright... moving along now.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 17:47:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499224#M393</guid>
      <dc:creator>Teresa_Blader</dc:creator>
      <dc:date>2024-06-28T17:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: Air Quality Sensor (Vaisala - XWeather) Websocket Connection Help</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499225#M394</link>
      <description>&lt;P&gt;---&amp;nbsp; &amp;nbsp;Great. Be careful of that LONG key value in the Derived Schema.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good Luck -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 17:50:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/air-quality-sensor-vaisala-xweather-websocket/m-p/1499225#M394</guid>
      <dc:creator>JeffSilberberg</dc:creator>
      <dc:date>2024-06-28T17:50:58Z</dc:date>
    </item>
  </channel>
</rss>

