I hereby claim:
- I am fritzvd on github.
- I am fritzvd (https://keybase.io/fritzvd) on keybase.
- I have a public key whose fingerprint is 5735 97D7 779A 71A2 CFCB E96B A983 83DA EE81 9678
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
CREATE OR REPLACE FUNCTION ST_getsrid(geometry) | |
RETURNS int4 | |
AS '$libdir/postgis-2.1','LWGEOM_get_srid' | |
LANGUAGE 'C' IMMUTABLE STRICT; |
// this is wrong | |
var multiList = []; | |
multiList += 'string'; | |
multiList += 9; | |
multiList += 3.14; | |
// if you really want a list like this do this: | |
var multiList = ['string', 9 , 3.14]; |
// This is a customisation of a real plugin | |
// and lives here, purely for reference | |
L.Control.FullScreen = L.Control.extend({ | |
options: { | |
position: 'topleft' | |
}, | |
onAdd: function (map) { | |
console.info('this is not even fired'); | |
var containerClass = 'leaflet-control-zoom', className, container; |
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable # unstable packages | |
sudo apt-get install build-essential gdal-bin gdal-config libgdal-ecw-src | |
wget http://meuk.technokrat.nl/libecwj2-3.3-2006-09-06.zip | |
unzip ~/Downloads/libecwj2-3.3.2006-09-06.zip | |
cd ~/Downloadslibecwj2-3.3.2006-09-06 | |
./configure | |
make # wait | |
make install # or sudo make install | |
sudo gdal-ecw-build /usr/local | |
sudo ldconfig |
<jq-schlider ng-enabled="state.master" at="time.at" max="time.max_timestep"></jq-schlider> | |
<script> | |
angular | |
.module('Components', []) | |
.directive('jqSchlider', function () { | |
return { | |
restrict: 'E', | |
replace: true, | |
template: '<div id="schlider"></div>', |
Lizard.App.Home = {}; | |
Lizard.App.Home.DefaultView = Backbone.Marionette.ItemView.extend({ | |
template: '#home-template', | |
className: 'home', | |
onShow: function() { | |
console.log('onShow()'); | |
$('.search-query').focus(); | |
}, | |
onDomRefresh: function() { |
MAP | |
NAME "whatever" | |
WEB | |
IMAGEPATH "/www/" | |
IMAGEURL "/www/" | |
METADATA | |
"wms_title" "whatever" | |
"wms_enable_request" "*" | |
"wms_onlineresource" "http://localhost/cgi-bin/mapserv?mapfile=/var/www/thisfile.map&" |
#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 |