Package ch.epfl.lbd.database.spatial

Examples of ch.epfl.lbd.database.spatial.Geometry.union()


  public Geometry getGeometry(){
    if(episodes.size() < 2) return null;
    Geometry trj_shape = episodes.get(1).getGeometry();
    for(Episode episode : episodes){
      if(episode instanceof Move)
        trj_shape = trj_shape.union(episode.getGeometry());
    }
    return trj_shape;
  }
 
  public LifeSpan getLifeSpan(){
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.