README is empty
Created
June 6, 2014 20:23
-
-
Save diogok/7454857c5ef2214fc032 to your computer and use it in GitHub Desktop.
No name
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
| id | name | lat | long | |
|---|---|---|---|---|
| 1 | diogo souza | -10.10 | 20 | |
| 2 | juju | 20.2 | 30.3 |
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
| { | |
| "name": "No name", | |
| "state": "active", | |
| "created": "2014-06-06T20:23:49.604Z", | |
| "sources": [ | |
| {} | |
| ], | |
| "profiles": { | |
| "dataexplorer": "0.9" | |
| }, | |
| "scripts": [ | |
| { | |
| "id": "main.js", | |
| "path": "main.js" | |
| } | |
| ], | |
| "views": [ | |
| { | |
| "id": "grid", | |
| "label": "Grid", | |
| "type": "SlickGrid", | |
| "state": { | |
| "gridOptions": { | |
| "editable": true, | |
| "enabledAddRow": true, | |
| "enabledDelRow": true, | |
| "autoEdit": false, | |
| "enableCellNavigation": true | |
| } | |
| } | |
| }, | |
| { | |
| "id": "graph", | |
| "label": "Graph", | |
| "type": "Graph" | |
| }, | |
| { | |
| "id": "map", | |
| "label": "Map", | |
| "type": "Map" | |
| } | |
| ], | |
| "id": "dataexplorer-487936", | |
| "resources": [ | |
| { | |
| "backend": "csv", | |
| "delimiter": ";", | |
| "path": "current.csv", | |
| "schema": { | |
| "fields": [ | |
| { | |
| "id": "id", | |
| "label": "id", | |
| "type": "string", | |
| "format": null, | |
| "is_derived": false | |
| }, | |
| { | |
| "id": "name", | |
| "label": "name", | |
| "type": "string", | |
| "format": null, | |
| "is_derived": false | |
| }, | |
| { | |
| "id": "lat", | |
| "label": "lat", | |
| "type": "string", | |
| "format": null, | |
| "is_derived": false | |
| }, | |
| { | |
| "id": "long", | |
| "label": "long", | |
| "type": "string", | |
| "format": null, | |
| "is_derived": false | |
| } | |
| ] | |
| } | |
| }, | |
| { | |
| "backend": "csv", | |
| "delimiter": ";", | |
| "path": "original.csv", | |
| "id": "undefined-original", | |
| "schema": { | |
| "fields": [ | |
| { | |
| "id": "id", | |
| "label": "id", | |
| "type": "string", | |
| "format": null, | |
| "is_derived": false | |
| }, | |
| { | |
| "id": "name", | |
| "label": "name", | |
| "type": "string", | |
| "format": null, | |
| "is_derived": false | |
| }, | |
| { | |
| "id": "lat", | |
| "label": "lat", | |
| "type": "string", | |
| "format": null, | |
| "is_derived": false | |
| }, | |
| { | |
| "id": "long", | |
| "label": "long", | |
| "type": "string", | |
| "format": null, | |
| "is_derived": false | |
| } | |
| ] | |
| } | |
| } | |
| ] | |
| } |
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
| loadDataset("current", function (error, dataset) { | |
| // error will be null unless there is an error | |
| // dataset is a Recline memory store (http://reclinejs.com//docs/src/backend.memory.html). | |
| console.log(dataset); | |
| }); |
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
| 1 | diogo souza | -10.10 | 20 | |
|---|---|---|---|---|
| 2 | juju | 20.2 | 30.3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment