Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Technique of spatial data editing via web browser described in this tutorial is extreamly easy: http://workshops.opengeo.org/geoext/wfs/index.html#geoext-wfs

Ext, GeoExt, OpenLayers Geoserver and WFS-T do all dirty job, and you do not have to code anything server side. All UPDATE, INSERT & DELETE queries to database are done by via WFS-T.

Is there something like this for non-spatial data? What will handle store-to-database communication as good as WFS-T? Abovementioned solution is also good for non-spatial data but I would like to avoid using geoserver all the time:)

share|improve this question
This is a question for Stackoverflow. – Pablo Sep 21 '12 at 12:49
You are looking for a web framework, like Django. – Pablo Sep 21 '12 at 12:50
Right - I think I will use Symfony + doctrine (as it is something I know), but I was searching something light. I asked here as most of stackoverflow folks might not know WFS-T. I will try there as well, anyway. – Odoakr Sep 21 '12 at 12:59
Here I started with Django + Tastypie = REST API, consumed with Extjs datastore with rest proxy. Now I'm leaving Tastypie to use only Django consumed by ExtDirect, take a look at that. I serve the vector this way also, Extjs take them and convert to OpenLayers features. I use Geoserver for rasters. – Pablo Sep 21 '12 at 13:04
Thanks for advices. I have heard about GeoDjango: mayby it is even easyer with it. Unfortunately I do not now Python to much:( – Odoakr Sep 21 '12 at 13:16
show 2 more comments

migrated from gis.stackexchange.com Sep 21 '12 at 15:32

1 Answer

There are a number of tools for loading data into PostGIS.

  1. ogr2ogr utility in GDAL is a commandline utility
  2. QGIS is a desktop GIS client that can do CRUD on PostGIS
  3. FME is commercial software that can also do data editing in PostGIS

Lots to choose from

share|improve this answer
It is not what I am looking for. I need a connection between ext grid and postgres. In the example given, this connection is maintained by WFS-T. – Odoakr Sep 21 '12 at 6:14
Pay attention to the question. – Pablo Sep 21 '12 at 12:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.