Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Technical Guideline Series
Prepared by Joy Kumagai - Technical Support Unit (TSU) of Knowledge and Data Reviewed by Aidin Niamir - Head of the Technical Support Unit of Knowledge and Data For any inquires please contact aidin.niamir@senckenberg.de
Version: 2.1 Last Updated: 15 July 2022
The guide will show how to convert raster and vector data from a projection to the Robinson projection using R and is intended for IPBES experts creating maps. IPBES has adopted the Robinson projection for visualizing global scale maps as it balances distortions in area, direction, distance, and distortions near the poles. Please note that the projection used for analysis and whether one would like to display a Pacific centered or Greenwich centered map depends on the application. For example, If calculating area, an equal-area projection is needed.
Begin by loading the following packages.
Next, we define the Robinson projection using PROJ.4 notation. This information can be found at the this link.
To produce a Greenwich centered map in the Robinson projection with raster data, we will load precipitation data from world clim and plot the result, but please load and use the raster data that you will be working with. The crs() function will output the projection that your data is in.
Next, we will create a mask, and then project the data with this mask so repeated areas of the world map are removed.
Now we can plot our results to ensure it is correct.
The next step is to create graitcules and labels to add to all of the next plots.
The warnings of discarding the datum can be safely ignored in this case*.
Finally, we will plot the raster with the graticules we just created.
In this section, we will produce a world map of countries with vector data (points, lines, polygons). First, we will load, check the projection, and plot a world map of countries.
Now, we project the vector data into the Robinson projection and plot the map with graticules.
If there are polygons that cross the date line, it is possible that some erroneous polygons may appear. If this occurs, the solution is to run the function st_wrap_dateline() before projecting.
Finally, we will visualize both the raster and vector data together in one map.
Your feedback on this content is welcome. Let us know what other useful material would you like to see here by emailing aidin.niamir@senckenberg.de.
*The warnings of discarding the datum but preserving the +towgs1984 = values
stem from an update from PROJ4 to PRROJ6 but is not worriesome in this case. The +datum=
part is depreciated from GDAL >3 and sf, rgdal, and raster packages use GDAL to read files. There is a stackoverflow thread with more information here
Technical Guideline Series
Prepared by Joy Kumagai - Technical Support Unit (TSU) of Knowledge and Data Reviewed by Aidin Niamir - Head of the Technical Support Unit of Knowledge and Data For any inquires please contact
Version: 3.0 Last Updated: 15 August 2022
DOI:
This technical guideline will review the necessary and suggested cartographic elements for maps produced as part of IPBES assessments. The guide is split into four sections, cartographic elements, disclaimers, country borders, and general suggestions and have examples of maps and the code behind them throughout. This guideline is intended for anyone involved in the process of creating maps within IPBES assessments.
Begin by loading the following packages.
Generally the following cartographic elements should be included within each map:
Map with frame and legend
Graticules (North arrow and scale are not needed when graticules are included)
References for each of the layers used to make the map are required within each data deposit package associated with the map
Generally these elements do not need to be included with each map for assessments:
North arrow and scale bar - do not need to be included when graticules are present
Titles - should not be included within the map’s frame, but rather included in the caption.
Here is an example of creating a world map with these elements. The following code downloads land and ocean polygons from rnaturalearth package, creates latitude and longitude labels and graticules, and then plots a global map in robinson projection.
The messages describe the data and where it is downloaded locally.
The warnings of discarding the datum can be safetly ignored in this case*.
Now we set up the plotting frame, and plot the graticules, ocean, land, and latitude and longitude lines.
We can also use the ggplot package, with some additional functionality added with ggspatial, to map sf objects in R Studio such as in the following example:
IPBES has adopted the Robinson projection for all global scale maps.
The Robinson projection balances distortions in area, direction, distance, and distortions near the poles. We encourage the use of Pacific centered maps when focused on marine or Pacific themes. The pacificCentric
function within the envirem
package can reneter a raster on the Pacific.
For maps of countries or regions, national or appropriate regional projections are recommended. If there is no specific country projection available, the relevant Universal Transverse Mercator zone projection is suggested.
The standard disclaimers that should appear on all maps within IPBES assessments are the following:
Short form
The boundaries and names shown, and the designations used on the maps shown here do not imply official endorsement or acceptance by IPBES.
Long form
The designations employed and the presentation of material on the maps used in the assessment do not imply the expression of any opinion whatsoever on the part of IPBES concerning the legal status of any country, territory, city or area or of its authorities, or concerning the delimitation of its frontiers or boundaries. These maps have been prepared or used for the sole purpose of facilitating the assessment of the broad biogeographical areas represented therein and for purposes of representing scientific data spatially.
If a map displays data at the country-level, special consideration needs to be taken when drawing country borders. IPBES follows current UN guidance on country borders for original global-scale maps. To assist with following the UN guidance, the technical support unit on knowledge and data and the secretariat have created a package of resources, including shapefiles, to use when displaying country borders.
Before you begin, please double check that the data is displayed at the country level and not the territory level. If your data is at the territory level ensure this is reflected in the caption and text and it is not required to follow these guidelines.
In summary, there are five layers that need to be added to the map in this order: grey areas, solid borders, dashed borders, dotted borders, and major lakes. The major lakes are used to represent cross-border waterbodies serving as a border between countries.
First, load all shapefiles into the R session and project each into the Robinson projection. The function, st_wrap_dateline()
, is used to correct borders that cross the dateline.
Now, the next section of code can be split into three categories, plotting the base global map used earlier (section IA), plotting the borders in the correct order, and finally adding the graticule lables to the map.
A line width of 0.1 (lwd = 0.2
) is used throughout. Lty
controls the type of line, while border
controls the color of the border for polygon data and can be set to transparent by using border = NA
. Besides the grey areas, which should be slightly darker, the same grey shade is used for all borders (col = "grey40"
).
Finally, in your maps check that the colors within the map match UN guidance paying particular attention to Taiwan, Falkland Islands (Malvinas), and Arunachal Pradesh.
Streamlining the design of maps allows for better comparison and integration. Therefore, to facilitate the standardization of maps within IPBES, we recommend the following:
Include all continents in global maps, including Antarctica
Use color schemes and projections consistently throughout the chapter, if possible throughout the assessment.
Color schemes should be consistent with the ones used for figures.
No data is symbolized with the color grey (BBBBBB; RGB:187, 187, 187)
White or light sky blue (87CEFA; RGB: 135, 206, 250) is used for the ocean
Do not add excessive labels which interfere with interpretation of the map as a whole
Here we also include some popular resources for global and country scale spatial data:
Standardizing country names:
Color is a critical key to communicating information to viewers within a map. Colors need to be used consistently in maps and figures. Often incorrect or inconsistent color schemes are used that either make it difficult for people to understand the map or bias the interpretation. For more information, please refer to the next technical guideline,
For more information on how to display disputed or contentious boundary lines and territories, please contact the TSU on knowledge and data ()
To access the full guidance and associated files, please go to this website: and request access. Once you have access, download all files and read the full instructions.
Avoid country borders, if needed country borders are black, continuous, and 0.2 in size and follow the guidance available on Zenodo ()
Administrative borders:
ISO 3166-1 alpha 3 () codes should be used
The package can be used to convert between different country codes or names
Marine regions:
Coast lines, land, and ocean boundaries:
Your feeback on this content is welcome. Let us know what other useful material would you like to see here by emailing
*The warnings of discarding the datum but preserving the +towgs1984 = values
stem from an update from PROJ4 to PRROJ6 but is not worriesome in this case. The +datum=
part is depreciated from GDAL >3 and sf, rgdal, and raster packages use GDAL to read files. There is a stackoverflow thread with more information
Technical Guideline Series
Prepared by the technical support unit of knowledge and data
For any inquires please contact aidin.niamir@senckenberg.de
Version: 5.0 Last Updated: November 8th 2024
DOI: https://doi.org/10.5281/zenodo.5783347
This technical guideline is a resource for everyone to cite previous IPBES assessments starting with the IPBES Global Assessment. BibTeX and RIS files are available to download beneath each citation. Assessments approved at each future Plenary session will be added to the list. Suggested citations are created by the assessments.
Thematic Assessment Report on the Underlying Causes of Biodiversity Loss and the Determinants of Transformative Change and Options for Achieving the 2050 Vision for Biodiversity of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services DOI: https://doi.org/10.5281/zenodo.11382215
IPBES (2024). Thematic Assessment Report on the Underlying Causes of Biodiversity Loss and the Determinants of Transformative Change and Options for Achieving the 2050 Vision for Biodiversity of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. O’Brien, K., Garibaldi, L., and Agrawal, A. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.11382215
Download the BibTex file here. Download the RIS file here.
Summary for Policymakers of the Thematic Assessment Report on the Underlying Causes of Biodiversity Loss and the Determinants of Transformative Change and Options for Achieving the 2050 Vision for Biodiversity of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services DOI: https://doi.org/10.5281/zenodo.11382230
IPBES (2024). Summary for Policymakers of the Thematic Assessment Report on the Underlying Causes of Biodiversity Loss and the Determinants of Transformative Change and Options for Achieving the 2050 Vision for Biodiversity of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. O’Brien, K., Garibaldi, L., Agrawal, A., Bennett, E., Biggs, O., Calderón Contreras, R., Carr, E., Frantzeskaki, N., Gosnell, H., Gurung, J., Lambertucci, S., Leventon, J., Liao, C., Reyes García, V., Shannon, L., Villasante, S., Wickson, F., Zinngrebe, Y., and Perianin, L. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.11382230
Download the BibTex file here. Download the RIS file here.
Chapter 1: Transformative change and a sustainable world DOI: https://doi.org/10.5281/zenodo.11382238
Gurung, J., Leventon, J., Wickson, F., Dabezies, J., Olemako, T., Penca, J., Rajvanshi, A., Remans, R., Turnhout, E., Yoshida, Y., Kahrić, A., Naggea, J., Bridgewater, P., Reyers, B., and Renaud, A. (2024). Chapter 1: Transformative change and a sustainable world. In: Thematic Assessment Report on the Underlying Causes of Biodiversity Loss and the Determinants of Transformative Change and Options for Achieving the 2050 Vision for Biodiversity of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. O’Brien, K., Garibaldi, L., and Agrawal, A. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.11382238
Download the BibTex file here. Download the RIS file here.
Visions of a sustainable world – for nature and people DOI: https://doi.org/10.5281/zenodo.11382240
Villasante, S., Shannon, L., Liao, C., Betemariam, E., Cunningham, S., Ellis, E., Hausner, V., Huang, Q., Mannetti, L., Otero, I., Piñeiro, G., Prasad Gautam, A., Waddock, S., Wheeler, H., Fouqueray, T., Karasov, O., Tasse Taboue, G., Mazzeo, N., Mishra, A., and Guibal, C. (2024). Chapter 2: Visions of a sustainable world – for nature and people. In: Thematic Assessment Report on the Underlying Causes of Biodiversity Loss and the Determinants of Transformative Change and Options for Achieving the 2050 Vision for Biodiversity of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. O’Brien, K., Garibaldi, L., and Agrawal, A. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.11382240
Download the BibTex file here. Download the RIS file here.
How transformative change occurs DOI: https://doi.org/10.5281/zenodo.11382244
Bennett, E., Biggs, O., Calderón Contreras, R., Golden Kroner, R., Vianna Mansur, A., Woroniecki, S., Acar, S., Aksoy, Z., Alpizar, F., Lam, D., Horcea-Milcu, A.-I., Linnér, B.-O., Mehta, L., Campos, C., Nishi, M., Rahiri, N., Richardson, M., Sabinot, C., Simão Seixas, C., Stokland, H., Balvanera, P., Chan, K., Guibal, C., and Garibaldi, L. (2024). Chapter 3: How transformative change occurs. In: Thematic Assessment Report on the Underlying Causes of Biodiversity Loss and the Determinants of Transformative Change and Options for Achieving the 2050 Vision for Biodiversity of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. O’Brien, K., Garibaldi, L., and Agrawal, A. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.11382244
Download the BibTex file here. Download the RIS file here.
Overcoming the challenges of achieving transformative change towards a sustainable world DOI: https://doi.org/10.5281/zenodo.11382246
Frantzeskaki, N., Lambertucci, S., Carr, E., Dempsey, J., Karamidehkordi, E., Sengupta, A., Rojas Marchini, F., Vogel, C., Andriamahefazafy, M., Boonstra, W., Espinoza-Cisneros, E., Garcia, K., Morita, K., Nelson, V., Ojeda, D., Plieninger, T., Stirling, A., Tokunaga, K., Chen, R., Metzger, J.-P., Smith, P., and Guibal, C. ( 2024). Chapter 4: Overcoming the challenges of achieving transformative change towards a sustainable world. In: Thematic Assessment Report on the Underlying Causes of Biodiversity Loss and the Determinants of Transformative Change and Options for Achieving the 2050 Vision for Biodiversity of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. O’Brien, K., Garibaldi, L., and Agrawal, A. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.11382246
Download the BibTex file here. Download the RIS file here.
Realizing a sustainable world for nature and people: transformative strategies, actions and roles for all DOI: https://doi.org/10.5281/zenodo.11382248
Gosnell, H., Reyes-García, V., Zinngrebe, Y., Almeida Magris, R., Benessaiah, K., Bonilla-Moheno, M., Chandipo, R., Claudet, J., Gemmill-Herren, B., Goldstein, B., Huntjens, P., Ifejika Speranza, C., Nakao, F., Pandit, R., Pereira, L., Raab, K., Soares, T., Tittonell, P., Guo, X., Miwa, K., Joly, C., Zaccagnini, M., Guibal, C., and Garibaldi, L. (2024). Chapter 5: Realizing a sustainable world for nature and people: transformative strategies, actions and roles for all. In: Thematic Assessment Report on the Underlying Causes of Biodiversity Loss and the Determinants of Transformative Change and Options for Achieving the 2050 Vision for Biodiversity of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. O’Brien, K., Garibaldi, L., and Agrawal, A. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.11382248
Download the BibTex file here. Download the RIS file here.
Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services DOI: https://doi.org/10.5281/zenodo.13850054
IPBES (2024). Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Harrison, P. A., McElwee, P. D., and van Huysen, T. L. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.13850054
Download the BibTex file here. Download the RIS file here.
Summary for Policymakers of the Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services DOI: https://doi.org/10.5281/zenodo.13850289
IPBES (2024). Summary for Policymakers of the Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. McElwee, P. D., Harrison, P. A., van Huysen, T. L., Alonso Roldán, V., Barrios, E., Dasgupta, P., DeClerck, F., Harmáčková, Z. V., Hayman, D. T. S., Herrero, M., Kumar, R., Ley, D., Mangalagiu, D., McFarlane, R. A., Paukert, C., Pengue, W. A., Prist, P. R., Ricketts, T. H., Rounsevell, M. D. A., Saito, O., Selomane, O., Seppelt, R., Singh, P. K., Sitas, N., Smith, P., Vause, J., Molua, E. L., Zambrana-Torrelio, C., and Obura, D. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.13850289
Download the BibTex file here. Download the RIS file here.
Chapter 1: Introducing the nexus DOI: https://doi.org/10.5281/zenodo.13850293
Harrison, P. A., McElwee, P., Phang, S. C., Zambrana-Torrelio, C., Enrico, L., Giraudoux, P., Jarvis, R. M., Karim, P. G., Rivera Ferre, M. G., Luque, S., Prescott, G. W., Sietz, D., Turetta, A. P. D., and Obura, D. (2024). Chapter 1: Introducing the nexus. In: Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Harrison, P. A., McElwee, P. D., and van Huysen, T. L. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.13850293
Download the BibTex file here. Download the RIS file here.
Chapter 2: Status and past trends of interactions in the nexus DOI: https://doi.org/10.5281/zenodo.13850301
Prist, P. R., Seppelt, R., Hayman, D. T. S., Molua, E. L., Arneth, A., Biber-Freudenberger, L., Bukvareva, E., Chaudhary, S., Dubey, P. K., Földvári, G., Godoy-Faúndez, A., Fischer, J., Howe, C., Hussain, A., Lorilla, R. S., Maire, E., Materu, S. F., Miyake, Y., Türkmen, A., and Vanham, D. (2024). Chapter 2: Status and past trends of interactions in the nexus. In: Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Harrison, P. A., McElwee, P. D., and van Huysen, T. L. (eds.). IPBES secretariat, Bonn, German DOI: https://doi.org/10.5281/zenodo.13850301
Download the BibTex file here. Download the RIS file here.
Chapter 3: Future interactions across the nexus DOI: https://doi.org/10.5281/zenodo.13850303
Harmáčková, Z. V., Rounsevell, M. D. A., Selomane, O., Awuku-Sowah, E. M., Budiharta, S., Coll, M., Hales, S., Jung, M., Kumar, P., Leclère, D., Metaxas, A., Meirelles Oliveira , B., Nyelele, C., Owuor, M. A., Popp, A., Rashleigh, B., Thomas, S. M., Tsuchiya, K., Villamor, G., and Yue, T. X. (2024). Chapter 3: Future interactions across the nexus. In: Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Harrison, P. A., McElwee, P. D., and van Huysen, T. L. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.13850303
Download the BibTex file here. Download the RIS file here.
Chapter 4: Policy and sociopolitical options across the nexus that could facilitate and accelerate the transition to a range of sustainable futures DOI: https://doi.org/10.5281/zenodo.13850305
Mangalagiu D., Saito, O., Sitas, N., Dias, A. C. E., Felipe-Lucia, M. R., Filyushkina, A., Ghosh, S., Gonçalves, L. R., Hiwasaki, L., Kok, M. T. J., Lynch, A. J., Machado, M. R., Ometto, J. P., Pires, A. P. F., Rhodes, J. R., Vallet, A., and Xie, L. (2024). Chapter 4: Policy and sociopolitical options across the nexus that could facilitate and accelerate the transition to a range of sustainable futures. In: Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Harrison, P. A., McElwee, P. D., and van Huysen, T. L. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.13850305
Download the BibTex file here. Download the RIS file here.
Chapter 5: Options for delivering sustainable approaches DOI: https://doi.org/10.5281/zenodo.13850309
Ricketts, T. H., Herrero, M., Smith, P., Alonso Roldán, V., Barrios, E., Dasgupta, P., DeClerck, F., Kumar, R., McFarlane, R. A., Paukert, C., Singh, P. K., Lavorel, S., Aboubakrine, M. W. M., Aguiar S., Akamani, K., Benedek, Z., Campbell, D., Castro-Díaz, R., Chaplin-Kramer, R., Cherubini, F., das Neves, C. G., De La Cruz, P., Díaz-José, J., Dunnett, S., Santos, M. J., Gupta, H., Gyawali, D., Handa, C., Hill, S., Hori, M., Ito, A., Joshi, G. R., Keune, H., Khan, S., Koltz, A. M., Kouame, A. A., Kuiken, T., Lalika, M., Lee, K.-C., Llope, M., Mácová, K., Melo, F., Milano, F. A., Minaverry, C. M., Morand, S., Mustafa, M. A., Oinonen, S., Rafa, N., Rai, K. K., Reuben, R. C., Rosado-May, F. J., Samoilys M., Sandin, L., Simatele, M. D., Sivadas, D., Spierenburg, M., Tirado, M. C., Twongyirwe, R., Vale, M. M., Williams, D. R., Xu, X., and van Huysen, T. L. (2024). Chapter 5: Options for delivering sustainable approaches. In: Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Harrison, P. A., McElwee, P. D., and van Huysen, T. L. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.13850309
Download the BibTex file here. Download the RIS file here.
Chapter 5.0
Chapter 5.0: Options for delivering sustainable approaches - Introduction DOI: https://doi.org/10.5281/zenodo.13850315
Ricketts, T. H., Herrero, M., Smith, P., Alonso Roldán, V., Barrios, E., Dasgupta, P., DeClerck, F., Kumar, R., McFarlane, R. A., Paukert, C., Singh, P. K., and van Huysen, T. L. (2024). Chapter 5.0: Options for delivering sustainable approaches – Introduction. In: Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Harrison, P. A., McElwee, P. D., and van Huysen, T. L. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.13850315
Download the BibTex file here. Download the RIS file here.
Chapter 5.1: Options for delivering sustainable approaches to biodiversity conservation, restoration and sustainable use DOI: https://doi.org/10.5281/zenodo.13850321
Alonso Roldán, V., Lavorel, S., Aguiar S., Akamani K., Dunnett, S., Handa, C., Hill, S., Lee, K.-C., Mácová, K., Melo, F., Rai, K. K., Samoilys M., and Sivadas, D. (2024). Chapter 5.1: Options for delivering sustainable approaches to biodiversity conservation, restoration and sustainable use. In: Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Harrison, P. A., McElwee, P. D., and van Huysen, T. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.13850321
Download the BibTex file here. Download the RIS file here.
Chapter 5.2: Options for delivering sustainable approaches to water DOI: https://doi.org/10.5281/zenodo.13850325
Kumar, R., Pauker, C., Santos, M. J., Gyawali, D., Kouame, A. A., Lalika, M., Minaverry, C. M., Oinonen, S., Rafa, N., Sandin, L., and Simatele, M. D. (2024). Chapter 5.2: Options for delivering sustainable approaches to water. In: Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Harrison, P. A., McElwee, P. D., and van Huysen, T. L. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.13850325
Download the BibTex file here. Download the RIS file here.
Chapter 5.3: Options for delivering sustainable food systems DOI: https://doi.org/10.5281/zenodo.13850331
Barrios, E., DeClerck, F., Benedek, Z., Campbell, D., Castro-Díaz, R., Chaplin-Kramer, R., Joshi, G. R., Milano, F. A., Mustafa, M. A., Rosado-May, F. J., Spierenburg, M., Twongyirwe, R., and Williams, D. R. (2024). Chapter 5.3: Options for delivering sustainable food systems. In: Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Harrison, P. A., McElwee, P. D., and van Huysen, T. L. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.13850331
Download the BibTex file here. Download the RIS file here.
Chapter 5.4: Options for delivering sustainable approaches to health DOI: https://doi.org/10.5281/zenodo.13850335
McFarlane, R. A., Dasgupta, P., Aboubakrine, M. W. M., das Neves, C. G., De La Cruz, P., Keune, H., Koltz, A. M., Kuiken, T., Morand, S., and Reuben, R. C. (2024). Chapter 5.4: Options for delivering sustainable approaches to health. In: Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Harrison, P. A., McElwee, P. D., and van Huysen, T. L. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.13850335
Download the BibTex file here. Download the RIS file here.
Chapter 5.5: Options for delivering biodiversity-related approaches to climate change, adaptation and mitigation, including relevant aspects of the energy system DOI: https://doi.org/10.5281/zenodo.13850339
Singh, P. K., Smith, P., Cherubini, F., Díaz-José, J., Duchková, H., Gupta, H., Hori, M., Ito, A., Khan, S., Llope, M., Tirado, M. C., Vale, M. M., and Xu, X. (2024). Chapter 5: Options for delivering sustainable biodiversity-related approaches to climate change, adaptation and mitigation, including relevant aspects of the energy system. In: Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Harrison, P. A., McElwee, P. D., and van Huysen, T. L. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.13850339
Download the BibTex file here. Download the RIS file here.
Chapter 5.6: Options for delivering sustainable approaches - Synthesis DOI: https://doi.org/10.5281/zenodo.13850345
Ricketts, T. H., Herrero, M., Smith, P., van Huysen, T. L., Alonso Roldán, V., Barrios, E., Dasgupta, P., DeClerck, F., Kumar, R., McFarlane, R. A., Paukert, C., and Singh, P. K. (2024). Chapter 5.6: Options for delivering sustainable approaches – Synthesis. In: Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Harrison, P. A., McElwee, P. D., and van Huysen, T. L. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.13850345
Download the BibTex file here. Download the RIS file here.
Chapter 6: Options for delivering sustainable approaches to public and private finance for biodiversity-related elements of the nexus DOI: https://doi.org/10.5281/zenodo.13850349
Vause, J., Ley, D., Pengue, W. A., Cavanagh, C. J., Eriksen, S. H., Kharrazi, A., Pacheco, A., Ahmed, I., Cisneros-Montemayor, A., De Palma, A., Glavovic, B. C., Iiyama, M., King-Okumu. C., Platais, G. H., Reda, F., Sangha, K. K., Schumacher, K., Tormáné Kovács, E., and Wong, G. Y. (2024). Chapter 6. Options for delivering sustainable approaches to public and private finance for biodiversity-related elements of the nexus. In: Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Harrison, P. A., McElwee, P. D., and van Huysen, T. L. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.13850349
Download the BibTex file here. Download the RIS file here.
Chapter 7: Summary and synthesis of options, knowledge and technology gaps and capacity development DOI: https://doi.org/10.5281/zenodo.13850355
McElwee, P. D., Sitas, N., Ley, D., Glavovic, B. C., Herrero, M., Biber-Freudenberger, L., Campbell, D., Cavanagh, C. J., Cherubini, F., Dasgupta, P., Eriksen, S. H., Harrison, P. A., Jarvis, R. M., Kuiken, T., Luque, S., Lynch, A. J., Mangalagiu, D., McFarlane, R. A., Phang, S. C., Prist, P. R., Rounsevell, M. D. A., Samoilys, M., Sangha, K. K., Selomane, O., Sietz, D., Smith, P., Spierenburg, M., Vallet, A., Williams, D. R., and Xie, L. (2024). Chapter 7: Summary and synthesis of options, knowledge and technology gaps and capacity development. In: Thematic Assessment Report on the Interlinkages among Biodiversity, Water, Food and Health of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. McElwee, P. D., Harrison, P. A., and van Huysen, T. L. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.13850355
Download the BibTex file here. Download the RIS file here.
Thematic Assessment Report on Invasive Alien Species and their Control of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services DOI: https://doi.org/10.5281/zenodo.7430682
IPBES (2023). Thematic Assessment Report on Invasive Alien Species and their Control of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Roy, H. E., Pauchard, A., Stoett, P., and Renard Truong, T. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.7430682
Download the BibTeX file here. Download the RIS file here.
Summary for Policymakers of the Thematic Assessment Report on Invasive Alien Species and their Control of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services DOI: https://doi.org/10.5281/zenodo.7430692
IPBES (2023). Summary for Policymakers of the Thematic Assessment Report on Invasive Alien Species and their Control of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Roy, H. E., Pauchard, A., Stoett, P., Renard Truong, T., Bacher, S., Galil, B. S., Hulme, P. E., Ikeda, T., Sankaran, K. V., McGeoch, M. A., Meyerson, L. A., Nuñez, M. A., Ordonez, A., Rahlao, S. J., Schwindt, E., Seebens, H., Sheppard, A. W., and Vandvik, V. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.7430692
Download the BibTeX file here. Download the RIS file here.
Chapter 1: Introducing biological invasions and the IPBES thematic assessment of invasive alien species and their control DOI: https://doi.org/10.5281/zenodo.7430723
Roy, H. E., Pauchard, A., Stoett, P., Renard Truong, T., Lipinskaya, T., and Vicente, J. R. (2023). Chapter 1: Introducing biological invasions and the IPBES thematic assessment of invasive alien species and their control. In: Thematic Assessment Report on Invasive Alien Species and their Control of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Roy, H. E., Pauchard, A., Stoett, P., and Renard Truong, T. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.7430723
Download the BibTeX file here. Download the RIS file here.
Chapter 2: Trends and status of alien and invasive alien species DOI: https://doi.org/10.5281/zenodo.7430725
Seebens, H., Meyerson, L. A., Rahlao, S. J., Lenzner, B., Tricarico, E., Aleksanyan, A., Courchamp, F., Keskin, E., Saeedi, H., Tawake, A., and Pyšek, P. (2023). Chapter 2: Trends and status of alien and invasive alien species. In: Thematic Assessment Report on Invasive Alien Species and their Control of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Roy, H. E., Pauchard, A., Stoett, P., and Renard Truong, T. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.7430725
Download the BibTeX file here. Download the RIS file here.
Chapter 3: Drivers affecting biological invasions DOI: https://doi.org/10.5281/zenodo.7430727
Hulme, P. E., Ikeda, T., Vandvik, V., Blanchard, R., Camacho-Cervantes, M., Herrera, I., Koyama, A., Morales, C. L., Munishi, L. K., Pallewatta, P. K. T. N. S., Per, E., Pergl, J., Ricciardi, A., and Xavier, R. O. (2023). Chapter 3: Drivers affecting biological invasions. In: Thematic Assessment Report on Invasive Alien Species and their Control of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Roy, H. E., Pauchard, A., Stoett, P., and Renard Truong, T. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.7430727
Download the BibTeX file here. Download the RIS file here.
Chapter 4: Impacts of invasive alien species on nature, nature’s contributions to people, and good quality of life DOI: https://doi.org/10.5281/zenodo.7430731
Bacher, S., Galil, B. S., Nuñez, M. A., Ansong, M., Cassey, P., Dehnen-Schmutz, K., Fayvush, G., Hiremath, A. J., Ikegami, M., Martinou, A. F., McDermott, S. M., Preda, C., Vilà, M., Weyl, O. L. F., Fernandez, R. D., and Ryan-Colton, E. (2023). Chapter 4: Impacts of invasive alien species on nature, nature’s contributions to people, and good quality of life. In: Thematic Assessment Report on Invasive Alien Species and their Control of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Roy, H. E., Pauchard, A., Stoett, P., and Renard Truong, T. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.7430731
Download the BibTeX file here. Download the RIS file here.
Chapter 5: Management; challenges, opportunities and lessons learned DOI: https://doi.org/10.5281/zenodo.7430733
Sankaran, K. V., Schwindt, E., Sheppard, A. W., Foxcroft, L. C., Vanderhoeven, S., Egawa, C., Peacock, L., Castillo, M. L., Zenni, R. D., Müllerová, J., González-Martínez, A. I., Bukombe, J. K., Wanzala, W., and Mangwa, D. C. (2023). Chapter 5: Management; challenges, opportunities and lessons learned. In: Thematic Assessment Report on Invasive Alien Species and their Control of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Roy, H. E., Pauchard, A., Stoett, P., and Renard Truong, T. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.7430733
Download the BibTeX file here. Download the RIS file here.
Chapter 6: Governance and policy options for the management of biological invasions DOI: https://doi.org/10.5281/zenodo.7430747
McGeoch, M. A., Ordonez, A., Howard, P. L., Groom, Q. J., Shrestha, B. B., Fernandez, M., Brugnoli, E., Bwalya, B., Byun, C., Ksenofontov, S., Ojaveer, H., Simberloff, D., Mungi, N. A., and Rono, B. (2023). Chapter 6: Governance and policy options for the management of biological invasions. In: Thematic Assessment Report on Invasive Alien Species and their Control of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Roy, H. E., Pauchard, A., Stoett, P., and Renard Truong, T. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.7430747
Download the BibTeX file here. Download the RIS file here.
Thematic Assessment Report on the Sustainable Use of Wild Species of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services DOI: https://doi.org/10.5281/zenodo.6448567
IPBES (2022). Thematic Assessment Report on the Sustainable Use of Wild Species of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Fromentin, J. M., Emery, M. R., Donaldson, J., Danner, M. C., Hallosserie, A., and Kieling, D. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6448567
Download the BibTeX file here. Download the RIS file here.
Summary for Policymakers of the Thematic Assessment Report on the Sustainable Use of Wild Species of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services DOI: https://doi.org/10.5281/zenodo.6425599
IPBES (2022). Summary for Policymakers of the Thematic Assessment Report on the Sustainable Use of Wild Species of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Fromentin, J. M., Emery, M. R., Donaldson, J., Danner, M. C., Hallosserie, A., Kieling, D., Balachander, G., Barron, E. S., Chaudhary, R. P., Gasalla, M., Halmy, M., Hicks, C., Park, M. S., Parlee, B., Rice, J., Ticktin, T., and Tittensor, D. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6425599
Download the BibTeX file here. Download the RIS file here.
Chapter 1. Setting the scene DOI: https://doi.org/10.5281/zenodo.6425671
Fromentin, J. M., Emery, M. R., Donaldson, J., Hallosserie, A., Michaud-Lopez, C. E., Parma, A., St. Martin, K., and Stockland, H. (2022). Chapter 1: Setting the scene. In: Thematic Assessment Report on the Sustainable Use of Wild Species of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Fromentin, J. M., Emery, M. R., Donaldson, J., Danner, M. C., Hallosserie, A., and Kieling, D. (eds.). IPBES Secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6425671
Download the BibTeX file here. Download the RIS file here.
Chapter 2. Conceptualizing the sustainable use of wild species DOI: https://doi.org/10.5281/zenodo.6053970
Rice, J., Ticktin, T., Díaz -Reviriego, I., Furukawa, T., Gandiwa, E., Lavadinović, V., Margayan, L., Pascua, P., Sathyapalan, J. Akachuku, C., and Hallosserie, A. (2022). Chapter 2: Conceptualizing the sustainable use of wild species. In: Thematic Assessment Report on the Sustainable Use of Wild Species of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Fromentin, J. M., Emery, M. R., Donaldson, J., Danner, M. C., Hallosserie, A., and Kieling, D. (eds.). IPBES Secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6053970
Download the BibTeX file here. Download the RIS file here.
Chapter 3. Status of and trends in the use of wild species and its implications for wild species, the environment and people DOI: https://doi.org/10.5281/zenodo.6451322
Barron, E. S., Chaudhary, R. P., Carvalho Ribeiro, S., Gilman, E., Hess, J., Hilborn, R., Katz, E., Kigonya, R., Masski, H., Mesa Castellanos, L. I., Mograbi, P. J., Nayak, P. K., Queiroz, H., Sidorovich, A., Silvano, R. A. M., Zeng, Y, Djagoun, C., and Danner, M. C. (2022). Chapter 3: Status of and trends in the use of wild species and its implications for wild species, the environment and people. In: Thematic Assessment Report on the Sustainable Use of Wild Species of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Fromentin, J. M., Emery, M. R., Donaldson, J., Danner, M. C., Hallosserie, A., and Kieling, D. (eds.). IPBES Secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6451322
Download the BibTeX file here. Download the RIS file here.
Chapter 4. The drivers of the sustainable use of wild species DOI: https://doi.org/10.5281/zenodo.6451494
Balachander, G., Halmy, M. W. A., Parlee, B., Biggs, D., Chatakonda, M., Cisneros-Montemayor, A. M., Cormier-Salem, M-C., Dasgupta, R., Devkota, S., Diniz, J., Elfaki, A., Hiwasaki, L., Lichtenstein, G., Richter, A., Shah, M. A., Shanley, P., Shrestha, U. B., Lee, T. M., Bayarbaatar, B., and Kieling, D. (2022). Chapter 4: The drivers of the sustainable use of wild species. In: Thematic Assessment Report on the Sustainable Use of Wild Species of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Fromentin, J. M., Emery, M. R., Donaldson, J., Danner, M. C., Hallosserie, A., and Kieling, D. (eds.). IPBES Secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6451494
Download the BibTeX file here. Download the RIS file here.
Chapter 5. Future scenarios of sustainable use of wild species DOI: https://doi.org/10.5281/zenodo.6451922
Gasalla, M., Tittensor, D. P., Kok, K., Archer, E., Borokini, I., Halouani, G., Matias, D. M., Mbiba, M., Milner-Gulland, E. J., Pacheco, P., Fabricius, C., and Kieling, D. (2022). Chapter 5: Future scenarios of sustainable use of wild species. In Thematic Assessment Report on the Sustainable Use of Wild Species of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Fromentin, J. M., Emery, M. R., Donaldson, J., Danner, M. C., Hallosserie, A., and Kieling, D. (eds.). IPBES Secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6451922
Download the BibTeX file here. Download the RIS file here.
Chapter 6. Policy options for governing sustainable use of wild species DOI: https://doi.org/10.5281/zenodo.6452037
Park, M. S., Hicks, C. C., Wynberg R., Mosig Reidl, P., Dhyani S., Islas, C. A., Raab, K., Avila-Foucat, V. S., Parma, A., Kolding, J., Shkaruba, A., Skandrani, Z., and Danner, M. C. (2022). Chapter 6: Policy options for governing sustainable use of wild species. In Thematic Assessment Report on the Sustainable Use of Wild Species of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Fromentin, J. M., Emery, M. R., Donaldson, J., Danner, M. C., Hallosserie, A., and Kieling, D. (eds.). IPBES Secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6452037
Download the BibTeX file here. Download the RIS file here.
Methodological Assessment Report on the Diverse Values and Valuation of Nature of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services DOI: https://doi.org/10.5281/zenodo.6522522
IPBES (2022). Methodological Assessment Report on the Diverse Values and Valuation of Nature of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Balvanera, P., Pascual, U., Christie, M., Baptiste, B., and González-Jiménez, D. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6522522
Download the BibTeX file here. Download the RIS file here.
Summary for Policymakers of the Methodological Assessment Report on the Diverse Values and Valuation of Nature of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services DOI: https://doi.org/10.5281/zenodo.6522392
IPBES (2022). Summary for Policymakers of the Methodological Assessment Report on the Diverse Values and Valuation of Nature of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Pascual, U., Balvanera, P., Christie, M., Baptiste, B., González-Jiménez, D., Anderson, C. B., Athayde, S., Chaplin-Kramer, R., Jacobs, S., Kelemen, E., Kumar, R., Lazos, E., Martin, A., Mwampamba, T. H., Nakangu, B., O'Farrell, P., Raymond, C. M., Subramanian, S. M., Termansen, M., Van Noordwijk, M., and Vatn, A. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6522392
Download the BibTeX file here. Download the RIS file here.
Chapter 1: The role of the values of nature and valuation for addressing the biodiversity crisis and navigating towards more just and sustainable futures DOI: https://doi.org/10.5281/zenodo.6418971
Balvanera, P., Pascual, U., Christie, M., Baptiste, B., Lliso, B., Monroy, A. S., Guibrunet, L., Anderson, C. B., Athayde, S., Barton, D. N., Chaplin-Kramer, R., Jacobs, S., Kelemen, E., Kumar, R., Lazos, E., Martin, A., Mwampamba, T. H., Nakangu, B., O'Farrell, P., Raymond, C. M., Subramanian, S. M., Termansen, M., Van Noordwijk, M., Vatn, A., Contreras, V., and González-Jiménez, D. (2022). Chapter 1: The role of the values of nature and valuation for addressing the biodiversity crisis and navigating towards more just and sustainable futures. In: Methodological Assessment Report on the Diverse Values and Valuation of Nature of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Balvanera, P., Pascual, U., Michael, C., Baptiste, B., and González-Jiménez, D. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6418971
Download the BibTeX file here. Download the RIS file here.
Chapter 2: Conceptualizing the diverse values of nature and their contributions to people DOI: https://doi.org/10.5281/zenodo.6493134
Anderson, C. B., Athayde, S., Raymond, C. M., Vatn, A., Arias, P., Gould, R. K., Kenter, J., Muraca, B., Sachdeva, S., Samakov, A., Zent, E., Lenzi, D., Murali, R., Amin, A., and Cantú-Fernández, M. (2022). Chapter 2: Conceptualizing the diverse values of nature and their contributions to people. In: Methodological Assessment Report on the Diverse Values and Valuation of Nature of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Balvanera, P., Pascual, U., Christie, M., Baptiste, B., and González-Jiménez, D. (eds). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6493134
Download the BibTeX file here. Download the RIS file here.
Chapter 3: The potential of valuation DOI: https://doi.org/10.5281/zenodo.6521298
Termansen, M., Jacobs, S., Mwampamba, T. H., Ahn, S., Castro, A., Dendoncker, N., Ghazi, H., Gundimeda, H., Huambachano, M., Lee, H., Mukherjee, N., Nemogá, G. R., Palomo, I., Pandit, R., Schaafsma, M., Ngouhouo, J., Choi, A., Filyushkina, A., Hernández-Blanco, M., Contreras, V., and González-Jiménez, D. (2022). Chapter 3: The potential of valuation. In: Methodological Assessment Report on the Diverse Values and Valuation of Nature of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Balvanera, P., Pascual, U., Christie, M., Baptiste, B., and González-Jiménez D. (eds). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6521298
Download the BibTeX file here. Download the RIS file here.
Chapter 4: Value expression in decision-making DOI: https://doi.org/10.5281/zenodo.6522261
Barton, D. N., Chaplin-Kramer, R., Lazos, E., Van Noordwijk, M., Engel, S., Girvan, A., Hahn, T., Leimona, B., Lele, S., Niamir, A., Özkaynak, B., Pawlowska-Mainville, A., Muradian, R., Ungar, P., Aydin, C., Iranah, P., Nelson, S., Cantú-Fernández, M., and González-Jiménez, D. (2022). Chapter 4: Value expression in decision-making. In: Methodological Assessment Report on the Diverse Values and Valuation of Nature of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Balvanera, P., Pascual, U., Christie, M., Baptiste, B., and González-Jiménez, D. (eds). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6522261
Download the BibTeX file here. Download the RIS file here.
Chapter 5: The role of diverse values of nature in visioning and transforming towards just and sustainable futures DOI: https://doi.org/10.5281/zenodo.6522326
Martin, A., O'Farrell, P., Kumar, R., Eser, U., Faith, D.P., Gomez-Baggethun, E., Harmackova, Z., Horcea-Milcu, A.I., Merçon, J., Quaas, M., Rode, J., Rozzi, R., Sitas, N., Yoshida, Y., Ochieng, T.N., Koessler, A.K., Lutti, N., Mannetti, L., and Arroyo-Robles, G. (2022). Chapter 5: The role of diverse values of nature in visioning and transforming towards just and sustainable futures. In: Methodological Assessment Report on the Diverse Values and Valuation of Nature of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Balvanera, P., Pascual, U., Michael, C., Baptiste, B., and González-Jiménez, D. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6522326
Download the BibTeX file here. Download the RIS file here.
Chapter 6: Policy options and capacity development to operationalize the inclusion of diverse values of nature in decision-making DOI: https://doi.org/10.5281/zenodo.6522359
Kelemen, E., Subramanian, S., Nakangu, B., Islar, M., Kosmus, M., Nuesiri, E., Porter-Bolland, L., De Vos, A., Amaruzaman, S., Yiu, E., and Arroyo, G. (2022). Chapter 6: Policy options and capacity development to operationalize the inclusion of diverse values of nature in decision-making. In: Methodological assessment of the diverse values and valuation of nature of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services. Balvanera, P., Pascual, U., Michael, C., Baptiste, B., and González-Jiménez, D. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.6522359
Download the BibTeX file here. Download the RIS file here.
Global assessment report of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services DOI: https://doi.org/10.5281/zenodo.3831673
IPBES (2019). Global assessment report on biodiversity and ecosystem services of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services (pp. 1-1082). Brondízio, E. S., Settele, J., Díaz, S., and Ngo, H. T. (eds). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.3831673
Download the BibTeX file here. Download the RIS file here.
Summary for policymakers of the global assessment report of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services DOI: https://doi.org/10.5281/zenodo.3553458
IPBES (2019). Summary for policymakers of the global assessment report on biodiversity and ecosystem services of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services (pp. XIV-LXI). Díaz, S., Settele, J., Brondízio, E. S., Ngo, H. T., Guèze, M., Agard, J., Arneth, A., Balvanera, P., Brauman, K. A., Butchart, S. H. M., Chan, K. M. A., Garibaldi, L. A., Ichii, K., Liu, J., Subramanian, S. M., Midgley, G. F., Miloslavich, P., Molnár, Z., Obura, D., Pfaff, A., Polasky, S., Purvis, A., Razzaque, J., Reyers, B., Roy Chowdhury, R., Shin, Y. J., Visseren-Hamakers, I. J., Willis, K. J., and Zayas C.N. (eds.). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.3553458
Download the BibTeX file here. Download the RIS file here.
Chapter 1: Assessing a planet in transformation: Rationale and approach of the IPBES Global Assessment on Biodiversity and Ecosystem Service DOI: https://doi.org/10.5281/zenodo.3831852
Brondízio, E. S., Díaz, S., Settele, J., Ngo, H. T., Guèze, M., Aumeeruddy-Thomas, Y., Bai, X., Geschke, A., Molnár, Z., Niamir, A., Pascual, U., Simcock, A., and Jaureguiberry, P. (2019). Chapter 1: Assessing a planet in transformation: Rationale and approach of the IPBES Global Assessment on Biodiversity and Ecosystem Service. In: Global assessment report of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services (pp. 1-48). Brondízio, E. S., Settele, J., Díaz, S., and Ngo, H. T. (eds). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.3831852
Download the BibTeX file here. Download the RIS file here.
Chapter 2.1. Status and Trends – Drivers of Change DOI: https://doi.org/10.5281/zenodo.3831881
Balvanera, P., Pfaff, A., Viña, A., García-Frapolli, E., Merino, L., Minang, P. A., Nagabhatla, N., Hussain, S. A., and Sidorovich, A. A. (2019) Chapter 2.1. Status and Trends – Drivers of Change. In: Global assessment report of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services (pp. 49-200). Brondízio, E. S., Settele, J., Díaz, S., and Ngo, H. T. (eds). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.3831881
Download the BibTeX file here. Download the RIS file here.
Chapter 2.2. Status and Trends – Nature DOI: https://doi.org/10.5281/zenodo.3832005
Purvis, A., Molnar, Z., Obura, D., Ichii, K., Willis, K., Chettri, N., Dulloo, E., Hendry, A., Gabrielyan, B., Gutt, J., Jacob, U., Keskin, E., Niamir, A., Öztürk, B., Salimov, R., and Jaureguiberry, P. (2019). Chapter 2.2. Status and Trends – Nature. In: Global assessment report of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services (pp. 201-308). Brondízio, E. S., Settele, J., Díaz, S., and Ngo, H. T. (eds). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.3832005
Download the BibTeX file here. Download the RIS file here.
Chapter 2.3. Status and Trends – Nature’s Contributions to People (NCP) DOI: https://doi.org/10.5281/zenodo.3832035
Brauman, K. A., Garibaldi, L. A., Polasky, S., Zayas, C., Aumeeruddy-Thomas, Y., Brancalion, P., DeClerck, F., Mastrangelo, M., Nkongolo, N., Palang, H., Shannon, L., Shrestha, U. B., and Verma, M. (2019). Chapter 2.3. Status and Trends – Nature’s Contributions to People (NCP). In: Global assessment report of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services (pp. 309-384). Brondízio, E. S., Settele, J., Díaz, S., Ngo, and H. T. (eds). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.3832035
Download the BibTeX file here. Download the RIS file here.
Chapter 3. Assessing progress towards meeting major international objectives related to nature and nature's contributions to people DOI: https://doi.org/10.5281/zenodo.3832052
Butchart, S. H. M., Miloslavich, P., Reyers, B., Subramanian, S. M., Adams, C., Bennett, E., Czúcz, B., Galetto, L., Galvin, K., Reyes-García, V., Gerber, L. R., Bekele, T., Jetz, W., Kosamu, I. B. M. K., Palomo, M. G., Panahi, M., Selig, E. R., Singh, G. S., Tarkhnishvili, D., Xu, H., Lynch, A. J., Mwampamba, T. H., and Samakov, A. (2019). Chapter 3. Assessing progress towards meeting major international objectives related to nature and nature’s contributions to people. In: Global assessment report of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services (pp. 385-598). Brondízio, E. S., Settele, J., Díaz, S., and Ngo, H. T. (eds). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.3832052
Download the BibTeX file here. Download the RIS file here.
Chapter 4: Plausible futures of nature, its contributions to people and their good quality of life DOI: https://doi.org/10.5281/zenodo.3832073
Shin, Y. J., Arneth, A., Roy Chowdhury, R., Midgley, G. F., Leadley, P., Agyeman Boafo, Y., Basher, Z., Bukvareva, E., Heinimann, A., Horcea-Milcu, A. I., Kindlmann, P., Kolb, M., Krenova, Z., Oberdorff, T., Osano, P., Palomo, I., Pichs Madruga, R., Pliscoff, P., Rondinini, C., Saito, O., Sathyapalan, J., and Yue, T. (2019). Chapter 4: Plausible futures of nature, its contributions to people and their good quality of life. In: Global assessment report of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services (pp. 599-766). Brondízio, E. S., Settele, J., Díaz, S., and Ngo, H. T. (eds). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.3832073
Download the BibTeX file here. Download the RIS file here.
Chapter 5. Pathways towards a Sustainable Future DOI: https://doi.org/10.5281/zenodo.3832099
Chan, K. M. A., Agard, J., Liu, J., Dutra De Aguiar, A. P., Armenteras Pascual, D., Boedhihartono, A. K., Cheung, W. W. L., Hashimoto, S., Hernández-Pedraza, G. C., Hickler, T., Jetzkowitz, J., Kok, M., Murray-Hudson, M., O’Farrell, P., Satterfield, T., Saysel, A. K., Seppelt, R., Strassburg, B., Xue, D., Selomane, O., Balint, L., and A. Mohamed. (2019). Chapter 5. Pathways towards a Sustainable Future. In: Global assessment report of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services (pp. 767-874). Brondízio, E. S., Settele, J., Díaz, S., and Ngo, H. T. (eds). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.3832099
Download the BibTeX file here. Download the RIS file here.
Chapter 6. Options for Decision Makers DOI: https://doi.org/10.5281/zenodo.3832107
Razzaque, J., Visseren-Hamakers, I. J., McElwee, P., Rusch, G. M., Kelemen, E., Turnhout, E., Williams, M. J., Gautam, A. P., Fernandez-Llamazares, A., Chan, I., Gerber, L. R., Islar, M., Karim, S., Lim, M., Liu, J., Lui, G., Mohammed, A., Mungatana, E., and Muradian R. (2019). Chapter 6. Options for Decision Makers. In: Global assessment report of the Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services (pp. 875-1028). Brondízio, E. S., Settele, J., Díaz, S., and Ngo, H. T. (eds). IPBES secretariat, Bonn, Germany. DOI: https://doi.org/10.5281/zenodo.3832107
Download the BibTeX file here. Download the RIS file here.
Technical Guideline Series
Prepared by Joy Kumagai - Technical Support Unit of Knowledge and Data Reviewed by Aidin Niamir - Head of the Technical Support Unit of Knowledge and Data For any inquires please contact aidin.niamir@senckenberg.de
Version: 2.3 Last Updated: 15 August 2022
The guide will show how to aggregate and map FAO data according to the IPBES Regions and Sub-Regions polygons using R. For this exercise, we chose the FAO population data but any FAOSTAT dataset can be used. This guideline is intended for anyone aggregating data to IPBES regions and subregions.
Let’s begin by loading the following packages.
The first step is to download the FAO data using the FAOSTAT package. The url can be found in FAO STAT’s data description file here.
Now we will download the shapefile of the IPBES Regions and Sub-regions off of Zenodo. This can be accomplished manually or through a few lines of code.
To download the shapefile manually, please go to the IPBES Regions and Sub-Regions Zenodo entry.
To do this through a script, first identify the record ID of the Zenodo entry, which is the numbers following “zenodo.” at the end of the URL. We then create a URL with the record ID and query the API for information about the record.
Now, we can inspect the contents downloaded with the function content()
This information we received contains metadata for the record, and within this we can find the specific URL to download the IPBES regions and sub-regions shapefile. We then use this URL and the function GET() to download the shapefile.
Now that our data is on our computer, we need to upload the data into R studio and project the spatial data.
We chose to project the data into the Robinson projection as it minimizes distortions in both area and distance. To find the proj4 notation please visit this link.
To plot the ocean in our maps, we will also download ocean data from the rnaturalearth package and project it
The next important step is to clean the data to ensure it can be joined and mapped easily. For this example, we will filter to only include the total population for each country in 2018.
By examining the Area names within the dataset, one will notice that every name after Zimbabwe refers to aggregated data, therefore we will remove these from our analysis.
Finally, we need to add the ISO3 codes onto the dataframe, so we can easily join it to the IPEBS Regions and Sub-Regions data. The translateCountryCode() function provided by the FAOSTAT package allows us to easily do this.
There are two records where no ISO3 Code was assigned: China (including mainland, Hong Kong SAR, Macao SAR, and Taiwan) and South Sudan. “China mainland” refers to the same area as “China” in our dataset, so we are safe to exclude the China (including mainland, Hong Kong SAR, Macao SAR, and Taiwan) from our analysis.
For South Sudan, we will add the same ISO-3 Code we have in the IPBES Regions and Sub-regions dataset.
We have all of our data downloaded locally, uploaded into R, and formatted properly. The last step is to join and aggregate the data to the IPBES regions and sub-regions shapefile.
First, we join the IPBES regions and sub-regions attributes to our data table. I drop the spatial attributes of the IPBES regions and sub-regions dataset to speed up the process.
Secondly, we aggregate the data per IPBES regions and sub-regions. In our example, I calculate the total population per region and per sub-region using the group_by() function.
Finally, we join the formatted FAO data to the spatial data we originally had so we can create maps.
All that is left to do is to map the data per region and sub-region. We begin by dissolving the spatial data per region and subregion so country borders are not included.
Now, we choose the palette and plot by region.
If you would like to add graticules and an ocean background, follow this example. First, we will set up the graticules we will plot
Then, we will plot the graticules, ocean data, then region data, and finally the text for latitude and longitude lines, legend, and surrounding box.
We can also plot by subregion.
Your feedback on this content is welcome. Let us know what other useful material would you like to see here by emailing aidin.niamir@senckenberg.de.
Technical Guideline Series
Prepared by Joy Kumagai - IPBES Technical Support Unit (TSU) of Knowledge and Data Reviewed by the Task Force on Knowledge and Data (Hanno Seebens, Rainer Krug, András Báldi, Xubin Pan, and Aidin Niamir)
For any inquires please contact aidin.niamir@senckenberg.de
Version: 1.1 Last Updated: 14 July 2022
This technical guideline provides guidance on figures within IPBES assessments, with particular emphasis on long-term storage in repositories. The guideline is intended for IPBES assessment technical support units or anyone storing figures within IPBES assessments.
All figures, except for those borrowed (i.e. not modified) from external sources, are stored on Zenodo. Figures can then be accessed in the long-term, enabling reuse by others and future IPBES experts.
When uploading a figure to a repository, please specify which chapter it belongs to and the figure number. Additionally, please include the related identifiers, specifically the DOI of the assessment chapter and/or the associated data management report it appears in. At a quick glance, viewers should be able to track where a figure appears within the assessment.
Please provide editable, high resolution figures in vector format which enables graphic designers to edit the figure. Vector formats could be pdf, eps, or others as specified in the file formats guideline. If the graphic designer needs to edit a figure, the new version should be uploaded to the same repository as an additional file.
It is incredibly important that permission for any borrowed or adapted figures is granted and documented as early as possible. If permission can not be secured, then the figure can not be used in the assessment.
Please double check the following items to ensure the figures are in line with IPBES guidance.
If there are country borders displayed, there are certain rules for borders and a few regions that need to be adhered to (https://doi.org/10.5281/zenodo.5883632).
World maps are in the robinson projection.
Country names are in ISO 3166-1 alpha 3 code within figures. If full names are needed in captions for clarity, they are fully spelt out according to current UN guidance. Names can be double checked with the interactive map on this UN website.
Colors used in figures are color blind friendly.
Depending on the type of figure, there are different items that need to be part of the repository and checked. Please go through the following lists for each figure in the assessment.
Schematic figures
Upload the native/original file of the figure (e.g. powerpoint file).
Upload the figure in an open format and high resolution (600 dpi).
Upload the caption in a separate text file together with the figure. The caption should contain the DOI of the figure and disclaimer where necessary. Please see our guidance on how to reserve a DOI before publishing.
Data driven figures
Upload the workflows/scripts that were used to create the figure.
Upload the data sources themselves or specify the references to the data sources underlying the figure in the associated data management report, which can be included in the same repository.
Upload the figure in an open format and in high resolution (600 dpi or vector format).
Upload the caption in a separate text file together with the figure. The caption should contain the DOI of the figure and disclaimer where necessary. Please see our guidance on how to reserve a DOI before publishing.
Please also check that country names in the data follow the ISO 3166 1 alpha 3 code.
Borrowed figures (unmodified)
These figures do not need to be uploaded to Zenodo, but please check the following:
Permission to reuse the figure has been granted and recorded.
The source of the figure is cited properly in the Zotero library.
The figure has been reviewed for compliance with the IPBES guidelines, specifically the figure is color-blind friendly and if country borders are included, they follow UN guidance. If the figure is not compliant, options are explored to adapt the figure.
The figure is in high resolution (600 dpi or vector format).
The caption has a disclaimer where necessary.
Adapted figures (modified)
Upload the figure in an open format and in high resolution (600 dpi or vector format).
Upload the caption in a separate text file together with the figure. The caption should contain the DOI of the figure and disclaimer where necessary. Please see our guidance on how to reserve a DOI before publishing.
Specify the usage rights.
Please also check:
Permission to reuse and adapt the figure has been granted and recorded.
The source of the figure is cited properly in the Zotero library.
The figure has been reviewed for compliance with the IPBES guidelines, specifically the figure is color-blind friendly and if country borders are included, they follow UN guidance. If the figure is not compliant, options are explored to adapt the figure.
In this section, examples for each type of figure are provided with links to the associated data deposit pacakge, except for borrowed figures which do not need a data deposit package.
The data deposit package associated with this figure can be found here: https://doi.org/10.5281/zenodo.4359655
The data deposit package associated with this figure can be found here: https://doi.org/10.5281/zenodo.6468917
The data deposit package associated with this figure can be found here: https://doi.org/10.5281/zenodo.6453019
Technical Guideline Series
Prepared by Joy Kumagai - Technical Support Unit (TSU) of Knowledge and Data
Reviewed by the Task Force on Knowledge and Data and Benedict Omare - Information Management Officer
For any inquires please contact aidin.niamir@senckenberg.de
Version: 1.1 Last Updated: 14 July 2022
Within this guideline, we cover how to upload, share, and download to Zenodo both manually and programmatically. This technical guideline is intended for IPBES technical support units and provides useful tips and options, but does not seek to be comprehensive. The material presented here incorporates and builds upon the guide available here: https://ict.ipbes.net/repositories/zenodo.
Zenodo is a general-purpose free and open-access repository operated by the European Organization for Nuclear Research (CERN). It allows researchers in any subject area to deposit data sets, research software, reports, and any other research related digital artifacts.
Zenodo provides the following services:
A persistent Digital Object identifier (DOI) is assigned for each upload to make it citable, traceable and findable
Metadata of each record is sent to DataCite servers during DOI registration and indexed there
Data and metadata will be retained for the lifetime of the repository. This is defined as the lifetime of the host laboratory CERN, which currently has an experimental programme defined for the next 20 years
Storage of large file sizes of up to 50 GB
Versioning of data
Integration with GitHub
All data and metadata uploaded is traceable to a registered Zenodo user
For IPEBS, Zenodo is the repository for long term storage of all IPBES products, including milestones, data deposit packages and associated data management reports.
The IPBES secretariat has created and is maintaining one single community on Zenodo for IPBES (https://zenodo.org/communities/ipbes/) where the goal is to provide:
Access to IPBES products
A digital object identifier (DOI) to enable citation of the product or deposit including direct access to its digital representation
Search functionality in numerous platforms (e.g. CrossRef, DataCite, PubMed, RefBank, GNUB and Mendeley)
Uploads to the IPBES community on Zenodo must be material that has been prepared for IPBES.
The purpose of this section is to provide helpful guidance on specific aspects as opposed to going into detail on each part of the form for manual upload.
Descriptive metadata can be modified after publishing without changing the DOI. Files can also be re-uploaded but all data uploads are permanently stored and issued with unique version numbers and DOIs. Therefore, extra care should be used when uploading files.
Zenodo sandbox can be used to become familiar with the interface and practice without permanently uploading files
A DOI can be reserved by creating a new Zenodo upload draft, selecting "Reserve DOI" under the basic information section, and saving the draft. The identifier can now be added to any documentation, including a data management report for the same upload
ORCIDs should be provided whenever possible
Please add your entry to the IPBES community, by searching IPBES secretariat within the upload form in the second section. The submission has to be approved by secretariat before it appears in the community
To obtain a digital object identifier for an entry on Zenodo, please first log into your account and start a new upload on Zenodo. Note that the account should be affiliated with your IPBES email address if available.
Under the section Basic information, the first field asks for a digital object identifier and directly below the descriptive text there is a box named "Reserve DOI" (see figure 1). Once this button is pressed, the text box then automatically fills in with the assigned DOI. Once you save the draft entry, which requires filling in sections with a red asterisk next to them (which can be changed at a later date), this is the corresponding DOI to the draft upload.
If creating a data management report, please include this reserved DOI at the top of the report and use the same drafted Zenodo entry for the data deposit package.
The upload form for Zenodo has two explicit places where people can be attributed for their work. One can specify author names in the Basic information section, and other contributor names under the Contributors section further down the form.
Each Zenodo entry requires that at least one author name is listed per repository item. The author names then appear on the repository web page directly underneath the title and are added to the citation. The contributor names appear one line below the authors on the website and are categorized according to their specific role, but these names are not listed within the citation. An example of this can be found within the IPBES Data Management Tutorials upload where the author is listed as the IPBES task force on knowledge and data, but editors, project leaders, and project members are specified to acknowledge the specific contributions of the members.
Within the form, the role of each contributor can be specified. There are many options which provide valuable information, such as contact person or research group. Some of the options are pictured in Figure 2.
Related identifiers are an incredibly useful tool that can help users understand the connections between products and easily navigate between them. For example, if one is interested in a data management report and finds the Zenodo upload, they can easily click on the related chapter and see how the analysis appears within the actual assessment chapter.
For data management reports associated with IPBES assessments, adding the DOI to the associated assessment chapter on Zenodo is important to maintain the relationship between the products.
There are a variety of options to specify relationships between products, such as the following:
"is supplemented by this upload" / "is a supplement to this upload"
"describes this upload" / "is described by this upload"
"continues this upload" / "is continued by this upload"
Additionally, ISBNs, URLs, and other identifiers can be used in addition to DOIs.
An example of how these related identifiers work can be found on the IPBES Data Management Tutorials Zenodo page pictured below.
Uploads related to IPBES assessments should be set to open access at the latest one calendar month following the adoption of the assessment by Plenary, unless a longer embargo period is approved by the task force on knowledge and data. Please see the IPBES data and knowledge management policy for more information.
Restricted access: If you select restricted access, you will need to specify the conditions under which you grant users access to the files in your upload. A user requesting access will be asked to justify how they fulfill the conditions. Based on the justification, you decide who to grant/deny access. You are not allowed to charge users for granting access to data hosted on Zenodo.
The following licenses can be specified on Zenodo:
Creative Commons Attribution 4.0 International - Recommended
Creative Commons Attribution 1.0 Generic
Creative Commons Attribution 2.0 Generic
Creative Commons Attribution 3.0 Unported
Creative Commons Attribution 3.0 Austria
Creative Commons Attribution 3.0 Germany
Creative Commons Attribution 3.0 Netherlands
Creative Commons Attribution 3.0 United States
Please add version numbers to all entries. If the entry is updated, the version number and date can be used to keep track of which version was available and used.
To aid in discoverability, it can be helpful to add keywords to your upload that describe the deliverable, document type, and/or descriptive term.
For example:
Deliverable: global assessment; values assessment; invasive alien species assessment
Document Type: Full assessment report; Summary for Policymakers; Supplementation material; data management report
Descriptive term: Data policy
Zenodo and GitHub have the possibility of being linked so that a new release on GitHub can create a new or an update to an existing Zenodo repository. Here we will discuss the context-specific considerations for IPBES and give a overview of the process.
One case where it would be helpful to have this link established would be if one has a project which utilizes a set of codes for and analysis with associated figures. The code, resulting figures, and data management report (perhaps in markdown format) could be included in the GitHub repository, and each release for a milestone draft could automatically have the associated Zenodo page updated.
Unfortunately, your repository on GitHub needs to be public for it to be published on Zenodo. Also, the access is automatically set to public on the Zenodo entry. Thus, the access would need to be adjusted after the release to restricted instead. IPBES products stemming from assessments need to be set to restricted access until the assessment is approved by Plenary.
To link your GitHub repository to a Zenodo page, follow the these steps:
Log in and choose your repository on GitHub and ensure it is publicly available
Log into your Zenodo account
Now, next to your email at the top right of the Zenodo page, there is a little drop down menu, select GitHub and select authorize application to give Zenodo the permissions it needs. Once this occurs, you should see a list of repositories, toggle the button next to your chosen repository into the ON position (see figure 4)
Back on GitHub, under settings click "Webhooks" in the left-hand menu. There should be a webhook configured to Zenodo
Create a new release on your GitHub repository. Click publish
Back on Zenodo under the Upload tab, there should now be a new draft upload where you can reserve a DOI for your repository, edit the information and publish
Each new release should create a new version of the Zenodo Upload, published automatically.
For a descriptive step by step guide on this process, please visit the available GitHub Guide on this topic here. This resource is also helpful to understand how to create a new release that is synced between GitHub and Zenodo.
One of the key benefits of Zenodo is that when you create an upload it provides a DOI for the entry. One can then find the Zenodo webpage by typing the following into a browser.
https://doi.org/ [add DOI of the upload]
For example, see the Zenodo upload of this technical guideline here: https://doi.org/10.5281/zenodo.5713976
Diving deeper, Zenodo actually issues two DOI’s. One DOI refers to the specific version, while there is an additional DOI created which cites all versions and resolves to the latest one. For instance, if a data management report is updated between one of the milestone drafts and the final version for an assessment, include the DOI that cites all versions in the assessment, thus ensuring anyone who clicks on the URL will be automatically sent to the most recent version.
Generally, when sharing your Zenodo uploads please use the DOI that cites a specific version unless you only want to refer the newest version.
One can find this additional DOI in the versions section of the published webpage of the upload. For example, when referring to the IPBES data management policy (figure 5) we use this doi: 10.5281/zenodo.3551078
To download files from Zenodo, all one needs to do is to navigate to the entry they would like to download, scroll down to the Files section on the webpage, and press the button download next to each of the files they would like to download (highlighted in Figure 6). This functionality can be very useful to quickly check files or to save locally and quickly. Resources uploaded to the IPBES community can be found on https://zenodo.org/communities/ipbes.
For other applications, such as downloading a dataset to be used in a script, one may want to have the script download the files, so that the most recent version is always used and the source is explicit.
Within Python, there's a package available on GitHub here which allows one to download from Zenodo using the function zenodo_get
.
Within R, there's a handy function called download_zenodo
from the package inborutils
that allows one to download from Zenodo easily.
To illustrate this in R, all of the files associated with the Zenodo repository IPBES regions and subregions can be downloaded programmatically at once with the following code:
The shapefile for the ipbes regions and subregions is within the zipped folder called "ipbes_regions_subregions_shape_1.1.zip". Once these files are downloaded, one can unzip the shapefile, call it into memory, and begin to use it as shown here:
For any questions please feel free to contact us at aidin.niamir@senckenberg.de. If you have any Zenodo specific questions they may be answered on their frequently asked question page.
Technical Guideline Series
Prepared by Joy Kumagai - Technical Support Unit (TSU) of Knowledge and Data Reviewed by Aidin Niamir - Head of the Technical Support Unit on Knowledge and Data For any inquires please contact
Version: 1.1 Last Updated: 15 July 2022
DOI:
This technical guideline is for all IPBES experts and focuses on recommended file formats for IPBES with open or mostly open standards. To summarize briefly:
Table 1: Recommendations for file formats
* While we are aiming to use open or mostly open formats, currently DOCX is widely used by the IPBES community and thus is still acceptable, although for preservation a PDF version of the DOCX file should also be added to the repository.
More details on these formats follow below. If you have any suggestions on further content or file format types you would like to see covered please contact us.
For each type of spatial data, this guideline will show examples of how to export and read the information. Please download the following data using this code to follow the examples.
A GeoPackage is ideal for encoding geospatial data when size and power are limited such as within a mobile device and is implemented in an SQLite database. It is slightly lighter in size than a shapefile, usually around 1.1-1.3x smaller and there is not limit on file size.
Some drawbacks are that the format is relatively young and the raster support in R is limited. It is very difficult to write multiband raster files using the common packages in R.
To export a geopackage the following code and the sf
package can be used:
Next, you can read a geopackage using the simple st_read()
function
A shapefile consists of multiple files that together are read by a computer program which specifies geometry of features, projection, and metadata of the dataset.
.shp - Mandatory. Contains the geometry for each feature - each record describes a shape with a list of its vertices
.shx - Mandatory. Stores the index of the feature geometry
.dbf - Mandatory. Dataset that stores the attribute information of features with a one-to-one relationship between geometry and attribute rows
.prj - Necessary. Stores the metadata associated with the shapefiles coordinate and projection system. This file needs to be included or the data can not be used correctly
.xml - Optional. Contains the metadata associated with the shapefile
.sbn and .sbx - Optional. Two spatial index files that optimize spatial queries. These two files make up a shape index to speed up spatial queries
.cpg - Optional. Describes the encoding applied to create the shapefile
Some drawbacks to using shapefiles are the following:
Not a completely open format
Lacks support for UNICODE character strings, therefore limiting the use of non-English languages
Consists of multiple files which can easily be separated
Field names can only be 10 characters or shorter in length
Size limit of 2GB
Can only have one type of geometry per file (only point data or only polygon data)
Does not store geometry of features. e.g. polygons which are next to each other are independent and joining borders are coded as separate line segments, which can result in holes and islands.
To export and read a shapefile, the sf
package can also be used.
Another vector format if the recommended formats are not possible is GeoJSON. GeoJSON is a simple open standard geospatial format that also represents features and associated attributes. This format is commonly used in web-based mapping. It is based on JavaScript Object Notation (JSON) and the standard format uses a geographic coordinate reference system, WGS 1984. Unlike shapefiles, it was not developed by a commercial company, but an internet working group of developers and thus is openly documented.
We recommend only using this format when data is simple points and lines as it is text based. Since it is text based, it is easy for humans to read directly and for machines to parse through and almost all GIS programs used for applications on the web can write and read GeoJSON data.
An important drawback worth mentioning is that it lacks support for projections. Additionally, there is no built-in support for embedding rich metadata about the dataset as a whole. Therefore, when using GeoJSON, provide the additional structured metadata with the json file so that the data is interoperable including an additional metadata file which specifies the projection and map datum.
To export and read a GeoJSON file the following code can be used. The option RFC7946 = YES
needs to be used when exporting as it is a more recent and strict standard for GeoJSON.
KML (Keyhole Markup Language) is a geospatial publishing format that enables easy visualization. The format is used primarily in the Google Earth Interface. The KML format focuses on visualization and allows one to encode what information to show and how to show it including annotation of images and maps and supports 3D textured models. KML supports display of rich data through icons and captions and can control the users view point directing where to look.
KML files can be created and edited on the google earth interface or can be drafted in an XML or simple text editor. When KML files are shared usually they are compressed and zipped into KMZ files. There are various ways to package a KML file, and thus we recommend other formats for storing or transferring geospatial data.
KML only uses one coordinate reference system and is not well suited for delivering large quantities of data.
To export a KML file from R, the following code can be used. First, the projection needs to be checked as KML only supports WGS84.
Next, the same functions st_write()
and st_read()
can be used
Raster data can come in a variety of formats such as png, tiff, or jpeg, commonly used for images, but here we focus on geospatial data formats. We recommend GeoTIFF for geospatial raster data. GeoTIFF is a formatted TIFF 6.0 raster file that embeds cartographic information into the raster image as tags. The format was originally developed as a format to distribute satellite or aerial photography imagery and is widely used.
There are many benefits to using the GeoTIFF format. There is strong software support in the form of open source libraries and many commercial and open GIS and spatial data analysis software products support reading and writing GeoTIFF data. It is highly interoperable, used worldwide, can store multiband raster data, and supported for many years.
The tags of GeoTIFF files, called tif tags
should include the following metadata: extent, resolution, datum, projection (CRS), and values that represent missing data. These tags are incredibly important and are how programs recognize the spatial coverage and projection of the raster data.
GeoTIFF is not suitable for storing complex multi-dimensional data structures and has a size limit of 4GB.
To export a GeoTIFF file, the following code can be used with the raster
package.
To read a GeoTIFF raster, just one line of code is needed
We recommend using the GeoPackage format for storing raster data as well. Raster data is stored in a tile-based pyramid structure within the GeoPackage, therefore the imagery or raster information is stored at multiple resolutions. The parameters of the tiles can be set when writing the layer to the Geopackage. This tile-based pyramid structure is useful when handling a GeoPackage on a small device, as the appropriate resolution can be displayed based on the zoom level and screen size.
Please note that in R, currently support for writing multiband rasters in a GeoPackage is limited.
To write and read a GeoPackage with a raster layer within it, the following code can be used with the package stars
Another option for storing geospatial raster data is NetCDF (Network Common Data Form) if a GeoTIFF will not suit your purpose or you were given data in NetCDF format. NetCDFs are often used for climate and large scientific raster data files, especially for storing multidimensional scientific data. NetCDF is used by a large community and is self-describing, portable, scalable, appenable, archivable, and is considered a standard. It is in the public domain, and thus open, well documented, and actively developed and maintained. NetCDF files support multidimensional arrays with multiple unlimited appendable dimensions but is not as commonly used as GeoTIFFs.
Some limitations to NetCDFs are that they are not as user-friendly to work with especially in R, they do not support nested structures, and no real compression is supported.
Next, we will store the elevations and grid dimensions in variables.
We will now define the spatial dimensions of the data (lat / long) and then use ncvar_def to define a variable in the netCDF file that will hold the elevation data.
We will now create the netCDF file and add the variables into the file. At this step, one can add additional metadata such as title, affiliated institution, source, references, etc.
Finally, close the file, which writes the data to disk.
Now, let’s move onto opening the netCDF file we just created.
Next, we will extract the coordinate variables and elevation variable.
Now, one can create a plot from the netcdf file.
While information on the various formats for spatial data are incredibly important to understand when using and sharing geospatial data, we would also like to recommend a few packages for handling spatial data in R.
Finally, here is a table summarizing the recommended r packages for each data type with links to more guides on how to read, convert, and write in R between these formats:
Table 2: Recommendations for handling these file formats in R
* Important note: The commonly used package raster
will be replaced by the new package terra
as rgdal
, one of the key packages it uses, will be retired in 2024. There are many more resources available online to guide people on how to use these packages than those mentioned.
The rest of this technical guideline will go through recommended file formats for tabular, textual files, and image files with less detailed information.
Often when one pictures data, they don’t think of complex geometries, but rather tabular data such as a list of field sites and associated variables recorded in an table or a survey responses in an excel sheet. Tabular data is data structured into rows and columns and can be wide or long.
Wide data is where each different variable is listed in a separate column, while long data is structured so a row is one observation, therefore one column contains all values, and another column contains the variable. Often with small amounts of data, a wide table can be more easily interpreted by humans, while long data is often required for running statistical analysis in computer programs. The use of the long format is highly recommended!
Table 3: Example of wide data
Table 4: Example of long data
We recommend the following open file formats for tabular data which does not include Excel sheets.
A CSV file (Comma Separated Variable) file is a text based data file that describes tabular data. Each row is one line, and the columns are separated by commas.
It is widely used as a data exchange format and highly recommended. If your tabular data do not contain commas, than a CSV file is the recommended choice. If your data do contain commas, such as survey responses, one can delineate columns in a TXT file based on tab’s or other characters such as semicolons.
To export a table as a CSV file or tab delineated file in R, follow and adapt this code:
For files mostly comprising of text, such as transcripts and survey questions, we recommend .txt, .pdf, or .docx files which are explained in more detail below. While .docx are not open and therefore not ideal, currently the IPBES communitiy relies on them heavily and thus this format is still recommended. When using .docx, also export the document to a pdf when submitting the data to a repository.
A .txt file, is a plain text file that just contains text, therefore it is human-readable and interoperable. This file can be opened in any text editor and almost all operating systems come with text editors that allow you to easily create, open and edit text files. There is no limitation on the size of contents. The default character set of text files is ASCII, but they can also be saved in Unicode format, such as UTF-8 which is acceptable.
A PDF (Portable Document Format) was originally created by Adobe back in the 1990s, but was released as a open format in 2008. PDFs allow one to view documents easily independent of application software and operating system that is why presentations are often shared in PDF format as opposed to a powerpoint file. The PDF file format has the ability to contain not only text, but images, hyperlinks, form-fields, digital signatures, attachments, and other information. PDFs are very suitable for long-term storage of documents, as they are independent of application software.
DOCX files are Microsoft Word documents. This format is not open and is not interoperable. While TXT and PDF files are preferred to DOCX files, the IPBES community relies heavily on DOCX files and thus it is still acceptable to use this format. In 2007, the original standard DOC file format was updated to a new standard DOCX file, where the addition of the X stands for XML. When using .docx, also export the document to a pdf when submitting the data to a repository.
Vector formats are superior to raster formats for most images such as line drawings, including plots, graphs, or logos. Vector formats will never look pixelated, as they are not based on pixels, but rather mathematical forumlas that define geometric objects such as polygons, lines, and curves. Vector images are more malleable than raster images, smaller in size, faster to display, and perfectly scalable.
Raster images are based on pixels with a defined resolution and are the preferred format for photographs or non-line art images. One of the largest considerations for raster image files is resolution. Resolution is often reported in the units DPI, dots per inch. As resolution increases, clarity and the size of the file increases. The standard for displaying images on websites is 72dpi, for printing it is 300dpi or higher, and for submitting figures for publications it is 600dpi.
SVG (Scalable Vector Graphics) is a vector image format, which uses XML text to specify lines and color. SVG is a great option and highly recommended for graphs, logos, and illustrations, especially for publishing materials on the internet. It is supported by all major browsers, but most default image editors do not support SVG. It should not be used to save photographs.
To export a SVG file from R, one can use this base code and add additional arguments such as height, width, point size, to the svg()
function.
EPS (Encapsulated PostScript) was created by Adobe in 1992 and is based on Postscript rather than XML. EPS was originally intended for a print workflow not an online workflows and is no longer in development. EPS file format is recommended and better than SVG for high-quality document printing, printed logos, and marketing materials.
To export a EPS file from R, one can use this base code and add additional arguments to the postscript()
function.
PDFs (Portable Document Files) mentioned previously under the textual files section can also be saved as a vector file. Vector formated PDFs allow one to easily select objects and are preferred to raster formatted PDFs. PDFs can have a mix of vector and raster content, but when exported from R, the graphics will be in vector format. If scanned, the PDF will be in raster format.
To export a figure as a PDF file from R, one can use this base code and change and add additional arguments to the pdf()
function.
PNG (Portable Network Graphics) files are a type of raster file format that supports lossless data compression and has no copyright limitations. We generally recommend PNG files for storage and sharing images online. The lossless compression means that there is no loss in quality each time it is opened and saved again. PNG only supports the RGB color space and not CMYK, and does not support animations.
To export a PNG file from R, one can use this based code and change and add additional arguments to the png()
funciton.
In comparison, JPEG (or JPG) files are raster files that are often used online for displaying images as they are fast to load. It has lossy compression which means each time it is saved it reduces in file size but also in quality. We do not recommend JPEG files for long term storage, except in the case of images which come from e.g. cameras as nothing is gained in converting an original JPEG into a PNG.
To export a jpeg file from R, one can use this base code and change and add additional arguments to the jpeg()
argument, although we discourage exporting graphs in jpeg.
Another option is TIFF. A TIFF (Tagged Image File) is a raster file that also supports lossless compression. We do not recommend using this tile type on websites as it is slow to load due to its large size and has limited browser support, but it is recommended for long term storage or publications. If there are no concerns about losing embedded metadata and tags, in general, it makes sense to convert a TIFF image to PNG as it reduces the size and is lossless.
To export a TIFF image file from R, one can use this base code and change and add additional arguments to the tiff()
function, although we discourage exporting graphs in tiff.
Technical Guideline Series
Prepared by Joy Kumagai and Peter Bates Reviewed by Aidin Niamir, the Task Force on Knowledge and Data and the Task Force on Indigenous and Local Knowledge
For any inquires please contact and
Version: 1.0 Last Updated: 18 July 2022
DOI:
This technical guideline is a template invitation email for contributing authors to IPBES assessments, which covers aspects relating to ILK and the data and knowledge management policy. The guideline is intended for assessment technical support units.
This formal email could be sent after initial more informal contact is made, as appropriate.
Dear [contributing author name],
It is my pleasure to invite you to be a Contributing Author for the assessment of [assessment name], that is being developed by the . Specifically, you are invited to contribute to Chapter [#] on [Chapter title]. Your contribution would focus on the section on [topic], and you would be working with [IPBES authors names], who are [Lead Author(s)/Coordinating Lead Author(s)] of the assessment and copied on this email.
The assessment of [assessment name] was approved by the IPBES plenary in [year] and will run until [year]. It is being developed based on the attached scoping document.
As a contributing author, you would be linked directly to authors of the assessment and would be requested to provide specific contributions around themes, topics or geographic areas, as discussed with [author name]. Contributing Authors do not however have access to drafts of the full chapter due to IPBES rules on confidentiality of assessment drafts.
Contributions by contributing authors are always highly valuable and gratefully received, and support the development of key themes in an assessment chapter. However, we cannot guarantee that contributions will be reproduced in their entirety in the assessment. They may be edited during rounds of drafting and external review processes so that they form a part of a coherent chapter. Also, depending on space and chapter structures, the chapter may eventually use a synthesised version of your contribution. However, your full contribution may be made publicly available in a data management report or in supplementary materials that are available online as companion resources to the assessment.
If you choose to share any previously unpublished indigenous and local knowledge or materials, you will be asked to confirm that you are authorised to share this information and confirm that it is non-confidential as specified in our guidance on documenting indigenous and local knowledge ().
To enable open science and accessibility within IPBES, the Platform has a data and knowledge management policy available at .
Contributing authors are acknowledged on the first page of the Chapter to which they have contributed, but they are not listed as authors or within the citation of the chapter and assessment.
Finally, further communications guiding your contributions will be made directly by [author name]. However, if you have any further questions feel free to contact me at [email].
We thank you for considering this invitation to contribute to this assessment, and we look forward to your valuable input.
[Signature]
Technical Guideline Series
Revised by Renske Gudde - Technical Support Unit (TSU) of Knowledge and Data Reviewed by Aidin Niamir - Head of the Technical Support Unit of Knowledge and Data and Rainer M. Krug - IPBES Task Force on Knowledge and Data For any inquires please contact
Version: 1.2 Last Updated: 9 November 2023
DOI:
This technical guidelines focuses on recommendations for the use of colour in maps and can be applied to other visualisations. We present some base considerations for colour paired with links to useful resources for further exploration to be used by all IPBES experts creating figures and maps.
Begin by loading the following packages:
Colour is a critical key to communicating information to audiences. Often incorrect colour schemes are used that either make it difficult for people to understand the map or bias the interpretation. There are generally three types of palettes, qualitative, sequential, and diverging each corresponding to distinctive qualities of the data they represent.
Qualitative or categorical palettes have distinctive colours that are used to represent nominal or qualitative data with no presumed ordering, such as gender or cereal brands. Sequential palettes often represent continuous data such as temperature or height. These palettes are generally marked by even steps in value or intensity of a hue. Diverging palettes have two sets of sequential palettes meeting on a mutual colour which can represent continuous data with an obvious midpoint, such as data representing change from a baseline, or are often used to represent Likert scale survey responses.
When creating a map or figure, please choose colour schemes that are colour blind friendly (more information about or about ). Printing a map or figure in black and white or grey tones are a good method to see how well the map or figure is interpretable without colour. Especially for maps, when areas without sufficient data are indicated, it is advisable to use a pattern instead of grey scales, because without the use of colour it can seem that there is a value for the data deficient areas.
There are various apps to simulate colour blindness:
Figure 2: Map illustrating the differences of interpretation of data displayed with a sunset palette scheme and the traditional rainbow palette.
In R, one can use the RColorBrewer package which provides convenient qualitative, sequential, and diverging palettes.
To display all of the prepared palettes within the RColorBrewer package run this line of code:
To display all of the colourblind friendly palettes run this:
If you would like to visualise a specific palette, specify the number of colours and the palette name.
These values can be used to specify specific colours for a plot. To return the hexadecimal colour code of a palette, use this code: brewer.pal(n, name)
For example:
We could then call those specific colours in a plot, as opposed to using general names like “blue” or pre-set palettes.
First run this code to download country data and the large cities dataset we will be working with. The code also projects both datasets to the Robinson Projection.
Example 1: Continuous Data We will use population information contained in the large cities dataset, which is a continuous variable. The function scale_color_gradient() is used for the continuous data. The hex values were obtained from the brewer.pal function shown in the last section.
Example 2: Categorical Data We now will use the land dataset and function scale_fill_brewer() to set the colour of the continents according to one of the qualitative palettes included in the RColorBrewer package.
Use colour schemes and projections consistently throughout the chapter, if possible throughout the assessment.
No data is symbolized with the colour grey (BBBBBB; RGB:187, 187, 187)
White or light sky blue (87CEFA; RGB: 135, 206, 250) is used for the ocean in maps
Don’t overload colour - avoid colour when not necessary - use it to highlight important information
Grey normally represents NA data in a map, but can be very useful in other plots to focus your audience’s attention on key parts of your visualisation that have colour
Technical Guideline Series
Prepared by The Technical Support Unit and Task Force on Knowledge and Data and the Technical Support Unit and Task Force on Indigenous and Local Knowledge
For any inquires please contact and
Version: 1.1 Last Updated: 14 July 2022
DOI:
The purpose of this technical guideline is to provide practical guidance for all IPBES authors and technical support units on how to work with and document Indigenous and Local Knowledge (ILK*) within IPBES. All IPBES experts working with ILK are expected to follow the requirements in the and free, prior, and informed consent (FPIC) as laid out in the .
The policy specifically requires all experts to follow the (Collective benefit, Authority control, Responsibility and Ethics) and the (Findable, Accessible, Interoperable and Reusable). The policy is also built upon the concept of open science, reflected within the . IPBES experts are also required to follow the IPBES process for adhering to the FPIC principles when working with ILK. Please refer to the methodological guidance which provides a detailed process for ensuring that FPIC principles are followed for assessments.
This guideline provides both practical advice and key considerations on how to apply these principles. Applying the principles will require careful consideration on a case-by-case basis, as opposed to following a rigid protocol. Additionally, this guidance is not intended to be comprehensive and depending on the nature of the project, other ethical guidelines could be consulted. Please contact the technical support unit on data () and/or the technical support unit on indigenous and local knowledge () with any specific questions, concerns, or recommendations. Note that this guideline is a working document and may be periodically updated. The newest version will always be available via
There are some challenges for moving towards full FPIC, CARE, and FAIR alignment in IPBES products and their underlying processes, particularly:
Indigenous peoples and local communities (IPLCs**), like all other knowledge and data owners, do not have final consent over the findings of the assessments, as assessment findings are intended to be based on a process of reviewing available evidence.
Most IPBES products are only available online and additionally only in English, with the exception of assessments’ SPMs and some additional products. Therefore, full accessibility and findability of IPBES products for many IPLCs is not achieved within the standard IPBES distribution channels.
Where authors rely on existing materials (including peer-review publications, grey literature and other sources) to work with ILK, it may not always be possible to know if FPIC principles were followed during the development of that literature, or to verify the veracity and reliability of the materials.
Keeping these challenges in mind, IPBES strives to ensure that FPIC and the CARE and FAIR principles are fulfilled to the fullest extent possible within the mandate of the Platform, by the following overarching approaches:
1. Ensuring that IPLCs are informed of the IPBES process prior to providing contributions
Information about IPBES processes, products, and goals, and how these relate to the activity in question, needs to be provided prior to IPLCs participating, so that they can decide how they wish to share knowledge and what they wish to share. This can be achieved either through an explanatory email or text provided prior to an activity, for example, in the case of the call for contributions or when approaching contributing authors, with follow-up discussions as needed. In the case of dialogue workshops, an initial session of the workshop is also set aside to further explain and discuss aims, uses and storage of information shared during the workshop.
2. Ensuring that IPLCs are engaged in developing assessments, informed of assessment content, and that they can review and comment on drafts
The main mechanism for ensuring that IPLCs are engaged in developing assessments, informed of assessment content, and that they can review and comment on drafts is the dialogue workshops and other online webinars and events that aim to inform IPLCs of current IPBES processes. The scoping dialogue workshop provides a first opportunity for IPLCs to learn about and help to frame an assessment. The first dialogue workshop further provides an opportunity for co-developing key themes and questions for the assessment, refining methods and approaches, and highlighting any risks or challenges relating to ILK and IPLC issues. The second and third dialogue workshops in an assessment cycle take place during the assessment review periods. These dialogues are designed to give IPLCs the opportunity to understand and comment on draft assessment materials, to provide any additional resources that could be used to improve an assessment text, and to raise any issues of concern in terms of representation of IPLCs and their knowledge, use of confidential knowledge, and information or gaps. Authors can use these dialogue workshops to raise any concerns they have with their chapters, especially where they are unsure whether FPIC was followed in materials reviewed, as described below.
3. Enhancing accessibility of IPBES products to IPLCs
The following activities and processes aim to enhance accessibility of IPBES products to IPLCs:
Final assessments and associated IPBES products are publicly available online;
IPLCs who contributed to the Assessments will be notified of their approval and online publication;
Webinars and other events are held around these materials to enhance their outreach and uptake;
IPBES will also aim to work with other organisations, including the BES-Net programme, to further develop outreach and communication materials in multiple languages.
4. Ensuring that access to confidential ILK is restricted
Where appropriate, IPBES authors, together with the ILK task force and TSU, will work with IPLCs to ensure that their knowledge is only represented in ways that do not reveal confidential information with their permission (for example, a synthesis of medicinal plant use rather than specific details of this use).
Alongside the overarching processes described above, authors and TSUs can also work to ensure that FPIC, CARE, and FAIR are fulfilled to the maximum extent possible when working with different sources of ILK. ILK can come from a variety of sources, such as outcomes of IPBES dialogues, published materials, unpublished materials submitted during a review period, or from contributing authors. The recommended processes for different types of sources of ILK are discussed below. IPBES experts, including Contributing Authors, will need to document these processes within data management reports as explained in section IV.
The IPBES ILK dialogue workshop process is designed to closely align with the CARE principles, and is an FPIC process, as follows:
Participants are informed at the outset of the objectives of the workshop, and of the uses, storage and access to information provided;
Participants are given the opportunity after the dialogue to comment on and edit the draft report and any other materials produced, and can remove the information they provided at any time;
All information provided during the dialogue is included within the workshop report, which is publicly available, so there is no additional information stored by IPBES to which further access is needed, unless participants specifically request that their information remains confidential;
As such, when citing the reports, authors can be confident that it follows FPIC as well as the CARE and FAIR principles. However, there are additional considerations:
If parts of the report will be quoted in their entirety, or case studies from the reports will be explicitly highlighted in the assessment, these portions of text should be sent to participants for their review and approval. Authors can contact the technical support unit on ILK to coordinate this. Appropriate credit should also be given to the dialogue workshop participants alongside these portions of text, rather than only referencing the IPBES report.
IPBES authors review literature and materials describing ILK, which could include peer-reviewed articles, as well as published or unpublished grey literature such as NGO reports, community reports, and online videos, etc. Authors should be attentive to the possibility that FPIC may not have been properly sought by the authors of published materials, even where it appears to be published by a community. It is, however, generally not possible to trace each of these materials back to its source and check on FPIC and CARE compliance. However, there are key issues or themes within materials that can indicate that further attention may be needed:
Materials that are critical of IPLCs;
Materials that detail rituals or spiritual practices;
Materials that detail uses of medicines, including plants and animals.
If such themes are detailed in a material, the following steps can be taken:
Send any material in question to the ILK TSU for verification by the ILK task force or by participants of a dialogue workshop, including material that will become part of other IPBES products, such as a data management report.
Moreover, if a single paper or limited number of papers are used to build a detailed case study, authors could check that FPIC and proper protocols were followed, or engage with the community in question to verify.
In some circumstances, assessment authors may review unpublished materials, such as community reports, songs, artworks, or personal communication. In such cases, authors need to be particularly attentive to the issues and actions highlighted above, and bring any concerns to the ILK TSU. If requested, IPBES can support owners of unpublished materials to ensure that these materials are findable and accessible, including recommendations for storage. For example, supporting communities to publish the materials on a public website, or for confidential materials, making metadata available online but storing the materials inside a closed repository. A full process of free, prior and informed consent needs to be followed to make sure that the communities involved understand and formally consent to the use, storage and access rights for the materials.
Contributing authors, who may or may not be IPLCs, are invited to contribute text, figures, or other inputs to an assessment. Again, any mention of the key issues highlighted above can indicate that there is a potential sensitivity and the ILK TSU should be informed.
A FPIC process should also be followed with IPLC contributing authors, to ensure that they understand and consent to the full proposed use, storage of, and access to the information they provide, including that:
The final assessment may not include their submitted contribution at all;
The final assessment may not include their submitted contribution in full;
The final assessment may include a highly edited or synthesised version of the their contribution;
Their full submitted contribution may be made publicly available in a data management report or in supplementary materials.
Where possible, IPBES authors should send contributing authors the parts of the assessment which include their contributions so they can review and approve the use of their text. Further, our recommendation is to include these points in a first email when approaching all relevant contributing authors, so that they agree to these terms. These contributing authors should also acknowledge that they are authorised to share any ILK contributions and confirm that these are non-confidential. Additionally, coordinating lead authors should have the responsibility to ensure that contact with contributing authors throughout the assessment is maintained. The technical guideline available at: https://ict.ipbes.net/data-management/technical-guidelines/Contributing-authors-template contains an adaptable template for a first email to contributing authors which states these points.
Finalised dialogue reports are openly available and published as open access on Zenodo.
Data management reports*** should be used to document the process of working with other sources of ILK to enhance transparency. For data management reports that include descriptions of all ILK sources, a section describing the following for each source should be included:
Published materials - If there were concerns identified including those described in section III - B, describe what steps were taken to address the concerns and the outcome. Rejected materials should be listed;
Unpublished materials - Describe what steps were taken to store these materials and to follow the process of FPIC. Additionally, include the agreed terms of use and access, appropriate accreditation, and how these materials can be found and accessed in the future;
Contributions - If there were concerns raised, describe what steps were taken to address the concerns and the outcome.
*The IPBES core glossary gives the following definition; “indigenous and local knowledge systems are social and ecological knowledge practices and beliefs pertaining to the relationship of living beings, including people, with one another and with their environments.” See https://www.ipbes.net/glossary/indigenous-local-knowledge-systems
**The IPBES glossary gives the following definition: Indigenous peoples and local communities (IPLCs) are, typically, ethnic groups who are descended from and identify with the original inhabitants of a given region, in contrast to groups that have settled, occupied or colonized the area more recently. IPBES does not intend to create or develop new definitions of what constitutes “indigenous peoples and local communities". See https://ipbes.net/glossary/indigenous-peoples-local-communities. Chapter 1 of the IPBES Global Assessment, and IPBES ILK methods guide also provide further detail and discussion.
***For more information on data management tutorials, Chapter 3 of the IPBES data management tutorials reviews the topic in detail, which is available here: https://doi.org/10.5281/zenodo.4014792
Technical Guideline Series
Prepared by Joy Kumagai and Aidin Niamir - IPBES Technical Support Unit (TSU) of Knowledge and Data Reviewed by the Task Force on Knowledge and Data (Hanno Seebens, Rainer Krug, Gregoire Dubois, Matea Vukelić, and Xubin Pan)
For any inquires please contact
Version: 1.0 Last Updated: 19 August 2022
DOI:
This technical guideline discusses how an indicator should be documented within IPBES and is intended for any experts that are involved in creating an indicator following the FAIR and CARE principles. The guideline focuses on the technical aspects of documentation.
Referenced and used within many biodiversity-related policy documents and instruments, indicators can help us to understand the current state of biodiversity at the ecosystem and species levels, threats and pressures, and conservation responses. They are incredibly important in our current science-policy interface enabling decision making from the international sphere to local responses. As defined by the , an indicator is "a measure based on verifiable data that conveys information about more than itself." Indicators often take the form of final datasets resulting from a workflow. An indicator workflow is defined here as the steps performed between the input data and final indicator. Successful biodiversity indicators have a variety of attributes such as scientifically valid, updated over time, responsive to change, easily understood, and consistent as described in the document " (Brooks & Bubb 2014)."
Clear and accessible documentation is necessary for indicators to be effective, consistent, and trustworthy. Unfortunately, indicator workflows often do not follow the (findable, accessible, interoperable, and reusable) and (collective benefit, authority to control, responsibility, and ethics) principles and are not reproducible by other scientists. For example, small differences in how geospatial layers or assumptions are treated can lead to vastly different results. There needs to be transparency in the underlying calculations, to maintain consistency and ensure reuse by others. IPBES is committed to following the open science principles and increasing transparency in data management. Therefore, this guideline discusses how indicators developed within IPBES should be documented starting from the input data, through processing, to outputs to enable reuse by the community.
Throughout this guideline, we will use the indexes from the publication, , as an example for documentation. The data descriptor paper published in Scientific Data describes two indexes which report on how much of six important marine habitats are within protected and conserved areas at the country and global scale
The recommendations throughout this section focus on practical steps to ensure the FAIR and CARE principles can be followed when documenting the indicator and its calculation.
It is essential to document where to find all the necessary inputs that go into the indicator workflow so others can calculate and update the indicator. Therefore, we suggest the following:
All input data are clearly referenced and noted with version and access date;
All input data need to be at least findable, although solely using open access datasets in compliance with the FAIR data management principles would be preferable but not feasible in all cases;
Additionally, all input data used are stored so it is possible to re-calculate the indicator exactly in case the original versions of the data are no longer available;
If any input datasets are products of Indigenous and local knowledge, it is crucial that a process of Free, Prior, and Informed Consent was completed before the data was generated and the information is used and made available only within the limits and following the intent set by the knowledge-holders;
The licences of the respective data are acknowledged and followed.
Ensuring that others can understand the methodology and repeat the workflow of the indicator allows people to improve upon and use the indicators in their own context, greatly expanding the reach and impact of an indicator. Therefore we suggest the following:
A visual figure is created that details the steps for transforming input data to calculate the indicator, in order to help others understand the workflow;
Any assumptions in the workflow are clearly stated and explained. For example, often when overlaying protected areas with species data, it is assumed that species within those protected areas are "protected," while in reality this is often not the case on the ground. Or another example, often in carbon stock calculations an expert may assume a 1-metre depth of soil.
Example: For the habitat protection indexes, these recommendations were followed while developing the workflow. The workflow was created using open source software, R, instead of ArcGIS Pro as this ensured consistency in processing the data and there is no requirement to buy a licence to use the workflow. All scripts used to process the original datasets and to calculate the indexes can be found within the associated GitHub folder, linked respectively within the data availability and code availability sections of the publication. To enable reusability, the workflow is also structured in a user-friendly way so that the entire process can be run using one R script. Finally, figure 5 (shown below) within the publication provides an overview of the workflow to explain what each script does and how it fits into the overall process of creating the indexes.
Now that the inputs and process behind the indicator are clearly documented and explained, the final dataset (i.e. the indicator) should be findable and accessible. Additionally, in the documentation there should be information about the interpretation and limits, e.g. the scale and time frame in which the indicator can be interpreted. Therefore, we recommend the following:
The final indicator dataset is easily findable and accessible in an online repository and has been assigned a DOI;
Within this repository, the indicator dataset is stored in an interoperable format with clear metadata (version number, temporal scale, geographic scale, etc.);
A licence is assigned to the indicator dataset and associated workflow, preferably CC-BY or CC0;
A contact person is clearly identified in the repository with a monitored email;
The indicator is communicated and interpreted clearly, including its limits and what questions it was developed to address, in a report/publication/media release to share it with the wider community;
Example: These guidelines are followed within our example.
The linked publication and affiliated media reports serve to communicate the indexes to a broader audience.
In general, the associated publication should provide all required information to reproduce the results, including a link to the workflow repository and final dataset.
Within IPBES, it is important that if any expert team develops an indicator, the associated technical support unit informs the technical support unit on knowledge and data. The technical support unit on knowledge and data can ensure that these steps are followed and all input data are accessible and stored in case the original source of the information is removed, enabling reuse by future assessments. Increasing transparency in the process of creating an indicator ensures consistency, allowing the scientific community to repeat workflows, improve upon them, and test different scenarios. Over time this process will build trust for the indicator and encourage their use to help inform policy and action.
References
These technical guidelines on data management, handling, and delivery have been prepared by the technical support unit on knowledge and data and reviewed by the task force on knowledge and data.
If interested, all source files are available on my . For any questions, feedback, or suggestions for future guidelines, contact
Please note: The designations employed and the presentation of material on the maps shown here do not imply the expression of any opinion whatsoever on the part of the IPBES concerning the legal status of any country, territory, city or area or of its authorities, or concerning the delimitation of its frontiers or boundaries.
Spatial data generally fall into either vector or raster data. Vector data consists of points, lines, and polygons that are based on point locations. Raster data is grid-based data, such as pixels on a screen or an image. Raster data is either continuous or discrete, for example a temperature dataset is continuous or a land cover dataset with classes is discrete. For more information on these geospatial data types and a general introduction to geospatial concepts please visit . Additionally, for a complete list of geospatial formats please reference .
We recommend using the GeoPackage format for storing geospatial information. This file format is new and less widely used, but a completely open format for storing geospatial data. As stated on “GeoPackage is an open, standards-based, platform-independent, portable, self-describing, compact format for transferring geospatial information.” A GeoPackage can store both vector and raster data (as tiles) and can have multiple layers per single file. The format allows for multiple geometry types per file, so one can store both point and polygon data within the same file.
We generally encourage everybody to use the GeoPackage format because of these reasons. Existing shapefiles can be converted by using the package stars
in R and
If you are interested in understanding all of the file types and contents in a GeoPackage detailed information on the structure of a GeoPackage can be found .
A shapefile is the most widely used vector type spatial data format and is recommended although it is not ideal and needs be used correctly. The geometry of a feature is stored as a shape comprising of a set of coordinates. Each feature is associated with a list of attributes within a table. Shapefiles can be used with almost all geospatial software and are well supported by open source software libraries. It was developed and currently regulated by ESRI, a commercial company. More information on shapefiles can be found on .
All files within one shapefile share the same file name with different extensions. These files can not be separated from each other and should be zipped into a single archive when being transferred. The mandatory and some optional extensions are included below but more are described on the ESRI website .
More technical information can be found on the Sustainability of Digital Formats website which supports the US Library of Congress Collections.
More information on KML is available from Google.
More information can be found on from the NASA standards and references webpage.
Recently, a format called, , has become increasingly popular which is a regular GeoTIFF file aimed at being hosted on a HTTP file server. This standard was developed in 2016 within the Open Source Geospatial Foundation project. The format enables efficient workflows on the cloud by utilizing tiling and overviews. It allows for efficient imagery data display and access through HTTP GET range requests, so end-users can just use the parts of the GeoTIFF they need. A cloud optimized GeoTIFF is larger in size than a normal GeoTIFF, but it enables faster access on a server.
If you are interested in exporting Cloud Optimized GeoTIFFs, one option is to use the write_tif
function from the gdalcubes
package described
More information on how the tiles are stored within the GeoPackage can be found
NetCDF was developed and maintained at Unidata. On their website they provide tutorials and documentation. A quick factsheet with more information is available .
R is able to read and write netCDF files using the package ncdf4
. For a full tutorial on how to read and write netCDF files, please refer to
We will now go through a very simple example starting with formatting and exporting NetCDF data adapted from and finally importing the netCDF we create. We will use the base R volcano dataset.
For more information on these geospatial data types and other types can be found here as well:
The sf
package is used to handle vector data, while the terra
and raster
packages are often used to handle raster data. The packages sf
and raster
have been used throughout these technical guidelines. For an overview on these packages, I recommend the vignettes on for each of the packages linked below.
A CSV file can be created from an excel sheet easily described , written in a txt file, or created in R or other computer programming languages. Text files are highly interoperable and can be imported and exported by almost any software designed for storing or manipulating data.
More information on the PDF file format can be found .
If you interested, more technical information can be found .
There are many different image file formats that one can choose from when exporting images. We recommend commonly used formats that are open and interoperable, such as SVG or PNG, but other formats may also be appropriate depending on the use case. Similar to geospatial information, there are two image file types vector and raster. For a more comprehensive list of image file formats please see
Thank you for your time. If you have any suggestions on further content or file format types you would like to see covered please contact us at the technical support unit at .
, open source for Mac and iOS, to simulate various types of colour blindness
, free available for Windows, Linux and Mac, focussing on the extreme forms of colour blindness (so that people with colour blindness that is less extreme or normal colour vision can also interpret the figures easily)
, real-time simulations of red-green colour-blindness for Windows.
There is also an R-package () which provides a collection of safe colours for various types of figures and maps.
Rainbow colour schemes are interpreted by humans to have sharp artificial boundaries that are not representative of the underlying data. in more detail the current problems involving the use of colour in science communication. An example of this is presented in the figure below taken from where geoid height is displayed using a sunset scheme and then a traditional rainbow scheme. Large jumps in the data are interpreted within the lines of light blue and yellow that are not inherent within the data.
provides a great overview on how to use the RColorBrewer package with these palettes integrated with ggplot with examples.
R uses hexadecimal to represent colours. “Hexadecimal is a base-16 number system used to describe colour. Red, green, and blue are each represented by two characters (#rrggbb) that has 16 possible symbols.” -
The next two examples showcase how to use the package RColorBrewer to set palletes within maps. We will use the populated places dataset from R natural earth website available in the first example . These are just example datasets whose accuracy has not been checked.
R Colour Sheet:
Useful tool to assist in picking palettes and colours:
Tool to visualise colours as someone with different types of colour blindness:
colourBlindness Package guide:
Your feedback on this content is welcome. Let us know what other useful material would you like to see here by emailing .
Specific materials are developed to make assessment findings more accessible to IPLCs. For example, the document ;
Through direct discussion with IPLCs, including in the dialogue workshops, and through work with the task force on ILK, IPBES authors and TSUs should seek to determine the appropriate accessibility of materials submitted by IPLCs. With the formally documented consent of those providing the materials, these confidential materials may be documented and stored in long-term repositories (e.g. Zenodo) with restricted access. Authors should contact the data and knowledge TSU () and ILK TSU () to coordinate this process.
Example: Following (shown below) within our example publication, each input dataset is listed together with its reference, the date of access and the version used to calculate the indicator. This information should be associated with the publication of the indicator as, for example, a README file.
The workflow used to calculate the indicator is contained in reproducible scripts, preferably in an open-source software as explained in Session 4.2 within the IPBES data management tutorials, '';
Version control software (such as behind github) is used to track, store, and share the development as well as the different versions of the workflow, which is especially useful when collaborating in a team. GitHub can not only be used to store the workflow, but the repository can be linked to a Zenodo account () to make the code citable. Other repositories can also be used. Any new releases of the code should be published with Digital Object Identifiers (DOIs) ensuring traceability;
Documenting the exact versions of the packages, libraries, and software used as well as the operating system is good practice and will help someone to reproduce the exact results by creating the same coding environment. Docker containers and certain packages, such as for reproducing packages in R, have been developed to assist with this.
The workflow used to create the indicator is also available within a repository that contains a readme file () explaining the inputs, processing steps, and how they work together, and licence so future users can re-create the indicator. As mentioned in B, GitHub is a great option for storing the workflows behind the indicator, and can be used with Zenodo to make the code citable by publishing releases of final versions of code with a DOI ensuring traceability (explained in detail ).
The final indicator dataset is provided in an online and open repository on Zenodo (). The final datasets are provided as CSV files (an interoperable file format), and the repository has clear metadata including a DOI, versioning, contact information, and authors' list (see image below).
The workflow scripts are also stored in the same repository with a README file () that explains the inputs, coding environment, and the file structure to be able to repeat the workflow.
Your feedback on this content is welcome. Let us know what other useful material you would like to see here by emailing .
Brooks, S. and Bubb, P. (2014) Key Knowledge for Successful Biodiversity Indicators UNEP-WCMC, Cambridge, UK 12pp.
Kumagai, J.A., Favoretto, F., Pruckner, S. et al. (2022) Habitat Protection Indexes - new monitoring measures for the conservation of coastal and marine habitats. Sci Data 9, 203.
Data Type
Recommended R Package
Link to a conversion guide
GeoPackage (vector)
sf / stars
GeoPackage (raster)
sf / stars
Shapefiles
sf
GeoJSON
sf
KML/KMZ
sf
GeoTIFF
raster / terra
NetCDF
ncdf4
Experiment
Minimum Temperature
Maximum Temperature
Average Temperature
1
8
20
15
2
15
27
23
3
21
30
25
Experiment
Variable
Temperature
1
Minimum Temperature
8
1
Maximum Temperature
20
1
Average Temperature
15
2
Minimum Temperature
15
2
Maximum Temperature
27
2
Average Temperature
23
3
Minimum Temperature
21
3
Maximum Temperature
30
3
Average Temperature
25
Data Type
Recommended Format
Geospatial Vector Data
GeoPackage, Shapefile, GeoJSON, KML/KMZ
Geospatial Raster Data
GeoTIFF, GeoPackage, NetCDF
Tabular Data
CSV, TXT
Textual Data
TXT, PDF, DOCX*
Figures / Line Drawings
SVG, EPS, PDF
Photographs
PNG, JPEG