- Rationale: Why does Dryad use CC0?
- Policy: Frequently asked questions
- Since: 2009-05
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
javascript:var coord;var output;var xhs;if(!document.getElementById('xhs')){xhs=document.createElement('div');xhs.setAttribute('id','xhs');xhs.setAttribute('style', 'background:url(\'http://www.canadensys.net/crosshair.png\') top left no-repeat;position:absolute;top:50%;left:50%;margin-top:-7px;margin-left:-7px;height:15px;width:15px;');xhs.onclick=function(){coord = [gApplication.getMap().getCenter().lat(),gApplication.getMap().getCenter().lng()];output = Math.round(coord[0]*10000000)/10000000 + '\t' + Math.round(coord[1]*10000000)/10000000;prompt('Latitude and Longitude',output);};void(document.getElementById('map').appendChild(xhs));}else{void(document.getElementById('map').removeChild(xhs));} |
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
/** category visualization */ | |
#bird_tracking { | |
line-width: 1; | |
line-opacity: 0.9; | |
} | |
#bird_tracking[behaviour="1. Egg incubation"] { | |
line-color: #b81609; | |
} |
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
/** torque visualization */ | |
Map { | |
-torque-frame-count:512; | |
-torque-animation-duration:40; | |
-torque-time-attribute:"date_time"; | |
-torque-aggregation-function:"avg(behaviour_number)"; | |
-torque-resolution:1; | |
-torque-data-aggregation:linear; | |
} |
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
/** torque visualization */ | |
Map { | |
-torque-frame-count:2048; | |
-torque-animation-duration:30; | |
-torque-time-attribute:"date_time"; | |
-torque-aggregation-function:"count(cartodb_id)"; | |
-torque-resolution:1; | |
-torque-data-aggregation:linear; | |
} |
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
ALTER TABLE rbins_radar_occurrences | |
RENAME COLUMN expr1000 to date; | |
ALTER TABLE rbins_radar_occurrences | |
ALTER COLUMN area SET data type integer USING area::integer; | |
ALTER TABLE rbins_radar_occurrences | |
ALTER COLUMN av_reflectivity SET data type integer USING av_reflectivity::integer; | |
ALTER TABLE rbins_radar_occurrences | |
ALTER COLUMN date SET data type timestamp with time zone USING date::timestamp with time zone; | |
ALTER TABLE rbins_radar_occurrences |
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
-- SetSRID defines the datum. Use 31370, not 31300 for Belgian Lambert 72 | |
SELECT | |
*, | |
ST_Transform(ST_SetSRID(ST_MakePoint(x,y),31370),4326) as geom_from_lambert, | |
ST_Y(ST_Transform(ST_SetSRID(ST_MakePoint(x,y),31370),4326)) as latitude_from_lambert, | |
ST_X(ST_Transform(ST_SetSRID(ST_MakePoint(x,y),31370),4326)) as longitude_from_lambert | |
FROM table_name | |
Nocturnal bird migration forward trajectory classified by airspeed into songbirds and waterbirds - Night of April 7-8, 2013
https://inbo.cartodb.com/u/lifewatch/viz/88c30be4-1063-11e5-a9ae-0e853d047bba/public_map
SELECT *,
CASE
WHEN airspeed = 0 THEN 0
- Title: Let your data shine... with OpenRefine
- Author: Dimitri Brosens (& Peter Desmet)
- Author photo: http://2016.openbelgium.be/storage/app/uploads/public/566/060/c1d/566060c1d641a953718404.jpg
- Cover photo: http://i.imgur.com/fap1ghT.png
- Cover photo license: https://creativecommons.org/publicdomain/zero/1.0/
- Blog post license: https://creativecommons.org/licenses/by/4.0/
“Google refine is awesome. Never before have I been home this early.” - @salesient
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
# -*- coding: utf-8 -*- | |
import requests | |
import json | |
import csv | |
import sys | |
def get_datasets(offset, limit): | |
sys.stderr.write('Requesting batch {}\n'.format(offset)) # Use stderr to not contaminate stdout, which is used for the results | |
request = requests.get('http://api.gbif.org/v1/dataset/', params={'limit': limit, 'offset': offset}) | |
results = request.json()['results'] |
OlderNewer