Skip to content

Commit 65d5761

Browse files
committed
More release notes
1 parent a4d5a26 commit 65d5761

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

doc/releases.rst

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ GeoScript Groovy Releases
55

66
1.7.0
77
-----
8-
The 1.7.0 release of GeoScript is built on Grooovy 2.4.6, GeoTools 15.0, and the Java Topology Suite 1.13.
9-
It also requires Java 8.
8+
The 1.7.0 release of GeoScript is built on Grooovy 2.4.6, GeoTools 15.0, and the Java Topology Suite 1.13 and
9+
requires Java 8.
1010

1111
This version focused on making GeoScript more modular and extensible. GeoScript is more extensible by
1212
providing Service Provider Interface (SPI) end points for Readers, Writer, Formats, TileLayers and Workspaces.
1313
GeoScript is more modular by using Groovy's Extension Modules to add methods dynamically.
1414

1515
Most of the other features of 1.7 were contributed by the community (thank you sbortman, blackrez, and gnafu)
16-
or drive by the development of `geoc <https://github.com/jericks/geoc>`_ (a geospatial commandline application),
16+
or driven by the development of `geoc <https://github.com/jericks/geoc>`_ (a geospatial commandline application),
1717
`geo-shell <https://github.com/jericks/geo-shell>`_ (an interactive shell for geospatial analysis),
1818
and `MBTilesServer <https://github.com/jericks/MBTilesServer>`_ (a Spring Boot based web app for serving
19-
mbtiles maps).
19+
MBtiles maps).
2020

2121
**Tile**
2222

@@ -128,13 +128,21 @@ GeoScript Groovy Releases
128128

129129
**Workspace**
130130

131-
Workspaces have much better connection string and maps.
131+
Workspaces have much better connection string and maps which are useful for command line applications::
132132

133-
Users of the OGR Workspace can now use the static setErrorHandler(quiet, logging, or default) method to control OGR's logging.
133+
Workspace w = Workspace.getWorkspace("dbtype=postgis database=postgres host=localhost port=5432 user=postgres passwd=postgres")
134+
135+
Workspace w = Workspace.getWorkspace("database=layers.gpkg dbtype=geopkg user=me passwd=s$cr$t")
136+
137+
Users of the OGR Workspace can now use the static setErrorHandler(quiet, logging, or default) method to control OGR's logging::
138+
139+
OGR.setErrorHandler("quiet")
134140

135141
All workspaces now include a Workspace.remove(String name) method that can remove a Layer from the Workspace.
136142

137-
The Shapefile module inherited a Shapefile.dump(File,Layer) method from GeoTools.
143+
The Shapefile module inherited a Shapefile.dump(File,Layer) method from GeoTools::
144+
145+
Directory workspace = Shapefile.dump(dir, layer)
138146

139147
Shapefile and Property layers can look up side car SLD or CSS files.
140148

0 commit comments

Comments
 (0)