<?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: Can you import multiple geocoded png files as point symbols? in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1127158#M49142</link>
    <description>&lt;P&gt;IT WORKED!!&lt;/P&gt;</description>
    <pubDate>Fri, 17 Dec 2021 15:06:09 GMT</pubDate>
    <dc:creator>DavidZiegler</dc:creator>
    <dc:date>2021-12-17T15:06:09Z</dc:date>
    <item>
      <title>Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1117667#M47928</link>
      <description>&lt;P&gt;I have a hundreds of company logo png files that I am trying to batch import as point symbols. I haven't had much luck batch importing them to XY points (seems you have to do it individually...way too many for this).&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, could one geocode (associated XY coords) with the png files (via some software, or other) and then &amp;nbsp;import them as point symbols?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 14:12:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1117667#M47928</guid>
      <dc:creator>DavidZiegler</dc:creator>
      <dc:date>2021-11-17T14:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1117715#M47934</link>
      <description>&lt;P&gt;How wide-spread geographically are you points?&amp;nbsp; You could georeference the images if you can figure out ground truth monuments.&amp;nbsp; Do this images have some sort of xy notation?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 15:24:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1117715#M47934</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2021-11-17T15:24:48Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1117985#M47957</link>
      <description>&lt;P&gt;Joe, I have found programs that can assign lat-long (i.e. from an excel sheet with XY and png file columns) to each png file.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 23:58:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1117985#M47957</guid>
      <dc:creator>DavidZiegler</dc:creator>
      <dc:date>2021-11-17T23:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1118060#M47967</link>
      <description>&lt;P&gt;You could assign geotags to the logos and run GeotaggedPhotosToPoints, creating an attachment tables from the logos and then symbolize the points with the attachments (see last point of the list below).&lt;/P&gt;&lt;P&gt;This might be simpler and can be done completely in ArcGIS:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Input: Table (Excel/CSV/etc) with X, Y, LogoPath&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_4-1637221174704.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/27739iB993D6FC7D3AB887/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohannesLindner_4-1637221174704.png" alt="JohannesLindner_4-1637221174704.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;import table into ArcGIS Pro&lt;/LI&gt;&lt;LI&gt;right-click on the table -&amp;gt; Display XY Data -&amp;gt; save as point feature class&lt;/LI&gt;&lt;LI&gt;add field LogoData (BLOB)&lt;/LI&gt;&lt;LI&gt;read the logos into the feature class with this python script (run in ArcGIS Pro Python window)&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="python"&gt;with arcpy.da.UpdateCursor("NameOfLogoLayer", ["LogoPath", "LogoData"]) as cursor:
    for row in cursor:
        with open(row[0], "rb") as f:
            cursor.updateRow([row[0], f.read()])&lt;/LI-CODE&gt;&lt;UL&gt;&lt;LI&gt;symbolize the layer&lt;UL&gt;&lt;LI&gt;Single Symbol&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_1-1637220903978.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/27736i6406454026B528B9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohannesLindner_1-1637220903978.png" alt="JohannesLindner_1-1637220903978.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Allow symbol property connections&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_2-1637220954812.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/27737i698D0DA4A76038AA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohannesLindner_2-1637220954812.png" alt="JohannesLindner_2-1637220954812.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Picture Marker, map File to LogoData, set size&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_5-1637221378139.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/27740iC391012E0BCEF238/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohannesLindner_5-1637221378139.png" alt="JohannesLindner_5-1637221378139.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Result:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_3-1637221107529.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/27738iEBE21B9F69245507/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohannesLindner_3-1637221107529.png" alt="JohannesLindner_3-1637221107529.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Nov 2021 07:44:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1118060#M47967</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2021-11-18T07:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1123682#M48793</link>
      <description>&lt;P&gt;I am going to try this. Thanks for providing this--I hope it works. I may come back to ask you questions.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 01:02:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1123682#M48793</guid>
      <dc:creator>DavidZiegler</dc:creator>
      <dc:date>2021-12-08T01:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1123683#M48794</link>
      <description>&lt;UL&gt;&lt;LI&gt;add field LogoData (BLOB)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;[Johannes, what does this mean?]&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 01:05:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1123683#M48794</guid>
      <dc:creator>DavidZiegler</dc:creator>
      <dc:date>2021-12-08T01:05:37Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1123718#M48797</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/525004"&gt;@DavidZiegler&lt;/a&gt;&amp;nbsp;Create a new field in the point feature class with the name "LogoData" and the field type BLOB (Binary Large OBject).&lt;/P&gt;&lt;P&gt;Fields of this type can store byte data, so everything you can think of. Images, PDFs, Excel, Word, music, video, etc.&lt;/P&gt;&lt;P&gt;We're going to use it to store the logo files directly in the feature class.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 08:43:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1123718#M48797</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2021-12-08T08:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1123816#M48811</link>
      <description>&lt;P&gt;Johannes,&lt;/P&gt;&lt;P&gt;I put the code verbatim into the Python script window (found in analysis); but, how do I run it? I don't see a go, or run.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 14:52:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1123816#M48811</guid>
      <dc:creator>DavidZiegler</dc:creator>
      <dc:date>2021-12-08T14:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1123821#M48812</link>
      <description>&lt;P&gt;Change&amp;nbsp;&lt;STRONG&gt;NameOfLogoLayer&lt;/STRONG&gt; to the actual name of the logo layer (or the path to the feature class).&lt;/P&gt;&lt;P&gt;To run, skip to the end of the code and press enter.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 14:57:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1123821#M48812</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2021-12-08T14:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1123833#M48815</link>
      <description>&lt;P&gt;Does the Python need to be activated?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 15:11:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1123833#M48815</guid>
      <dc:creator>DavidZiegler</dc:creator>
      <dc:date>2021-12-08T15:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1123969#M48832</link>
      <description>&lt;P&gt;Johannes: Sent you a direct message with attachment.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 19:07:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1123969#M48832</guid>
      <dc:creator>DavidZiegler</dc:creator>
      <dc:date>2021-12-08T19:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1124848#M48908</link>
      <description>&lt;P&gt;Johannes: Sent another attachment, with code--the code ran this time, but got an error. Screen capture is in private message. Again, many thanks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 14:17:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1124848#M48908</guid>
      <dc:creator>DavidZiegler</dc:creator>
      <dc:date>2021-12-10T14:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1125484#M48982</link>
      <description>&lt;P&gt;Johannes: I have the URL of the logo in logo path--but what goes into logo data? I have nothing in that column--what should be there?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Dec 2021 17:24:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1125484#M48982</guid>
      <dc:creator>DavidZiegler</dc:creator>
      <dc:date>2021-12-13T17:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1125818#M49011</link>
      <description>&lt;P&gt;Johannes has provided an effective path here to putting multiple company or other picture (png or other) logos on a map. I can't thank him enough.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 14:08:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1125818#M49011</guid>
      <dc:creator>DavidZiegler</dc:creator>
      <dc:date>2021-12-14T14:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1127158#M49142</link>
      <description>&lt;P&gt;IT WORKED!!&lt;/P&gt;</description>
      <pubDate>Fri, 17 Dec 2021 15:06:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1127158#M49142</guid>
      <dc:creator>DavidZiegler</dc:creator>
      <dc:date>2021-12-17T15:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1127405#M49180</link>
      <description>&lt;P&gt;Ultimately, after several errors on my part, IT WORKED!&lt;/P&gt;</description>
      <pubDate>Sat, 18 Dec 2021 14:20:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1127405#M49180</guid>
      <dc:creator>DavidZiegler</dc:creator>
      <dc:date>2021-12-18T14:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1338320#M74032</link>
      <description>&lt;P&gt;Adding blob attachments as a label looks like a simple 3 step process, however no matter what I try, I just get the "broken image" icon.&amp;nbsp; I'm on 2.9.9 and tried it on 3.1 with the same result.&amp;nbsp; Is there some other setting I'm missing.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 17:38:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1338320#M74032</guid>
      <dc:creator>m3</dc:creator>
      <dc:date>2023-10-16T17:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1348379#M75082</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/36867"&gt;@m3&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;It doesn't work with labels, only with symbology (but I guess you're actually using symbology)&lt;/LI&gt;&lt;LI&gt;It doesn't work with attachments. You have to read the byte data into the actual table.&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Sat, 11 Nov 2023 15:28:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1348379#M75082</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2023-11-11T15:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: Can you import multiple geocoded png files as point symbols?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1350885#M75297</link>
      <description>&lt;P&gt;The instructions are simple enough but it doesn't work for me.&amp;nbsp; 2.9 or 3.1-2. Different APRX, different images, just get the broken image symbol, I just gave up&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2023 16:07:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-you-import-multiple-geocoded-png-files-as/m-p/1350885#M75297</guid>
      <dc:creator>m3</dc:creator>
      <dc:date>2023-11-17T16:07:47Z</dc:date>
    </item>
  </channel>
</rss>

