This is an example of using a Collection view with Backbone.
This file contains 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
// See https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames for more details. | |
var degrees2meters = function(lon,lat) { | |
var x = lon * 20037508.34 / 180; | |
var y = Math.log(Math.tan((90 + lat) * Math.PI / 360)) / (Math.PI / 180); | |
y = y * 20037508.34 / 180; | |
return [x, y] | |
} | |
x= -77.035974 |
This file contains 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
########################################################################### | |
# Script per automatitzar la revisió de traduccions d'OSGeo-Live | |
########################################################################### | |
# | |
# Converteix a UTF8, treu el BOM, converteix CRLF a UNIX, copia els nous | |
# continguts al checkout local del repo, compila els html i els obre en FF. | |
# | |
# Llavors cal: revisar l'aspecte visual de cada document, corregir-lo si | |
# convé, i fer 'svn commit'. | |
# |
This file contains 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
// Bounding box of our TMS that define our area of interest | |
var bbox = [-600000, -300000, 1300000, 1600000]; | |
// Resolutions of our TMS that the tiles will be displayed at calculated so | |
// that at resolution 0 the bounds fit one 256x256 tile: (maxx - minx)/256 | |
var res = [7421.875, 3710.9375, 1855.46875, 927.734375]; | |
// Define the Proj4Leaflet coordinate reference system base on British National Grid | |
var crs = L.CRS.proj4js( | |
'EPSG:27700', |
This file contains 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
-- change 18 to whatever the max zoom level you want in your MBTiles | |
DELETE FROM images WHERE | |
tile_id IN (SELECT tile_id FROM map WHERE zoom_level > 18) AND | |
tile_id NOT IN (SELECT tile_id FROM map WHERE zoom_level <= 18); | |
DELETE FROM map WHERE zoom_level > 18; | |
UPDATE metadata SET value = '18' WHERE name = 'maxzoom'; |
This file contains 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
UPDATE counties_results o SET pres_dem_pct = n.pres_dem_pct, pres_gop_pct = n.pres_gop_pct, | |
pres_oth_pct = n.pres_oth_pct, pres_pctrpt = n.pres_pctrpt | |
FROM ( VALUES | |
(48.51, 39.69, 11.8, 100, 'AK', '02000'), | |
(51.65, 41.67, 6.68, 100 , 'AL' , '01001' ), | |
(52.14, 42.4, 5.46, 100 , 'AL' , '01003' ), | |
(51.94, 42.24, 5.82, 100 , 'AL' , '01005' ), | |
(60.28, 34.95, 4.76, 100 , 'AL' , '01007' ), | |
(53.19, 42.04, 4.77, 100 , 'AL' , '01009' ), | |
(45.07, 50.85, 4.08, 100 , 'AL' , '01011' ), |
This file contains 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
{ | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"font_size": 10, | |
"highlight_line": true, | |
"rulers": [80,120], | |
"draw_minimap_border": true | |
} |
This file contains 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
/** | |
* On the head set the plugin's name, version, author details and license | |
* for example, for example: | |
* | |
* ------------------------------------------------------------------------ | |
* | |
* jquery-plugin.js Version 0.1 | |
* jQuery Plugin Boilerplate code helps creating your custom jQuery plugins. | |
* |
This file contains 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
#!/bin/bash | |
CDB_USER=$1 | |
API_KEY=$2 | |
IMPORT_FILE=$3 | |
if [[ -z $CDB_USER ]] | |
then | |
echo "Missing user" | |
fi |
This file contains 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
The moon is a harsh mistress - Robert A. Heinlein - 5* | |
A canticle for Leibowitz - Walter M. Miller 4* | |
Flowers for Algernon - Daniel Keyes 5* | |
The Forever War - Joe Haldeman - 4* | |
The Stars my destination (also known as Tiger! Tiger!) - Alfred Bester - 5* | |
The Road - Cormac Mc Carthy - 4* | |
God is Dead - Ron Currie Jr. - 4* | |
The world without us - Alan Weisman (not really sci fi, but interesting, anyways) - 4* | |
Animal Farm - George Orwell - 5* | |
1984 - George Orwell - 5* |
OlderNewer