|
3 | 3 | GeoScript Groovy Releases |
4 | 4 | ========================= |
5 | 5 |
|
| 6 | +1.19.0 |
| 7 | +------ |
| 8 | +The 1.19 release of GeoScript is build on Groovy 3.0.11, GeoTools 27.0, and the Java Topology Suite 1.18.2 and requires Java 8. |
| 9 | + |
| 10 | +Add way to get the version:: |
| 11 | + |
| 12 | + println GeoScript.version |
| 13 | + |
| 14 | +Switch build to Java 11. |
| 15 | + |
| 16 | +Added GeoYaml support:: |
| 17 | + |
| 18 | + YamlWriter writer = new YamlWriter() |
| 19 | + Point p = new Point(-122.23, 45.67) |
| 20 | + println(writer.write(p)) |
| 21 | + |
| 22 | + --- |
| 23 | + geometry: |
| 24 | + type: "Point" |
| 25 | + coordinates: |
| 26 | + - -122.23 |
| 27 | + - 45.67 |
| 28 | + |
| 29 | +Added equal earth project to the list of well known projection names. |
| 30 | + |
| 31 | +Added Projection constructor for creating auto projection centered at a Point:: |
| 32 | + |
| 33 | + Projection proj = new Projection(42001, new Point(-102.304688,39.250413)) |
| 34 | + |
| 35 | +Added USGS National Map TileLayer:: |
| 36 | + |
| 37 | + USGSTileLayer usgs = USGSTileLayer.createImagery() |
| 38 | + |
| 39 | +Moved Grid creation for mercator and geodetic pyramids to static methods:: |
| 40 | + |
| 41 | + List<Grid> grids = Grid.createGlobalGeodeticGrids(5) |
| 42 | + |
| 43 | + List<Grid> grids = Grid.createGlobalMercatorGrids(5) |
| 44 | + |
| 45 | +Allow MBTiles metadata bounds to be set. |
| 46 | + |
| 47 | +Added methods to the StyleRepository interface to get Styles. |
| 48 | + |
| 49 | +Allow Workspace to look up styles for a Layer. |
| 50 | + |
| 51 | +Allow Layers to use StyleRepository from the Workspace to look up a default style. |
| 52 | + |
6 | 53 | 1.18.0 |
7 | 54 | ------ |
8 | 55 | The 1.18 release of GeoScript is build on Groovy 3.0.9, GeoTools 26.0, and the Java Topology Suite 1.18.2 and requires Java 8. |
|
0 commit comments