Releases: orbisgis/orbisdata
Releases · orbisgis/orbisdata
v2.1.1
v2.1.0
Changelog for v2.1.0
- Update H2GIS to 2.2.0
- Fix getTable method when the user set a subquery
eg h2GIS.getSpatialTable("h2gis").columns("land", "st_precisionreducer(st_transform(the_geom, 4326), 3) as the_geom")
.filter("limit 1").getSpatialTable() - Add methods on datasource to create, drop indexes, drop table, drop columns
- Update H2GIS to 2.2.1-SNAPSHOT
- Add row count method on datasource
- Add method to create spatial index on first geometry column
- Filter null or empty table name before executing the drop table command
- Add getExtent method on datasource
- Fix isEmpty when the table doesn't have any columns
- Update H2 to 2.2.224 and fix PostGIS tests
- Set slf4j-simple as scope test
- Update to groovy 3.0.19
- Add a print method to display the content of a table
- Update to groovy 4.0.17
- Update to H2GIS 2.2.1
v2.0.0
Changelog for v2.0.0
- Add docs/CHANGELOG.md file
- IJdbcDataSource now implements Java DataSource
- Add Raster connection point
- Add the IMatrix interface for multidimensional structured data
- Rename
getColumns()intogetColumnsType()andgetColumnsName()intogetColumns() - Rename
getColumnsType(String)intogetColumnType(String) - Add a new module named
dataframefor statistical analysis based on the smile project - Wrap the
smile.data.DataFrameclass intoDataFramewhich also implementsITableinterface and which is
compatible withGeometrydata type - The interfaces
IDataSet,IMatrix,ITablehave a generic type which is the type of theirIterator(done to
make it compatible withsmileAPI) - Change the license to LGPL 3
- Add the interface
IJdbcSpatialTable. - Make the interface/classes overrides parents method return type in order to return their corresponding types.
- Fix bug on DSL built tables.
- Add a method
getSummary()on theIDataSetinterface. - Add the
ProgressMonitormechanism. - Add getType() methods on
ITableinterface. - Merge
createSpatialIndexincreateIndex(). - Rename
getShape()intogetSize(). - Add
next()methods onITableinterface. - Move
link,load,savemethods fromIJdbcDataSourcetoIDataSource. - Add
previous(),first(),last(),isFirst(),isLast()methods toITable. - Add
IDataSet<?> filter(String filter)method toIDataSet. - Add
stream()method toIDataSet. - Make
IDataSethave two value parameter : one for the iterator, a second for the stream. - Improve
ResultSettype detection. - Add
getColumnNames(String)method toIJdbcDataSource. - Add
firstRow()method toITable. - Add
setSrid(int)method toISpatialTableand toIColumn. - Add to
H2GISandPOSTGISanopen(java.sql.DataSource)method. - Add to
DataFramethe methodDataFrame apply(Formula). - Add to
JdbcDataSourcethe méthodsCollection<String> getTableNames(...)with multiple signatures. - Change the request building from a
ITable, only usecolumns(String...)(optional) followed byfilter(String)(optional) to make request.
A sub request can be made by callinggetTable()after calling againcolumns(String...)andfilter(String). - Use H2 2.0.206
- Upgrade H2 to 2.1.214 and Groovy to 3.0.11
- Upgrade to H2GIS 2.1.0
- Remove OrbisParents
- Add commons as a module
- Fix several tests
1.0.0
First pre-release done before module path changes.