Skip to content

Commit 56500e9

Browse files
author
Stephen Mather
committedJul 22, 2013
Initial addition of original viewshed code
1 parent b9dab6e commit 56500e9

6 files changed

+206545
-0
lines changed
 

‎Linden.inc

+206,392
Large diffs are not rendered by default.

‎light_posits.inc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#declare lightPosits = array[10]
2+
{<2229921.99, 915, 626121.19> , <2229862.48, 924, 625955.54> , <2229828.03, 926, 625828.22> , <2229811.23, 923, 625716.29> , <2229799.65, 913, 625589.17> , <2229787.75, 906, 625497.61> , <2229730.78, 900, 625331.99> , <2229710.44, 901, 625296.88> , <2229677.84, 903, 625176.91> , <2229656.55, 908, 625045.82>}

‎n2225625i1.png

652 KB
Loading

‎tree_coords5.inc

+2
Large diffs are not rendered by default.

‎viewshed_no_trees.pov

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
#include "shapes.inc"
2+
#include "colors.inc"
3+
#include "textures.inc"
4+
5+
// 10 light positions with follow a road in the southeast corner
6+
#include "light_posits.inc"
7+
8+
/*
9+
Orthographic Camera-- Allows us to avoid geographic distortion
10+
Which means I can just add a world file to my output, e.g. if I render
11+
this at 5000 x 5000 pixels, I have a 1 foot pixel and I can put the following
12+
in a txt file *.pgw, for a png output, or *.tfw for a tiff output):
13+
14+
1
15+
0
16+
0
17+
-1
18+
2224868
19+
630008
20+
21+
*/
22+
23+
camera {
24+
orthographic
25+
// what's the +130 for below? I don't know. Probably
26+
// an error in my tree locations. This is the quick fix.
27+
location <2227368+130, 6000, 627508>
28+
look_at <2227368+130, 0, 627508>
29+
right 5000*x // horizontal size of view
30+
up 5000*y // vertical size of view
31+
}
32+
33+
height_field {
34+
png "n2225625i1.png"
35+
water_level 0.0
36+
texture {
37+
pigment {
38+
rgb <1, 1, 1>
39+
}
40+
}
41+
scale <5000, 65536, 5000> // Scale to real world size
42+
translate <2224868+130,0,625008> // Move to state plane coordinates
43+
}
44+
45+
// Loop though our light positions
46+
#declare LastIndex = dimension_size(lightPosits, 1)-1;
47+
48+
#declare Index = 0;
49+
#while(Index <= LastIndex)
50+
51+
light_source {
52+
0*x
53+
color rgb <2,2,2>
54+
translate lightPosits[Index]
55+
}
56+
57+
#declare Index = Index + 1;
58+
#end
59+
60+
61+

‎viewshed_trees.pov

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
#include "shapes.inc"
2+
#include "colors.inc"
3+
#include "textures.inc"
4+
5+
// 10 light positions with follow a road in the southeast corner
6+
#include "light_posits.inc"
7+
8+
// The standard Linden from povtree
9+
// http://www.propro.ru/go/Wshop/povtree/povtree.html
10+
#include "Linden.inc"
11+
12+
// Randomly generated tree locations averaging 30 feet apart
13+
// A subset of 28,000 using the canopy boundary derived from LiDAR
14+
#include "tree_coords5.inc"
15+
16+
/*
17+
Orthographic Camera-- Allows us to avoid geographic distortion
18+
Which means I can just add a world file to my output, e.g. if I render
19+
this at 5000 x 5000 pixels, I have a 1 foot pixel and I can put the following
20+
in a txt file *.pgw, for a png output, or *.tfw for a tiff output):
21+
22+
1
23+
0
24+
0
25+
-1
26+
2224868
27+
630008
28+
29+
*/
30+
31+
camera {
32+
orthographic
33+
// what's the +130 for below? I don't know. Probably
34+
// an error in my tree locations. This is the quick fix.
35+
location <2227368+130, 6000, 627508>
36+
look_at <2227368+130, 0, 627508>
37+
right 5000*x // horizontal size of view
38+
up 5000*y // vertical size of view
39+
}
40+
41+
height_field {
42+
png "n2225625i1.png"
43+
water_level 0.0
44+
texture {
45+
pigment {
46+
rgb <1, 1, 1>
47+
}
48+
}
49+
scale <5000, 65536, 5000> // Scale to real world size
50+
translate <2224868+130,0,625008> // Move to state plane coordinates
51+
}
52+
53+
// Loop though our light positions
54+
#declare LastIndex = dimension_size(lightPosits, 1)-1;
55+
56+
#declare Index = 0;
57+
#while(Index <= LastIndex)
58+
59+
light_source {
60+
0*x
61+
color rgb <0,2,2>
62+
translate lightPosits[Index]
63+
}
64+
65+
#declare Index = Index + 1;
66+
#end
67+
68+
// Let's make some pseudo-random numbers for tree-size and rotation
69+
#declare Rnd_1 = seed (1153);
70+
71+
// Loop through our tree positions
72+
#declare LastIndex = dimension_size(treePosits, 1)-1;
73+
74+
#declare Index = 0;
75+
#while(Index <= LastIndex)
76+
77+
object {
78+
TREE
79+
scale 80+rand(Rnd_1)*20 // trees 80 to 100 feet tall
80+
rotate <0,rand(Rnd_1)*360,0>
81+
translate treePosits[Index]
82+
}
83+
84+
#declare Index = Index + 1;
85+
#end
86+
87+
88+

0 commit comments

Comments
 (0)
Please sign in to comment.