<?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: SceneView with raster basemap loads really slowly in Qt Maps SDK Questions</title>
    <link>https://community.esri.com/t5/qt-maps-sdk-questions/sceneview-with-raster-basemap-loads-really-slowly/m-p/303493#M1496</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the wkid of the data (C:/Projects/NewMaps/myMap.tif) you are using?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can imagine that your tif has to be reprojected ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to suggest using the Topographic.tpk&lt;/P&gt;&lt;P&gt;(found &lt;A class="link-titled" href="https://github.com/Esri/arcgis-runtime-demo-java/blob/master/dev-summit-2015/data/getstarted/Topographic.tpk" title="https://github.com/Esri/arcgis-runtime-demo-java/blob/master/dev-summit-2015/data/getstarted/Topographic.tpk"&gt;arcgis-runtime-demo-java/Topographic.tpk at master · Esri/arcgis-runtime-demo-java · GitHub&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take care&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Nov 2017 14:12:20 GMT</pubDate>
    <dc:creator>NorbertThoden</dc:creator>
    <dc:date>2017-11-21T14:12:20Z</dc:date>
    <item>
      <title>SceneView with raster basemap loads really slowly</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/sceneview-with-raster-basemap-loads-really-slowly/m-p/303492#M1495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm working with C++ logic and qml UI.&lt;/P&gt;&lt;P&gt;I used to have a MapView object with a raster basemap (from a local tif file), and everything was OK...&lt;/P&gt;&lt;P&gt;Then&amp;nbsp; I realized that I needed 3D so I changed the object to SceneView, but almost didn't change anything else (just initial viewpoint). Now the map takes about 1 minute until it's fully loaded and displayed.&lt;/P&gt;&lt;P&gt;I've even tried it with one of the arcgis samples. I took the surface_placement sample, replaced the basemap with my tif file, and it behaves the same. Takes forever...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void Surface_Placement::componentComplete()&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; QQuickItem::componentComplete();&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; m_sceneView = findChild&amp;lt;SceneQuickView*&amp;gt;("sceneView");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Raster* raster = new Raster("C:/Projects/NewMaps/myMap.tif", this);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; RasterLayer* rasterLayer = new RasterLayer(raster, this);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Basemap* baseMap = new Basemap(rasterLayer, this);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Scene* scene = new Scene(baseMap, this);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Camera camera(32.1283, 34.9078, 1300, 0, 0, 0);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Viewpoint viewpoint(32.1283, 34.9078, 20000);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; scene-&amp;gt;setInitialViewpoint(viewpoint);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; m_sceneView-&amp;gt;setArcGISScene(scene);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 11:41:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/sceneview-with-raster-basemap-loads-really-slowly/m-p/303492#M1495</guid>
      <dc:creator>AnatBen_Israel</dc:creator>
      <dc:date>2017-11-09T11:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: SceneView with raster basemap loads really slowly</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/sceneview-with-raster-basemap-loads-really-slowly/m-p/303493#M1496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the wkid of the data (C:/Projects/NewMaps/myMap.tif) you are using?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can imagine that your tif has to be reprojected ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to suggest using the Topographic.tpk&lt;/P&gt;&lt;P&gt;(found &lt;A class="link-titled" href="https://github.com/Esri/arcgis-runtime-demo-java/blob/master/dev-summit-2015/data/getstarted/Topographic.tpk" title="https://github.com/Esri/arcgis-runtime-demo-java/blob/master/dev-summit-2015/data/getstarted/Topographic.tpk"&gt;arcgis-runtime-demo-java/Topographic.tpk at master · Esri/arcgis-runtime-demo-java · GitHub&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take care&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2017 14:12:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/sceneview-with-raster-basemap-loads-really-slowly/m-p/303493#M1496</guid>
      <dc:creator>NorbertThoden</dc:creator>
      <dc:date>2017-11-21T14:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: SceneView with raster basemap loads really slowly</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/sceneview-with-raster-basemap-loads-really-slowly/m-p/303494#M1497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll post my solution in case anyone faces the same problem...&lt;/P&gt;&lt;P&gt;Apparently, a simple raster indeed takes very long to load. In order to speed things up, the raster needs to have statistics and pyramids calculated and located in the same folder (.xm and .ovr files).&lt;/P&gt;&lt;P&gt;These files can be (actually must be, as much as I understand) created using ArcGIS Pro.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Dec 2017 14:50:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/sceneview-with-raster-basemap-loads-really-slowly/m-p/303494#M1497</guid>
      <dc:creator>AnatBen_Israel</dc:creator>
      <dc:date>2017-12-24T14:50:41Z</dc:date>
    </item>
  </channel>
</rss>

