<div>Hello:</div>
<div> </div>
<div>I&#39;m new in the use of FWTools enviroment. I&#39;m developing a python module that executes an ogr2ogr command. This module will ask the user to enter some parameters such as map names, layer names, etc. I already make my code to execute setfw and ogr2ogr, but when I enter the argument that points to tha original file, it shows me an error. I copied and pasted the code and the error. Hope you can help me. </div>

<div> </div>
<div>from dbf import *<br>from osgeo import ogr<br>import os<br>import sys</div>
<div>def call():<br>      print &quot;Ingresa el nombre para el nuevo mapa&quot;<br>      arg1 = &quot;R1G-GEODESIA2.shp&quot;<br>      print arg1<br>      print &quot;Ingresa la condicion&quot;<br>      arg2 = &quot;LAYER = &#39;R1G-GEODESIA&#39;&quot;<br>
      print arg2<br>      print &quot;Ingresa el nombre del mapa original&quot;<br>      arg3 = &#39;tapalpa_05_plani_point.shp&#39;<br>      print arg3<br>      os.system(&#39;&quot;C:/Archivos de programa/FWTools2.4.7/setfw&quot;&#39;)<br>
      os.chdir(&#39;C:\Python26&#39;)<br>      os.system(&#39;&quot;C:/Archivos de programa/FWTools2.4.7/bin/ogr2ogr.exe&quot;&#39;+&quot; &quot; +&quot;arg1&quot; +&quot; &quot;+ &quot;-where&quot; +&quot; &quot;+ &quot;arg2&quot; +&quot; &quot; +&quot;arg3&quot;+&quot;&quot;)<br>
call()</div>
<div>Traceback (most recent call last):<br>  File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt;<br>  File &quot;fw.py&quot;, line 20, in &lt;module&gt;<br>    call()<br>  File &quot;fw.py&quot;, line 18, in call<br>
    os.chrdir(&#39;C:\Python26&#39;)<br>AttributeError: &#39;module&#39; object has no attribute &#39;chrdir&#39;<br>&gt;&gt;&gt; import fw<br>Ingresa el nombre para el nuevo mapa<br>R1G-GEODESIA2.shp<br>Ingresa la condicion<br>
LAYER = &#39;R1G-GEODESIA&#39;<br>Ingresa el nombre del mapa original<br>tapalpa_05_plani_point.shp<br>FAILURE:<br>Unable to open datasource `arg3&#39; with the following drivers.<br>  -&gt; ESRI Shapefile<br>  -&gt; MapInfo File<br>
  -&gt; UK .NTF<br>  -&gt; SDTS<br>  -&gt; TIGER<br>  -&gt; S57<br>  -&gt; DGN<br>  -&gt; VRT<br>  -&gt; REC<br>  -&gt; Memory<br>  -&gt; BNA<br>  -&gt; CSV<br>  -&gt; NAS<br>  -&gt; GML<br>  -&gt; GPX<br>  -&gt; KML<br>  -&gt; GeoJSON<br>
  -&gt; Interlis 1<br>  -&gt; Interlis 2<br>  -&gt; GMT<br>  -&gt; SQLite<br>  -&gt; ODBC<br>  -&gt; PGeo<br>  -&gt; OGDI<br>  -&gt; PostgreSQL<br>  -&gt; MySQL<br>  -&gt; XPlane<br>  -&gt; AVCBin<br>  -&gt; AVCE00<br>  -&gt; DXF<br>
  -&gt; Geoconcept<br>  -&gt; GeoRSS<br>  -&gt; GPSTrackMaker<br>  -&gt; VFK<br></div>