File: DumpShp.java

package info (click to toggle)
mapserver 5.0.3-3%2Blenny7
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 13,556 kB
  • ctags: 12,645
  • sloc: ansic: 168,024; cs: 8,534; python: 4,618; sh: 4,213; cpp: 4,059; perl: 2,781; makefile: 787; lex: 564; java: 415; yacc: 334; tcl: 158; ruby: 53
file content (69 lines) | stat: -rw-r--r-- 1,991 bytes parent folder | download | duplicates (3)
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
import edu.umn.gis.mapscript.*;

/**
 * <p>Title: Mapscript shape dump example.</p>
 * <p>Description: A Java based mapscript to dump information from a shapefile.</p>
 * @author Yew K Choo  (ykchoo@geozervice.com)
 * @version 1.0
 */

public class DumpShp {
  public  static String getShapeType(int type)
  {
    switch (type)
    {
      case 1: return "point";
      case 3: return "arc";
      case 5: return "polygon";
      case 8: return "multipoint";
      default: return "unknown";
    }
  }

  public static void usage() {
    System.err.println("Usage: DumpShp {shapefile.shp}");
    System.exit(-1);
  }

  public static void main(String[] args) {
    if (args.length != 1) usage();
	try
	{
	  System.loadLibrary("mapscript");
	}
	catch(UnsatisfiedLinkError ule)
	{
	  System.err.println(ule);
	  System.exit(-1);
	}

    shapefileObj shapefile = new shapefileObj (args[0],-1);
    System.out.println ("Shapefile opened (type = "  + getShapeType(shapefile.getType()) +
                        " with " + shapefile.getNumshapes() + " shapes).");


    shapeObj shape = new shapeObj(-1);

    for(int i=0; i<shapefile.getNumshapes(); i++) {
        shapefile.get(i, shape);

        System.out.println("Shape[" + i + "] has " + shape.getNumlines() + " part(s)");
        System.out.println("bounds (" + shape.getBounds().getMinx() + "," + shape.getBounds().getMiny() + ")" +
                           "(" + shape.getBounds().getMaxx() + "," + shape.getBounds().getMaxy() + ")");

        for(int j=0; j<shape.getNumlines(); j++) {
            lineObj part = shape.get(j);
            System.out.println("Part[" +j + "] has " + part.getNumpoints() + " point(s)");

            for(int k=0; k<part.getNumpoints(); k++) {
                pointObj point = part.get(k);
                System.out.println("Point[" + k + "] = " + point.getX() + ", "  + point.getY());
            }
        }
    }
    // shape.delete();
    // shapefile.delete();
    // mapscript.msCleanup();
  }

}