<?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: batch export jpeg with world files data driven pages in Mapping Questions</title>
    <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538215#M5830</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not adept at python, but I think what you'd need to do is somehow cycle through each index feature in data view, zoom to the index feature, export the data view, then repeat with the next index feature, and so on.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Jun 2016 17:38:12 GMT</pubDate>
    <dc:creator>DavidBarnes</dc:creator>
    <dc:date>2016-06-16T17:38:12Z</dc:date>
    <item>
      <title>batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538212#M5827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;I'd like to know if it is possible to batch export jpg + world file (jpw or so) in batch using a Data Driven Pages python script.&lt;/P&gt;&lt;P&gt;I don't think it is possible because there is a limitation in Arcgis : the layout view doesn't permit the world file attachement and Data Driven Pages only exports layout views.&lt;/P&gt;&lt;P&gt;World file creation is only allowed in Data view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know if there is a trick / solution to do what I want to achieve using an advanced python script. &lt;STRONG&gt;A script that would run data driven pages in Layout View to export each view as JPG+ world file ?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example of python script to export Data driven pages as EMF in Data view&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif;"&gt;mxd = arcpy.mapping.MapDocument("CURRENT")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif;"&gt;for pageNum in range(1, mxd.dataDrivenPages.pageCount + 1):&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif;"&gt;&amp;nbsp; mxd.dataDrivenPages.currentPageID = pageNum&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial',sans-serif;"&gt;&amp;nbsp; arcpy.mapping.ExportToEMF(mxd, r"J:\81B\____Répertoires Trafic\60-Contributions_autres_agences\62-Production\Paris\16_RFF_SCH_SECTEUR\3_production\A_SIG_SchSect\PRODCARTO\11_Prospective\Carte_" + str(pageNum) + ".emf", convert_markers=True)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Arial',sans-serif;"&gt;del mxd&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 13:41:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538212#M5827</guid>
      <dc:creator>AntoninGosset</dc:creator>
      <dc:date>2016-06-16T13:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538213#M5828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-mapping/exporttojpeg.htm"&gt;ExportToJpeg &lt;/A&gt;does allow for world files So I am not sure what you are trying to export&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 13:59:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538213#M5828</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-06-16T13:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538214#M5829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it does ... only for the data view as I said.&lt;/P&gt;&lt;P&gt;The data driven pages batch export only works with layout views, thus preventing to write world files ... so I'm stuck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 14:38:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538214#M5829</guid>
      <dc:creator>AntoninGosset</dc:creator>
      <dc:date>2016-06-16T14:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538215#M5830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not adept at python, but I think what you'd need to do is somehow cycle through each index feature in data view, zoom to the index feature, export the data view, then repeat with the next index feature, and so on.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 17:38:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538215#M5830</guid>
      <dc:creator>DavidBarnes</dc:creator>
      <dc:date>2016-06-16T17:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538216#M5831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think Dan is right, you can export the layout view to JPEG with a world file according to the documentation: &lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-mapping/exporttojpeg.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-mapping/exporttojpeg.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;ExportToJPEG—Help | ArcGIS for Desktop&lt;/A&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;ExportToJPEG (map_document, out_jpeg, {data_frame}, {df_export_width}, {df_export_height}, {resolution}, {world_file}, {color_mode}, {jpeg_quality}, {progressive})&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And here is some code to iterate through your data driven pages:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;mxd = arcpy.mapping.MapDocument("CURRENT")
# Iterate map series pages
for pageNum in range(1, mxd.dataDrivenPages.pageCount + 1):
&amp;nbsp;&amp;nbsp; mxd.dataDrivenPages.currentPageID = pageNum
&amp;nbsp;&amp;nbsp; outFile = outputFolder + "\\" + mxd.dataDrivenPages.pageRow.getValue(mxd.dataDrivenPages.pageNameField.name) + ".jpg"
&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToJPEG(mxd, outFile, resolution=150, world_file=True)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:22:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538216#M5831</guid>
      <dc:creator>FC_Basson</dc:creator>
      <dc:date>2021-12-11T23:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538217#M5832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;P&gt;I'll test the code. I'm not the only one in my company who's interested to do it. It'll help us a lot.&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 08:20:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538217#M5832</guid>
      <dc:creator>AntoninGosset</dc:creator>
      <dc:date>2016-06-17T08:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538218#M5833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I ran a test but you know ... I'm don't know anything in python. I tried place my output files in C:\Export. Can you tell me what syntax should I use ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt; mxd = arcpy.mapping.MapDocument("CURRENT")&lt;/P&gt;&lt;P&gt;... # Iterate map series pages&lt;/P&gt;&lt;P&gt;... for pageNum in range(1, mxd.dataDrivenPages.pageCount + 1):&lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp; mxd.dataDrivenPages.currentPageID = pageNum&lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp; outFile = "C:\Export" + "\\" + mxd.dataDrivenPages.pageRow.getValue(mxd.dataDrivenPages.pageNameField.name) + ".jpg"&lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToJPEG(mxd, outFile, resolution=150, world_file=True)&lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Runtime error &lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 5, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;TypeError: cannot concatenate 'str' and 'int' objects&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 13:44:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538218#M5833</guid>
      <dc:creator>AntoninGosset</dc:creator>
      <dc:date>2016-06-17T13:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538219#M5834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There's an error in your pathname.&amp;nbsp; Luckily &lt;A href="https://community.esri.com/migrated-users/3116" target="_blank"&gt;Dan Patterson&lt;/A&gt;​ wrote a real nice blog post on Python path names, which I would advise any novice Pythonian to take note of: &lt;A href="https://community.esri.com/migration-blogpost/55463" target="_blank"&gt;Filenames and file paths in Python&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;To mix strings and integers, use the str() function on the integers:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; "abc" + 123
Runtime error 
Traceback (most recent call last):
&amp;nbsp; File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;
TypeError: cannot concatenate 'str' and 'int' objects
&amp;gt;&amp;gt;&amp;gt; "abc" + str(123)
'abc123'
&amp;gt;&amp;gt;&amp;gt; &lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:22:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538219#M5834</guid>
      <dc:creator>FC_Basson</dc:creator>
      <dc:date>2021-12-11T23:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538220#M5835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you are learning don't take short cuts&lt;/P&gt;&lt;P&gt;a = mxd.dataDrivenPages.pageNameField.name &lt;/P&gt;&lt;P&gt;print(a)&lt;/P&gt;&lt;P&gt;b = r "C:\Export" + "\\" + str(mxd.dataDrivenPages.pageRow.getValue(a)) + ".jpg"&lt;/P&gt;&lt;P&gt;print(b)&lt;/P&gt;&lt;P&gt; and see if it print out correctly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 13:51:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538220#M5835</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-06-17T13:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538221#M5836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried but failed. Could you write the right code ? Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 14:01:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538221#M5836</guid>
      <dc:creator>AntoninGosset</dc:creator>
      <dc:date>2016-06-17T14:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538222#M5837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what were the print statement results? and what were the errors?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 14:51:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538222#M5837</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-06-17T14:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538223#M5838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;mxd = arcpy.mapping.MapDocument("CURRENT")&amp;nbsp; &lt;/P&gt;&lt;P&gt;# Iterate map series pages&amp;nbsp; &lt;/P&gt;&lt;P&gt;for pageNum in range(1, mxd.dataDrivenPages.pageCount + 1):&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; mxd.dataDrivenPages.currentPageID = pageNum&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; a = mxd.dataDrivenPages.pageNameField.name&lt;/P&gt;&lt;P&gt;print(a)&lt;/P&gt;&lt;P&gt;b = r "C:\Export" + "\\" + str(mxd.dataDrivenPages.pageRow.getValue(a)) + ".jpg"&lt;/P&gt;&lt;P&gt;print(b)&lt;/P&gt;&lt;P&gt;arcpy.mapping.ExportToJPEG(mxd, b, resolution=150, world_file=True)&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 15:58:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538223#M5838</guid>
      <dc:creator>AntoninGosset</dc:creator>
      <dc:date>2016-06-17T15:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538224#M5839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Parsing error SyntaxError: invalid syntax (line 7)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 15:58:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538224#M5839</guid>
      <dc:creator>AntoninGosset</dc:creator>
      <dc:date>2016-06-17T15:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538225#M5840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you scrunch all this together to save space?&lt;/P&gt;&lt;P&gt;mxd.dataDrivenPages.pageRow.getValue&lt;/P&gt;&lt;P&gt;and what did this print?&lt;/P&gt;&lt;P&gt;print(a)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 18:01:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538225#M5840</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-06-17T18:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538226#M5841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just tried to make it work but apparently it didn't. I don't know programming so I don't know what I'm doing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 08:13:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538226#M5841</guid>
      <dc:creator>AntoninGosset</dc:creator>
      <dc:date>2016-06-22T08:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538227#M5842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then start here: &lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy/what-is-arcpy-.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy/what-is-arcpy-.htm"&gt;What is ArcPy?—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;P&gt;ArcPy/Python is an incredibly powerfull tool.&amp;nbsp; If you need to do this in the future again, do yourself a favour and learn Python.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 08:18:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538227#M5842</guid>
      <dc:creator>FC_Basson</dc:creator>
      <dc:date>2016-06-22T08:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: batch export jpeg with world files data driven pages</title>
      <link>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538228#M5843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There's a space after the r before the pathname - not allowed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 08:23:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/batch-export-jpeg-with-world-files-data-driven/m-p/538228#M5843</guid>
      <dc:creator>FC_Basson</dc:creator>
      <dc:date>2016-06-22T08:23:10Z</dc:date>
    </item>
  </channel>
</rss>

