Skip to content

Commit

Permalink
Website misc fixes (visgl#4737)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessimistress authored Jun 28, 2020
1 parent 806f3aa commit eb49a00
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 9 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,16 @@ npm install deck.gl
pip install pydeck
```

- [Get started](/bindings/pydeck/README.md)
- [Get started](https://pydeck.gl/installation.html)
- [Examples](https://pydeck.gl/)

### Third-Party Bindings

- [deckgl-typings](https://github.com/danmarshall/deckgl-typings) (Typescript)
- [mapdeck](https://symbolixau.github.io/mapdeck/articles/mapdeck.html) (R)
- [vega-deck.gl](https://github.com/microsoft/SandDance/tree/master/packages/vega-deck.gl) ([Vega](https://vega.github.io/))

- [earthengine-layers](https://earthengine-layers.com/) ([Google Earth Engine](https://earthengine.google.com/))
- [deck.gl-native](https://github.com/UnfoldedInc/deck.gl-native) (C++)

## Learning Resources

Expand Down
5 changes: 4 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,16 @@ npm install deck.gl
pip install pydeck
```

- [Get started](https://github.com/visgl/deck.gl/blob/master/bindings/pydeck/README.md)
- [Get started](https://pydeck.gl/installation.html)
- [Examples](https://pydeck.gl/)

### Third-Party Bindings

- [deckgl-typings](https://github.com/danmarshall/deckgl-typings) (Typescript)
- [mapdeck](https://symbolixau.github.io/mapdeck/articles/mapdeck.html) (R)
- [vega-deck.gl](https://github.com/microsoft/SandDance/tree/master/packages/vega-deck.gl) ([Vega](https://vega.github.io/))
- [earthengine-layers](https://earthengine-layers.com/) ([Google Earth Engine](https://earthengine.google.com/))
- [deck.gl-native](https://github.com/UnfoldedInc/deck.gl-native) (C++)

## Ecosystem

Expand Down
1 change: 0 additions & 1 deletion docs/table-of-contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
{"entry": "docs/README"},
{"entry": "docs/whats-new"},
{"entry": "docs/upgrade-guide"},
{"entry": "docs/roadmap"},
{"entry": "docs/CONTRIBUTING"},
{"entry": "docs/faq"}
]
Expand Down
6 changes: 4 additions & 2 deletions examples/playground/json-examples/3d-heatmap-minimap.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"y": "5%",
"clear": true,
"viewState": {
"id": "view-state",
"id": "main",
"pitch": 0,
"bearing": 0,
"zoom": 4
Expand All @@ -41,7 +41,9 @@
"id": "heatmap",
"data": "https://raw.githubusercontent.com/visgl/deck.gl-data/master/examples/3d-heatmap/heatmap-data.csv",
"loadOptions": {
"header": false
"csv": {
"header": false
}
},

"coverage": 1,
Expand Down
4 changes: 3 additions & 1 deletion examples/playground/json-examples/3d-heatmap.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
"id": "heatmap",
"data": "https://raw.githubusercontent.com/visgl/deck.gl-data/master/examples/3d-heatmap/heatmap-data.csv",
"loadOptions": {
"header": false
"csv": {
"header": false
}
},
"coverage": 1,
"pickable": true,
Expand Down
5 changes: 4 additions & 1 deletion website/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,15 @@ module.exports = {
PROJECT_NAME: 'deck.gl',
PROJECT_ORG: 'visgl',
PROJECT_ORG_LOGO: 'images/visgl-logo.png',
PROJECT_URL: 'https://github.com/visgl/',
PROJECT_URL: 'https://deck.gl/',
PROJECT_DESC: 'WebGL-powered visualization framework for large-scale datasets',
PROJECT_IMAGE: 'images/trips-layer-unfurl-4.0.jpg',

// This is only activated in staging, with `gatsby build --prefix-paths`
PATH_PREFIX: '/deck.gl',

THEME_OVERRIDES: require('./src/theme.json'),

GA_TRACKING: null,

// For showing star counts and contributors.
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"gatsby": "^2.20.0",
"gatsby-plugin-jss": "^2.3.4",
"gatsby-plugin-no-sourcemaps": "^2.1.2",
"gatsby-theme-ocular": "^1.2.0-beta.10",
"gatsby-theme-ocular": "^1.2.0-beta.11",
"gh-pages": "^2.2.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
Expand Down
13 changes: 13 additions & 0 deletions website/src/theme.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"primary400": "#00ADE6",
"mono100": "#F7FAFC",
"mono200": "#ECF2F7",
"mono300": "#E1E8F0",
"mono400": "#CAD5E0",
"mono500": "#9EAEC0",
"mono600": "#6F8196",
"mono700": "#485668",
"mono800": "#2B3848",
"mono900": "#19202C",
"mono1000": "#19202C"
}

0 comments on commit eb49a00

Please sign in to comment.