Exemple #1
0
 public void LoadZones(AgentType CurrType)
 {
     if (CurrType == AgentType.Household)
     {
         using (var currReader = new InputDataReader(
             Constants.DATA_DIR + "Household\\CensusZonalData.csv"))
         {
             currReader.FillZonalData(ZonalCollection);
         }
     }
     else if (CurrType == AgentType.Person)
     {
         CreateSpatialZones();
     }
     else if (CurrType == AgentType.HouseholdPersonComposite)
     {
         CreateSpatialZones();
     }
 }