<?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: Reading ShapeFiles and converting to CIM xml format using Qt SDK API in Qt Maps SDK Questions</title>
    <link>https://community.esri.com/t5/qt-maps-sdk-questions/reading-shapefiles-and-converting-to-cim-xml/m-p/1084085#M4372</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/507824"&gt;@VikasGanesh&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I think some of this may be doable with the Runtime, but the workflow sounds better suited to ArcGIS Pro utilizing the export tools.&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/overview/export-data.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/overview/export-data.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;However, if you need a Runtime solution, you can use ShapefileFeatureTable class, and that will give you access to all the features in the Shapefile feature table.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-shapefilefeaturetable.html" target="_blank"&gt;https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-shapefilefeaturetable.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Once it's loaded you can use the inherited methods from FeatureTable, like queryFeatures to find all features, read their info and write them out (somehow) directly to xml.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-featuretable.html#queryFeatures" target="_blank"&gt;https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-featuretable.html#queryFeatures&lt;/A&gt;&lt;/P&gt;&lt;P&gt;When using queryFeatures, you can provide "1=1" as your whereClause to query all features.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-queryparameters.html#setWhereClause" target="_blank"&gt;https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-queryparameters.html#setWhereClause&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I think that would get you there, but I still think ArcGIS Pro would be the best option is it is better suited to data export workflows.&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;</description>
    <pubDate>Thu, 29 Jul 2021 17:11:07 GMT</pubDate>
    <dc:creator>JamesBallard1</dc:creator>
    <dc:date>2021-07-29T17:11:07Z</dc:date>
    <item>
      <title>Reading ShapeFiles and converting to CIM xml format using Qt SDK API</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/reading-shapefiles-and-converting-to-cim-xml/m-p/1083835#M4371</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;I am new to ArcGIS, I have few shapefiles now my task is to read the shapefiles contents and convert it to xml file (CIM format). I don't want to display this shapefiles in UI, I just need to read the contents of the shapefiles.&amp;nbsp; I am basically from C++ background, hence I prefer to use ArcGIS Runtime API&amp;nbsp; for Qt.&lt;/P&gt;&lt;P&gt;1. Can I able to read the shapefiles using&amp;nbsp;ArcGIS Runtime API&amp;nbsp; for Qt ?&lt;/P&gt;&lt;P&gt;2. Is it possible to provide some hints or code snippets or API reference to achieve this task.&lt;/P&gt;&lt;P&gt;Any support in this regard is very helpful...&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jul 2021 04:57:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/reading-shapefiles-and-converting-to-cim-xml/m-p/1083835#M4371</guid>
      <dc:creator>VikasGanesh</dc:creator>
      <dc:date>2021-07-29T04:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Reading ShapeFiles and converting to CIM xml format using Qt SDK API</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/reading-shapefiles-and-converting-to-cim-xml/m-p/1084085#M4372</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/507824"&gt;@VikasGanesh&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I think some of this may be doable with the Runtime, but the workflow sounds better suited to ArcGIS Pro utilizing the export tools.&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/overview/export-data.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/overview/export-data.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;However, if you need a Runtime solution, you can use ShapefileFeatureTable class, and that will give you access to all the features in the Shapefile feature table.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-shapefilefeaturetable.html" target="_blank"&gt;https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-shapefilefeaturetable.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Once it's loaded you can use the inherited methods from FeatureTable, like queryFeatures to find all features, read their info and write them out (somehow) directly to xml.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-featuretable.html#queryFeatures" target="_blank"&gt;https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-featuretable.html#queryFeatures&lt;/A&gt;&lt;/P&gt;&lt;P&gt;When using queryFeatures, you can provide "1=1" as your whereClause to query all features.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-queryparameters.html#setWhereClause" target="_blank"&gt;https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-queryparameters.html#setWhereClause&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I think that would get you there, but I still think ArcGIS Pro would be the best option is it is better suited to data export workflows.&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jul 2021 17:11:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/reading-shapefiles-and-converting-to-cim-xml/m-p/1084085#M4372</guid>
      <dc:creator>JamesBallard1</dc:creator>
      <dc:date>2021-07-29T17:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: Reading ShapeFiles and converting to CIM xml format using Qt SDK API</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/reading-shapefiles-and-converting-to-cim-xml/m-p/1084342#M4373</link>
      <description>&lt;P&gt;Thanks JamesBallard1, this is really a very useful information for me to start...&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 06:47:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/reading-shapefiles-and-converting-to-cim-xml/m-p/1084342#M4373</guid>
      <dc:creator>VikasGanesh</dc:creator>
      <dc:date>2021-07-30T06:47:01Z</dc:date>
    </item>
  </channel>
</rss>

