gitextract_34buill7/ ├── .Rbuildignore ├── .binder/ │ ├── Dockerfile │ ├── LICENSE │ └── README.md ├── .devcontainer.json ├── .gitattributes ├── .github/ │ ├── .gitignore │ ├── ISSUE_TEMPLATE.md │ └── workflows/ │ ├── dev-sf.yaml │ ├── main-no-deploy.yml │ ├── main.yaml │ └── qgis-ext.yaml ├── .gitignore ├── .htaccess ├── .lintr ├── .nojekyll ├── .vscode/ │ └── settings.json ├── 01-introduction.Rmd ├── 02-spatial-data.Rmd ├── 03-attribute-operations.Rmd ├── 04-spatial-operations.Rmd ├── 05-geometry-operations.Rmd ├── 06-raster-vector.Rmd ├── 07-reproj.Rmd ├── 08-read-write-plot.Rmd ├── 09-mapping.Rmd ├── 10-gis.Rmd ├── 11-algorithms.Rmd ├── 12-spatial-cv.Rmd ├── 13-transport.Rmd ├── 14-location.Rmd ├── 15-eco.Rmd ├── 16-synthesis.Rmd ├── CITATION.bib ├── CITATION_ed1.bib ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE.md ├── README.Rmd ├── README.md ├── _01-ex.Rmd ├── _02-ex.Rmd ├── _03-ex.Rmd ├── _04-ex.Rmd ├── _05-ex.Rmd ├── _06-ex.Rmd ├── _07-ex.Rmd ├── _08-ex.Rmd ├── _09-ex.Rmd ├── _10-ex.Rmd ├── _11-ex.Rmd ├── _12-ex.Rmd ├── _13-ex.Rmd ├── _14-ex.Rmd ├── _15-ex.Rmd ├── _404.Rmd ├── _bookdown.yml ├── _output.yml ├── _redirects ├── apps/ │ ├── CycleHireApp/ │ │ ├── app.R │ │ └── manifest.json │ └── coffeeApp/ │ ├── app.R │ └── manifest.json ├── benchmarks.csv ├── code/ │ ├── 01-cranlogs.R │ ├── 01-sf-revdep.R │ ├── 02-contpop.R │ ├── 02-datum-fig.R │ ├── 02-raster-crs.R │ ├── 02-raster-intro-plot.R │ ├── 02-raster-intro-plot2.R │ ├── 02-sfdiagram.R │ ├── 02-sfheaders.R │ ├── 02-vector-crs.R │ ├── 02-vectorplots.R │ ├── 03-cont-raster-plot.R │ ├── 04-areal-example.R │ ├── 04-focal-example.R │ ├── 04-local-operations.R │ ├── 04-ndvi.R │ ├── 04-raster-subset.R │ ├── 04-spatial-join.R │ ├── 05-bilinear.R │ ├── 05-extend-example.R │ ├── 05-us-regions.R │ ├── 05-venn-clip.R │ ├── 06-contour-tmap.R │ ├── 06-pointextr.R │ ├── 06-raster-vectorization1.R │ ├── 06-raster-vectorization2.R │ ├── 06-vector-rasterization1.R │ ├── 06-vector-rasterization2.R │ ├── 09-break-styles.R │ ├── 09-layout1.R │ ├── 09-layout2.R │ ├── 09-map-pkgs.R │ ├── 09-tmpal.R │ ├── 09-tmshape.R │ ├── 09-tmstyles.R │ ├── 09-urban-animation.R │ ├── 09-usboundaries.R │ ├── 10-qgis-raster.R │ ├── 10-saga-segments.R │ ├── 10-saga-wetness.R │ ├── 10-sliver.R │ ├── 10-tsp.R │ ├── 11-centroid-alg.R │ ├── 11-centroid-setup.R │ ├── 11-hello.R │ ├── 11-polycent.R │ ├── 12-cv.R │ ├── 12-partitioning.R │ ├── 13-cycleways.R │ ├── 13-desire.R │ ├── 13-transport-data-gen.R │ ├── 13-zones.R │ ├── 14-location-figures.R │ ├── 15-rf_mlr3.R │ ├── add-impact.R │ ├── before_script.R │ ├── benchmark.R │ ├── chapters/ │ │ ├── 01-introduction.R │ │ ├── 02-spatial-data.R │ │ ├── 03-attribute-operations.R │ │ ├── 04-spatial-operations.R │ │ ├── 05-geometry-operations.R │ │ ├── 06-raster-vector.R │ │ ├── 07-reproj.R │ │ ├── 08-read-write-plot.R │ │ ├── 09-mapping.R │ │ ├── 10-gis.R │ │ ├── 11-algorithms.R │ │ ├── 12-spatial-cv.R │ │ ├── 13-transport.R │ │ ├── 14-location.R │ │ ├── 15-eco.R │ │ ├── 16-synthesis.R │ │ ├── README.R │ │ ├── _01-ex.R │ │ ├── _02-ex.R │ │ ├── _03-ex.R │ │ ├── _04-ex.R │ │ ├── _05-ex.R │ │ ├── _06-ex.R │ │ ├── _07-ex.R │ │ ├── _08-ex.R │ │ ├── _10-ex.R │ │ ├── _12-ex.R │ │ ├── _13-ex.R │ │ ├── _15-ex.R │ │ ├── _404.R │ │ ├── index.R │ │ └── references.R │ ├── de_9im.R │ ├── extra-pkgs.R │ ├── front_cover2.R │ ├── frontcover.R │ ├── generate-chapter-code.R │ ├── hex_sticker.R │ ├── list-contributors.R │ ├── old-to-future-remove/ │ │ ├── 06_raster_reprojection_tests.R │ │ ├── 08-uscolonize.R │ │ ├── 10-centroid.R │ │ ├── 10-earthquakes.R │ │ ├── 12-code-extension.R │ │ ├── 12-desire-front.R │ │ ├── globe.R │ │ ├── sfr-class-diagram-gen.R │ │ └── spData.R │ ├── sf-classes.R │ └── sfheaders.Rmd ├── extdata/ │ ├── .gitignore │ ├── 12-bmr_score.rds │ ├── 15-bmr_exercises.rds │ ├── 15-nmds.rds │ ├── 15-rp_exercises.rds │ ├── 15-tune.rds │ ├── coffee-data-messy.csv │ ├── coffee-data.csv │ ├── contributors.csv │ ├── generic_map_pkgs.csv │ ├── gis-vs-gds-table.csv │ ├── package_list.csv │ ├── postgis_data.Rdata │ ├── sfs-st-cast.csv │ ├── specific_map_pkgs.csv │ ├── svm_sp_sp_rbf_50it.rds │ ├── top_dls.csv │ └── word-count-time.csv ├── geocompr.Rproj ├── geocompr.bib ├── images/ │ └── r_logo.tif ├── index.Rmd ├── krantz.cls ├── makefile ├── misc/ │ ├── our-impact.csv │ └── our-style.md ├── packages.bib ├── references.Rmd └── style/ ├── after_body.tex ├── before_body.tex ├── ga.html ├── preamble.tex └── style.css