Blame view

src/collembola/model/CollemLoader.java 2.84 KB
1b1e928cc   glaville   initial import of...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
  package collembola.model;
  
  import java.io.IOException;
  import java.net.MalformedURLException;
  import java.net.URL;
  
  import org.geotools.data.shapefile.ng.ShapefileDataStore;
  import org.geotools.data.simple.SimpleFeatureCollection;
  import org.geotools.data.simple.SimpleFeatureIterator;
  import org.geotools.data.simple.SimpleFeatureSource;
  import org.geotools.geometry.jts.ReferencedEnvelope;
  import org.opengis.feature.simple.SimpleFeature;
  
  import com.vividsolutions.jts.geom.Coordinate;
  import com.vividsolutions.jts.geom.GeometryFactory;
  import com.vividsolutions.jts.geom.MultiPolygon;
  import com.vividsolutions.jts.geom.Point;
  
  public class CollemLoader {
  	
  	public static CollemModel load(int x, int y, URL shpFile) {
  		SimpleFeatureSource source;
  		SimpleFeatureCollection collection;
  		ReferencedEnvelope env;
  		
  		try {
  			ShapefileDataStore store = new ShapefileDataStore(shpFile);
  			store.setMemoryMapped(true);
  			
  			String name = store.getTypeNames()[0];
  			source = store.getFeatureSource(name);
  			collection = source.getFeatures();
  			env = source.getBounds();
  		} catch (IOException e) {
  			throw new RuntimeException("Error parsing shapefile", e);
  		};
  
  		int index = 0;
  		System.out.println(collection.size());
  		SimpleFeatureIterator it = collection.features();
  		GeometryFactory gf = new GeometryFactory();
  		//CollemCell[][] grid = model.getGrid();
  		
  		CollemModel model = new CollemModel(x, y, collection.size());
  		int [] plotSurfaces = model.getPlotsSurfaces();
  		
  		try {
  			while (it.hasNext()) {
  				SimpleFeature f = it.next();
  				MultiPolygon poly = (MultiPolygon) f.getDefaultGeometry();
  				
  				//System.out.println("Rasterizing shape #" + index);
  				
  				for (int i = 0; i < x; i++) {
  					for (int j = 0; j < y; j++) {
  						//final CollemCell cell = grid[i][j];
  								
  						if (model.getPatchOwner(i, j) != -1) continue;
  						
  						final double xpos = transform(i + 0.5, 0, x, env.getMinX(), env.getMaxX());
  						final double ypos = transform(j + 0.5, 0, y, env.getMinY(), env.getMaxY());
  						
  						Point point = gf.createPoint(new Coordinate(xpos, ypos));
  						
  						if (poly.contains(point)) {
  							model.setPatchOwner(i, j, index);
  							model.setPatchType(i, j, (Integer) (f.getAttribute("Level1")));
  							plotSurfaces[index]++;
  							//System.out.println("Set " + i + ", " + j + " to " + cell);
  						}
  					}
  				}
  				
  				index++;
  			}
  		} finally {
  			//it.close();
  		}
  		
  		//System.out.println(model);
  		return model;
  	}
  	
  	public static double transform(double n, double min1, double max1, double min2, double max2) {
  		final double range1 = max1 - min1;
  		final double range2 = max2 - min2;
  		return ((n - min1) / range1) * range2 + min2;
  	}
  	
  	public static void main(String[] args) throws MalformedURLException {
  		/*CollemModel model =*/ CollemLoader.load(256, 256, new URL("file://data/site4.shp"));
  		//model.savePicture();
  	}
  
  }