From 80e61bc5c48410626a26dc39760fac9a87925e78 Mon Sep 17 00:00:00 2001 From: ghislainv Date: Fri, 31 May 2024 08:55:40 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20ghislain?= =?UTF-8?q?v/geefcc@724e876f33629dc51d4377d20f01b2f89b28022c=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _modules/geefcc/get_fcc.html | 43 +++++++++++++++++++++++------------- python_api/functions.html | 4 +++- searchindex.js | 2 +- 3 files changed, 32 insertions(+), 17 deletions(-) diff --git a/_modules/geefcc/get_fcc.html b/_modules/geefcc/get_fcc.html index 62fca0e..d81d390 100644 --- a/_modules/geefcc/get_fcc.html +++ b/_modules/geefcc/get_fcc.html @@ -124,6 +124,7 @@

Source code for geefcc.get_fcc

             perc=75,
             tile_size=1,
             # crop_to_aoi=False,
+            parallel=False,
             ncpu=None,
             output_file="fcc.tif"):
     """Get forest cover change data.
@@ -153,6 +154,9 @@ 

Source code for geefcc.get_fcc

 
     :param tile_size: Tile size for parallel computing.
 
+    :param parallel: Logical. Parallel (if ``True``) or sequential (if
+        ``False``) computing. Default to ``False``.
+
     :param ncpu: Number of CPU to use for parallel computing. If None,
         it will be set to the number of cores on the computer minus
         one.
@@ -206,23 +210,32 @@ 

Source code for geefcc.get_fcc

     out_dir_tiles = opj(out_dir, "forest_tiles")
     make_dir(out_dir_tiles)
 
-    # Write tiles in parallel
-    # https://superfastpython.com/multiprocessing-pool-starmap_async/
     # Message
     print(f"get_fcc running, {ntiles} tiles .", end="", flush=True)
-    # create and configure the process pool
-    if ncpu is None:
-        ncpu = os.cpu_count() - 1
-    with mp.Pool(processes=ncpu) as pool:
-        # prepare arguments
-        args = [(i, ext, ntiles, forest, proj, scale, out_dir_tiles)
-                for (i, ext) in enumerate(grid)]
-        # issue many tasks asynchronously to the process pool
-        _ = pool.starmap_async(geeic2geotiff, args)
-        # close the pool
-        pool.close()
-        # wait for all issued tasks to complete
-        pool.join()
+
+    # Sequential computing
+    if parallel is False:
+        # Loop on tiles
+        for (i, ext) in enumerate(grid):
+            geeic2geotiff(i, ext, ntiles, forest, proj, scale, out_dir_tiles)
+
+    # Parallel computing
+    if parallel is True:
+        # Write tiles in parallel
+        # https://superfastpython.com/multiprocessing-pool-starmap_async/
+        # create and configure the process pool
+        if ncpu is None:
+            ncpu = os.cpu_count() - 1
+        with mp.Pool(processes=ncpu) as pool:
+            # prepare arguments
+            args = [(i, ext, ntiles, forest, proj, scale, out_dir_tiles)
+                    for (i, ext) in enumerate(grid)]
+            # issue many tasks asynchronously to the process pool
+            _ = pool.starmap_async(geeic2geotiff, args)
+            # close the pool
+            pool.close()
+            # wait for all issued tasks to complete
+            pool.join()
 
     # Geotiff from tiles
     geotiff_from_tiles(output_file)
diff --git a/python_api/functions.html b/python_api/functions.html index 6108e49..d627c90 100644 --- a/python_api/functions.html +++ b/python_api/functions.html @@ -109,7 +109,7 @@

Quick search

-get_fcc(aoi, buff=0, years=[2000, 2010, 2020], source='tmf', perc=75, tile_size=1, ncpu=None, output_file='fcc.tif')[source]
+get_fcc(aoi, buff=0, years=[2000, 2010, 2020], source='tmf', perc=75, tile_size=1, parallel=False, ncpu=None, output_file='fcc.tif')[source]

Get forest cover change data.

Produce a forest cover change raster file. One band for each @@ -134,6 +134,8 @@

Quick search

  • perc – Tree cover threshold defining the forest for GFC product.

  • tile_size – Tile size for parallel computing.

  • +
  • parallel – Logical. Parallel (if True) or sequential (if +False) computing. Default to False.

  • ncpu – Number of CPU to use for parallel computing. If None, it will be set to the number of cores on the computer minus one.

  • diff --git a/searchindex.js b/searchindex.js index bfa1df1..3ad390d 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"0. Definitions": [[6, "definitions"]], "1. Correction": [[2, "correction"]], "1. Source Code": [[6, "source-code"]], "10. Automatic Licensing of Downstream Recipients": [[6, "automatic-licensing-of-downstream-recipients"]], "11. Patents": [[6, "patents"]], "12. No Surrender of Others\u2019 Freedom": [[6, "no-surrender-of-others-freedom"]], "13. Use with the GNU Affero General Public License": [[6, "use-with-the-gnu-affero-general-public-license"]], "14. Revised Versions of this License": [[6, "revised-versions-of-this-license"]], "15. Disclaimer of Warranty": [[6, "disclaimer-of-warranty"]], "16. Limitation of Liability": [[6, "limitation-of-liability"]], "17. Interpretation of Sections 15 and 16": [[6, "interpretation-of-sections-15-and-16"]], "2. Basic Permissions": [[6, "basic-permissions"]], "2. Warning": [[2, "warning"]], "3. Protecting Users\u2019 Legal Rights From Anti-Circumvention Law": [[6, "protecting-users-legal-rights-from-anti-circumvention-law"]], "3. Temporary Ban": [[2, "temporary-ban"]], "4. Conveying Verbatim Copies": [[6, "conveying-verbatim-copies"]], "4. Permanent Ban": [[2, "permanent-ban"]], "5. Conveying Modified Source Versions": [[6, "conveying-modified-source-versions"]], "6. Conveying Non-Source Forms": [[6, "conveying-non-source-forms"]], "7. Additional Terms": [[6, "additional-terms"]], "8. Termination": [[6, "termination"]], "9. Acceptance Not Required for Having Copies": [[6, "acceptance-not-required-for-having-copies"]], "Access to Google Earth Engine": [[4, "access-to-google-earth-engine"]], "Articles": [[0, "articles"]], "Attribution": [[2, "attribution"]], "Changelog": [[1, "changelog"]], "Code of Conduct": [[2, "code-of-conduct"]], "Community guidelines": [[3, "community-guidelines"]], "Compare with forest cover change from GFC": [[7, "compare-with-forest-cover-change-from-gfc"]], "Comparing forest cover in 2020 between TMF and GFC": [[7, "comparing-forest-cover-in-2020-between-tmf-and-gfc"]], "Contribute to code": [[3, "contribute-to-code"]], "Contributing": [[4, "contributing"]], "Download data from an extent": [[7, "download-data-from-an-extent"]], "Download the data from GEE": [[8, "download-the-data-from-gee"]], "Enforcement": [[2, "enforcement"]], "Enforcement Guidelines": [[2, "enforcement-guidelines"]], "Enforcement Responsibilities": [[2, "enforcement-responsibilities"]], "GADM website": [[4, "gadm-website"]], "GDAL": [[4, "gdal"]], "GNU General Public License": [[6, "gnu-general-public-license"]], "Get forest cover change from TMF": [[7, "get-forest-cover-change-from-tmf"]], "Get started": [[7, "get-started"]], "How to Apply These Terms to Your New Programs": [[6, "how-to-apply-these-terms-to-your-new-programs"]], "Indices and tables": [[5, "indices-and-tables"]], "Installation": [[4, "installation"]], "Large countries": [[8, "large-countries"]], "License": [[6, "license"]], "Our Pledge": [[2, "our-pledge"]], "Our Standards": [[2, "our-standards"]], "Overview": [[4, "overview"]], "Plot the forest cover change map": [[8, "plot-the-forest-cover-change-map"]], "Preamble": [[6, "preamble"]], "Prerequisites": [[4, "prerequisites"]], "Python API": [[9, "python-api"]], "Report an issue": [[3, "report-an-issue"]], "Scope": [[2, "scope"]], "TERMS AND CONDITIONS": [[6, "terms-and-conditions"]], "Transform multiband fcc raster in one band raster": [[8, "transform-multiband-fcc-raster-in-one-band-raster"]], "geefcc 0.1": [[1, "geefcc-0-1"]], "geefcc 0.1.1": [[1, "geefcc-0-1-1"]], "geefcc 0.1.2": [[1, "geefcc-0-1-2"]], "geefcc Python package": [[4, "geefcc-python-package"]]}, "docnames": ["articles", "changelog", "code_of_conduct", "contributing", "index", "indices", "license", "notebooks/get_started/get_started", "notebooks/large_countries/large_countries", "python_api", "python_api/functions"], "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", "code_of_conduct.rst", "contributing.rst", "index.rst", "indices.rst", "license.rst", "notebooks/get_started/get_started.rst", "notebooks/large_countries/large_countries.rst", "python_api.rst", "python_api/functions.rst"], "indexentries": {"get_fcc() (in module geefcc)": [[10, "geefcc.get_fcc", false]], "make_dir() (in module geefcc)": [[10, "geefcc.make_dir", false]], "sum_raster_bands() (in module geefcc)": [[10, "geefcc.sum_raster_bands", false]]}, "objects": {"geefcc": [[10, 0, 1, "", "get_fcc"], [10, 0, 1, "", "make_dir"], [10, 0, 1, "", "sum_raster_bands"]]}, "objnames": {"0": ["py", "function", "Python function"]}, "objtypes": {"0": "py:function"}, "terms": {"": [2, 3, 4, 6], "0": [7, 8, 10], "05": [7, 8], "089": 8, "08983152841195216": [8, 10], "1": [4, 7, 8, 10], "10": [7, 8, 10], "100": 7, "11": 4, "111": 8, "128": 10, "13297545": 7, "139": [7, 8], "13mb": 7, "150": 7, "159": 8, "15kb": 7, "165": [7, 8], "18": 7, "18kb": 7, "19": 7, "1923": 7, "1996": 6, "1st": 7, "2": [7, 8], "20": [6, 7, 8], "200": [7, 8], "2000": [4, 7, 8, 10], "2001": [4, 7, 10], "2007": 6, "2009": [7, 8], "2010": [4, 7, 8, 10], "2019": [7, 8], "2020": [4, 8, 10], "2022": 4, "2023": [4, 10], "2024": [4, 10], "21": 7, "22": 7, "227": [7, 8], "2305": 7, "24b": 7, "255": [7, 8], "26": [7, 8], "28": [6, 7, 8], "29": 6, "3": [3, 4, 7, 8], "30": [4, 6, 8], "34": [7, 8], "35mb": 7, "39": 7, "4": 7, "48": 7, "5": [7, 8], "50": 7, "55": 7, "6": 7, "60": [6, 8], "6b": 6, "6d": 6, "7": 4, "75": [4, 7, 10], "76": 8, "8": 7, "84": 7, "87": 7, "8b": 7, "A": [2, 6, 8], "AS": 6, "And": 6, "BE": 6, "BEING": 6, "BUT": 6, "BY": 6, "Being": 2, "But": 6, "By": 6, "FOR": 6, "For": [2, 4, 6], "IF": 6, "IN": 6, "If": [3, 4, 6, 8, 10], "In": [4, 6, 10], "It": 6, "NO": 6, "NOT": 6, "No": 2, "OF": 6, "OR": 6, "Of": [3, 6], "One": [8, 10], "SUCH": 6, "Such": 6, "THE": 6, "THERE": 6, "TO": 6, "The": [2, 3, 4, 6, 7, 8], "There": 3, "These": 4, "To": [4, 6, 8], "WILL": 6, "WITH": 6, "_": 8, "aaron": 3, "abil": 6, "about": [2, 6, 8], "abov": 6, "absenc": 6, "absolut": 6, "abus": [2, 6], "accept": 2, "access": 6, "accompani": 6, "accord": 6, "account": [2, 4], "achiev": 6, "acknowledg": 6, "acquir": 6, "across": 6, "act": 2, "action": [2, 6], "activ": [4, 6], "actual": 6, "ad": [1, 6], "adapt": [2, 6], "add": 6, "add_ax": 7, "add_colorbar": 7, "add_offset": 7, "address": [2, 6], "administr": 4, "adopt": 6, "advanc": 2, "advers": 6, "advis": 6, "affect": [2, 6], "affirm": 6, "after": [4, 6], "ag": 2, "against": 6, "aggreg": 6, "aggress": 2, "agre": [3, 4, 6], "agreement": 6, "aim": 6, "align": 2, "all": [2, 4, 6], "alleg": 6, "allow": [2, 4, 6], "along": 6, "alreadi": [6, 10], "also": [2, 4, 6], "altern": 6, "although": 6, "alwai": 4, "among": 6, "an": [2, 4, 6, 10], "analamazaotra": 7, "ancillari": 6, "ani": [2, 6], "answer": 2, "anybodi": [3, 4], "anyon": 6, "anyth": 6, "aoi": [4, 7, 8, 10], "apolog": 2, "apologi": 2, "appear": 2, "append": [7, 8], "appli": 2, "applic": 6, "appoint": 2, "appropri": [2, 6], "approxim": 6, "apt": 4, "ar": [2, 3, 4, 6, 7, 8], "archiv": 4, "area": [4, 6, 7, 10], "area_or_point": 7, "aris": 6, "around": [2, 7, 8, 10], "arrai": 7, "arrang": 6, "articl": 6, "ask": 6, "assert": 6, "asset": [4, 6], "associ": 6, "assum": 6, "assumpt": 6, "assur": 6, "attach": 6, "attack": 2, "attempt": 6, "attent": 2, "attribut": [6, 7], "author": 6, "avail": [2, 6], "avoid": [2, 6, 8], "awai": 6, "ax": [7, 8], "b": 6, "band": [7, 10], "base": 6, "bbox_inch": [7, 8], "bbox_to_anchor": [7, 8], "beam": 3, "becaus": 6, "been": 6, "befor": 4, "behalf": 6, "behavior": 2, "being": 6, "believ": 6, "below": 6, "benefit": 6, "best": [2, 6], "between": 6, "beyond": 6, "bin": 4, "binari": 4, "bind": 4, "black": [7, 8], "blk_row": 10, "block": 10, "bodi": [2, 6], "border": [4, 8], "borderaxespad": [7, 8], "borders_gpkg": 8, "borders_imag": 8, "both": 6, "boundari": 8, "box": 6, "branch": 3, "break": 10, "brief": 6, "broad": 4, "buff": [8, 10], "buffer": [8, 10], "buffer_gpkg": 8, "buffer_imag": 8, "bug": 3, "busi": 6, "c": 6, "cach": 4, "call": 6, "can": [3, 4, 6, 7, 8, 10], "cannot": 6, "carri": 6, "cartopi": 7, "case": [4, 6, 7], "cast": 2, "caus": 6, "ccr": 7, "cd": 4, "ceas": 6, "certain": 6, "cessat": 6, "chang": [1, 3, 4, 6, 10], "channel": 2, "character": 6, "characterist": 2, "charg": 6, "check": 4, "choos": 6, "chri": 3, "circumst": 6, "civil": 6, "claim": 6, "clarifi": 2, "clariti": 2, "class": [2, 6], "clear": 6, "clearli": 6, "close": 6, "cloud": 4, "cmap": [7, 8], "cmax": [7, 8], "code": [4, 8, 10], "code_of_conduct": 2, "col": [7, 8], "col_class": [7, 8], "collect": 6, "color": [2, 7, 8], "color_map": [7, 8], "com": [4, 7, 8], "combin": 6, "come": [4, 6], "command": [4, 6], "comment": 2, "commerci": 6, "commit": [2, 3, 6], "common": [2, 6], "commun": [2, 4, 6], "comp": 7, "compil": 6, "complaint": 2, "complet": 10, "compli": 6, "complianc": 6, "compon": 6, "comput": [4, 6, 7, 8, 10], "concern": 6, "conduct": [3, 4], "config": 4, "connect": 6, "consequ": [2, 6], "consequenti": 6, "consid": [2, 4, 6], "consist": 6, "conspicu": 6, "constantli": 6, "constitut": 6, "constru": 6, "construct": 2, "consum": 6, "contact": [2, 6], "contain": 6, "content": 6, "context": 6, "continu": [2, 6], "contractu": 6, "contradict": 6, "contrast": 6, "contribut": 2, "contributor": [2, 3, 4, 6], "control": 6, "conveni": 6, "convey": 6, "coordin": 7, "copyleft": 6, "copyright": 6, "core": [8, 10], "correct": [4, 6], "correspond": [6, 7, 10], "cost": 6, "could": [2, 6], "counterclaim": 6, "countri": [0, 1, 4, 6, 10], "cours": 6, "court": 6, "coven": [2, 6], "cover": [4, 6, 10], "coverag": 6, "cpu": 10, "cpu_count": 8, "cr": 7, "creat": [3, 4, 10], "credenti": 4, "criterion": 6, "crop": 10, "crop_to_aoi": 10, "cross": 6, "cure": 6, "current": 4, "custom": 6, "customarili": 6, "d": [6, 8], "dai": 6, "damag": 6, "danger": 6, "data": [4, 6, 10], "dataarrai": 7, "dataset": [4, 7], "date": [3, 6], "deactiv": 4, "debian": 4, "decemb": 6, "decid": 6, "decim": [8, 10], "decis": 2, "declin": 6, "deem": [2, 6], "default": 3, "defect": 6, "defens": 6, "defin": [4, 6, 7, 10], "deforest": [4, 7, 8], "degre": [8, 10], "delet": 4, "demonstr": 2, "deni": 6, "denomin": 6, "depend": [4, 7], "depriv": 6, "deriv": 4, "derogatori": 2, "describ": 8, "design": 6, "detail": 6, "determin": [2, 6], "dev": 4, "develop": [3, 4, 6], "devic": 6, "differ": [2, 6, 7], "dim": 7, "dir": 4, "direct": 6, "directli": [4, 6], "directori": [4, 10], "disabl": 2, "discriminatori": 6, "discuss": 3, "disk": 4, "disparag": 2, "displai": [4, 6], "distanc": 8, "distinguish": 6, "distribut": [4, 6], "divers": 2, "divid": 8, "divis": [7, 8], "do": [3, 6, 8, 10], "document": [3, 6], "doe": [4, 6, 10], "domain": 6, "doubt": 6, "down": 4, "download": 4, "dpi": [7, 8], "drive": 4, "dtype": 7, "durabl": 6, "dure": 2, "dwell": 6, "dynam": 6, "e": [4, 6, 10], "each": [4, 6, 10], "earlier": 6, "earth": 8, "earthengin": [4, 7, 8], "easiest": 4, "econom": 2, "edg": 8, "edgecolor": [7, 8], "edit": 2, "educ": 2, "ee": [4, 7, 8], "effect": [6, 8], "effort": 6, "either": [4, 6, 10], "elapsed_tim": 8, "electron": 6, "email": 2, "embodi": 6, "empathi": 2, "employ": 6, "enabl": 6, "end": 6, "end_tim": 8, "endpoint": 4, "enforc": 6, "engin": 8, "ensur": 6, "enter": 6, "entir": 6, "entiti": 6, "enumer": [7, 8], "environ": [2, 4], "equat": 10, "equival": 6, "erron": 6, "essenti": 6, "estim": [8, 10], "ethnic": 2, "even": 6, "event": [2, 6], "ever": 6, "everi": [3, 4, 6], "everyon": [2, 6], "exact": 6, "exampl": [2, 3, 4, 6, 8], "except": [6, 10], "exclud": 6, "exclus": 6, "excus": 6, "execut": [4, 6, 8], "exercis": 6, "exist": 10, "expect": 6, "experi": 2, "explain": 6, "explan": 2, "explicit": 2, "explicitli": 6, "export": 4, "express": [2, 4, 6], "expressli": 6, "extend": 6, "extens": 6, "extent": [4, 6, 8, 10], "extern": 2, "f": 6, "facecolor": [7, 8], "facil": 6, "fail": 6, "failur": 6, "fair": [2, 6], "fairli": 2, "fals": [7, 8, 10], "famili": 6, "faq": 2, "fashion": 6, "favor": 6, "fcc": [4, 10], "fcc_gfc": 7, "fcc_tmf": [7, 8], "fcc_tmf_coarsen": 8, "fcc_tmf_mdg": 7, "featur": [3, 6], "fee": 6, "feedback": 2, "fig": [7, 8], "figur": [7, 8], "file": [4, 6, 10], "final": 6, "find": 6, "first": [1, 6, 7], "fit": 6, "fix": 6, "float": [7, 8], "float64": 7, "flow": 6, "focus": 2, "follow": [2, 3, 4, 6, 7], "forbid": 6, "forc": [4, 6], "forest": [4, 10], "forest_diff": 7, "forest_gfc": 7, "forest_gfc_50": 7, "forest_sum": 7, "forest_tmf": [7, 8], "forest_tmf_ext": 7, "forest_tmf_mdg": 7, "forestatrisk": [7, 8], "fork": 3, "format": 6, "found": 6, "foundat": 6, "free": [2, 3, 6], "from": [2, 3, 4], "fsf": 6, "fulfil": 6, "full": 6, "function": [1, 3, 4, 6, 7], "fundament": 6, "further": 6, "futur": [3, 6], "g": [4, 10], "ga_readonli": 8, "gadm41_per_0": 8, "gadm41_per_buff": 8, "gain": 4, "gb": 4, "gdal": 8, "gdalinfo": 4, "gee": [4, 7], "geefcc": [3, 7, 8], "gender": 2, "geopanda": 8, "geospati": 4, "geotiff": 10, "get": [0, 6, 10], "get_fcc": [7, 8, 9, 10], "getgeotransform": 8, "gfc": [4, 10], "ghislainv": 4, "git": 3, "github": [3, 4], "give": [2, 6], "given": [4, 6], "global": [4, 10], "gnu": [3, 4], "good": 3, "googl": 8, "googleapi": [4, 7, 8], "govern": 6, "gpkg": 8, "gpl": [3, 4, 6], "gracefulli": 2, "grant": 6, "grati": 6, "greatest": 6, "grei": 8, "grid": [8, 10], "grid_gpkg": 8, "grid_imag": 8, "guarante": 6, "gui": 6, "guid": 3, "guidelin": 4, "ha": [3, 4, 6, 8], "had": 6, "handl": [7, 8], "harass": 2, "harm": 2, "have": [2, 8], "healthi": 2, "here": 7, "hereaft": 6, "high": 4, "highvolum": [4, 7, 8], "hold": 10, "holder": 6, "hope": 6, "host": 6, "household": 6, "how": 3, "howev": 6, "html": [2, 6], "http": [2, 4, 6, 7, 8], "hypothet": 6, "i": [2, 3, 4, 6, 7, 8, 10], "idea": 6, "ident": 2, "identifi": 6, "imag": 4, "imageri": 2, "impact": 2, "implement": 6, "impli": 6, "import": [1, 3, 6, 7, 8], "impos": 6, "improv": 3, "imshow": 8, "inabl": 6, "inaccur": 6, "inappropri": 2, "inc": 6, "incid": 2, "incident": 6, "includ": [2, 6], "inclus": [2, 6], "incompat": 6, "incorpor": [3, 6], "indemnif": 6, "independ": 6, "index": 5, "indic": 6, "individu": [2, 4, 6], "industri": 6, "infn": 8, "inform": [2, 6], "infring": 6, "initi": [4, 6, 7, 8], "input": 10, "input_fil": [8, 10], "insert": 2, "insid": 6, "inspir": 2, "instal": 6, "instanc": 2, "instead": 6, "insult": 2, "int64": 7, "int8": 7, "intact": 6, "intend": 6, "intent": 6, "interact": [2, 6], "interchang": 6, "interest": [3, 4, 6, 10], "interf": 6, "interfac": 6, "interv": [4, 10], "intim": 6, "invalid": 6, "investig": 2, "invis": 2, "involv": 2, "irrevoc": 6, "isfil": 7, "island": 7, "iso": [4, 8, 10], "isocod": 7, "issu": 2, "item": 6, "its": 6, "itself": 6, "jan": 7, "januari": 4, "join": 8, "june": 6, "just": [2, 4, 8], "keep": [3, 6], "kei": 6, "kernel": 6, "kind": [2, 6], "km": [8, 10], "know": 6, "knowingli": 6, "knowledg": 6, "label": [7, 8], "ladder": 2, "lage": 10, "landsat": 4, "languag": [2, 6], "larg": [0, 1], "larger": 6, "last": 4, "lat": 10, "later": 6, "lawsuit": 6, "lead": 2, "leader": 2, "learn": [2, 3], "least": 6, "legend": [7, 8], "lesser": 6, "letter": 10, "level": 2, "lgpl": 6, "liabl": 6, "libgdal": 4, "librari": 6, "licens": [3, 4], "license": 6, "licensor": 6, "like": [2, 6], "likewis": 6, "line": [4, 6, 8], "linewidth": 8, "link": [4, 6], "linux": 4, "list": [6, 10], "listedcolormap": [7, 8], "litig": 6, "load": [7, 8], "loc": [7, 8], "local": [4, 6], "logic": 10, "long": [6, 10], "loss": [4, 6, 10], "lower": 8, "m": 4, "machin": 6, "madagascar": 7, "made": [3, 6], "mai": [2, 6], "mail": 6, "maintain": 6, "major": 6, "make": [2, 3, 4, 6, 10], "make_dir": [9, 10], "manag": 4, "mani": 3, "manner": 6, "manual": 4, "manufactur": 6, "map": 4, "march": 6, "mark": 6, "mask": 6, "master": [3, 4], "match": 10, "materi": 6, "matplotlib": [7, 8], "mean": 6, "measur": 6, "media": 2, "medium": 6, "meet": 6, "member": 2, "memori": 10, "menu": 6, "merchant": 6, "mere": 6, "merg": 6, "messag": [3, 10], "met": 6, "method": [2, 6], "meurer": 3, "might": [6, 7], "min_grid": 8, "minu": 10, "minut": 8, "misrepresent": 6, "mistak": 2, "mkdir": 4, "mode": 6, "model": 6, "moder": 2, "modif": 6, "moist": [4, 7, 10], "more": 6, "moreov": 6, "most": 6, "mozilla": 2, "mpatch": [7, 8], "must": [3, 4, 6, 7, 10], "n": 8, "name": [4, 6], "nation": 2, "natur": [2, 6], "ncol": 8, "ncpu": [8, 10], "necessari": 6, "need": [4, 6], "neither": 6, "network": [4, 6], "new": [1, 3, 10], "newdir": 10, "newli": 4, "next": 6, "non": [7, 8, 10], "noncommerci": 6, "none": [8, 10], "nor": 6, "normal": 6, "noth": 6, "notic": 6, "notifi": 6, "notwithstand": 6, "np": 8, "nrow": 8, "number": [6, 8, 10], "numpi": [4, 8], "o": [7, 8], "object": 6, "oblig": [2, 6], "obtain": 4, "occasion": 6, "occur": 6, "offens": 2, "offer": 6, "offici": [2, 6], "offlin": 2, "one": [6, 10], "onli": [4, 6, 8], "onlin": 2, "open": [2, 3, 4, 8], "open_rasterio": 7, "oper": 6, "opinion": 2, "opt_url": [4, 7, 8], "option": 6, "order": 6, "org": [2, 6], "organ": 6, "orient": 2, "origin": 6, "osgeo": 8, "osgeo4w": 4, "other": [2, 4], "otherwis": [2, 6], "our": [4, 6], "out": 6, "out_gfc_50": 7, "out_tmf": [7, 8], "out_tmf_ext": 7, "outfn": 8, "output": [6, 10], "output_fil": [7, 8, 10], "outsid": 6, "overal": 2, "own": 6, "packag": [1, 3, 6], "page": [3, 5], "paper": 6, "paragraph": 6, "parallel": [8, 10], "paramet": 10, "parent": 10, "part": 6, "parti": 6, "particip": 2, "particular": 6, "pass": 6, "password": 6, "patch": [7, 8], "path": [7, 8, 10], "pattern": [2, 6], "payment": 6, "peer": 6, "peopl": 2, "per": [4, 8], "perc": [7, 10], "perform": 6, "period": [2, 4, 8, 10], "perman": 6, "permiss": 2, "permit": 6, "perou": 8, "perpetu": 6, "person": [2, 6], "pertin": 6, "peru": [4, 8], "philosophi": 6, "physic": [2, 6], "piec": 6, "pip": 4, "place": 6, "platecarre": 7, "pleas": [3, 4, 6], "plot": 7, "plt": [7, 8], "plu": 6, "png": [7, 8], "pointer": 6, "polit": 2, "polygon": 4, "portion": 6, "posit": 2, "possess": 6, "possibl": 6, "post": 2, "power": 6, "pr": 3, "practic": 6, "precis": 6, "predecessor": 6, "prefer": 6, "prepar": 8, "present": 6, "preserv": 6, "prevent": 6, "previou": 6, "price": 6, "primarili": 6, "print": [8, 10], "prior": 6, "privaci": 2, "privat": [2, 6], "problem": [4, 6], "procedur": 6, "process": 8, "procur": 6, "produc": [6, 10], "product": [4, 6, 7, 10], "profession": 2, "program": 4, "programm": 6, "prohibit": 6, "project": [3, 4, 7, 8], "promin": 6, "prompt": 4, "promptli": 2, "propag": 6, "properti": 6, "proprietari": 6, "protocol": 6, "prove": 6, "provid": [2, 3, 4, 6, 10], "provis": 6, "provision": 6, "proxi": 6, "public": 2, "publicli": 6, "publish": [2, 6], "pull": 3, "purpos": 6, "pursuant": 6, "push": 3, "pyplot": [7, 8], "python": 3, "python3": 4, "qualifi": 6, "qualiti": 6, "question": 2, "quit": 7, "r": 4, "race": 2, "rais": 10, "raster": 10, "raster_imag": [7, 8], "read": 6, "read_fil": 8, "readabl": 6, "readasarrai": 8, "readi": 6, "readili": 6, "reason": [2, 6], "receipt": 6, "receiv": 6, "recogn": 6, "redistribut": 6, "refer": 6, "refrain": 6, "regard": 6, "regardless": [2, 6], "regener": 6, "region": 7, "regist": 4, "regrowth": 4, "regular": 10, "reinstal": 4, "reinstat": 6, "reject": 2, "relationship": 6, "releas": [1, 3, 4, 6], "relev": 6, "reli": 6, "relicens": 6, "religion": 2, "remain": [6, 8], "remov": [2, 4, 6], "render": 6, "repair": 6, "replac": 4, "report": 2, "repositori": [3, 4], "repres": [2, 6, 8], "request": [2, 3], "resampl": 8, "resample_alg": 8, "resamplealg": 8, "reserv": 7, "resolut": [4, 8], "resolv": 6, "respect": [2, 6], "respond": 4, "respons": 6, "restrict": 6, "result": 6, "retain": 6, "return": 6, "reu": 7, "reunion": 7, "review": [2, 6], "right": 2, "rioxarrai": 7, "risk": 6, "rm": 4, "rom": 6, "round": 8, "row": 10, "royalti": 6, "rule": 6, "run": [4, 6], "safest": 6, "sai": 6, "sake": 6, "sale": 6, "same": 6, "satellit": 4, "satisfi": 6, "savefig": [7, 8], "scale": 8, "scale_factor": 7, "school": 6, "scope": 6, "script": 6, "search": 5, "secondarili": 6, "secur": 2, "see": [2, 6], "sel": 7, "select": [4, 7], "sell": 6, "semiconductor": 6, "separ": 6, "seri": [2, 3], "seriou": 2, "serv": 6, "server": [4, 6], "servic": 6, "set": [2, 4, 7, 10], "setuptool": 4, "sever": [4, 8, 10], "sex": 2, "sexual": 2, "shall": 6, "shape": 8, "share": 6, "shell": 4, "short": 6, "should": [3, 4, 6], "show": 6, "sign": [4, 6], "signific": 6, "silent": 10, "similar": 6, "simultan": 6, "singl": [2, 6], "size": [2, 7, 8, 10], "so": [4, 6, 8], "social": 2, "socio": 2, "softwar": [4, 6], "sold": 6, "sole": 6, "some": 6, "sort": 2, "sourc": [3, 4, 7, 8, 10], "space": [2, 4], "spare": 6, "spatial_ref": 7, "speak": 6, "special": [6, 7], "specif": 6, "specifi": [2, 4, 6, 10], "spirit": 6, "st": 4, "stand": 6, "standard": 6, "start": [0, 3, 4, 6], "start_tim": 8, "state": 6, "statement": [1, 6], "statu": [2, 6], "step": [3, 6], "storag": 6, "studi": 7, "subdivid": 6, "subject": 6, "sublicens": 6, "submit": 3, "subplot": 8, "subprogram": 6, "subroutin": 6, "subsect": 6, "substanti": 6, "sudo": 4, "sue": 6, "suffic": 6, "sum": [7, 8, 10], "sum_raster_band": [1, 8, 9, 10], "supplement": 6, "support": 6, "sure": [4, 6], "surviv": 6, "sustain": [2, 6], "system": [4, 6], "systemat": 6, "take": [2, 6], "tangibl": 6, "technolog": 6, "tell": 6, "term": 2, "termin": 4, "test": [3, 4], "than": 6, "thei": [2, 6, 10], "them": [4, 6, 10], "therefor": 6, "thi": [2, 3, 4, 7, 10], "thing": 6, "third": 6, "those": [2, 6], "though": 6, "threaten": [2, 6], "three": [6, 10], "threshold": [4, 7, 10], "through": [2, 6], "thu": 6, "tif": [7, 8, 10], "tight": [7, 8], "tile": [8, 10], "tile_s": [7, 8, 10], "time": [2, 4, 6, 8, 10], "titl": [7, 8], "tmf": [4, 8, 10], "too": 6, "tool": 6, "toward": 2, "trade": 6, "trademark": 6, "transact": 6, "transfer": 6, "translat": 2, "transmiss": 6, "transpar": [7, 8], "treat": 6, "treati": 6, "tree": [4, 7, 10], "troll": 2, "tropic": [4, 7, 10], "true": 10, "try": 4, "tupl": [7, 8, 10], "tutori": [1, 3], "two": [4, 6, 7], "type": 6, "typic": 6, "u": 2, "ubuntu": 4, "unaccept": [2, 6], "under": [3, 4, 6], "unless": 6, "unlimit": 6, "unmodifi": 6, "unnecessari": 6, "unpack": 6, "unprofession": 2, "unsolicit": 2, "until": 6, "unwelcom": 2, "up": [3, 4], "updat": [4, 6], "upgrad": 4, "us": [2, 4, 7, 8, 10], "user": 4, "v1": 4, "valid": 6, "valu": [7, 8, 10], "vector": [4, 10], "venv": 4, "verbos": [8, 10], "version": [2, 3, 4], "via": [2, 3, 4], "video": 3, "view": 6, "viewpoint": 2, "violat": [2, 6], "virtual": 4, "visibl": [2, 6], "void": 6, "volum": [4, 6], "w": 6, "wa": [2, 6], "wai": [2, 3, 4, 6, 10], "waiv": 6, "waiver": 6, "want": [3, 4, 6, 8], "warp": 8, "we": [2, 6, 7, 8], "welcom": [2, 6], "well": [2, 6, 10], "were": [2, 6, 8], "what": [2, 6], "whatev": 6, "wheel": 4, "when": [2, 6], "where": [6, 7], "whether": [6, 10], "which": [2, 3, 4, 6, 7, 8], "while": [4, 8], "white": [7, 8], "who": [3, 4, 6], "whole": [6, 8], "whom": 6, "whose": 6, "why": [2, 6], "wide": 6, "wiki": 2, "window": [4, 6], "wipo": 6, "wish": 6, "within": [2, 6], "without": [2, 4, 6], "work": 6, "workflow": 3, "worldwid": 6, "would": 6, "write": [3, 6], "written": [2, 3, 6], "www": [2, 6], "x": 7, "xarrai": 7, "xee": 4, "xmax": 10, "xmin": [8, 10], "xre": 8, "y": 7, "year": [4, 6, 7, 8, 10], "ymax": [8, 10], "ymin": 10, "you": [3, 4, 6], "your": [3, 4, 8], "yourself": 6, "yre": 8, "zip": 4}, "titles": ["Articles", "Changelog", "Code of Conduct", "Community guidelines", "geefcc Python package", "Indices and tables", "License", "Get started", "Large countries", "Python API", "<no title>"], "titleterms": {"0": [1, 6], "1": [1, 2, 6], "10": 6, "11": 6, "12": 6, "13": 6, "14": 6, "15": 6, "16": 6, "17": 6, "2": [1, 2, 6], "2020": 7, "3": [2, 6], "4": [2, 6], "5": 6, "6": 6, "7": 6, "8": 6, "9": 6, "AND": 6, "No": 6, "Not": 6, "These": 6, "accept": 6, "access": 4, "addit": 6, "affero": 6, "an": [3, 7], "anti": 6, "api": 9, "appli": 6, "articl": 0, "attribut": 2, "automat": 6, "ban": 2, "band": 8, "basic": 6, "between": 7, "chang": [7, 8], "changelog": 1, "circumvent": 6, "code": [2, 3, 6], "commun": 3, "compar": 7, "condit": 6, "conduct": 2, "contribut": [3, 4], "convei": 6, "copi": 6, "correct": 2, "countri": 8, "cover": [7, 8], "data": [7, 8], "definit": 6, "disclaim": 6, "download": [7, 8], "downstream": 6, "earth": 4, "enforc": 2, "engin": 4, "extent": 7, "fcc": 8, "forest": [7, 8], "form": 6, "freedom": 6, "from": [6, 7, 8], "gadm": 4, "gdal": 4, "gee": 8, "geefcc": [1, 4], "gener": 6, "get": 7, "gfc": 7, "gnu": 6, "googl": 4, "guidelin": [2, 3], "have": 6, "how": 6, "indic": 5, "instal": 4, "interpret": 6, "issu": 3, "larg": 8, "law": 6, "legal": 6, "liabil": 6, "licens": 6, "limit": 6, "map": 8, "modifi": 6, "multiband": 8, "new": 6, "non": 6, "one": 8, "other": 6, "our": 2, "overview": 4, "packag": 4, "patent": 6, "perman": 2, "permiss": 6, "pledg": 2, "plot": 8, "preambl": 6, "prerequisit": 4, "program": 6, "protect": 6, "public": 6, "python": [4, 9], "raster": 8, "recipi": 6, "report": 3, "requir": 6, "respons": 2, "revis": 6, "right": 6, "scope": 2, "section": 6, "sourc": 6, "standard": 2, "start": 7, "surrend": 6, "tabl": 5, "temporari": 2, "term": 6, "termin": 6, "thi": 6, "tmf": 7, "transform": 8, "us": 6, "user": 6, "verbatim": 6, "version": 6, "warn": 2, "warranti": 6, "websit": 4, "your": 6}}) \ No newline at end of file +Search.setIndex({"alltitles": {"0. Definitions": [[6, "definitions"]], "1. Correction": [[2, "correction"]], "1. Source Code": [[6, "source-code"]], "10. Automatic Licensing of Downstream Recipients": [[6, "automatic-licensing-of-downstream-recipients"]], "11. Patents": [[6, "patents"]], "12. No Surrender of Others\u2019 Freedom": [[6, "no-surrender-of-others-freedom"]], "13. Use with the GNU Affero General Public License": [[6, "use-with-the-gnu-affero-general-public-license"]], "14. Revised Versions of this License": [[6, "revised-versions-of-this-license"]], "15. Disclaimer of Warranty": [[6, "disclaimer-of-warranty"]], "16. Limitation of Liability": [[6, "limitation-of-liability"]], "17. Interpretation of Sections 15 and 16": [[6, "interpretation-of-sections-15-and-16"]], "2. Basic Permissions": [[6, "basic-permissions"]], "2. Warning": [[2, "warning"]], "3. Protecting Users\u2019 Legal Rights From Anti-Circumvention Law": [[6, "protecting-users-legal-rights-from-anti-circumvention-law"]], "3. Temporary Ban": [[2, "temporary-ban"]], "4. Conveying Verbatim Copies": [[6, "conveying-verbatim-copies"]], "4. Permanent Ban": [[2, "permanent-ban"]], "5. Conveying Modified Source Versions": [[6, "conveying-modified-source-versions"]], "6. Conveying Non-Source Forms": [[6, "conveying-non-source-forms"]], "7. Additional Terms": [[6, "additional-terms"]], "8. Termination": [[6, "termination"]], "9. Acceptance Not Required for Having Copies": [[6, "acceptance-not-required-for-having-copies"]], "Access to Google Earth Engine": [[4, "access-to-google-earth-engine"]], "Articles": [[0, "articles"]], "Attribution": [[2, "attribution"]], "Changelog": [[1, "changelog"]], "Code of Conduct": [[2, "code-of-conduct"]], "Community guidelines": [[3, "community-guidelines"]], "Compare with forest cover change from GFC": [[7, "compare-with-forest-cover-change-from-gfc"]], "Comparing forest cover in 2020 between TMF and GFC": [[7, "comparing-forest-cover-in-2020-between-tmf-and-gfc"]], "Contribute to code": [[3, "contribute-to-code"]], "Contributing": [[4, "contributing"]], "Download data from an extent": [[7, "download-data-from-an-extent"]], "Download the data from GEE": [[8, "download-the-data-from-gee"]], "Enforcement": [[2, "enforcement"]], "Enforcement Guidelines": [[2, "enforcement-guidelines"]], "Enforcement Responsibilities": [[2, "enforcement-responsibilities"]], "GADM website": [[4, "gadm-website"]], "GDAL": [[4, "gdal"]], "GNU General Public License": [[6, "gnu-general-public-license"]], "Get forest cover change from TMF": [[7, "get-forest-cover-change-from-tmf"]], "Get started": [[7, "get-started"]], "How to Apply These Terms to Your New Programs": [[6, "how-to-apply-these-terms-to-your-new-programs"]], "Indices and tables": [[5, "indices-and-tables"]], "Installation": [[4, "installation"]], "Large countries": [[8, "large-countries"]], "License": [[6, "license"]], "Our Pledge": [[2, "our-pledge"]], "Our Standards": [[2, "our-standards"]], "Overview": [[4, "overview"]], "Plot the forest cover change map": [[8, "plot-the-forest-cover-change-map"]], "Preamble": [[6, "preamble"]], "Prerequisites": [[4, "prerequisites"]], "Python API": [[9, "python-api"]], "Report an issue": [[3, "report-an-issue"]], "Scope": [[2, "scope"]], "TERMS AND CONDITIONS": [[6, "terms-and-conditions"]], "Transform multiband fcc raster in one band raster": [[8, "transform-multiband-fcc-raster-in-one-band-raster"]], "geefcc 0.1": [[1, "geefcc-0-1"]], "geefcc 0.1.1": [[1, "geefcc-0-1-1"]], "geefcc 0.1.2": [[1, "geefcc-0-1-2"]], "geefcc Python package": [[4, "geefcc-python-package"]]}, "docnames": ["articles", "changelog", "code_of_conduct", "contributing", "index", "indices", "license", "notebooks/get_started/get_started", "notebooks/large_countries/large_countries", "python_api", "python_api/functions"], "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", "code_of_conduct.rst", "contributing.rst", "index.rst", "indices.rst", "license.rst", "notebooks/get_started/get_started.rst", "notebooks/large_countries/large_countries.rst", "python_api.rst", "python_api/functions.rst"], "indexentries": {"get_fcc() (in module geefcc)": [[10, "geefcc.get_fcc", false]], "make_dir() (in module geefcc)": [[10, "geefcc.make_dir", false]], "sum_raster_bands() (in module geefcc)": [[10, "geefcc.sum_raster_bands", false]]}, "objects": {"geefcc": [[10, 0, 1, "", "get_fcc"], [10, 0, 1, "", "make_dir"], [10, 0, 1, "", "sum_raster_bands"]]}, "objnames": {"0": ["py", "function", "Python function"]}, "objtypes": {"0": "py:function"}, "terms": {"": [2, 3, 4, 6], "0": [7, 8, 10], "05": [7, 8], "089": 8, "08983152841195216": [8, 10], "1": [4, 7, 8, 10], "10": [7, 8, 10], "100": 7, "11": 4, "111": 8, "128": 10, "13297545": 7, "139": [7, 8], "13mb": 7, "150": 7, "159": 8, "15kb": 7, "165": [7, 8], "18": 7, "18kb": 7, "19": 7, "1923": 7, "1996": 6, "1st": 7, "2": [7, 8], "20": [6, 7, 8], "200": [7, 8], "2000": [4, 7, 8, 10], "2001": [4, 7, 10], "2007": 6, "2009": [7, 8], "2010": [4, 7, 8, 10], "2019": [7, 8], "2020": [4, 8, 10], "2022": 4, "2023": [4, 10], "2024": [4, 10], "21": 7, "22": 7, "227": [7, 8], "2305": 7, "24b": 7, "255": [7, 8], "26": [7, 8], "28": [6, 7, 8], "29": 6, "3": [3, 4, 7, 8], "30": [4, 6, 8], "34": [7, 8], "35mb": 7, "39": 7, "4": 7, "48": 7, "5": [7, 8], "50": 7, "55": 7, "6": 7, "60": [6, 8], "6b": 6, "6d": 6, "7": 4, "75": [4, 7, 10], "76": 8, "8": 7, "84": 7, "87": 7, "8b": 7, "A": [2, 6, 8], "AS": 6, "And": 6, "BE": 6, "BEING": 6, "BUT": 6, "BY": 6, "Being": 2, "But": 6, "By": 6, "FOR": 6, "For": [2, 4, 6], "IF": 6, "IN": 6, "If": [3, 4, 6, 8, 10], "In": [4, 6, 10], "It": 6, "NO": 6, "NOT": 6, "No": 2, "OF": 6, "OR": 6, "Of": [3, 6], "One": [8, 10], "SUCH": 6, "Such": 6, "THE": 6, "THERE": 6, "TO": 6, "The": [2, 3, 4, 6, 7, 8], "There": 3, "These": 4, "To": [4, 6, 8], "WILL": 6, "WITH": 6, "_": 8, "aaron": 3, "abil": 6, "about": [2, 6, 8], "abov": 6, "absenc": 6, "absolut": 6, "abus": [2, 6], "accept": 2, "access": 6, "accompani": 6, "accord": 6, "account": [2, 4], "achiev": 6, "acknowledg": 6, "acquir": 6, "across": 6, "act": 2, "action": [2, 6], "activ": [4, 6], "actual": 6, "ad": [1, 6], "adapt": [2, 6], "add": 6, "add_ax": 7, "add_colorbar": 7, "add_offset": 7, "address": [2, 6], "administr": 4, "adopt": 6, "advanc": 2, "advers": 6, "advis": 6, "affect": [2, 6], "affirm": 6, "after": [4, 6], "ag": 2, "against": 6, "aggreg": 6, "aggress": 2, "agre": [3, 4, 6], "agreement": 6, "aim": 6, "align": 2, "all": [2, 4, 6], "alleg": 6, "allow": [2, 4, 6], "along": 6, "alreadi": [6, 10], "also": [2, 4, 6], "altern": 6, "although": 6, "alwai": 4, "among": 6, "an": [2, 4, 6, 10], "analamazaotra": 7, "ancillari": 6, "ani": [2, 6], "answer": 2, "anybodi": [3, 4], "anyon": 6, "anyth": 6, "aoi": [4, 7, 8, 10], "apolog": 2, "apologi": 2, "appear": 2, "append": [7, 8], "appli": 2, "applic": 6, "appoint": 2, "appropri": [2, 6], "approxim": 6, "apt": 4, "ar": [2, 3, 4, 6, 7, 8], "archiv": 4, "area": [4, 6, 7, 10], "area_or_point": 7, "aris": 6, "around": [2, 7, 8, 10], "arrai": 7, "arrang": 6, "articl": 6, "ask": 6, "assert": 6, "asset": [4, 6], "associ": 6, "assum": 6, "assumpt": 6, "assur": 6, "attach": 6, "attack": 2, "attempt": 6, "attent": 2, "attribut": [6, 7], "author": 6, "avail": [2, 6], "avoid": [2, 6, 8], "awai": 6, "ax": [7, 8], "b": 6, "band": [7, 10], "base": 6, "bbox_inch": [7, 8], "bbox_to_anchor": [7, 8], "beam": 3, "becaus": 6, "been": 6, "befor": 4, "behalf": 6, "behavior": 2, "being": 6, "believ": 6, "below": 6, "benefit": 6, "best": [2, 6], "between": 6, "beyond": 6, "bin": 4, "binari": 4, "bind": 4, "black": [7, 8], "blk_row": 10, "block": 10, "bodi": [2, 6], "border": [4, 8], "borderaxespad": [7, 8], "borders_gpkg": 8, "borders_imag": 8, "both": 6, "boundari": 8, "box": 6, "branch": 3, "break": 10, "brief": 6, "broad": 4, "buff": [8, 10], "buffer": [8, 10], "buffer_gpkg": 8, "buffer_imag": 8, "bug": 3, "busi": 6, "c": 6, "cach": 4, "call": 6, "can": [3, 4, 6, 7, 8, 10], "cannot": 6, "carri": 6, "cartopi": 7, "case": [4, 6, 7], "cast": 2, "caus": 6, "ccr": 7, "cd": 4, "ceas": 6, "certain": 6, "cessat": 6, "chang": [1, 3, 4, 6, 10], "channel": 2, "character": 6, "characterist": 2, "charg": 6, "check": 4, "choos": 6, "chri": 3, "circumst": 6, "civil": 6, "claim": 6, "clarifi": 2, "clariti": 2, "class": [2, 6], "clear": 6, "clearli": 6, "close": 6, "cloud": 4, "cmap": [7, 8], "cmax": [7, 8], "code": [4, 8, 10], "code_of_conduct": 2, "col": [7, 8], "col_class": [7, 8], "collect": 6, "color": [2, 7, 8], "color_map": [7, 8], "com": [4, 7, 8], "combin": 6, "come": [4, 6], "command": [4, 6], "comment": 2, "commerci": 6, "commit": [2, 3, 6], "common": [2, 6], "commun": [2, 4, 6], "comp": 7, "compil": 6, "complaint": 2, "complet": 10, "compli": 6, "complianc": 6, "compon": 6, "comput": [4, 6, 7, 8, 10], "concern": 6, "conduct": [3, 4], "config": 4, "connect": 6, "consequ": [2, 6], "consequenti": 6, "consid": [2, 4, 6], "consist": 6, "conspicu": 6, "constantli": 6, "constitut": 6, "constru": 6, "construct": 2, "consum": 6, "contact": [2, 6], "contain": 6, "content": 6, "context": 6, "continu": [2, 6], "contractu": 6, "contradict": 6, "contrast": 6, "contribut": 2, "contributor": [2, 3, 4, 6], "control": 6, "conveni": 6, "convey": 6, "coordin": 7, "copyleft": 6, "copyright": 6, "core": [8, 10], "correct": [4, 6], "correspond": [6, 7, 10], "cost": 6, "could": [2, 6], "counterclaim": 6, "countri": [0, 1, 4, 6, 10], "cours": 6, "court": 6, "coven": [2, 6], "cover": [4, 6, 10], "coverag": 6, "cpu": 10, "cpu_count": 8, "cr": 7, "creat": [3, 4, 10], "credenti": 4, "criterion": 6, "crop": 10, "crop_to_aoi": 10, "cross": 6, "cure": 6, "current": 4, "custom": 6, "customarili": 6, "d": [6, 8], "dai": 6, "damag": 6, "danger": 6, "data": [4, 6, 10], "dataarrai": 7, "dataset": [4, 7], "date": [3, 6], "deactiv": 4, "debian": 4, "decemb": 6, "decid": 6, "decim": [8, 10], "decis": 2, "declin": 6, "deem": [2, 6], "default": [3, 10], "defect": 6, "defens": 6, "defin": [4, 6, 7, 10], "deforest": [4, 7, 8], "degre": [8, 10], "delet": 4, "demonstr": 2, "deni": 6, "denomin": 6, "depend": [4, 7], "depriv": 6, "deriv": 4, "derogatori": 2, "describ": 8, "design": 6, "detail": 6, "determin": [2, 6], "dev": 4, "develop": [3, 4, 6], "devic": 6, "differ": [2, 6, 7], "dim": 7, "dir": 4, "direct": 6, "directli": [4, 6], "directori": [4, 10], "disabl": 2, "discriminatori": 6, "discuss": 3, "disk": 4, "disparag": 2, "displai": [4, 6], "distanc": 8, "distinguish": 6, "distribut": [4, 6], "divers": 2, "divid": 8, "divis": [7, 8], "do": [3, 6, 8, 10], "document": [3, 6], "doe": [4, 6, 10], "domain": 6, "doubt": 6, "down": 4, "download": 4, "dpi": [7, 8], "drive": 4, "dtype": 7, "durabl": 6, "dure": 2, "dwell": 6, "dynam": 6, "e": [4, 6, 10], "each": [4, 6, 10], "earlier": 6, "earth": 8, "earthengin": [4, 7, 8], "easiest": 4, "econom": 2, "edg": 8, "edgecolor": [7, 8], "edit": 2, "educ": 2, "ee": [4, 7, 8], "effect": [6, 8], "effort": 6, "either": [4, 6, 10], "elapsed_tim": 8, "electron": 6, "email": 2, "embodi": 6, "empathi": 2, "employ": 6, "enabl": 6, "end": 6, "end_tim": 8, "endpoint": 4, "enforc": 6, "engin": 8, "ensur": 6, "enter": 6, "entir": 6, "entiti": 6, "enumer": [7, 8], "environ": [2, 4], "equat": 10, "equival": 6, "erron": 6, "essenti": 6, "estim": [8, 10], "ethnic": 2, "even": 6, "event": [2, 6], "ever": 6, "everi": [3, 4, 6], "everyon": [2, 6], "exact": 6, "exampl": [2, 3, 4, 6, 8], "except": [6, 10], "exclud": 6, "exclus": 6, "excus": 6, "execut": [4, 6, 8], "exercis": 6, "exist": 10, "expect": 6, "experi": 2, "explain": 6, "explan": 2, "explicit": 2, "explicitli": 6, "export": 4, "express": [2, 4, 6], "expressli": 6, "extend": 6, "extens": 6, "extent": [4, 6, 8, 10], "extern": 2, "f": 6, "facecolor": [7, 8], "facil": 6, "fail": 6, "failur": 6, "fair": [2, 6], "fairli": 2, "fals": [7, 8, 10], "famili": 6, "faq": 2, "fashion": 6, "favor": 6, "fcc": [4, 10], "fcc_gfc": 7, "fcc_tmf": [7, 8], "fcc_tmf_coarsen": 8, "fcc_tmf_mdg": 7, "featur": [3, 6], "fee": 6, "feedback": 2, "fig": [7, 8], "figur": [7, 8], "file": [4, 6, 10], "final": 6, "find": 6, "first": [1, 6, 7], "fit": 6, "fix": 6, "float": [7, 8], "float64": 7, "flow": 6, "focus": 2, "follow": [2, 3, 4, 6, 7], "forbid": 6, "forc": [4, 6], "forest": [4, 10], "forest_diff": 7, "forest_gfc": 7, "forest_gfc_50": 7, "forest_sum": 7, "forest_tmf": [7, 8], "forest_tmf_ext": 7, "forest_tmf_mdg": 7, "forestatrisk": [7, 8], "fork": 3, "format": 6, "found": 6, "foundat": 6, "free": [2, 3, 6], "from": [2, 3, 4], "fsf": 6, "fulfil": 6, "full": 6, "function": [1, 3, 4, 6, 7], "fundament": 6, "further": 6, "futur": [3, 6], "g": [4, 10], "ga_readonli": 8, "gadm41_per_0": 8, "gadm41_per_buff": 8, "gain": 4, "gb": 4, "gdal": 8, "gdalinfo": 4, "gee": [4, 7], "geefcc": [3, 7, 8], "gender": 2, "geopanda": 8, "geospati": 4, "geotiff": 10, "get": [0, 6, 10], "get_fcc": [7, 8, 9, 10], "getgeotransform": 8, "gfc": [4, 10], "ghislainv": 4, "git": 3, "github": [3, 4], "give": [2, 6], "given": [4, 6], "global": [4, 10], "gnu": [3, 4], "good": 3, "googl": 8, "googleapi": [4, 7, 8], "govern": 6, "gpkg": 8, "gpl": [3, 4, 6], "gracefulli": 2, "grant": 6, "grati": 6, "greatest": 6, "grei": 8, "grid": [8, 10], "grid_gpkg": 8, "grid_imag": 8, "guarante": 6, "gui": 6, "guid": 3, "guidelin": 4, "ha": [3, 4, 6, 8], "had": 6, "handl": [7, 8], "harass": 2, "harm": 2, "have": [2, 8], "healthi": 2, "here": 7, "hereaft": 6, "high": 4, "highvolum": [4, 7, 8], "hold": 10, "holder": 6, "hope": 6, "host": 6, "household": 6, "how": 3, "howev": 6, "html": [2, 6], "http": [2, 4, 6, 7, 8], "hypothet": 6, "i": [2, 3, 4, 6, 7, 8, 10], "idea": 6, "ident": 2, "identifi": 6, "imag": 4, "imageri": 2, "impact": 2, "implement": 6, "impli": 6, "import": [1, 3, 6, 7, 8], "impos": 6, "improv": 3, "imshow": 8, "inabl": 6, "inaccur": 6, "inappropri": 2, "inc": 6, "incid": 2, "incident": 6, "includ": [2, 6], "inclus": [2, 6], "incompat": 6, "incorpor": [3, 6], "indemnif": 6, "independ": 6, "index": 5, "indic": 6, "individu": [2, 4, 6], "industri": 6, "infn": 8, "inform": [2, 6], "infring": 6, "initi": [4, 6, 7, 8], "input": 10, "input_fil": [8, 10], "insert": 2, "insid": 6, "inspir": 2, "instal": 6, "instanc": 2, "instead": 6, "insult": 2, "int64": 7, "int8": 7, "intact": 6, "intend": 6, "intent": 6, "interact": [2, 6], "interchang": 6, "interest": [3, 4, 6, 10], "interf": 6, "interfac": 6, "interv": [4, 10], "intim": 6, "invalid": 6, "investig": 2, "invis": 2, "involv": 2, "irrevoc": 6, "isfil": 7, "island": 7, "iso": [4, 8, 10], "isocod": 7, "issu": 2, "item": 6, "its": 6, "itself": 6, "jan": 7, "januari": 4, "join": 8, "june": 6, "just": [2, 4, 8], "keep": [3, 6], "kei": 6, "kernel": 6, "kind": [2, 6], "km": [8, 10], "know": 6, "knowingli": 6, "knowledg": 6, "label": [7, 8], "ladder": 2, "lage": 10, "landsat": 4, "languag": [2, 6], "larg": [0, 1], "larger": 6, "last": 4, "lat": 10, "later": 6, "lawsuit": 6, "lead": 2, "leader": 2, "learn": [2, 3], "least": 6, "legend": [7, 8], "lesser": 6, "letter": 10, "level": 2, "lgpl": 6, "liabl": 6, "libgdal": 4, "librari": 6, "licens": [3, 4], "license": 6, "licensor": 6, "like": [2, 6], "likewis": 6, "line": [4, 6, 8], "linewidth": 8, "link": [4, 6], "linux": 4, "list": [6, 10], "listedcolormap": [7, 8], "litig": 6, "load": [7, 8], "loc": [7, 8], "local": [4, 6], "logic": 10, "long": [6, 10], "loss": [4, 6, 10], "lower": 8, "m": 4, "machin": 6, "madagascar": 7, "made": [3, 6], "mai": [2, 6], "mail": 6, "maintain": 6, "major": 6, "make": [2, 3, 4, 6, 10], "make_dir": [9, 10], "manag": 4, "mani": 3, "manner": 6, "manual": 4, "manufactur": 6, "map": 4, "march": 6, "mark": 6, "mask": 6, "master": [3, 4], "match": 10, "materi": 6, "matplotlib": [7, 8], "mean": 6, "measur": 6, "media": 2, "medium": 6, "meet": 6, "member": 2, "memori": 10, "menu": 6, "merchant": 6, "mere": 6, "merg": 6, "messag": [3, 10], "met": 6, "method": [2, 6], "meurer": 3, "might": [6, 7], "min_grid": 8, "minu": 10, "minut": 8, "misrepresent": 6, "mistak": 2, "mkdir": 4, "mode": 6, "model": 6, "moder": 2, "modif": 6, "moist": [4, 7, 10], "more": 6, "moreov": 6, "most": 6, "mozilla": 2, "mpatch": [7, 8], "must": [3, 4, 6, 7, 10], "n": 8, "name": [4, 6], "nation": 2, "natur": [2, 6], "ncol": 8, "ncpu": [8, 10], "necessari": 6, "need": [4, 6], "neither": 6, "network": [4, 6], "new": [1, 3, 10], "newdir": 10, "newli": 4, "next": 6, "non": [7, 8, 10], "noncommerci": 6, "none": [8, 10], "nor": 6, "normal": 6, "noth": 6, "notic": 6, "notifi": 6, "notwithstand": 6, "np": 8, "nrow": 8, "number": [6, 8, 10], "numpi": [4, 8], "o": [7, 8], "object": 6, "oblig": [2, 6], "obtain": 4, "occasion": 6, "occur": 6, "offens": 2, "offer": 6, "offici": [2, 6], "offlin": 2, "one": [6, 10], "onli": [4, 6, 8], "onlin": 2, "open": [2, 3, 4, 8], "open_rasterio": 7, "oper": 6, "opinion": 2, "opt_url": [4, 7, 8], "option": 6, "order": 6, "org": [2, 6], "organ": 6, "orient": 2, "origin": 6, "osgeo": 8, "osgeo4w": 4, "other": [2, 4], "otherwis": [2, 6], "our": [4, 6], "out": 6, "out_gfc_50": 7, "out_tmf": [7, 8], "out_tmf_ext": 7, "outfn": 8, "output": [6, 10], "output_fil": [7, 8, 10], "outsid": 6, "overal": 2, "own": 6, "packag": [1, 3, 6], "page": [3, 5], "paper": 6, "paragraph": 6, "parallel": [8, 10], "paramet": 10, "parent": 10, "part": 6, "parti": 6, "particip": 2, "particular": 6, "pass": 6, "password": 6, "patch": [7, 8], "path": [7, 8, 10], "pattern": [2, 6], "payment": 6, "peer": 6, "peopl": 2, "per": [4, 8], "perc": [7, 10], "perform": 6, "period": [2, 4, 8, 10], "perman": 6, "permiss": 2, "permit": 6, "perou": 8, "perpetu": 6, "person": [2, 6], "pertin": 6, "peru": [4, 8], "philosophi": 6, "physic": [2, 6], "piec": 6, "pip": 4, "place": 6, "platecarre": 7, "pleas": [3, 4, 6], "plot": 7, "plt": [7, 8], "plu": 6, "png": [7, 8], "pointer": 6, "polit": 2, "polygon": 4, "portion": 6, "posit": 2, "possess": 6, "possibl": 6, "post": 2, "power": 6, "pr": 3, "practic": 6, "precis": 6, "predecessor": 6, "prefer": 6, "prepar": 8, "present": 6, "preserv": 6, "prevent": 6, "previou": 6, "price": 6, "primarili": 6, "print": [8, 10], "prior": 6, "privaci": 2, "privat": [2, 6], "problem": [4, 6], "procedur": 6, "process": 8, "procur": 6, "produc": [6, 10], "product": [4, 6, 7, 10], "profession": 2, "program": 4, "programm": 6, "prohibit": 6, "project": [3, 4, 7, 8], "promin": 6, "prompt": 4, "promptli": 2, "propag": 6, "properti": 6, "proprietari": 6, "protocol": 6, "prove": 6, "provid": [2, 3, 4, 6, 10], "provis": 6, "provision": 6, "proxi": 6, "public": 2, "publicli": 6, "publish": [2, 6], "pull": 3, "purpos": 6, "pursuant": 6, "push": 3, "pyplot": [7, 8], "python": 3, "python3": 4, "qualifi": 6, "qualiti": 6, "question": 2, "quit": 7, "r": 4, "race": 2, "rais": 10, "raster": 10, "raster_imag": [7, 8], "read": 6, "read_fil": 8, "readabl": 6, "readasarrai": 8, "readi": 6, "readili": 6, "reason": [2, 6], "receipt": 6, "receiv": 6, "recogn": 6, "redistribut": 6, "refer": 6, "refrain": 6, "regard": 6, "regardless": [2, 6], "regener": 6, "region": 7, "regist": 4, "regrowth": 4, "regular": 10, "reinstal": 4, "reinstat": 6, "reject": 2, "relationship": 6, "releas": [1, 3, 4, 6], "relev": 6, "reli": 6, "relicens": 6, "religion": 2, "remain": [6, 8], "remov": [2, 4, 6], "render": 6, "repair": 6, "replac": 4, "report": 2, "repositori": [3, 4], "repres": [2, 6, 8], "request": [2, 3], "resampl": 8, "resample_alg": 8, "resamplealg": 8, "reserv": 7, "resolut": [4, 8], "resolv": 6, "respect": [2, 6], "respond": 4, "respons": 6, "restrict": 6, "result": 6, "retain": 6, "return": 6, "reu": 7, "reunion": 7, "review": [2, 6], "right": 2, "rioxarrai": 7, "risk": 6, "rm": 4, "rom": 6, "round": 8, "row": 10, "royalti": 6, "rule": 6, "run": [4, 6], "safest": 6, "sai": 6, "sake": 6, "sale": 6, "same": 6, "satellit": 4, "satisfi": 6, "savefig": [7, 8], "scale": 8, "scale_factor": 7, "school": 6, "scope": 6, "script": 6, "search": 5, "secondarili": 6, "secur": 2, "see": [2, 6], "sel": 7, "select": [4, 7], "sell": 6, "semiconductor": 6, "separ": 6, "sequenti": 10, "seri": [2, 3], "seriou": 2, "serv": 6, "server": [4, 6], "servic": 6, "set": [2, 4, 7, 10], "setuptool": 4, "sever": [4, 8, 10], "sex": 2, "sexual": 2, "shall": 6, "shape": 8, "share": 6, "shell": 4, "short": 6, "should": [3, 4, 6], "show": 6, "sign": [4, 6], "signific": 6, "silent": 10, "similar": 6, "simultan": 6, "singl": [2, 6], "size": [2, 7, 8, 10], "so": [4, 6, 8], "social": 2, "socio": 2, "softwar": [4, 6], "sold": 6, "sole": 6, "some": 6, "sort": 2, "sourc": [3, 4, 7, 8, 10], "space": [2, 4], "spare": 6, "spatial_ref": 7, "speak": 6, "special": [6, 7], "specif": 6, "specifi": [2, 4, 6, 10], "spirit": 6, "st": 4, "stand": 6, "standard": 6, "start": [0, 3, 4, 6], "start_tim": 8, "state": 6, "statement": [1, 6], "statu": [2, 6], "step": [3, 6], "storag": 6, "studi": 7, "subdivid": 6, "subject": 6, "sublicens": 6, "submit": 3, "subplot": 8, "subprogram": 6, "subroutin": 6, "subsect": 6, "substanti": 6, "sudo": 4, "sue": 6, "suffic": 6, "sum": [7, 8, 10], "sum_raster_band": [1, 8, 9, 10], "supplement": 6, "support": 6, "sure": [4, 6], "surviv": 6, "sustain": [2, 6], "system": [4, 6], "systemat": 6, "take": [2, 6], "tangibl": 6, "technolog": 6, "tell": 6, "term": 2, "termin": 4, "test": [3, 4], "than": 6, "thei": [2, 6, 10], "them": [4, 6, 10], "therefor": 6, "thi": [2, 3, 4, 7, 10], "thing": 6, "third": 6, "those": [2, 6], "though": 6, "threaten": [2, 6], "three": [6, 10], "threshold": [4, 7, 10], "through": [2, 6], "thu": 6, "tif": [7, 8, 10], "tight": [7, 8], "tile": [8, 10], "tile_s": [7, 8, 10], "time": [2, 4, 6, 8, 10], "titl": [7, 8], "tmf": [4, 8, 10], "too": 6, "tool": 6, "toward": 2, "trade": 6, "trademark": 6, "transact": 6, "transfer": 6, "translat": 2, "transmiss": 6, "transpar": [7, 8], "treat": 6, "treati": 6, "tree": [4, 7, 10], "troll": 2, "tropic": [4, 7, 10], "true": 10, "try": 4, "tupl": [7, 8, 10], "tutori": [1, 3], "two": [4, 6, 7], "type": 6, "typic": 6, "u": 2, "ubuntu": 4, "unaccept": [2, 6], "under": [3, 4, 6], "unless": 6, "unlimit": 6, "unmodifi": 6, "unnecessari": 6, "unpack": 6, "unprofession": 2, "unsolicit": 2, "until": 6, "unwelcom": 2, "up": [3, 4], "updat": [4, 6], "upgrad": 4, "us": [2, 4, 7, 8, 10], "user": 4, "v1": 4, "valid": 6, "valu": [7, 8, 10], "vector": [4, 10], "venv": 4, "verbos": [8, 10], "version": [2, 3, 4], "via": [2, 3, 4], "video": 3, "view": 6, "viewpoint": 2, "violat": [2, 6], "virtual": 4, "visibl": [2, 6], "void": 6, "volum": [4, 6], "w": 6, "wa": [2, 6], "wai": [2, 3, 4, 6, 10], "waiv": 6, "waiver": 6, "want": [3, 4, 6, 8], "warp": 8, "we": [2, 6, 7, 8], "welcom": [2, 6], "well": [2, 6, 10], "were": [2, 6, 8], "what": [2, 6], "whatev": 6, "wheel": 4, "when": [2, 6], "where": [6, 7], "whether": [6, 10], "which": [2, 3, 4, 6, 7, 8], "while": [4, 8], "white": [7, 8], "who": [3, 4, 6], "whole": [6, 8], "whom": 6, "whose": 6, "why": [2, 6], "wide": 6, "wiki": 2, "window": [4, 6], "wipo": 6, "wish": 6, "within": [2, 6], "without": [2, 4, 6], "work": 6, "workflow": 3, "worldwid": 6, "would": 6, "write": [3, 6], "written": [2, 3, 6], "www": [2, 6], "x": 7, "xarrai": 7, "xee": 4, "xmax": 10, "xmin": [8, 10], "xre": 8, "y": 7, "year": [4, 6, 7, 8, 10], "ymax": [8, 10], "ymin": 10, "you": [3, 4, 6], "your": [3, 4, 8], "yourself": 6, "yre": 8, "zip": 4}, "titles": ["Articles", "Changelog", "Code of Conduct", "Community guidelines", "geefcc Python package", "Indices and tables", "License", "Get started", "Large countries", "Python API", "<no title>"], "titleterms": {"0": [1, 6], "1": [1, 2, 6], "10": 6, "11": 6, "12": 6, "13": 6, "14": 6, "15": 6, "16": 6, "17": 6, "2": [1, 2, 6], "2020": 7, "3": [2, 6], "4": [2, 6], "5": 6, "6": 6, "7": 6, "8": 6, "9": 6, "AND": 6, "No": 6, "Not": 6, "These": 6, "accept": 6, "access": 4, "addit": 6, "affero": 6, "an": [3, 7], "anti": 6, "api": 9, "appli": 6, "articl": 0, "attribut": 2, "automat": 6, "ban": 2, "band": 8, "basic": 6, "between": 7, "chang": [7, 8], "changelog": 1, "circumvent": 6, "code": [2, 3, 6], "commun": 3, "compar": 7, "condit": 6, "conduct": 2, "contribut": [3, 4], "convei": 6, "copi": 6, "correct": 2, "countri": 8, "cover": [7, 8], "data": [7, 8], "definit": 6, "disclaim": 6, "download": [7, 8], "downstream": 6, "earth": 4, "enforc": 2, "engin": 4, "extent": 7, "fcc": 8, "forest": [7, 8], "form": 6, "freedom": 6, "from": [6, 7, 8], "gadm": 4, "gdal": 4, "gee": 8, "geefcc": [1, 4], "gener": 6, "get": 7, "gfc": 7, "gnu": 6, "googl": 4, "guidelin": [2, 3], "have": 6, "how": 6, "indic": 5, "instal": 4, "interpret": 6, "issu": 3, "larg": 8, "law": 6, "legal": 6, "liabil": 6, "licens": 6, "limit": 6, "map": 8, "modifi": 6, "multiband": 8, "new": 6, "non": 6, "one": 8, "other": 6, "our": 2, "overview": 4, "packag": 4, "patent": 6, "perman": 2, "permiss": 6, "pledg": 2, "plot": 8, "preambl": 6, "prerequisit": 4, "program": 6, "protect": 6, "public": 6, "python": [4, 9], "raster": 8, "recipi": 6, "report": 3, "requir": 6, "respons": 2, "revis": 6, "right": 6, "scope": 2, "section": 6, "sourc": 6, "standard": 2, "start": 7, "surrend": 6, "tabl": 5, "temporari": 2, "term": 6, "termin": 6, "thi": 6, "tmf": 7, "transform": 8, "us": 6, "user": 6, "verbatim": 6, "version": 6, "warn": 2, "warranti": 6, "websit": 4, "your": 6}}) \ No newline at end of file