├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TODO.md ├── data ├── AUS.json ├── AUS_ports.json ├── AUS_roads.json ├── data.csv ├── sources.md ├── stats.csv ├── world.geojson ├── world.gpkg ├── world.gpkg-shm └── world.gpkg-wal ├── examples ├── example1.html ├── example2.html ├── example3.html ├── example4.html ├── example5.html ├── quarto.html ├── quarto.qmd └── quarto_files │ ├── img │ ├── R.png │ ├── observable.png │ ├── quarto.png │ └── quartobertin.png │ └── libs │ ├── bootstrap │ ├── bootstrap-icons.css │ ├── bootstrap-icons.woff │ ├── bootstrap.min.css │ └── bootstrap.min.js │ ├── clipboard │ └── clipboard.min.js │ ├── crosstalk-1.2.0 │ ├── css │ │ └── crosstalk.min.css │ ├── js │ │ ├── crosstalk.js │ │ ├── crosstalk.js.map │ │ ├── crosstalk.min.js │ │ └── crosstalk.min.js.map │ └── scss │ │ └── crosstalk.scss │ ├── datatables-binding-0.23 │ └── datatables.js │ ├── datatables-css-0.0.0 │ └── datatables-crosstalk.css │ ├── dt-core-1.11.3 │ ├── css │ │ ├── jquery.dataTables.extra.css │ │ └── jquery.dataTables.min.css │ └── js │ │ └── jquery.dataTables.min.js │ ├── htmlwidgets-1.5.4 │ └── htmlwidgets.js │ ├── jquery-3.6.0 │ ├── jquery-3.6.0.js │ ├── jquery-3.6.0.min.js │ └── jquery-3.6.0.min.map │ ├── quarto-html │ ├── anchor.min.js │ ├── popper.min.js │ ├── quarto-syntax-highlighting.css │ ├── quarto.js │ ├── tippy.css │ └── tippy.umd.min.js │ └── quarto-ojs │ ├── quarto-ojs-runtime.js │ └── quarto-ojs.css ├── img ├── banner.png ├── bubble.png ├── bubblechoro.png ├── bubbletypo.png ├── cheatsheet.pdf ├── cheatsheet.png ├── cheatsheetbertin.png ├── choro.png ├── dorling.png ├── dotcartogram.png ├── dotdensity.png ├── flows.png ├── footer.png ├── geolines.png ├── graticule.png ├── hatch.png ├── header.png ├── inner.png ├── labels.png ├── logo.png ├── logo.svg ├── logo_small.png ├── logolayer.png ├── merge.png ├── minimap.png ├── mushroom.png ├── obs.png ├── outline.png ├── regularbubble.png ├── regulargrid.png ├── regularsquare.png ├── rhumbs.png ├── ridge.png ├── shadow.png ├── simple.png ├── smooth.png ├── spikes.png ├── square.png ├── thickness.png ├── thickness_categories.png ├── tile.png ├── tissot.png ├── typo.png └── waterlines.png ├── package.json ├── rollup.config.js └── src ├── bbox.js ├── borders.js ├── draw.js ├── helpers ├── add.js ├── border.js ├── buffer.js ├── centroid.js ├── colorize.js ├── dissolve.js ├── dotsinpolygons.js ├── featurecollection.js ├── figuration.js ├── filter.js ├── geoimport.js ├── geolines.js ├── getangle.js ├── getattr.js ├── grid.js ├── head.js ├── height.js ├── isnumber.js ├── keep.js ├── km2deg.js ├── remove.js ├── rewind.js ├── rounding.js ├── simulation-circles.js ├── simulation-squares.js ├── str2fun.js ├── subset.js ├── table.js ├── tail.js ├── thickness.js ├── tissot.js ├── tooltip.js └── union.js ├── index.js ├── layers ├── bubble.js ├── dotcartogram.js ├── dotdensity.js ├── footer.js ├── geolines.js ├── graticule.js ├── hatch.js ├── header.js ├── inner.js ├── label.js ├── logo.js ├── minimap.js ├── missing.js ├── mushroom.js ├── outline.js ├── path.js ├── regularbubble.js ├── regulargrid.js ├── regularsquare.js ├── rhumbs.js ├── ridge.js ├── scalebar.js ├── shadow.js ├── simple.js ├── smooth.js ├── spikes.js ├── square.js ├── text.js ├── tiles.js ├── tissot.js └── waterlines.js ├── legend ├── leg-choro.js ├── leg-circles.js ├── leg-links.js ├── leg-simple.js ├── leg-spikes.js ├── leg-squares.js ├── leg-thickness-discr.js ├── leg-thickness-linear.js ├── leg-thickness-quali.js ├── leg-typo.js └── legends.js ├── links.js ├── match.js ├── merge.js ├── projections ├── euler.js ├── globe.js ├── hoaxiaoguang.js ├── polar.js ├── proj4d3.js ├── projections.js ├── rotate.js ├── spilhaus.js └── stringtod3proj.js ├── properties.js ├── quickdraw.js ├── table2geo.js └── update ├── update-bubble.js ├── update-footer.js ├── update-geolines.js ├── update-header.js ├── update-main.js ├── update-rhumbs.js ├── update-ridge.js ├── update-shadow.js ├── update-simple.js ├── update-spikes.js ├── update-square.js └── update-tissot.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/TODO.md -------------------------------------------------------------------------------- /data/AUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/data/AUS.json -------------------------------------------------------------------------------- /data/AUS_ports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/data/AUS_ports.json -------------------------------------------------------------------------------- /data/AUS_roads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/data/AUS_roads.json -------------------------------------------------------------------------------- /data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/data/data.csv -------------------------------------------------------------------------------- /data/sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/data/sources.md -------------------------------------------------------------------------------- /data/stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/data/stats.csv -------------------------------------------------------------------------------- /data/world.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/data/world.geojson -------------------------------------------------------------------------------- /data/world.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/data/world.gpkg -------------------------------------------------------------------------------- /data/world.gpkg-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/data/world.gpkg-shm -------------------------------------------------------------------------------- /data/world.gpkg-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/example1.html -------------------------------------------------------------------------------- /examples/example2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/example2.html -------------------------------------------------------------------------------- /examples/example3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/example3.html -------------------------------------------------------------------------------- /examples/example4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/example4.html -------------------------------------------------------------------------------- /examples/example5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/example5.html -------------------------------------------------------------------------------- /examples/quarto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto.html -------------------------------------------------------------------------------- /examples/quarto.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto.qmd -------------------------------------------------------------------------------- /examples/quarto_files/img/R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/img/R.png -------------------------------------------------------------------------------- /examples/quarto_files/img/observable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/img/observable.png -------------------------------------------------------------------------------- /examples/quarto_files/img/quarto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/img/quarto.png -------------------------------------------------------------------------------- /examples/quarto_files/img/quartobertin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/img/quartobertin.png -------------------------------------------------------------------------------- /examples/quarto_files/libs/bootstrap/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/bootstrap/bootstrap-icons.css -------------------------------------------------------------------------------- /examples/quarto_files/libs/bootstrap/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/bootstrap/bootstrap-icons.woff -------------------------------------------------------------------------------- /examples/quarto_files/libs/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /examples/quarto_files/libs/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /examples/quarto_files/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /examples/quarto_files/libs/crosstalk-1.2.0/css/crosstalk.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/crosstalk-1.2.0/css/crosstalk.min.css -------------------------------------------------------------------------------- /examples/quarto_files/libs/crosstalk-1.2.0/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/crosstalk-1.2.0/js/crosstalk.js -------------------------------------------------------------------------------- /examples/quarto_files/libs/crosstalk-1.2.0/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/crosstalk-1.2.0/js/crosstalk.js.map -------------------------------------------------------------------------------- /examples/quarto_files/libs/crosstalk-1.2.0/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/crosstalk-1.2.0/js/crosstalk.min.js -------------------------------------------------------------------------------- /examples/quarto_files/libs/crosstalk-1.2.0/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/crosstalk-1.2.0/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /examples/quarto_files/libs/crosstalk-1.2.0/scss/crosstalk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/crosstalk-1.2.0/scss/crosstalk.scss -------------------------------------------------------------------------------- /examples/quarto_files/libs/datatables-binding-0.23/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/datatables-binding-0.23/datatables.js -------------------------------------------------------------------------------- /examples/quarto_files/libs/datatables-css-0.0.0/datatables-crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/datatables-css-0.0.0/datatables-crosstalk.css -------------------------------------------------------------------------------- /examples/quarto_files/libs/dt-core-1.11.3/css/jquery.dataTables.extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/dt-core-1.11.3/css/jquery.dataTables.extra.css -------------------------------------------------------------------------------- /examples/quarto_files/libs/dt-core-1.11.3/css/jquery.dataTables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/dt-core-1.11.3/css/jquery.dataTables.min.css -------------------------------------------------------------------------------- /examples/quarto_files/libs/dt-core-1.11.3/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/dt-core-1.11.3/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /examples/quarto_files/libs/htmlwidgets-1.5.4/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/htmlwidgets-1.5.4/htmlwidgets.js -------------------------------------------------------------------------------- /examples/quarto_files/libs/jquery-3.6.0/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/jquery-3.6.0/jquery-3.6.0.js -------------------------------------------------------------------------------- /examples/quarto_files/libs/jquery-3.6.0/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/jquery-3.6.0/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /examples/quarto_files/libs/jquery-3.6.0/jquery-3.6.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/jquery-3.6.0/jquery-3.6.0.min.map -------------------------------------------------------------------------------- /examples/quarto_files/libs/quarto-html/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/quarto-html/anchor.min.js -------------------------------------------------------------------------------- /examples/quarto_files/libs/quarto-html/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/quarto-html/popper.min.js -------------------------------------------------------------------------------- /examples/quarto_files/libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/quarto-html/quarto-syntax-highlighting.css -------------------------------------------------------------------------------- /examples/quarto_files/libs/quarto-html/quarto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/quarto-html/quarto.js -------------------------------------------------------------------------------- /examples/quarto_files/libs/quarto-html/tippy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/quarto-html/tippy.css -------------------------------------------------------------------------------- /examples/quarto_files/libs/quarto-html/tippy.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/quarto-html/tippy.umd.min.js -------------------------------------------------------------------------------- /examples/quarto_files/libs/quarto-ojs/quarto-ojs-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/quarto-ojs/quarto-ojs-runtime.js -------------------------------------------------------------------------------- /examples/quarto_files/libs/quarto-ojs/quarto-ojs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/examples/quarto_files/libs/quarto-ojs/quarto-ojs.css -------------------------------------------------------------------------------- /img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/banner.png -------------------------------------------------------------------------------- /img/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/bubble.png -------------------------------------------------------------------------------- /img/bubblechoro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/bubblechoro.png -------------------------------------------------------------------------------- /img/bubbletypo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/bubbletypo.png -------------------------------------------------------------------------------- /img/cheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/cheatsheet.pdf -------------------------------------------------------------------------------- /img/cheatsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/cheatsheet.png -------------------------------------------------------------------------------- /img/cheatsheetbertin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/cheatsheetbertin.png -------------------------------------------------------------------------------- /img/choro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/choro.png -------------------------------------------------------------------------------- /img/dorling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/dorling.png -------------------------------------------------------------------------------- /img/dotcartogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/dotcartogram.png -------------------------------------------------------------------------------- /img/dotdensity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/dotdensity.png -------------------------------------------------------------------------------- /img/flows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/flows.png -------------------------------------------------------------------------------- /img/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/footer.png -------------------------------------------------------------------------------- /img/geolines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/geolines.png -------------------------------------------------------------------------------- /img/graticule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/graticule.png -------------------------------------------------------------------------------- /img/hatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/hatch.png -------------------------------------------------------------------------------- /img/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/header.png -------------------------------------------------------------------------------- /img/inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/inner.png -------------------------------------------------------------------------------- /img/labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/labels.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/logo.svg -------------------------------------------------------------------------------- /img/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/logo_small.png -------------------------------------------------------------------------------- /img/logolayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/logolayer.png -------------------------------------------------------------------------------- /img/merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/merge.png -------------------------------------------------------------------------------- /img/minimap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/minimap.png -------------------------------------------------------------------------------- /img/mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/mushroom.png -------------------------------------------------------------------------------- /img/obs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/obs.png -------------------------------------------------------------------------------- /img/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/outline.png -------------------------------------------------------------------------------- /img/regularbubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/regularbubble.png -------------------------------------------------------------------------------- /img/regulargrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/regulargrid.png -------------------------------------------------------------------------------- /img/regularsquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/regularsquare.png -------------------------------------------------------------------------------- /img/rhumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/rhumbs.png -------------------------------------------------------------------------------- /img/ridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/ridge.png -------------------------------------------------------------------------------- /img/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/shadow.png -------------------------------------------------------------------------------- /img/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/simple.png -------------------------------------------------------------------------------- /img/smooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/smooth.png -------------------------------------------------------------------------------- /img/spikes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/spikes.png -------------------------------------------------------------------------------- /img/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/square.png -------------------------------------------------------------------------------- /img/thickness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/thickness.png -------------------------------------------------------------------------------- /img/thickness_categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/thickness_categories.png -------------------------------------------------------------------------------- /img/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/tile.png -------------------------------------------------------------------------------- /img/tissot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/tissot.png -------------------------------------------------------------------------------- /img/typo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/typo.png -------------------------------------------------------------------------------- /img/waterlines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/img/waterlines.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/bbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/bbox.js -------------------------------------------------------------------------------- /src/borders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/borders.js -------------------------------------------------------------------------------- /src/draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/draw.js -------------------------------------------------------------------------------- /src/helpers/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/add.js -------------------------------------------------------------------------------- /src/helpers/border.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/border.js -------------------------------------------------------------------------------- /src/helpers/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/buffer.js -------------------------------------------------------------------------------- /src/helpers/centroid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/centroid.js -------------------------------------------------------------------------------- /src/helpers/colorize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/colorize.js -------------------------------------------------------------------------------- /src/helpers/dissolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/dissolve.js -------------------------------------------------------------------------------- /src/helpers/dotsinpolygons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/dotsinpolygons.js -------------------------------------------------------------------------------- /src/helpers/featurecollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/featurecollection.js -------------------------------------------------------------------------------- /src/helpers/figuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/figuration.js -------------------------------------------------------------------------------- /src/helpers/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/filter.js -------------------------------------------------------------------------------- /src/helpers/geoimport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/geoimport.js -------------------------------------------------------------------------------- /src/helpers/geolines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/geolines.js -------------------------------------------------------------------------------- /src/helpers/getangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/getangle.js -------------------------------------------------------------------------------- /src/helpers/getattr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/getattr.js -------------------------------------------------------------------------------- /src/helpers/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/grid.js -------------------------------------------------------------------------------- /src/helpers/head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/head.js -------------------------------------------------------------------------------- /src/helpers/height.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/height.js -------------------------------------------------------------------------------- /src/helpers/isnumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/isnumber.js -------------------------------------------------------------------------------- /src/helpers/keep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/keep.js -------------------------------------------------------------------------------- /src/helpers/km2deg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/km2deg.js -------------------------------------------------------------------------------- /src/helpers/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/remove.js -------------------------------------------------------------------------------- /src/helpers/rewind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/rewind.js -------------------------------------------------------------------------------- /src/helpers/rounding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/rounding.js -------------------------------------------------------------------------------- /src/helpers/simulation-circles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/simulation-circles.js -------------------------------------------------------------------------------- /src/helpers/simulation-squares.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/simulation-squares.js -------------------------------------------------------------------------------- /src/helpers/str2fun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/str2fun.js -------------------------------------------------------------------------------- /src/helpers/subset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/subset.js -------------------------------------------------------------------------------- /src/helpers/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/table.js -------------------------------------------------------------------------------- /src/helpers/tail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/tail.js -------------------------------------------------------------------------------- /src/helpers/thickness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/thickness.js -------------------------------------------------------------------------------- /src/helpers/tissot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/tissot.js -------------------------------------------------------------------------------- /src/helpers/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/tooltip.js -------------------------------------------------------------------------------- /src/helpers/union.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/helpers/union.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/index.js -------------------------------------------------------------------------------- /src/layers/bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/bubble.js -------------------------------------------------------------------------------- /src/layers/dotcartogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/dotcartogram.js -------------------------------------------------------------------------------- /src/layers/dotdensity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/dotdensity.js -------------------------------------------------------------------------------- /src/layers/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/footer.js -------------------------------------------------------------------------------- /src/layers/geolines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/geolines.js -------------------------------------------------------------------------------- /src/layers/graticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/graticule.js -------------------------------------------------------------------------------- /src/layers/hatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/hatch.js -------------------------------------------------------------------------------- /src/layers/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/header.js -------------------------------------------------------------------------------- /src/layers/inner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/inner.js -------------------------------------------------------------------------------- /src/layers/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/label.js -------------------------------------------------------------------------------- /src/layers/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/logo.js -------------------------------------------------------------------------------- /src/layers/minimap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/minimap.js -------------------------------------------------------------------------------- /src/layers/missing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/missing.js -------------------------------------------------------------------------------- /src/layers/mushroom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/mushroom.js -------------------------------------------------------------------------------- /src/layers/outline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/outline.js -------------------------------------------------------------------------------- /src/layers/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/path.js -------------------------------------------------------------------------------- /src/layers/regularbubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/regularbubble.js -------------------------------------------------------------------------------- /src/layers/regulargrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/regulargrid.js -------------------------------------------------------------------------------- /src/layers/regularsquare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/regularsquare.js -------------------------------------------------------------------------------- /src/layers/rhumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/rhumbs.js -------------------------------------------------------------------------------- /src/layers/ridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/ridge.js -------------------------------------------------------------------------------- /src/layers/scalebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/scalebar.js -------------------------------------------------------------------------------- /src/layers/shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/shadow.js -------------------------------------------------------------------------------- /src/layers/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/simple.js -------------------------------------------------------------------------------- /src/layers/smooth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/smooth.js -------------------------------------------------------------------------------- /src/layers/spikes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/spikes.js -------------------------------------------------------------------------------- /src/layers/square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/square.js -------------------------------------------------------------------------------- /src/layers/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/text.js -------------------------------------------------------------------------------- /src/layers/tiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/tiles.js -------------------------------------------------------------------------------- /src/layers/tissot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/tissot.js -------------------------------------------------------------------------------- /src/layers/waterlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/layers/waterlines.js -------------------------------------------------------------------------------- /src/legend/leg-choro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/legend/leg-choro.js -------------------------------------------------------------------------------- /src/legend/leg-circles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/legend/leg-circles.js -------------------------------------------------------------------------------- /src/legend/leg-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/legend/leg-links.js -------------------------------------------------------------------------------- /src/legend/leg-simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/legend/leg-simple.js -------------------------------------------------------------------------------- /src/legend/leg-spikes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/legend/leg-spikes.js -------------------------------------------------------------------------------- /src/legend/leg-squares.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/legend/leg-squares.js -------------------------------------------------------------------------------- /src/legend/leg-thickness-discr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/legend/leg-thickness-discr.js -------------------------------------------------------------------------------- /src/legend/leg-thickness-linear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/legend/leg-thickness-linear.js -------------------------------------------------------------------------------- /src/legend/leg-thickness-quali.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/legend/leg-thickness-quali.js -------------------------------------------------------------------------------- /src/legend/leg-typo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/legend/leg-typo.js -------------------------------------------------------------------------------- /src/legend/legends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/legend/legends.js -------------------------------------------------------------------------------- /src/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/links.js -------------------------------------------------------------------------------- /src/match.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/match.js -------------------------------------------------------------------------------- /src/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/merge.js -------------------------------------------------------------------------------- /src/projections/euler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/projections/euler.js -------------------------------------------------------------------------------- /src/projections/globe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/projections/globe.js -------------------------------------------------------------------------------- /src/projections/hoaxiaoguang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/projections/hoaxiaoguang.js -------------------------------------------------------------------------------- /src/projections/polar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/projections/polar.js -------------------------------------------------------------------------------- /src/projections/proj4d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/projections/proj4d3.js -------------------------------------------------------------------------------- /src/projections/projections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/projections/projections.js -------------------------------------------------------------------------------- /src/projections/rotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/projections/rotate.js -------------------------------------------------------------------------------- /src/projections/spilhaus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/projections/spilhaus.js -------------------------------------------------------------------------------- /src/projections/stringtod3proj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/projections/stringtod3proj.js -------------------------------------------------------------------------------- /src/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/properties.js -------------------------------------------------------------------------------- /src/quickdraw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/quickdraw.js -------------------------------------------------------------------------------- /src/table2geo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/table2geo.js -------------------------------------------------------------------------------- /src/update/update-bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/update/update-bubble.js -------------------------------------------------------------------------------- /src/update/update-footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/update/update-footer.js -------------------------------------------------------------------------------- /src/update/update-geolines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/update/update-geolines.js -------------------------------------------------------------------------------- /src/update/update-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/update/update-header.js -------------------------------------------------------------------------------- /src/update/update-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/update/update-main.js -------------------------------------------------------------------------------- /src/update/update-rhumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/update/update-rhumbs.js -------------------------------------------------------------------------------- /src/update/update-ridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/update/update-ridge.js -------------------------------------------------------------------------------- /src/update/update-shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/update/update-shadow.js -------------------------------------------------------------------------------- /src/update/update-simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/update/update-simple.js -------------------------------------------------------------------------------- /src/update/update-spikes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/update/update-spikes.js -------------------------------------------------------------------------------- /src/update/update-square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/update/update-square.js -------------------------------------------------------------------------------- /src/update/update-tissot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/bertin/HEAD/src/update/update-tissot.js --------------------------------------------------------------------------------