-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_download.php
251 lines (216 loc) · 6.89 KB
/
data_download.php
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<?php
require("pr_config.php");
require('pr_range_class.php');
require('pr_aoi_class.php');
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Data download</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="StyleSheet" href="styles/popups.css" type="text/css" />
<link rel="stylesheet" href="styles/custom-theme/jquery-ui-1.8.6.custom.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" ></script>
<script type="text/javascript" src="javascript/jquery-ui-1.8.6.custom.min.js" ></script>
<style type="text/css">
/* <![CDATA[ */
body {font-family: sans-serif;}
#selects {position: absolute; left: 500px; top: 50px;}
img {position: fixed; left: 50px; top: 50px;}
.none {visibility: hidden;}
.hdr {font-size: 1.2em; text-align: center;}
#b01 {position: fixed; left: 130px; top: 500px; }
#b02 {position: fixed; left: 250px; top: 500px; }
.ui-widget {font-size: 11px;}
button {width: 100px;
}
/* ]]> */
</style>
<script language="javascript" type="text/javascript">
/* <![CDATA[ */
$(document).ready(function() {
$("button").button();
// check_pd();
$("#b01").click(function(evt) {
evt.preventDefault();
document.forms[0].reset();
});
$("#b02").click(function(evt) {
evt.preventDefault();
document.forms[0].submit();
});
check_pd(); //put this last as it will not always run
});
function check_pd(){
var spp = document.forms[0].spp.value;
document.forms[0].strpds.value = spp;
var length = document.forms[0].pds.length;
for (var i=0; i<length; i++){
if(spp == document.forms[0].pds[i].value){
document.forms[0].pds[i].checked = 'true';
}
}
}
//function poll(){
// var length = document.forms[0].pds.length;
// var previous = "";
// for (var i=0; i<length; i++){
// if(document.forms[0].pds[i].checked){
// var selected = document.forms[0].pds[i].value;
// if (previous.length == 0){
// previous = selected;
// }else{
// previous = previous + ":" + selected;
// }
// }
// }
// document.forms[0].strpds.value = previous;
//}
function poll(){
if(document.forms[0].pds.length){
var length = document.forms[0].pds.length;
var previous = "";
for (var i=0; i<length; i++){
console.log(i);
if(document.forms[0].pds[i].checked){
var selected = document.forms[0].pds[i].value;
if (previous.length == 0){
previous = selected;
}else{
previous = previous + ":" + selected;
}
}
}
} else {
var previous = document.forms[0].pds.value;
}
document.forms[0].strpds.value = previous;
}
/* ]]> */
</script>
</head>
<body onload="">
<?php
if (($_SESSION['username']) == 'visitor' ){
die('<h4>Must log in to use this feature.</h4>');
}
//get post data
$avian = $_POST['avian'];
$mammal = $_POST['mammal'];
$reptile = $_POST['reptile'];
$amphibian = $_POST['amphibian'];
$aoi_name = $_POST['aoi_name'];
$sppcode = $_POST['spp'];
$richness_species = $_POST['richness_species'];
$richness_map = $_POST['richness_map'];
$search = $_POST['search'];
$richness_species_txt = '';
ini_set("error_log", "/var/www/html/prgap/logs/php-error.log");
ini_set("display_errors", 0);
error_log("data download php");
//var_dump($_POST);
foreach ($_POST as $key => $value) {
error_log($key);
error_log($value);
}
//get range and aoi instances
$rclass = $_SESSION["range".$aoi_name];
$pr_aoi_class = $_SESSION[$aoi_name];
//get corners of aoi and add 10%
$min_x = $pr_aoi_class->get_minx();
$min_y = $pr_aoi_class->get_miny();
$max_x = $pr_aoi_class->get_maxx();
$max_y = $pr_aoi_class->get_maxy();
$x_adj = ($max_x - $min_x)*0.1;
$y_adj = ($max_y - $min_y)*0.1;
$min_x -= $x_adj;
$min_y -= $y_adj;
$max_x += $x_adj;
$max_y += $y_adj;
//create box
$aoi_extent = ms_newRectObj();
$aoi_extent->setextent($min_x, $min_y, $max_x, $max_y);
$extent_save = $min_x.":".$min_y.":".$max_x.":".$max_y;
if(!extension_loaded('MapScript')) {
dl("php_mapscript.so");
}
$mapfile = "/var/www/html/prgap/prgap.map";
// draw elevation and states layers
$map = ms_newMapObj($mapfile);
$this_layer = $map->getLayerByName('elevation');
$this_layer->set('status', MS_ON);
$this_layer = $map->getLayerByName('muni');
$this_layer->set('status', MS_ON);
//draw aoi layer
$filter = "(name = '{$aoi_name}')";
$this_layer = $map->getLayerByName('aoi');
$this_layer->setFilter($filter);
$this_layer->set('status', MS_ON);
//creating main map
$mapname = "map".rand(0,9999999).".png";
$maploc = "{$mspath}{$mapname}";
$map->setSize(400, 400);
$mapimage = $map->draw();
//draw rectangle on image
$aoi_extent->draw($map, $map->getLayerByName('aoi'), $mapimage, 1, '' );
//save image to file
$mapimage->saveImage($maploc);
?>
<img alt="map" src="/server_temp/<?php echo $mapname; ?>" />
<button id="b01">Reset</button>
<button id="b02">Submit</button>
<form action="data_dnld_submit.php" target="_self" method="post" >
<div id="selects">
<table>
<tr><td colspan="2" class="hdr">general layers</td></tr>
<tr>
<td><input type="checkbox" name="lcov" /></td><td>landcover</td>
</tr>
<tr>
<td><input type="checkbox" name="steward" /></td><td>stewardship(vector)</td>
</tr>
<?php
if (!empty($richness_map)) {
$richness_export = $pr_aoi_class->richnessexport($richness_map);
?>
<tr>
<td><input type="checkbox" checked="checked" name="richness" /></td><td>richness map</td>
</tr>
<tr>
<td class="none">HHH</td><td class="none">HHHHHHH</td>
</tr>
<?php
require("pr_config.php");
pg_connect($pg_connect);
$species_arr = explode(":", $richness_species);
foreach ($species_arr as $a){
$query = sprintf("select primcomnamespanish from pr_infospp where sppcode = '%s'", pg_escape_string($a));
$result = pg_query($query);
$row = pg_fetch_array($result);
printf("<tr><td><input type=checkbox onclick='poll();' name='pds' value='%s'/></td><td>%s</td></tr>", $a, $row['primcomnamespanish']);
$richness_species_txt .= $row['primcomnamespanish']."\n";
}
//$richness_species = preg_replace("/:/","\n", $richness_species);
} else { ?>
<tr>
<td class="none">HHH</td><td class="none">HHHHHHH</td>
</tr>
<?php
if (isset($avian) && isset($mammal) && isset($reptile) && isset($amphibian)) {
echo "<tr><td colspan=\"2\" class=\"hdr\">predicted distribution layers</tr>";
$rclass->get_species_dnld($avian, $mammal, $reptile, $amphibian, $search);
}
}
?>
</table>
</div>
<input type="hidden" name="aoi_name" value="<?php echo $aoi_name; ?>" />
<input type="hidden" name="ext_save" value="<?php echo $extent_save; ?>" />
<input type="hidden" name="spp" value="<?php echo $sppcode; ?>" />
<input type="hidden" name="strpds" />
<input type="hidden" name="r_export" value="<?php echo $richness_export; ?>" />
<input type="hidden" name="r_species" value="<?php echo $richness_species_txt; ?>" />
</form>
</body>
</html>