FIMS Weekly - February 16–20, 2026

fims-weekly
releases
Published

February 16, 2026

FIMS hex icon and noaa logo with text saying FIMS Weekly

THREE BIG THINGS THIS WEEK

  1. We plan on releasing a version 0.9.0 this week once a few PR are completed.

  2. Our NOAA-FIMS website will have an official blog later today that will include blog posts and the FIMS Weekly. Additionally, some changes will be made to accommodate dark mode.

  3. Ron has done some great work on cleaning up the surplus production model and that work will continue this week.

FIMS ANNOUNCEMENTS

UPCOMING EVENTS

PHOTO OF THE WEEK

We are using copilot to help with some changes related to integers in C++ in [PR #1199] to remove many of the compiler warnings when you compile on a Windows machine. These warnings are helpful when developing and this effort will make it even more helpful because you will not have to sift through hundreds of non-helpful warnings to get to the ones that you want.

# old code
RealVector(Rcpp::NumericVector x, size_t size) {
  this->id_m = RealVector::id_g++;
  this->storage_m = std::make_shared<std::vector<double>>();
  this->resize(x.size());
  for (size_t i = 0; i < x.size(); i++) {
    storage_m->at(i) = x[i];
  }
}

# new code
RealVector(Rcpp::NumericVector x, size_t size) {
  this->id_m = RealVector::id_g++;
  this->storage_m = std::make_shared<std::vector<double>>();
  this->storage_m->assign(x.begin(), x.end());
}