-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProcessing_PolarProjection.pde
61 lines (47 loc) · 1.1 KB
/
Processing_PolarProjection.pde
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
// - - - - - - - - - - - - - - - - - - - - - - -
// MAP PROJECTIONS 092014 V:1.0
// - - - - - - - - - - - - - - - - - - - - - - -
// FEATURES
// - Parse & Render Mapfile
// - Parse & Render Points
// - - - - - - - - - - - - - - - - - - - - - - -
// VARIABLES
// - - - - - - - - - - - - - - - - - - - - - - -
// Global
boolean polar = true;
int canvasWidth = 800;
int canvasHeight = 800;
// Data
XML kml_data;
String marker_data[];
String markers[][];
// Map
MapShape myMapShape[];
MapMarker myMapMarker[];
// Draw
int markerSize = 4;
// - - - - - - - - - - - - - - - - - - - - - - -
// SETUP
// - - - - - - - - - - - - - - - - - - - - - - -
void setup() {
size(canvasWidth, canvasHeight);
smooth();
parseKML();
parsePoints();
}
// - - - - - - - - - - - - - - - - - - - - - - -
// DRAW
// - - - - - - - - - - - - - - - - - - - - - - -
void draw() {
background(50);
// Draw Map
for (int i=0; i<myMapShape.length; i++) {
if (myMapShape[i] != null) {
myMapShape[i].display();
}
}
// Draw Points
for (int i=0; i<myMapMarker.length; i++) {
myMapMarker[i].display();
}
}