IlwisCore
IlwisCore copied to clipboard
Integrated Land and Water Information System (ILWIS) is a remote sensing and GIS software. ILWIS Core is the functional center of ilwis4..
I believe the `catalogconnector.h`'s `clone()` method does have [misleading documentation in place](https://github.com/52North/IlwisCore/blob/master/core/catalog/catalogconnector.h#L28). It states ``` adds a filter to set of filters which this connector will use when adding items...
For `kernel.h` the `demangle(const char *mangled_name)` operation declares that it ``` Adds an operation to the commandhandler. The commandhandler is the internal object that handles commands but it is not...
It would be interesting to have an [R](https://r-project.org) wrapper, just like the [Python one](https://github.com/52North/IlwisCore/wiki/ILWIS-Python-API---TechDoc). Is this on the roadmap already (since it is mentioned in the [architecture](https://github.com/52North/IlwisCore/wiki/ILWIS-Next-Generation-%28Architecture%29) ? I could...
Have you worked on a Docker image for ILWIS yet? I'd like to give it a go, if you point me to the latest installation instructions for Ilwis on Linux.
Set the envelope of one coordinate system to another coordinate system; does not give any warning if the two coordinate systems have different projection (e.g., UTM and LatLon). It would...
FeatureCoverage.addColumn Adding column to an attribute table of feature coverage (e.g., world) using Python (world.addColumn("NewCol", "value"); print "True" if column is added or "False" if not added. it shouldn't print...
The way a new column is added to a FeatureCoverage, using Python is not logical: the column-index is part of the datadefinition instead of a parameter to the addColumn function....
While testing the iffraster operation, it was found that creating a boolean map through the following expression would not work: newmap=iff(aa = small.mpr > 50, 50, 10)
As the subfeatures now have a proper interface the featureiterator needs to be adapted. It works fine when there are no subfeatures ( majority of the cases) but it wont...
The axis order of coordinate systems [is a well known confusion](http://wiki.osgeo.org/wiki/Axis_Order_Confusion) which causes many problems in the geo world. Currently ILWIS internally expects `x/y` coordinates to be `lon/lat` (in fact,...