additional_wp_shapefile` to my `ponds` species.
global {
/** Insert the global definitions, variables and actions here */
// Hyrdolic zones where agents
file hydrolique_shapefile <- file("../includes/region_hydrique/regions_hydrique.shp");
file ponds_shapefile <- file("../includes/mares/Mare.shp");
file additional_wp_shapefile <- file("../includes/mares/water_point_nasegeo.shp");
file ndvi1980 <- file("../includes/ndvi_ferlo/gimms198201_32628.tif"); // Vertical 250 km Horizontal 450km mais plus 350km
geometry shape <- envelope(ndvi1980); // defined the agent size world
// If I use grid the envelope need to be the grid
int nb_faction <- 20 min: 10 max: 1000 parameter: true; //How many camp we initialize
int perception_distance <- int(8 #km); // distance to target food
init{
active_cells <- cells where (string(each.ndvi) != "NaN");
create region_hydro from:hydrolique_shapefile with:[id::int(read("id"))];
create ponds from:ponds_shapefile; // I would like to had
}
}--
You received this message because you are subscribed to the Google Groups "GAMA" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gama-platform+unsubscribe@googlegroups.com.
To post to this group, send email to gama-p...@googlegroups.com.
Visit this group at https://groups.google.com/group/gama-platform.
For more options, visit https://groups.google.com/d/optout.
create ponds from:ponds_shapefile + additional_wp_shapefile;
--
You received this message because you are subscribed to the Google Groups "GAMA" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gama-platfor...@googlegroups.com.