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
dataframe
for statistical analysis based on the smile project - Wrap the
smile.data.DataFrame
class intoDataFrame
which also implementsITable
interface and which is
compatible withGeometry
data type - The interfaces
IDataSet
,IMatrix
,ITable
have a generic type which is the type of theirIterator
(done to
make it compatible withsmile
API) - 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 theIDataSet
interface. - Add the
ProgressMonitor
mechanism. - Add getType() methods on
ITable
interface. - Merge
createSpatialIndex
increateIndex()
. - Rename
getShape()
intogetSize()
. - Add
next()
methods onITable
interface. - Move
link
,load
,save
methods fromIJdbcDataSource
toIDataSource
. - Add
previous()
,first()
,last()
,isFirst()
,isLast()
methods toITable
. - Add
IDataSet<?> filter(String filter)
method toIDataSet
. - Add
stream()
method toIDataSet
. - Make
IDataSet
have two value parameter : one for the iterator, a second for the stream. - Improve
ResultSet
type detection. - Add
getColumnNames(String)
method toIJdbcDataSource
. - Add
firstRow()
method toITable
. - Add
setSrid(int)
method toISpatialTable
and toIColumn
. - Add to
H2GIS
andPOSTGIS
anopen(java.sql.DataSource)
method. - Add to
DataFrame
the methodDataFrame apply(Formula)
. - Add to
JdbcDataSource
the 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.