Re: [gdal-dev] ogr2ogr convert e00 to shp

2013-02-18 Thread Murat Beyhan
Dear Friends, Thank you for the explanation you helped me. I have move files from created directory to the working directory by bash scripting. By the way I understood behaviour of ogr more. Regards. Murat 2013/2/18 Andreas Oxenstierna > How complex is your input file(s)? > ArcInfo coverage/E

Re: [gdal-dev] ogr2ogr convert e00 to shp

2013-02-17 Thread Andreas Oxenstierna
How complex is your input file(s)? ArcInfo coverage/E00 can have virtually any number of featureclasses. However, a coverage have non-redundant geometry with only two primary geometry sources: point and line. All other featureclasses (polygons, nodes, multipolys, multilines etc) shares the geom

Re: [gdal-dev] ogr2ogr convert e00 to shp

2013-02-17 Thread Murat Beyhan
Thanks for the great explanation and help, But still I couldn't solve my problem. Shape file which is generated by ogr2ogr should be under the working directory as a file not as a fiel under the new directory. I mean after run the command I would like to see shape file under the working directory f

Re: [gdal-dev] ogr2ogr convert e00 to shp

2013-02-15 Thread Eli Adam
Murat, > I was creating shp file using ogr2ogr as follows > > avcimport file.e00 coverage > > ogr2ogr -f "ESRI Shapefile" file.shp coverage > > This was worked well for old version of gdal > > I have installed gdal 1.9 then I have faced such a problem > > the ogr2ogr command create a directory and

Re: [gdal-dev] ogr2ogr convert e00 to shp

2013-02-15 Thread Andre Joost
Hi, please answer to the lst, so others can benefit from the answers. Am 15.02.2013 21:06, schrieb Murat Beyhan: Hi André, thanks for your comment. I know this but It is never created such shp file. It only creates directory and it is containing followings ARC.dbf ARC.shp ARC.shx igds.dbf igds.

Re: [gdal-dev] ogr2ogr convert e00 to shp

2013-02-15 Thread Andre Joost
Hi, I had this problem too if the file "file.shp already exists. GDAL does not want to overwrite such a file, but create a directory instead. So bet workflow is to delete the output file, if it exists, and then carry on with ogr2ogr: if exist file.shp del file.shp ogr2ogr -f "ESRI Shaoefi

[gdal-dev] ogr2ogr convert e00 to shp

2013-02-15 Thread Murat Beyhan
Dear frend, I was creating shp file using ogr2ogr as follows avcimport file.e00 coverage ogr2ogr -f "ESRI Shapefile" file.shp coverage This was worked well for old version of gdal I have installed gdal 1.9 then I have faced such a problem the ogr2ogr command create a directory and shp file lo