diff --git a/_modules/forestatrisk/data/compute/compute_forest.html b/_modules/forestatrisk/data/compute/compute_forest.html index 2f1e129..fbe77a7 100644 --- a/_modules/forestatrisk/data/compute/compute_forest.html +++ b/_modules/forestatrisk/data/compute/compute_forest.html @@ -102,7 +102,6 @@

Source code for forestatrisk.data.compute.compute_forest

"""Processing forest data.""" import subprocess -from glob import glob from osgeo import gdal @@ -111,7 +110,7 @@

Source code for forestatrisk.data.compute.compute_forest

[docs] -def compute_forest(iso, proj, extent, verbose=False): +def compute_forest(proj, extent, verbose=False): """Processing forest data. :param iso: Country iso code. @@ -131,10 +130,6 @@

Source code for forestatrisk.data.compute.compute_forest

# Creation options copts = ["COMPRESS=LZW", "PREDICTOR=2", "BIGTIFF=YES"] - # Build vrt file - tif_forest_files = glob("forest_*.tif") - gdal.BuildVRT("forest.vrt", tif_forest_files, callback=cback) - # Reproject param = gdal.WarpOptions( options=["overwrite"], @@ -150,49 +145,37 @@

Source code for forestatrisk.data.compute.compute_forest

) gdal.Warp("forest_src.tif", "forest.vrt", options=param) + # Number of bands (or years) + with gdal.Open("forest_src.tif") as ds: + nbands = ds.RasterCount + + # Index offset if band == 3 + k = 1 if nbands == 3 else 0 + # Separate bands - gdal.Translate("forest_t1_src.tif", "forest_src.tif", - maskBand=None, - bandList=[1], creationOptions=copts, - callback=cback) - gdal.Translate("forest_t2_src.tif", "forest_src.tif", - maskBand=None, - bandList=[3], creationOptions=copts, - callback=cback) - gdal.Translate("forest_t3_src.tif", "forest_src.tif", - maskBand=None, - bandList=[5], creationOptions=copts, - callback=cback) - gdal.Translate("forest_2005_src.tif", "forest_src.tif", - maskBand=None, - bandList=[2], creationOptions=copts, - callback=cback) - gdal.Translate("forest_2015_src.tif", "forest_src.tif", - maskBand=None, - bandList=[4], creationOptions=copts, - callback=cback) + for i in range(nbands): + gdal.Translate(f"forest_t{i + k}_src.tif", "forest_src.tif", + maskBand=None, + bandList=[i + 1], creationOptions=copts, + callback=cback) # Rasterize country border # (by default: zero outside, without nodata value) - gdal.Rasterize("ctry_PROJ.tif", "ctry_PROJ.shp", + gdal.Rasterize("ctry_PROJ.tif", "ctry_PROJ.gpkg", outputBounds=extent, xRes=30, yRes=30, targetAlignedPixels=True, burnValues=[1], outputType=gdal.GDT_Byte, creationOptions=copts, callback=cback) - # Compute distance to forest edge at t1 for modelling - compute_distance("forest_t1_src.tif", "dist_edge_t1.tif", - values=0, nodata=0, verbose=verbose) - - # Compute distance to forest edge at t2 for validating - compute_distance("forest_t2_src.tif", "dist_edge_t2.tif", - values=0, nodata=0, verbose=verbose) - - # Compute distance to forest edge at t3 for forecasting - compute_distance("forest_t3_src.tif", "dist_edge_t3.tif", - values=0, nodata=0, verbose=verbose) + # Compute distance to forest edge at t1, t2, and t3 + # for modelling, validating, and forecasting, respectively + for i in range(3): + compute_distance(f"forest_t{i + 1}_src.tif", + f"dist_edge_t{i + 1}.tif", + values=0, nodata=0, verbose=verbose) - # Compute fcc12_src.tif + # Compute fcc + # Command to compute fcc cmd_str = ( 'gdal_calc.py --overwrite ' '-A {0} -B {1} ' @@ -200,42 +183,28 @@

Source code for forestatrisk.data.compute.compute_forest

'--calc="255-254*(A==1)*(B==1)-255*(A==1)*(B==0)" ' '--co "COMPRESS=LZW" --co "PREDICTOR=2" --co "BIGTIFF=YES" ' '--NoDataValue=255 --quiet') - rast_a = "forest_t1_src.tif" - rast_b = "forest_t2_src.tif" - rast_out = "fcc12_src.tif" - cmd = cmd_str.format(rast_a, rast_b, rast_out) - subprocess.run(cmd, shell=True, check=True, - capture_output=False) - - # Compute distance to past deforestation at t2 for modelling - compute_distance("fcc12_src.tif", "dist_defor_t2.tif", - values=0, nodata=0, input_nodata=True, - verbose=verbose) - - # Compute fcc23_src.tif - rast_a = "forest_t2_src.tif" - rast_b = "forest_t3_src.tif" - rast_out = "fcc23_src.tif" - cmd = cmd_str.format(rast_a, rast_b, rast_out) - subprocess.run(cmd, shell=True, check=True, - capture_output=False) + # Loop on bands + for i in range(nbands - 1): + # Compute fcc{i}{i + 1}_src.tif + rast_a = f"forest_t{i + k}_src.tif" + rast_b = f"forest_t{i + 1 + k}_src.tif" + fcc_out = f"fcc{i + k}{i + 1 + k}_src.tif" + cmd = cmd_str.format(rast_a, rast_b, fcc_out) + subprocess.run(cmd, shell=True, check=True, + capture_output=False) - # Compute distance to past deforestation at t3 for forecasting - compute_distance("fcc23_src.tif", "dist_defor_t3.tif", - values=0, nodata=0, input_nodata=True, - verbose=verbose) + # Compute distance to past deforestation only if 4 bands + if nbands == 4: + for i in range(nbands - 1): + # Compute distance to past deforestation at t1, t2, and t3 + dist_out = f"dist_defor_t{i + 1}.tif" + compute_distance(fcc_out, dist_out, + values=0, nodata=0, input_nodata=True, + verbose=verbose) # Mask forest rasters with country border - rast_in = [ - "forest_t1_src.tif", "forest_t2_src.tif", - "forest_t3_src.tif", "forest_2005_src.tif", - "forest_2015_src.tif" - ] - rast_out = [ - "forest_t1.tif", "forest_t2.tif", - "forest_t3.tif", "forest_2005.tif", - "forest_2015.tif" - ] + rast_in = [f"forest_t{i + k}_src.tif" for i in range(nbands)] + rast_out = [f"forest_t{i + k}.tif" for i in range(nbands)] cmd_str = ( 'gdal_calc.py --overwrite ' '-A {0} -B ctry_PROJ.tif ' @@ -249,9 +218,9 @@

Source code for forestatrisk.data.compute.compute_forest

subprocess.run(cmd, shell=True, check=True, capture_output=False) - # Mask fcc12 and fcc23 with country border - rast_in = ["fcc12_src.tif", "fcc23_src.tif"] - rast_out = ["fcc12.tif", "fcc23.tif"] + # Mask fcc with country border + rast_in = [f"fcc{i + k}{i + k + 1}_src.tif" for i in range(nbands - 1)] + rast_out = [f"fcc{i + k}{i + k + 1}.tif" for i in range(nbands - 1)] cmd_str = ( 'gdal_calc.py --overwrite ' '-A {0} -B ctry_PROJ.tif ' @@ -267,7 +236,7 @@

Source code for forestatrisk.data.compute.compute_forest

capture_output=False) # Create raster fcc123.tif - # (0: nodata, 1: for2000, 2: for2010, 3: for2020) + # (0: nodata, 1: t1, 2: t2, 3: t3) cmd = ( 'gdal_calc.py --overwrite ' '-A forest_t1.tif -B forest_t2.tif -C forest_t3.tif ' @@ -276,26 +245,10 @@

Source code for forestatrisk.data.compute.compute_forest

'--co "COMPRESS=LZW" --co "PREDICTOR=2" --co "BIGTIFF=YES" ' '--NoDataValue=0 --quiet' ) - subprocess.run(cmd, shell=True, check=True, - capture_output=False) - - # Create raster fcc12345.tif - # (0: nodata, 1: for2000, 2: for2005, - # 3: for2010, 4: for2015, 5: for2020) - cmd = ( - 'gdal_calc.py --overwrite ' - '-A forest_t1.tif -B forest_2005.tif -C forest_t2.tif ' - '-D forest_2015.tif -E forest_t3.tif ' - '--outfile=fcc12345.tif --type=Byte ' - '--calc="A+B+C+D+E" ' - '--co "COMPRESS=LZW" --co "PREDICTOR=2" --co "BIGTIFF=YES" ' - '--NoDataValue=0 --quiet' - ) subprocess.run(cmd, shell=True, check=True, capture_output=False)
- # End
diff --git a/_modules/forestatrisk/data/country_compute.html b/_modules/forestatrisk/data/country_compute.html index db3a41a..ee2d184 100644 --- a/_modules/forestatrisk/data/country_compute.html +++ b/_modules/forestatrisk/data/country_compute.html @@ -112,7 +112,7 @@

Source code for forestatrisk.data.country_compute

from .compute import compute_biomass_avitabile, compute_osm from .compute import compute_srtm, compute_wdpa from .compute import compute_forest -from .extent_shp import extent_shp +from .get_vector_extent import get_vector_extent
@@ -156,21 +156,21 @@

Source code for forestatrisk.data.country_compute

""" # Reproject GADM - ofile = os.path.join(temp_dir, "ctry_PROJ.shp") - ifile = os.path.join(temp_dir, "gadm36_" + iso3 + "_0.shp") + ofile = os.path.join(temp_dir, "ctry_PROJ.gpkg") + ifile = os.path.join(temp_dir, "gadm41_" + iso3 + "_0.gpkg") param = gdal.VectorTranslateOptions( accessMode="overwrite", srcSRS="EPSG:4326", dstSRS=proj, reproject=True, - format="ESRI Shapefile", + format="GPKG", layerCreationOptions=["ENCODING=UTF-8"], ) gdal.VectorTranslate(ofile, ifile, options=param) # Compute extent - ifile = os.path.join(temp_dir, "ctry_PROJ.shp") - extent_proj = extent_shp(ifile) + ifile = os.path.join(temp_dir, "ctry_PROJ.gpkg") + extent_proj = get_vector_extent(ifile) # Region with buffer of 5km xmin_reg = np.floor(extent_proj[0] - 5000) diff --git a/_modules/forestatrisk/data/download/download_gadm.html b/_modules/forestatrisk/data/download/download_gadm.html index f4d877f..09c806e 100644 --- a/_modules/forestatrisk/data/download/download_gadm.html +++ b/_modules/forestatrisk/data/download/download_gadm.html @@ -102,15 +102,12 @@

Source code for forestatrisk.data.download.download_gadm

"""Download GADM data.""" import os -from zipfile import ZipFile from urllib.request import urlretrieve -from ...misc import make_dir -
[docs] -def download_gadm(iso3, output_dir="."): +def download_gadm(iso3, output_file): """Download GADM data for a country. Download GADM (Global Administrative Areas) for a specific @@ -118,29 +115,17 @@

Source code for forestatrisk.data.download.download_gadm

:param iso3: Country ISO 3166-1 alpha-3 code. - :param output_dir: Directory where data is downloaded. Default to - current working directory. + :param output_file: Path to output GPKG file. """ - # Create directory - make_dir(output_dir) - - # Check for existing data - shp_name = os.path.join(output_dir, "gadm41_" + iso3 + "_0.shp") - if os.path.isfile(shp_name) is not True: - - # Download the zipfile from gadm.org - fname = os.path.join(output_dir, iso3 + "_shp.zip") - url = ( - "https://geodata.ucdavis.edu/gadm/gadm4.1/" - "shp/gadm41_" + iso3 + "_shp.zip" - ) - urlretrieve(url, fname) + # Check for existing file + if not os.path.isfile(output_file): - # Extract files from zip - with ZipFile(fname) as file: - file.extractall(output_dir)
+ # Download the file from gadm.org + url = ("https://geodata.ucdavis.edu/gadm/gadm4.1/" + f"gpkg/gadm41_{iso3}.gpkg") + urlretrieve(url, output_file)
diff --git a/_modules/forestatrisk/data/download/download_srtm.html b/_modules/forestatrisk/data/download/download_srtm.html index 95312a0..87d8aaa 100644 --- a/_modules/forestatrisk/data/download/download_srtm.html +++ b/_modules/forestatrisk/data/download/download_srtm.html @@ -114,8 +114,9 @@

Source code for forestatrisk.data.download.download_srtm

from urllib2 import HTTPError # HTTPError with Python 2 from ...misc import make_dir -from ..extent_shp import extent_shp +from ..get_vector_extent import get_vector_extent from .tiles_srtm import tiles_srtm +from .download_gadm import download_gadm
@@ -141,23 +142,12 @@

Source code for forestatrisk.data.download.download_srtm

make_dir(output_dir) # Check for existing data - shp_name = os.path.join(output_dir, "gadm36_" + iso3 + "_0.shp") - if os.path.isfile(shp_name) is not True: - - # Download the zipfile from gadm.org - fname = os.path.join(output_dir, iso3 + "_shp.zip") - url = ( - "https://biogeo.ucdavis.edu/data/gadm3.6/" - "shp/gadm36_" + iso3 + "_shp.zip" - ) - urlretrieve(url, fname) - - # Extract files from zip - with ZipFile(fname) as file: - file.extractall(output_dir) + gpkg_name = os.path.join(output_dir, "gadm41_" + iso3 + "_0.gpkg") + if os.path.isfile(gpkg_name) is not True: + download_gadm(iso3, gpkg_name) # Compute extent and SRTM tiles - extent_latlong = extent_shp(shp_name) + extent_latlong = get_vector_extent(gpkg_name) tiles_long, tiles_lat = tiles_srtm(extent_latlong) tiles_long = tiles_long.split("-") tiles_lat = tiles_lat.split("-") diff --git a/python_api/forestatrisk.data.html b/python_api/forestatrisk.data.html index 57a87b5..ec3789e 100644 --- a/python_api/forestatrisk.data.html +++ b/python_api/forestatrisk.data.html @@ -117,7 +117,7 @@

Quick search

Download

-forestatrisk.data.download.download_gadm(iso3, output_dir='.')[source]
+forestatrisk.data.download.download_gadm(iso3, output_file)[source]

Download GADM data for a country.

Download GADM (Global Administrative Areas) for a specific country. See https://gadm.org.

@@ -125,8 +125,7 @@

Download
Parameters:
  • iso3 – Country ISO 3166-1 alpha-3 code.

  • -
  • output_dir – Directory where data is downloaded. Default to -current working directory.

  • +
  • output_file – Path to output GPKG file.

@@ -347,7 +346,7 @@

Compute
-forestatrisk.data.compute.compute_forest(iso, proj, extent, verbose=False)[source]
+forestatrisk.data.compute.compute_forest(proj, extent, verbose=False)[source]

Processing forest data.

Parameters:
diff --git a/searchindex.js b/searchindex.js index 471824e..ff5272c 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"0. Definitions": [[7, "definitions"]], "1. Data": [[9, "1.-Data"], [10, "1.-Data"]], "1. Source Code": [[7, "source-code"]], "1.1 Import and unzip the data": [[9, "1.1-Import-and-unzip-the-data"], [10, "1.1-Import-and-unzip-the-data"]], "1.2 Files": [[9, "1.2-Files"], [10, "1.2-Files"]], "1.3 Sampling the observations": [[9, "1.3-Sampling-the-observations"], [10, "1.3-Sampling-the-observations"]], "1.4 Correlation plots": [[9, "1.4-Correlation-plots"]], "10. Automatic Licensing of Downstream Recipients": [[7, "automatic-licensing-of-downstream-recipients"]], "11. Patents": [[7, "patents"]], "12. No Surrender of Others\u2019 Freedom": [[7, "no-surrender-of-others-freedom"]], "13. Use with the GNU Affero General Public License": [[7, "use-with-the-gnu-affero-general-public-license"]], "14. Revised Versions of this License": [[7, "revised-versions-of-this-license"]], "15. Disclaimer of Warranty": [[7, "disclaimer-of-warranty"]], "16. Limitation of Liability": [[7, "limitation-of-liability"]], "17. Interpretation of Sections 15 and 16": [[7, "interpretation-of-sections-15-and-16"]], "2. Basic Permissions": [[7, "basic-permissions"]], "2. Model": [[9, "2.-Model"], [10, "2.-Model"]], "2.1 Model preparation": [[9, "2.1-Model-preparation"], [10, "2.1-Model-preparation"]], "2.2 Variable selection": [[9, "2.2-Variable-selection"]], "2.2 iCAR model": [[10, "2.2-iCAR-model"]], "2.3 Final model": [[9, "2.3-Final-model"]], "2.3 Model summary": [[10, "2.3-Model-summary"]], "2.4 Model summary": [[9, "2.4-Model-summary"]], "3. Model comparison and validation": [[9, "3.-Model-comparison-and-validation"]], "3. Predict": [[10, "3.-Predict"]], "3. Protecting Users\u2019 Legal Rights From Anti-Circumvention Law": [[7, "protecting-users-legal-rights-from-anti-circumvention-law"]], "3.1 Cross-validation": [[9, "3.1-Cross-validation"]], "3.1 Interpolate spatial random effects": [[10, "3.1-Interpolate-spatial-random-effects"]], "3.2 Deviance": [[9, "3.2-Deviance"]], "3.2 Predict deforestation probability": [[10, "3.2-Predict-deforestation-probability"]], "4. Conveying Verbatim Copies": [[7, "conveying-verbatim-copies"]], "4. Predict": [[9, "4.-Predict"]], "4. Project future forest cover change": [[10, "4.-Project-future-forest-cover-change"]], "4.1 Interpolate spatial random effects": [[9, "4.1-Interpolate-spatial-random-effects"]], "4.2 Predict deforestation probability": [[9, "4.2-Predict-deforestation-probability"]], "5. Conveying Modified Source Versions": [[7, "conveying-modified-source-versions"]], "5. Figures": [[10, "5.-Figures"]], "5. Project future forest cover change": [[9, "5.-Project-future-forest-cover-change"]], "5.1 Historical forest cover change": [[10, "5.1-Historical-forest-cover-change"]], "5.2 Spatial random effects": [[10, "5.2-Spatial-random-effects"]], "5.3 Spatial probability of deforestation": [[10, "5.3-Spatial-probability-of-deforestation"]], "5.4 Future forest cover": [[10, "5.4-Future-forest-cover"]], "6. Carbon emissions": [[9, "6.-Carbon-emissions"]], "6. Conveying Non-Source Forms": [[7, "conveying-non-source-forms"]], "7. Additional Terms": [[7, "additional-terms"]], "7. Figures": [[9, "7.-Figures"]], "7.1 Historical forest cover change": [[9, "7.1-Historical-forest-cover-change"]], "7.2 Spatial random effects": [[9, "7.2-Spatial-random-effects"]], "7.3 Spatial probability of deforestation": [[9, "7.3-Spatial-probability-of-deforestation"]], "7.4 Future forest cover": [[9, "7.4-Future-forest-cover"]], "8. Termination": [[7, "termination"]], "9. Acceptance Not Required for Having Copies": [[7, "acceptance-not-required-for-having-copies"]], "Access to Google Drive with RClone": [[8, "access-to-google-drive-with-rclone"], [11, "access-to-google-drive-with-rclone"]], "Access to Google Earth Engine API": [[8, "access-to-google-earth-engine-api"], [11, "access-to-google-earth-engine-api"]], "Access to WDPA API": [[8, "access-to-wdpa-api"], [11, "access-to-wdpa-api"]], "Adding data on ultramafic soils": [[11, "adding-data-on-ultramafic-soils"]], "Articles": [[0, "articles"]], "Attribution": [[3, "attribution"]], "Changelog": [[1, "changelog"]], "Citation": [[2, "citation"]], "Code of conduct": [[3, "code-of-conduct"]], "Community guidelines": [[4, "community-guidelines"]], "Compute": [[14, "compute"]], "Compute explanatory variables": [[8, "compute-explanatory-variables"], [11, "compute-explanatory-variables"]], "Compute forest cover change": [[8, "compute-forest-cover-change"], [11, "compute-forest-cover-change"]], "Contribute to code": [[4, "contribute-to-code"]], "Contributing": [[5, "contributing"]], "Correlation plots": [[11, "correlation-plots"]], "Country data": [[8, "country-data"]], "Cross-validation": [[11, "cross-validation"]], "Data": [[8, "data"], [11, "data"], [13, "data"]], "Deprecated": [[14, "deprecated"]], "Deviance": [[11, "deviance"]], "Download": [[14, "download"]], "Download raw data": [[8, "download-raw-data"], [11, "download-raw-data"]], "Effect of the distances to road and forest edge": [[11, "effect-of-the-distances-to-road-and-forest-edge"]], "Effect of ultramafic soils": [[11, "effect-of-ultramafic-soils"]], "Enforcement": [[3, "enforcement"]], "Figures": [[11, "figures"]], "Files": [[8, "files"], [11, "files"]], "Final model": [[11, "final-model"]], "ForestAtRisk Tropics": [[9, "ForestAtRisk-Tropics"]], "Future forest cover": [[11, "future-forest-cover"]], "GNU General Public License": [[7, "gnu-general-public-license"]], "Get started": [[10, "Get-started"]], "Get started using R": [[12, "get-started-using-r"]], "Historical forest cover change": [[11, "historical-forest-cover-change"]], "How to Apply These Terms to Your New Programs": [[7, "how-to-apply-these-terms-to-your-new-programs"]], "Importing Python modules": [[8, "importing-python-modules"], [11, "importing-python-modules"]], "Indices and tables": [[6, "indices-and-tables"]], "Installation": [[5, "installation"]], "Installation testing": [[5, "installation-testing"]], "Interpolate spatial random effects": [[11, "interpolate-spatial-random-effects"]], "Introduction": [[8, "introduction"], [11, "introduction"]], "License": [[7, "license"]], "Main functionalities": [[5, "main-functionalities"]], "Miscellaneous": [[13, "miscellaneous"]], "Model": [[5, "model"], [11, "model"], [13, "model"]], "Model comparison and validation": [[11, "model-comparison-and-validation"]], "Model preparation": [[11, "model-preparation"]], "Model\u2019s coefficients": [[11, "models-coefficients"]], "New Caledonia": [[11, "new-caledonia"]], "Our Pledge": [[3, "our-pledge"]], "Our Responsibilities": [[3, "our-responsibilities"]], "Our Standards": [[3, "our-standards"]], "Overview": [[5, "overview"]], "Plot": [[13, "plot"]], "Plots": [[8, "plots"]], "Preamble": [[7, "preamble"]], "Predict": [[13, "predict"]], "Predict and project": [[5, "predict-and-project"]], "Predict deforestation probability": [[11, "predict-deforestation-probability"]], "Predictions": [[11, "predictions"]], "Project": [[13, "project"]], "Project future forest cover change": [[11, "project-future-forest-cover-change"]], "Python API": [[13, "python-api"]], "Python notebooks": [[0, "python-notebooks"]], "R notebooks": [[0, "r-notebooks"]], "Report an issue": [[4, "report-an-issue"]], "Sample": [[5, "sample"], [14, "sample"]], "Sampling": [[11, "sampling"]], "Sampling the observations": [[11, "sampling-the-observations"]], "Scientific publication": [[5, "scientific-publication"]], "Scope": [[3, "scope"]], "Set credentials": [[8, "set-credentials"], [11, "set-credentials"]], "Spatial probability of deforestation": [[11, "spatial-probability-of-deforestation"]], "Spatial random effects": [[11, "spatial-random-effects"]], "Statement of Need": [[5, "statement-of-need"]], "Submodules": [[13, "submodules"]], "TERMS AND CONDITIONS": [[7, "terms-and-conditions"]], "Using conda": [[5, "using-conda"]], "Using virtualenv": [[5, "using-virtualenv"]], "Validate": [[5, "validate"], [13, "validate"]], "Variable selection": [[11, "variable-selection"]], "Variables\u2019 effects": [[11, "variables-effects"]], "Various": [[14, "various"]], "forestatrisk 0.1": [[1, "forestatrisk-0-1"]], "forestatrisk 0.1.1": [[1, "forestatrisk-0-1-1"]], "forestatrisk 0.2": [[1, "forestatrisk-0-2"]], "forestatrisk 1.0": [[1, "forestatrisk-1-0"]], "forestatrisk 1.1": [[1, "forestatrisk-1-1"]], "forestatrisk 1.1.1": [[1, "forestatrisk-1-1-1"]], "forestatrisk 1.1.2": [[1, "forestatrisk-1-1-2"]], "forestatrisk 1.1.3": [[1, "forestatrisk-1-1-3"]], "forestatrisk 1.2": [[1, "forestatrisk-1-2"]], "forestatrisk Python package": [[5, "forestatrisk-python-package"]]}, "docnames": ["articles", "changelog", "citation", "code_of_conduct", "contributing", "index", "indices", "license", "notebooks/country_data/country_data", "notebooks/far_tropics", "notebooks/get_started", "notebooks/new_caledonia/new_caledonia", "notebooks_R/get_started_R", "python_api", "python_api/forestatrisk.data", "python_api/forestatrisk.forestatrisk", "python_api/forestatrisk.hbm", "python_api/forestatrisk.misc", "python_api/forestatrisk.model", "python_api/forestatrisk.plot", "python_api/forestatrisk.predict", "python_api/forestatrisk.project", "python_api/forestatrisk.validate"], "envversion": {"nbsphinx": 4, "sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1}, "filenames": ["articles.rst", "changelog.rst", "citation.rst", "code_of_conduct.rst", "contributing.rst", "index.rst", "indices.rst", "license.rst", "notebooks/country_data/country_data.rst", "notebooks/far_tropics.ipynb", "notebooks/get_started.ipynb", "notebooks/new_caledonia/new_caledonia.rst", "notebooks_R/get_started_R.rst", "python_api.rst", "python_api/forestatrisk.data.rst", "python_api/forestatrisk.forestatrisk.rst", "python_api/forestatrisk.hbm.rst", "python_api/forestatrisk.misc.rst", "python_api/forestatrisk.model.rst", "python_api/forestatrisk.plot.rst", "python_api/forestatrisk.predict.rst", "python_api/forestatrisk.project.rst", "python_api/forestatrisk.validate.rst"], "indexentries": {"compute_biomass_avitabile() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.compute_biomass_avitabile", false]], "compute_biomass_whrc() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.compute_biomass_whrc", false]], "compute_distance() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.compute_distance", false]], "compute_forest() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.compute_forest", false]], "compute_osm() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.compute_osm", false]], "compute_srtm() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.compute_srtm", false]], "compute_wdpa() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.compute_wdpa", false]], "country_compute() (in module forestatrisk.data)": [[14, "forestatrisk.data.country_compute", false]], "download_gadm() (in module forestatrisk.data.download)": [[14, "forestatrisk.data.download.download_gadm", false]], "download_osm() (in module forestatrisk.data.download)": [[14, "forestatrisk.data.download.download_osm", false]], "download_srtm() (in module forestatrisk.data.download)": [[14, "forestatrisk.data.download.download_srtm", false]], "download_wdpa() (in module forestatrisk.data.download)": [[14, "forestatrisk.data.download.download_wdpa", false]], "mosaic_biomass_whrc() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.mosaic_biomass_whrc", false]]}, "objects": {"forestatrisk.data": [[14, 0, 1, "", "country_compute"]], "forestatrisk.data.compute": [[14, 0, 1, "", "compute_biomass_avitabile"], [14, 0, 1, "", "compute_biomass_whrc"], [14, 0, 1, "", "compute_distance"], [14, 0, 1, "", "compute_forest"], [14, 0, 1, "", "compute_osm"], [14, 0, 1, "", "compute_srtm"], [14, 0, 1, "", "compute_wdpa"], [14, 0, 1, "", "mosaic_biomass_whrc"]], "forestatrisk.data.download": [[14, 0, 1, "", "download_gadm"], [14, 0, 1, "", "download_osm"], [14, 0, 1, "", "download_srtm"], [14, 0, 1, "", "download_wdpa"]]}, "objnames": {"0": ["py", "function", "Python function"]}, "objtypes": {"0": "py:function"}, "terms": {"": [3, 4, 5, 7, 9], "0": [8, 9, 10, 11, 12, 14], "000": 11, "000000000000000": 11, "000133": 11, "0032": [10, 12], "003497": 11, "01": 9, "0122": [10, 12], "0129": 9, "0134": 9, "0159": [10, 12], "0174532925199433": 11, "0193": 11, "0246": 11, "0258": 11, "0265": 11, "0281": 11, "02975": [2, 5], "03": [9, 11], "0300": 11, "0301": 11, "0319": 9, "0343": 11, "0347": [10, 12], "0372": 11, "0389": 9, "04": [9, 10, 11, 12], "0402": 11, "0408": [10, 12], "041": 9, "0433": 11, "044097": 11, "0444": [10, 12], "0446": 11, "0450": 11, "0453": 11, "0474": 11, "0479": 11, "0502": 9, "0545": [10, 12], "0556": 11, "0573": [10, 12], "0585": 11, "06": [10, 12], "0607": [10, 12], "065": 11, "0657": 9, "0683": 11, "07": [10, 11, 12], "0702": [10, 12], "0713": 11, "0725": 11, "0735": 9, "075294": 11, "0758": 11, "08": 9, "0814": 11, "0838": [10, 12], "0885": 9, "0906": [10, 12], "0916": [10, 12], "092": 9, "0l": 12, "1": [3, 5, 8, 11, 12, 14], "10": [2, 5, 9, 10, 11, 12], "100": [9, 10, 11], "1000": [9, 10, 11], "10000": [9, 10, 11], "10000l": 12, "1000l": 12, "1024": [8, 11], "1045": 11, "105": [9, 10, 12], "106": 11, "108": 11, "10l": 12, "11": [1, 9, 10, 11], "110": 11, "1101": 9, "111": 11, "114": 11, "117": [10, 11, 12], "1172": [9, 10, 12], "12": [9, 10, 12], "120": 11, "121": 11, "1234": [9, 10, 11], "1234l": 12, "1240": 11, "12541": 11, "128": [9, 10, 11], "128l": 12, "129": 11, "13": [9, 10, 11], "139830": 11, "13dmpoq": 11, "14": [9, 10], "14296": 11, "14296x1": 11, "145095": 11, "145470": 11, "145545": 11, "146445": 11, "146595": 11, "147315": 11, "1485": [9, 10, 12], "15": [9, 10, 11], "150": [8, 11, 12], "151104": 9, "15237": 9, "158": 11, "159": [10, 12], "16": [9, 10, 11, 12], "16109": 11, "162": [9, 11], "163": 11, "163d27": 11, "163d31": 11, "164": 11, "16417": 11, "16508": 11, "16542": 9, "165d33": 11, "166": 11, "167d36": 11, "167d38": 11, "168": [9, 10, 11], "1697": [9, 10, 12], "17": 9, "17242": 11, "17328": 11, "17437": 11, "175": [10, 12], "17522": 11, "176": 9, "18": [9, 11], "183": 11, "18301": 11, "1849755": [9, 10, 12], "1850325": 12, "1851195": [9, 10, 12], "1851615": [9, 10, 12], "1851975": [9, 10, 12], "1852095": [9, 10, 12], "187": 11, "18795": 11, "1880": 11, "18870": 11, "19": [9, 11, 12], "1900": 11, "194": 11, "196": 11, "1980": 11, "19860": 11, "19945": 11, "1996": 7, "19d28": 11, "19d29": 11, "1e8": [8, 9, 10, 11, 12], "1l": 12, "1st": 11, "2": [11, 12], "20": [7, 9, 11, 12], "2000": [8, 9, 10, 11, 12], "2005": [9, 11], "2007": 7, "2010": [8, 9, 10, 11, 12, 14], "2013": [8, 11], "2015": [9, 11], "2016": 14, "201820": 9, "202": 11, "2020": [8, 9, 10, 11, 12], "2021": [2, 5, 8, 11, 12], "2022": 9, "2030": [9, 11], "2035": [9, 11], "2040": [9, 11], "2050": [9, 10, 11, 12], "2055": [9, 11], "2060": [9, 11], "2070": [9, 11], "2080": [9, 11], "2085": [9, 11], "2090": [9, 11], "21": [9, 11], "210": 11, "2100": [5, 9, 11], "21105": [2, 5], "212": 11, "216": [9, 10, 11, 12], "218834": 11, "21d11": 11, "21st": 9, "22": [9, 11], "221": 11, "222": 11, "224": [10, 12], "2250": 11, "22d52": 11, "22d53": 11, "23": [9, 10, 11, 12], "24": [9, 10], "244265": 11, "25": [9, 11], "253": 11, "255": 11, "257222101": 11, "258": 11, "25_09": 8, "26": 9, "2660": 11, "27": [9, 10, 12], "274": [10, 12], "27590": 9, "27600": 11, "277": [9, 10, 12], "28": [7, 9], "288": 9, "289924": 9, "29": [7, 9], "293": [10, 12], "2955": 11, "296": [9, 10], "2975": [2, 5], "298": 11, "2de32d40": 11, "2hll": 11, "2nd": 11, "2sp": 11, "2x": [9, 10], "3": [4, 5, 8, 11, 12, 14], "30": [5, 7, 8, 9, 10, 11, 12], "300000": 11, "303": 9, "30m": [5, 11], "31": 9, "315": 11, "316": 11, "3163": 11, "3166": 14, "32": 9, "321": 9, "324": 11, "3333333333333": 11, "333585": 11, "334290": 9, "3395": 14, "34": 11, "349": 11, "35": [9, 11], "354270": 11, "358": 11, "36": 11, "364": 11, "3646": 9, "37": [9, 10, 12], "372052": 11, "375": [10, 12], "377444": 11, "377488": 11, "38": 11, "381925": 9, "388749": 11, "398200": 11, "399504": 11, "4": [3, 11, 12, 14], "40": [9, 11], "400000": 11, "404726": 11, "4085": 11, "41": 12, "411547": 11, "4185": 11, "42": 11, "420699bc672e2020413": 11, "423524": 11, "427308": 11, "4294967295": 14, "4326": [8, 11], "434673": 11, "4385": 11, "44": [10, 11, 12], "45": [9, 11], "46": [9, 10, 11, 12], "467960": 11, "47": 11, "4749": 11, "477354": 11, "48": [9, 10, 12], "481285": 9, "484": 11, "484171": 11, "484320": 11, "485228": 11, "485306": 9, "488": 11, "489": 11, "498": [10, 12], "4bd9": 11, "5": [8, 11, 12], "50": [8, 9, 11], "500": [8, 9, 11], "5000": [9, 11], "5001": [9, 11], "5002": [9, 11], "509": 11, "51": [10, 12], "511875": 11, "512024": 11, "512475": 11, "512685": 11, "513525": 11, "514875": 11, "521700": 11, "522": 9, "522300": 11, "522406": 11, "525": 9, "526354": 11, "52e": [9, 10, 12], "53": 11, "5366": 11, "54": 11, "541": [9, 10, 12], "5413": 11, "5486": 11, "5490": 8, "54e": [9, 10, 12], "5513": 11, "5566": 11, "5572": 11, "56": [9, 11], "568710": 11, "5743": [9, 10, 12], "5801": 11, "5821": 11, "5873": 9, "587603": 9, "5895": 11, "5897": 11, "59": [2, 5, 11], "5912": 11, "5959": 9, "6": [2, 5, 8, 10, 11, 12], "60": [7, 9, 11], "6004": 9, "6018": 11, "6022": 11, "602317": 11, "6034": 9, "6047": [9, 10, 12], "6049": 11, "6074": 9, "6081": 9, "6082": 11, "6095": 11, "613300": 11, "6136": 11, "6179": [9, 10, 12], "6183": 11, "61e": 11, "62": 11, "6246": 11, "6269": 11, "62e": 11, "63": 11, "6322": 11, "6323": 11, "6329": 9, "6350": 11, "6364": [9, 10, 12], "6378137": 11, "6382": 9, "64": 11, "6419": 11, "642": [9, 10, 12], "6425": 9, "643098": 11, "6436": 9, "644809": 9, "6469": 9, "6488": 9, "6489": 9, "65": [9, 11], "6527": 11, "6535": 11, "6542": 11, "6547": 9, "65535": 5, "6560": 9, "6563": 9, "656746": 11, "6570": 9, "6576": [9, 10, 12], "6583": 9, "66": 11, "6602": 11, "6657": 9, "6666666666667": 11, "6677": 9, "6689": 11, "6690": [9, 10, 12], "6696": 11, "6699": 9, "67": 11, "6701": 11, "6707": 9, "6708": 11, "6725": 11, "6732": 11, "6751": 9, "6765": [11, 12], "6778": 12, "679": [10, 12], "6808": 11, "6840465": [9, 10, 12], "6840615": 12, "6842235": [9, 10, 12], "6842295": [9, 10, 12], "6842445": [9, 10, 12], "6842535": [9, 10, 12], "6875": 9, "6895": 11, "6946": 9, "6952": 9, "6956": 9, "6962": 9, "696619": 11, "6b": 7, "6d": 7, "7": [10, 11, 12, 14], "70": [9, 11], "7044": 9, "7056": 9, "705718": 9, "7075": 9, "7089": 9, "7099": 9, "71": 9, "714871": 11, "7175": 9, "729167": 11, "73": 11, "731": 9, "731802": 11, "739": 11, "74": 11, "745": 11, "7555": 11, "765": [9, 10, 12], "7676": 11, "7683": 11, "7689": 11, "7706": 11, "7707": 11, "7722": [9, 10, 12], "7740": 11, "7743": 11, "7746": 11, "7748": 11, "7753": 11, "7757": 11, "7767": 11, "7783": 11, "7787": 11, "78": [9, 10, 11, 12], "7818": 11, "7819": 11, "7894": 11, "7901": 11, "7905": 11, "7907": 11, "7911": 11, "7913": 9, "7917": 11, "7937": 9, "7939": 9, "7949": 11, "7955": 11, "7956": 11, "7957": 11, "7960": 9, "7980": 9, "7984": 11, "7986": 11, "7993": [9, 11], "7m": 12, "8": [9, 10, 11, 12], "80": [9, 10, 11, 12], "800": [10, 12], "8002": 9, "8005": 9, "8009": 11, "8011": [9, 11], "8014": 9, "8016": 11, "8017": 9, "8020": 9, "8023": 9, "8024": 11, "8025": 11, "8029": [9, 11], "8034": 11, "8036": 11, "8037": 9, "8041": [9, 11], "8047": 11, "8048": 11, "8058": 9, "8060": 9, "8065": 11, "8068": 11, "8070": 11, "8078": 11, "8082": 11, "8091": 11, "81": 11, "8101": 11, "8107": 11, "8135": 11, "8148": 9, "815": 9, "8162": 11, "8164": 9, "8168": [9, 10, 12], "8181": 9, "8191": 9, "8198": 9, "8202": 9, "8204": 9, "8209": 9, "8213": 9, "8216": 9, "8218": 9, "822": 11, "8220": 9, "8224": 9, "8235": 9, "8238": 9, "8245": 9, "8253": 9, "8262": 9, "8265": 9, "827": 11, "8277": 9, "8279": 9, "8280": 9, "8282": 9, "8284": 9, "8285": 9, "8292": 9, "8293": 9, "8298": 9, "83": [10, 12], "8303": 9, "8307": 9, "8339": 9, "8369": 9, "84": [10, 11, 12], "843905": 9, "8448": [9, 10, 12], "85": 11, "8512": 11, "852": [10, 12], "8524": 11, "8563": 11, "8582": 11, "8583": [9, 10, 12], "8584": 11, "85954": 9, "86": 9, "8612": 11, "87": 9, "8709": 11, "8720": 11, "8761": 11, "8771": 11, "88": 11, "8810": 9, "8817": 11, "8818": 11, "8821": 11, "8822": 11, "8823": 11, "8824": 11, "88256": 11, "8826": 11, "8827": 11, "8834": 9, "8841": 9, "8842": 9, "8843": 9, "8849": 11, "8854": 11, "8856": 11, "8869": 11, "8877": 9, "89": [10, 12], "8901": 11, "8916": 11, "89177": 11, "89386": 11, "9": [1, 9, 10, 11, 12], "90": [8, 11], "9032": 9, "9037": 9, "9040": 9, "9049": 9, "9063": 9, "9065": 9, "9070": 9, "909": 11, "90900": 11, "91": 11, "9100": [9, 11], "9104": 9, "9107": 9, "9116": 9, "9133": 9, "91747": 11, "92": [9, 11], "93": 11, "949": [9, 10, 12], "95": 11, "97": [9, 11], "98": 9, "9802": 11, "98242": 9, "99": [9, 10, 11, 12], "9923": 9, "9933": 11, "9977": 11, "9979": 9, "9b83": 11, "A": [5, 7, 14], "AND": 14, "AS": [7, 14], "And": 7, "BE": 7, "BEING": 7, "BUT": 7, "BY": 7, "Being": 3, "But": 7, "By": 7, "FOR": 7, "For": [3, 5, 7], "IF": 7, "IN": 7, "If": [4, 5, 7, 8, 11, 12, 14], "In": [3, 5, 7, 8], "It": [5, 7, 11], "NO": 7, "NOT": 7, "No": [11, 14], "OF": 7, "OR": [7, 14], "Of": [4, 7, 8], "On": 11, "SUCH": 7, "Such": 7, "THE": 7, "THERE": 7, "TO": 7, "The": [2, 3, 4, 5, 7, 8, 9, 10, 11, 12], "Then": [5, 8, 11, 14], "There": 4, "To": [5, 7, 8, 11, 12], "WILL": 7, "WITH": 7, "a_nodata": 11, "a_sr": 11, "aaron": 4, "abil": 7, "about": [3, 7], "abov": 7, "aboveground": 14, "absenc": 7, "absolut": 7, "abus": [3, 7], "accept": 3, "access": [5, 7], "accompani": 7, "accord": 7, "accordingli": 5, "account": [3, 5, 8, 11], "accuraci": 11, "achard": [9, 11], "achiev": 7, "acknowledg": 7, "acquir": 7, "across": [5, 7], "act": 3, "action": [1, 3, 7], "activ": [5, 7, 11, 12], "actual": 7, "ad": [1, 7], "adapt": [3, 7, 9, 10, 11, 12], "add": [7, 8], "add_subplot": 11, "addit": [5, 8, 9, 11], "address": [3, 7], "adj": [9, 10, 11, 12], "adjac": [9, 10], "administr": 14, "adopt": 7, "advanc": 3, "advers": 7, "advis": 7, "affect": 7, "affirm": 7, "after": 7, "ag": 3, "against": [7, 11], "agb": 9, "agg": 1, "aggreg": 7, "agre": [4, 5, 7], "agreement": 7, "agricultur": 11, "aim": 7, "al": [8, 11, 14], "algorithm": 5, "alia": 1, "align": 3, "all": [3, 5, 7, 11], "alleg": 7, "allow": [5, 7, 11], "almost": 11, "along": 7, "alpha": 14, "alpha_norm": 11, "alreadi": [7, 14], "also": [3, 5, 7, 8], "altern": 7, "although": 7, "altitud": [5, 8, 9, 10, 11, 12], "among": [7, 10, 12], "amount": [9, 11], "an": [3, 5, 7, 8, 11, 12, 14], "analys": 8, "analysi": 11, "ancillari": 7, "angleunit": 11, "ani": [3, 7, 8, 9], "annual": [9, 10, 11, 12], "annual_defor": [9, 10, 11, 12], "answer": 3, "anticip": 5, "anybodi": [4, 5], "anyon": 7, "anyth": 7, "api": [1, 5, 12], "appear": 3, "append": [9, 10, 11], "appli": 3, "applic": 7, "appoint": 3, "approach": 11, "appropri": [3, 7], "approxim": 7, "ar": [3, 4, 7, 8, 11, 12, 14], "arang": 11, "archipelago": [9, 10, 12], "archiv": 5, "area": [1, 5, 7, 8, 9, 10, 11, 12, 14], "area_or_point": 11, "argument": [8, 11], "aris": 7, "arrai": [9, 11], "arrang": 7, "articl": [2, 7, 9, 11], "ask": 7, "aspecif": 14, "aspect": 5, "assert": 7, "asset": 7, "associ": [1, 5, 7], "assum": 7, "assumpt": 7, "assur": 7, "attach": 7, "attack": 3, "attempt": 7, "attent": 3, "attribut": 7, "auc": [9, 11], "authent": [8, 11], "author": [2, 7], "auto": 5, "autocorrel": [5, 9, 10, 11, 12], "autom": 1, "autoregress": 5, "avail": [2, 3, 5, 7, 8, 11, 12], "averag": 11, "avitabil": 14, "avoid": [7, 9, 10, 11, 12], "awai": 7, "ax": 11, "axi": [9, 10, 11], "b": [7, 11], "back": 11, "bak": [9, 10, 11, 12], "balanc": 5, "ban": 3, "band": [9, 10, 11], "bar": 11, "base": [5, 7, 11], "basegeogcr": 11, "bayesian": 5, "bbox": 11, "beam": 4, "becaus": [5, 7, 11], "bed": 11, "been": [1, 5, 7, 8, 14], "befor": 5, "behalf": 7, "behavior": 3, "being": [7, 11, 12], "belep": 11, "believ": 7, "below": [2, 7], "benefit": 7, "best": [3, 5, 7, 11], "beta": [9, 10, 11], "beta_start": [9, 10, 11, 12], "between": [5, 7, 12], "beyond": 7, "bibtex": 2, "bigtiff": 11, "bin": [5, 11, 12], "bind": 5, "binomi": [5, 9, 10, 11, 12], "biodivers": 5, "biomass": [1, 14], "biorxiv": 9, "blk_row": [9, 10, 11, 12], "block": [5, 9, 10, 11], "bo": 11, "bodi": [3, 7], "boolean": 14, "border": [8, 9, 10, 11, 12, 14], "both": [5, 7], "bourgoin": 9, "box": 7, "branch": 4, "brief": 7, "bug": [1, 4], "build": [1, 9, 10, 11], "burn": 11, "burnin": [9, 10, 11, 12], "busi": 7, "byte": 11, "c": [5, 7, 9, 11, 12], "c_df": 9, "c_emiss": 9, "cach": [5, 8, 11], "calcul": 5, "caledoni": 11, "caledonia": [0, 1], "call": [1, 5, 7], "can": [1, 2, 4, 5, 7, 8, 11, 14], "cannot": 7, "carbon": [5, 8, 11], "carri": 7, "cartesian": 11, "case": [5, 7, 8, 9, 10, 12], "cast": 14, "cat": [8, 11, 12], "caus": 7, "cd": 5, "ceas": 7, "cell": [9, 10, 11, 12], "cellneigh": [9, 10, 11, 12], "center": [9, 10, 11], "centuri": [9, 11], "certain": 7, "cessat": 7, "cgiar": [8, 11, 14], "chain": [9, 10, 11, 12], "chang": [4, 5, 7, 12], "channel": 12, "charact": 12, "character": 7, "characterist": [3, 8, 11], "charg": 7, "check": [8, 11, 12], "choos": 7, "chri": 4, "ci": 1, "ci_high": [9, 10, 11, 12], "ci_low": [9, 10, 11, 12], "cirad": [3, 5, 11], "circumst": [3, 7], "cite": 2, "civil": 7, "claim": 7, "clarifi": 3, "class": [7, 11], "classic": [9, 10], "clear": 7, "clearli": [7, 11], "close": [7, 9, 10, 11, 12], "co": 11, "code": [1, 5, 8, 11, 14], "coef_edge_km": 11, "coef_geol": 11, "coef_road_km": 11, "collaps": 12, "collect": [7, 8, 11], "colorinterp": 11, "column": [9, 11], "com": [5, 9, 10, 12], "combin": 7, "come": [5, 7, 14], "comma": 14, "command": [5, 7, 8, 11, 12], "comment": 3, "commerci": 7, "commit": [3, 4, 7], "common": [3, 7], "commun": [1, 3, 5, 7], "compil": 7, "complaint": 3, "complet": 12, "compli": 7, "complianc": 7, "compon": 7, "comprehens": 12, "compress": 11, "comput": [1, 5, 7, 9, 10, 12, 13], "compute_biomass_avitabil": [13, 14], "compute_biomass_whrc": [13, 14], "compute_dist": [13, 14], "compute_forest": [13, 14], "compute_osm": [13, 14], "compute_srtm": [13, 14], "compute_wdpa": [13, 14], "concern": 7, "conda": 12, "conda_cr": 12, "conda_instal": 12, "conda_list": 12, "conda_path": 12, "conda_pkg": 12, "condit": 5, "conduct": [1, 4, 5], "confidenti": 3, "config": [5, 8, 11], "configur": [8, 11, 12], "conform": 11, "confound": 11, "conic": 11, "connect": 7, "consequ": [5, 7], "consequenti": 7, "conserv": 5, "consid": [3, 7, 11], "consist": 7, "conspicu": 7, "constantli": 7, "constitut": 7, "constru": 7, "construct": 3, "consum": 7, "contact": [3, 7], "contain": 7, "content": 7, "context": 7, "continent": 5, "continu": [1, 7], "contractu": 7, "contradict": 7, "contrast": 7, "contribut": [1, 3], "contributor": [3, 4, 5, 7], "control": 7, "conveni": 7, "convers": 11, "convey": 7, "coordin": [9, 10, 11, 14], "copi": [12, 14], "copy2": [9, 10, 11], "copyleft": 7, "copyright": 7, "corner": 11, "correct": [1, 3, 5, 7], "correctli": 5, "correl": 5, "correspond": [7, 9, 10], "cost": 7, "could": [3, 7, 11], "counterclaim": 7, "countpix": [9, 10, 11, 12], "countri": [0, 5, 7, 11, 14], "country_comput": [8, 11, 13, 14], "country_download": [8, 11], "country_forest_run": [1, 8, 11], "cours": [7, 8], "court": 7, "coven": [3, 7], "cover": [1, 5, 7, 12], "coverag": 7, "cr": 11, "creat": [3, 4, 5, 8, 9, 10, 11, 12, 14], "criterion": 7, "critic": 3, "cross": [5, 7], "cross_valid": [5, 9, 11], "csi": [8, 11, 14], "csize": [9, 10, 11, 12], "csize_new": [9, 10, 11, 12], "csize_orig": [9, 10, 11, 12], "csv": [9, 11], "ctry_proj": [8, 9, 10, 11, 12], "cure": 7, "current": 14, "custom": 7, "customarili": 7, "cv_df_glm": [9, 11], "cv_df_icar": [9, 11], "cv_df_rf": [9, 11], "cv_glm": [9, 11], "cv_icar": [9, 11], "cv_rf": [9, 11], "d": 7, "d_edge_100m": 11, "d_edge_10km": 11, "d_edge_1km": 11, "d_geol": 11, "d_road_10km": 11, "d_road_1km": 11, "dai": 7, "damag": 7, "danger": 7, "data": [0, 1, 5, 7, 12, 14], "data_countri": [8, 11, 14], "data_forest": [8, 11, 14], "data_glp": [9, 10, 12], "data_gpl": 9, "data_raw": [8, 11, 14], "databas": [8, 11, 14], "datafram": [9, 11], "dataset": [8, 9, 10, 11, 12], "date": [4, 7, 8, 9, 10, 11, 12, 14], "dates_fut": [9, 11], "datum": 11, "dc86": 11, "de": [11, 14], "deactiv": 5, "decemb": 7, "decid": 7, "decis": 5, "declin": 7, "decreas": 11, "deem": [3, 7], "def": 11, "default": [4, 12, 14], "defect": 7, "defens": 7, "defin": [3, 7, 11], "definit": 14, "defor": [9, 10, 11, 12], "deforest": [1, 2, 5, 8, 12], "deforestprob": 1, "degre": [8, 11], "delet": 5, "delimit": 11, "deni": 7, "denomin": 7, "depend": [1, 5], "deprec": 13, "depriv": 7, "deriv": 5, "derogatori": 3, "describ": 11, "descript": 5, "design": [7, 14], "detail": [3, 5, 7, 12], "detect": 12, "determin": [3, 5, 7], "dev": [5, 9, 11], "develop": [4, 5, 7, 11], "devianc": [10, 12], "deviance_ful": [9, 11], "deviance_glm": [9, 11], "deviance_icar": [9, 11], "deviance_nul": [9, 11], "deviance_rf": [9, 11], "devic": 7, "df": 11, "df_out": 11, "differ": [3, 7, 8, 9, 11], "digit": [8, 11], "dir": [5, 12], "direct": 7, "directli": 7, "directori": [5, 8, 9, 10, 11, 12, 14], "disabl": 3, "discriminatori": 7, "discuss": 4, "disk": [9, 10, 11, 12], "displai": [1, 7], "dist": 11, "dist_defor": [9, 10, 11, 12], "dist_defor_forecast": [9, 10, 11, 12], "dist_edg": [8, 9, 10, 11, 12], "dist_edge_forecast": [9, 10, 11, 12], "dist_edge_km": 11, "dist_fil": 14, "dist_riv": [9, 10, 11, 12], "dist_road": [9, 10, 11, 12], "dist_road_km": 11, "dist_town": [9, 10, 11, 12], "distanc": [5, 8, 9, 10, 12, 14], "distinguish": 7, "distribut": 7, "divid": [9, 10], "dmatric": [9, 11], "do": [3, 4, 7, 8, 10, 12], "docsrc": [9, 10, 12], "docstr": 1, "document": [1, 4, 5, 7, 12], "doe": 7, "doesn": [9, 11], "doi": [2, 5, 9], "domain": 7, "done": [5, 14], "dot": [3, 11], "dotenv": [5, 8, 11], "doubt": 7, "download": [1, 12, 13], "download_biomass_whrc": 1, "download_forest": 1, "download_gadm": [13, 14], "download_osm": [13, 14], "download_srtm": [13, 14], "download_wdpa": [13, 14], "dpast": 9, "dpi": [8, 9, 10, 11, 12], "draw": [9, 10], "drive": 1, "driver": 11, "drop": [9, 11], "dropna": [9, 10, 11], "dtype": 12, "dump": [9, 11], "durabl": 7, "dure": [10, 12], "dwell": 7, "dynam": 7, "e": [3, 5, 7, 11], "ea": [9, 11], "each": [5, 7, 8, 11], "earlier": 7, "earth": 1, "earthengin": [5, 8, 11, 12], "easiest": 5, "easili": 5, "east": 11, "ecolog": 9, "ecologi": [1, 5, 9, 10, 11], "econom": [3, 5], "edg": [5, 8, 9, 10, 12], "edit": 3, "educ": 3, "ee": [8, 11], "ee_jrc": 1, "effect": [5, 7, 12], "effici": 5, "effort": 7, "eg": [5, 8, 9, 10, 11, 12, 14], "either": [5, 7, 8, 11], "electron": [3, 7], "elev": [8, 11, 14], "elif": 11, "ellipsoid": 11, "els": 11, "embodi": 7, "emiss": [5, 8, 11], "empathi": 3, "employ": 7, "enabl": 7, "encod": 11, "end": 7, "enforc": 7, "engin": 1, "ensembl": [9, 11], "ensur": 7, "enter": 7, "entir": 7, "entiti": 7, "entri": 2, "env": [5, 8, 11, 12], "environ": [3, 5, 8, 11, 12], "environment": 14, "epsg": [8, 11, 14], "equival": 7, "erron": 7, "error": [8, 9, 10, 11], "esri": 11, "essenti": 7, "establish": 14, "estim": [5, 9, 10, 11, 12], "et": [8, 11, 14], "ethnic": 3, "eval_env": 12, "even": 7, "event": [3, 7], "ever": 7, "everi": [4, 5, 7], "everyon": [3, 7], "everyth": 12, "exact": 7, "exampl": [3, 4, 5, 7, 8, 9], "except": 7, "exclud": 7, "exclus": 7, "excus": 7, "exdir": 12, "execut": [7, 8, 11, 12], "exercis": 7, "exist": [8, 9, 10, 12], "exp": 11, "expect": [3, 7], "experi": 3, "explain": [5, 7, 11], "explanatori": [5, 9], "explic": 8, "explicit": 3, "explicitli": 7, "export": [9, 10], "express": [3, 7], "expressli": 7, "extend": [5, 7, 9], "extens": [7, 8, 9, 10, 11, 12], "extent": [7, 11, 14], "extract": [9, 10], "extractal": [9, 10], "f": [7, 9, 10, 11], "f1": 11, "f2": 11, "f3": 11, "face": 3, "facil": 7, "factor": [5, 11], "fail": 7, "failur": 7, "fair": [3, 7], "faith": 3, "fals": [9, 10, 11, 12, 14], "famili": 7, "faq": 3, "far": [5, 8, 9, 10, 11, 12], "fashion": 7, "fast": 5, "favor": 7, "fc": [9, 10, 11, 12], "fcc": [9, 10, 11, 12], "fcc123": [8, 9, 10, 11, 12], "fcc23": [8, 9, 10, 11, 12], "fcc_": [9, 11], "fcc_2050": [9, 10, 11, 12], "fcc_2100": [9, 11], "fcc_sourc": [8, 11], "featur": [4, 5, 7, 14], "feb": 12, "fee": 7, "fig": [9, 11], "fig_fcc123": [8, 9, 10, 11, 12], "fig_fcc23": [9, 11], "fig_freq": [9, 11], "fig_prob": [9, 10, 11, 12], "fig_rho": [9, 10, 11, 12], "fig_rho_orig": [9, 10, 11, 12], "fig_var": 8, "figsiz": [8, 9, 10, 11, 12], "figur": 12, "file": [5, 7, 12, 14], "fileconn": 12, "fill": [8, 11], "filter": 14, "final": 7, "find": [7, 11], "fine": 12, "fire": 11, "first": [1, 5, 7, 8, 9, 10, 11, 12], "fit": [5, 7, 9, 11], "five": [9, 10, 11, 12], "fix": [7, 11], "float": 11, "flow": 7, "focus": 3, "folder": [8, 9, 10, 11, 12], "follow": [3, 4, 5, 7, 8, 9, 11, 12], "fom": [9, 11], "forbid": 7, "forc": [5, 7, 12], "forecast": [2, 5, 8, 9, 10, 11, 12], "forest": [1, 5, 12, 14], "forest_": [9, 10, 11, 12], "forest_cov": [9, 10, 11, 12], "forest_t3": [9, 10, 11, 12], "forestatrisk": [0, 2, 4, 8, 10, 11, 12, 14], "forg": [5, 12], "fork": 4, "form": [8, 11], "format": [7, 9, 10, 11, 14], "formula": [9, 10, 11, 12], "formula_corr": [9, 11], "formula_glm": [9, 11], "formula_nul": [9, 11], "formula_rf": [9, 11], "foster": 3, "found": 7, "foundat": 7, "fr": [1, 3, 5, 9, 10, 11, 14], "framework": 5, "free": [3, 4, 7], "freeli": 8, "freq_prob": [9, 11], "friendli": 5, "from": [1, 3, 4, 5, 8, 9, 10, 11, 12, 14], "fsf": 7, "fulfil": 7, "full": [5, 7, 9, 11], "function": [1, 4, 7, 8, 9, 10, 11, 12, 14], "fundament": 7, "further": [3, 7], "futur": [4, 5, 7, 8, 12], "g": [2, 5, 9, 11], "gadm": 14, "gamma": [9, 10, 11, 12], "gcc": 12, "gdal": [5, 8, 11, 12, 14], "gdal_cachemax": [8, 11], "gdal_raster": 11, "gdalinfo": 11, "gdrive_fold": [8, 11], "gdrive_gv": [8, 11], "gdrive_remote_rclon": [8, 11], "gee": [1, 8, 11, 14], "geefcc": [1, 5], "gender": 3, "gener": 14, "geodesiqu": 11, "geofabrik": [8, 11, 14], "geograph": 5, "geol": 11, "geol_proj": 11, "geolog": 11, "geologi": 11, "georeferenc": [5, 14], "geospati": 14, "geotiff": [8, 9, 10, 11, 12], "get": [0, 5, 7, 8, 11], "get_started_r": 12, "get_token": [8, 11], "ghislain": [2, 3, 12], "ghislainv": [1, 5, 9, 10, 11, 12], "gibb": 5, "gigabyt": 5, "gisdata": 11, "git": 4, "github": [1, 4, 5, 9, 10, 12], "give": 7, "given": [7, 8, 14], "glm": [5, 9, 10, 11, 12], "global": [8, 14], "gnu": [4, 5], "go": 11, "good": [3, 4], "googl": 1, "googledr": 1, "govern": 7, "gpl": [4, 5, 7], "gplv3": 5, "gr": 11, "gracefulli": 3, "grai": 11, "grand": 11, "grant": 7, "grati": 7, "greatest": 7, "greatli": 5, "greenwich": 11, "gtiff": 11, "guadeloup": [9, 10, 12], "guarante": 7, "gui": 7, "guid": 4, "guidelin": [1, 5], "g\u00e9orep": 11, "ha": [4, 5, 7, 9, 10, 11, 12], "had": [7, 11], "hansen": [8, 11], "harass": 3, "harm": 3, "have": [1, 3, 5, 8, 11, 14], "head": [9, 10, 11, 12], "header": [9, 11], "hectar": [5, 9, 10, 11, 12], "help": [9, 10], "here": [5, 12], "hereaft": 7, "hierarch": 5, "high": 5, "higher": 11, "highwai": [8, 11], "histogram": [9, 11], "histor": 12, "histori": 5, "hold": [8, 9, 10, 11, 12], "holder": 7, "home": [8, 11, 12], "hope": 7, "host": 7, "household": 7, "how": [4, 12], "howev": 7, "html": [3, 7], "http": [1, 2, 3, 5, 7, 8, 9, 10, 11, 12, 14], "human": 11, "humid": 5, "hypothesi": 11, "hypothet": 7, "i": [3, 4, 5, 7, 8, 9, 10, 11, 12, 14], "icar": [5, 9, 11, 12], "icar_arg": [9, 11], "id": 11, "idea": 7, "ident": 3, "identifi": [5, 7, 9, 10, 14], "il": 11, "imag": [11, 14], "imageri": 3, "implement": 7, "impli": 7, "import": [4, 7, 12], "impos": 7, "improv": [1, 4], "inabl": 7, "inaccur": 7, "inappropri": 3, "inc": 7, "incid": 3, "incident": 7, "includ": [3, 5, 7, 8, 9, 10, 11, 12], "include_graph": 12, "inclus": [3, 7], "incompat": 7, "incorpor": [4, 7], "increas": [8, 11], "indemnif": 7, "independ": 7, "index": [6, 9, 11], "indic": [7, 11, 12], "individu": [3, 7], "induc": 11, "industri": 7, "inf": 11, "infer": 5, "inform": [3, 5, 7, 9, 11, 12], "infring": 7, "init": 11, "initi": [7, 8, 9, 11], "input": 14, "input_cell_rast": [9, 10, 11, 12], "input_dir": 14, "input_fcc_rast": [8, 9, 10, 11, 12], "input_fil": 14, "input_forest": 9, "input_forest_rast": [9, 10, 11, 12], "input_nodata": 14, "input_rast": [9, 10, 11, 12], "input_stock": 9, "inscrib": 14, "insid": 7, "instal": [7, 8, 11, 12], "instanc": 3, "instead": 7, "instruct": [8, 11], "insult": 3, "int32": 12, "intact": 7, "integ": 14, "integr": 1, "intend": 7, "intent": 7, "interact": [1, 7], "intercept": [9, 10, 11, 12], "interchang": 7, "interest": [3, 4, 5, 7], "interf": 7, "interfac": 7, "interleav": 11, "internet": 8, "interoper": 12, "interpol": 12, "interpolate_rho": [9, 10, 11, 12], "interv": [9, 11], "intim": 7, "intrins": 5, "inv_logit": 11, "invalid": 7, "invers": 11, "investig": 3, "irrevoc": 7, "island": 11, "iso": 14, "iso3": [8, 11, 14], "issu": 3, "item": 7, "its": [3, 7, 8, 11], "itself": 7, "j": 11, "join": [9, 10, 11], "joss": [1, 2, 5], "journal": [2, 5], "jrc": [8, 11], "june": 7, "just": 5, "k": [9, 11], "keep": [4, 7, 9, 14], "keep_dir": [8, 11], "keep_temp_dir": [8, 11, 14], "kei": 7, "kernel": 7, "kind": 7, "km": [9, 10, 11], "knitr": 12, "know": 7, "knowingli": 7, "knowledg": 7, "l": 11, "label": 11, "lambert": 11, "land": 5, "languag": [3, 7], "larg": 5, "larger": 7, "last": [5, 9, 11], "later": 7, "latest": 12, "latitud": 11, "lawsuit": 7, "lbfg": [9, 11], "lco": 11, "leadership": 3, "learn": [4, 5], "least": 7, "left": 11, "left_part": [9, 10, 11, 12], "legend": [9, 10, 11, 12], "len": [9, 10, 11], "length": 12, "lengthunit": 11, "lesser": 7, "let": 1, "level": 3, "lgpl": 7, "liabl": 7, "lib": 12, "libpython": 12, "libpython3": 12, "librari": [5, 7, 12], "licens": [4, 5], "license": 7, "licensor": 7, "lifou": 11, "like": 7, "likewis": 7, "line": [5, 7, 9, 10, 11, 12], "linear": 5, "linear_model": [9, 11], "linewidth": [8, 9, 10, 11, 12], "link": 7, "linux": [5, 8, 11], "list": [7, 9, 10, 11, 12], "litig": 7, "load": 11, "load_dotenv": [8, 11], "loc": [9, 11], "local": [7, 8, 11], "locat": 11, "log_loss": [9, 11], "logic": 14, "logical_not": 9, "logical_or": 9, "logist": [5, 9, 10, 11, 12], "logisticregress": [9, 11], "logit": 11, "logo": 1, "long": 7, "longer": [9, 11], "longitud": 11, "loop": [9, 11], "loss": [5, 7], "lower": 11, "loyalti": 11, "lt": 12, "lzw": 11, "m": [5, 8, 11], "mac": [8, 11], "machin": 7, "made": [4, 7], "mai": [3, 7], "mail": [3, 7], "main": [9, 11], "maintain": [3, 7], "major": 7, "make": [3, 4, 5, 7, 9, 10, 12], "make_dir": [8, 9, 10, 11], "maker": 5, "mani": 4, "manner": 7, "manual": [8, 12], "manufactur": 7, "manuscript": 9, "map": [5, 8, 11], "map_accuraci": 5, "march": 7, "mare": 11, "mark": 7, "martiniqu": 8, "mask": 7, "master": [4, 5, 9, 10, 12], "materi": 7, "matplotlib": [5, 9, 11, 12], "matpotlib": 1, "maxpixel": [8, 9, 10, 11, 12], "mcmc": [9, 10, 11, 12], "mean": [7, 9, 10, 11, 12], "measur": 7, "media": 3, "medium": 7, "meet": 7, "member": 3, "memori": [9, 10, 11, 12], "menu": 7, "mercat": 14, "merchant": 7, "mere": 7, "merg": 7, "messag": [4, 8, 11, 14], "met": 7, "metadata": 11, "meter": 11, "method": [7, 11], "methodologi": 11, "metr": 11, "metric": [9, 11], "metropoli": 5, "meurer": 4, "might": 7, "mine": 11, "miniconda": 12, "miniconda3": [5, 12], "minim": [9, 10], "misrepresent": 7, "mission": 14, "mkdir": 5, "mod_binomial_icar": [9, 10, 11, 12], "mod_dev": [9, 11], "mod_glm": [9, 11], "mod_icar": [9, 11], "mod_icar_pickl": [9, 11], "mod_nul": [9, 11], "mod_rf": [9, 11], "mod_typ": [9, 11], "mode": 7, "model": [2, 7, 8, 12], "model_": 5, "model_binomial_icar": [5, 9, 10, 11, 12], "model_devi": [9, 11], "modif": 7, "modul": [1, 12], "more": [7, 11, 12], "moreov": [7, 11], "mosaic": 14, "mosaic_biomass_whrc": [13, 14], "most": 7, "mtq": 8, "multipl": 1, "must": [4, 5, 7, 8, 11, 14], "n": [9, 10, 11], "n_estim": [9, 11], "n_job": [9, 11], "n_neighbor": [9, 10, 11, 12], "na": [9, 10, 11, 12], "na_act": [9, 11], "name": [5, 7, 8, 11, 12], "nan": 11, "nanpercentil": 11, "nation": 3, "natur": 7, "nb_ctrydata_fcc123": 8, "nb_ctrydata_var": 8, "nb_newcal_dist_road_edge_effect": 11, "nb_newcal_fcc123": 11, "nb_newcal_fcc_2050": 11, "nb_newcal_fcc_2100": 11, "nb_newcal_geol_effect": 11, "nb_newcal_prob": 11, "nb_newcal_rho": 11, "nb_newcal_rho_orig": 11, "ncl": 11, "ndate": [9, 10, 11, 12], "ndates_fut": [9, 11], "ndefor": [9, 11], "necessari": [3, 5, 7, 8, 11, 12], "need": [7, 8, 11, 12], "neighbor": [9, 10, 11, 12], "neighborhood": [9, 10, 11, 12], "neither": 7, "net": [8, 11, 14], "network": 7, "new": [0, 1, 4, 5], "newli": 5, "next": 7, "nfor": [9, 11], "nneigh": [9, 10, 11, 12], "nodata": [11, 14], "non": [5, 9], "noncommerci": 7, "none": 14, "nor": 7, "normal": [7, 9, 11], "north": 11, "note": [11, 12], "notebook": [8, 9, 10, 11, 12], "noth": 7, "notic": 7, "notifi": 7, "notwithstand": 7, "nouvel": 11, "now": [1, 12], "np": [9, 11], "np_arrai": 12, "nperc": 11, "nrep": [9, 11], "nsamp": [9, 10, 11, 12], "null": [9, 11], "number": [2, 5, 7, 9, 10, 11, 12], "numpi": [5, 9, 11, 12], "numpy_vers": 12, "o": [8, 9, 10, 11], "oa": [9, 11], "object": [7, 12], "oblig": [3, 7], "obs_pr": [9, 11], "observ": [5, 12], "obtain": [5, 8, 11, 12, 14], "occasion": 7, "occur": 7, "offens": 3, "offer": [5, 7], "offici": [3, 7], "offlin": 3, "ofil": [8, 11], "ofile_pdf": 8, "often": 5, "ogr": 14, "ogr2ogr": 11, "onc": [8, 11], "one": [7, 9, 10, 11, 12], "onli": [7, 8, 9, 11, 12], "onlin": 3, "open": [2, 3, 4, 5, 9, 10, 11], "openstreetmap": 14, "oper": [1, 7], "optim": 1, "option": 7, "order": [7, 11], "org": [2, 3, 7, 14], "organ": [1, 7], "orient": 3, "origin": [7, 9, 10, 11, 12], "osgeo4w": 5, "osm": [8, 11, 14], "ot": 11, "other": [3, 5, 10, 12], "otherwis": [3, 7, 8, 9, 10, 11, 12], "ouput": [8, 11], "our": [5, 7], "out": 7, "output": [7, 8, 9, 10, 11, 12, 14], "output_dir": [8, 11, 14], "output_fil": [8, 9, 10, 11, 12], "outsid": 7, "ouvea": 11, "over": 5, "overfit": 11, "overview": [9, 10, 11], "overwrit": 11, "own": 7, "p": [2, 9, 11], "pa": [9, 10, 11, 12], "packag": [1, 2, 4, 7, 8, 11, 12, 14], "page": [2, 4, 6], "panda": [5, 8, 9, 11, 12], "pantrop": 8, "paper": 7, "paragraph": 7, "parallel": 11, "paramet": [5, 11, 14], "paramount": 5, "part": [7, 11], "parti": 7, "particip": 3, "particular": 7, "pass": 7, "password": 7, "past": [8, 9, 11, 12], "paste0": 12, "pastur": 11, "path": [9, 10, 12, 14], "patsi": [5, 9, 11, 12], "pattern": 7, "payment": 7, "pd": [8, 9, 11], "pdf": [8, 9, 11], "peer": 7, "per": [9, 10, 11], "perc": [8, 9, 11], "percentil": [9, 11], "perform": [5, 7, 14], "peridotit": 11, "period": [8, 9, 10, 11, 12], "perman": [3, 7], "permiss": 3, "permit": 7, "perpetu": 7, "person": [3, 7, 8, 11], "pertin": 7, "ph": 11, "philosophi": 7, "physic": [3, 7], "pickl": [9, 11], "pickle_fil": [9, 11], "piec": 7, "pin": 11, "pip": [5, 12], "pip_ignore_instal": 12, "pip_pkg": 12, "pixel": [5, 9, 10, 11, 14], "pkg_resourc": 11, "place": [7, 8, 11], "planet": [8, 11], "platform": 5, "pleas": [2, 4, 7], "plot": [10, 12], "ploton": 9, "plots_per_pag": [9, 11], "plt": [9, 11], "plu": 7, "png": [8, 9, 10, 11, 12], "point": [5, 9, 10, 11, 12], "pointer": 7, "polici": 3, "polit": [3, 5], "polygon": 11, "portion": 7, "posit": 3, "positive_effect": 9, "possess": 7, "possibl": [5, 7], "post": 3, "posterior": [9, 10, 11, 12], "power": 7, "pr": 4, "practic": 7, "precis": 7, "pred_glm": [9, 11], "pred_icar": [9, 10, 11, 12], "pred_nul": [9, 11], "pred_rf": [9, 11], "predecessor": 7, "predict": 12, "predict_proba": [9, 11], "predict_raster_binomial_icar": [9, 10, 11, 12], "predictor": 11, "prefer": 7, "prepar": 12, "prerequisit": 12, "presenc": [8, 11], "present": [7, 8, 11, 14], "preserv": 7, "prevent": 7, "previou": [5, 7], "previous": 1, "price": 7, "primarili": 7, "primem": 11, "print": [8, 9, 10, 11, 12, 14], "prior": [7, 9, 10, 11, 12], "priorvrho": [9, 10, 11, 12], "privat": [3, 7], "prob": [9, 10, 11, 12], "probabl": [5, 12], "problem": [5, 7, 9, 10, 11, 12], "procedur": 7, "process": [5, 9, 10, 11, 12, 14], "procur": 7, "produc": 7, "product": [7, 8, 11], "profession": 3, "programm": 7, "prohibit": 7, "proj": [8, 11, 14], "projcr": 11, "project": [3, 4, 8, 12, 14], "promin": 7, "propag": 7, "properli": 5, "properti": 7, "propos": 14, "proprietari": 7, "protect": [1, 5, 8, 11, 14], "protectedplanet": [8, 11, 14], "protocol": 7, "prove": 7, "provid": [4, 5, 7, 9, 12], "provis": 7, "provision": 7, "proxi": 7, "public": [1, 2, 3], "publicli": 7, "publish": [2, 3, 7], "pull": 4, "pure": 5, "purpos": 7, "pursuant": 7, "push": 4, "py_config": 12, "pyenv": 12, "pypi": [1, 5], "pyplot": [9, 11], "pytest": 1, "python": [1, 2, 4, 12, 14], "python3": [5, 12], "pythonhom": 12, "pywda": [8, 11], "pywdpa": [1, 5, 8, 11, 12, 14], "q": 11, "qualifi": 7, "qualiti": 7, "quantifi": 5, "quantil": 11, "question": 3, "quot": 12, "r": [5, 9, 10], "r1": 11, "r2": 11, "race": 3, "radar": 14, "rais": 11, "random": [5, 12], "randomforestclassifi": [9, 11], "rang": [9, 10, 11], "rank": [9, 10, 11, 12], "rast": [9, 10, 11, 12], "raster": [5, 8, 9, 10, 11, 12, 14], "ratio": [9, 11], "raw": [9, 10, 12], "rclone": 1, "re": [9, 11], "read": 7, "read_csv": 11, "read_tabl": 11, "readabl": 7, "readi": [7, 12], "readili": 7, "reason": [3, 7], "receipt": 7, "receiv": 7, "recogn": 7, "recommend": [5, 8, 11, 12], "redistribut": 7, "reduc": [5, 9, 10, 11, 12], "refer": 7, "refrain": 7, "refug": 11, "regard": [3, 7], "regardless": [3, 7], "regener": 7, "region": [9, 10], "regress": [5, 9, 10, 11, 12], "reiniti": [9, 10, 11, 12], "reinstal": 5, "reinstat": 7, "reject": 3, "rel": [5, 14], "relationship": [7, 11], "releas": [1, 4, 5, 7], "relev": 7, "reli": 7, "relicens": 7, "religion": 3, "remain": 7, "remot": [8, 11], "remov": [1, 3, 5, 7, 9, 10, 11, 12], "renam": [9, 10, 11, 12], "render": 7, "rep1": [9, 11], "rep2": [9, 11], "rep3": [9, 11], "rep4": [9, 11], "rep5": [9, 11], "repair": 7, "repeat": 9, "repercuss": 3, "repetit": 9, "replac": 5, "report": 3, "repositori": [4, 5], "repres": [3, 7, 11], "represent": 3, "reproduc": 9, "reproject": [11, 14], "request": [4, 8, 9, 10, 11], "requir": 12, "resampl": [9, 10, 11, 14], "rescal": 5, "reseau": 11, "residu": [5, 11], "resolut": [5, 8, 11], "resolv": 7, "respect": [3, 7], "respons": 7, "restrict": 7, "result": [3, 7, 9, 10, 11, 12], "retain": 7, "reticul": 12, "reticulate_miniconda_path": 12, "retriev": [5, 8], "return": [5, 7, 8, 11, 14], "return_typ": [9, 11], "review": [3, 7], "rf": [9, 11], "rf_arg": [9, 11], "rgnc91": 11, "rho": [9, 10, 11, 12], "rho_orig": [9, 10, 11, 12], "right": [3, 11, 12], "right_part": [9, 10, 11, 12], "rint": [9, 11], "risk": [5, 7, 11], "river": [8, 11, 14], "rm": 5, "rmd": 12, "road": [5, 8, 14], "rom": 7, "round": [9, 11], "row": [9, 10, 11, 12], "royalti": 7, "rule": 7, "run": [5, 7, 9, 10, 11, 12], "run_gee_biomass_whrc": 1, "run_gee_forest": 1, "s_sr": 11, "safest": 7, "sai": 7, "sake": 7, "sale": 7, "same": 7, "sampl": [12, 13], "sample_s": [9, 11], "sampler": 5, "satisfi": 7, "save": [9, 10, 11, 12], "savefig": [8, 11], "scale": [5, 9, 10, 11, 12], "scenario": [5, 9], "school": 7, "scientif": [2, 9], "scikit": 5, "scope": [7, 11], "script": 7, "scriptabl": 5, "sd_edg": 11, "sd_road": 11, "se": 11, "search": 6, "second": [11, 12], "secondarili": 7, "section": 1, "see": [3, 5, 7, 12, 14], "seed": [9, 10, 11, 12], "seem": 11, "select": [1, 10, 12], "sell": 7, "semiconductor": 7, "sen": [9, 11], "separ": [3, 7, 14], "seri": 4, "serv": 7, "server": 7, "servic": 7, "session": [8, 11], "set": [3, 5, 9, 10, 12], "set_xlabel": 11, "set_xlim": 11, "set_ylabel": 11, "set_ylim": 11, "setenv": 12, "setuptool": 5, "sever": [5, 14], "sex": 3, "sexual": 3, "shall": 7, "shapefil": [11, 14], "share": 7, "shell": 5, "short": [5, 7], "shortest": 14, "should": [4, 5, 7, 8, 11, 12, 14], "show": [3, 7, 11], "shown": 11, "shp": [8, 9, 10, 11, 12], "shutil": [9, 10, 11], "shuttl": 14, "sign": 7, "signific": [7, 9, 11], "significantli": 11, "similar": [7, 12], "simpl": [5, 9, 10, 11, 12], "simultan": 7, "singl": 7, "sink": 12, "site": 12, "six": 11, "size": [3, 9, 11], "skip": 14, "sklearn": [9, 11, 12], "slope": [5, 8, 9, 10, 11, 12, 14], "so": [7, 8, 11, 12], "social": 3, "socio": [3, 5], "softwar": [2, 5, 7], "sold": 7, "sole": 7, "solver": [9, 11], "some": [7, 8, 9, 11], "sourc": [2, 4, 5, 8, 9, 10, 11, 12, 14], "southern": 11, "space": [3, 5], "spare": 7, "spatial": [5, 8, 12], "spe": [9, 11], "speak": 7, "special": 7, "specif": [3, 7, 9, 11, 14], "specifi": [7, 8, 11, 12], "speed": [8, 11], "sphinx": 1, "spirit": 7, "sql": 14, "sqrt": 11, "srtm": [8, 11, 14], "st": 11, "stand": 7, "standard": [7, 11], "start": [0, 4, 5, 7, 9, 11], "stat": [9, 10, 11, 12], "state": 7, "statement": [7, 14], "statist": [5, 9, 10, 11], "statsmodel": [5, 12], "statu": [3, 5, 7, 14], "std": [9, 10, 11, 12], "step": [4, 7, 12], "storag": 7, "store": [8, 11], "str": [9, 10, 11], "stratifi": 5, "string": 14, "structur": [5, 9, 10, 11, 12], "studi": [5, 9, 10, 12], "subdivid": 7, "subject": 7, "sublicens": 7, "submit": 4, "subprogram": 7, "subroutin": 7, "subsect": 7, "substanti": 7, "substr": 14, "success": 11, "sue": 7, "suffic": 7, "suitability_formula": [9, 10, 11, 12], "sum": [9, 11], "summar": [8, 11], "summari": [11, 12], "summary_hsdm": [9, 11], "summary_icar": [10, 12], "sup": 11, "supplement": 7, "supplementari": 9, "support": 7, "sure": 7, "survei": 11, "surviv": 7, "suscept": 11, "sustain": 7, "sy": [11, 12], "system": [1, 7, 11, 12], "systemat": 7, "t": [9, 10, 11, 12], "t1": [9, 11], "t2": [9, 10, 11, 12], "t3": [9, 10, 11, 12], "t_bin": 11, "t_sr": 11, "tabl": [8, 9, 11], "tabul": [8, 11], "take": [3, 7], "tangibl": 7, "tap": 11, "te": 11, "team": 3, "technolog": [5, 7], "tell": 7, "temp_dir": [8, 11, 14], "temporari": [3, 14], "temporarili": 3, "term": 5, "termin": [5, 12], "terr": 11, "test": [1, 4], "than": [7, 11], "thei": [3, 7, 14], "them": 7, "therefor": 7, "theta": 11, "theta_edg": 11, "theta_edge_100m": 11, "theta_edge_1km": 11, "theta_geol": 11, "theta_icar": 11, "theta_icar_mean": 11, "theta_lmean": 11, "theta_mean": 11, "theta_ob": 11, "theta_pr": [9, 10, 11, 12], "theta_road": 11, "theta_road_10km": 11, "theta_road_1km": 11, "thi": [3, 4, 5, 8, 9, 11, 12, 14], "thin": [9, 10, 11, 12], "thing": 7, "third": [7, 11], "those": 7, "though": 7, "threaten": [3, 7], "three": 7, "threshold": [9, 10], "through": [5, 7], "thu": [7, 11], "ti": [9, 11], "tick_label": 11, "tif": [8, 9, 10, 11, 12], "tiffor": 12, "tight_layout": 11, "tile": [8, 14], "time": [5, 7, 8, 9, 11], "titl": [2, 11], "to_csv": [9, 11], "token": [8, 11], "too": 7, "tool": [7, 12], "topograph": [11, 14], "topographi": 5, "total": [9, 10], "toward": 3, "town": [5, 8, 11, 14], "tr": 11, "trace": [9, 11], "trade": 7, "trademark": 7, "transact": 7, "transfer": 7, "transform": [9, 11], "transmiss": 7, "treat": 7, "treati": 7, "trial": [9, 10, 11, 12], "troll": 3, "tropic": [0, 2, 5, 10, 11], "true": [8, 9, 10, 11, 12, 14], "try": 5, "tss": [9, 11], "tutori": [1, 4, 5, 12], "two": 7, "txt": [9, 10, 11, 12], "type": [7, 11, 14], "typic": 7, "uint32": 14, "unaccept": [3, 7], "uncom": [8, 11], "under": [4, 5, 7, 8, 11], "unit": [8, 11], "unless": 7, "unlimit": 7, "unmodifi": 7, "unnecessari": 7, "unpack": 7, "until": 7, "unwelcom": 3, "unzip": [11, 12], "up": 4, "updat": [1, 7, 9, 10, 11, 12], "upgrad": 5, "upper": 11, "url": [2, 9, 10, 12], "urllib": [9, 10], "urlretriev": [9, 10], "us": [0, 1, 2, 3, 8, 9, 10, 11, 14], "usag": [1, 11], "use_condaenv": 12, "use_python": 12, "user": [1, 5, 8], "utf": 11, "utf8": 12, "v": [9, 10, 11], "v4": [8, 11, 14], "val": [9, 10, 11, 12], "valid": [7, 8], "valu": [8, 9, 10, 11, 12, 14], "valueerror": 11, "vancutsem": [8, 9, 11], "var": [8, 9, 11], "var_dir": [8, 9, 10, 11, 12], "var_keep": 9, "var_remov": 9, "vari": 5, "variabl": [5, 10, 12, 14], "variou": [5, 13], "varnam": 11, "vector": [11, 12], "veget": 11, "venv": 5, "verbos": 14, "veri": 5, "verlei": 9, "version": [1, 3, 4, 5, 12], "via": [3, 4, 5], "video": 4, "vieilled": [2, 3, 5, 9, 11], "vieilledent2021": 2, "view": 7, "viewpoint": 3, "violat": 7, "virtual": [5, 9, 10, 12], "visibl": 7, "void": 7, "volum": [2, 7], "vrho": [9, 10, 11, 12], "w": [7, 9, 10, 11], "w0": 11, "w1": 11, "wa": [7, 12], "wai": [4, 5, 7, 12], "waiv": 7, "waiver": 7, "want": [4, 5, 7, 8], "waterwai": [8, 11], "wb": [9, 11], "wdpa_kei": [8, 11], "we": [3, 7, 8, 9, 10, 11, 12], "websit": [1, 11], "welcom": [3, 7], "well": 7, "were": [1, 7], "what": [3, 7], "whatev": 7, "wheel": [1, 5], "when": [3, 7, 11], "where": [7, 11, 14], "whether": [7, 14], "which": [1, 3, 4, 5, 7, 8, 11, 12], "while": [5, 8, 9, 11], "who": [3, 4, 5, 7], "whole": [5, 7], "whom": 7, "whose": 7, "whrc": [1, 14], "why": 7, "wide": 7, "width": 11, "wiki": 3, "window": [5, 7], "wipo": 7, "wish": 7, "within": [3, 7, 12], "without": [3, 7, 11], "wkt": 14, "work": [7, 8, 9, 10, 11, 12, 14], "workflow": 4, "world": [8, 11, 14], "worldwid": 7, "would": 7, "write": [4, 7, 9, 10, 11, 12], "writelin": 12, "written": [4, 5, 7], "www": [3, 7, 8, 11, 14], "x": [5, 9, 10, 11, 12], "x_glm": [9, 11], "x_null": [9, 11], "x_rf": [9, 11], "xmax": 14, "xmin": 14, "xy": [9, 10], "y": [9, 10, 11, 12], "y_bin": 11, "ye": [5, 11, 12], "year": [2, 7], "ymax": 14, "ymin": 14, "you": [2, 4, 5, 7, 8, 11, 12], "your": [4, 8, 11, 12], "your_token": [8, 11], "yourself": 7, "yr": [10, 12], "ython": 2, "z": [9, 10], "zero": 11, "zero_in_ci": 9, "zip": [5, 9, 10, 12], "zipfil": [9, 10]}, "titles": ["Articles", "Changelog", "Citation", "Code of conduct", "Community guidelines", "forestatrisk Python package", "Indices and tables", "License", "Country data", "ForestAtRisk Tropics", "Get started", "New Caledonia", "Get started using R", "Python API", "Download", "<no title>", "<no title>", "<no title>", "<no title>", "<no title>", "<no title>", "<no title>", "<no title>"], "titleterms": {"": 11, "0": [1, 7], "1": [1, 7, 9, 10], "10": 7, "11": 7, "12": 7, "13": 7, "14": 7, "15": 7, "16": 7, "17": 7, "2": [1, 7, 9, 10], "3": [1, 7, 9, 10], "4": [7, 9, 10], "5": [7, 9, 10], "6": [7, 9], "7": [7, 9], "8": 7, "9": 7, "AND": 7, "No": 7, "Not": 7, "These": 7, "accept": 7, "access": [8, 11], "ad": 11, "addit": 7, "affero": 7, "an": 4, "anti": 7, "api": [8, 11, 13], "appli": 7, "articl": 0, "attribut": 3, "automat": 7, "basic": 7, "caledonia": 11, "carbon": 9, "chang": [8, 9, 10, 11], "changelog": 1, "circumvent": 7, "citat": 2, "code": [3, 4, 7], "coeffici": 11, "commun": 4, "comparison": [9, 11], "comput": [8, 11, 14], "conda": 5, "condit": 7, "conduct": 3, "contribut": [4, 5], "convei": 7, "copi": 7, "correl": [9, 11], "countri": 8, "cover": [8, 9, 10, 11], "credenti": [8, 11], "cross": [9, 11], "data": [8, 9, 10, 11, 13], "definit": 7, "deforest": [9, 10, 11], "deprec": 14, "devianc": [9, 11], "disclaim": 7, "distanc": 11, "download": [8, 11, 14], "downstream": 7, "drive": [8, 11], "earth": [8, 11], "edg": 11, "effect": [9, 10, 11], "emiss": 9, "enforc": 3, "engin": [8, 11], "explanatori": [8, 11], "figur": [9, 10, 11], "file": [8, 9, 10, 11], "final": [9, 11], "forest": [8, 9, 10, 11], "forestatrisk": [1, 5, 9], "form": 7, "freedom": 7, "from": 7, "function": 5, "futur": [9, 10, 11], "gener": 7, "get": [10, 12], "gnu": 7, "googl": [8, 11], "guidelin": 4, "have": 7, "histor": [9, 10, 11], "how": 7, "icar": 10, "import": [8, 9, 10, 11], "indic": 6, "instal": 5, "interpol": [9, 10, 11], "interpret": 7, "introduct": [8, 11], "issu": 4, "law": 7, "legal": 7, "liabil": 7, "licens": 7, "limit": 7, "main": 5, "miscellan": 13, "model": [5, 9, 10, 11, 13], "modifi": 7, "modul": [8, 11], "need": 5, "new": [7, 11], "non": 7, "notebook": 0, "observ": [9, 10, 11], "other": 7, "our": 3, "overview": 5, "packag": 5, "patent": 7, "permiss": 7, "pledg": 3, "plot": [8, 9, 11, 13], "preambl": 7, "predict": [5, 9, 10, 11, 13], "prepar": [9, 10, 11], "probabl": [9, 10, 11], "program": 7, "project": [5, 9, 10, 11, 13], "protect": 7, "public": [5, 7], "python": [0, 5, 8, 11, 13], "r": [0, 12], "random": [9, 10, 11], "raw": [8, 11], "rclone": [8, 11], "recipi": 7, "report": 4, "requir": 7, "respons": 3, "revis": 7, "right": 7, "road": 11, "sampl": [5, 9, 10, 11, 14], "scientif": 5, "scope": 3, "section": 7, "select": [9, 11], "set": [8, 11], "soil": 11, "sourc": 7, "spatial": [9, 10, 11], "standard": 3, "start": [10, 12], "statement": 5, "submodul": 13, "summari": [9, 10], "surrend": 7, "tabl": 6, "term": 7, "termin": 7, "test": 5, "thi": 7, "tropic": 9, "ultramaf": 11, "unzip": [9, 10], "us": [5, 7, 12], "user": 7, "valid": [5, 9, 11, 13], "variabl": [8, 9, 11], "variou": 14, "verbatim": 7, "version": 7, "virtualenv": 5, "warranti": 7, "wdpa": [8, 11], "your": 7}}) \ No newline at end of file +Search.setIndex({"alltitles": {"0. Definitions": [[7, "definitions"]], "1. Data": [[9, "1.-Data"], [10, "1.-Data"]], "1. Source Code": [[7, "source-code"]], "1.1 Import and unzip the data": [[9, "1.1-Import-and-unzip-the-data"], [10, "1.1-Import-and-unzip-the-data"]], "1.2 Files": [[9, "1.2-Files"], [10, "1.2-Files"]], "1.3 Sampling the observations": [[9, "1.3-Sampling-the-observations"], [10, "1.3-Sampling-the-observations"]], "1.4 Correlation plots": [[9, "1.4-Correlation-plots"]], "10. Automatic Licensing of Downstream Recipients": [[7, "automatic-licensing-of-downstream-recipients"]], "11. Patents": [[7, "patents"]], "12. No Surrender of Others\u2019 Freedom": [[7, "no-surrender-of-others-freedom"]], "13. Use with the GNU Affero General Public License": [[7, "use-with-the-gnu-affero-general-public-license"]], "14. Revised Versions of this License": [[7, "revised-versions-of-this-license"]], "15. Disclaimer of Warranty": [[7, "disclaimer-of-warranty"]], "16. Limitation of Liability": [[7, "limitation-of-liability"]], "17. Interpretation of Sections 15 and 16": [[7, "interpretation-of-sections-15-and-16"]], "2. Basic Permissions": [[7, "basic-permissions"]], "2. Model": [[9, "2.-Model"], [10, "2.-Model"]], "2.1 Model preparation": [[9, "2.1-Model-preparation"], [10, "2.1-Model-preparation"]], "2.2 Variable selection": [[9, "2.2-Variable-selection"]], "2.2 iCAR model": [[10, "2.2-iCAR-model"]], "2.3 Final model": [[9, "2.3-Final-model"]], "2.3 Model summary": [[10, "2.3-Model-summary"]], "2.4 Model summary": [[9, "2.4-Model-summary"]], "3. Model comparison and validation": [[9, "3.-Model-comparison-and-validation"]], "3. Predict": [[10, "3.-Predict"]], "3. Protecting Users\u2019 Legal Rights From Anti-Circumvention Law": [[7, "protecting-users-legal-rights-from-anti-circumvention-law"]], "3.1 Cross-validation": [[9, "3.1-Cross-validation"]], "3.1 Interpolate spatial random effects": [[10, "3.1-Interpolate-spatial-random-effects"]], "3.2 Deviance": [[9, "3.2-Deviance"]], "3.2 Predict deforestation probability": [[10, "3.2-Predict-deforestation-probability"]], "4. Conveying Verbatim Copies": [[7, "conveying-verbatim-copies"]], "4. Predict": [[9, "4.-Predict"]], "4. Project future forest cover change": [[10, "4.-Project-future-forest-cover-change"]], "4.1 Interpolate spatial random effects": [[9, "4.1-Interpolate-spatial-random-effects"]], "4.2 Predict deforestation probability": [[9, "4.2-Predict-deforestation-probability"]], "5. Conveying Modified Source Versions": [[7, "conveying-modified-source-versions"]], "5. Figures": [[10, "5.-Figures"]], "5. Project future forest cover change": [[9, "5.-Project-future-forest-cover-change"]], "5.1 Historical forest cover change": [[10, "5.1-Historical-forest-cover-change"]], "5.2 Spatial random effects": [[10, "5.2-Spatial-random-effects"]], "5.3 Spatial probability of deforestation": [[10, "5.3-Spatial-probability-of-deforestation"]], "5.4 Future forest cover": [[10, "5.4-Future-forest-cover"]], "6. Carbon emissions": [[9, "6.-Carbon-emissions"]], "6. Conveying Non-Source Forms": [[7, "conveying-non-source-forms"]], "7. Additional Terms": [[7, "additional-terms"]], "7. Figures": [[9, "7.-Figures"]], "7.1 Historical forest cover change": [[9, "7.1-Historical-forest-cover-change"]], "7.2 Spatial random effects": [[9, "7.2-Spatial-random-effects"]], "7.3 Spatial probability of deforestation": [[9, "7.3-Spatial-probability-of-deforestation"]], "7.4 Future forest cover": [[9, "7.4-Future-forest-cover"]], "8. Termination": [[7, "termination"]], "9. Acceptance Not Required for Having Copies": [[7, "acceptance-not-required-for-having-copies"]], "Access to Google Drive with RClone": [[8, "access-to-google-drive-with-rclone"], [11, "access-to-google-drive-with-rclone"]], "Access to Google Earth Engine API": [[8, "access-to-google-earth-engine-api"], [11, "access-to-google-earth-engine-api"]], "Access to WDPA API": [[8, "access-to-wdpa-api"], [11, "access-to-wdpa-api"]], "Adding data on ultramafic soils": [[11, "adding-data-on-ultramafic-soils"]], "Articles": [[0, "articles"]], "Attribution": [[3, "attribution"]], "Changelog": [[1, "changelog"]], "Citation": [[2, "citation"]], "Code of conduct": [[3, "code-of-conduct"]], "Community guidelines": [[4, "community-guidelines"]], "Compute": [[14, "compute"]], "Compute explanatory variables": [[8, "compute-explanatory-variables"], [11, "compute-explanatory-variables"]], "Compute forest cover change": [[8, "compute-forest-cover-change"], [11, "compute-forest-cover-change"]], "Contribute to code": [[4, "contribute-to-code"]], "Contributing": [[5, "contributing"]], "Correlation plots": [[11, "correlation-plots"]], "Country data": [[8, "country-data"]], "Cross-validation": [[11, "cross-validation"]], "Data": [[8, "data"], [11, "data"], [13, "data"]], "Deprecated": [[14, "deprecated"]], "Deviance": [[11, "deviance"]], "Download": [[14, "download"]], "Download raw data": [[8, "download-raw-data"], [11, "download-raw-data"]], "Effect of the distances to road and forest edge": [[11, "effect-of-the-distances-to-road-and-forest-edge"]], "Effect of ultramafic soils": [[11, "effect-of-ultramafic-soils"]], "Enforcement": [[3, "enforcement"]], "Figures": [[11, "figures"]], "Files": [[8, "files"], [11, "files"]], "Final model": [[11, "final-model"]], "ForestAtRisk Tropics": [[9, "ForestAtRisk-Tropics"]], "Future forest cover": [[11, "future-forest-cover"]], "GNU General Public License": [[7, "gnu-general-public-license"]], "Get started": [[10, "Get-started"]], "Get started using R": [[12, "get-started-using-r"]], "Historical forest cover change": [[11, "historical-forest-cover-change"]], "How to Apply These Terms to Your New Programs": [[7, "how-to-apply-these-terms-to-your-new-programs"]], "Importing Python modules": [[8, "importing-python-modules"], [11, "importing-python-modules"]], "Indices and tables": [[6, "indices-and-tables"]], "Installation": [[5, "installation"]], "Installation testing": [[5, "installation-testing"]], "Interpolate spatial random effects": [[11, "interpolate-spatial-random-effects"]], "Introduction": [[8, "introduction"], [11, "introduction"]], "License": [[7, "license"]], "Main functionalities": [[5, "main-functionalities"]], "Miscellaneous": [[13, "miscellaneous"]], "Model": [[5, "model"], [11, "model"], [13, "model"]], "Model comparison and validation": [[11, "model-comparison-and-validation"]], "Model preparation": [[11, "model-preparation"]], "Model\u2019s coefficients": [[11, "models-coefficients"]], "New Caledonia": [[11, "new-caledonia"]], "Our Pledge": [[3, "our-pledge"]], "Our Responsibilities": [[3, "our-responsibilities"]], "Our Standards": [[3, "our-standards"]], "Overview": [[5, "overview"]], "Plot": [[13, "plot"]], "Plots": [[8, "plots"]], "Preamble": [[7, "preamble"]], "Predict": [[13, "predict"]], "Predict and project": [[5, "predict-and-project"]], "Predict deforestation probability": [[11, "predict-deforestation-probability"]], "Predictions": [[11, "predictions"]], "Project": [[13, "project"]], "Project future forest cover change": [[11, "project-future-forest-cover-change"]], "Python API": [[13, "python-api"]], "Python notebooks": [[0, "python-notebooks"]], "R notebooks": [[0, "r-notebooks"]], "Report an issue": [[4, "report-an-issue"]], "Sample": [[5, "sample"], [14, "sample"]], "Sampling": [[11, "sampling"]], "Sampling the observations": [[11, "sampling-the-observations"]], "Scientific publication": [[5, "scientific-publication"]], "Scope": [[3, "scope"]], "Set credentials": [[8, "set-credentials"], [11, "set-credentials"]], "Spatial probability of deforestation": [[11, "spatial-probability-of-deforestation"]], "Spatial random effects": [[11, "spatial-random-effects"]], "Statement of Need": [[5, "statement-of-need"]], "Submodules": [[13, "submodules"]], "TERMS AND CONDITIONS": [[7, "terms-and-conditions"]], "Using conda": [[5, "using-conda"]], "Using virtualenv": [[5, "using-virtualenv"]], "Validate": [[5, "validate"], [13, "validate"]], "Variable selection": [[11, "variable-selection"]], "Variables\u2019 effects": [[11, "variables-effects"]], "Various": [[14, "various"]], "forestatrisk 0.1": [[1, "forestatrisk-0-1"]], "forestatrisk 0.1.1": [[1, "forestatrisk-0-1-1"]], "forestatrisk 0.2": [[1, "forestatrisk-0-2"]], "forestatrisk 1.0": [[1, "forestatrisk-1-0"]], "forestatrisk 1.1": [[1, "forestatrisk-1-1"]], "forestatrisk 1.1.1": [[1, "forestatrisk-1-1-1"]], "forestatrisk 1.1.2": [[1, "forestatrisk-1-1-2"]], "forestatrisk 1.1.3": [[1, "forestatrisk-1-1-3"]], "forestatrisk 1.2": [[1, "forestatrisk-1-2"]], "forestatrisk Python package": [[5, "forestatrisk-python-package"]]}, "docnames": ["articles", "changelog", "citation", "code_of_conduct", "contributing", "index", "indices", "license", "notebooks/country_data/country_data", "notebooks/far_tropics", "notebooks/get_started", "notebooks/new_caledonia/new_caledonia", "notebooks_R/get_started_R", "python_api", "python_api/forestatrisk.data", "python_api/forestatrisk.forestatrisk", "python_api/forestatrisk.hbm", "python_api/forestatrisk.misc", "python_api/forestatrisk.model", "python_api/forestatrisk.plot", "python_api/forestatrisk.predict", "python_api/forestatrisk.project", "python_api/forestatrisk.validate"], "envversion": {"nbsphinx": 4, "sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1}, "filenames": ["articles.rst", "changelog.rst", "citation.rst", "code_of_conduct.rst", "contributing.rst", "index.rst", "indices.rst", "license.rst", "notebooks/country_data/country_data.rst", "notebooks/far_tropics.ipynb", "notebooks/get_started.ipynb", "notebooks/new_caledonia/new_caledonia.rst", "notebooks_R/get_started_R.rst", "python_api.rst", "python_api/forestatrisk.data.rst", "python_api/forestatrisk.forestatrisk.rst", "python_api/forestatrisk.hbm.rst", "python_api/forestatrisk.misc.rst", "python_api/forestatrisk.model.rst", "python_api/forestatrisk.plot.rst", "python_api/forestatrisk.predict.rst", "python_api/forestatrisk.project.rst", "python_api/forestatrisk.validate.rst"], "indexentries": {"compute_biomass_avitabile() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.compute_biomass_avitabile", false]], "compute_biomass_whrc() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.compute_biomass_whrc", false]], "compute_distance() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.compute_distance", false]], "compute_forest() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.compute_forest", false]], "compute_osm() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.compute_osm", false]], "compute_srtm() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.compute_srtm", false]], "compute_wdpa() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.compute_wdpa", false]], "country_compute() (in module forestatrisk.data)": [[14, "forestatrisk.data.country_compute", false]], "download_gadm() (in module forestatrisk.data.download)": [[14, "forestatrisk.data.download.download_gadm", false]], "download_osm() (in module forestatrisk.data.download)": [[14, "forestatrisk.data.download.download_osm", false]], "download_srtm() (in module forestatrisk.data.download)": [[14, "forestatrisk.data.download.download_srtm", false]], "download_wdpa() (in module forestatrisk.data.download)": [[14, "forestatrisk.data.download.download_wdpa", false]], "mosaic_biomass_whrc() (in module forestatrisk.data.compute)": [[14, "forestatrisk.data.compute.mosaic_biomass_whrc", false]]}, "objects": {"forestatrisk.data": [[14, 0, 1, "", "country_compute"]], "forestatrisk.data.compute": [[14, 0, 1, "", "compute_biomass_avitabile"], [14, 0, 1, "", "compute_biomass_whrc"], [14, 0, 1, "", "compute_distance"], [14, 0, 1, "", "compute_forest"], [14, 0, 1, "", "compute_osm"], [14, 0, 1, "", "compute_srtm"], [14, 0, 1, "", "compute_wdpa"], [14, 0, 1, "", "mosaic_biomass_whrc"]], "forestatrisk.data.download": [[14, 0, 1, "", "download_gadm"], [14, 0, 1, "", "download_osm"], [14, 0, 1, "", "download_srtm"], [14, 0, 1, "", "download_wdpa"]]}, "objnames": {"0": ["py", "function", "Python function"]}, "objtypes": {"0": "py:function"}, "terms": {"": [3, 4, 5, 7, 9], "0": [8, 9, 10, 11, 12, 14], "000": 11, "000000000000000": 11, "000133": 11, "0032": [10, 12], "003497": 11, "01": 9, "0122": [10, 12], "0129": 9, "0134": 9, "0159": [10, 12], "0174532925199433": 11, "0193": 11, "0246": 11, "0258": 11, "0265": 11, "0281": 11, "02975": [2, 5], "03": [9, 11], "0300": 11, "0301": 11, "0319": 9, "0343": 11, "0347": [10, 12], "0372": 11, "0389": 9, "04": [9, 10, 11, 12], "0402": 11, "0408": [10, 12], "041": 9, "0433": 11, "044097": 11, "0444": [10, 12], "0446": 11, "0450": 11, "0453": 11, "0474": 11, "0479": 11, "0502": 9, "0545": [10, 12], "0556": 11, "0573": [10, 12], "0585": 11, "06": [10, 12], "0607": [10, 12], "065": 11, "0657": 9, "0683": 11, "07": [10, 11, 12], "0702": [10, 12], "0713": 11, "0725": 11, "0735": 9, "075294": 11, "0758": 11, "08": 9, "0814": 11, "0838": [10, 12], "0885": 9, "0906": [10, 12], "0916": [10, 12], "092": 9, "0l": 12, "1": [3, 5, 8, 11, 12, 14], "10": [2, 5, 9, 10, 11, 12], "100": [9, 10, 11], "1000": [9, 10, 11], "10000": [9, 10, 11], "10000l": 12, "1000l": 12, "1024": [8, 11], "1045": 11, "105": [9, 10, 12], "106": 11, "108": 11, "10l": 12, "11": [1, 9, 10, 11], "110": 11, "1101": 9, "111": 11, "114": 11, "117": [10, 11, 12], "1172": [9, 10, 12], "12": [9, 10, 12], "120": 11, "121": 11, "1234": [9, 10, 11], "1234l": 12, "1240": 11, "12541": 11, "128": [9, 10, 11], "128l": 12, "129": 11, "13": [9, 10, 11], "139830": 11, "13dmpoq": 11, "14": [9, 10], "14296": 11, "14296x1": 11, "145095": 11, "145470": 11, "145545": 11, "146445": 11, "146595": 11, "147315": 11, "1485": [9, 10, 12], "15": [9, 10, 11], "150": [8, 11, 12], "151104": 9, "15237": 9, "158": 11, "159": [10, 12], "16": [9, 10, 11, 12], "16109": 11, "162": [9, 11], "163": 11, "163d27": 11, "163d31": 11, "164": 11, "16417": 11, "16508": 11, "16542": 9, "165d33": 11, "166": 11, "167d36": 11, "167d38": 11, "168": [9, 10, 11], "1697": [9, 10, 12], "17": 9, "17242": 11, "17328": 11, "17437": 11, "175": [10, 12], "17522": 11, "176": 9, "18": [9, 11], "183": 11, "18301": 11, "1849755": [9, 10, 12], "1850325": 12, "1851195": [9, 10, 12], "1851615": [9, 10, 12], "1851975": [9, 10, 12], "1852095": [9, 10, 12], "187": 11, "18795": 11, "1880": 11, "18870": 11, "19": [9, 11, 12], "1900": 11, "194": 11, "196": 11, "1980": 11, "19860": 11, "19945": 11, "1996": 7, "19d28": 11, "19d29": 11, "1e8": [8, 9, 10, 11, 12], "1l": 12, "1st": 11, "2": [11, 12], "20": [7, 9, 11, 12], "2000": [8, 9, 10, 11, 12], "2005": [9, 11], "2007": 7, "2010": [8, 9, 10, 11, 12, 14], "2013": [8, 11], "2015": [9, 11], "2016": 14, "201820": 9, "202": 11, "2020": [8, 9, 10, 11, 12], "2021": [2, 5, 8, 11, 12], "2022": 9, "2030": [9, 11], "2035": [9, 11], "2040": [9, 11], "2050": [9, 10, 11, 12], "2055": [9, 11], "2060": [9, 11], "2070": [9, 11], "2080": [9, 11], "2085": [9, 11], "2090": [9, 11], "21": [9, 11], "210": 11, "2100": [5, 9, 11], "21105": [2, 5], "212": 11, "216": [9, 10, 11, 12], "218834": 11, "21d11": 11, "21st": 9, "22": [9, 11], "221": 11, "222": 11, "224": [10, 12], "2250": 11, "22d52": 11, "22d53": 11, "23": [9, 10, 11, 12], "24": [9, 10], "244265": 11, "25": [9, 11], "253": 11, "255": 11, "257222101": 11, "258": 11, "25_09": 8, "26": 9, "2660": 11, "27": [9, 10, 12], "274": [10, 12], "27590": 9, "27600": 11, "277": [9, 10, 12], "28": [7, 9], "288": 9, "289924": 9, "29": [7, 9], "293": [10, 12], "2955": 11, "296": [9, 10], "2975": [2, 5], "298": 11, "2de32d40": 11, "2hll": 11, "2nd": 11, "2sp": 11, "2x": [9, 10], "3": [4, 5, 8, 11, 12, 14], "30": [5, 7, 8, 9, 10, 11, 12], "300000": 11, "303": 9, "30m": [5, 11], "31": 9, "315": 11, "316": 11, "3163": 11, "3166": 14, "32": 9, "321": 9, "324": 11, "3333333333333": 11, "333585": 11, "334290": 9, "3395": 14, "34": 11, "349": 11, "35": [9, 11], "354270": 11, "358": 11, "36": 11, "364": 11, "3646": 9, "37": [9, 10, 12], "372052": 11, "375": [10, 12], "377444": 11, "377488": 11, "38": 11, "381925": 9, "388749": 11, "398200": 11, "399504": 11, "4": [3, 11, 12, 14], "40": [9, 11], "400000": 11, "404726": 11, "4085": 11, "41": 12, "411547": 11, "4185": 11, "42": 11, "420699bc672e2020413": 11, "423524": 11, "427308": 11, "4294967295": 14, "4326": [8, 11], "434673": 11, "4385": 11, "44": [10, 11, 12], "45": [9, 11], "46": [9, 10, 11, 12], "467960": 11, "47": 11, "4749": 11, "477354": 11, "48": [9, 10, 12], "481285": 9, "484": 11, "484171": 11, "484320": 11, "485228": 11, "485306": 9, "488": 11, "489": 11, "498": [10, 12], "4bd9": 11, "5": [8, 11, 12], "50": [8, 9, 11], "500": [8, 9, 11], "5000": [9, 11], "5001": [9, 11], "5002": [9, 11], "509": 11, "51": [10, 12], "511875": 11, "512024": 11, "512475": 11, "512685": 11, "513525": 11, "514875": 11, "521700": 11, "522": 9, "522300": 11, "522406": 11, "525": 9, "526354": 11, "52e": [9, 10, 12], "53": 11, "5366": 11, "54": 11, "541": [9, 10, 12], "5413": 11, "5486": 11, "5490": 8, "54e": [9, 10, 12], "5513": 11, "5566": 11, "5572": 11, "56": [9, 11], "568710": 11, "5743": [9, 10, 12], "5801": 11, "5821": 11, "5873": 9, "587603": 9, "5895": 11, "5897": 11, "59": [2, 5, 11], "5912": 11, "5959": 9, "6": [2, 5, 8, 10, 11, 12], "60": [7, 9, 11], "6004": 9, "6018": 11, "6022": 11, "602317": 11, "6034": 9, "6047": [9, 10, 12], "6049": 11, "6074": 9, "6081": 9, "6082": 11, "6095": 11, "613300": 11, "6136": 11, "6179": [9, 10, 12], "6183": 11, "61e": 11, "62": 11, "6246": 11, "6269": 11, "62e": 11, "63": 11, "6322": 11, "6323": 11, "6329": 9, "6350": 11, "6364": [9, 10, 12], "6378137": 11, "6382": 9, "64": 11, "6419": 11, "642": [9, 10, 12], "6425": 9, "643098": 11, "6436": 9, "644809": 9, "6469": 9, "6488": 9, "6489": 9, "65": [9, 11], "6527": 11, "6535": 11, "6542": 11, "6547": 9, "65535": 5, "6560": 9, "6563": 9, "656746": 11, "6570": 9, "6576": [9, 10, 12], "6583": 9, "66": 11, "6602": 11, "6657": 9, "6666666666667": 11, "6677": 9, "6689": 11, "6690": [9, 10, 12], "6696": 11, "6699": 9, "67": 11, "6701": 11, "6707": 9, "6708": 11, "6725": 11, "6732": 11, "6751": 9, "6765": [11, 12], "6778": 12, "679": [10, 12], "6808": 11, "6840465": [9, 10, 12], "6840615": 12, "6842235": [9, 10, 12], "6842295": [9, 10, 12], "6842445": [9, 10, 12], "6842535": [9, 10, 12], "6875": 9, "6895": 11, "6946": 9, "6952": 9, "6956": 9, "6962": 9, "696619": 11, "6b": 7, "6d": 7, "7": [10, 11, 12, 14], "70": [9, 11], "7044": 9, "7056": 9, "705718": 9, "7075": 9, "7089": 9, "7099": 9, "71": 9, "714871": 11, "7175": 9, "729167": 11, "73": 11, "731": 9, "731802": 11, "739": 11, "74": 11, "745": 11, "7555": 11, "765": [9, 10, 12], "7676": 11, "7683": 11, "7689": 11, "7706": 11, "7707": 11, "7722": [9, 10, 12], "7740": 11, "7743": 11, "7746": 11, "7748": 11, "7753": 11, "7757": 11, "7767": 11, "7783": 11, "7787": 11, "78": [9, 10, 11, 12], "7818": 11, "7819": 11, "7894": 11, "7901": 11, "7905": 11, "7907": 11, "7911": 11, "7913": 9, "7917": 11, "7937": 9, "7939": 9, "7949": 11, "7955": 11, "7956": 11, "7957": 11, "7960": 9, "7980": 9, "7984": 11, "7986": 11, "7993": [9, 11], "7m": 12, "8": [9, 10, 11, 12], "80": [9, 10, 11, 12], "800": [10, 12], "8002": 9, "8005": 9, "8009": 11, "8011": [9, 11], "8014": 9, "8016": 11, "8017": 9, "8020": 9, "8023": 9, "8024": 11, "8025": 11, "8029": [9, 11], "8034": 11, "8036": 11, "8037": 9, "8041": [9, 11], "8047": 11, "8048": 11, "8058": 9, "8060": 9, "8065": 11, "8068": 11, "8070": 11, "8078": 11, "8082": 11, "8091": 11, "81": 11, "8101": 11, "8107": 11, "8135": 11, "8148": 9, "815": 9, "8162": 11, "8164": 9, "8168": [9, 10, 12], "8181": 9, "8191": 9, "8198": 9, "8202": 9, "8204": 9, "8209": 9, "8213": 9, "8216": 9, "8218": 9, "822": 11, "8220": 9, "8224": 9, "8235": 9, "8238": 9, "8245": 9, "8253": 9, "8262": 9, "8265": 9, "827": 11, "8277": 9, "8279": 9, "8280": 9, "8282": 9, "8284": 9, "8285": 9, "8292": 9, "8293": 9, "8298": 9, "83": [10, 12], "8303": 9, "8307": 9, "8339": 9, "8369": 9, "84": [10, 11, 12], "843905": 9, "8448": [9, 10, 12], "85": 11, "8512": 11, "852": [10, 12], "8524": 11, "8563": 11, "8582": 11, "8583": [9, 10, 12], "8584": 11, "85954": 9, "86": 9, "8612": 11, "87": 9, "8709": 11, "8720": 11, "8761": 11, "8771": 11, "88": 11, "8810": 9, "8817": 11, "8818": 11, "8821": 11, "8822": 11, "8823": 11, "8824": 11, "88256": 11, "8826": 11, "8827": 11, "8834": 9, "8841": 9, "8842": 9, "8843": 9, "8849": 11, "8854": 11, "8856": 11, "8869": 11, "8877": 9, "89": [10, 12], "8901": 11, "8916": 11, "89177": 11, "89386": 11, "9": [1, 9, 10, 11, 12], "90": [8, 11], "9032": 9, "9037": 9, "9040": 9, "9049": 9, "9063": 9, "9065": 9, "9070": 9, "909": 11, "90900": 11, "91": 11, "9100": [9, 11], "9104": 9, "9107": 9, "9116": 9, "9133": 9, "91747": 11, "92": [9, 11], "93": 11, "949": [9, 10, 12], "95": 11, "97": [9, 11], "98": 9, "9802": 11, "98242": 9, "99": [9, 10, 11, 12], "9923": 9, "9933": 11, "9977": 11, "9979": 9, "9b83": 11, "A": [5, 7, 14], "AND": 14, "AS": [7, 14], "And": 7, "BE": 7, "BEING": 7, "BUT": 7, "BY": 7, "Being": 3, "But": 7, "By": 7, "FOR": 7, "For": [3, 5, 7], "IF": 7, "IN": 7, "If": [4, 5, 7, 8, 11, 12, 14], "In": [3, 5, 7, 8], "It": [5, 7, 11], "NO": 7, "NOT": 7, "No": [11, 14], "OF": 7, "OR": [7, 14], "Of": [4, 7, 8], "On": 11, "SUCH": 7, "Such": 7, "THE": 7, "THERE": 7, "TO": 7, "The": [2, 3, 4, 5, 7, 8, 9, 10, 11, 12], "Then": [5, 8, 11, 14], "There": 4, "To": [5, 7, 8, 11, 12], "WILL": 7, "WITH": 7, "a_nodata": 11, "a_sr": 11, "aaron": 4, "abil": 7, "about": [3, 7], "abov": 7, "aboveground": 14, "absenc": 7, "absolut": 7, "abus": [3, 7], "accept": 3, "access": [5, 7], "accompani": 7, "accord": 7, "accordingli": 5, "account": [3, 5, 8, 11], "accuraci": 11, "achard": [9, 11], "achiev": 7, "acknowledg": 7, "acquir": 7, "across": [5, 7], "act": 3, "action": [1, 3, 7], "activ": [5, 7, 11, 12], "actual": 7, "ad": [1, 7], "adapt": [3, 7, 9, 10, 11, 12], "add": [7, 8], "add_subplot": 11, "addit": [5, 8, 9, 11], "address": [3, 7], "adj": [9, 10, 11, 12], "adjac": [9, 10], "administr": 14, "adopt": 7, "advanc": 3, "advers": 7, "advis": 7, "affect": 7, "affirm": 7, "after": 7, "ag": 3, "against": [7, 11], "agb": 9, "agg": 1, "aggreg": 7, "agre": [4, 5, 7], "agreement": 7, "agricultur": 11, "aim": 7, "al": [8, 11, 14], "algorithm": 5, "alia": 1, "align": 3, "all": [3, 5, 7, 11], "alleg": 7, "allow": [5, 7, 11], "almost": 11, "along": 7, "alpha": 14, "alpha_norm": 11, "alreadi": [7, 14], "also": [3, 5, 7, 8], "altern": 7, "although": 7, "altitud": [5, 8, 9, 10, 11, 12], "among": [7, 10, 12], "amount": [9, 11], "an": [3, 5, 7, 8, 11, 12, 14], "analys": 8, "analysi": 11, "ancillari": 7, "angleunit": 11, "ani": [3, 7, 8, 9], "annual": [9, 10, 11, 12], "annual_defor": [9, 10, 11, 12], "answer": 3, "anticip": 5, "anybodi": [4, 5], "anyon": 7, "anyth": 7, "api": [1, 5, 12], "appear": 3, "append": [9, 10, 11], "appli": 3, "applic": 7, "appoint": 3, "approach": 11, "appropri": [3, 7], "approxim": 7, "ar": [3, 4, 7, 8, 11, 12, 14], "arang": 11, "archipelago": [9, 10, 12], "archiv": 5, "area": [1, 5, 7, 8, 9, 10, 11, 12, 14], "area_or_point": 11, "argument": [8, 11], "aris": 7, "arrai": [9, 11], "arrang": 7, "articl": [2, 7, 9, 11], "ask": 7, "aspecif": 14, "aspect": 5, "assert": 7, "asset": 7, "associ": [1, 5, 7], "assum": 7, "assumpt": 7, "assur": 7, "attach": 7, "attack": 3, "attempt": 7, "attent": 3, "attribut": 7, "auc": [9, 11], "authent": [8, 11], "author": [2, 7], "auto": 5, "autocorrel": [5, 9, 10, 11, 12], "autom": 1, "autoregress": 5, "avail": [2, 3, 5, 7, 8, 11, 12], "averag": 11, "avitabil": 14, "avoid": [7, 9, 10, 11, 12], "awai": 7, "ax": 11, "axi": [9, 10, 11], "b": [7, 11], "back": 11, "bak": [9, 10, 11, 12], "balanc": 5, "ban": 3, "band": [9, 10, 11], "bar": 11, "base": [5, 7, 11], "basegeogcr": 11, "bayesian": 5, "bbox": 11, "beam": 4, "becaus": [5, 7, 11], "bed": 11, "been": [1, 5, 7, 8, 14], "befor": 5, "behalf": 7, "behavior": 3, "being": [7, 11, 12], "belep": 11, "believ": 7, "below": [2, 7], "benefit": 7, "best": [3, 5, 7, 11], "beta": [9, 10, 11], "beta_start": [9, 10, 11, 12], "between": [5, 7, 12], "beyond": 7, "bibtex": 2, "bigtiff": 11, "bin": [5, 11, 12], "bind": 5, "binomi": [5, 9, 10, 11, 12], "biodivers": 5, "biomass": [1, 14], "biorxiv": 9, "blk_row": [9, 10, 11, 12], "block": [5, 9, 10, 11], "bo": 11, "bodi": [3, 7], "boolean": 14, "border": [8, 9, 10, 11, 12, 14], "both": [5, 7], "bourgoin": 9, "box": 7, "branch": 4, "brief": 7, "bug": [1, 4], "build": [1, 9, 10, 11], "burn": 11, "burnin": [9, 10, 11, 12], "busi": 7, "byte": 11, "c": [5, 7, 9, 11, 12], "c_df": 9, "c_emiss": 9, "cach": [5, 8, 11], "calcul": 5, "caledoni": 11, "caledonia": [0, 1], "call": [1, 5, 7], "can": [1, 2, 4, 5, 7, 8, 11, 14], "cannot": 7, "carbon": [5, 8, 11], "carri": 7, "cartesian": 11, "case": [5, 7, 8, 9, 10, 12], "cast": 14, "cat": [8, 11, 12], "caus": 7, "cd": 5, "ceas": 7, "cell": [9, 10, 11, 12], "cellneigh": [9, 10, 11, 12], "center": [9, 10, 11], "centuri": [9, 11], "certain": 7, "cessat": 7, "cgiar": [8, 11, 14], "chain": [9, 10, 11, 12], "chang": [4, 5, 7, 12], "channel": 12, "charact": 12, "character": 7, "characterist": [3, 8, 11], "charg": 7, "check": [8, 11, 12], "choos": 7, "chri": 4, "ci": 1, "ci_high": [9, 10, 11, 12], "ci_low": [9, 10, 11, 12], "cirad": [3, 5, 11], "circumst": [3, 7], "cite": 2, "civil": 7, "claim": 7, "clarifi": 3, "class": [7, 11], "classic": [9, 10], "clear": 7, "clearli": [7, 11], "close": [7, 9, 10, 11, 12], "co": 11, "code": [1, 5, 8, 11, 14], "coef_edge_km": 11, "coef_geol": 11, "coef_road_km": 11, "collaps": 12, "collect": [7, 8, 11], "colorinterp": 11, "column": [9, 11], "com": [5, 9, 10, 12], "combin": 7, "come": [5, 7, 14], "comma": 14, "command": [5, 7, 8, 11, 12], "comment": 3, "commerci": 7, "commit": [3, 4, 7], "common": [3, 7], "commun": [1, 3, 5, 7], "compil": 7, "complaint": 3, "complet": 12, "compli": 7, "complianc": 7, "compon": 7, "comprehens": 12, "compress": 11, "comput": [1, 5, 7, 9, 10, 12, 13], "compute_biomass_avitabil": [13, 14], "compute_biomass_whrc": [13, 14], "compute_dist": [13, 14], "compute_forest": [13, 14], "compute_osm": [13, 14], "compute_srtm": [13, 14], "compute_wdpa": [13, 14], "concern": 7, "conda": 12, "conda_cr": 12, "conda_instal": 12, "conda_list": 12, "conda_path": 12, "conda_pkg": 12, "condit": 5, "conduct": [1, 4, 5], "confidenti": 3, "config": [5, 8, 11], "configur": [8, 11, 12], "conform": 11, "confound": 11, "conic": 11, "connect": 7, "consequ": [5, 7], "consequenti": 7, "conserv": 5, "consid": [3, 7, 11], "consist": 7, "conspicu": 7, "constantli": 7, "constitut": 7, "constru": 7, "construct": 3, "consum": 7, "contact": [3, 7], "contain": 7, "content": 7, "context": 7, "continent": 5, "continu": [1, 7], "contractu": 7, "contradict": 7, "contrast": 7, "contribut": [1, 3], "contributor": [3, 4, 5, 7], "control": 7, "conveni": 7, "convers": 11, "convey": 7, "coordin": [9, 10, 11, 14], "copi": [12, 14], "copy2": [9, 10, 11], "copyleft": 7, "copyright": 7, "corner": 11, "correct": [1, 3, 5, 7], "correctli": 5, "correl": 5, "correspond": [7, 9, 10], "cost": 7, "could": [3, 7, 11], "counterclaim": 7, "countpix": [9, 10, 11, 12], "countri": [0, 5, 7, 11, 14], "country_comput": [8, 11, 13, 14], "country_download": [8, 11], "country_forest_run": [1, 8, 11], "cours": [7, 8], "court": 7, "coven": [3, 7], "cover": [1, 5, 7, 12], "coverag": 7, "cr": 11, "creat": [3, 4, 5, 8, 9, 10, 11, 12, 14], "criterion": 7, "critic": 3, "cross": [5, 7], "cross_valid": [5, 9, 11], "csi": [8, 11, 14], "csize": [9, 10, 11, 12], "csize_new": [9, 10, 11, 12], "csize_orig": [9, 10, 11, 12], "csv": [9, 11], "ctry_proj": [8, 9, 10, 11, 12], "cure": 7, "current": 14, "custom": 7, "customarili": 7, "cv_df_glm": [9, 11], "cv_df_icar": [9, 11], "cv_df_rf": [9, 11], "cv_glm": [9, 11], "cv_icar": [9, 11], "cv_rf": [9, 11], "d": 7, "d_edge_100m": 11, "d_edge_10km": 11, "d_edge_1km": 11, "d_geol": 11, "d_road_10km": 11, "d_road_1km": 11, "dai": 7, "damag": 7, "danger": 7, "data": [0, 1, 5, 7, 12, 14], "data_countri": [8, 11, 14], "data_forest": [8, 11, 14], "data_glp": [9, 10, 12], "data_gpl": 9, "data_raw": [8, 11, 14], "databas": [8, 11, 14], "datafram": [9, 11], "dataset": [8, 9, 10, 11, 12], "date": [4, 7, 8, 9, 10, 11, 12, 14], "dates_fut": [9, 11], "datum": 11, "dc86": 11, "de": [11, 14], "deactiv": 5, "decemb": 7, "decid": 7, "decis": 5, "declin": 7, "decreas": 11, "deem": [3, 7], "def": 11, "default": [4, 12, 14], "defect": 7, "defens": 7, "defin": [3, 7, 11], "definit": 14, "defor": [9, 10, 11, 12], "deforest": [1, 2, 5, 8, 12], "deforestprob": 1, "degre": [8, 11], "delet": 5, "delimit": 11, "deni": 7, "denomin": 7, "depend": [1, 5], "deprec": 13, "depriv": 7, "deriv": 5, "derogatori": 3, "describ": 11, "descript": 5, "design": [7, 14], "detail": [3, 5, 7, 12], "detect": 12, "determin": [3, 5, 7], "dev": [5, 9, 11], "develop": [4, 5, 7, 11], "devianc": [10, 12], "deviance_ful": [9, 11], "deviance_glm": [9, 11], "deviance_icar": [9, 11], "deviance_nul": [9, 11], "deviance_rf": [9, 11], "devic": 7, "df": 11, "df_out": 11, "differ": [3, 7, 8, 9, 11], "digit": [8, 11], "dir": [5, 12], "direct": 7, "directli": 7, "directori": [5, 8, 9, 10, 11, 12, 14], "disabl": 3, "discriminatori": 7, "discuss": 4, "disk": [9, 10, 11, 12], "displai": [1, 7], "dist": 11, "dist_defor": [9, 10, 11, 12], "dist_defor_forecast": [9, 10, 11, 12], "dist_edg": [8, 9, 10, 11, 12], "dist_edge_forecast": [9, 10, 11, 12], "dist_edge_km": 11, "dist_fil": 14, "dist_riv": [9, 10, 11, 12], "dist_road": [9, 10, 11, 12], "dist_road_km": 11, "dist_town": [9, 10, 11, 12], "distanc": [5, 8, 9, 10, 12, 14], "distinguish": 7, "distribut": 7, "divid": [9, 10], "dmatric": [9, 11], "do": [3, 4, 7, 8, 10, 12], "docsrc": [9, 10, 12], "docstr": 1, "document": [1, 4, 5, 7, 12], "doe": 7, "doesn": [9, 11], "doi": [2, 5, 9], "domain": 7, "done": [5, 14], "dot": [3, 11], "dotenv": [5, 8, 11], "doubt": 7, "download": [1, 12, 13], "download_biomass_whrc": 1, "download_forest": 1, "download_gadm": [13, 14], "download_osm": [13, 14], "download_srtm": [13, 14], "download_wdpa": [13, 14], "dpast": 9, "dpi": [8, 9, 10, 11, 12], "draw": [9, 10], "drive": 1, "driver": 11, "drop": [9, 11], "dropna": [9, 10, 11], "dtype": 12, "dump": [9, 11], "durabl": 7, "dure": [10, 12], "dwell": 7, "dynam": 7, "e": [3, 5, 7, 11], "ea": [9, 11], "each": [5, 7, 8, 11], "earlier": 7, "earth": 1, "earthengin": [5, 8, 11, 12], "easiest": 5, "easili": 5, "east": 11, "ecolog": 9, "ecologi": [1, 5, 9, 10, 11], "econom": [3, 5], "edg": [5, 8, 9, 10, 12], "edit": 3, "educ": 3, "ee": [8, 11], "ee_jrc": 1, "effect": [5, 7, 12], "effici": 5, "effort": 7, "eg": [5, 8, 9, 10, 11, 12, 14], "either": [5, 7, 8, 11], "electron": [3, 7], "elev": [8, 11, 14], "elif": 11, "ellipsoid": 11, "els": 11, "embodi": 7, "emiss": [5, 8, 11], "empathi": 3, "employ": 7, "enabl": 7, "encod": 11, "end": 7, "enforc": 7, "engin": 1, "ensembl": [9, 11], "ensur": 7, "enter": 7, "entir": 7, "entiti": 7, "entri": 2, "env": [5, 8, 11, 12], "environ": [3, 5, 8, 11, 12], "environment": 14, "epsg": [8, 11, 14], "equival": 7, "erron": 7, "error": [8, 9, 10, 11], "esri": 11, "essenti": 7, "establish": 14, "estim": [5, 9, 10, 11, 12], "et": [8, 11, 14], "ethnic": 3, "eval_env": 12, "even": 7, "event": [3, 7], "ever": 7, "everi": [4, 5, 7], "everyon": [3, 7], "everyth": 12, "exact": 7, "exampl": [3, 4, 5, 7, 8, 9], "except": 7, "exclud": 7, "exclus": 7, "excus": 7, "exdir": 12, "execut": [7, 8, 11, 12], "exercis": 7, "exist": [8, 9, 10, 12], "exp": 11, "expect": [3, 7], "experi": 3, "explain": [5, 7, 11], "explanatori": [5, 9], "explic": 8, "explicit": 3, "explicitli": 7, "export": [9, 10], "express": [3, 7], "expressli": 7, "extend": [5, 7, 9], "extens": [7, 8, 9, 10, 11, 12], "extent": [7, 11, 14], "extract": [9, 10], "extractal": [9, 10], "f": [7, 9, 10, 11], "f1": 11, "f2": 11, "f3": 11, "face": 3, "facil": 7, "factor": [5, 11], "fail": 7, "failur": 7, "fair": [3, 7], "faith": 3, "fals": [9, 10, 11, 12, 14], "famili": 7, "faq": 3, "far": [5, 8, 9, 10, 11, 12], "fashion": 7, "fast": 5, "favor": 7, "fc": [9, 10, 11, 12], "fcc": [9, 10, 11, 12], "fcc123": [8, 9, 10, 11, 12], "fcc23": [8, 9, 10, 11, 12], "fcc_": [9, 11], "fcc_2050": [9, 10, 11, 12], "fcc_2100": [9, 11], "fcc_sourc": [8, 11], "featur": [4, 5, 7, 14], "feb": 12, "fee": 7, "fig": [9, 11], "fig_fcc123": [8, 9, 10, 11, 12], "fig_fcc23": [9, 11], "fig_freq": [9, 11], "fig_prob": [9, 10, 11, 12], "fig_rho": [9, 10, 11, 12], "fig_rho_orig": [9, 10, 11, 12], "fig_var": 8, "figsiz": [8, 9, 10, 11, 12], "figur": 12, "file": [5, 7, 12, 14], "fileconn": 12, "fill": [8, 11], "filter": 14, "final": 7, "find": [7, 11], "fine": 12, "fire": 11, "first": [1, 5, 7, 8, 9, 10, 11, 12], "fit": [5, 7, 9, 11], "five": [9, 10, 11, 12], "fix": [7, 11], "float": 11, "flow": 7, "focus": 3, "folder": [8, 9, 10, 11, 12], "follow": [3, 4, 5, 7, 8, 9, 11, 12], "fom": [9, 11], "forbid": 7, "forc": [5, 7, 12], "forecast": [2, 5, 8, 9, 10, 11, 12], "forest": [1, 5, 12, 14], "forest_": [9, 10, 11, 12], "forest_cov": [9, 10, 11, 12], "forest_t3": [9, 10, 11, 12], "forestatrisk": [0, 2, 4, 8, 10, 11, 12, 14], "forg": [5, 12], "fork": 4, "form": [8, 11], "format": [7, 9, 10, 11, 14], "formula": [9, 10, 11, 12], "formula_corr": [9, 11], "formula_glm": [9, 11], "formula_nul": [9, 11], "formula_rf": [9, 11], "foster": 3, "found": 7, "foundat": 7, "fr": [1, 3, 5, 9, 10, 11, 14], "framework": 5, "free": [3, 4, 7], "freeli": 8, "freq_prob": [9, 11], "friendli": 5, "from": [1, 3, 4, 5, 8, 9, 10, 11, 12, 14], "fsf": 7, "fulfil": 7, "full": [5, 7, 9, 11], "function": [1, 4, 7, 8, 9, 10, 11, 12, 14], "fundament": 7, "further": [3, 7], "futur": [4, 5, 7, 8, 12], "g": [2, 5, 9, 11], "gadm": 14, "gamma": [9, 10, 11, 12], "gcc": 12, "gdal": [5, 8, 11, 12, 14], "gdal_cachemax": [8, 11], "gdal_raster": 11, "gdalinfo": 11, "gdrive_fold": [8, 11], "gdrive_gv": [8, 11], "gdrive_remote_rclon": [8, 11], "gee": [1, 8, 11, 14], "geefcc": [1, 5], "gender": 3, "gener": 14, "geodesiqu": 11, "geofabrik": [8, 11, 14], "geograph": 5, "geol": 11, "geol_proj": 11, "geolog": 11, "geologi": 11, "georeferenc": [5, 14], "geospati": 14, "geotiff": [8, 9, 10, 11, 12], "get": [0, 5, 7, 8, 11], "get_started_r": 12, "get_token": [8, 11], "ghislain": [2, 3, 12], "ghislainv": [1, 5, 9, 10, 11, 12], "gibb": 5, "gigabyt": 5, "gisdata": 11, "git": 4, "github": [1, 4, 5, 9, 10, 12], "give": 7, "given": [7, 8, 14], "glm": [5, 9, 10, 11, 12], "global": [8, 14], "gnu": [4, 5], "go": 11, "good": [3, 4], "googl": 1, "googledr": 1, "govern": 7, "gpkg": 14, "gpl": [4, 5, 7], "gplv3": 5, "gr": 11, "gracefulli": 3, "grai": 11, "grand": 11, "grant": 7, "grati": 7, "greatest": 7, "greatli": 5, "greenwich": 11, "gtiff": 11, "guadeloup": [9, 10, 12], "guarante": 7, "gui": 7, "guid": 4, "guidelin": [1, 5], "g\u00e9orep": 11, "ha": [4, 5, 7, 9, 10, 11, 12], "had": [7, 11], "hansen": [8, 11], "harass": 3, "harm": 3, "have": [1, 3, 5, 8, 11, 14], "head": [9, 10, 11, 12], "header": [9, 11], "hectar": [5, 9, 10, 11, 12], "help": [9, 10], "here": [5, 12], "hereaft": 7, "hierarch": 5, "high": 5, "higher": 11, "highwai": [8, 11], "histogram": [9, 11], "histor": 12, "histori": 5, "hold": [8, 9, 10, 11, 12], "holder": 7, "home": [8, 11, 12], "hope": 7, "host": 7, "household": 7, "how": [4, 12], "howev": 7, "html": [3, 7], "http": [1, 2, 3, 5, 7, 8, 9, 10, 11, 12, 14], "human": 11, "humid": 5, "hypothesi": 11, "hypothet": 7, "i": [3, 4, 5, 7, 8, 9, 10, 11, 12, 14], "icar": [5, 9, 11, 12], "icar_arg": [9, 11], "id": 11, "idea": 7, "ident": 3, "identifi": [5, 7, 9, 10, 14], "il": 11, "imag": [11, 14], "imageri": 3, "implement": 7, "impli": 7, "import": [4, 7, 12], "impos": 7, "improv": [1, 4], "inabl": 7, "inaccur": 7, "inappropri": 3, "inc": 7, "incid": 3, "incident": 7, "includ": [3, 5, 7, 8, 9, 10, 11, 12], "include_graph": 12, "inclus": [3, 7], "incompat": 7, "incorpor": [4, 7], "increas": [8, 11], "indemnif": 7, "independ": 7, "index": [6, 9, 11], "indic": [7, 11, 12], "individu": [3, 7], "induc": 11, "industri": 7, "inf": 11, "infer": 5, "inform": [3, 5, 7, 9, 11, 12], "infring": 7, "init": 11, "initi": [7, 8, 9, 11], "input": 14, "input_cell_rast": [9, 10, 11, 12], "input_dir": 14, "input_fcc_rast": [8, 9, 10, 11, 12], "input_fil": 14, "input_forest": 9, "input_forest_rast": [9, 10, 11, 12], "input_nodata": 14, "input_rast": [9, 10, 11, 12], "input_stock": 9, "inscrib": 14, "insid": 7, "instal": [7, 8, 11, 12], "instanc": 3, "instead": 7, "instruct": [8, 11], "insult": 3, "int32": 12, "intact": 7, "integ": 14, "integr": 1, "intend": 7, "intent": 7, "interact": [1, 7], "intercept": [9, 10, 11, 12], "interchang": 7, "interest": [3, 4, 5, 7], "interf": 7, "interfac": 7, "interleav": 11, "internet": 8, "interoper": 12, "interpol": 12, "interpolate_rho": [9, 10, 11, 12], "interv": [9, 11], "intim": 7, "intrins": 5, "inv_logit": 11, "invalid": 7, "invers": 11, "investig": 3, "irrevoc": 7, "island": 11, "iso": 14, "iso3": [8, 11, 14], "issu": 3, "item": 7, "its": [3, 7, 8, 11], "itself": 7, "j": 11, "join": [9, 10, 11], "joss": [1, 2, 5], "journal": [2, 5], "jrc": [8, 11], "june": 7, "just": 5, "k": [9, 11], "keep": [4, 7, 9, 14], "keep_dir": [8, 11], "keep_temp_dir": [8, 11, 14], "kei": 7, "kernel": 7, "kind": 7, "km": [9, 10, 11], "knitr": 12, "know": 7, "knowingli": 7, "knowledg": 7, "l": 11, "label": 11, "lambert": 11, "land": 5, "languag": [3, 7], "larg": 5, "larger": 7, "last": [5, 9, 11], "later": 7, "latest": 12, "latitud": 11, "lawsuit": 7, "lbfg": [9, 11], "lco": 11, "leadership": 3, "learn": [4, 5], "least": 7, "left": 11, "left_part": [9, 10, 11, 12], "legend": [9, 10, 11, 12], "len": [9, 10, 11], "length": 12, "lengthunit": 11, "lesser": 7, "let": 1, "level": 3, "lgpl": 7, "liabl": 7, "lib": 12, "libpython": 12, "libpython3": 12, "librari": [5, 7, 12], "licens": [4, 5], "license": 7, "licensor": 7, "lifou": 11, "like": 7, "likewis": 7, "line": [5, 7, 9, 10, 11, 12], "linear": 5, "linear_model": [9, 11], "linewidth": [8, 9, 10, 11, 12], "link": 7, "linux": [5, 8, 11], "list": [7, 9, 10, 11, 12], "litig": 7, "load": 11, "load_dotenv": [8, 11], "loc": [9, 11], "local": [7, 8, 11], "locat": 11, "log_loss": [9, 11], "logic": 14, "logical_not": 9, "logical_or": 9, "logist": [5, 9, 10, 11, 12], "logisticregress": [9, 11], "logit": 11, "logo": 1, "long": 7, "longer": [9, 11], "longitud": 11, "loop": [9, 11], "loss": [5, 7], "lower": 11, "loyalti": 11, "lt": 12, "lzw": 11, "m": [5, 8, 11], "mac": [8, 11], "machin": 7, "made": [4, 7], "mai": [3, 7], "mail": [3, 7], "main": [9, 11], "maintain": [3, 7], "major": 7, "make": [3, 4, 5, 7, 9, 10, 12], "make_dir": [8, 9, 10, 11], "maker": 5, "mani": 4, "manner": 7, "manual": [8, 12], "manufactur": 7, "manuscript": 9, "map": [5, 8, 11], "map_accuraci": 5, "march": 7, "mare": 11, "mark": 7, "martiniqu": 8, "mask": 7, "master": [4, 5, 9, 10, 12], "materi": 7, "matplotlib": [5, 9, 11, 12], "matpotlib": 1, "maxpixel": [8, 9, 10, 11, 12], "mcmc": [9, 10, 11, 12], "mean": [7, 9, 10, 11, 12], "measur": 7, "media": 3, "medium": 7, "meet": 7, "member": 3, "memori": [9, 10, 11, 12], "menu": 7, "mercat": 14, "merchant": 7, "mere": 7, "merg": 7, "messag": [4, 8, 11, 14], "met": 7, "metadata": 11, "meter": 11, "method": [7, 11], "methodologi": 11, "metr": 11, "metric": [9, 11], "metropoli": 5, "meurer": 4, "might": 7, "mine": 11, "miniconda": 12, "miniconda3": [5, 12], "minim": [9, 10], "misrepresent": 7, "mission": 14, "mkdir": 5, "mod_binomial_icar": [9, 10, 11, 12], "mod_dev": [9, 11], "mod_glm": [9, 11], "mod_icar": [9, 11], "mod_icar_pickl": [9, 11], "mod_nul": [9, 11], "mod_rf": [9, 11], "mod_typ": [9, 11], "mode": 7, "model": [2, 7, 8, 12], "model_": 5, "model_binomial_icar": [5, 9, 10, 11, 12], "model_devi": [9, 11], "modif": 7, "modul": [1, 12], "more": [7, 11, 12], "moreov": [7, 11], "mosaic": 14, "mosaic_biomass_whrc": [13, 14], "most": 7, "mtq": 8, "multipl": 1, "must": [4, 5, 7, 8, 11, 14], "n": [9, 10, 11], "n_estim": [9, 11], "n_job": [9, 11], "n_neighbor": [9, 10, 11, 12], "na": [9, 10, 11, 12], "na_act": [9, 11], "name": [5, 7, 8, 11, 12], "nan": 11, "nanpercentil": 11, "nation": 3, "natur": 7, "nb_ctrydata_fcc123": 8, "nb_ctrydata_var": 8, "nb_newcal_dist_road_edge_effect": 11, "nb_newcal_fcc123": 11, "nb_newcal_fcc_2050": 11, "nb_newcal_fcc_2100": 11, "nb_newcal_geol_effect": 11, "nb_newcal_prob": 11, "nb_newcal_rho": 11, "nb_newcal_rho_orig": 11, "ncl": 11, "ndate": [9, 10, 11, 12], "ndates_fut": [9, 11], "ndefor": [9, 11], "necessari": [3, 5, 7, 8, 11, 12], "need": [7, 8, 11, 12], "neighbor": [9, 10, 11, 12], "neighborhood": [9, 10, 11, 12], "neither": 7, "net": [8, 11, 14], "network": 7, "new": [0, 1, 4, 5], "newli": 5, "next": 7, "nfor": [9, 11], "nneigh": [9, 10, 11, 12], "nodata": [11, 14], "non": [5, 9], "noncommerci": 7, "none": 14, "nor": 7, "normal": [7, 9, 11], "north": 11, "note": [11, 12], "notebook": [8, 9, 10, 11, 12], "noth": 7, "notic": 7, "notifi": 7, "notwithstand": 7, "nouvel": 11, "now": [1, 12], "np": [9, 11], "np_arrai": 12, "nperc": 11, "nrep": [9, 11], "nsamp": [9, 10, 11, 12], "null": [9, 11], "number": [2, 5, 7, 9, 10, 11, 12], "numpi": [5, 9, 11, 12], "numpy_vers": 12, "o": [8, 9, 10, 11], "oa": [9, 11], "object": [7, 12], "oblig": [3, 7], "obs_pr": [9, 11], "observ": [5, 12], "obtain": [5, 8, 11, 12, 14], "occasion": 7, "occur": 7, "offens": 3, "offer": [5, 7], "offici": [3, 7], "offlin": 3, "ofil": [8, 11], "ofile_pdf": 8, "often": 5, "ogr": 14, "ogr2ogr": 11, "onc": [8, 11], "one": [7, 9, 10, 11, 12], "onli": [7, 8, 9, 11, 12], "onlin": 3, "open": [2, 3, 4, 5, 9, 10, 11], "openstreetmap": 14, "oper": [1, 7], "optim": 1, "option": 7, "order": [7, 11], "org": [2, 3, 7, 14], "organ": [1, 7], "orient": 3, "origin": [7, 9, 10, 11, 12], "osgeo4w": 5, "osm": [8, 11, 14], "ot": 11, "other": [3, 5, 10, 12], "otherwis": [3, 7, 8, 9, 10, 11, 12], "ouput": [8, 11], "our": [5, 7], "out": 7, "output": [7, 8, 9, 10, 11, 12, 14], "output_dir": [8, 11, 14], "output_fil": [8, 9, 10, 11, 12, 14], "outsid": 7, "ouvea": 11, "over": 5, "overfit": 11, "overview": [9, 10, 11], "overwrit": 11, "own": 7, "p": [2, 9, 11], "pa": [9, 10, 11, 12], "packag": [1, 2, 4, 7, 8, 11, 12, 14], "page": [2, 4, 6], "panda": [5, 8, 9, 11, 12], "pantrop": 8, "paper": 7, "paragraph": 7, "parallel": 11, "paramet": [5, 11, 14], "paramount": 5, "part": [7, 11], "parti": 7, "particip": 3, "particular": 7, "pass": 7, "password": 7, "past": [8, 9, 11, 12], "paste0": 12, "pastur": 11, "path": [9, 10, 12, 14], "patsi": [5, 9, 11, 12], "pattern": 7, "payment": 7, "pd": [8, 9, 11], "pdf": [8, 9, 11], "peer": 7, "per": [9, 10, 11], "perc": [8, 9, 11], "percentil": [9, 11], "perform": [5, 7, 14], "peridotit": 11, "period": [8, 9, 10, 11, 12], "perman": [3, 7], "permiss": 3, "permit": 7, "perpetu": 7, "person": [3, 7, 8, 11], "pertin": 7, "ph": 11, "philosophi": 7, "physic": [3, 7], "pickl": [9, 11], "pickle_fil": [9, 11], "piec": 7, "pin": 11, "pip": [5, 12], "pip_ignore_instal": 12, "pip_pkg": 12, "pixel": [5, 9, 10, 11, 14], "pkg_resourc": 11, "place": [7, 8, 11], "planet": [8, 11], "platform": 5, "pleas": [2, 4, 7], "plot": [10, 12], "ploton": 9, "plots_per_pag": [9, 11], "plt": [9, 11], "plu": 7, "png": [8, 9, 10, 11, 12], "point": [5, 9, 10, 11, 12], "pointer": 7, "polici": 3, "polit": [3, 5], "polygon": 11, "portion": 7, "posit": 3, "positive_effect": 9, "possess": 7, "possibl": [5, 7], "post": 3, "posterior": [9, 10, 11, 12], "power": 7, "pr": 4, "practic": 7, "precis": 7, "pred_glm": [9, 11], "pred_icar": [9, 10, 11, 12], "pred_nul": [9, 11], "pred_rf": [9, 11], "predecessor": 7, "predict": 12, "predict_proba": [9, 11], "predict_raster_binomial_icar": [9, 10, 11, 12], "predictor": 11, "prefer": 7, "prepar": 12, "prerequisit": 12, "presenc": [8, 11], "present": [7, 8, 11, 14], "preserv": 7, "prevent": 7, "previou": [5, 7], "previous": 1, "price": 7, "primarili": 7, "primem": 11, "print": [8, 9, 10, 11, 12, 14], "prior": [7, 9, 10, 11, 12], "priorvrho": [9, 10, 11, 12], "privat": [3, 7], "prob": [9, 10, 11, 12], "probabl": [5, 12], "problem": [5, 7, 9, 10, 11, 12], "procedur": 7, "process": [5, 9, 10, 11, 12, 14], "procur": 7, "produc": 7, "product": [7, 8, 11], "profession": 3, "programm": 7, "prohibit": 7, "proj": [8, 11, 14], "projcr": 11, "project": [3, 4, 8, 12, 14], "promin": 7, "propag": 7, "properli": 5, "properti": 7, "propos": 14, "proprietari": 7, "protect": [1, 5, 8, 11, 14], "protectedplanet": [8, 11, 14], "protocol": 7, "prove": 7, "provid": [4, 5, 7, 9, 12], "provis": 7, "provision": 7, "proxi": 7, "public": [1, 2, 3], "publicli": 7, "publish": [2, 3, 7], "pull": 4, "pure": 5, "purpos": 7, "pursuant": 7, "push": 4, "py_config": 12, "pyenv": 12, "pypi": [1, 5], "pyplot": [9, 11], "pytest": 1, "python": [1, 2, 4, 12, 14], "python3": [5, 12], "pythonhom": 12, "pywda": [8, 11], "pywdpa": [1, 5, 8, 11, 12, 14], "q": 11, "qualifi": 7, "qualiti": 7, "quantifi": 5, "quantil": 11, "question": 3, "quot": 12, "r": [5, 9, 10], "r1": 11, "r2": 11, "race": 3, "radar": 14, "rais": 11, "random": [5, 12], "randomforestclassifi": [9, 11], "rang": [9, 10, 11], "rank": [9, 10, 11, 12], "rast": [9, 10, 11, 12], "raster": [5, 8, 9, 10, 11, 12, 14], "ratio": [9, 11], "raw": [9, 10, 12], "rclone": 1, "re": [9, 11], "read": 7, "read_csv": 11, "read_tabl": 11, "readabl": 7, "readi": [7, 12], "readili": 7, "reason": [3, 7], "receipt": 7, "receiv": 7, "recogn": 7, "recommend": [5, 8, 11, 12], "redistribut": 7, "reduc": [5, 9, 10, 11, 12], "refer": 7, "refrain": 7, "refug": 11, "regard": [3, 7], "regardless": [3, 7], "regener": 7, "region": [9, 10], "regress": [5, 9, 10, 11, 12], "reiniti": [9, 10, 11, 12], "reinstal": 5, "reinstat": 7, "reject": 3, "rel": [5, 14], "relationship": [7, 11], "releas": [1, 4, 5, 7], "relev": 7, "reli": 7, "relicens": 7, "religion": 3, "remain": 7, "remot": [8, 11], "remov": [1, 3, 5, 7, 9, 10, 11, 12], "renam": [9, 10, 11, 12], "render": 7, "rep1": [9, 11], "rep2": [9, 11], "rep3": [9, 11], "rep4": [9, 11], "rep5": [9, 11], "repair": 7, "repeat": 9, "repercuss": 3, "repetit": 9, "replac": 5, "report": 3, "repositori": [4, 5], "repres": [3, 7, 11], "represent": 3, "reproduc": 9, "reproject": [11, 14], "request": [4, 8, 9, 10, 11], "requir": 12, "resampl": [9, 10, 11, 14], "rescal": 5, "reseau": 11, "residu": [5, 11], "resolut": [5, 8, 11], "resolv": 7, "respect": [3, 7], "respons": 7, "restrict": 7, "result": [3, 7, 9, 10, 11, 12], "retain": 7, "reticul": 12, "reticulate_miniconda_path": 12, "retriev": [5, 8], "return": [5, 7, 8, 11, 14], "return_typ": [9, 11], "review": [3, 7], "rf": [9, 11], "rf_arg": [9, 11], "rgnc91": 11, "rho": [9, 10, 11, 12], "rho_orig": [9, 10, 11, 12], "right": [3, 11, 12], "right_part": [9, 10, 11, 12], "rint": [9, 11], "risk": [5, 7, 11], "river": [8, 11, 14], "rm": 5, "rmd": 12, "road": [5, 8, 14], "rom": 7, "round": [9, 11], "row": [9, 10, 11, 12], "royalti": 7, "rule": 7, "run": [5, 7, 9, 10, 11, 12], "run_gee_biomass_whrc": 1, "run_gee_forest": 1, "s_sr": 11, "safest": 7, "sai": 7, "sake": 7, "sale": 7, "same": 7, "sampl": [12, 13], "sample_s": [9, 11], "sampler": 5, "satisfi": 7, "save": [9, 10, 11, 12], "savefig": [8, 11], "scale": [5, 9, 10, 11, 12], "scenario": [5, 9], "school": 7, "scientif": [2, 9], "scikit": 5, "scope": [7, 11], "script": 7, "scriptabl": 5, "sd_edg": 11, "sd_road": 11, "se": 11, "search": 6, "second": [11, 12], "secondarili": 7, "section": 1, "see": [3, 5, 7, 12, 14], "seed": [9, 10, 11, 12], "seem": 11, "select": [1, 10, 12], "sell": 7, "semiconductor": 7, "sen": [9, 11], "separ": [3, 7, 14], "seri": 4, "serv": 7, "server": 7, "servic": 7, "session": [8, 11], "set": [3, 5, 9, 10, 12], "set_xlabel": 11, "set_xlim": 11, "set_ylabel": 11, "set_ylim": 11, "setenv": 12, "setuptool": 5, "sever": [5, 14], "sex": 3, "sexual": 3, "shall": 7, "shapefil": [11, 14], "share": 7, "shell": 5, "short": [5, 7], "shortest": 14, "should": [4, 5, 7, 8, 11, 12, 14], "show": [3, 7, 11], "shown": 11, "shp": [8, 9, 10, 11, 12], "shutil": [9, 10, 11], "shuttl": 14, "sign": 7, "signific": [7, 9, 11], "significantli": 11, "similar": [7, 12], "simpl": [5, 9, 10, 11, 12], "simultan": 7, "singl": 7, "sink": 12, "site": 12, "six": 11, "size": [3, 9, 11], "skip": 14, "sklearn": [9, 11, 12], "slope": [5, 8, 9, 10, 11, 12, 14], "so": [7, 8, 11, 12], "social": 3, "socio": [3, 5], "softwar": [2, 5, 7], "sold": 7, "sole": 7, "solver": [9, 11], "some": [7, 8, 9, 11], "sourc": [2, 4, 5, 8, 9, 10, 11, 12, 14], "southern": 11, "space": [3, 5], "spare": 7, "spatial": [5, 8, 12], "spe": [9, 11], "speak": 7, "special": 7, "specif": [3, 7, 9, 11, 14], "specifi": [7, 8, 11, 12], "speed": [8, 11], "sphinx": 1, "spirit": 7, "sql": 14, "sqrt": 11, "srtm": [8, 11, 14], "st": 11, "stand": 7, "standard": [7, 11], "start": [0, 4, 5, 7, 9, 11], "stat": [9, 10, 11, 12], "state": 7, "statement": [7, 14], "statist": [5, 9, 10, 11], "statsmodel": [5, 12], "statu": [3, 5, 7, 14], "std": [9, 10, 11, 12], "step": [4, 7, 12], "storag": 7, "store": [8, 11], "str": [9, 10, 11], "stratifi": 5, "string": 14, "structur": [5, 9, 10, 11, 12], "studi": [5, 9, 10, 12], "subdivid": 7, "subject": 7, "sublicens": 7, "submit": 4, "subprogram": 7, "subroutin": 7, "subsect": 7, "substanti": 7, "substr": 14, "success": 11, "sue": 7, "suffic": 7, "suitability_formula": [9, 10, 11, 12], "sum": [9, 11], "summar": [8, 11], "summari": [11, 12], "summary_hsdm": [9, 11], "summary_icar": [10, 12], "sup": 11, "supplement": 7, "supplementari": 9, "support": 7, "sure": 7, "survei": 11, "surviv": 7, "suscept": 11, "sustain": 7, "sy": [11, 12], "system": [1, 7, 11, 12], "systemat": 7, "t": [9, 10, 11, 12], "t1": [9, 11], "t2": [9, 10, 11, 12], "t3": [9, 10, 11, 12], "t_bin": 11, "t_sr": 11, "tabl": [8, 9, 11], "tabul": [8, 11], "take": [3, 7], "tangibl": 7, "tap": 11, "te": 11, "team": 3, "technolog": [5, 7], "tell": 7, "temp_dir": [8, 11, 14], "temporari": [3, 14], "temporarili": 3, "term": 5, "termin": [5, 12], "terr": 11, "test": [1, 4], "than": [7, 11], "thei": [3, 7, 14], "them": 7, "therefor": 7, "theta": 11, "theta_edg": 11, "theta_edge_100m": 11, "theta_edge_1km": 11, "theta_geol": 11, "theta_icar": 11, "theta_icar_mean": 11, "theta_lmean": 11, "theta_mean": 11, "theta_ob": 11, "theta_pr": [9, 10, 11, 12], "theta_road": 11, "theta_road_10km": 11, "theta_road_1km": 11, "thi": [3, 4, 5, 8, 9, 11, 12, 14], "thin": [9, 10, 11, 12], "thing": 7, "third": [7, 11], "those": 7, "though": 7, "threaten": [3, 7], "three": 7, "threshold": [9, 10], "through": [5, 7], "thu": [7, 11], "ti": [9, 11], "tick_label": 11, "tif": [8, 9, 10, 11, 12], "tiffor": 12, "tight_layout": 11, "tile": [8, 14], "time": [5, 7, 8, 9, 11], "titl": [2, 11], "to_csv": [9, 11], "token": [8, 11], "too": 7, "tool": [7, 12], "topograph": [11, 14], "topographi": 5, "total": [9, 10], "toward": 3, "town": [5, 8, 11, 14], "tr": 11, "trace": [9, 11], "trade": 7, "trademark": 7, "transact": 7, "transfer": 7, "transform": [9, 11], "transmiss": 7, "treat": 7, "treati": 7, "trial": [9, 10, 11, 12], "troll": 3, "tropic": [0, 2, 5, 10, 11], "true": [8, 9, 10, 11, 12, 14], "try": 5, "tss": [9, 11], "tutori": [1, 4, 5, 12], "two": 7, "txt": [9, 10, 11, 12], "type": [7, 11, 14], "typic": 7, "uint32": 14, "unaccept": [3, 7], "uncom": [8, 11], "under": [4, 5, 7, 8, 11], "unit": [8, 11], "unless": 7, "unlimit": 7, "unmodifi": 7, "unnecessari": 7, "unpack": 7, "until": 7, "unwelcom": 3, "unzip": [11, 12], "up": 4, "updat": [1, 7, 9, 10, 11, 12], "upgrad": 5, "upper": 11, "url": [2, 9, 10, 12], "urllib": [9, 10], "urlretriev": [9, 10], "us": [0, 1, 2, 3, 8, 9, 10, 11, 14], "usag": [1, 11], "use_condaenv": 12, "use_python": 12, "user": [1, 5, 8], "utf": 11, "utf8": 12, "v": [9, 10, 11], "v4": [8, 11, 14], "val": [9, 10, 11, 12], "valid": [7, 8], "valu": [8, 9, 10, 11, 12, 14], "valueerror": 11, "vancutsem": [8, 9, 11], "var": [8, 9, 11], "var_dir": [8, 9, 10, 11, 12], "var_keep": 9, "var_remov": 9, "vari": 5, "variabl": [5, 10, 12, 14], "variou": [5, 13], "varnam": 11, "vector": [11, 12], "veget": 11, "venv": 5, "verbos": 14, "veri": 5, "verlei": 9, "version": [1, 3, 4, 5, 12], "via": [3, 4, 5], "video": 4, "vieilled": [2, 3, 5, 9, 11], "vieilledent2021": 2, "view": 7, "viewpoint": 3, "violat": 7, "virtual": [5, 9, 10, 12], "visibl": 7, "void": 7, "volum": [2, 7], "vrho": [9, 10, 11, 12], "w": [7, 9, 10, 11], "w0": 11, "w1": 11, "wa": [7, 12], "wai": [4, 5, 7, 12], "waiv": 7, "waiver": 7, "want": [4, 5, 7, 8], "waterwai": [8, 11], "wb": [9, 11], "wdpa_kei": [8, 11], "we": [3, 7, 8, 9, 10, 11, 12], "websit": [1, 11], "welcom": [3, 7], "well": 7, "were": [1, 7], "what": [3, 7], "whatev": 7, "wheel": [1, 5], "when": [3, 7, 11], "where": [7, 11, 14], "whether": [7, 14], "which": [1, 3, 4, 5, 7, 8, 11, 12], "while": [5, 8, 9, 11], "who": [3, 4, 5, 7], "whole": [5, 7], "whom": 7, "whose": 7, "whrc": [1, 14], "why": 7, "wide": 7, "width": 11, "wiki": 3, "window": [5, 7], "wipo": 7, "wish": 7, "within": [3, 7, 12], "without": [3, 7, 11], "wkt": 14, "work": [7, 8, 9, 10, 11, 12, 14], "workflow": 4, "world": [8, 11, 14], "worldwid": 7, "would": 7, "write": [4, 7, 9, 10, 11, 12], "writelin": 12, "written": [4, 5, 7], "www": [3, 7, 8, 11, 14], "x": [5, 9, 10, 11, 12], "x_glm": [9, 11], "x_null": [9, 11], "x_rf": [9, 11], "xmax": 14, "xmin": 14, "xy": [9, 10], "y": [9, 10, 11, 12], "y_bin": 11, "ye": [5, 11, 12], "year": [2, 7], "ymax": 14, "ymin": 14, "you": [2, 4, 5, 7, 8, 11, 12], "your": [4, 8, 11, 12], "your_token": [8, 11], "yourself": 7, "yr": [10, 12], "ython": 2, "z": [9, 10], "zero": 11, "zero_in_ci": 9, "zip": [5, 9, 10, 12], "zipfil": [9, 10]}, "titles": ["Articles", "Changelog", "Citation", "Code of conduct", "Community guidelines", "forestatrisk Python package", "Indices and tables", "License", "Country data", "ForestAtRisk Tropics", "Get started", "New Caledonia", "Get started using R", "Python API", "Download", "<no title>", "<no title>", "<no title>", "<no title>", "<no title>", "<no title>", "<no title>", "<no title>"], "titleterms": {"": 11, "0": [1, 7], "1": [1, 7, 9, 10], "10": 7, "11": 7, "12": 7, "13": 7, "14": 7, "15": 7, "16": 7, "17": 7, "2": [1, 7, 9, 10], "3": [1, 7, 9, 10], "4": [7, 9, 10], "5": [7, 9, 10], "6": [7, 9], "7": [7, 9], "8": 7, "9": 7, "AND": 7, "No": 7, "Not": 7, "These": 7, "accept": 7, "access": [8, 11], "ad": 11, "addit": 7, "affero": 7, "an": 4, "anti": 7, "api": [8, 11, 13], "appli": 7, "articl": 0, "attribut": 3, "automat": 7, "basic": 7, "caledonia": 11, "carbon": 9, "chang": [8, 9, 10, 11], "changelog": 1, "circumvent": 7, "citat": 2, "code": [3, 4, 7], "coeffici": 11, "commun": 4, "comparison": [9, 11], "comput": [8, 11, 14], "conda": 5, "condit": 7, "conduct": 3, "contribut": [4, 5], "convei": 7, "copi": 7, "correl": [9, 11], "countri": 8, "cover": [8, 9, 10, 11], "credenti": [8, 11], "cross": [9, 11], "data": [8, 9, 10, 11, 13], "definit": 7, "deforest": [9, 10, 11], "deprec": 14, "devianc": [9, 11], "disclaim": 7, "distanc": 11, "download": [8, 11, 14], "downstream": 7, "drive": [8, 11], "earth": [8, 11], "edg": 11, "effect": [9, 10, 11], "emiss": 9, "enforc": 3, "engin": [8, 11], "explanatori": [8, 11], "figur": [9, 10, 11], "file": [8, 9, 10, 11], "final": [9, 11], "forest": [8, 9, 10, 11], "forestatrisk": [1, 5, 9], "form": 7, "freedom": 7, "from": 7, "function": 5, "futur": [9, 10, 11], "gener": 7, "get": [10, 12], "gnu": 7, "googl": [8, 11], "guidelin": 4, "have": 7, "histor": [9, 10, 11], "how": 7, "icar": 10, "import": [8, 9, 10, 11], "indic": 6, "instal": 5, "interpol": [9, 10, 11], "interpret": 7, "introduct": [8, 11], "issu": 4, "law": 7, "legal": 7, "liabil": 7, "licens": 7, "limit": 7, "main": 5, "miscellan": 13, "model": [5, 9, 10, 11, 13], "modifi": 7, "modul": [8, 11], "need": 5, "new": [7, 11], "non": 7, "notebook": 0, "observ": [9, 10, 11], "other": 7, "our": 3, "overview": 5, "packag": 5, "patent": 7, "permiss": 7, "pledg": 3, "plot": [8, 9, 11, 13], "preambl": 7, "predict": [5, 9, 10, 11, 13], "prepar": [9, 10, 11], "probabl": [9, 10, 11], "program": 7, "project": [5, 9, 10, 11, 13], "protect": 7, "public": [5, 7], "python": [0, 5, 8, 11, 13], "r": [0, 12], "random": [9, 10, 11], "raw": [8, 11], "rclone": [8, 11], "recipi": 7, "report": 4, "requir": 7, "respons": 3, "revis": 7, "right": 7, "road": 11, "sampl": [5, 9, 10, 11, 14], "scientif": 5, "scope": 3, "section": 7, "select": [9, 11], "set": [8, 11], "soil": 11, "sourc": 7, "spatial": [9, 10, 11], "standard": 3, "start": [10, 12], "statement": 5, "submodul": 13, "summari": [9, 10], "surrend": 7, "tabl": 6, "term": 7, "termin": 7, "test": 5, "thi": 7, "tropic": 9, "ultramaf": 11, "unzip": [9, 10], "us": [5, 7, 12], "user": 7, "valid": [5, 9, 11, 13], "variabl": [8, 9, 11], "variou": 14, "verbatim": 7, "version": 7, "virtualenv": 5, "warranti": 7, "wdpa": [8, 11], "your": 7}}) \ No newline at end of file