2013-08-20 18:05:33 +08:00
# Torque API
2013-08-21 02:20:53 +08:00
Torque provides two kinds of visualizations.
2013-08-20 18:05:33 +08:00
2013-08-20 21:07:26 +08:00
- static: provides a way to create heatmap like visualizations (note for Andrew: fon). see ``TorqueLayer``
2013-08-21 02:20:53 +08:00
- dynamic: animate points over a map (note for Andrew: Navy) see ``TiledTorqueLayer``
2013-08-20 18:05:33 +08:00
depending on the map provider you are using you need to use different layer type. Currently we provide layers for Google Maps and Leaflet.
## L.TorqueLayer(options)
2013-08-21 05:33:15 +08:00
One of two core classes for the Torque library - it is used to create an animated torque layer with custom settings.
2013-08-21 02:16:12 +08:00
2013-08-21 05:16:37 +08:00
### Usage example
2013-08-21 02:16:12 +08:00
```js
// initialize a torque layer that uses the CartoDB account details and SQL API to pull in data
var torqueLayer = new L.TorqueLayer({
user : 'viz2',
table : 'ow',
column : 'date',
countby : 'count(cartodb_id)',
resolution : 1,
is_time : true,
steps : 750,
pixel_size : 3,
blendmode : 'lighter'
});
```
2013-08-21 05:16:37 +08:00
### Options
2013-08-21 02:16:12 +08:00
##### Provider options
2013-08-21 02:47:56 +08:00
| Option | type | Default | Description |
|-----------|:-----------|:----------|:---------------------------------------|
| provider | string | ```sql_api``` | Where is the data coming from? Alternative is 'url_template'|
2013-08-21 02:16:12 +08:00
2013-08-21 02:20:53 +08:00
##### CartoDB data options
2013-08-21 02:47:56 +08:00
| Option | type | Default | Description |
|-----------|:-----------|:----------|:---------------------------------------|
| user | string | ```null``` | CartoDB account name. Found as, accountname.cartodb.com|
| table | string | ```null``` | CartoDB table name where data is found |
| column | string | ```null``` | CartoDB table's column name where date information is found (for dynamic type torque layer only)|
| countby | string | ```null``` | The aggregation method to use for each pixel displayed where multiple data are found. Any valid PostgreSQL aggregate function |
2013-08-21 05:33:15 +08:00
##### Dynamic/static options (Note for Santana: we can remove this option?)
2013-08-21 02:47:56 +08:00
| Option | type | Default | Description |
|-----------|:-----------|:----------|:---------------------------------------|
| is_time | boolean | ```true``` | Determines if the drawing is static or dynamic/animated |
##### Display options
2013-08-21 02:54:12 +08:00
| Option | type | Default | Description |
|-----------|:-----------|:----------|:---------------------------------------|
2013-08-21 05:33:15 +08:00
| steps | integer | ```100``` | The number of steps to divide the data into for animated renderings |
2013-08-21 05:16:37 +08:00
| resolution| numeric | ```2``` | The x and y dimensions of each pixel as returned by the data|
2013-08-21 02:47:56 +08:00
| blendmode | boolean | ```null``` | The HTML5 Canvas composite operation for when multiple pixels overlap on the canvas |
2013-08-20 18:05:33 +08:00
2013-08-21 05:18:06 +08:00
### Play options
2013-08-21 05:16:37 +08:00
| Method | options | returns | Description |
|-----------|:-----------|:----------|:---------------------------------------|
2013-08-21 05:33:15 +08:00
| ```setKey(time)``` | ```time numeric``` | ```this``` | sets the animation to the step indicated by ```time```, must be between 0 and N where N equals the number of steps|
2013-08-21 05:16:37 +08:00
2013-08-21 05:33:15 +08:00
### Style options
2013-08-21 05:16:37 +08:00
2013-08-21 05:33:15 +08:00
| Method | options | returns | Description |
|-----------|:-----------|:----------|:---------------------------------------|
| ```setCartoCSS(cartocss)``` | ```cartocss string``` | ```this``` | style the map rendering using client-side cartocss |
2013-08-21 05:16:37 +08:00
2013-08-21 05:33:15 +08:00
The full CartoCSS spec is not supported by Torque but instead only a limited subset with some additions related to torque rendering. To see the full list of supported parameters, read the [Torque CartoCSS documentation here ](CartoCSS.md ). ``value`` and ``zoom`` variables can be used. ``value`` is the value of aggregation (see ``countby`` constructor option). ``zoom`` is the current zoom being rendered
2013-08-20 18:05:33 +08:00
2013-08-21 05:33:15 +08:00
TorqueLayer currently expects ```marker``` styling
##### CartoCSS Example
2013-08-20 18:05:33 +08:00
2013-08-21 05:34:53 +08:00
This should be ```string``` encoded in Javascript
2013-08-21 05:34:05 +08:00
```css
#layer {,
marker-fill: #662506 ;
marker-width: 20;
[value > 1] { marker-fill: #FEE391 ; }
[value > 2] { marker-fill: #FEC44F ; }
[value > 3] { marker-fill: #FE9929 ; }
[value > 4] { marker-fill: #EC7014 ; }
[value > 5] { marker-fill: #CC4C02 ; }
[value > 6] { marker-fill: #993404 ; }
[value > 7] { marker-fill: #662506 ; }
}
```
2013-08-20 18:05:33 +08:00
## L.TiledTorqueLayer(options)
2013-08-21 05:33:15 +08:00
One of two core classes for the Torque library - it is used to create a static torque layer with client side filtering.
2013-08-20 18:05:33 +08:00
2013-08-21 05:33:15 +08:00
##### Provider options
| Option | type | Default | Description |
|-----------|:-----------|:----------|:---------------------------------------|
| provider | string | ```sql_api``` | Where is the data coming from? Alternative is 'url_template'|
| url | string | ```null``` | Tile template URL for fetching data e.g 'http://host.com/{z}/{x}/{y}.json'|
2013-08-20 18:05:33 +08:00
2013-08-21 05:33:15 +08:00
##### CartoDB data options (Note to Santana: are these really here?)
| Option | type | Default | Description |
|-----------|:-----------|:----------|:---------------------------------------|
| user | string | ```null``` | CartoDB account name. Found as, accountname.cartodb.com|
| table | string | ```null``` | CartoDB table name where data is found |
| column | string | ```null``` | CartoDB table's column name where date information is found (for dynamic type torque layer only)|
| countby | string | ```null``` | The aggregation method to use for each pixel displayed where multiple data are found. Any valid PostgreSQL aggregate function |
##### Display options (Note to Santana: is blendmode here? or above even?)
| Option | type | Default | Description |
|-----------|:-----------|:----------|:---------------------------------------|
| resolution| numeric | ```2``` | The x and y dimensions of each pixel as returned by the data|
| blendmode | boolean | ```null``` | The HTML5 Canvas composite operation for when multiple pixels overlap on the canvas |
### Filtering options
| Method | options | returns | Description |
|-----------|:-----------|:----------|:---------------------------------------|
2013-08-21 05:36:39 +08:00
| ```setKey(keys)``` | ```keys numeric/array``` | ```this``` | which data categories to display on the map |
2013-08-21 05:33:15 +08:00
### Style options
| Method | options | returns | Description |
|-----------|:-----------|:----------|:---------------------------------------|
| ```setCartoCSS(cartocss)``` | ```cartocss string``` | ```this``` | style the map rendering using client-side cartocss |
2013-08-20 18:05:33 +08:00
2013-08-23 00:16:22 +08:00
``value`` and ``zoom`` variables can be used. only ``polygon-fill`` and ``polygon-opacity`` properties are supported currently. To see the full list of supported parameters, read the [Torque CartoCSS documentation here ](CartoCSS.md ).
2013-08-20 18:05:33 +08:00
2013-08-21 05:33:15 +08:00
TorqueLayer currently expects ```polygon``` styling
##### CartoCSS Example
2013-08-21 05:34:53 +08:00
This should be ```string``` encoded in Javascript
2013-08-21 05:34:05 +08:00
```css
#layer {
polygon-fill: #FFFF00 ;
[value >= 10] { polygon-fill: #FFCC00 ; }
[value >= 100] { polygon-fill: #FF9900 ; }
[value >= 1000] { polygon-fill: #FF6600 ; }
[value >= 10000] { polygon-fill: #FF3300 ; }
[value > 100000] { polygon-fill: #C00 ; }
}
```
2013-08-20 18:05:33 +08:00
2013-08-23 00:16:22 +08:00
# Google Maps Layers
2013-08-20 18:05:33 +08:00
2013-08-23 00:16:22 +08:00
## GMapsTiledTorqueLayer(options)
creates a static layer to use it with google maps.
```js
var torqueLayer = new torque.GMapsTiledTorqueLayer({
provider: 'url_template',
url: GBIF_URL,
resolution: 4,
});
map.overlayMapTypes.setAt(0, torqueLayer);
torqueLayer.setKey([10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]);
```
see ``L.TiledTorqueLayer`` for options reference