Strabon
view ChangeLog @ 952:800120faf87f
mainly updated license info ("year")
author | Konstantina Bereta <Konstantina.Bereta@di.uoa.gr> |
---|---|
date | Fri Mar 29 19:05:56 2013 +0200 (2013-03-29) |
parents | 83c75a4c96c0 |
children | 4ec1afc91a19 |
line source
1 Day Month Date Hour:Min:Sec Year Pyravlos Team
3 * Version 3.2.9 released.
5 * Support for parsing EPSG URIs in geometry literals with datatype
6 geo:wktLiteral.
7 (bug #33: http://bug.strabon.di.uoa.gr/ticket/33)
9 Tue Mar 26 13:28:26 2013 Pyravlos Team
11 * Version 3.2.8 released.
13 * Added support for handling (storing/querying) GeoSPARQL datatypes.
14 (bug #31: http://bug.strabon.di.uoa.gr/ticket/31)
16 * Fixed a bug in StoreOp that wouldn't close the connection, neither
17 rollback the transaction upon an exception. This had as a side effect
18 the abnormal termination of StoreOp (through for example the use of
19 Ctrl-C signal) which was leaving the database locked.
21 * Fixed bug where spatial aggregates (e.g., union) didn't work as
22 expected when the query didn't contain a `GROUP BY' clause.
23 (bug #22: http://bug.strabon.di.uoa.gr/ticket/22)
25 * Updated GeoSPARQL namespaces and fixed function names to comply with
26 the GeoSPARQL specification.
27 (bug #25: http://bug.strabon.di.uoa.gr/ticket/25)
29 Wed Jan 09 18:06:41 2013 Pyravlos Team
31 * Version 3.2.7 released.
33 * Add an extension function
34 <http://strdf.di.uoa.gr/extensions/ontology#diffDateTime> for computing the
35 span (in milliseconds) between two timestamps.
37 * Added an <endpoint-exec> module. This module builds an executable jar file
38 with an embedded Apache Tomcat 7. To create and run the executable jar just
39 type:
40 $ mvn clean package
41 $ java -jar endpoint-exec/target/strabon-endpoint-executable-*.jar
43 * Modified strabon script and postgis/monetdb.StoreOP class to get an
44 option for storing a RDF file in a named graph. Moreover, the RDF
45 format of the input RDF file now is given as an option (still, if it
46 is missing, it is assumed that the input is in N-TRIPLES format). The
47 option for the format is -f and the option for the named graph is -g
48 (takes a URI as an argument).
50 * Modified the names of the stSPARQL extension functions that
51 utilize the minimum bounding boxes of the involved geometries.
53 Tue Dec 11 19:33:45 2012 Pyravlos Team
55 * Version 3.2.6 released.
57 * Modified the names of the stSPARQL extension functions to comply
58 with the OGC Simple Features Access standard.
60 Tue Dec 11 00:11:43 2012 Pyravlos Team
62 * Version 3.2.5 released.
64 * Added support for querying temporal information. This functionality
65 may be found in the `temporals' branch.
67 The datatypes <http://strdf.di.uoa.gr/ontology#period> and
68 <http://www.w3.org/2001/XMLSchema#dateTime> are used to
69 represent periods and instants respectively.
71 The valid time time of triples is represented using quadtruples,
72 with the valid time annotation(instant or period) being the
73 fourth element of the quad. In the same way, temporal triple
74 patterns are used in queries to retrieve the valid time of
75 triples.
77 Some functions have been renamed (their URIs have changed) to
78 follow the names of the respective relations of Allen's
79 interval algebra and other functions have been added.
81 The following temporal functions are supported:
82 during, periodOverlaps, equalsPeriod, nequalsPeriod, adjacent,
83 before, after, overleft, overright, meets, starts, finishes,
84 period_intersect, period_union, preceding_period, and
85 succeeding_period.
87 * Changed behaviour of Strabon and Strabon Endpoint for connecting to
88 a spatially-enabled database. Only one instance of Strabon is allowed
89 at a time.
91 * Implemented a Java client for Strabon Endpoint. The client should be
92 used only with endpoint versions >=3.2.5. The implementation may be
93 found int the `endpoint-client' submodule of maven. Currently, only
94 querying of Strabon Endpoints is supported.
96 * Added support for requesting the capabilities of Strabon Endpoint
97 (fixes Bug #20 <http://bug.strabon.di.uoa.gr/ticket/20>). See
98 changesets f840796400bf and ?<TBC>? for specific details and how you
99 can determine the capabilities of older endpoints (versions <= 3.2.4).
101 * Updated KML writer to include the projected variables of an stSPARQL
102 query in "ExtendedData" and "Data" tags. This is the proper way to
103 do it if we need to convert a KML to a ESRI shapefile and also include
104 such information as attributes for a feature. See related pages from
105 KML specification:
106 <https://developers.google.com/kml/documentation/kmlreference#extendeddata>
107 <https://developers.google.com/kml/documentation/extendeddata>
109 * Added user authentication for storing RDF data through Strabon
110 Endpoint. The credentials are specified in
111 WEB-INF/credentials.properties file.
113 * Strabon Endpoints now limits the number of the results to a maximum
114 one. The maximum number is specified in the beans.xml file. This
115 corresponds to parameter "maxLimit". The endpoint script has also been
116 updated correspondingly; the limit can be given using the option "-l".
117 One can disable limiting of query results, by setting the "maxLimit"
118 parameter to 0. Addresses Bug #6
119 (<http://bug.strabon.di.uoa.gr/ticket/6>).
121 * Added "Known Issues" section to README.
123 * Added -m (more memory) and -M (much more memory) options in strabon
124 script for out-of-memory exceptions.
126 * Fixed Bug #10 (<http://bug.strabon.di.uoa.gr/ticket/10>). Now
127 KMLWriter handles more geometric types (other than polygons). See
128 changeset 9a3bfee64a39.
130 * Menu and navigation in Strabon Endpoint has changed to use jquery.
131 The menu is now populated using the queries placed inside the beans.xml.
133 * Added BrowseBean and browse.jsp for browsing the RDF data using the
134 Strabon Endpoint.