1 package au.gov.amsa.geo; 2 3 import au.gov.amsa.gt.Shapefile; 4 5 public class Eez { 6 7 public static Shapefile loadEezLine() { 8 // good for crossing checks 9 return Shapefile.fromZip(Eez.class.getResourceAsStream("/eez_aust_mainland_line.zip")); 10 } 11 12 public static Shapefile loadEezPolygon() { 13 // good for contains checks 14 return Shapefile.fromZip(Eez.class.getResourceAsStream("/eez_aust_mainland_pl.zip")); 15 } 16 17 18 }