Changes between Initial Version and Version 2 of Ticket #2834
- Timestamp:
- 12/22/15 01:12:40 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2834
- Property Keywords v.in.ogr added
-
Ticket #2834 – Description
initial v2 3 3 I imported vector data by using the Python Shell 4 4 5 {{{ 5 6 g.run_command("v.in.ogr", dsn=loc2+"Schoenbuch_clip_strasse.shp", output=ort+"_strasse",overwrite=True, type="line",flags="o") 6 7 g.run_command("v.in.ogr", dsn=loc2+"Schoenbuch_gewaesserordnung.shp", output=ort+"_gewaesser",overwrite=True, type="line",flags="o") 7 8 g.run_command("v.in.ogr", dsn=loc2+"Schoenbuch_gewasserachse.shp", output=ort+"_gewaesserachse",overwrite=True, type="line",flags="o") 8 9 g.run_command("v.in.ogr", dsn=loc2+"Schoenbuch_weg.shp", output=ort+"_weg",overwrite=True, type="line",flags="o") 10 }}} 9 11 10 12 The database sqlite is connected (v.db.connect), I can open the vector layer, but cannot open the attribute table, but the command v.db.select works without having any problems.