Skip to content

Commit

Permalink
remind release 3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dklein-pik committed Oct 21, 2024
1 parent 6c45636 commit 3f44d5b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]
## [3.3.3] - 2024-10-21

### input data/calibration
- new input data rev6.84 [[#1757](https://github.com/remindmodel/remind/pull/1757)]
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ abstract: REMIND (REgional Model of Investment and Development) is a numerical
technology, policy and climate constraints. It also accounts for regional trade
characteristics on goods, energy fuels, and emissions allowances. All greenhouse
gas emissions due to human activities are represented in the model.
version: "3.3.2.dev864"
version: 3.3.3
date-released: 2024-10-21
repository-code: https://github.com/remindmodel/remind
keywords:
Expand Down
2 changes: 1 addition & 1 deletion scripts/start/defineInputData.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#' construct list of input data files
#' @param cfg list of configs

defineInputData <- function(cfg) {
defineInputData <- function(cfg, remindPath = ".") {

regicode <- madrat::regionscode(file.path(remindPath, cfg$regionmapping))
cfg$input <- c(paste0("rev",cfg$inputRevision,"_",regicode,"_", tolower(cfg$model_name),".tgz"),
Expand Down
2 changes: 1 addition & 1 deletion scripts/start/updateInputData.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ updateInputData <- function(cfg, remindPath = ".", gamsCompile = FALSE) {
input_old <- "no_data"
}

cfg <- defineInputData(cfg)
cfg <- defineInputData(cfg, remindPath)

# check if all input files are already there
missinginput <- if (isTRUE(gamsCompile)) NULL else missingInputData()
Expand Down

0 comments on commit 3f44d5b

Please sign in to comment.