-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #111 from UNopenGIS/add-visualize-heatmap
Add visualization example: heatmap
- Loading branch information
Showing
3 changed files
with
122 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
src/examples/Visualization/Heatmap/ArmedConflict/index.stories.tsx
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Meta, StoryObj } from "@storybook/react"; | ||
import { ArmedConflictHeatMap as MapComponent } from "."; | ||
|
||
const meta: Meta<typeof MapComponent> = { | ||
component: MapComponent, | ||
parameters: { | ||
layout: "fullscreen", | ||
}, | ||
} satisfies Meta<typeof MapComponent>; | ||
|
||
export default meta; | ||
type Story = StoryObj<typeof MapComponent>; | ||
|
||
export const Preview: Story = {}; |
59 changes: 59 additions & 0 deletions
59
src/examples/Visualization/Heatmap/ArmedConflict/index.tsx
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import { Protocol } from "pmtiles"; | ||
import maplibregl from "maplibre-gl"; | ||
import "maplibre-gl/dist/maplibre-gl.css"; | ||
import { Layer, Map, Source } from "react-map-gl/maplibre"; | ||
import { useEffect } from "react"; | ||
import { ArmedConflictPMTilesHeatmapSource as source } from "./source"; | ||
|
||
export const ArmedConflictHeatMap = () => { | ||
useEffect(() => { | ||
const protocol = new Protocol(); | ||
maplibregl.addProtocol("pmtiles", protocol.tile); | ||
return () => { | ||
maplibregl.removeProtocol("pmtiles"); | ||
}; | ||
}, []); | ||
|
||
return ( | ||
<Map | ||
initialViewState={{ | ||
longitude: 0, | ||
latitude: 0, | ||
zoom: 4, | ||
}} | ||
dragPan={true} | ||
scrollZoom={true} | ||
hash={false} | ||
style={{ width: "100%", height: "100%" }} | ||
mapStyle="stylejson/tile.openstreetmap.jp/fiord-color-gl-style/style.json" | ||
> | ||
<Source | ||
key={`${source.id}-source`} | ||
id={`${source.id}-source`} | ||
type={source.type} | ||
url={source.url} | ||
attribution={source.attribution} | ||
maxzoom={source.maxzoom} | ||
minzoom={source.minzoom} | ||
> | ||
{source.layers?.map((layer) => { | ||
switch (layer.type) { | ||
case "heatmap": | ||
return ( | ||
<Layer | ||
key={`${layer.id}-layer`} | ||
id={`${layer.id}-layer`} | ||
source={`${layer.id}-source`} | ||
source-layer={layer.sourceLayer} | ||
type={layer.type} | ||
paint={layer.paint} | ||
/> | ||
); | ||
default: | ||
return null; | ||
} | ||
})} | ||
</Source> | ||
</Map> | ||
); | ||
}; |
49 changes: 49 additions & 0 deletions
49
src/examples/Visualization/Heatmap/ArmedConflict/source.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import { PMTilesSource } from "../../../../types/PMTilesSource"; | ||
|
||
export const ArmedConflictPMTilesHeatmapSource: PMTilesSource = { | ||
id: "uppsala-armed-conflict-heatmap", | ||
url: "pmtiles://https://data.source.coop/smartmaps/uppsala-conflict/a.pmtiles", | ||
type: "vector", | ||
attribution: | ||
'<a href="https://ucdp.uu.se/">Uppsala Conflict Data Program</a>', | ||
maxzoom: 18, | ||
minzoom: 2, | ||
layers: [ | ||
{ | ||
id: "event-heatmap-layer", | ||
sourceLayer: "event", | ||
type: "heatmap", | ||
paint: { | ||
// Increase the heatmap weight based on frequency and property magnitude | ||
'heatmap-weight': 0.5, | ||
// Increase the heatmap color weight weight by zoom level | ||
// heatmap-intensity is a multiplier on top of heatmap-weight | ||
'heatmap-intensity': ['interpolate', ['linear'], ['zoom'], 0, 1, 18, 3], | ||
// Color ramp for heatmap. Domain is 0 (low) to 1 (high). | ||
// Begin color ramp at 0-stop with a 0-transparency color | ||
// to create a blur-like effect. | ||
'heatmap-color': [ | ||
'interpolate', | ||
['linear'], | ||
['heatmap-density'], | ||
0, | ||
'rgba(33,102,172,0)', | ||
0.2, | ||
'rgb(103,169,207)', | ||
0.4, | ||
'rgb(209,229,240)', | ||
0.6, | ||
'rgb(253,219,199)', | ||
0.8, | ||
'rgb(239,138,98)', | ||
0.9, | ||
'rgb(255,201,101)' | ||
], | ||
// Adjust the heatmap radius by zoom level | ||
'heatmap-radius': ['interpolate', ['linear'], ['zoom'], 0, 2, 18, 20], | ||
// Transition from heatmap to circle layer by zoom level | ||
'heatmap-opacity': ['interpolate', ['linear'], ['zoom'], 7, 1, 9, 0] | ||
}, | ||
}, | ||
], | ||
}; |