gitextract_r_op4bg4/ ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── NOTICE ├── README.md ├── examples/ │ ├── .storybook/ │ │ ├── config.js │ │ ├── styles.css │ │ └── webpack.config.js │ ├── package.json │ ├── public/ │ │ └── data/ │ │ ├── flows-2015.json │ │ ├── flows-2016.json │ │ ├── flows-diff-2015-2016.json │ │ ├── locations.json │ │ └── source.url │ ├── src/ │ │ ├── components/ │ │ │ ├── ClusteringExample.tsx │ │ │ └── Example.tsx │ │ ├── index.tsx │ │ ├── stories/ │ │ │ └── index.tsx │ │ └── utils/ │ │ ├── pipe.ts │ │ ├── withFetch.tsx │ │ ├── withSheetsFetch.tsx │ │ └── withStats.tsx │ └── tsconfig.json ├── lerna.json ├── package.json ├── packages/ │ ├── cluster/ │ │ ├── package.json │ │ ├── src/ │ │ │ ├── ClusterIndex.ts │ │ │ ├── cluster.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── tsconfig.build.esm.json │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── core/ │ │ ├── package.json │ │ ├── src/ │ │ │ ├── AnimatedFlowLinesLayer/ │ │ │ │ ├── AnimatedFlowLinesLayer.ts │ │ │ │ ├── AnimatedFlowLinesLayerFragment.glsl.ts │ │ │ │ ├── AnimatedFlowLinesLayerVertex.glsl.ts │ │ │ │ └── index.ts │ │ │ ├── FlowCirclesLayer/ │ │ │ │ ├── FlowCirclesLayer.ts │ │ │ │ ├── FlowCirclesLayerFragment.glsl.ts │ │ │ │ ├── FlowCirclesLayerVertex.glsl.ts │ │ │ │ └── index.ts │ │ │ ├── FlowLinesLayer/ │ │ │ │ ├── FlowLinesLayer.ts │ │ │ │ ├── FlowLinesLayerFragment.glsl.ts │ │ │ │ ├── FlowLinesLayerVertex.glsl.ts │ │ │ │ └── index.ts │ │ │ ├── FlowMapLayer.ts │ │ │ ├── LayerProps.ts │ │ │ ├── Selectors.ts │ │ │ ├── colors.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── tsconfig.build.esm.json │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ └── react/ │ ├── package.json │ ├── src/ │ │ ├── FlowMap.tsx │ │ ├── index.ts │ │ ├── legend/ │ │ │ ├── DiffColorsLegend.tsx │ │ │ ├── Disc.tsx │ │ │ ├── LegendBox.tsx │ │ │ └── LocationTotalsLegend.tsx │ │ └── viewport.ts │ ├── tsconfig.build.esm.json │ ├── tsconfig.build.json │ └── tsconfig.json ├── tslint.json └── typings/ ├── deck.gl.d.ts ├── kdbush.d.ts ├── luma.gl.d.ts └── react-map-gl.d.ts