function generateImage() {
document.infoForm.action="download.php";
- document.infoForm.param.value = "unset DISPLAY && java -Djava.awt.headless=true -jar Heatmap.jar image " + "<?php echo $input; ?>";
+ document.infoForm.param.value = "unset DISPLAY && java -Djava.awt.headless=true -jar Heatmap.jar \"image" + "<?php echo $excludedSpecies?>" + ";" + "<?php echo $input; ?> \"";
document.infoForm.submit();
}
-function resubmitSpecies() {
-var eliminatedSpecies = "";
-<?php
- for($i = 0; $i < sizeof($originalSpecies); $i++) {
- echo "if(document.redraw.ch" . $i . ".checked) { \n";
- echo "eliminatedSpecies = eliminatedSpecies + \" \" + document.redraw.ch" . $i . ".value;\n";
- echo "} \n";
- }
-?>
- document.redraw.excluded.value = eliminatedSpecies;
- alert(eliminatedSpecies);
- document.redraw.submit();
-}
-
drawMap(true);
canvas.addEventListener('mouseup', showInfo, false);
2. Possibility of putting exclude species forms in a table on Main Page
3. Updating links given by Pankaj
4. Improve downloaded image to match with heat map generated
+ Eliminate Species not asked for
+ Improved color analysis system
5. Improve efficiency of species elimination call
-->
\ No newline at end of file