create a Spatial Entity: Municipe CormasNS.Models.JogoMan1 defineClass: #Municipe superclass: #{CormasNS.Kernel.SpatialEntityAggregate} indexedType: #none private: false instanceVariableNames: 'name myTerritory ' classInstanceVariableNames: '' imports: '' category: 'JogoMan1Category' inicialize Municipe: init myTerritory := OrderedCollection new. self name: '' create a method in the scheduler: "There are three types of municipe (variable of Spatial Entity Cell): munA, munB and munC" "This method must do three aggregations and put each aggregation in variable myTerritory of Spatial Entity Municipe, that it was defined how OrderedCollection. But, the last aggregation is stored only. Why? Must I create a method to add each aggreation? Is it possible?" buildMunicipeTerritory "aggregate the cells of a municipality in a municipality Territory - munA" self spaceModel setAggregates: Municipe from: Cell verifying: [:c | c municipe = #munA]. self theMunicipes do: [:c | c myTerritory: self theMunicipes]. "aggregate the cells of a municipality in a municipality Territory - munB" self spaceModel setAggregates: Municipe from: Cell verifying: [:c | c municipe = #munB]. self theMunicipes do: [:c | c myTerritory: self theMunicipes]. "aggregate the cells of a municipality in a municipality Territory - munC" self spaceModel setAggregates: Municipe from: Cell verifying: [:c | c municipe = #munC]. self theMunicipes do: [:c | c myTerritory: self theMunicipes].