Data for "Extreme weather magnifies the effects of forest structure on wildfire, driving increased severity in industrial forests"
收藏资源简介:
README This repository contains data required to repeat the analyses described in the manuscript "Extreme weather magnifies the effects of forest structure on wildfire, driving increased severity in industrial forests." The code used to run these analyses and process the data are published separately, both on Github and in a static Zenodo repository, because the size of the data exceeded Github's file size limits. Download instructions The data in this repository were split from an initial .zip file into four subfiles, each less than or equal to 2.1 Gb to facilitate upload. To access the data, the user will have to first download these partial files, and then merge them on their local machine. Here we provide brief instructions for doing so on a Unix-based computer. 1. Download partial files First, download the four subfiles from this repository: data_part_aa data_part_ab data_part_ac data_part_ad 3. Merge files on local machine Next, merge the four subfiles into a single .zip file, and finally unzip the data into the same directory as the code downloaded from Github or Zenodo. This way, the code will correctly reference the files in the dataset. Here is a bash script to complete this full workflow, downloading, merging, and unzipping the data archive. #!/bin/bash # Download and reassemble split archive from Zenodo for part in aa ab ac ad; do wget -c https://zenodo.org/record/15848846/files/data_part_$part done cat data_part_aa data_part_ab data_part_ac data_part_ad > data.zip # verify checksum # should match 944cc633e20fa460ab0131a93c953573 md5sum data.zip # Unzip into the main directory, so that the scripts will function as intended. unzip data.zip -d severity_and_silviculture/data Citation If you use any of the unpublished portions of this dataset in your own work, please cite the accompanying manuscript: Jacob. I Levine, Brandon M. Collins, Michelle Coppoletta, Scott L. Stephens. (2025). Extreme weather magnifies the effects of forest structure on wildfire, driving increased severity in industrial forests. [insert journal name after publication]. DOI: [insert DOI after publication]
## README 本仓库收录了复现论文《极端天气放大森林结构对野火的影响,加剧工业林火灾严重性》(Extreme weather magnifies the effects of forest structure on wildfire, driving increased severity in industrial forests)所需的全部分析数据。因数据集体量超过GitHub的文件大小限制,本仓库未附带分析代码与数据处理脚本,相关代码已分别发布于GitHub与静态存储平台Zenodo。 ### 下载指引 本仓库内的原始数据集已从初始压缩包拆分为4个分卷,每个分卷大小不超过2.1GB,以适配上传限制。用户需先下载全部分卷文件,再在本地设备中合并还原。下文将简要介绍基于Unix类系统的操作流程。 1. 下载分卷文件 请从本仓库下载以下4个分卷文件: data_part_aa data_part_ab data_part_ac data_part_ad 3. 本地合并文件 将上述4个分卷文件合并为完整的.zip压缩包,随后将合并后的压缩包解压至从GitHub或Zenodo获取的代码所在目录,确保代码可正确调用数据集中的文件。 以下为完整的自动化脚本,可一键完成数据下载、合并与解压全流程: bash #!/bin/bash # 从Zenodo下载并重组拆分的压缩包 for part in aa ab ac ad; do wget -c https://zenodo.org/record/15848846/files/data_part_$part done cat data_part_aa data_part_ab data_part_ac data_part_ad > data.zip # 校验文件校验和 # 预期校验和为:944cc633e20fa460ab0131a93c953573 md5sum data.zip # 将数据解压至指定目录,保障脚本正常运行 unzip data.zip -d severity_and_silviculture/data ### 引用规范 若您在研究中使用本数据集的未公开部分,请引用以下论文: 雅各布·I·莱文(Jacob I. Levine)、布兰登·M·柯林斯(Brandon M. Collins)、米歇尔·科波莱塔(Michelle Coppoletta)、斯科特·L·斯蒂芬斯(Scott L. Stephens). (2025). 极端天气放大森林结构对野火的影响,加剧工业林火灾严重性(Extreme weather magnifies the effects of forest structure on wildfire, driving increased severity in industrial forests). [待期刊正式出版后补充期刊名称]. DOI: [待出版后补充DOI编号]



