<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Questing about getting fix accuracy to the cloud, and a suggestion to further save power with cell position through nRFCloud</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/92439/questing-about-getting-fix-accuracy-to-the-cloud-and-a-suggestion-to-further-save-power-with-cell-position-through-nrfcloud</link><description>Hi Nordic and everyone else! 
 First my question: I am sending my position data to the cloud in the same matter as the MQTT Multi Service sample. It converts some PVT data to a NMEA string and sends it. This loses the accuracy (and some other parameters</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 19 Oct 2022 06:30:05 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/92439/questing-about-getting-fix-accuracy-to-the-cloud-and-a-suggestion-to-further-save-power-with-cell-position-through-nrfcloud" /><item><title>RE: Questing about getting fix accuracy to the cloud, and a suggestion to further save power with cell position through nRFCloud</title><link>https://devzone.nordicsemi.com/thread/391329?ContentTypeID=1</link><pubDate>Wed, 19 Oct 2022 06:30:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2d4aca3c-4854-4c08-92f4-0806252ed9c1</guid><dc:creator>Torje</dc:creator><description>&lt;p&gt;Thank you both, this is exactly what I was looking for.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Questing about getting fix accuracy to the cloud, and a suggestion to further save power with cell position through nRFCloud</title><link>https://devzone.nordicsemi.com/thread/391302?ContentTypeID=1</link><pubDate>Tue, 18 Oct 2022 23:38:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2fdfef57-0777-4579-9dd9-fb7a2706f0c2</guid><dc:creator>justin</dc:creator><description>&lt;p&gt;additionally, the nrf_cloud FW library functions use a flag to indicate if you want the response:&lt;br /&gt;&lt;br /&gt;&lt;span&gt;nrf_cloud_cell_pos_request()&lt;br /&gt;&lt;br /&gt;to generate the JSON: &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/libraries/networking/nrf_cloud_cell_pos.html#c.nrf_cloud_cell_pos_request_json_get" rel="noopener noreferrer" target="_blank"&gt;nrf_cloud_cell_pos_request_json_get()&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Questing about getting fix accuracy to the cloud, and a suggestion to further save power with cell position through nRFCloud</title><link>https://devzone.nordicsemi.com/thread/391299?ContentTypeID=1</link><pubDate>Tue, 18 Oct 2022 22:11:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f45f6060-bb03-4044-a8c0-c6e03a41e2b5</guid><dc:creator>AndrewKostka</dc:creator><description>&lt;p&gt;Hello, Torje:&lt;br /&gt;&lt;br /&gt;There is a parameter you can add to the request object for cell-based positioning that will stop the position from being reported back over the Cloud to Device (c2d) topics. It&amp;#39;s called &amp;quot;doReply&amp;quot;:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="json"&gt;{
    &amp;quot;appId&amp;quot;: &amp;quot;CELL_POS&amp;quot;,
    &amp;quot;messageType&amp;quot;: &amp;quot;DATA&amp;quot;,
    &amp;quot;data&amp;quot;: {
        &amp;quot;doReply&amp;quot;: false,
        &amp;quot;lte&amp;quot;: [
            {
                &amp;quot;mnc&amp;quot;: 260,
                &amp;quot;mcc&amp;quot;: 310,
                &amp;quot;eci&amp;quot;: 21858829,
                &amp;quot;tac&amp;quot;: 333,
                &amp;quot;rsrp&amp;quot;: -157,
                &amp;quot;rsrq&amp;quot;: -34.5,
                &amp;quot;earfcn&amp;quot;: 0
            }
        ]
    }
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;This is documented in our &lt;a href="https://github.com/nRFCloud/application-protocols/blob/v1/schemas/deviceToCloud/cell_position/cell-position.json"&gt;Application Protocols repository&lt;/a&gt; on GitHub. Hope this helps!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Questing about getting fix accuracy to the cloud, and a suggestion to further save power with cell position through nRFCloud</title><link>https://devzone.nordicsemi.com/thread/388891?ContentTypeID=1</link><pubDate>Mon, 03 Oct 2022 06:03:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5a46f670-db80-485d-96c8-a856c7ebc843</guid><dc:creator>Torje</dc:creator><description>&lt;p&gt;Hello Jonathan,&lt;/p&gt;
&lt;p&gt;And thank you for your reply. I found the resources helpful.&lt;/p&gt;
&lt;p&gt;As to my suggestion, let me clarify:&lt;br /&gt;1. Request cell location to nRFCloud by sending measured cell data.&lt;br /&gt;2. Done. No need to answer with the position data back to the device. Location is shown and stored in the cloud. Saves a downlink and ack. The cloud is where the location is needed to be, not on the device.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have noticed that after requesting and receiving cell data on the device, the position is shown in nRFCloud even without sending the actual location back to the cloud. Great feature which saves an uplink, and can be even further improved by making the downlink optional as well.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I hope I am making my self understood.&lt;/p&gt;
&lt;p&gt;Thank you again for answering my ticket, and have a nice day!&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Torje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Questing about getting fix accuracy to the cloud, and a suggestion to further save power with cell position through nRFCloud</title><link>https://devzone.nordicsemi.com/thread/388835?ContentTypeID=1</link><pubDate>Fri, 30 Sep 2022 20:08:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ac9e1c53-287c-4028-8f0b-3fe8a63b3544</guid><dc:creator>JONATHAN LL</dc:creator><description>&lt;p&gt;Hi Torje,&lt;br /&gt;&lt;br /&gt;nRF Cloud does support NMEA, &amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/67965/difference-between-gps_evt_pvt_fix-and-gps_evt_nmea_fix"&gt;https://devzone.nordicsemi.com/f/nordic-q-a/67965/difference-between-gps_evt_pvt_fix-and-gps_evt_nmea_fix&lt;/a&gt;, so you would only need to use one of the formats described here:&amp;nbsp; &lt;a id="" href="https://github.com/nRFCloud/application-protocols/tree/v1/schemas/deviceToCloud/gnss"&gt;https://github.com/nRFCloud/application-protocols/tree/v1/schemas/deviceToCloud/gnss&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;Not exactly sure about the extended question, do you propose that there would be power optimization if during circumstance where data is retrieved locally on the device (like position) and not send it to the cloud there by not initiating a extra up\down link or terminate it sooner to save power?&lt;br /&gt;&lt;br /&gt;The application will be in control to some extent if there is a need buffer data for longer periods between transmission or discard parts of data to reduce data size.&amp;nbsp; &lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Jonathan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>