├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── council_seats.R ├── current_mps.R ├── data.R ├── mps_on_date.R ├── parlitools-package.R └── parlitools_tidy.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── appveyor.yml ├── cran-comments.md ├── data-raw ├── 2015-UK-general-election-data-results-WEB │ ├── CONSTITUENCY.csv │ └── RESULTS.csv ├── 2017-UKPGE-Electoral-Data.xls ├── BES-2015-General-Election-results-file-v2.21.xlsx ├── BES-2017-General-Election-results-file-v1.0.xlsx ├── Census-2011.xlsx ├── EC data │ ├── 2001-UK-Parliament-spending-data-Excel.xls │ ├── Generalelection2005_A-Zconstituencyresults_18784-13893__E__N__S__W__.xls │ └── qry_Candidate_Returns_publication_detailed_FINAL-20110816.xls ├── Estimates-of-constituency-level-EU-referendum-result.xlsx ├── Final estimates of the Leave vote share in the EU referendum.xlsx ├── Local_Authority_Districts_December_2016_Names_and_Codes_in_the_United_Kingdom.csv ├── UKPGE-turnout-postal-rejected-admin-amended-WEB.xlsx ├── bes-data-prep.R ├── brexit-hanretty-data-prep.R ├── brexit-ni-constituencies.xlsx ├── candidates-parl.2019-12-12.csv ├── constituency-results-prep.R ├── councils-colours-data-prep.R ├── hex-prep.R ├── hocl-data │ ├── 1918-2017election_results.csv │ ├── 1918-2017election_results_by_pcon.xlsx │ ├── CBP-7417.pdf │ ├── CBP-7529-.download.xlsx │ ├── CBP-8280-by-elections-results-summary.xlsx │ ├── HoC-GE2017-constituency-results.csv │ ├── HoC-GE2017-results-by-candidate.csv │ ├── HoC-GE2019-results-by-candidate.csv │ ├── HoC-GE2019-results-by-constituency-csv.csv │ ├── hoc-ge2015-results-full.csv │ └── ~$1918-2017election_results_by_pcon.xlsx ├── la_codes.csv ├── local_hex_map │ ├── local_hex_map.cpg │ ├── local_hex_map.dbf │ ├── local_hex_map.prj │ ├── local_hex_map.qpj │ ├── local_hex_map.shp │ └── local_hex_map.shx ├── long-results.R ├── map-prep.R ├── ni-data-prep.R ├── party_colour.xlsx └── west_hex_map │ ├── west_hex_map.dbf │ ├── west_hex_map.prj │ ├── west_hex_map.qpj │ ├── west_hex_map.shp │ └── west_hex_map.shx ├── data ├── bes_2015.rda ├── bes_2017.rda ├── bes_2019.rda ├── census_11.rda ├── la_codes.rda ├── leave_votes_west.rda ├── local_hex_map.rda ├── ni_ge_2017.rda ├── party_colour.rda └── west_hex_map.rda ├── docs ├── articles │ ├── bes-2015_files │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── elevate-section-attrs-2.0 │ │ │ └── elevate-section-attrs.js │ │ ├── header-attrs-2.1 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.5 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ └── jquery-1.11.3 │ │ │ └── jquery.min.js │ ├── bes-2017_files │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── elevate-section-attrs-2.0 │ │ │ └── elevate-section-attrs.js │ │ ├── header-attrs-2.1 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.5 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ └── jquery-1.11.3 │ │ │ └── jquery.min.js │ ├── bes-2019_files │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── elevate-section-attrs-2.0 │ │ │ └── elevate-section-attrs.js │ │ ├── header-attrs-2.1 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.5 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ └── jquery-1.11.3 │ │ │ └── jquery.min.js │ ├── census-11_files │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── elevate-section-attrs-2.0 │ │ │ └── elevate-section-attrs.js │ │ ├── header-attrs-2.1 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.5 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ └── jquery-1.11.3 │ │ │ └── jquery.min.js │ ├── introduction_files │ │ ├── Proj4Leaflet-0.7.2 │ │ │ ├── proj4-compressed.js │ │ │ ├── proj4.js │ │ │ └── proj4leaflet.js │ │ ├── Proj4Leaflet-1.0.1 │ │ │ ├── proj4-compressed.js │ │ │ └── proj4leaflet.js │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── elevate-section-attrs-2.0 │ │ │ └── elevate-section-attrs.js │ │ ├── figure-html │ │ │ ├── unnamed-chunk-1-1.png │ │ │ └── unnamed-chunk-3-1.png │ │ ├── header-attrs-2.1 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.5 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.0 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.2 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.3 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── jquery-1.11.3 │ │ │ └── jquery.min.js │ │ ├── jquery-1.12.4 │ │ │ └── jquery.min.js │ │ ├── leaflet-0.7.7 │ │ │ ├── images │ │ │ │ ├── 1px.png │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet-src.js │ │ │ ├── leaflet.css │ │ │ └── leaflet.js │ │ ├── leaflet-1.3.1 │ │ │ ├── images │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet.css │ │ │ └── leaflet.js │ │ ├── leaflet-binding-1.1.0 │ │ │ └── leaflet.js │ │ ├── leaflet-binding-2.0.0 │ │ │ ├── leaflet.js │ │ │ ├── leaflet.yaml │ │ │ ├── lib │ │ │ │ ├── jquery │ │ │ │ │ └── jquery.min.js │ │ │ │ ├── leaflet-measure │ │ │ │ │ ├── images │ │ │ │ │ │ ├── cancel.png │ │ │ │ │ │ ├── cancel_@2X.png │ │ │ │ │ │ ├── check.png │ │ │ │ │ │ ├── check_@2X.png │ │ │ │ │ │ ├── focus.png │ │ │ │ │ │ ├── focus_@2X.png │ │ │ │ │ │ ├── rulers.png │ │ │ │ │ │ ├── rulers_@2X.png │ │ │ │ │ │ ├── start.png │ │ │ │ │ │ ├── start_@2X.png │ │ │ │ │ │ ├── trash.png │ │ │ │ │ │ └── trash_@2X.png │ │ │ │ │ ├── leaflet-measure.css │ │ │ │ │ └── leaflet-measure.min.js │ │ │ │ ├── leaflet-omnivore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── index.js │ │ │ │ │ ├── leaflet-omnivore.min.js │ │ │ │ │ └── package.json │ │ │ │ ├── leaflet-providers │ │ │ │ │ ├── leaflet-providers.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── providers.json │ │ │ │ │ └── rstudio_install.md │ │ │ │ ├── leaflet │ │ │ │ │ ├── images │ │ │ │ │ │ ├── layers-2x.png │ │ │ │ │ │ ├── layers.png │ │ │ │ │ │ ├── marker-icon-2x.png │ │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ │ └── marker-shadow.png │ │ │ │ │ ├── leaflet.css │ │ │ │ │ └── leaflet.js │ │ │ │ ├── leafletfix │ │ │ │ │ └── leafletfix.css │ │ │ │ └── rstudio_leaflet │ │ │ │ │ ├── images │ │ │ │ │ └── 1px.png │ │ │ │ │ └── rstudio_leaflet.css │ │ │ └── plugins │ │ │ │ ├── Leaflet-MiniMap │ │ │ │ ├── Control.MiniMap.css │ │ │ │ ├── Control.MiniMap.js │ │ │ │ ├── Control.MiniMap.min.css │ │ │ │ ├── Control.MiniMap.min.js │ │ │ │ ├── Minimap-binding.js │ │ │ │ └── images │ │ │ │ │ ├── toggle.png │ │ │ │ │ └── toggle.svg │ │ │ │ ├── Leaflet.EasyButton │ │ │ │ ├── EasyButton-binding.js │ │ │ │ ├── LICENSE │ │ │ │ ├── easy-button.css │ │ │ │ └── easy-button.js │ │ │ │ ├── Leaflet.Graticule │ │ │ │ ├── Graticule-binding.js │ │ │ │ ├── L.Graticule.js │ │ │ │ └── Leaflet.Graticule.js │ │ │ │ ├── Leaflet.SimpleGraticule │ │ │ │ ├── L.SimpleGraticule.css │ │ │ │ ├── L.SimpleGraticule.js │ │ │ │ └── SimpleGraticule-binding.js │ │ │ │ ├── Leaflet.Terminator │ │ │ │ ├── L.Terminator.js │ │ │ │ └── Terminator-binding.js │ │ │ │ ├── Leaflet.awesome-markers │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── font-awesome.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ ├── ionicons.eot │ │ │ │ │ ├── ionicons.svg │ │ │ │ │ ├── ionicons.ttf │ │ │ │ │ └── ionicons.woff │ │ │ │ ├── images │ │ │ │ │ ├── markers-matte.png │ │ │ │ │ ├── markers-matte@2x.png │ │ │ │ │ ├── markers-plain.png │ │ │ │ │ ├── markers-shadow.png │ │ │ │ │ ├── markers-shadow@2x.png │ │ │ │ │ ├── markers-soft.png │ │ │ │ │ └── markers-soft@2x.png │ │ │ │ ├── ionicons.min.css │ │ │ │ ├── leaflet.awesome-markers.css │ │ │ │ ├── leaflet.awesome-markers.js │ │ │ │ └── leaflet.awesome-markers.min.js │ │ │ │ ├── Leaflet.markercluster │ │ │ │ ├── MIT-LICENCE.txt │ │ │ │ ├── MarkerCluster.Default.css │ │ │ │ ├── MarkerCluster.css │ │ │ │ ├── leaflet.markercluster.freezable.js │ │ │ │ ├── leaflet.markercluster.js │ │ │ │ ├── leaflet.markercluster.layersupport.js │ │ │ │ └── package.json │ │ │ │ ├── Proj4Leaflet │ │ │ │ ├── proj4-compressed.js │ │ │ │ └── proj4leaflet.js │ │ │ │ ├── leaflet-locationfilter │ │ │ │ ├── img │ │ │ │ │ ├── filter-icon.png │ │ │ │ │ ├── move-handle.png │ │ │ │ │ └── resize-handle.png │ │ │ │ ├── locationfilter-bindings.js │ │ │ │ ├── locationfilter.css │ │ │ │ └── locationfilter.js │ │ │ │ └── leaflet-providers-plugin │ │ │ │ └── leaflet-providers-plugin.js │ │ ├── leaflet-binding-2.0.1 │ │ │ ├── leaflet.js │ │ │ ├── leaflet.yaml │ │ │ ├── lib │ │ │ │ ├── jquery │ │ │ │ │ └── jquery.min.js │ │ │ │ ├── leaflet-measure │ │ │ │ │ ├── images │ │ │ │ │ │ ├── cancel.png │ │ │ │ │ │ ├── cancel_@2X.png │ │ │ │ │ │ ├── check.png │ │ │ │ │ │ ├── check_@2X.png │ │ │ │ │ │ ├── focus.png │ │ │ │ │ │ ├── focus_@2X.png │ │ │ │ │ │ ├── rulers.png │ │ │ │ │ │ ├── rulers_@2X.png │ │ │ │ │ │ ├── start.png │ │ │ │ │ │ ├── start_@2X.png │ │ │ │ │ │ ├── trash.png │ │ │ │ │ │ └── trash_@2X.png │ │ │ │ │ ├── leaflet-measure.css │ │ │ │ │ └── leaflet-measure.min.js │ │ │ │ ├── leaflet-omnivore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── index.js │ │ │ │ │ ├── leaflet-omnivore.min.js │ │ │ │ │ └── package.json │ │ │ │ ├── leaflet-providers │ │ │ │ │ ├── leaflet-providers.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── providers.json │ │ │ │ │ └── rstudio_install.md │ │ │ │ ├── leaflet │ │ │ │ │ ├── images │ │ │ │ │ │ ├── layers-2x.png │ │ │ │ │ │ ├── layers.png │ │ │ │ │ │ ├── marker-icon-2x.png │ │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ │ └── marker-shadow.png │ │ │ │ │ ├── leaflet.css │ │ │ │ │ └── leaflet.js │ │ │ │ ├── leafletfix │ │ │ │ │ └── leafletfix.css │ │ │ │ └── rstudio_leaflet │ │ │ │ │ ├── images │ │ │ │ │ └── 1px.png │ │ │ │ │ └── rstudio_leaflet.css │ │ │ └── plugins │ │ │ │ ├── Leaflet-MiniMap │ │ │ │ ├── Control.MiniMap.css │ │ │ │ ├── Control.MiniMap.js │ │ │ │ ├── Control.MiniMap.min.css │ │ │ │ ├── Control.MiniMap.min.js │ │ │ │ ├── Minimap-binding.js │ │ │ │ └── images │ │ │ │ │ ├── toggle.png │ │ │ │ │ └── toggle.svg │ │ │ │ ├── Leaflet.EasyButton │ │ │ │ ├── EasyButton-binding.js │ │ │ │ ├── LICENSE │ │ │ │ ├── easy-button.css │ │ │ │ └── easy-button.js │ │ │ │ ├── Leaflet.Graticule │ │ │ │ ├── Graticule-binding.js │ │ │ │ ├── L.Graticule.js │ │ │ │ └── Leaflet.Graticule.js │ │ │ │ ├── Leaflet.SimpleGraticule │ │ │ │ ├── L.SimpleGraticule.css │ │ │ │ ├── L.SimpleGraticule.js │ │ │ │ └── SimpleGraticule-binding.js │ │ │ │ ├── Leaflet.Terminator │ │ │ │ ├── L.Terminator.js │ │ │ │ └── Terminator-binding.js │ │ │ │ ├── Leaflet.awesome-markers │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── font-awesome.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ ├── ionicons.eot │ │ │ │ │ ├── ionicons.svg │ │ │ │ │ ├── ionicons.ttf │ │ │ │ │ └── ionicons.woff │ │ │ │ ├── images │ │ │ │ │ ├── markers-matte.png │ │ │ │ │ ├── markers-matte@2x.png │ │ │ │ │ ├── markers-plain.png │ │ │ │ │ ├── markers-shadow.png │ │ │ │ │ ├── markers-shadow@2x.png │ │ │ │ │ ├── markers-soft.png │ │ │ │ │ └── markers-soft@2x.png │ │ │ │ ├── ionicons.min.css │ │ │ │ ├── leaflet.awesome-markers.css │ │ │ │ ├── leaflet.awesome-markers.js │ │ │ │ └── leaflet.awesome-markers.min.js │ │ │ │ ├── Leaflet.markercluster │ │ │ │ ├── MIT-LICENCE.txt │ │ │ │ ├── MarkerCluster.Default.css │ │ │ │ ├── MarkerCluster.css │ │ │ │ ├── leaflet.markercluster.freezable.js │ │ │ │ ├── leaflet.markercluster.js │ │ │ │ ├── leaflet.markercluster.layersupport.js │ │ │ │ └── package.json │ │ │ │ ├── Proj4Leaflet │ │ │ │ ├── proj4-compressed.js │ │ │ │ └── proj4leaflet.js │ │ │ │ ├── leaflet-locationfilter │ │ │ │ ├── img │ │ │ │ │ ├── filter-icon.png │ │ │ │ │ ├── move-handle.png │ │ │ │ │ └── resize-handle.png │ │ │ │ ├── locationfilter-bindings.js │ │ │ │ ├── locationfilter.css │ │ │ │ └── locationfilter.js │ │ │ │ └── leaflet-providers-plugin │ │ │ │ └── leaflet-providers-plugin.js │ │ ├── leaflet-binding-2.0.2 │ │ │ └── leaflet.js │ │ ├── leaflet-label-0.2.2 │ │ │ ├── images │ │ │ │ └── death.png │ │ │ ├── leaflet.label-src.js │ │ │ ├── leaflet.label.css │ │ │ └── leaflet.label.js │ │ ├── leafletfix-1.0.0 │ │ │ └── leafletfix.css │ │ └── rstudio_leaflet-1.3.1 │ │ │ ├── images │ │ │ └── 1px.png │ │ │ └── rstudio_leaflet.css │ ├── mapping-local-authorities_files │ │ ├── Proj4Leaflet-0.7.2 │ │ │ ├── proj4-compressed.js │ │ │ ├── proj4.js │ │ │ └── proj4leaflet.js │ │ ├── Proj4Leaflet-1.0.1 │ │ │ └── proj4leaflet.js │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── elevate-section-attrs-2.0 │ │ │ └── elevate-section-attrs.js │ │ ├── header-attrs-2.1 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.5 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.0 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.2 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.3 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.2 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.3 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.4 │ │ │ └── htmlwidgets.js │ │ ├── jquery-1.12.4 │ │ │ └── jquery.min.js │ │ ├── leaflet-0.7.7 │ │ │ ├── images │ │ │ │ ├── 1px.png │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet-src.js │ │ │ ├── leaflet.css │ │ │ └── leaflet.js │ │ ├── leaflet-1.3.1 │ │ │ ├── images │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet.css │ │ │ └── leaflet.js │ │ ├── leaflet-binding-1.1.0 │ │ │ └── leaflet.js │ │ ├── leaflet-binding-2.0.0 │ │ │ ├── leaflet.js │ │ │ ├── leaflet.yaml │ │ │ ├── lib │ │ │ │ ├── jquery │ │ │ │ │ └── jquery.min.js │ │ │ │ ├── leaflet-measure │ │ │ │ │ ├── images │ │ │ │ │ │ ├── cancel.png │ │ │ │ │ │ ├── cancel_@2X.png │ │ │ │ │ │ ├── check.png │ │ │ │ │ │ ├── check_@2X.png │ │ │ │ │ │ ├── focus.png │ │ │ │ │ │ ├── focus_@2X.png │ │ │ │ │ │ ├── rulers.png │ │ │ │ │ │ ├── rulers_@2X.png │ │ │ │ │ │ ├── start.png │ │ │ │ │ │ ├── start_@2X.png │ │ │ │ │ │ ├── trash.png │ │ │ │ │ │ └── trash_@2X.png │ │ │ │ │ ├── leaflet-measure.css │ │ │ │ │ └── leaflet-measure.min.js │ │ │ │ ├── leaflet-omnivore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── index.js │ │ │ │ │ ├── leaflet-omnivore.min.js │ │ │ │ │ └── package.json │ │ │ │ ├── leaflet-providers │ │ │ │ │ ├── leaflet-providers.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── providers.json │ │ │ │ │ └── rstudio_install.md │ │ │ │ ├── leaflet │ │ │ │ │ ├── images │ │ │ │ │ │ ├── layers-2x.png │ │ │ │ │ │ ├── layers.png │ │ │ │ │ │ ├── marker-icon-2x.png │ │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ │ └── marker-shadow.png │ │ │ │ │ ├── leaflet.css │ │ │ │ │ └── leaflet.js │ │ │ │ ├── leafletfix │ │ │ │ │ └── leafletfix.css │ │ │ │ └── rstudio_leaflet │ │ │ │ │ ├── images │ │ │ │ │ └── 1px.png │ │ │ │ │ └── rstudio_leaflet.css │ │ │ └── plugins │ │ │ │ ├── Leaflet-MiniMap │ │ │ │ ├── Control.MiniMap.css │ │ │ │ ├── Control.MiniMap.js │ │ │ │ ├── Control.MiniMap.min.css │ │ │ │ ├── Control.MiniMap.min.js │ │ │ │ ├── Minimap-binding.js │ │ │ │ └── images │ │ │ │ │ ├── toggle.png │ │ │ │ │ └── toggle.svg │ │ │ │ ├── Leaflet.EasyButton │ │ │ │ ├── EasyButton-binding.js │ │ │ │ ├── LICENSE │ │ │ │ ├── easy-button.css │ │ │ │ └── easy-button.js │ │ │ │ ├── Leaflet.Graticule │ │ │ │ ├── Graticule-binding.js │ │ │ │ ├── L.Graticule.js │ │ │ │ └── Leaflet.Graticule.js │ │ │ │ ├── Leaflet.SimpleGraticule │ │ │ │ ├── L.SimpleGraticule.css │ │ │ │ ├── L.SimpleGraticule.js │ │ │ │ └── SimpleGraticule-binding.js │ │ │ │ ├── Leaflet.Terminator │ │ │ │ ├── L.Terminator.js │ │ │ │ └── Terminator-binding.js │ │ │ │ ├── Leaflet.awesome-markers │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── font-awesome.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ ├── ionicons.eot │ │ │ │ │ ├── ionicons.svg │ │ │ │ │ ├── ionicons.ttf │ │ │ │ │ └── ionicons.woff │ │ │ │ ├── images │ │ │ │ │ ├── markers-matte.png │ │ │ │ │ ├── markers-matte@2x.png │ │ │ │ │ ├── markers-plain.png │ │ │ │ │ ├── markers-shadow.png │ │ │ │ │ ├── markers-shadow@2x.png │ │ │ │ │ ├── markers-soft.png │ │ │ │ │ └── markers-soft@2x.png │ │ │ │ ├── ionicons.min.css │ │ │ │ ├── leaflet.awesome-markers.css │ │ │ │ ├── leaflet.awesome-markers.js │ │ │ │ └── leaflet.awesome-markers.min.js │ │ │ │ ├── Leaflet.markercluster │ │ │ │ ├── MIT-LICENCE.txt │ │ │ │ ├── MarkerCluster.Default.css │ │ │ │ ├── MarkerCluster.css │ │ │ │ ├── leaflet.markercluster.freezable.js │ │ │ │ ├── leaflet.markercluster.js │ │ │ │ ├── leaflet.markercluster.layersupport.js │ │ │ │ └── package.json │ │ │ │ ├── Proj4Leaflet │ │ │ │ ├── proj4-compressed.js │ │ │ │ └── proj4leaflet.js │ │ │ │ ├── leaflet-locationfilter │ │ │ │ ├── img │ │ │ │ │ ├── filter-icon.png │ │ │ │ │ ├── move-handle.png │ │ │ │ │ └── resize-handle.png │ │ │ │ ├── locationfilter-bindings.js │ │ │ │ ├── locationfilter.css │ │ │ │ └── locationfilter.js │ │ │ │ └── leaflet-providers-plugin │ │ │ │ └── leaflet-providers-plugin.js │ │ ├── leaflet-binding-2.0.1 │ │ │ ├── leaflet.js │ │ │ ├── leaflet.yaml │ │ │ ├── lib │ │ │ │ ├── jquery │ │ │ │ │ └── jquery.min.js │ │ │ │ ├── leaflet-measure │ │ │ │ │ ├── images │ │ │ │ │ │ ├── cancel.png │ │ │ │ │ │ ├── cancel_@2X.png │ │ │ │ │ │ ├── check.png │ │ │ │ │ │ ├── check_@2X.png │ │ │ │ │ │ ├── focus.png │ │ │ │ │ │ ├── focus_@2X.png │ │ │ │ │ │ ├── rulers.png │ │ │ │ │ │ ├── rulers_@2X.png │ │ │ │ │ │ ├── start.png │ │ │ │ │ │ ├── start_@2X.png │ │ │ │ │ │ ├── trash.png │ │ │ │ │ │ └── trash_@2X.png │ │ │ │ │ ├── leaflet-measure.css │ │ │ │ │ └── leaflet-measure.min.js │ │ │ │ ├── leaflet-omnivore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── index.js │ │ │ │ │ ├── leaflet-omnivore.min.js │ │ │ │ │ └── package.json │ │ │ │ ├── leaflet-providers │ │ │ │ │ ├── leaflet-providers.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── providers.json │ │ │ │ │ └── rstudio_install.md │ │ │ │ ├── leaflet │ │ │ │ │ ├── images │ │ │ │ │ │ ├── layers-2x.png │ │ │ │ │ │ ├── layers.png │ │ │ │ │ │ ├── marker-icon-2x.png │ │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ │ └── marker-shadow.png │ │ │ │ │ ├── leaflet.css │ │ │ │ │ └── leaflet.js │ │ │ │ ├── leafletfix │ │ │ │ │ └── leafletfix.css │ │ │ │ └── rstudio_leaflet │ │ │ │ │ ├── images │ │ │ │ │ └── 1px.png │ │ │ │ │ └── rstudio_leaflet.css │ │ │ └── plugins │ │ │ │ ├── Leaflet-MiniMap │ │ │ │ ├── Control.MiniMap.css │ │ │ │ ├── Control.MiniMap.js │ │ │ │ ├── Control.MiniMap.min.css │ │ │ │ ├── Control.MiniMap.min.js │ │ │ │ ├── Minimap-binding.js │ │ │ │ └── images │ │ │ │ │ ├── toggle.png │ │ │ │ │ └── toggle.svg │ │ │ │ ├── Leaflet.EasyButton │ │ │ │ ├── EasyButton-binding.js │ │ │ │ ├── LICENSE │ │ │ │ ├── easy-button.css │ │ │ │ └── easy-button.js │ │ │ │ ├── Leaflet.Graticule │ │ │ │ ├── Graticule-binding.js │ │ │ │ ├── L.Graticule.js │ │ │ │ └── Leaflet.Graticule.js │ │ │ │ ├── Leaflet.SimpleGraticule │ │ │ │ ├── L.SimpleGraticule.css │ │ │ │ ├── L.SimpleGraticule.js │ │ │ │ └── SimpleGraticule-binding.js │ │ │ │ ├── Leaflet.Terminator │ │ │ │ ├── L.Terminator.js │ │ │ │ └── Terminator-binding.js │ │ │ │ ├── Leaflet.awesome-markers │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── font-awesome.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ ├── ionicons.eot │ │ │ │ │ ├── ionicons.svg │ │ │ │ │ ├── ionicons.ttf │ │ │ │ │ └── ionicons.woff │ │ │ │ ├── images │ │ │ │ │ ├── markers-matte.png │ │ │ │ │ ├── markers-matte@2x.png │ │ │ │ │ ├── markers-plain.png │ │ │ │ │ ├── markers-shadow.png │ │ │ │ │ ├── markers-shadow@2x.png │ │ │ │ │ ├── markers-soft.png │ │ │ │ │ └── markers-soft@2x.png │ │ │ │ ├── ionicons.min.css │ │ │ │ ├── leaflet.awesome-markers.css │ │ │ │ ├── leaflet.awesome-markers.js │ │ │ │ └── leaflet.awesome-markers.min.js │ │ │ │ ├── Leaflet.markercluster │ │ │ │ ├── MIT-LICENCE.txt │ │ │ │ ├── MarkerCluster.Default.css │ │ │ │ ├── MarkerCluster.css │ │ │ │ ├── leaflet.markercluster.freezable.js │ │ │ │ ├── leaflet.markercluster.js │ │ │ │ ├── leaflet.markercluster.layersupport.js │ │ │ │ └── package.json │ │ │ │ ├── Proj4Leaflet │ │ │ │ ├── proj4-compressed.js │ │ │ │ └── proj4leaflet.js │ │ │ │ ├── leaflet-locationfilter │ │ │ │ ├── img │ │ │ │ │ ├── filter-icon.png │ │ │ │ │ ├── move-handle.png │ │ │ │ │ └── resize-handle.png │ │ │ │ ├── locationfilter-bindings.js │ │ │ │ ├── locationfilter.css │ │ │ │ └── locationfilter.js │ │ │ │ └── leaflet-providers-plugin │ │ │ │ └── leaflet-providers-plugin.js │ │ ├── leaflet-binding-2.0.2 │ │ │ └── leaflet.js │ │ ├── leaflet-binding-2.0.3 │ │ │ └── leaflet.js │ │ ├── leaflet-binding-2.0.4.1 │ │ │ └── leaflet.js │ │ ├── leaflet-label-0.2.2 │ │ │ ├── images │ │ │ │ └── death.png │ │ │ ├── leaflet.label-src.js │ │ │ ├── leaflet.label.css │ │ │ └── leaflet.label.js │ │ ├── leafletfix-1.0.0 │ │ │ └── leafletfix.css │ │ ├── proj4-2.6.2 │ │ │ └── proj4.min.js │ │ └── rstudio_leaflet-1.3.1 │ │ │ ├── images │ │ │ └── 1px.png │ │ │ └── rstudio_leaflet.css │ └── using-cartograms_files │ │ ├── Proj4Leaflet-0.7.2 │ │ ├── proj4-compressed.js │ │ ├── proj4.js │ │ └── proj4leaflet.js │ │ ├── Proj4Leaflet-1.0.1 │ │ └── proj4leaflet.js │ │ ├── anchor-sections-1.0 │ │ ├── anchor-sections.css │ │ └── anchor-sections.js │ │ ├── elevate-section-attrs-2.0 │ │ └── elevate-section-attrs.js │ │ ├── header-attrs-2.1 │ │ └── header-attrs.js │ │ ├── header-attrs-2.5 │ │ └── header-attrs.js │ │ ├── header-attrs-2.7 │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.0 │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.2 │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.3 │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.1 │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.2 │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.3 │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.4 │ │ └── htmlwidgets.js │ │ ├── jquery-1.12.4 │ │ └── jquery.min.js │ │ ├── leaflet-0.7.7 │ │ ├── images │ │ │ ├── 1px.png │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet-src.js │ │ ├── leaflet.css │ │ └── leaflet.js │ │ ├── leaflet-1.3.1 │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet.css │ │ └── leaflet.js │ │ ├── leaflet-binding-1.1.0 │ │ └── leaflet.js │ │ ├── leaflet-binding-2.0.0 │ │ ├── leaflet.js │ │ ├── leaflet.yaml │ │ ├── lib │ │ │ ├── jquery │ │ │ │ └── jquery.min.js │ │ │ ├── leaflet-measure │ │ │ │ ├── images │ │ │ │ │ ├── cancel.png │ │ │ │ │ ├── cancel_@2X.png │ │ │ │ │ ├── check.png │ │ │ │ │ ├── check_@2X.png │ │ │ │ │ ├── focus.png │ │ │ │ │ ├── focus_@2X.png │ │ │ │ │ ├── rulers.png │ │ │ │ │ ├── rulers_@2X.png │ │ │ │ │ ├── start.png │ │ │ │ │ ├── start_@2X.png │ │ │ │ │ ├── trash.png │ │ │ │ │ └── trash_@2X.png │ │ │ │ ├── leaflet-measure.css │ │ │ │ └── leaflet-measure.min.js │ │ │ ├── leaflet-omnivore │ │ │ │ ├── LICENSE │ │ │ │ ├── index.js │ │ │ │ ├── leaflet-omnivore.min.js │ │ │ │ └── package.json │ │ │ ├── leaflet-providers │ │ │ │ ├── leaflet-providers.js │ │ │ │ ├── package.json │ │ │ │ ├── providers.json │ │ │ │ └── rstudio_install.md │ │ │ ├── leaflet │ │ │ │ ├── images │ │ │ │ │ ├── layers-2x.png │ │ │ │ │ ├── layers.png │ │ │ │ │ ├── marker-icon-2x.png │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ └── marker-shadow.png │ │ │ │ ├── leaflet.css │ │ │ │ └── leaflet.js │ │ │ ├── leafletfix │ │ │ │ └── leafletfix.css │ │ │ └── rstudio_leaflet │ │ │ │ ├── images │ │ │ │ └── 1px.png │ │ │ │ └── rstudio_leaflet.css │ │ └── plugins │ │ │ ├── Leaflet-MiniMap │ │ │ ├── Control.MiniMap.css │ │ │ ├── Control.MiniMap.js │ │ │ ├── Control.MiniMap.min.css │ │ │ ├── Control.MiniMap.min.js │ │ │ ├── Minimap-binding.js │ │ │ └── images │ │ │ │ ├── toggle.png │ │ │ │ └── toggle.svg │ │ │ ├── Leaflet.EasyButton │ │ │ ├── EasyButton-binding.js │ │ │ ├── LICENSE │ │ │ ├── easy-button.css │ │ │ └── easy-button.js │ │ │ ├── Leaflet.Graticule │ │ │ ├── Graticule-binding.js │ │ │ ├── L.Graticule.js │ │ │ └── Leaflet.Graticule.js │ │ │ ├── Leaflet.SimpleGraticule │ │ │ ├── L.SimpleGraticule.css │ │ │ ├── L.SimpleGraticule.js │ │ │ └── SimpleGraticule-binding.js │ │ │ ├── Leaflet.Terminator │ │ │ ├── L.Terminator.js │ │ │ └── Terminator-binding.js │ │ │ ├── Leaflet.awesome-markers │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.js │ │ │ ├── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ ├── ionicons.eot │ │ │ │ ├── ionicons.svg │ │ │ │ ├── ionicons.ttf │ │ │ │ └── ionicons.woff │ │ │ ├── images │ │ │ │ ├── markers-matte.png │ │ │ │ ├── markers-matte@2x.png │ │ │ │ ├── markers-plain.png │ │ │ │ ├── markers-shadow.png │ │ │ │ ├── markers-shadow@2x.png │ │ │ │ ├── markers-soft.png │ │ │ │ └── markers-soft@2x.png │ │ │ ├── ionicons.min.css │ │ │ ├── leaflet.awesome-markers.css │ │ │ ├── leaflet.awesome-markers.js │ │ │ └── leaflet.awesome-markers.min.js │ │ │ ├── Leaflet.markercluster │ │ │ ├── MIT-LICENCE.txt │ │ │ ├── MarkerCluster.Default.css │ │ │ ├── MarkerCluster.css │ │ │ ├── leaflet.markercluster.freezable.js │ │ │ ├── leaflet.markercluster.js │ │ │ ├── leaflet.markercluster.layersupport.js │ │ │ └── package.json │ │ │ ├── Proj4Leaflet │ │ │ ├── proj4-compressed.js │ │ │ └── proj4leaflet.js │ │ │ ├── leaflet-locationfilter │ │ │ ├── img │ │ │ │ ├── filter-icon.png │ │ │ │ ├── move-handle.png │ │ │ │ └── resize-handle.png │ │ │ ├── locationfilter-bindings.js │ │ │ ├── locationfilter.css │ │ │ └── locationfilter.js │ │ │ └── leaflet-providers-plugin │ │ │ └── leaflet-providers-plugin.js │ │ ├── leaflet-binding-2.0.1 │ │ ├── leaflet.js │ │ ├── leaflet.yaml │ │ ├── lib │ │ │ ├── jquery │ │ │ │ └── jquery.min.js │ │ │ ├── leaflet-measure │ │ │ │ ├── images │ │ │ │ │ ├── cancel.png │ │ │ │ │ ├── cancel_@2X.png │ │ │ │ │ ├── check.png │ │ │ │ │ ├── check_@2X.png │ │ │ │ │ ├── focus.png │ │ │ │ │ ├── focus_@2X.png │ │ │ │ │ ├── rulers.png │ │ │ │ │ ├── rulers_@2X.png │ │ │ │ │ ├── start.png │ │ │ │ │ ├── start_@2X.png │ │ │ │ │ ├── trash.png │ │ │ │ │ └── trash_@2X.png │ │ │ │ ├── leaflet-measure.css │ │ │ │ └── leaflet-measure.min.js │ │ │ ├── leaflet-omnivore │ │ │ │ ├── LICENSE │ │ │ │ ├── index.js │ │ │ │ ├── leaflet-omnivore.min.js │ │ │ │ └── package.json │ │ │ ├── leaflet-providers │ │ │ │ ├── leaflet-providers.js │ │ │ │ ├── package.json │ │ │ │ ├── providers.json │ │ │ │ └── rstudio_install.md │ │ │ ├── leaflet │ │ │ │ ├── images │ │ │ │ │ ├── layers-2x.png │ │ │ │ │ ├── layers.png │ │ │ │ │ ├── marker-icon-2x.png │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ └── marker-shadow.png │ │ │ │ ├── leaflet.css │ │ │ │ └── leaflet.js │ │ │ ├── leafletfix │ │ │ │ └── leafletfix.css │ │ │ └── rstudio_leaflet │ │ │ │ ├── images │ │ │ │ └── 1px.png │ │ │ │ └── rstudio_leaflet.css │ │ └── plugins │ │ │ ├── Leaflet-MiniMap │ │ │ ├── Control.MiniMap.css │ │ │ ├── Control.MiniMap.js │ │ │ ├── Control.MiniMap.min.css │ │ │ ├── Control.MiniMap.min.js │ │ │ ├── Minimap-binding.js │ │ │ └── images │ │ │ │ ├── toggle.png │ │ │ │ └── toggle.svg │ │ │ ├── Leaflet.EasyButton │ │ │ ├── EasyButton-binding.js │ │ │ ├── LICENSE │ │ │ ├── easy-button.css │ │ │ └── easy-button.js │ │ │ ├── Leaflet.Graticule │ │ │ ├── Graticule-binding.js │ │ │ ├── L.Graticule.js │ │ │ └── Leaflet.Graticule.js │ │ │ ├── Leaflet.SimpleGraticule │ │ │ ├── L.SimpleGraticule.css │ │ │ ├── L.SimpleGraticule.js │ │ │ └── SimpleGraticule-binding.js │ │ │ ├── Leaflet.Terminator │ │ │ ├── L.Terminator.js │ │ │ └── Terminator-binding.js │ │ │ ├── Leaflet.awesome-markers │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.js │ │ │ ├── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ ├── ionicons.eot │ │ │ │ ├── ionicons.svg │ │ │ │ ├── ionicons.ttf │ │ │ │ └── ionicons.woff │ │ │ ├── images │ │ │ │ ├── markers-matte.png │ │ │ │ ├── markers-matte@2x.png │ │ │ │ ├── markers-plain.png │ │ │ │ ├── markers-shadow.png │ │ │ │ ├── markers-shadow@2x.png │ │ │ │ ├── markers-soft.png │ │ │ │ └── markers-soft@2x.png │ │ │ ├── ionicons.min.css │ │ │ ├── leaflet.awesome-markers.css │ │ │ ├── leaflet.awesome-markers.js │ │ │ └── leaflet.awesome-markers.min.js │ │ │ ├── Leaflet.markercluster │ │ │ ├── MIT-LICENCE.txt │ │ │ ├── MarkerCluster.Default.css │ │ │ ├── MarkerCluster.css │ │ │ ├── leaflet.markercluster.freezable.js │ │ │ ├── leaflet.markercluster.js │ │ │ ├── leaflet.markercluster.layersupport.js │ │ │ └── package.json │ │ │ ├── Proj4Leaflet │ │ │ ├── proj4-compressed.js │ │ │ └── proj4leaflet.js │ │ │ ├── leaflet-locationfilter │ │ │ ├── img │ │ │ │ ├── filter-icon.png │ │ │ │ ├── move-handle.png │ │ │ │ └── resize-handle.png │ │ │ ├── locationfilter-bindings.js │ │ │ ├── locationfilter.css │ │ │ └── locationfilter.js │ │ │ └── leaflet-providers-plugin │ │ │ └── leaflet-providers-plugin.js │ │ ├── leaflet-binding-2.0.2 │ │ └── leaflet.js │ │ ├── leaflet-binding-2.0.3 │ │ └── leaflet.js │ │ ├── leaflet-binding-2.0.4.1 │ │ └── leaflet.js │ │ ├── leaflet-label-0.2.2 │ │ ├── images │ │ │ └── death.png │ │ ├── leaflet.label-src.js │ │ ├── leaflet.label.css │ │ └── leaflet.label.js │ │ ├── leafletfix-1.0.0 │ │ └── leafletfix.css │ │ ├── proj4-2.6.2 │ │ └── proj4.min.js │ │ └── rstudio_leaflet-1.3.1 │ │ ├── images │ │ └── 1px.png │ │ └── rstudio_leaflet.css ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── docsearch.json ├── index_files │ ├── Proj4Leaflet-0.7.2 │ │ ├── proj4-compressed.js │ │ ├── proj4.js │ │ └── proj4leaflet.js │ ├── Proj4Leaflet-1.0.1 │ │ ├── proj4-compressed.js │ │ └── proj4leaflet.js │ ├── htmlwidgets-1.0 │ │ └── htmlwidgets.js │ ├── htmlwidgets-1.2 │ │ └── htmlwidgets.js │ ├── htmlwidgets-1.3 │ │ └── htmlwidgets.js │ ├── jquery-1.12.4 │ │ └── jquery.min.js │ ├── leaflet-0.7.7 │ │ ├── images │ │ │ ├── 1px.png │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet-src.js │ │ ├── leaflet.css │ │ └── leaflet.js │ ├── leaflet-1.3.1 │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet.css │ │ └── leaflet.js │ ├── leaflet-binding-1.1.0 │ │ └── leaflet.js │ ├── leaflet-binding-2.0.0 │ │ ├── leaflet.js │ │ ├── leaflet.yaml │ │ ├── lib │ │ │ ├── jquery │ │ │ │ └── jquery.min.js │ │ │ ├── leaflet-measure │ │ │ │ ├── images │ │ │ │ │ ├── cancel.png │ │ │ │ │ ├── cancel_@2X.png │ │ │ │ │ ├── check.png │ │ │ │ │ ├── check_@2X.png │ │ │ │ │ ├── focus.png │ │ │ │ │ ├── focus_@2X.png │ │ │ │ │ ├── rulers.png │ │ │ │ │ ├── rulers_@2X.png │ │ │ │ │ ├── start.png │ │ │ │ │ ├── start_@2X.png │ │ │ │ │ ├── trash.png │ │ │ │ │ └── trash_@2X.png │ │ │ │ ├── leaflet-measure.css │ │ │ │ └── leaflet-measure.min.js │ │ │ ├── leaflet-omnivore │ │ │ │ ├── LICENSE │ │ │ │ ├── index.js │ │ │ │ ├── leaflet-omnivore.min.js │ │ │ │ └── package.json │ │ │ ├── leaflet-providers │ │ │ │ ├── leaflet-providers.js │ │ │ │ ├── package.json │ │ │ │ ├── providers.json │ │ │ │ └── rstudio_install.md │ │ │ ├── leaflet │ │ │ │ ├── images │ │ │ │ │ ├── layers-2x.png │ │ │ │ │ ├── layers.png │ │ │ │ │ ├── marker-icon-2x.png │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ └── marker-shadow.png │ │ │ │ ├── leaflet.css │ │ │ │ └── leaflet.js │ │ │ ├── leafletfix │ │ │ │ └── leafletfix.css │ │ │ └── rstudio_leaflet │ │ │ │ ├── images │ │ │ │ └── 1px.png │ │ │ │ └── rstudio_leaflet.css │ │ └── plugins │ │ │ ├── Leaflet-MiniMap │ │ │ ├── Control.MiniMap.css │ │ │ ├── Control.MiniMap.js │ │ │ ├── Control.MiniMap.min.css │ │ │ ├── Control.MiniMap.min.js │ │ │ ├── Minimap-binding.js │ │ │ └── images │ │ │ │ ├── toggle.png │ │ │ │ └── toggle.svg │ │ │ ├── Leaflet.EasyButton │ │ │ ├── EasyButton-binding.js │ │ │ ├── LICENSE │ │ │ ├── easy-button.css │ │ │ └── easy-button.js │ │ │ ├── Leaflet.Graticule │ │ │ ├── Graticule-binding.js │ │ │ ├── L.Graticule.js │ │ │ └── Leaflet.Graticule.js │ │ │ ├── Leaflet.SimpleGraticule │ │ │ ├── L.SimpleGraticule.css │ │ │ ├── L.SimpleGraticule.js │ │ │ └── SimpleGraticule-binding.js │ │ │ ├── Leaflet.Terminator │ │ │ ├── L.Terminator.js │ │ │ └── Terminator-binding.js │ │ │ ├── Leaflet.awesome-markers │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.js │ │ │ ├── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ ├── ionicons.eot │ │ │ │ ├── ionicons.svg │ │ │ │ ├── ionicons.ttf │ │ │ │ └── ionicons.woff │ │ │ ├── images │ │ │ │ ├── markers-matte.png │ │ │ │ ├── markers-matte@2x.png │ │ │ │ ├── markers-plain.png │ │ │ │ ├── markers-shadow.png │ │ │ │ ├── markers-shadow@2x.png │ │ │ │ ├── markers-soft.png │ │ │ │ └── markers-soft@2x.png │ │ │ ├── ionicons.min.css │ │ │ ├── leaflet.awesome-markers.css │ │ │ ├── leaflet.awesome-markers.js │ │ │ └── leaflet.awesome-markers.min.js │ │ │ ├── Leaflet.markercluster │ │ │ ├── MIT-LICENCE.txt │ │ │ ├── MarkerCluster.Default.css │ │ │ ├── MarkerCluster.css │ │ │ ├── leaflet.markercluster.freezable.js │ │ │ ├── leaflet.markercluster.js │ │ │ ├── leaflet.markercluster.layersupport.js │ │ │ └── package.json │ │ │ ├── Proj4Leaflet │ │ │ ├── proj4-compressed.js │ │ │ └── proj4leaflet.js │ │ │ ├── leaflet-locationfilter │ │ │ ├── img │ │ │ │ ├── filter-icon.png │ │ │ │ ├── move-handle.png │ │ │ │ └── resize-handle.png │ │ │ ├── locationfilter-bindings.js │ │ │ ├── locationfilter.css │ │ │ └── locationfilter.js │ │ │ └── leaflet-providers-plugin │ │ │ └── leaflet-providers-plugin.js │ ├── leaflet-binding-2.0.1 │ │ ├── leaflet.js │ │ ├── leaflet.yaml │ │ ├── lib │ │ │ ├── jquery │ │ │ │ └── jquery.min.js │ │ │ ├── leaflet-measure │ │ │ │ ├── images │ │ │ │ │ ├── cancel.png │ │ │ │ │ ├── cancel_@2X.png │ │ │ │ │ ├── check.png │ │ │ │ │ ├── check_@2X.png │ │ │ │ │ ├── focus.png │ │ │ │ │ ├── focus_@2X.png │ │ │ │ │ ├── rulers.png │ │ │ │ │ ├── rulers_@2X.png │ │ │ │ │ ├── start.png │ │ │ │ │ ├── start_@2X.png │ │ │ │ │ ├── trash.png │ │ │ │ │ └── trash_@2X.png │ │ │ │ ├── leaflet-measure.css │ │ │ │ └── leaflet-measure.min.js │ │ │ ├── leaflet-omnivore │ │ │ │ ├── LICENSE │ │ │ │ ├── index.js │ │ │ │ ├── leaflet-omnivore.min.js │ │ │ │ └── package.json │ │ │ ├── leaflet-providers │ │ │ │ ├── leaflet-providers.js │ │ │ │ ├── package.json │ │ │ │ ├── providers.json │ │ │ │ └── rstudio_install.md │ │ │ ├── leaflet │ │ │ │ ├── images │ │ │ │ │ ├── layers-2x.png │ │ │ │ │ ├── layers.png │ │ │ │ │ ├── marker-icon-2x.png │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ └── marker-shadow.png │ │ │ │ ├── leaflet.css │ │ │ │ └── leaflet.js │ │ │ ├── leafletfix │ │ │ │ └── leafletfix.css │ │ │ └── rstudio_leaflet │ │ │ │ ├── images │ │ │ │ └── 1px.png │ │ │ │ └── rstudio_leaflet.css │ │ └── plugins │ │ │ ├── Leaflet-MiniMap │ │ │ ├── Control.MiniMap.css │ │ │ ├── Control.MiniMap.js │ │ │ ├── Control.MiniMap.min.css │ │ │ ├── Control.MiniMap.min.js │ │ │ ├── Minimap-binding.js │ │ │ └── images │ │ │ │ ├── toggle.png │ │ │ │ └── toggle.svg │ │ │ ├── Leaflet.EasyButton │ │ │ ├── EasyButton-binding.js │ │ │ ├── LICENSE │ │ │ ├── easy-button.css │ │ │ └── easy-button.js │ │ │ ├── Leaflet.Graticule │ │ │ ├── Graticule-binding.js │ │ │ ├── L.Graticule.js │ │ │ └── Leaflet.Graticule.js │ │ │ ├── Leaflet.SimpleGraticule │ │ │ ├── L.SimpleGraticule.css │ │ │ ├── L.SimpleGraticule.js │ │ │ └── SimpleGraticule-binding.js │ │ │ ├── Leaflet.Terminator │ │ │ ├── L.Terminator.js │ │ │ └── Terminator-binding.js │ │ │ ├── Leaflet.awesome-markers │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.js │ │ │ ├── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ ├── ionicons.eot │ │ │ │ ├── ionicons.svg │ │ │ │ ├── ionicons.ttf │ │ │ │ └── ionicons.woff │ │ │ ├── images │ │ │ │ ├── markers-matte.png │ │ │ │ ├── markers-matte@2x.png │ │ │ │ ├── markers-plain.png │ │ │ │ ├── markers-shadow.png │ │ │ │ ├── markers-shadow@2x.png │ │ │ │ ├── markers-soft.png │ │ │ │ └── markers-soft@2x.png │ │ │ ├── ionicons.min.css │ │ │ ├── leaflet.awesome-markers.css │ │ │ ├── leaflet.awesome-markers.js │ │ │ └── leaflet.awesome-markers.min.js │ │ │ ├── Leaflet.markercluster │ │ │ ├── MIT-LICENCE.txt │ │ │ ├── MarkerCluster.Default.css │ │ │ ├── MarkerCluster.css │ │ │ ├── leaflet.markercluster.freezable.js │ │ │ ├── leaflet.markercluster.js │ │ │ ├── leaflet.markercluster.layersupport.js │ │ │ └── package.json │ │ │ ├── Proj4Leaflet │ │ │ ├── proj4-compressed.js │ │ │ └── proj4leaflet.js │ │ │ ├── leaflet-locationfilter │ │ │ ├── img │ │ │ │ ├── filter-icon.png │ │ │ │ ├── move-handle.png │ │ │ │ └── resize-handle.png │ │ │ ├── locationfilter-bindings.js │ │ │ ├── locationfilter.css │ │ │ └── locationfilter.js │ │ │ └── leaflet-providers-plugin │ │ │ └── leaflet-providers-plugin.js │ ├── leaflet-binding-2.0.2 │ │ └── leaflet.js │ ├── leaflet-label-0.2.2 │ │ ├── images │ │ │ └── death.png │ │ ├── leaflet.label-src.js │ │ ├── leaflet.label.css │ │ └── leaflet.label.js │ ├── leafletfix-1.0.0 │ │ └── leafletfix.css │ └── rstudio_leaflet-1.3.1 │ │ ├── images │ │ └── 1px.png │ │ └── rstudio_leaflet.css ├── jquery.sticky-kit.min.js ├── link.svg ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ └── Rplot001.png └── sitemap.xml ├── index.Rmd ├── inst └── CITATION ├── man ├── bes_2015.Rd ├── bes_2017.Rd ├── bes_2019.Rd ├── census_11.Rd ├── council_seats.Rd ├── current_mps.Rd ├── la_codes.Rd ├── leave_votes_west.Rd ├── maps.Rd ├── mps_on_date.Rd ├── ni_ge_2017.Rd ├── parlitools.Rd └── party_colour.Rd ├── parlitools.Rproj ├── tests ├── testthat.R └── testthat │ ├── test-council_seats.R │ ├── test_current_mps.R │ └── test_mps_on_date.R ├── tools └── hex_map.png └── vignettes ├── .gitignore ├── bes-2015.Rmd ├── bes-2017.Rmd ├── bes-2019.Rmd ├── census-11.Rmd └── introduction.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.R linguist-language=R 2 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Evan Odell 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/council_seats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/R/council_seats.R -------------------------------------------------------------------------------- /R/current_mps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/R/current_mps.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/R/data.R -------------------------------------------------------------------------------- /R/mps_on_date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/R/mps_on_date.R -------------------------------------------------------------------------------- /R/parlitools-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/R/parlitools-package.R -------------------------------------------------------------------------------- /R/parlitools_tidy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/R/parlitools_tidy.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/2015-UK-general-election-data-results-WEB/CONSTITUENCY.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/2015-UK-general-election-data-results-WEB/CONSTITUENCY.csv -------------------------------------------------------------------------------- /data-raw/2015-UK-general-election-data-results-WEB/RESULTS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/2015-UK-general-election-data-results-WEB/RESULTS.csv -------------------------------------------------------------------------------- /data-raw/2017-UKPGE-Electoral-Data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/2017-UKPGE-Electoral-Data.xls -------------------------------------------------------------------------------- /data-raw/BES-2015-General-Election-results-file-v2.21.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/BES-2015-General-Election-results-file-v2.21.xlsx -------------------------------------------------------------------------------- /data-raw/BES-2017-General-Election-results-file-v1.0.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/BES-2017-General-Election-results-file-v1.0.xlsx -------------------------------------------------------------------------------- /data-raw/Census-2011.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/Census-2011.xlsx -------------------------------------------------------------------------------- /data-raw/EC data/2001-UK-Parliament-spending-data-Excel.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/EC data/2001-UK-Parliament-spending-data-Excel.xls -------------------------------------------------------------------------------- /data-raw/EC data/Generalelection2005_A-Zconstituencyresults_18784-13893__E__N__S__W__.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/EC data/Generalelection2005_A-Zconstituencyresults_18784-13893__E__N__S__W__.xls -------------------------------------------------------------------------------- /data-raw/EC data/qry_Candidate_Returns_publication_detailed_FINAL-20110816.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/EC data/qry_Candidate_Returns_publication_detailed_FINAL-20110816.xls -------------------------------------------------------------------------------- /data-raw/Estimates-of-constituency-level-EU-referendum-result.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/Estimates-of-constituency-level-EU-referendum-result.xlsx -------------------------------------------------------------------------------- /data-raw/Final estimates of the Leave vote share in the EU referendum.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/Final estimates of the Leave vote share in the EU referendum.xlsx -------------------------------------------------------------------------------- /data-raw/Local_Authority_Districts_December_2016_Names_and_Codes_in_the_United_Kingdom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/Local_Authority_Districts_December_2016_Names_and_Codes_in_the_United_Kingdom.csv -------------------------------------------------------------------------------- /data-raw/UKPGE-turnout-postal-rejected-admin-amended-WEB.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/UKPGE-turnout-postal-rejected-admin-amended-WEB.xlsx -------------------------------------------------------------------------------- /data-raw/bes-data-prep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/bes-data-prep.R -------------------------------------------------------------------------------- /data-raw/brexit-hanretty-data-prep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/brexit-hanretty-data-prep.R -------------------------------------------------------------------------------- /data-raw/brexit-ni-constituencies.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/brexit-ni-constituencies.xlsx -------------------------------------------------------------------------------- /data-raw/candidates-parl.2019-12-12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/candidates-parl.2019-12-12.csv -------------------------------------------------------------------------------- /data-raw/constituency-results-prep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/constituency-results-prep.R -------------------------------------------------------------------------------- /data-raw/councils-colours-data-prep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/councils-colours-data-prep.R -------------------------------------------------------------------------------- /data-raw/hex-prep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/hex-prep.R -------------------------------------------------------------------------------- /data-raw/hocl-data/1918-2017election_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/hocl-data/1918-2017election_results.csv -------------------------------------------------------------------------------- /data-raw/hocl-data/1918-2017election_results_by_pcon.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/hocl-data/1918-2017election_results_by_pcon.xlsx -------------------------------------------------------------------------------- /data-raw/hocl-data/CBP-7417.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/hocl-data/CBP-7417.pdf -------------------------------------------------------------------------------- /data-raw/hocl-data/CBP-7529-.download.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/hocl-data/CBP-7529-.download.xlsx -------------------------------------------------------------------------------- /data-raw/hocl-data/CBP-8280-by-elections-results-summary.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/hocl-data/CBP-8280-by-elections-results-summary.xlsx -------------------------------------------------------------------------------- /data-raw/hocl-data/HoC-GE2017-constituency-results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/hocl-data/HoC-GE2017-constituency-results.csv -------------------------------------------------------------------------------- /data-raw/hocl-data/HoC-GE2017-results-by-candidate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/hocl-data/HoC-GE2017-results-by-candidate.csv -------------------------------------------------------------------------------- /data-raw/hocl-data/HoC-GE2019-results-by-candidate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/hocl-data/HoC-GE2019-results-by-candidate.csv -------------------------------------------------------------------------------- /data-raw/hocl-data/HoC-GE2019-results-by-constituency-csv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/hocl-data/HoC-GE2019-results-by-constituency-csv.csv -------------------------------------------------------------------------------- /data-raw/hocl-data/hoc-ge2015-results-full.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/hocl-data/hoc-ge2015-results-full.csv -------------------------------------------------------------------------------- /data-raw/hocl-data/~$1918-2017election_results_by_pcon.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/hocl-data/~$1918-2017election_results_by_pcon.xlsx -------------------------------------------------------------------------------- /data-raw/la_codes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/la_codes.csv -------------------------------------------------------------------------------- /data-raw/local_hex_map/local_hex_map.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data-raw/local_hex_map/local_hex_map.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/local_hex_map/local_hex_map.dbf -------------------------------------------------------------------------------- /data-raw/local_hex_map/local_hex_map.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/local_hex_map/local_hex_map.prj -------------------------------------------------------------------------------- /data-raw/local_hex_map/local_hex_map.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/local_hex_map/local_hex_map.qpj -------------------------------------------------------------------------------- /data-raw/local_hex_map/local_hex_map.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/local_hex_map/local_hex_map.shp -------------------------------------------------------------------------------- /data-raw/local_hex_map/local_hex_map.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/local_hex_map/local_hex_map.shx -------------------------------------------------------------------------------- /data-raw/long-results.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/long-results.R -------------------------------------------------------------------------------- /data-raw/map-prep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/map-prep.R -------------------------------------------------------------------------------- /data-raw/ni-data-prep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/ni-data-prep.R -------------------------------------------------------------------------------- /data-raw/party_colour.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/party_colour.xlsx -------------------------------------------------------------------------------- /data-raw/west_hex_map/west_hex_map.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/west_hex_map/west_hex_map.dbf -------------------------------------------------------------------------------- /data-raw/west_hex_map/west_hex_map.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/west_hex_map/west_hex_map.prj -------------------------------------------------------------------------------- /data-raw/west_hex_map/west_hex_map.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/west_hex_map/west_hex_map.qpj -------------------------------------------------------------------------------- /data-raw/west_hex_map/west_hex_map.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/west_hex_map/west_hex_map.shp -------------------------------------------------------------------------------- /data-raw/west_hex_map/west_hex_map.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data-raw/west_hex_map/west_hex_map.shx -------------------------------------------------------------------------------- /data/bes_2015.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data/bes_2015.rda -------------------------------------------------------------------------------- /data/bes_2017.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data/bes_2017.rda -------------------------------------------------------------------------------- /data/bes_2019.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data/bes_2019.rda -------------------------------------------------------------------------------- /data/census_11.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data/census_11.rda -------------------------------------------------------------------------------- /data/la_codes.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data/la_codes.rda -------------------------------------------------------------------------------- /data/leave_votes_west.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data/leave_votes_west.rda -------------------------------------------------------------------------------- /data/local_hex_map.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data/local_hex_map.rda -------------------------------------------------------------------------------- /data/ni_ge_2017.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data/ni_ge_2017.rda -------------------------------------------------------------------------------- /data/party_colour.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data/party_colour.rda -------------------------------------------------------------------------------- /data/west_hex_map.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/data/west_hex_map.rda -------------------------------------------------------------------------------- /docs/articles/bes-2015_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2015_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/bes-2015_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2015_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/bes-2015_files/elevate-section-attrs-2.0/elevate-section-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2015_files/elevate-section-attrs-2.0/elevate-section-attrs.js -------------------------------------------------------------------------------- /docs/articles/bes-2015_files/header-attrs-2.1/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2015_files/header-attrs-2.1/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/bes-2015_files/header-attrs-2.5/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2015_files/header-attrs-2.5/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/bes-2015_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2015_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/bes-2015_files/jquery-1.11.3/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2015_files/jquery-1.11.3/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/bes-2017_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2017_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/bes-2017_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2017_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/bes-2017_files/elevate-section-attrs-2.0/elevate-section-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2017_files/elevate-section-attrs-2.0/elevate-section-attrs.js -------------------------------------------------------------------------------- /docs/articles/bes-2017_files/header-attrs-2.1/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2017_files/header-attrs-2.1/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/bes-2017_files/header-attrs-2.5/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2017_files/header-attrs-2.5/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/bes-2017_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2017_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/bes-2017_files/jquery-1.11.3/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2017_files/jquery-1.11.3/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/bes-2019_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2019_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/bes-2019_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2019_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/bes-2019_files/elevate-section-attrs-2.0/elevate-section-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2019_files/elevate-section-attrs-2.0/elevate-section-attrs.js -------------------------------------------------------------------------------- /docs/articles/bes-2019_files/header-attrs-2.1/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2019_files/header-attrs-2.1/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/bes-2019_files/header-attrs-2.5/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2019_files/header-attrs-2.5/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/bes-2019_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2019_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/bes-2019_files/jquery-1.11.3/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/bes-2019_files/jquery-1.11.3/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/census-11_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/census-11_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/census-11_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/census-11_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/census-11_files/elevate-section-attrs-2.0/elevate-section-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/census-11_files/elevate-section-attrs-2.0/elevate-section-attrs.js -------------------------------------------------------------------------------- /docs/articles/census-11_files/header-attrs-2.1/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/census-11_files/header-attrs-2.1/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/census-11_files/header-attrs-2.5/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/census-11_files/header-attrs-2.5/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/census-11_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/census-11_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/census-11_files/jquery-1.11.3/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/census-11_files/jquery-1.11.3/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/Proj4Leaflet-0.7.2/proj4-compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/Proj4Leaflet-0.7.2/proj4-compressed.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/Proj4Leaflet-0.7.2/proj4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/Proj4Leaflet-0.7.2/proj4.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/Proj4Leaflet-0.7.2/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/Proj4Leaflet-0.7.2/proj4leaflet.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/Proj4Leaflet-1.0.1/proj4-compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/Proj4Leaflet-1.0.1/proj4-compressed.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/Proj4Leaflet-1.0.1/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/Proj4Leaflet-1.0.1/proj4leaflet.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/elevate-section-attrs-2.0/elevate-section-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/elevate-section-attrs-2.0/elevate-section-attrs.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/figure-html/unnamed-chunk-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/figure-html/unnamed-chunk-1-1.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/header-attrs-2.1/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/header-attrs-2.1/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/header-attrs-2.5/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/header-attrs-2.5/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/htmlwidgets-1.0/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/htmlwidgets-1.0/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/htmlwidgets-1.2/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/htmlwidgets-1.2/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/htmlwidgets-1.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/htmlwidgets-1.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/htmlwidgets-1.5.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/htmlwidgets-1.5.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/jquery-1.11.3/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/jquery-1.11.3/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/jquery-1.12.4/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/jquery-1.12.4/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-0.7.7/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-0.7.7/images/1px.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-0.7.7/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-0.7.7/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-0.7.7/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-0.7.7/images/layers.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-0.7.7/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-0.7.7/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-0.7.7/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-0.7.7/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-0.7.7/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-0.7.7/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-0.7.7/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-0.7.7/leaflet-src.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-0.7.7/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-0.7.7/leaflet.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-0.7.7/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-0.7.7/leaflet.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-1.3.1/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-1.3.1/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-1.3.1/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-1.3.1/images/layers.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-1.3.1/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-1.3.1/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-1.3.1/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-1.3.1/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-1.3.1/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-1.3.1/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-1.3.1/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-1.3.1/leaflet.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-1.3.1/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-1.3.1/leaflet.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-1.1.0/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-1.1.0/leaflet.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/leaflet.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/leaflet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/leaflet.yaml -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/cancel.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/cancel_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/cancel_@2X.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/check.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/check_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/check_@2X.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/focus.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/focus_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/focus_@2X.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/rulers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/rulers.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/rulers_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/rulers_@2X.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/start.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/start_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/start_@2X.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/trash.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/trash_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/trash_@2X.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/leaflet-measure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/leaflet-measure.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/leaflet-measure.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-measure/leaflet-measure.min.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/LICENSE -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/index.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/leaflet-omnivore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/leaflet-omnivore.min.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/package.json -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-providers/leaflet-providers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-providers/leaflet-providers.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-providers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-providers/package.json -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-providers/providers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-providers/providers.json -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-providers/rstudio_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet-providers/rstudio_install.md -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet/images/layers.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leafletfix/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/leafletfix/leafletfix.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/rstudio_leaflet/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/rstudio_leaflet/images/1px.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/lib/rstudio_leaflet/rstudio_leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/lib/rstudio_leaflet/rstudio_leaflet.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Control.MiniMap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Control.MiniMap.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Control.MiniMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Control.MiniMap.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Control.MiniMap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Control.MiniMap.min.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Minimap-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Minimap-binding.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/images/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/images/toggle.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/images/toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/images/toggle.svg -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/LICENSE -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/easy-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/easy-button.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/easy-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/easy-button.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.Graticule/Graticule-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.Graticule/Graticule-binding.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.Graticule/L.Graticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.Graticule/L.Graticule.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.Graticule/Leaflet.Graticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.Graticule/Leaflet.Graticule.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.Terminator/L.Terminator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.Terminator/L.Terminator.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.markercluster/MIT-LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.markercluster/MIT-LICENCE.txt -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.markercluster/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Leaflet.markercluster/package.json -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Proj4Leaflet/proj4-compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Proj4Leaflet/proj4-compressed.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Proj4Leaflet/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.0/plugins/Proj4Leaflet/proj4leaflet.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/leaflet.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/leaflet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/leaflet.yaml -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/cancel.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/cancel_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/cancel_@2X.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/check.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/check_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/check_@2X.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/focus.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/focus_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/focus_@2X.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/rulers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/rulers.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/rulers_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/rulers_@2X.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/start.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/start_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/start_@2X.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/trash.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/trash_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/trash_@2X.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/leaflet-measure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/leaflet-measure.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/leaflet-measure.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-measure/leaflet-measure.min.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/LICENSE -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/index.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/leaflet-omnivore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/leaflet-omnivore.min.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/package.json -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-providers/leaflet-providers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-providers/leaflet-providers.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-providers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-providers/package.json -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-providers/providers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-providers/providers.json -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-providers/rstudio_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet-providers/rstudio_install.md -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet/images/layers.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leafletfix/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/leafletfix/leafletfix.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/rstudio_leaflet/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/rstudio_leaflet/images/1px.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/lib/rstudio_leaflet/rstudio_leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/lib/rstudio_leaflet/rstudio_leaflet.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Control.MiniMap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Control.MiniMap.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Control.MiniMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Control.MiniMap.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Control.MiniMap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Control.MiniMap.min.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Minimap-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Minimap-binding.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/images/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/images/toggle.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/images/toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/images/toggle.svg -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/LICENSE -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/easy-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/easy-button.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/easy-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/easy-button.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.Graticule/Graticule-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.Graticule/Graticule-binding.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.Graticule/L.Graticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.Graticule/L.Graticule.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.Graticule/Leaflet.Graticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.Graticule/Leaflet.Graticule.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.Terminator/L.Terminator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.Terminator/L.Terminator.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.markercluster/MIT-LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.markercluster/MIT-LICENCE.txt -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.markercluster/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Leaflet.markercluster/package.json -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Proj4Leaflet/proj4-compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Proj4Leaflet/proj4-compressed.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Proj4Leaflet/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.1/plugins/Proj4Leaflet/proj4leaflet.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-binding-2.0.2/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-binding-2.0.2/leaflet.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-label-0.2.2/images/death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-label-0.2.2/images/death.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-label-0.2.2/leaflet.label-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-label-0.2.2/leaflet.label-src.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-label-0.2.2/leaflet.label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-label-0.2.2/leaflet.label.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/leaflet-label-0.2.2/leaflet.label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leaflet-label-0.2.2/leaflet.label.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/leafletfix-1.0.0/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/leafletfix-1.0.0/leafletfix.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/rstudio_leaflet-1.3.1/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/rstudio_leaflet-1.3.1/images/1px.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/rstudio_leaflet-1.3.1/rstudio_leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/introduction_files/rstudio_leaflet-1.3.1/rstudio_leaflet.css -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/Proj4Leaflet-0.7.2/proj4-compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/Proj4Leaflet-0.7.2/proj4-compressed.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/Proj4Leaflet-0.7.2/proj4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/Proj4Leaflet-0.7.2/proj4.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/Proj4Leaflet-0.7.2/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/Proj4Leaflet-0.7.2/proj4leaflet.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/Proj4Leaflet-1.0.1/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/Proj4Leaflet-1.0.1/proj4leaflet.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/elevate-section-attrs-2.0/elevate-section-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/elevate-section-attrs-2.0/elevate-section-attrs.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/header-attrs-2.1/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/header-attrs-2.1/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/header-attrs-2.5/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/header-attrs-2.5/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/htmlwidgets-1.0/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/htmlwidgets-1.0/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/htmlwidgets-1.2/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/htmlwidgets-1.2/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/htmlwidgets-1.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/htmlwidgets-1.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/htmlwidgets-1.5.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/htmlwidgets-1.5.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/htmlwidgets-1.5.2/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/htmlwidgets-1.5.2/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/htmlwidgets-1.5.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/htmlwidgets-1.5.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/htmlwidgets-1.5.4/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/htmlwidgets-1.5.4/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/jquery-1.12.4/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/jquery-1.12.4/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-0.7.7/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-0.7.7/images/1px.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-0.7.7/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-0.7.7/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-0.7.7/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-0.7.7/images/layers.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-0.7.7/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-0.7.7/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-0.7.7/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-0.7.7/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-0.7.7/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-0.7.7/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-0.7.7/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-0.7.7/leaflet-src.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-0.7.7/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-0.7.7/leaflet.css -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-0.7.7/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-0.7.7/leaflet.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-1.3.1/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-1.3.1/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-1.3.1/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-1.3.1/images/layers.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-1.3.1/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-1.3.1/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-1.3.1/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-1.3.1/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-1.3.1/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-1.3.1/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-1.3.1/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-1.3.1/leaflet.css -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-1.3.1/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-1.3.1/leaflet.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-1.1.0/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-1.1.0/leaflet.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/leaflet.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/leaflet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/leaflet.yaml -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/LICENSE -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/index.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/package.json -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leaflet/images/layers.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.css -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leafletfix/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.0/lib/leafletfix/leafletfix.css -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/leaflet.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/leaflet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/leaflet.yaml -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/LICENSE -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/index.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/package.json -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leaflet/images/layers.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.css -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leafletfix/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.1/lib/leafletfix/leafletfix.css -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.2/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.2/leaflet.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.3/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.3/leaflet.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.4.1/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-binding-2.0.4.1/leaflet.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-label-0.2.2/images/death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-label-0.2.2/images/death.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-label-0.2.2/leaflet.label-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-label-0.2.2/leaflet.label-src.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-label-0.2.2/leaflet.label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-label-0.2.2/leaflet.label.css -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leaflet-label-0.2.2/leaflet.label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leaflet-label-0.2.2/leaflet.label.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/leafletfix-1.0.0/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/leafletfix-1.0.0/leafletfix.css -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/proj4-2.6.2/proj4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/proj4-2.6.2/proj4.min.js -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/rstudio_leaflet-1.3.1/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/rstudio_leaflet-1.3.1/images/1px.png -------------------------------------------------------------------------------- /docs/articles/mapping-local-authorities_files/rstudio_leaflet-1.3.1/rstudio_leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/mapping-local-authorities_files/rstudio_leaflet-1.3.1/rstudio_leaflet.css -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/Proj4Leaflet-0.7.2/proj4-compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/Proj4Leaflet-0.7.2/proj4-compressed.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/Proj4Leaflet-0.7.2/proj4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/Proj4Leaflet-0.7.2/proj4.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/Proj4Leaflet-0.7.2/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/Proj4Leaflet-0.7.2/proj4leaflet.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/Proj4Leaflet-1.0.1/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/Proj4Leaflet-1.0.1/proj4leaflet.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/elevate-section-attrs-2.0/elevate-section-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/elevate-section-attrs-2.0/elevate-section-attrs.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/header-attrs-2.1/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/header-attrs-2.1/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/header-attrs-2.5/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/header-attrs-2.5/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/htmlwidgets-1.0/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/htmlwidgets-1.0/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/htmlwidgets-1.2/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/htmlwidgets-1.2/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/htmlwidgets-1.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/htmlwidgets-1.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/htmlwidgets-1.5.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/htmlwidgets-1.5.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/htmlwidgets-1.5.2/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/htmlwidgets-1.5.2/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/htmlwidgets-1.5.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/htmlwidgets-1.5.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/htmlwidgets-1.5.4/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/htmlwidgets-1.5.4/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/jquery-1.12.4/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/jquery-1.12.4/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-0.7.7/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-0.7.7/images/1px.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-0.7.7/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-0.7.7/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-0.7.7/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-0.7.7/images/layers.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-0.7.7/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-0.7.7/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-0.7.7/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-0.7.7/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-0.7.7/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-0.7.7/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-0.7.7/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-0.7.7/leaflet-src.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-0.7.7/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-0.7.7/leaflet.css -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-0.7.7/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-0.7.7/leaflet.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-1.3.1/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-1.3.1/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-1.3.1/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-1.3.1/images/layers.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-1.3.1/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-1.3.1/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-1.3.1/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-1.3.1/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-1.3.1/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-1.3.1/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-1.3.1/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-1.3.1/leaflet.css -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-1.3.1/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-1.3.1/leaflet.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-1.1.0/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-1.1.0/leaflet.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/leaflet.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/leaflet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/leaflet.yaml -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/cancel.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/cancel_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/cancel_@2X.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/check.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/check_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/check_@2X.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/focus.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/focus_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/focus_@2X.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/rulers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/rulers.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/rulers_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/rulers_@2X.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/start.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/start_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/start_@2X.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/trash.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/trash_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/trash_@2X.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/leaflet-measure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/leaflet-measure.css -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/leaflet-measure.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-measure/leaflet-measure.min.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/LICENSE -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/index.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/package.json -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-providers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-providers/package.json -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-providers/providers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet-providers/providers.json -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet/images/layers.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.css -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leafletfix/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/leafletfix/leafletfix.css -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/rstudio_leaflet/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/rstudio_leaflet/images/1px.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/rstudio_leaflet/rstudio_leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/lib/rstudio_leaflet/rstudio_leaflet.css -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/LICENSE -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.0/plugins/Proj4Leaflet/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.0/plugins/Proj4Leaflet/proj4leaflet.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/leaflet.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/leaflet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/leaflet.yaml -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/cancel.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/check.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/focus.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/rulers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/rulers.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/start.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/trash.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-measure/leaflet-measure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-measure/leaflet-measure.css -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/LICENSE -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/index.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/package.json -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-providers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-providers/package.json -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-providers/providers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet-providers/providers.json -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet/images/layers.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.css -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leafletfix/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/leafletfix/leafletfix.css -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/rstudio_leaflet/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/rstudio_leaflet/images/1px.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/rstudio_leaflet/rstudio_leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/lib/rstudio_leaflet/rstudio_leaflet.css -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/LICENSE -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.1/plugins/Proj4Leaflet/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.1/plugins/Proj4Leaflet/proj4leaflet.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.2/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.2/leaflet.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.3/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.3/leaflet.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-binding-2.0.4.1/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-binding-2.0.4.1/leaflet.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-label-0.2.2/images/death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-label-0.2.2/images/death.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-label-0.2.2/leaflet.label-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-label-0.2.2/leaflet.label-src.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-label-0.2.2/leaflet.label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-label-0.2.2/leaflet.label.css -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leaflet-label-0.2.2/leaflet.label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leaflet-label-0.2.2/leaflet.label.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/leafletfix-1.0.0/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/leafletfix-1.0.0/leafletfix.css -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/proj4-2.6.2/proj4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/proj4-2.6.2/proj4.min.js -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/rstudio_leaflet-1.3.1/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/rstudio_leaflet-1.3.1/images/1px.png -------------------------------------------------------------------------------- /docs/articles/using-cartograms_files/rstudio_leaflet-1.3.1/rstudio_leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/articles/using-cartograms_files/rstudio_leaflet-1.3.1/rstudio_leaflet.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/docsearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/docsearch.json -------------------------------------------------------------------------------- /docs/index_files/Proj4Leaflet-0.7.2/proj4-compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/Proj4Leaflet-0.7.2/proj4-compressed.js -------------------------------------------------------------------------------- /docs/index_files/Proj4Leaflet-0.7.2/proj4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/Proj4Leaflet-0.7.2/proj4.js -------------------------------------------------------------------------------- /docs/index_files/Proj4Leaflet-0.7.2/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/Proj4Leaflet-0.7.2/proj4leaflet.js -------------------------------------------------------------------------------- /docs/index_files/Proj4Leaflet-1.0.1/proj4-compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/Proj4Leaflet-1.0.1/proj4-compressed.js -------------------------------------------------------------------------------- /docs/index_files/Proj4Leaflet-1.0.1/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/Proj4Leaflet-1.0.1/proj4leaflet.js -------------------------------------------------------------------------------- /docs/index_files/htmlwidgets-1.0/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/htmlwidgets-1.0/htmlwidgets.js -------------------------------------------------------------------------------- /docs/index_files/htmlwidgets-1.2/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/htmlwidgets-1.2/htmlwidgets.js -------------------------------------------------------------------------------- /docs/index_files/htmlwidgets-1.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/htmlwidgets-1.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/index_files/jquery-1.12.4/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/jquery-1.12.4/jquery.min.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-0.7.7/images/1px.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-0.7.7/images/layers-2x.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-0.7.7/images/layers.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-0.7.7/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-0.7.7/images/marker-icon.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-0.7.7/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-0.7.7/leaflet-src.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-0.7.7/leaflet.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-0.7.7/leaflet.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-1.3.1/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-1.3.1/images/layers-2x.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-1.3.1/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-1.3.1/images/layers.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-1.3.1/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-1.3.1/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-1.3.1/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-1.3.1/images/marker-icon.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-1.3.1/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-1.3.1/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-1.3.1/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-1.3.1/leaflet.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-1.3.1/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-1.3.1/leaflet.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-1.1.0/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-1.1.0/leaflet.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/leaflet.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/leaflet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/leaflet.yaml -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/cancel.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/cancel_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/cancel_@2X.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/check.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/check_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/check_@2X.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/focus.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/focus_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/focus_@2X.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/rulers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/rulers.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/rulers_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/rulers_@2X.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/start.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/start_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/start_@2X.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/trash.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/trash_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/images/trash_@2X.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/leaflet-measure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/leaflet-measure.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/leaflet-measure.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-measure/leaflet-measure.min.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/LICENSE -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/index.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/leaflet-omnivore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/leaflet-omnivore.min.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-omnivore/package.json -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-providers/leaflet-providers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-providers/leaflet-providers.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-providers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-providers/package.json -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-providers/providers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-providers/providers.json -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet-providers/rstudio_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet-providers/rstudio_install.md -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet/images/layers.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leaflet/leaflet.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/leafletfix/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/leafletfix/leafletfix.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/rstudio_leaflet/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/rstudio_leaflet/images/1px.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/lib/rstudio_leaflet/rstudio_leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/lib/rstudio_leaflet/rstudio_leaflet.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Control.MiniMap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Control.MiniMap.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Control.MiniMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Control.MiniMap.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Control.MiniMap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Control.MiniMap.min.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Control.MiniMap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Control.MiniMap.min.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Minimap-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/Minimap-binding.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/images/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/images/toggle.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/images/toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet-MiniMap/images/toggle.svg -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/EasyButton-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/EasyButton-binding.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/LICENSE -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/easy-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/easy-button.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/easy-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.EasyButton/easy-button.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.Graticule/Graticule-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.Graticule/Graticule-binding.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.Graticule/L.Graticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.Graticule/L.Graticule.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.Graticule/Leaflet.Graticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.Graticule/Leaflet.Graticule.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.SimpleGraticule/L.SimpleGraticule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.SimpleGraticule/L.SimpleGraticule.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.SimpleGraticule/L.SimpleGraticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.SimpleGraticule/L.SimpleGraticule.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.SimpleGraticule/SimpleGraticule-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.SimpleGraticule/SimpleGraticule-binding.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.Terminator/L.Terminator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.Terminator/L.Terminator.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.Terminator/Terminator-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.Terminator/Terminator-binding.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/bootstrap-theme.min.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/bootstrap.min.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/bootstrap.min.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/font-awesome.min.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/fonts/ionicons.eot -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/fonts/ionicons.svg -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/fonts/ionicons.ttf -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/fonts/ionicons.woff -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/images/markers-matte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/images/markers-matte.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/images/markers-matte@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/images/markers-matte@2x.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/images/markers-plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/images/markers-plain.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/images/markers-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/images/markers-shadow.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/images/markers-soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/images/markers-soft.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/images/markers-soft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/images/markers-soft@2x.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/ionicons.min.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.markercluster/MIT-LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.markercluster/MIT-LICENCE.txt -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.markercluster/MarkerCluster.Default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.markercluster/MarkerCluster.Default.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.markercluster/MarkerCluster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.markercluster/MarkerCluster.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.markercluster/leaflet.markercluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.markercluster/leaflet.markercluster.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.markercluster/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Leaflet.markercluster/package.json -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Proj4Leaflet/proj4-compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Proj4Leaflet/proj4-compressed.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/Proj4Leaflet/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/Proj4Leaflet/proj4leaflet.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/leaflet-locationfilter/img/filter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/leaflet-locationfilter/img/filter-icon.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/leaflet-locationfilter/img/move-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/leaflet-locationfilter/img/move-handle.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/leaflet-locationfilter/img/resize-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/leaflet-locationfilter/img/resize-handle.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/leaflet-locationfilter/locationfilter-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/leaflet-locationfilter/locationfilter-bindings.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/leaflet-locationfilter/locationfilter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/leaflet-locationfilter/locationfilter.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.0/plugins/leaflet-locationfilter/locationfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.0/plugins/leaflet-locationfilter/locationfilter.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/leaflet.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/leaflet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/leaflet.yaml -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/cancel.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/cancel_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/cancel_@2X.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/check.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/check_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/check_@2X.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/focus.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/focus_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/focus_@2X.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/rulers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/rulers.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/rulers_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/rulers_@2X.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/start.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/start_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/start_@2X.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/trash.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/trash_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/images/trash_@2X.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/leaflet-measure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/leaflet-measure.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/leaflet-measure.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-measure/leaflet-measure.min.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/LICENSE -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/index.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/leaflet-omnivore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/leaflet-omnivore.min.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-omnivore/package.json -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-providers/leaflet-providers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-providers/leaflet-providers.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-providers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-providers/package.json -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-providers/providers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-providers/providers.json -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet-providers/rstudio_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet-providers/rstudio_install.md -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet/images/layers.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leaflet/leaflet.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/leafletfix/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/leafletfix/leafletfix.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/rstudio_leaflet/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/rstudio_leaflet/images/1px.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/lib/rstudio_leaflet/rstudio_leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/lib/rstudio_leaflet/rstudio_leaflet.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Control.MiniMap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Control.MiniMap.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Control.MiniMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Control.MiniMap.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Control.MiniMap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Control.MiniMap.min.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Control.MiniMap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Control.MiniMap.min.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Minimap-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/Minimap-binding.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/images/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/images/toggle.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/images/toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet-MiniMap/images/toggle.svg -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/EasyButton-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/EasyButton-binding.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/LICENSE -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/easy-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/easy-button.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/easy-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.EasyButton/easy-button.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.Graticule/Graticule-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.Graticule/Graticule-binding.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.Graticule/L.Graticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.Graticule/L.Graticule.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.Graticule/Leaflet.Graticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.Graticule/Leaflet.Graticule.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.SimpleGraticule/L.SimpleGraticule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.SimpleGraticule/L.SimpleGraticule.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.SimpleGraticule/L.SimpleGraticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.SimpleGraticule/L.SimpleGraticule.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.SimpleGraticule/SimpleGraticule-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.SimpleGraticule/SimpleGraticule-binding.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.Terminator/L.Terminator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.Terminator/L.Terminator.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.Terminator/Terminator-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.Terminator/Terminator-binding.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/bootstrap-theme.min.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/bootstrap.min.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/bootstrap.min.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/font-awesome.min.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/fonts/ionicons.eot -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/fonts/ionicons.svg -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/fonts/ionicons.ttf -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/fonts/ionicons.woff -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/images/markers-matte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/images/markers-matte.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/images/markers-matte@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/images/markers-matte@2x.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/images/markers-plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/images/markers-plain.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/images/markers-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/images/markers-shadow.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/images/markers-soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/images/markers-soft.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/images/markers-soft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/images/markers-soft@2x.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/ionicons.min.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.markercluster/MIT-LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.markercluster/MIT-LICENCE.txt -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.markercluster/MarkerCluster.Default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.markercluster/MarkerCluster.Default.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.markercluster/MarkerCluster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.markercluster/MarkerCluster.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.markercluster/leaflet.markercluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.markercluster/leaflet.markercluster.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.markercluster/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Leaflet.markercluster/package.json -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Proj4Leaflet/proj4-compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Proj4Leaflet/proj4-compressed.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/Proj4Leaflet/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/Proj4Leaflet/proj4leaflet.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/leaflet-locationfilter/img/filter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/leaflet-locationfilter/img/filter-icon.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/leaflet-locationfilter/img/move-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/leaflet-locationfilter/img/move-handle.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/leaflet-locationfilter/img/resize-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/leaflet-locationfilter/img/resize-handle.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/leaflet-locationfilter/locationfilter-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/leaflet-locationfilter/locationfilter-bindings.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/leaflet-locationfilter/locationfilter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/leaflet-locationfilter/locationfilter.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.1/plugins/leaflet-locationfilter/locationfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.1/plugins/leaflet-locationfilter/locationfilter.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-2.0.2/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-binding-2.0.2/leaflet.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-label-0.2.2/images/death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-label-0.2.2/images/death.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-label-0.2.2/leaflet.label-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-label-0.2.2/leaflet.label-src.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-label-0.2.2/leaflet.label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-label-0.2.2/leaflet.label.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-label-0.2.2/leaflet.label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leaflet-label-0.2.2/leaflet.label.js -------------------------------------------------------------------------------- /docs/index_files/leafletfix-1.0.0/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/leafletfix-1.0.0/leafletfix.css -------------------------------------------------------------------------------- /docs/index_files/rstudio_leaflet-1.3.1/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/rstudio_leaflet-1.3.1/images/1px.png -------------------------------------------------------------------------------- /docs/index_files/rstudio_leaflet-1.3.1/rstudio_leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/index_files/rstudio_leaflet-1.3.1/rstudio_leaflet.css -------------------------------------------------------------------------------- /docs/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/index.Rmd -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/bes_2015.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/man/bes_2015.Rd -------------------------------------------------------------------------------- /man/bes_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/man/bes_2017.Rd -------------------------------------------------------------------------------- /man/bes_2019.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/man/bes_2019.Rd -------------------------------------------------------------------------------- /man/census_11.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/man/census_11.Rd -------------------------------------------------------------------------------- /man/council_seats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/man/council_seats.Rd -------------------------------------------------------------------------------- /man/current_mps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/man/current_mps.Rd -------------------------------------------------------------------------------- /man/la_codes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/man/la_codes.Rd -------------------------------------------------------------------------------- /man/leave_votes_west.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/man/leave_votes_west.Rd -------------------------------------------------------------------------------- /man/maps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/man/maps.Rd -------------------------------------------------------------------------------- /man/mps_on_date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/man/mps_on_date.Rd -------------------------------------------------------------------------------- /man/ni_ge_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/man/ni_ge_2017.Rd -------------------------------------------------------------------------------- /man/parlitools.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/man/parlitools.Rd -------------------------------------------------------------------------------- /man/party_colour.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/man/party_colour.Rd -------------------------------------------------------------------------------- /parlitools.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/parlitools.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-council_seats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/tests/testthat/test-council_seats.R -------------------------------------------------------------------------------- /tests/testthat/test_current_mps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/tests/testthat/test_current_mps.R -------------------------------------------------------------------------------- /tests/testthat/test_mps_on_date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/tests/testthat/test_mps_on_date.R -------------------------------------------------------------------------------- /tools/hex_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/tools/hex_map.png -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/bes-2015.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/vignettes/bes-2015.Rmd -------------------------------------------------------------------------------- /vignettes/bes-2017.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/vignettes/bes-2017.Rmd -------------------------------------------------------------------------------- /vignettes/bes-2019.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/vignettes/bes-2019.Rmd -------------------------------------------------------------------------------- /vignettes/census-11.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/vignettes/census-11.Rmd -------------------------------------------------------------------------------- /vignettes/introduction.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanodell/parlitools/HEAD/vignettes/introduction.Rmd --------------------------------------------------------------------------------