Open EricBoix opened 7 years ago
Comment by frogsapo Tuesday Apr 19, 2016 at 15:13 GMT
We shall consider the upcoming FloodAR plugin as example.
class MNT
to deal with ASC files.Appearance
sub-directory) the CityGML to the orthophoto corresponding tileMNT* BuildTile( MNT* in, int size_x, int size y, int tile_x, int tile_y)
.
Issue by frogsapo Tuesday Apr 19, 2016 at 14:33 GMT Originally opened as https://github.com/MEPP-team/VCity/issues/99
Pre-requisite: issue #96
A plugin is a GUI oriented type of wrapping of an underlying process. A process (an algorithm taking an in memory data structure and processing it to yield a resulting in memory data structure) can also be wrapped in a
main()
function to be used from the command line or in a scripting language (e.g. Python) to be composed with other processes in a programmatic manner.This multi-usage (multi-wrapping) strategy requires some technical organization:
The demand: provide a first reference example of such an process/wrappers organization to be used as reference example.