tinyows
tinyows copied to clipboard
Source code of the TinyOWS project. Please submit pull requests to the 'main' branch.
Am trying to expose a vector layer (loaded from shape file into PostGIS) as a WFS layer using tinyows. Following the instructions in the mapserver/tinyows documentation, here is the .map...
I came across this because of an attribute that is a windows path: ``` "documents": "..\Photos\17\f139p223.jpg" ``` When parsing with JSON.parse(..) the "\P" causes: ``` SyntaxError: JSON.parse: bad escaped character...
FILE: wfs_get_feature.c FUNCTION: wfs_geojson_display_results id_name is initialized with buffer_init() but buffer_free is not called for it
``` create type texture as (url text,uv float[][]); create table textured_geometry (gid serial primary key, geom geometry('MULTIPOLYGONZ',3946,3), name text, tex texture); insert into textured_geometry(geom, name, tex) values ('SRID=3946;MULTIPOLYGON Z (((0...
in wfs_geojson_display_results, the return value of ows_psql_id_column will be null in this case, it could be checked there or before to make sure the table has the appropriate structure
PostgreSQL hstore attribute is not handled. Explore a way to handle such kind of storage, if possible.
Restricting to only PostGIS greatly reduces the usability of TinyOWS. Please consider at least implementing OGR. Best would be achieving the status of MapServer.
When using a prefix name like this:
Currently the mapfile parser in TinyOWS doesn't support multiline options in the MapServer mapfile. The multiline syntax supported by MapServer is very convenient for keeping long subqueries readable instead of...
When trying to use the WFS 1.1.0 output in OpenLayers, I get an error from the OpenLayers GML v3 Format reader when trying to parse a gml:posList element. In looking...