Skip to contents

LCZ4r Logo

The LCZ4r package provides a comprehensive suite of tools for analyzing and visualizing Local Climate Zones (LCZ) and Urban Heat Islands (UHI) in R. Designed for researchers, urban planners, and climate scientists, LCZ4r simplifies the process of downloading, processing, and interpreting LCZ data.


1. Installation

The LCZ4r package is available on GitHub and can be installed in two ways.
We recommend Option 1 for most users.


This is the fastest way to get the latest version of the package.

Prerequisite: If you already have remotes or devtools installed, you can skip this step.

if (!require("remotes")) { install.packages("remotes")}
# Install or update directly from GitHub
remotes::install_github("ByMaxAnjos/climasus4r", upgrade = "never")

Updates: LCZ4r is under active development. To update, simply run the command above again. R will automatically overwrite the previous version. After updating, it is recommended to restart your R session (Session > Restart R).

Option 2: Install from Local File (.zip)

This option is recommended for: unstable internet connections, restricted networks (e.g., institutional environments), and training sessions with multiple users.

Steps:

  1. Download the package 👉 https://github.com/ByMaxAnjos/LCZ4r/archive/refs/heads/main.zip

  2. Extract the file 👉 After downloading, extract the .zip file to a local folder (e.g., Downloads or Desktop)

  3. Install locally

# IMPORTANT: Adjust the path to where you extracted the folder
remotes::install_local(
  "C:/Path/to/your/folder/LCZ4r-main", 
  upgrade = "never"
)

Example: If you downloaded and extracted the file to your Downloads folder:

remotes::install_local(
   "/Users/maxanjos/Downloads/LCZ4r-main",
  upgrade = "never"
)

Loading the package

After installation, load the package whenever you start a new R session:

library(LCZ4r)

LCZ4r-QGIS Plugin: Multilingual Integration

The LCZ4r-QGIS plugin integrates the LCZ4r package with QGIS, enabling users to analyze Local Climate Zones and urban heat islands directly within the QGIS environment. The plugin supports multiple languages, making it accessible to a global audience.

LCZ4r-QGIS Plugin Screenshot


Have Feedback or Suggestions?

We value your input! If you have ideas for improvement or spot any issues, please let us know by opening an issue on GitHub.