<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Project-GC Q&amp;A - Recent questions tagged dynamic</title>
<link>https://project-gc.com/qa/?qa=tag/dynamic</link>
<description>Powered by Question2Answer</description>
<item>
<title>Probably bug in dynamic notifications</title>
<link>https://project-gc.com/qa/?qa=31041/probably-bug-in-dynamic-notifications</link>
<description>I use the iOS app „cache notifier“ which works quite nice. Now I am on holiday and I get notifications from home. &lt;br /&gt;
&lt;br /&gt;
It seems like PGC inserts my home coordinates. cache notifier shows the correct coordinates. If I the. turn off cache notifier and turn it on again, PGC shows the correct coordinates.</description>
<category>Bug reports</category>
<guid isPermaLink="true">https://project-gc.com/qa/?qa=31041/probably-bug-in-dynamic-notifications</guid>
<pubDate>Mon, 05 Jan 2026 17:57:16 +0000</pubDate>
</item>
<item>
<title>Better Documentation of Dynamic Location Update URL</title>
<link>https://project-gc.com/qa/?qa=30708/better-documentation-of-dynamic-location-update-url</link>
<description>&lt;p&gt;The &lt;a rel=&quot;nofollow&quot; href=&quot;https://project-gc.com/User/NewCacheNotifiers&quot;&gt;New Cache Notifiers&lt;/a&gt; page has documentation for setting up GPS Logger for Android, but it does not have a generic documentation of the parameters supported by the&amp;nbsp;&lt;a href=&quot;https://project-gc.com/api/UserLocation/Update/&quot; rel=&quot;nofollow&quot;&gt;https://project-gc.com/api/UserLocation/Update/&lt;/a&gt; API.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;A documentation would be nice, especially for parameters that are non-obvious, e.g. like this:&lt;/p&gt;&lt;hr&gt;&lt;div&gt;# Help: Dynamic Notifiers&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;You can dynamically update some settings of a&amp;nbsp;notifier by using the URL&amp;nbsp;&lt;a href=&quot;https://project-gc.com/api/UserLocation/Update/&quot; rel=&quot;nofollow&quot;&gt;https://project-gc.com/api/UserLocation/Update/&lt;/a&gt; with parameters. Supported parameters are:&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;ul&gt;&lt;li&gt;protocol=1 - the update protocol to use, this must always be 1&lt;/li&gt;&lt;li&gt;uid=&amp;lt;USER-ID&amp;gt; - your user ID. Use&amp;nbsp;the&amp;nbsp;user id&amp;nbsp;from your settings page.&lt;/li&gt;&lt;li&gt;token=&amp;lt;TOKEN&amp;gt; - the access token to Project GC. Use&amp;nbsp;the&amp;nbsp;token&amp;nbsp;from your settings page. Keep in mind that the token should be kept as safe as a password.&lt;/li&gt;&lt;li&gt;nid=&amp;lt;NOTIFIER-ID&amp;gt; - the ID of the notifier. You can see a notifier's ID if you edit it&lt;/li&gt;&lt;li&gt;ts=&amp;lt;timestamp&amp;gt; - the timestamp of your update, in ISO-format, e.g. 2025-01-31T14:35:59+0100.&lt;em&gt; Updates that have a timestamp that is older than the most recent update are ignored (?)&lt;/em&gt;&lt;/li&gt;&lt;li&gt;latitude=&amp;lt;latitude&amp;gt; - the latitude of the dynamic location, using decimal degrees, such as 12.34567&lt;/li&gt;&lt;li&gt;longitude=&amp;lt;longitude&amp;gt; - the latitude of the dynamic location, using decimal degrees, such as 56.78901&lt;/li&gt;&lt;li&gt;acc=&amp;lt;accuracy&amp;gt; - the accuracy of your latitude/longitude measurement in meters. (why would this be relevant?)&lt;/li&gt;&lt;li&gt;enable=1 - if you add this parameter and the notifier is currently disabled, the update will enable it&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;To update a notifier, add the parameters to the URL after a question mark, separate them via &amp;amp; signs, for example like this:&amp;nbsp;&lt;a href=&quot;https://project-gc.com/api/UserLocation/Update/?protocol=1&amp;amp;uid=&amp;lt;USER-ID&amp;gt;&amp;amp;latitude=&amp;lt;latitude&amp;gt;&amp;amp;longitude=&amp;lt;longitude&amp;gt;&amp;amp;ts=&amp;lt;timestamp&amp;gt;&amp;amp;token=&amp;lt;TOKEN&amp;gt;&amp;amp;nid=&amp;lt;NOTIFIER-ID&amp;gt;&quot; rel=&quot;nofollow&quot;&gt;https://project-gc.com/api/UserLocation/Update/?protocol=1&amp;amp;uid=&amp;lt;USER-ID&amp;gt;&amp;amp;latitude=&amp;lt;latitude&amp;gt;&amp;amp;longitude=&amp;lt;longitude&amp;gt;&amp;amp;ts=&amp;lt;timestamp&amp;gt;&amp;amp;token=&amp;lt;TOKEN&amp;gt;&amp;amp;nid=&amp;lt;NOTIFIER-ID&amp;gt;&lt;/a&gt;&lt;/div&gt;</description>
<category>Support and help</category>
<guid isPermaLink="true">https://project-gc.com/qa/?qa=30708/better-documentation-of-dynamic-location-update-url</guid>
<pubDate>Mon, 18 Aug 2025 07:31:03 +0000</pubDate>
</item>
<item>
<title>New cache notifier dynamic location updater</title>
<link>https://project-gc.com/qa/?qa=29928/new-cache-notifier-dynamic-location-updater</link>
<description>This is not a question, but rather a solution created by me to ease the process of updating dynamic location for new cache notifiers.&lt;br /&gt;
&lt;br /&gt;
I found the configuration of GPS logger overwhelming for what it's supposed to do regarding the new cache notifiers at Project-GC.&lt;br /&gt;
&lt;br /&gt;
I have created a simple yet useful webapp that imitate the request that GPS logger makes to update the new cache notifier with dynamic location. It does not use any data on server side. It just composes a URL that GPS logger sends on location updates and performs it on behalf of the user. It remembers the values in user's browser.&lt;br /&gt;
&lt;br /&gt;
One can choose location from the map or use the device's GPS to update the notifier location. It should work on all mobile devices.&lt;br /&gt;
&lt;br /&gt;
If you want, you can check it out working here: &lt;a href=&quot;https://fracz.github.io/pgc-location-updater/&quot; rel=&quot;nofollow&quot;&gt;https://fracz.github.io/pgc-location-updater/&lt;/a&gt; and the source code is available here: &lt;a href=&quot;https://github.com/fracz/pgc-location-updater/blob/main/index.html&quot; rel=&quot;nofollow&quot;&gt;https://github.com/fracz/pgc-location-updater/blob/main/index.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Happy hunting!</description>
<category>Feature requests</category>
<guid isPermaLink="true">https://project-gc.com/qa/?qa=29928/new-cache-notifier-dynamic-location-updater</guid>
<pubDate>Mon, 10 Jun 2024 20:31:04 +0000</pubDate>
</item>
<item>
<title>Sharing Dynamic Location for someone else?</title>
<link>https://project-gc.com/qa/?qa=28904/sharing-dynamic-location-for-someone-else</link>
<description>I use the Dynamic Location for New Cache Notifiers. Sometimes I travel and hike alone. Can I share my location with someone else? Just a map with my current location or history via a special link. That would be a cool feature!</description>
<category>Feature requests</category>
<guid isPermaLink="true">https://project-gc.com/qa/?qa=28904/sharing-dynamic-location-for-someone-else</guid>
<pubDate>Fri, 09 Jun 2023 06:22:25 +0000</pubDate>
</item>
<item>
<title>My Dynamic html link doesn't work, all other links that take me to different sites do, I use a mac, any recommendations?</title>
<link>https://project-gc.com/qa/?qa=7940/dynamic-doesnt-other-links-different-sites-recommendations</link>
<description>I use a mac, and when I put the Dynamic link HTML in my edit profile section the tables show up on my profile, when I click the table, I am asked if I want to navigate to the Gproject GC site, when I select yes, nothing happens. &amp;nbsp;All other links I have work just fine that take me away from my geocaching profile, but this one does not. &amp;nbsp;Any suggestions?</description>
<category>Bug reports</category>
<guid isPermaLink="true">https://project-gc.com/qa/?qa=7940/dynamic-doesnt-other-links-different-sites-recommendations</guid>
<pubDate>Tue, 22 Dec 2015 03:19:04 +0000</pubDate>
</item>
<item>
<title>Specific Tab Dynamic Image</title>
<link>https://project-gc.com/qa/?qa=240/specific-tab-dynamic-image</link>
<description>Is there a way, or can a feature be added to pull a dynamic image by tab? &amp;nbsp;I would like to display the Hides tab as an image on my geocaching profile.</description>
<category>Support and help</category>
<guid isPermaLink="true">https://project-gc.com/qa/?qa=240/specific-tab-dynamic-image</guid>
<pubDate>Wed, 24 Sep 2014 16:14:46 +0000</pubDate>
</item>
</channel>
</rss>