@@ -4,10 +4,59 @@ GeoScript Groovy Releases
44=========================
55
661.11-SNAPSHOT
7- ------
8- The 1.11 release of GeoScript is currently under development and is built on Grooovy 2.4.12 , GeoTools 19.0, and the Java Topology Suite 1.13 and
7+ -------------
8+ The 1.11 release of GeoScript is currently under development and is built on Grooovy 2.4.14 , GeoTools 19.0, and the Java Topology Suite 1.13 and
99requires Java 8.
1010
11+ Add support for storing PBF vector tiles in MBTiles database::
12+
13+ File file = new File("world.mbtiles")
14+
15+ Pyramid pyramid = Pyramid.createGlobalMercatorPyramid()
16+ pyramid.origin = Pyramid.Origin.TOP_LEFT
17+ VectorTiles vectorTiles = new VectorTiles(
18+ "world",
19+ file,
20+ pyramid,
21+ "pbf"
22+ )
23+
24+ Fix getting values from Rasters with short values.
25+
26+ Set the name when creating DBTiles.
27+
28+ Add tile counts and min and max zoom level methods to DBTiles::
29+
30+ DBTiles dbtiles = new DBTiles("jdbc:sqlite:${dbFile}","org.sqlite.JDBC")
31+ List stats = dbtiles.tileCounts
32+ stats.eachWithIndex { Map stat, int index ->
33+ println stat.zoom
34+ println stat.tiles
35+ println stat.total
36+ println stat.percent
37+ }
38+
39+ println dbtiles.minZoom
40+ println dbtiles.maxZoom
41+
42+ Add getMetadata method to DBTiles::
43+
44+ DBTiles dbtiles = new DBTiles("jdbc:sqlite:${dbFile}","org.sqlite.JDBC")
45+ Map<String,String> metadata = dbtiles.metadata
46+ println metadata.name
47+ println metadata.type
48+ println metadata.version
49+ println metadata.description
50+ println metadata.format
51+ println metadata.bounds
52+ println metadata.attribution
53+
54+ Improve PBF VectorTile reading and writing.
55+
56+ Add mercator top left wellknown pyramid name.
57+
58+ Add pretty print option to geojson writing.
59+
1160Include the gt-epsg-extension GeoTools Library to support more projections::
1261
1362 Projection proj = new Projection("EPSG:104905")
0 commit comments