SpeciesZoneType szt1 = new SpeciesZoneType(propertiesConfig.getProperty("defaultSpecies1Name"), 5, Integer.valueOf(propertiesConfig.getProperty("defaultSpecies1SpeciesCount")), Double.valueOf(propertiesConfig.getProperty("defaultSpecies1PerSpeciesBiomass")), 0.0, SpeciesTypeEnum.PLANT);
SpeciesZoneType szt2 = new SpeciesZoneType(propertiesConfig.getProperty("defaultSpecies2Name"), 88, Integer.valueOf(propertiesConfig.getProperty("defaultSpecies2SpeciesCount")), Double.valueOf(propertiesConfig.getProperty("defaultSpecies2PerSpeciesBiomass")), 0.0, SpeciesTypeEnum.ANIMAL);
speciesList.add(szt1);
speciesList.add(szt2);
//Increasing carrying capacity of grass
ManipulationResponse mResponse = modifyManipulatingParameters(speciesList, timestepIdx , true, response.getNetworkId());
if(mResponse == null)
return null;
String manipulationId = mResponse.getManipulationId();
String oldNetworkId = mResponse.getNetworksId();
// deleteNetwork(response.getNetworkId()); // deleting old network made by NetworkCreationRequest
//Increasing carrying capacity of buffalo
// mResponse = modifyManipulatingParameters(szt2, timestepIdx, false, manipulationId);
// deleteNetwork(oldNetworkId); // deleting old network made by previous manipulation