Administrator
|
Hi,
You can add range with property.range.append(additional_range). The same for domains.
Note that if you have 2 or more ranges, OWL consider the INTERSECTION of the ranges, not their union as one usually want to. If you want the union of 2 ranges (either range1 or range2), you should do: property.range = [Or([range1, range2])]
Jiba
|