<?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: Using GDAL utilities within ArcGIS python scripting in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393552#M31157</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes you can build script tools with GDAL just like other python packages. Make sure you install the appropriate GDAL bindings for the version of python you use with ArcGIS. Also, don't run the scripts 'in process', see the GDAL &lt;/SPAN&gt;&lt;A href="http://trac.osgeo.org/gdal/wiki/PythonGotchas#PythonbindingscannotbeusedsuccessfullyfromArcGISin-processgeoprocessingtoolsArcGIS9.3andlater"&gt;Python "Gotchas" wiki page&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Mar 2012 04:27:33 GMT</pubDate>
    <dc:creator>Luke_Pinner</dc:creator>
    <dc:date>2012-03-12T04:27:33Z</dc:date>
    <item>
      <title>Using GDAL utilities within ArcGIS python scripting</title>
      <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393550#M31155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have GDAL installed with the python bindings. Does anyone know how I use this to build some tools in ArcGIS? I didn't check before the GDAL install, but I can import gdal in the python command line window now.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Mar 2012 06:03:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393550#M31155</guid>
      <dc:creator>MichaelStead</dc:creator>
      <dc:date>2012-03-10T06:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Using GDAL utilities within ArcGIS python scripting</title>
      <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393551#M31156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Not really sure if it will work, but I can't see why it would not... You need to look into the normal method of making a script tool and using it within Arc (i.e. try &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/gallery/file/geoprocessing/details?entryID=3EA6DA1B-1422-2418-7FE9-986BD1B7C947" rel="nofollow noopener noreferrer" target="_blank"&gt;this&lt;/A&gt;&lt;SPAN&gt;) for starters.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then make a script like normal and add the 'from osgeo import gdal' line to import GDAL.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Arc really just uses paths for the inputs and outputs from script tools, which GDAL can then use to load files, so you can make use of the handy Arc interface, so your script might be like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
from osgeo import gdal

inputPath = arcpy.GetParamaterAsText(0)

inputRaster = gdal.Open(inputPath)

# do operations, etc., etc., etc.&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know how you get on, or if you have other questions!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:02:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393551#M31156</guid>
      <dc:creator>StacyRendall1</dc:creator>
      <dc:date>2021-12-11T18:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: Using GDAL utilities within ArcGIS python scripting</title>
      <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393552#M31157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes you can build script tools with GDAL just like other python packages. Make sure you install the appropriate GDAL bindings for the version of python you use with ArcGIS. Also, don't run the scripts 'in process', see the GDAL &lt;/SPAN&gt;&lt;A href="http://trac.osgeo.org/gdal/wiki/PythonGotchas#PythonbindingscannotbeusedsuccessfullyfromArcGISin-processgeoprocessingtoolsArcGIS9.3andlater"&gt;Python "Gotchas" wiki page&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 04:27:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393552#M31157</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2012-03-12T04:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: Using GDAL utilities within ArcGIS python scripting</title>
      <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393553#M31158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was originally just wanting a tool to create vrt's within ArcMap from folders of rasters. I just figured out how to call the built in GDAL command line scripts last night. Here is my super simple script for a raster conversion tool that just uses ArcGIS for inputs and outputs. I stuck a list of raster type codes into the 3rd parameter so you can pick them from a dropdown. Not all that useful as ArcMap could already do most common formats, but it gets me started.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is all it is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
from subprocess import call
Input = arcpy.GetParameterAsText(0)
Output = arcpy.GetParameterAsText(1)
OutType = arcpy.GetParameterAsText(2)
String = "gdal_translate -of " + OutType + " " + Input + " " + Output
call(String)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;here's all I did to be able to build VRT's from a folder of tiled images....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
from subprocess import call
InputFolder = arcpy.GetParameterAsText(0)
InType = arcpy.GetParameterAsText(1)
OutputFolder = arcpy.GetParameterAsText(2)
VRTName = arcpy.GetParameterAsText(3)
String = "gdalbuildvrt " + OutputFolder + "\\" + VRTName + ".vrt " + InputFolder + "\\*." + InType
call(String)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would really like to see an example of something that is using GDAL from python in the way it is meant to be incorporated, not using the command line scripts. I have found some very specific examples online that are from a tutorial for a class somewhere, but they refer to specific data and other scripts that I don't have access to.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:02:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393553#M31158</guid>
      <dc:creator>MichaelStead</dc:creator>
      <dc:date>2021-12-11T18:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using GDAL utilities within ArcGIS python scripting</title>
      <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393554#M31159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Do you have this working?&amp;nbsp; I followed your example, but I am not using getparamsastext() as a input at this time. I tried to use the ogr2ogr utility in my snake script and I got it pretty far, but when I call it, basically nothing happens.&amp;nbsp; I suspect it may be syntax errors for the ogr2ogr inputs, but I am not too sure?&amp;nbsp; When I run this script subprocess.check_output I get the following &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;CalledProcessError: Command 'ogr2ogr -f "KML" throwthisaway.kml test.dgn' returned non-zero exit status 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is my code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import os.path&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import subprocess&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import os&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import sys&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import osgeo&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import gdal&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;from osgeo import ogr&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import ogr2ogr&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import xml.parsers.expat&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import ogrinfo&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import subprocess&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;from subprocess import call&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;log=open(r'C:\Users\E186854\Desktop\logs\log.txt', 'a')&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#Set this directory to your source folder1 declaration&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;folder1 =r"C:\Users\E186854\Desktop\dgn"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#get into the working folder&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;os.chdir('C:\Users\E186854\Desktop\dgn')&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#make sure I am working in the proper folder at first&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;print os.getcwd()&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;string=str("ogr2ogr -f"+ ' "KML"'+" "+ 'throwthisaway.kml'+" "+'test.dgn')&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;subprocess.call (string, shell=True)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;out=subprocess.check_output(string, shell=True)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;log.close()&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Mar 2013 17:30:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393554#M31159</guid>
      <dc:creator>DougKnight</dc:creator>
      <dc:date>2013-03-14T17:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using GDAL utilities within ArcGIS python scripting</title>
      <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393555#M31160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import osgeo
import gdal
from osgeo import ogr&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;This is unnecessary , as you're not using the GDAL/OGR python bindings. Note the correct way to import gdal is "from osgeo import gdal"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import ogr2ogr
import ogrinfo&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;ogr2ogr and ogrinfo are commandline programs not python modules. This should fail with an ImportError exception.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;string=str("ogr2ogr -f"+ ' "KML"'+" "+ 'throwthisaway.kml'+" "+'test.dgn')&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;Use a list instead, it's easier to read:&lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;cmd=["ogr2ogr", "-f", "KML", "throwthisaway.kml", "test.dgn"]&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;You can use subprocess.Popen if you want to get the ogr2ogr error message:&lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,stderr=subprocess.PIPE)
stdout,stderr=proc.communicate()
exit_code=proc.wait()
if exit_code: print stderr
else: print stdout&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:02:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393555#M31160</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2021-12-11T18:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Using GDAL utilities within ArcGIS python scripting</title>
      <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393556#M31161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Luke, now in 10x/Pro we have RasterToNumpyArray - does that provide a method to get our rasters from the numpy array to gdal in-process without the&lt;A href="http://trac.osgeo.org/gdal/ticket/3672"&gt; kludgy workaround&lt;/A&gt; detailed here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Feb 2016 16:05:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393556#M31161</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2016-02-19T16:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Using GDAL utilities within ArcGIS python scripting</title>
      <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393557#M31162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Curtis, I would think so, but haven't specifically tested.&amp;nbsp; I haven't had any issues with a number of python toolboxes I've written that use gdal. If I get a chance, I'll test.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Feb 2016 20:01:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393557#M31162</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2016-02-19T20:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: Using GDAL utilities within ArcGIS python scripting</title>
      <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393558#M31163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kludgy workaround no longer required (tested on ArcGIS 10.2.2). This simple script works fine as a script tool run multiple times in-process from a binary (tbx) toolbox:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
from osgeo import gdal
path = r'/path/to/some/raster'
ds = gdal.Open(path)
ras = arcpy.Raster(path)

arr = ds.ReadAsArray()
arcpy.AddMessage(repr(arr))
arr = ds.GetRasterBand(1).ReadAsArray()
arcpy.AddMessage(repr(arr))
arr = arcpy.RasterToNumPyArray(path)
arcpy.AddMessage(repr(arr))&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:02:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393558#M31163</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2021-12-11T18:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: Using GDAL utilities within ArcGIS python scripting</title>
      <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393559#M31164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Luke. Today I tried ArcGIS Pro's Conda setup to do this:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;conda install Python=3.4.4 gdal&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;and it seemed to work, the python gdal tools seemed to all be there. Have tried this new approach?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Sep 2016 05:21:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393559#M31164</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2016-09-07T05:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: Using GDAL utilities within ArcGIS python scripting</title>
      <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393560#M31165</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/3355"&gt;Curtis Price&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes and no and sort of.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I keep a separate Conda env for GDAL stuff and (&lt;SPAN style="font-family: courier new,courier,monospace;"&gt;conda create -n some_new_env -c conda-forge python=3.5 gdal&lt;/SPAN&gt;) and keep my ArcGIS Pro env pristine (well pristine so far... &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had some trouble with the old version of conda that ships with ArcGIS Pro 1.3 as it wouldn't run the GDAL pre and post activation batch files (that set and restore some environment vars). So I upgraded conda, broke ArcGIS Pro completely and had to reinstall... I then ended up installing a separate updated conda to muck around with and leaving ArcGIS Pro completely alone.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2016 04:52:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393560#M31165</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2016-09-14T04:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using GDAL utilities within ArcGIS python scripting</title>
      <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393561#M31166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh too bad. Sure would be nice to have a function we can use to set those environments (and set them back). This would allow you to directly access gdal tools from within ArcGIS script tools. That's what I really want. We geonet-istas should definitely share such an animal if we come up with it. &lt;A href="https://community.esri.com/migrated-users/3428"&gt;Steve Lynch&lt;/A&gt;‌ could you pass this idea around the smoke (well,maybe chai-steam) -filled room in Redlands? Being able to easily run gdal tools would a great option for certain raster operations that are slower or aren't easily done in arcpy-raster land. This may be just an implementation issue - just show us how to do it - no work on your part beyond that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Sep 2016 21:12:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393561#M31166</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2016-09-17T21:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using GDAL utilities within ArcGIS python scripting</title>
      <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393562#M31167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;while people are sniffing around, is there any word on whether python 3.5.x and the matching conda package is going to ship with PRO 1.4? or is that too far off in the distance (aka next years Dev or UC)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Sep 2016 23:49:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393562#M31167</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-09-17T23:49:28Z</dc:date>
    </item>
    <item>
      <title>Re: Using GDAL utilities within ArcGIS python scripting</title>
      <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393563#M31168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dan,&lt;/P&gt;&lt;P&gt;Very likely that Pro 1.4 ships&amp;nbsp;with Python 3.5.&lt;/P&gt;&lt;P&gt;-Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2016 15:59:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393563#M31168</guid>
      <dc:creator>DavidWynne</dc:creator>
      <dc:date>2016-09-19T15:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using GDAL utilities within ArcGIS python scripting</title>
      <link>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393564#M31169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now an Idea, &lt;A href="https://community.esri.com/ideas/13916" target="_blank"&gt;https://community.esri.com/ideas/13916&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jun 2021 08:32:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-gdal-utilities-within-arcgis-python/m-p/393564#M31169</guid>
      <dc:creator>MattWilkie3</dc:creator>
      <dc:date>2021-06-22T08:32:43Z</dc:date>
    </item>
  </channel>
</rss>

