This version introduces significant improvements to make defining model point sets easier and more flexible:
- No need to define model point sets in
input.py
- if no model point sets are defined, a single calculation will be performed. - Flexible naming - model point set no longer needs to be named
main
. Instead, for multiple sets, exactly one must have themain
parameter set toTrue
(e.g.,ModelPointSet(main=True)
). - Simplified
ID_COLUMN
- theID_COLUMN
setting has been removed. Use theid_column
parameter directly in theModelPointSet
class (e.g.,ModelPointSet(id_column=...
)). - Updated template - the initial template now includes helpful comments to make getting started easier.
These changes reduce complexity.