<?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: Dynamic Parameters for S-63 charts in Runtime SDK for Qt (QML) in Qt Maps SDK Questions</title>
    <link>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219342#M1104</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/187110"&gt;James Ballard&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm revisiting this issue which I could not manage to resolve at the time with a potential alternate solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to load S-63 charts using an EncLayer&amp;nbsp;via an EncExchangeSet. All is well until it tries to load the cells at which point I receive the following error: "Cell load error: Cell Permit not found. Load the permit file provided by the data supplier."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are S-63 charts supported by EncLayer in 100.7.0? If so, how do i load my permit using the&amp;nbsp;&lt;SPAN&gt;EncExchangeSet class? If not, what options do I have to load S-63 charts in ArcGIS Qt runtime SDK 100.7.0 and be able to modify the display properties (i.e. colour scheme) during runtime?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Tiaki Rice&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Jan 2020 01:22:10 GMT</pubDate>
    <dc:creator>TiakiRice</dc:creator>
    <dc:date>2020-01-13T01:22:10Z</dc:date>
    <item>
      <title>Dynamic Parameters for S-63 charts in Runtime SDK for Qt (QML)</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219335#M1097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My setup currently is:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;ArcGIS Enterprise server with the Maritime Chart Service enabled&lt;/LI&gt;&lt;LI&gt;S-63 charts properly licenced and set up with a permit&lt;/LI&gt;&lt;LI&gt;Qt QML project being developed on a machine co-located with the chart server&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can load the charts just fine using an&amp;nbsp;ArcGISMapImageLayer pointing at the "http://..../MapServer/exts/MaritimeChartService/MapServer" url of my chart server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is: how do i set the Dynamic Parameters of the S-63 charts;&amp;nbsp;specifically the Colour Scheme. I see there is an ENCLayer with mariner options which i don't think I can use with S-63 charts as they must be hosted on a chart server. From what I can gather I need to pass in&amp;nbsp;display_params somehow to the&amp;nbsp;export requests being made to the server. I'm just not sure where i would add these parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Current code below (practically sample code at this point):&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;ApplicationWindow &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    id&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; appWindow
    width&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;800&lt;/SPAN&gt;
    height&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;600&lt;/SPAN&gt;
    title&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Project"&lt;/SPAN&gt;

    MapView &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        anchors&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;fill&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; parent
        focus&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;true&lt;/SPAN&gt;

        Map &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
            Basemap &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                ArcGISMapImageLayer &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                    url&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"http://127.0.0.1:6080/arcgis/rest/services/TiledMap/MapServer/exts/MaritimeChartService/MapServer"&lt;/SPAN&gt;

                &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
            &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
        &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers, Tiaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 10:41:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219335#M1097</guid>
      <dc:creator>TiakiRice</dc:creator>
      <dc:date>2021-12-11T10:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Parameters for S-63 charts in Runtime SDK for Qt (QML)</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219336#M1098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/179310"&gt;Tiaki Rice&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;I initially responded incorrectly. Let me do some research on this and get back to you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Nov 2019 23:43:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219336#M1098</guid>
      <dc:creator>JamesBallard1</dc:creator>
      <dc:date>2019-11-12T23:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Parameters for S-63 charts in Runtime SDK for Qt (QML)</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219337#M1099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately I don't think there is any way to do this. You'd need to add custom query parameters on the rest requests on there is no way to do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will check with my colleagues to be sure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Nov 2019 23:57:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219337#M1099</guid>
      <dc:creator>JamesBallard1</dc:creator>
      <dc:date>2019-11-12T23:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Parameters for S-63 charts in Runtime SDK for Qt (QML)</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219338#M1100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That would be quite disappointing if that is the case. It is strange that this isn't possible as having a look at the&amp;nbsp;&lt;A href="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-wmslayer.html"&gt;WMS Layer class&lt;/A&gt;, it provides a "customParameters" field which allows exactly that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why is this same functionality not available for the&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;ArcGISMapImageLayer&lt;SPAN&gt;&amp;nbsp;class?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Nov 2019 03:55:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219338#M1100</guid>
      <dc:creator>TiakiRice</dc:creator>
      <dc:date>2019-11-13T03:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Parameters for S-63 charts in Runtime SDK for Qt (QML)</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219339#M1101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/179310"&gt;Tiaki Rice&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Thanks for your patience. I've checked with some colleagues and we are considering a new feature in an upcoming release that will&amp;nbsp;accommodate setting custom query parameters per-layer. It's being considered for a post-100.7 release, but I cannot make any guarantees about when it will be available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We do hear your concerns and hope to get this implemented.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Nov 2019 18:27:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219339#M1101</guid>
      <dc:creator>JamesBallard1</dc:creator>
      <dc:date>2019-11-14T18:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Parameters for S-63 charts in Runtime SDK for Qt (QML)</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219340#M1102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/179310"&gt;Tiaki Rice&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;I found out some more information. It turns out you can publish MCS as a WMS service. The endpoint would be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://..../MapServer/exts/MaritimeChartService/WMSServer" title="http://..../MapServer/exts/MaritimeChartService/WMSServer"&gt;http://..../MapServer/exts/MaritimeChartService/WMSServer&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you're able to&amp;nbsp;access the WMS service endpoint, you should be able to consume the layer as a WmsLayer&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-wmslayer.html" title="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-wmslayer.html"&gt;WmsLayer QML Type | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With that, you can use the customParameters as you pointed out before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-wmslayer.html#customParameters-prop" title="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-wmslayer.html#customParameters-prop"&gt;WmsLayer QML Type | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let us know if that works for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;-James&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2019 22:47:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219340#M1102</guid>
      <dc:creator>JamesBallard1</dc:creator>
      <dc:date>2019-11-18T22:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Parameters for S-63 charts in Runtime SDK for Qt (QML)</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219341#M1103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;James,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the information! This does get me a little closer although&amp;nbsp;I will say the amount of configuration for a WMS server utilised in this way is pretty woeful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The specific parameters that i'm trying to configure are the DisplayParameters such as requesting a different "ColorScheme" value. I am aware that these can be changed via the&amp;nbsp;S52DisplayProperties.xml but i need to be able to change these parameters during runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following JSON reported by "&lt;A href="http://127.0.0.1:6080/arcgis/rest/services/service/MapServer/exts/MaritimeChartService/MapServer/parameters?full=&amp;amp;f=pjson" target="_blank"&gt;http://127.0.0.1:6080/arcgis/rest/services/service/MapServer/exts/MaritimeChartService/MapServer/parameters?full=&amp;amp;f=pjson&lt;/A&gt;" shows the parameters which don't appear in the WMS server.&amp;nbsp;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
 &lt;SPAN class="string token"&gt;"DisplayParameters"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
  &lt;SPAN class="string token"&gt;"ECDISParameters"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
   &lt;SPAN class="string token"&gt;"version"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"10.7.1"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
   &lt;SPAN class="string token"&gt;"DynamicParameters"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    &lt;SPAN class="string token"&gt;"Parameter"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;
     &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
      &lt;SPAN class="string token"&gt;"name"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"AreaSymbolizationType"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
      &lt;SPAN class="string token"&gt;"value"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;
     &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
     &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
      &lt;SPAN class="string token"&gt;"name"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"AttDesc"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
      &lt;SPAN class="string token"&gt;"value"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;
     &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
     &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
      &lt;SPAN class="string token"&gt;"name"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"ColorScheme"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
      &lt;SPAN class="string token"&gt;"value"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;
     &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
     &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;
     &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;
     &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
   &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
  &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
 &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Tiaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 10:41:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219341#M1103</guid>
      <dc:creator>TiakiRice</dc:creator>
      <dc:date>2021-12-11T10:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Parameters for S-63 charts in Runtime SDK for Qt (QML)</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219342#M1104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/187110"&gt;James Ballard&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm revisiting this issue which I could not manage to resolve at the time with a potential alternate solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to load S-63 charts using an EncLayer&amp;nbsp;via an EncExchangeSet. All is well until it tries to load the cells at which point I receive the following error: "Cell load error: Cell Permit not found. Load the permit file provided by the data supplier."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are S-63 charts supported by EncLayer in 100.7.0? If so, how do i load my permit using the&amp;nbsp;&lt;SPAN&gt;EncExchangeSet class? If not, what options do I have to load S-63 charts in ArcGIS Qt runtime SDK 100.7.0 and be able to modify the display properties (i.e. colour scheme) during runtime?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Tiaki Rice&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jan 2020 01:22:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219342#M1104</guid>
      <dc:creator>TiakiRice</dc:creator>
      <dc:date>2020-01-13T01:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Parameters for S-63 charts in Runtime SDK for Qt (QML)</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219343#M1105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/179310"&gt;Tiaki Rice&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; No, unfortunately S-63 datasets are not supported with the Qt SDK at this time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jan 2020 18:39:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/dynamic-parameters-for-s-63-charts-in-runtime-sdk/m-p/219343#M1105</guid>
      <dc:creator>JamesBallard1</dc:creator>
      <dc:date>2020-01-13T18:39:45Z</dc:date>
    </item>
  </channel>
</rss>

