VectorProcessing.h
Go to the documentation of this file.
1 #ifndef __VECTORPROCESSINGEXAMPLES_H
2 #define __VECTORPROCESSINGEXAMPLES_H
3 
4 // This examples show how to call the Geographic Operation Aggregation algorithm on vector data
5 // Adapt the source and target datasource information to your environment!
6 
7 //---------------Dissolve---------------//
8 
9 //Input data is from a shape file and the output is save in an another shape file.
10 bool DissolveOGRToOGR();
11 
12 //Input data is from a shape file and the output is save in a postgis database.
13 bool DissolveOGRToPGIS();
14 
15 //Input data is from a postgis database and the output is save in a postgis too.
16 bool DissolvePGISToPGIS();
17 
18 //Input data is from a postgis database and the output is save in a shape file.
19 bool DissolvePGISToOGR();
20 
21 
22 //---------------Intersection---------------//
23 
24 //Input data is from a shape file and the output is save in an another shape file.
26 
27 //Input data is from a shape file and the output is save in a postgis database.
29 
30 //Input data is from a postgis database and the output is save in a postgis too.
32 
33 //Input data is from a postgis database and the output is save in a shape file.
35 
36 
37 //---------------Buffer---------------//
38 
39 //Input data is from a shape file and the output is save in an another shape file.
40 bool BufferOGRToOGR();
41 
42 //Input data is from a shape file and the output is save in a postgis database.
43 bool BufferOGRToPGIS();
44 
45 //Input data is from a postgis database and the output is save in a postgis too.
46 bool BufferPGISToPGIS();
47 
48 //Input data is from a postgis database and the output is save in a shape file.
49 bool BufferPGISToOGR();
50 
51 
52 //---------------Identity---------------//
53 
54 //Input data is from a shape file and the output is save in an another shape file.
55 bool IdentityOGRToOGR();
56 
57 //Input data is from a shape file and the output is save in a postgis database.
58 bool IdentityOGRToPGIS();
59 
60 //Input data is from a postgis database and the output is save in a postgis too.
61 bool IdentityPGISToPGIS();
62 
63 //Input data is from a postgis database and the output is save in a shape file.
64 bool IdentityPGISToOGR();
65 
66 
67 #endif
bool IntersectionPGISToOGR()
bool BufferPGISToPGIS()
Definition: Buffer.cpp:170
bool IdentityOGRToPGIS()
bool DissolveOGRToOGR()
bool BufferPGISToOGR()
Definition: Buffer.cpp:236
bool IntersectionOGRToPGIS()
bool IntersectionOGRToOGR()
bool IdentityPGISToOGR()
bool IdentityOGRToOGR()
bool DissolvePGISToPGIS()
bool BufferOGRToOGR()
Definition: Buffer.cpp:19
bool IntersectionPGISToPGIS()
bool DissolveOGRToPGIS()
bool BufferOGRToPGIS()
Definition: Buffer.cpp:95
bool IdentityPGISToPGIS()
bool DissolvePGISToOGR()