This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var express = require('express'); | |
var app = express(); | |
var port = process.env.PORT || 3000; | |
app.use(express.static('./buildfolder')); | |
app.listen(port, function() { | |
console.log('Server started and listening to::'+port); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.min.js"></script> | |
</head> | |
<body> | |
<div id="chart"> | |
</div> | |
<script type="text/javascript"> | |
var w = 800, | |
h = 600, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Edzer Pebesma | |
#> Institute for Geoinformatics (ifgi), University of Münster | |
#> Weseler Straße 253, 48151 Münster, Germany. Phone: +49 251 | |
#> 8333081, Fax: +49 251 8339763 http://ifgi.uni-muenster.de | |
#> http://www.52north.org/geostatistics e.pebesma at wwu.de | |
################################################# | |
#krige wil alleen als er geen NA waarden in de data.frame zitten. Heel onhandig | |
#data(meuse.grid) # only the non-missing valued cells |