Skip to content

HPSCIL/mcPLUS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

A parallel Patch-generating Land Use Simulation model on hybrid architectures

Geospatial cellular automata (Geo-CA) models have encountered challenges in computing efficiency and scalability when conducting large-scale land use change simulation applications. Parallel computing has proven to be effective to address these challenges. We propose a parallel framework on hybrid parallel computing architectures applicable for raster-based Geo-CA models to enhance their computing efficiency and scalability while maintaining simulation accuracy. The framework can parallelize both land use transition rule mining and land use change simulation.
The framework was employed to parallelize PLUS, a modern and widely-used Geo-CA model, as an example. We provide the executable program of the parallel version of PLUS here, along with test data and usage instructions.

1. mcPLUS

Patch-generating Land Use Simulation model (PLUS) is an up-to-date and widely-used Geo-CA model. The parallelized model of PLUS is named mcPLUS.
mcPLUS consists of two modules: one for land use transition rule mining (named mcLEAS) and the other for land use change simulation (named mcCARS). In the transition rule mining module, the transition suitability maps are predicted using land use expansion map and the driving factors of land use changes. In the land use change simulation module, land use data and the predicted transition suitability maps are employed to simulate future land use maps. mcPLUS and PLUS maintain the same input data standards. For further details on data standards, please refer to the introduction of PLUS (PLUS). Additionally, mcPLUS introduces additional data requirements:

  • All data should be in GeoTIFF format (using .tif or .TIF as the file name extension).
  • All GeoTIFF files should have the same geospatial refreence, including Coordinate Reference System (CRS), geographic extent, number of cells, and pixel resolution.

2. The running environment

mcPLUS is compiled and run in the following environment:

3. File structure

This repository contains the program and sample data for mcPLUS, including three subfolders:

  • mcLEAS/: The program for land use transition rule mining module
    • mcLEAS: The executable program
    • Parameters.txt: Parameter file
    • runLEAS.sh: Shell file to run the program
  • mcCARS/: The program for land use change simulation module
    • mcCARS: The executable program
    • Parameters.txt: Parameter file
    • runCARS.sh: Shell file to run the program
  • Data/: Test data
    • DriveFactors/: The driving factors of land use changes
    • LULCs/: Land use maps and land expansion map
    • WaterWuhan.tif: water body data of Wuhan city, as "conversion constrains"

4. To run

  1. You need to use PLUS for data preprocessing, such as obtaining land expansion maps.
  2. Edit the parameter file, primarily adjusting the data paths to match those on your computer.
  3. If you are running it on a single computer, use the following command to run the shell script file:
  • $ ./runXXX.sh
  1. If you are running it on a computing cluster, you may edit the shell script file to match your hardware environment, such as the number of computing nodes and available devices on each node. Then, run the shell script file (using a Slurm platform as an example):
  • $ sbatch ./runXXX.sh

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages