├── .gitattributes ├── .gitignore ├── LICENSE ├── Plot2Map_TechnicalDocumentation.pdf ├── README.md ├── data ├── Ecoregions2017_biome.tif ├── Ecoregions2017_realm.tif ├── GR_SD.csv ├── GR_Uniques.csv ├── KarnatakaForest.csv ├── PolyTropiAGB.csv ├── PolyTropiSAR.csv ├── SampleCentroid.dbf ├── SampleCentroid.prj ├── SampleCentroid.sbn ├── SampleCentroid.sbx ├── SampleCentroid.shp ├── SampleCentroid.shp.xml ├── SampleCentroid.shx ├── SamplePlots.csv ├── SamplePoly.csv ├── SamplePolyAGB.csv ├── SampleTree.csv ├── SampleTreeNested.csv ├── SampleTreeXY.csv ├── SampleUnformattedPlots.csv ├── SustainableLandscapeBrazil_v04 │ ├── SLB_AGBmaps │ │ └── BON_A01_2018_AGB_100m.tif │ └── SLB_CVmaps │ │ └── BON_A01_2018_CV_100m.tif ├── biome_id.csv ├── eco_zone.dbf ├── eco_zone.prj ├── eco_zone.qpj ├── eco_zone.sbn ├── eco_zone.sbx ├── eco_zone.shp ├── eco_zone.shp.xml ├── eco_zone.shx ├── eco_zone1.cpg ├── eco_zone1.dbf ├── eco_zone1.prj ├── eco_zone1.qpj ├── eco_zone1.shp ├── eco_zone1.shx ├── realm_id.csv ├── rf1.RData ├── samp_gpkg.gpkg ├── samp_shp.cpg ├── samp_shp.dbf ├── samp_shp.prj ├── samp_shp.qmd ├── samp_shp.shp ├── samp_shp.shx ├── se.csv ├── tropiSAR_100m.tif ├── world_region.cpg ├── world_region.dbf ├── world_region.prj ├── world_region.qpj ├── world_region.shp ├── world_region.shp.xml └── world_region.shx ├── debug.log ├── main.R └── scripts ├── Accuracy.R ├── BiomePair.R ├── BlockMeans.R ├── Deforested.R ├── InvDasymetry.R ├── InvDasymetry_NoPar.R ├── MakeBlockPolygon.R ├── MeasurementErr.R ├── Nested.R ├── Plots.R ├── Polygonize.R ├── RawPlots.R ├── RefLidar.R ├── SpatCor.R ├── StrataAGB.R ├── TempEffect.R ├── TempFix.R ├── TempVis.R ├── TileNames.R ├── ToDatabase.R ├── UncertaintyModeling.R └── newInverse.R /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/LICENSE -------------------------------------------------------------------------------- /Plot2Map_TechnicalDocumentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/Plot2Map_TechnicalDocumentation.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/README.md -------------------------------------------------------------------------------- /data/Ecoregions2017_biome.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/Ecoregions2017_biome.tif -------------------------------------------------------------------------------- /data/Ecoregions2017_realm.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/Ecoregions2017_realm.tif -------------------------------------------------------------------------------- /data/GR_SD.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/GR_SD.csv -------------------------------------------------------------------------------- /data/GR_Uniques.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/GR_Uniques.csv -------------------------------------------------------------------------------- /data/KarnatakaForest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/KarnatakaForest.csv -------------------------------------------------------------------------------- /data/PolyTropiAGB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/PolyTropiAGB.csv -------------------------------------------------------------------------------- /data/PolyTropiSAR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/PolyTropiSAR.csv -------------------------------------------------------------------------------- /data/SampleCentroid.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SampleCentroid.dbf -------------------------------------------------------------------------------- /data/SampleCentroid.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SampleCentroid.prj -------------------------------------------------------------------------------- /data/SampleCentroid.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SampleCentroid.sbn -------------------------------------------------------------------------------- /data/SampleCentroid.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SampleCentroid.sbx -------------------------------------------------------------------------------- /data/SampleCentroid.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SampleCentroid.shp -------------------------------------------------------------------------------- /data/SampleCentroid.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SampleCentroid.shp.xml -------------------------------------------------------------------------------- /data/SampleCentroid.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SampleCentroid.shx -------------------------------------------------------------------------------- /data/SamplePlots.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SamplePlots.csv -------------------------------------------------------------------------------- /data/SamplePoly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SamplePoly.csv -------------------------------------------------------------------------------- /data/SamplePolyAGB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SamplePolyAGB.csv -------------------------------------------------------------------------------- /data/SampleTree.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SampleTree.csv -------------------------------------------------------------------------------- /data/SampleTreeNested.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SampleTreeNested.csv -------------------------------------------------------------------------------- /data/SampleTreeXY.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SampleTreeXY.csv -------------------------------------------------------------------------------- /data/SampleUnformattedPlots.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SampleUnformattedPlots.csv -------------------------------------------------------------------------------- /data/SustainableLandscapeBrazil_v04/SLB_AGBmaps/BON_A01_2018_AGB_100m.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SustainableLandscapeBrazil_v04/SLB_AGBmaps/BON_A01_2018_AGB_100m.tif -------------------------------------------------------------------------------- /data/SustainableLandscapeBrazil_v04/SLB_CVmaps/BON_A01_2018_CV_100m.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/SustainableLandscapeBrazil_v04/SLB_CVmaps/BON_A01_2018_CV_100m.tif -------------------------------------------------------------------------------- /data/biome_id.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/biome_id.csv -------------------------------------------------------------------------------- /data/eco_zone.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/eco_zone.dbf -------------------------------------------------------------------------------- /data/eco_zone.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/eco_zone.prj -------------------------------------------------------------------------------- /data/eco_zone.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/eco_zone.qpj -------------------------------------------------------------------------------- /data/eco_zone.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/eco_zone.sbn -------------------------------------------------------------------------------- /data/eco_zone.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/eco_zone.sbx -------------------------------------------------------------------------------- /data/eco_zone.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/eco_zone.shp -------------------------------------------------------------------------------- /data/eco_zone.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/eco_zone.shp.xml -------------------------------------------------------------------------------- /data/eco_zone.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/eco_zone.shx -------------------------------------------------------------------------------- /data/eco_zone1.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/eco_zone1.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/eco_zone1.dbf -------------------------------------------------------------------------------- /data/eco_zone1.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/eco_zone1.prj -------------------------------------------------------------------------------- /data/eco_zone1.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/eco_zone1.qpj -------------------------------------------------------------------------------- /data/eco_zone1.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/eco_zone1.shp -------------------------------------------------------------------------------- /data/eco_zone1.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/eco_zone1.shx -------------------------------------------------------------------------------- /data/realm_id.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/realm_id.csv -------------------------------------------------------------------------------- /data/rf1.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/rf1.RData -------------------------------------------------------------------------------- /data/samp_gpkg.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/samp_gpkg.gpkg -------------------------------------------------------------------------------- /data/samp_shp.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/samp_shp.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/samp_shp.dbf -------------------------------------------------------------------------------- /data/samp_shp.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/samp_shp.prj -------------------------------------------------------------------------------- /data/samp_shp.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/samp_shp.qmd -------------------------------------------------------------------------------- /data/samp_shp.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/samp_shp.shp -------------------------------------------------------------------------------- /data/samp_shp.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/samp_shp.shx -------------------------------------------------------------------------------- /data/se.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/se.csv -------------------------------------------------------------------------------- /data/tropiSAR_100m.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/tropiSAR_100m.tif -------------------------------------------------------------------------------- /data/world_region.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/world_region.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/world_region.dbf -------------------------------------------------------------------------------- /data/world_region.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/world_region.prj -------------------------------------------------------------------------------- /data/world_region.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/world_region.qpj -------------------------------------------------------------------------------- /data/world_region.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/world_region.shp -------------------------------------------------------------------------------- /data/world_region.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/world_region.shp.xml -------------------------------------------------------------------------------- /data/world_region.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/data/world_region.shx -------------------------------------------------------------------------------- /debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/debug.log -------------------------------------------------------------------------------- /main.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/main.R -------------------------------------------------------------------------------- /scripts/Accuracy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/Accuracy.R -------------------------------------------------------------------------------- /scripts/BiomePair.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/BiomePair.R -------------------------------------------------------------------------------- /scripts/BlockMeans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/BlockMeans.R -------------------------------------------------------------------------------- /scripts/Deforested.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/Deforested.R -------------------------------------------------------------------------------- /scripts/InvDasymetry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/InvDasymetry.R -------------------------------------------------------------------------------- /scripts/InvDasymetry_NoPar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/InvDasymetry_NoPar.R -------------------------------------------------------------------------------- /scripts/MakeBlockPolygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/MakeBlockPolygon.R -------------------------------------------------------------------------------- /scripts/MeasurementErr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/MeasurementErr.R -------------------------------------------------------------------------------- /scripts/Nested.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/Nested.R -------------------------------------------------------------------------------- /scripts/Plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/Plots.R -------------------------------------------------------------------------------- /scripts/Polygonize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/Polygonize.R -------------------------------------------------------------------------------- /scripts/RawPlots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/RawPlots.R -------------------------------------------------------------------------------- /scripts/RefLidar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/RefLidar.R -------------------------------------------------------------------------------- /scripts/SpatCor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/SpatCor.R -------------------------------------------------------------------------------- /scripts/StrataAGB.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/StrataAGB.R -------------------------------------------------------------------------------- /scripts/TempEffect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/TempEffect.R -------------------------------------------------------------------------------- /scripts/TempFix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/TempFix.R -------------------------------------------------------------------------------- /scripts/TempVis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/TempVis.R -------------------------------------------------------------------------------- /scripts/TileNames.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/TileNames.R -------------------------------------------------------------------------------- /scripts/ToDatabase.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/ToDatabase.R -------------------------------------------------------------------------------- /scripts/UncertaintyModeling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/UncertaintyModeling.R -------------------------------------------------------------------------------- /scripts/newInverse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnanaraza/Plot2Map/HEAD/scripts/newInverse.R --------------------------------------------------------------------------------