for to to convert/deconstruct a shapefile
to create a relational table
On 2012-03-18, at 6:46 PM, Stephen Woodbridge wrote:
Does this get you any closer to what you need:
SELECT OGR_GEOM_WKT, * FROM data;
-Steve
That's some nice ogr-foo to learn :)
Simon, it sounds like you could wrap th
On 2012-03-18, at 6:46 PM, Stephen Woodbridge wrote:
> Does this get you any closer to what you need:
>
> SELECT OGR_GEOM_WKT, * FROM data;
>
> -Steve
That's some nice ogr-foo to learn :)
Simon, it sounds like you could wrap this up pretty quickly in a python script
too.
A rough approach exa
On 19/03/12 12:46, Stephen Woodbridge wrote:
On 3/18/2012 7:50 PM, Simon Cropper wrote:
On 17/03/12 00:06, Stephen Woodbridge wrote:
On 3/16/2012 12:52 AM, Simon Cropper wrote:
Hi,
Does anyone know of a simple means to take a shapefile and create a
either a SQLite or xBase table?
Essentially
On 3/18/2012 7:50 PM, Simon Cropper wrote:
On 17/03/12 00:06, Stephen Woodbridge wrote:
On 3/16/2012 12:52 AM, Simon Cropper wrote:
Hi,
Does anyone know of a simple means to take a shapefile and create a
either a SQLite or xBase table?
Essentially it is taking an attached attribute table, ins
On 17/03/12 00:06, Stephen Woodbridge wrote:
On 3/16/2012 12:52 AM, Simon Cropper wrote:
Hi,
Does anyone know of a simple means to take a shapefile and create a
either a SQLite or xBase table?
Essentially it is taking an attached attribute table, inserting the
coordinates in a field and saving
This could also likely be scripted using OGR’s Python bindings.
From: discuss-boun...@lists.osgeo.org [mailto:discuss-boun...@lists.osgeo.org]
On Behalf Of Micha Silver
Sent: Friday, March 16, 2012 11:04 AM
To: OSGeo Discussions
Subject: Re: [OSGeo-Discuss] Need for to to convert/deconstruct a
On 03/16/2012 06:52 AM, Simon Cropper wrote:
Hi,
Does anyone know of a simple means to take a shapefile and create
a either a SQLite or xBase table?
Essentially it is taking an attached attribute table, inserting
the coordinates in
On 3/16/2012 12:52 AM, Simon Cropper wrote:
Hi,
Does anyone know of a simple means to take a shapefile and create a
either a SQLite or xBase table?
Essentially it is taking an attached attribute table, inserting the
coordinates in a field and saving the new file in a designated format.
Most of