terrame
terrame copied to clipboard
TerraME is a programming environment for spatial dynamical modelling
https://luart.org/index.html
When TerraME saves a layer in a Directory that has space in its name, it seems that there is a problem in the qgs file that stops the simulation in...
The title of a Model that uses a File as argument produces a multi line string. It is better to remove the file from the title. Something like (in line...
All the problems on geojson seem associated with the data used on the tests due to their incorrect projections and the change about geojson projection #2335. Since terralib used to...
When loading a `CellularSpace` from a shapefile, the `Cells` do not have attribute `parent`. Fix it. ```lua cs = CellularSpace{xdim = 10} print(cs.cells[1].parent) -- OK cs = CellularSpace{file = filePath("amazonia.shp")}...
Maybe it is possible to add an icon on the upper left of the widget windows. ```cpp QIcon appIcon("icon.ico"); this->setWindowIcon(appIcon); ```
Implement a new strategy to distance to polygons that consider the distance to the closest part of the polygon, instead of to its centroid.
TerraME provides a lot of libraries that can be useful for other software that uses terrame as 3rd party. For that, it is necessary terrame takes with it its 3rd...
The strategy `distance` for polygons is not clear in the documentation. It says that " The distance is computed from the centroid of the cell to the closest point, line,...