├── .Rbuildignore ├── .github └── workflows │ └── rhub.yaml ├── .gitignore ├── .lintr ├── DESCRIPTION ├── ICESat2VegR.Rproj ├── LICENSE.note ├── Makefile ├── NAMESPACE ├── R ├── ANNIndex.R ├── ATL03_ATL08_compute_seg_attributes_dt_segStat.R ├── ATL03_ATL08_photons_attributes_dt_LAS.R ├── ATL03_ATL08_photons_attributes_dt_clipBox.R ├── ATL03_ATL08_photons_attributes_dt_clipGeometry.R ├── ATL03_ATL08_photons_attributes_dt_gridStat.R ├── ATL03_ATL08_photons_attributes_dt_join.R ├── ATL03_ATL08_photons_attributes_dt_polyStat.R ├── ATL03_ATL08_photons_seg_dt_fitground.R ├── ATL03_ATL08_photons_seg_dt_height_normalize.R ├── ATL03_ATL08_seg_cover_dt_compute.R ├── ATL03_ATL08_segment_create.R ├── ATL03_h5_clip.R ├── ATL03_h5_clipBox.R ├── ATL03_h5_clipGeometry.R ├── ATL03_photons_attributes_dt.R ├── ATL03_photons_attributes_dt_LAS.R ├── ATL03_photons_attributes_dt_clipBox.R ├── ATL03_photons_attributes_dt_clipGeometry.R ├── ATL03_photons_dt_classify.R ├── ATL03_photons_plot.R ├── ATL03_read.R ├── ATL03_seg_attributes_dt.R ├── ATL08_h5_clip.R ├── ATL08_h5_clipBox.R ├── ATL08_photons_attributes_dt.R ├── ATL08_photons_attributes_dt_LAS.R ├── ATL08_read.R ├── ATL08_seg_attributes_dt.R ├── ATL08_seg_attributes_dt_LAS.R ├── ATL08_seg_attributes_dt_clipBox.R ├── ATL08_seg_attributes_dt_clipGeometry.R ├── ATL08_seg_attributes_dt_gridStat.R ├── ATL08_seg_attributes_dt_polyStat.R ├── ATL08_seg_attributes_h5_gridStat.R ├── ATLAS_dataDownload.R ├── ATLAS_dataFinder.R ├── ATLAS_dataFinder_cloud.R ├── ATLAS_dataFinder_direct.R ├── ICESat2VegR_configure.R ├── addEEImage.R ├── argParse.R ├── class.icesat2.R ├── class.icesat2.h5_cloud.R ├── class.icesat2.h5_local.R ├── class.icesat2.h5ds_cloud.R ├── class.icesat2.h5ds_local.R ├── class_tools.R ├── clip.R ├── clipTools.R ├── earthaccess.R ├── extract.R ├── gdalBindings.R ├── gee-base-feature.R ├── gee-base-list.R ├── gee-base-number.R ├── gee-base.R ├── gee-search.R ├── lasTools.R ├── lazy_applier.R ├── map_create.R ├── model_fit.R ├── model_tools.R ├── predict.R ├── predict_h5.R ├── rasterize_h5.R ├── rgt_extract.R ├── sample.R ├── stats_model.R ├── to_vect.R ├── utmTools.R ├── var_select.R └── zzz.R ├── README.Rmd ├── README.md ├── cleanup ├── cleanup.ucrt ├── configure ├── configure.ac ├── configure.win ├── inst ├── REFERENCES.bib └── extdata │ ├── atl03_clip.h5 │ ├── atl08_clip.h5 │ ├── clip_geom.cpg │ ├── clip_geom.dbf │ ├── clip_geom.prj │ ├── clip_geom.shp │ ├── clip_geom.shx │ └── example.tif ├── man ├── ANNIndex.Rd ├── ATL03_ATL08_compute_seg_attributes_dt_segStat.Rd ├── ATL03_ATL08_photons_attributes_dt_LAS.Rd ├── ATL03_ATL08_photons_attributes_dt_clipBox.Rd ├── ATL03_ATL08_photons_attributes_dt_clipGeometry.Rd ├── ATL03_ATL08_photons_attributes_dt_gridStat.Rd ├── ATL03_ATL08_photons_attributes_dt_join.Rd ├── ATL03_ATL08_photons_attributes_dt_polyStat.Rd ├── ATL03_ATL08_photons_dt_height_normalize.Rd ├── ATL03_ATL08_photons_seg_dt_fitground.Rd ├── ATL03_ATL08_seg_cover_dt_compute.Rd ├── ATL03_ATL08_segment_create.Rd ├── ATL03_h5_clipBox.Rd ├── ATL03_h5_clipGeometry.Rd ├── ATL03_photons_attributes_dt.Rd ├── ATL03_photons_attributes_dt_LAS.Rd ├── ATL03_photons_attributes_dt_clipBox.Rd ├── ATL03_photons_attributes_dt_clipGeometry.Rd ├── ATL03_photons_plot.Rd ├── ATL03_read.Rd ├── ATL03_seg_attributes_dt.Rd ├── ATL08_attributes_dt_LAS.Rd ├── ATL08_h5_clipBox.Rd ├── ATL08_h5_clipGeometry.Rd ├── ATL08_photons_attributes_dt.Rd ├── ATL08_read-character-method.Rd ├── ATL08_read-icesat2.granule_cloud-method.Rd ├── ATL08_read-icesat2.granules_cloud-method.Rd ├── ATL08_read.Rd ├── ATL08_seg_attributes_dt.Rd ├── ATL08_seg_attributes_dt_LAS.Rd ├── ATL08_seg_attributes_dt_clipBox.Rd ├── ATL08_seg_attributes_dt_clipGeometry.Rd ├── ATL08_seg_attributes_dt_gridStat.Rd ├── ATL08_seg_attributes_dt_polyStat.Rd ├── ATL08_seg_attributes_h5_gridStat.Rd ├── ATLAS_dataDownload.Rd ├── ATLAS_dataFinder.Rd ├── GDALDataType.Rd ├── GDALDataset.Rd ├── GDALOpen.Rd ├── GDALRasterBand.Rd ├── ICESat2.h5_cloud.Rd ├── ICESat2.h5_local.Rd ├── ICESat2.h5ds_cloud.Rd ├── ICESat2.h5ds_local.Rd ├── ICESat2VegR_configure.Rd ├── addEEImage-leaflet-ee.image.Image-method.Rd ├── addEEImage.Rd ├── aspect.Rd ├── atan2.ee.ee_number.Number.Rd ├── build_ee_forest.Rd ├── clip.Rd ├── close.GDALDataset.Rd ├── close.Rd ├── close.icesat2.predict_h5.Rd ├── createDataset.Rd ├── default.Rd ├── earthaccess.Rd ├── earthaccess_login.Rd ├── ee.Rd ├── ee_initialize.Rd ├── ee_number.Rd ├── extract.Rd ├── figures │ ├── agbd_model_mean.png │ ├── atl03_atl08_vect.png │ ├── atl03_seg_vect.png │ ├── atl08_clip_bbox.png │ ├── atl08_clip_geom.png │ ├── atl08_max_h_canopy.png │ ├── atl08_seg_vect.png │ ├── atl08_seg_vect_gee_modelling.png │ ├── classified_photons-1.png │ ├── output_multi.png │ ├── rasterized_atl03_atl08-1.png │ ├── rf_variable_importance-1.png │ ├── segments_histogram-1.png │ ├── unmasked_masked.png │ └── upscalled_gee_map.png ├── formulaCalculate.Rd ├── geomSampling.Rd ├── getTileUrl.Rd ├── get_catalog_id.Rd ├── glcmTexture.Rd ├── gridSampling.Rd ├── icesat2.atl03_atl08_seg_dt-class.Rd ├── icesat2.atl03_dt-class.Rd ├── icesat2.atl03_h5-class.Rd ├── icesat2.atl03_seg_dt-class.Rd ├── icesat2.atl03atl08_dt-class.Rd ├── icesat2.atl08_dt-class.Rd ├── icesat2.atl08_h5-class.Rd ├── icesat2.h5-class.Rd ├── icesat2.predict_h5.Rd ├── icesat2_sampling_method-class.Rd ├── length-ee.imagecollection.ImageCollection-method.Rd ├── map_create.Rd ├── model_fit.Rd ├── plot.Rd ├── predict.ee.Classifier.Rd ├── predict.yai.Rd ├── predict_h5-ANY-icesat2.atl03_seg_dt-character-method.Rd ├── predict_h5-ANY-icesat2.atl08_dt-character-method.Rd ├── predict_h5.Rd ├── prepend_class.Rd ├── randomSampling.Rd ├── rasterSampling.Rd ├── rasterize_h5-icesat2.predict_h5-character-SpatExtent-numeric-method.Rd ├── rasterize_h5.Rd ├── rbindlist2.Rd ├── rgt_extract.Rd ├── sample.Rd ├── search_datasets.Rd ├── seg_gee_ancillary_dt_extract.Rd ├── slope.Rd ├── spacedSampling.Rd ├── stats_model.Rd ├── stratifiedSampling.Rd ├── sub-icesat2.granules_cloud-ANY-ANY-ANY-method.Rd ├── sub-sub-.GDALDataset.Rd ├── sub-sub-.GDALRasterBand.Rd ├── sub-sub-icesat2.granules_cloud-ANY-ANY-method.Rd ├── sub-subset-.GDALRasterBand.Rd ├── to_vect-icesat2.atl03_atl08_seg_dt-method.Rd ├── to_vect-icesat2.atl03_dt-method.Rd ├── to_vect-icesat2.atl03_seg_dt-method.Rd ├── to_vect-icesat2.atl03atl08_dt-method.Rd ├── to_vect-icesat2.atl08_dt-method.Rd └── to_vect.Rd ├── readme ├── ATL08_segments.png ├── Fig_clipping_ATL08.png ├── cloud_height.png ├── cloud_height2.png ├── cover.png ├── cover.pptx ├── grid_h_canopy.png ├── grid_h_canopy2.png ├── h_ph_map.png ├── h_ph_map_all.png ├── hist_ATL08.png ├── profile_metrics.png ├── removed_terrain │ ├── ATL08_terrain_attributes_dt.R │ ├── ATL08_terrain_dt_clipBox.R │ ├── ATL08_terrain_dt_clipGeometry.R │ ├── ATL08_terrain_dt_gridStat.R │ ├── ATL08_terrain_dt_polyStat.R │ ├── ATL08_terrain_dt_segStat.R │ └── ATL08_terrain_h5_gridStat.R └── testing │ ├── 00_get_segments_100m.R │ ├── 00_get_segments_30m.R │ ├── 01var_select.R │ ├── 02gee_modelling.R │ ├── PAI_PAVd_calculations.R │ ├── Untitled.ipynb │ ├── full_modelling.R │ ├── full_testing.ipynb │ ├── gee-rapidfem4d.R │ ├── gee-test.R │ ├── geomSampling.R │ ├── getExampleData.r │ ├── load_atl08_data.R │ ├── old2 │ ├── gee-class.R │ ├── test2.R │ └── test_all.r │ ├── output.gpkg │ ├── output2.gpkg │ ├── plot_animation.R │ ├── quick.R │ ├── rasterSampling.R │ ├── readme_test_all.r │ ├── samplingTest.R │ ├── simple_modelling.R │ ├── temp_test.R │ ├── test-rcpp.R │ ├── test.R │ ├── test.rds │ ├── test2.R │ ├── test_LAS.R │ ├── test_all_final.R │ ├── test_cloud.R │ └── testing_igarss.r ├── src ├── .gitignore ├── ANN.cpp ├── ANN │ ├── ANN.h │ ├── ANNperf.h │ └── ANNx.h ├── ANNIndex.cpp ├── ANNIndex.h ├── COPYRIGHT ├── IndexInterface.cpp ├── IndexInterface.h ├── Makevars.in ├── RcppExports.cpp ├── bd_fix_rad_search.cpp ├── bd_pr_search.cpp ├── bd_search.cpp ├── bd_tree.cpp ├── bd_tree.h ├── brute.cpp ├── gdal_bindings.h ├── kd_dump.cpp ├── kd_fix_rad_search.cpp ├── kd_fix_rad_search.h ├── kd_pr_search.cpp ├── kd_pr_search.h ├── kd_search.cpp ├── kd_search.h ├── kd_split.cpp ├── kd_split.h ├── kd_tree.cpp ├── kd_tree.h ├── kd_util.cpp ├── kd_util.h ├── perf.cpp ├── pr_queue.h ├── pr_queue_k.h ├── random_forest_to_strings.cpp ├── random_forest_to_strings.h ├── rasterizeHDF.cpp ├── registerDynamicSymbol.c ├── sampling.cpp ├── seq_lens_simplify.cpp └── seq_lens_simplify.h ├── tests ├── testthat.R └── testthat │ ├── test-ICESat2.h5_cloud.R │ ├── test-ICESat2.h5_compatibility.R │ ├── test-ICESat2.h5_local.R │ ├── test-ICESat2.h5ds_cloud.R │ ├── test-ICESat2.h5ds_compatibility.R │ ├── test-ICESat2.h5ds_local.R │ ├── test-predict_h5.R │ └── test-rasterize_h5.R └── vignettes ├── .gitignore ├── basic ├── 00setup.Rmd ├── 01close.Rmd └── 02print_mapview.Rmd ├── intermediate ├── 02find_and_download.Rmd ├── 03segment_attributes.Rmd ├── 04clipping_data.Rmd ├── 05joining_photons.Rmd ├── 06differentSizeSegments.Rmd ├── 07predict_h5.Rmd └── 08gee_modelling.Rmd ├── v01_Installation.Rmd ├── v02_FindingDownloading.Rmd ├── v03_WorkingWithSegments.Rmd ├── v04_ClipData.Rmd ├── v05_JoiningPhotons.Rmd ├── v06_DifferentSizeSegments.Rmd ├── v07_PredictH5.Rmd ├── v08_GeeModelling.Rmd └── v08_GeeModelling.Rmd.orig /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/.lintr -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /ICESat2VegR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/ICESat2VegR.Rproj -------------------------------------------------------------------------------- /LICENSE.note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/LICENSE.note -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/ANNIndex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ANNIndex.R -------------------------------------------------------------------------------- /R/ATL03_ATL08_compute_seg_attributes_dt_segStat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_ATL08_compute_seg_attributes_dt_segStat.R -------------------------------------------------------------------------------- /R/ATL03_ATL08_photons_attributes_dt_LAS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_ATL08_photons_attributes_dt_LAS.R -------------------------------------------------------------------------------- /R/ATL03_ATL08_photons_attributes_dt_clipBox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_ATL08_photons_attributes_dt_clipBox.R -------------------------------------------------------------------------------- /R/ATL03_ATL08_photons_attributes_dt_clipGeometry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_ATL08_photons_attributes_dt_clipGeometry.R -------------------------------------------------------------------------------- /R/ATL03_ATL08_photons_attributes_dt_gridStat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_ATL08_photons_attributes_dt_gridStat.R -------------------------------------------------------------------------------- /R/ATL03_ATL08_photons_attributes_dt_join.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_ATL08_photons_attributes_dt_join.R -------------------------------------------------------------------------------- /R/ATL03_ATL08_photons_attributes_dt_polyStat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_ATL08_photons_attributes_dt_polyStat.R -------------------------------------------------------------------------------- /R/ATL03_ATL08_photons_seg_dt_fitground.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_ATL08_photons_seg_dt_fitground.R -------------------------------------------------------------------------------- /R/ATL03_ATL08_photons_seg_dt_height_normalize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_ATL08_photons_seg_dt_height_normalize.R -------------------------------------------------------------------------------- /R/ATL03_ATL08_seg_cover_dt_compute.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_ATL08_seg_cover_dt_compute.R -------------------------------------------------------------------------------- /R/ATL03_ATL08_segment_create.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_ATL08_segment_create.R -------------------------------------------------------------------------------- /R/ATL03_h5_clip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_h5_clip.R -------------------------------------------------------------------------------- /R/ATL03_h5_clipBox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_h5_clipBox.R -------------------------------------------------------------------------------- /R/ATL03_h5_clipGeometry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_h5_clipGeometry.R -------------------------------------------------------------------------------- /R/ATL03_photons_attributes_dt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_photons_attributes_dt.R -------------------------------------------------------------------------------- /R/ATL03_photons_attributes_dt_LAS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_photons_attributes_dt_LAS.R -------------------------------------------------------------------------------- /R/ATL03_photons_attributes_dt_clipBox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_photons_attributes_dt_clipBox.R -------------------------------------------------------------------------------- /R/ATL03_photons_attributes_dt_clipGeometry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_photons_attributes_dt_clipGeometry.R -------------------------------------------------------------------------------- /R/ATL03_photons_dt_classify.R: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /R/ATL03_photons_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_photons_plot.R -------------------------------------------------------------------------------- /R/ATL03_read.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_read.R -------------------------------------------------------------------------------- /R/ATL03_seg_attributes_dt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL03_seg_attributes_dt.R -------------------------------------------------------------------------------- /R/ATL08_h5_clip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL08_h5_clip.R -------------------------------------------------------------------------------- /R/ATL08_h5_clipBox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL08_h5_clipBox.R -------------------------------------------------------------------------------- /R/ATL08_photons_attributes_dt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL08_photons_attributes_dt.R -------------------------------------------------------------------------------- /R/ATL08_photons_attributes_dt_LAS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL08_photons_attributes_dt_LAS.R -------------------------------------------------------------------------------- /R/ATL08_read.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL08_read.R -------------------------------------------------------------------------------- /R/ATL08_seg_attributes_dt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL08_seg_attributes_dt.R -------------------------------------------------------------------------------- /R/ATL08_seg_attributes_dt_LAS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL08_seg_attributes_dt_LAS.R -------------------------------------------------------------------------------- /R/ATL08_seg_attributes_dt_clipBox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL08_seg_attributes_dt_clipBox.R -------------------------------------------------------------------------------- /R/ATL08_seg_attributes_dt_clipGeometry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL08_seg_attributes_dt_clipGeometry.R -------------------------------------------------------------------------------- /R/ATL08_seg_attributes_dt_gridStat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL08_seg_attributes_dt_gridStat.R -------------------------------------------------------------------------------- /R/ATL08_seg_attributes_dt_polyStat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL08_seg_attributes_dt_polyStat.R -------------------------------------------------------------------------------- /R/ATL08_seg_attributes_h5_gridStat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATL08_seg_attributes_h5_gridStat.R -------------------------------------------------------------------------------- /R/ATLAS_dataDownload.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATLAS_dataDownload.R -------------------------------------------------------------------------------- /R/ATLAS_dataFinder.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATLAS_dataFinder.R -------------------------------------------------------------------------------- /R/ATLAS_dataFinder_cloud.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATLAS_dataFinder_cloud.R -------------------------------------------------------------------------------- /R/ATLAS_dataFinder_direct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ATLAS_dataFinder_direct.R -------------------------------------------------------------------------------- /R/ICESat2VegR_configure.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/ICESat2VegR_configure.R -------------------------------------------------------------------------------- /R/addEEImage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/addEEImage.R -------------------------------------------------------------------------------- /R/argParse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/argParse.R -------------------------------------------------------------------------------- /R/class.icesat2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/class.icesat2.R -------------------------------------------------------------------------------- /R/class.icesat2.h5_cloud.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/class.icesat2.h5_cloud.R -------------------------------------------------------------------------------- /R/class.icesat2.h5_local.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/class.icesat2.h5_local.R -------------------------------------------------------------------------------- /R/class.icesat2.h5ds_cloud.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/class.icesat2.h5ds_cloud.R -------------------------------------------------------------------------------- /R/class.icesat2.h5ds_local.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/class.icesat2.h5ds_local.R -------------------------------------------------------------------------------- /R/class_tools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/class_tools.R -------------------------------------------------------------------------------- /R/clip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/clip.R -------------------------------------------------------------------------------- /R/clipTools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/clipTools.R -------------------------------------------------------------------------------- /R/earthaccess.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/earthaccess.R -------------------------------------------------------------------------------- /R/extract.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/extract.R -------------------------------------------------------------------------------- /R/gdalBindings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/gdalBindings.R -------------------------------------------------------------------------------- /R/gee-base-feature.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/gee-base-feature.R -------------------------------------------------------------------------------- /R/gee-base-list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/gee-base-list.R -------------------------------------------------------------------------------- /R/gee-base-number.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/gee-base-number.R -------------------------------------------------------------------------------- /R/gee-base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/gee-base.R -------------------------------------------------------------------------------- /R/gee-search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/gee-search.R -------------------------------------------------------------------------------- /R/lasTools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/lasTools.R -------------------------------------------------------------------------------- /R/lazy_applier.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/lazy_applier.R -------------------------------------------------------------------------------- /R/map_create.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/map_create.R -------------------------------------------------------------------------------- /R/model_fit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/model_fit.R -------------------------------------------------------------------------------- /R/model_tools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/model_tools.R -------------------------------------------------------------------------------- /R/predict.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/predict.R -------------------------------------------------------------------------------- /R/predict_h5.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/predict_h5.R -------------------------------------------------------------------------------- /R/rasterize_h5.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/rasterize_h5.R -------------------------------------------------------------------------------- /R/rgt_extract.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/rgt_extract.R -------------------------------------------------------------------------------- /R/sample.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/sample.R -------------------------------------------------------------------------------- /R/stats_model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/stats_model.R -------------------------------------------------------------------------------- /R/to_vect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/to_vect.R -------------------------------------------------------------------------------- /R/utmTools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/utmTools.R -------------------------------------------------------------------------------- /R/var_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/var_select.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/README.md -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/cleanup -------------------------------------------------------------------------------- /cleanup.ucrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/cleanup.ucrt -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/configure.ac -------------------------------------------------------------------------------- /configure.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/configure.win -------------------------------------------------------------------------------- /inst/REFERENCES.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/inst/REFERENCES.bib -------------------------------------------------------------------------------- /inst/extdata/atl03_clip.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/inst/extdata/atl03_clip.h5 -------------------------------------------------------------------------------- /inst/extdata/atl08_clip.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/inst/extdata/atl08_clip.h5 -------------------------------------------------------------------------------- /inst/extdata/clip_geom.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /inst/extdata/clip_geom.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/inst/extdata/clip_geom.dbf -------------------------------------------------------------------------------- /inst/extdata/clip_geom.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/inst/extdata/clip_geom.prj -------------------------------------------------------------------------------- /inst/extdata/clip_geom.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/inst/extdata/clip_geom.shp -------------------------------------------------------------------------------- /inst/extdata/clip_geom.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/inst/extdata/clip_geom.shx -------------------------------------------------------------------------------- /inst/extdata/example.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/inst/extdata/example.tif -------------------------------------------------------------------------------- /man/ANNIndex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ANNIndex.Rd -------------------------------------------------------------------------------- /man/ATL03_ATL08_compute_seg_attributes_dt_segStat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_ATL08_compute_seg_attributes_dt_segStat.Rd -------------------------------------------------------------------------------- /man/ATL03_ATL08_photons_attributes_dt_LAS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_ATL08_photons_attributes_dt_LAS.Rd -------------------------------------------------------------------------------- /man/ATL03_ATL08_photons_attributes_dt_clipBox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_ATL08_photons_attributes_dt_clipBox.Rd -------------------------------------------------------------------------------- /man/ATL03_ATL08_photons_attributes_dt_clipGeometry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_ATL08_photons_attributes_dt_clipGeometry.Rd -------------------------------------------------------------------------------- /man/ATL03_ATL08_photons_attributes_dt_gridStat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_ATL08_photons_attributes_dt_gridStat.Rd -------------------------------------------------------------------------------- /man/ATL03_ATL08_photons_attributes_dt_join.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_ATL08_photons_attributes_dt_join.Rd -------------------------------------------------------------------------------- /man/ATL03_ATL08_photons_attributes_dt_polyStat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_ATL08_photons_attributes_dt_polyStat.Rd -------------------------------------------------------------------------------- /man/ATL03_ATL08_photons_dt_height_normalize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_ATL08_photons_dt_height_normalize.Rd -------------------------------------------------------------------------------- /man/ATL03_ATL08_photons_seg_dt_fitground.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_ATL08_photons_seg_dt_fitground.Rd -------------------------------------------------------------------------------- /man/ATL03_ATL08_seg_cover_dt_compute.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_ATL08_seg_cover_dt_compute.Rd -------------------------------------------------------------------------------- /man/ATL03_ATL08_segment_create.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_ATL08_segment_create.Rd -------------------------------------------------------------------------------- /man/ATL03_h5_clipBox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_h5_clipBox.Rd -------------------------------------------------------------------------------- /man/ATL03_h5_clipGeometry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_h5_clipGeometry.Rd -------------------------------------------------------------------------------- /man/ATL03_photons_attributes_dt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_photons_attributes_dt.Rd -------------------------------------------------------------------------------- /man/ATL03_photons_attributes_dt_LAS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_photons_attributes_dt_LAS.Rd -------------------------------------------------------------------------------- /man/ATL03_photons_attributes_dt_clipBox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_photons_attributes_dt_clipBox.Rd -------------------------------------------------------------------------------- /man/ATL03_photons_attributes_dt_clipGeometry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_photons_attributes_dt_clipGeometry.Rd -------------------------------------------------------------------------------- /man/ATL03_photons_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_photons_plot.Rd -------------------------------------------------------------------------------- /man/ATL03_read.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_read.Rd -------------------------------------------------------------------------------- /man/ATL03_seg_attributes_dt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL03_seg_attributes_dt.Rd -------------------------------------------------------------------------------- /man/ATL08_attributes_dt_LAS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL08_attributes_dt_LAS.Rd -------------------------------------------------------------------------------- /man/ATL08_h5_clipBox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL08_h5_clipBox.Rd -------------------------------------------------------------------------------- /man/ATL08_h5_clipGeometry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL08_h5_clipGeometry.Rd -------------------------------------------------------------------------------- /man/ATL08_photons_attributes_dt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL08_photons_attributes_dt.Rd -------------------------------------------------------------------------------- /man/ATL08_read-character-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL08_read-character-method.Rd -------------------------------------------------------------------------------- /man/ATL08_read-icesat2.granule_cloud-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL08_read-icesat2.granule_cloud-method.Rd -------------------------------------------------------------------------------- /man/ATL08_read-icesat2.granules_cloud-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL08_read-icesat2.granules_cloud-method.Rd -------------------------------------------------------------------------------- /man/ATL08_read.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL08_read.Rd -------------------------------------------------------------------------------- /man/ATL08_seg_attributes_dt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL08_seg_attributes_dt.Rd -------------------------------------------------------------------------------- /man/ATL08_seg_attributes_dt_LAS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL08_seg_attributes_dt_LAS.Rd -------------------------------------------------------------------------------- /man/ATL08_seg_attributes_dt_clipBox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL08_seg_attributes_dt_clipBox.Rd -------------------------------------------------------------------------------- /man/ATL08_seg_attributes_dt_clipGeometry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL08_seg_attributes_dt_clipGeometry.Rd -------------------------------------------------------------------------------- /man/ATL08_seg_attributes_dt_gridStat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL08_seg_attributes_dt_gridStat.Rd -------------------------------------------------------------------------------- /man/ATL08_seg_attributes_dt_polyStat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL08_seg_attributes_dt_polyStat.Rd -------------------------------------------------------------------------------- /man/ATL08_seg_attributes_h5_gridStat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATL08_seg_attributes_h5_gridStat.Rd -------------------------------------------------------------------------------- /man/ATLAS_dataDownload.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATLAS_dataDownload.Rd -------------------------------------------------------------------------------- /man/ATLAS_dataFinder.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ATLAS_dataFinder.Rd -------------------------------------------------------------------------------- /man/GDALDataType.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/GDALDataType.Rd -------------------------------------------------------------------------------- /man/GDALDataset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/GDALDataset.Rd -------------------------------------------------------------------------------- /man/GDALOpen.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/GDALOpen.Rd -------------------------------------------------------------------------------- /man/GDALRasterBand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/GDALRasterBand.Rd -------------------------------------------------------------------------------- /man/ICESat2.h5_cloud.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ICESat2.h5_cloud.Rd -------------------------------------------------------------------------------- /man/ICESat2.h5_local.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ICESat2.h5_local.Rd -------------------------------------------------------------------------------- /man/ICESat2.h5ds_cloud.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ICESat2.h5ds_cloud.Rd -------------------------------------------------------------------------------- /man/ICESat2.h5ds_local.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ICESat2.h5ds_local.Rd -------------------------------------------------------------------------------- /man/ICESat2VegR_configure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ICESat2VegR_configure.Rd -------------------------------------------------------------------------------- /man/addEEImage-leaflet-ee.image.Image-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/addEEImage-leaflet-ee.image.Image-method.Rd -------------------------------------------------------------------------------- /man/addEEImage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/addEEImage.Rd -------------------------------------------------------------------------------- /man/aspect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/aspect.Rd -------------------------------------------------------------------------------- /man/atan2.ee.ee_number.Number.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/atan2.ee.ee_number.Number.Rd -------------------------------------------------------------------------------- /man/build_ee_forest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/build_ee_forest.Rd -------------------------------------------------------------------------------- /man/clip.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/clip.Rd -------------------------------------------------------------------------------- /man/close.GDALDataset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/close.GDALDataset.Rd -------------------------------------------------------------------------------- /man/close.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/close.Rd -------------------------------------------------------------------------------- /man/close.icesat2.predict_h5.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/close.icesat2.predict_h5.Rd -------------------------------------------------------------------------------- /man/createDataset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/createDataset.Rd -------------------------------------------------------------------------------- /man/default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/default.Rd -------------------------------------------------------------------------------- /man/earthaccess.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/earthaccess.Rd -------------------------------------------------------------------------------- /man/earthaccess_login.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/earthaccess_login.Rd -------------------------------------------------------------------------------- /man/ee.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ee.Rd -------------------------------------------------------------------------------- /man/ee_initialize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ee_initialize.Rd -------------------------------------------------------------------------------- /man/ee_number.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/ee_number.Rd -------------------------------------------------------------------------------- /man/extract.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/extract.Rd -------------------------------------------------------------------------------- /man/figures/agbd_model_mean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/figures/agbd_model_mean.png -------------------------------------------------------------------------------- /man/figures/atl03_atl08_vect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/figures/atl03_atl08_vect.png -------------------------------------------------------------------------------- /man/figures/atl03_seg_vect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/figures/atl03_seg_vect.png -------------------------------------------------------------------------------- /man/figures/atl08_clip_bbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/figures/atl08_clip_bbox.png -------------------------------------------------------------------------------- /man/figures/atl08_clip_geom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/figures/atl08_clip_geom.png -------------------------------------------------------------------------------- /man/figures/atl08_max_h_canopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/figures/atl08_max_h_canopy.png -------------------------------------------------------------------------------- /man/figures/atl08_seg_vect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/figures/atl08_seg_vect.png -------------------------------------------------------------------------------- /man/figures/atl08_seg_vect_gee_modelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/figures/atl08_seg_vect_gee_modelling.png -------------------------------------------------------------------------------- /man/figures/classified_photons-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/figures/classified_photons-1.png -------------------------------------------------------------------------------- /man/figures/output_multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/figures/output_multi.png -------------------------------------------------------------------------------- /man/figures/rasterized_atl03_atl08-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/figures/rasterized_atl03_atl08-1.png -------------------------------------------------------------------------------- /man/figures/rf_variable_importance-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/figures/rf_variable_importance-1.png -------------------------------------------------------------------------------- /man/figures/segments_histogram-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/figures/segments_histogram-1.png -------------------------------------------------------------------------------- /man/figures/unmasked_masked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/figures/unmasked_masked.png -------------------------------------------------------------------------------- /man/figures/upscalled_gee_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/figures/upscalled_gee_map.png -------------------------------------------------------------------------------- /man/formulaCalculate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/formulaCalculate.Rd -------------------------------------------------------------------------------- /man/geomSampling.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/geomSampling.Rd -------------------------------------------------------------------------------- /man/getTileUrl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/getTileUrl.Rd -------------------------------------------------------------------------------- /man/get_catalog_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/get_catalog_id.Rd -------------------------------------------------------------------------------- /man/glcmTexture.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/glcmTexture.Rd -------------------------------------------------------------------------------- /man/gridSampling.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/gridSampling.Rd -------------------------------------------------------------------------------- /man/icesat2.atl03_atl08_seg_dt-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/icesat2.atl03_atl08_seg_dt-class.Rd -------------------------------------------------------------------------------- /man/icesat2.atl03_dt-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/icesat2.atl03_dt-class.Rd -------------------------------------------------------------------------------- /man/icesat2.atl03_h5-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/icesat2.atl03_h5-class.Rd -------------------------------------------------------------------------------- /man/icesat2.atl03_seg_dt-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/icesat2.atl03_seg_dt-class.Rd -------------------------------------------------------------------------------- /man/icesat2.atl03atl08_dt-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/icesat2.atl03atl08_dt-class.Rd -------------------------------------------------------------------------------- /man/icesat2.atl08_dt-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/icesat2.atl08_dt-class.Rd -------------------------------------------------------------------------------- /man/icesat2.atl08_h5-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/icesat2.atl08_h5-class.Rd -------------------------------------------------------------------------------- /man/icesat2.h5-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/icesat2.h5-class.Rd -------------------------------------------------------------------------------- /man/icesat2.predict_h5.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/icesat2.predict_h5.Rd -------------------------------------------------------------------------------- /man/icesat2_sampling_method-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/icesat2_sampling_method-class.Rd -------------------------------------------------------------------------------- /man/length-ee.imagecollection.ImageCollection-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/length-ee.imagecollection.ImageCollection-method.Rd -------------------------------------------------------------------------------- /man/map_create.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/map_create.Rd -------------------------------------------------------------------------------- /man/model_fit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/model_fit.Rd -------------------------------------------------------------------------------- /man/plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/plot.Rd -------------------------------------------------------------------------------- /man/predict.ee.Classifier.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/predict.ee.Classifier.Rd -------------------------------------------------------------------------------- /man/predict.yai.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/predict.yai.Rd -------------------------------------------------------------------------------- /man/predict_h5-ANY-icesat2.atl03_seg_dt-character-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/predict_h5-ANY-icesat2.atl03_seg_dt-character-method.Rd -------------------------------------------------------------------------------- /man/predict_h5-ANY-icesat2.atl08_dt-character-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/predict_h5-ANY-icesat2.atl08_dt-character-method.Rd -------------------------------------------------------------------------------- /man/predict_h5.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/predict_h5.Rd -------------------------------------------------------------------------------- /man/prepend_class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/prepend_class.Rd -------------------------------------------------------------------------------- /man/randomSampling.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/randomSampling.Rd -------------------------------------------------------------------------------- /man/rasterSampling.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/rasterSampling.Rd -------------------------------------------------------------------------------- /man/rasterize_h5-icesat2.predict_h5-character-SpatExtent-numeric-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/rasterize_h5-icesat2.predict_h5-character-SpatExtent-numeric-method.Rd -------------------------------------------------------------------------------- /man/rasterize_h5.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/rasterize_h5.Rd -------------------------------------------------------------------------------- /man/rbindlist2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/rbindlist2.Rd -------------------------------------------------------------------------------- /man/rgt_extract.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/rgt_extract.Rd -------------------------------------------------------------------------------- /man/sample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/sample.Rd -------------------------------------------------------------------------------- /man/search_datasets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/search_datasets.Rd -------------------------------------------------------------------------------- /man/seg_gee_ancillary_dt_extract.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/seg_gee_ancillary_dt_extract.Rd -------------------------------------------------------------------------------- /man/slope.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/slope.Rd -------------------------------------------------------------------------------- /man/spacedSampling.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/spacedSampling.Rd -------------------------------------------------------------------------------- /man/stats_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/stats_model.Rd -------------------------------------------------------------------------------- /man/stratifiedSampling.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/stratifiedSampling.Rd -------------------------------------------------------------------------------- /man/sub-icesat2.granules_cloud-ANY-ANY-ANY-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/sub-icesat2.granules_cloud-ANY-ANY-ANY-method.Rd -------------------------------------------------------------------------------- /man/sub-sub-.GDALDataset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/sub-sub-.GDALDataset.Rd -------------------------------------------------------------------------------- /man/sub-sub-.GDALRasterBand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/sub-sub-.GDALRasterBand.Rd -------------------------------------------------------------------------------- /man/sub-sub-icesat2.granules_cloud-ANY-ANY-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/sub-sub-icesat2.granules_cloud-ANY-ANY-method.Rd -------------------------------------------------------------------------------- /man/sub-subset-.GDALRasterBand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/sub-subset-.GDALRasterBand.Rd -------------------------------------------------------------------------------- /man/to_vect-icesat2.atl03_atl08_seg_dt-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/to_vect-icesat2.atl03_atl08_seg_dt-method.Rd -------------------------------------------------------------------------------- /man/to_vect-icesat2.atl03_dt-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/to_vect-icesat2.atl03_dt-method.Rd -------------------------------------------------------------------------------- /man/to_vect-icesat2.atl03_seg_dt-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/to_vect-icesat2.atl03_seg_dt-method.Rd -------------------------------------------------------------------------------- /man/to_vect-icesat2.atl03atl08_dt-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/to_vect-icesat2.atl03atl08_dt-method.Rd -------------------------------------------------------------------------------- /man/to_vect-icesat2.atl08_dt-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/to_vect-icesat2.atl08_dt-method.Rd -------------------------------------------------------------------------------- /man/to_vect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/man/to_vect.Rd -------------------------------------------------------------------------------- /readme/ATL08_segments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/ATL08_segments.png -------------------------------------------------------------------------------- /readme/Fig_clipping_ATL08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/Fig_clipping_ATL08.png -------------------------------------------------------------------------------- /readme/cloud_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/cloud_height.png -------------------------------------------------------------------------------- /readme/cloud_height2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/cloud_height2.png -------------------------------------------------------------------------------- /readme/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/cover.png -------------------------------------------------------------------------------- /readme/cover.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/cover.pptx -------------------------------------------------------------------------------- /readme/grid_h_canopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/grid_h_canopy.png -------------------------------------------------------------------------------- /readme/grid_h_canopy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/grid_h_canopy2.png -------------------------------------------------------------------------------- /readme/h_ph_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/h_ph_map.png -------------------------------------------------------------------------------- /readme/h_ph_map_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/h_ph_map_all.png -------------------------------------------------------------------------------- /readme/hist_ATL08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/hist_ATL08.png -------------------------------------------------------------------------------- /readme/profile_metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/profile_metrics.png -------------------------------------------------------------------------------- /readme/removed_terrain/ATL08_terrain_attributes_dt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/removed_terrain/ATL08_terrain_attributes_dt.R -------------------------------------------------------------------------------- /readme/removed_terrain/ATL08_terrain_dt_clipBox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/removed_terrain/ATL08_terrain_dt_clipBox.R -------------------------------------------------------------------------------- /readme/removed_terrain/ATL08_terrain_dt_clipGeometry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/removed_terrain/ATL08_terrain_dt_clipGeometry.R -------------------------------------------------------------------------------- /readme/removed_terrain/ATL08_terrain_dt_gridStat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/removed_terrain/ATL08_terrain_dt_gridStat.R -------------------------------------------------------------------------------- /readme/removed_terrain/ATL08_terrain_dt_polyStat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/removed_terrain/ATL08_terrain_dt_polyStat.R -------------------------------------------------------------------------------- /readme/removed_terrain/ATL08_terrain_dt_segStat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/removed_terrain/ATL08_terrain_dt_segStat.R -------------------------------------------------------------------------------- /readme/removed_terrain/ATL08_terrain_h5_gridStat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/removed_terrain/ATL08_terrain_h5_gridStat.R -------------------------------------------------------------------------------- /readme/testing/00_get_segments_100m.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/00_get_segments_100m.R -------------------------------------------------------------------------------- /readme/testing/00_get_segments_30m.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/00_get_segments_30m.R -------------------------------------------------------------------------------- /readme/testing/01var_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/01var_select.R -------------------------------------------------------------------------------- /readme/testing/02gee_modelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/02gee_modelling.R -------------------------------------------------------------------------------- /readme/testing/PAI_PAVd_calculations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/PAI_PAVd_calculations.R -------------------------------------------------------------------------------- /readme/testing/Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/Untitled.ipynb -------------------------------------------------------------------------------- /readme/testing/full_modelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/full_modelling.R -------------------------------------------------------------------------------- /readme/testing/full_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/full_testing.ipynb -------------------------------------------------------------------------------- /readme/testing/gee-rapidfem4d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/gee-rapidfem4d.R -------------------------------------------------------------------------------- /readme/testing/gee-test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/gee-test.R -------------------------------------------------------------------------------- /readme/testing/geomSampling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/geomSampling.R -------------------------------------------------------------------------------- /readme/testing/getExampleData.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/getExampleData.r -------------------------------------------------------------------------------- /readme/testing/load_atl08_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/load_atl08_data.R -------------------------------------------------------------------------------- /readme/testing/old2/gee-class.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/old2/gee-class.R -------------------------------------------------------------------------------- /readme/testing/old2/test2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/old2/test2.R -------------------------------------------------------------------------------- /readme/testing/old2/test_all.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/old2/test_all.r -------------------------------------------------------------------------------- /readme/testing/output.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/output.gpkg -------------------------------------------------------------------------------- /readme/testing/output2.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/output2.gpkg -------------------------------------------------------------------------------- /readme/testing/plot_animation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/plot_animation.R -------------------------------------------------------------------------------- /readme/testing/quick.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/quick.R -------------------------------------------------------------------------------- /readme/testing/rasterSampling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/rasterSampling.R -------------------------------------------------------------------------------- /readme/testing/readme_test_all.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/readme_test_all.r -------------------------------------------------------------------------------- /readme/testing/samplingTest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/samplingTest.R -------------------------------------------------------------------------------- /readme/testing/simple_modelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/simple_modelling.R -------------------------------------------------------------------------------- /readme/testing/temp_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/temp_test.R -------------------------------------------------------------------------------- /readme/testing/test-rcpp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/test-rcpp.R -------------------------------------------------------------------------------- /readme/testing/test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/test.R -------------------------------------------------------------------------------- /readme/testing/test.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/test.rds -------------------------------------------------------------------------------- /readme/testing/test2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/test2.R -------------------------------------------------------------------------------- /readme/testing/test_LAS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/test_LAS.R -------------------------------------------------------------------------------- /readme/testing/test_all_final.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/test_all_final.R -------------------------------------------------------------------------------- /readme/testing/test_cloud.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/test_cloud.R -------------------------------------------------------------------------------- /readme/testing/testing_igarss.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/readme/testing/testing_igarss.r -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/ANN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/ANN.cpp -------------------------------------------------------------------------------- /src/ANN/ANN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/ANN/ANN.h -------------------------------------------------------------------------------- /src/ANN/ANNperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/ANN/ANNperf.h -------------------------------------------------------------------------------- /src/ANN/ANNx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/ANN/ANNx.h -------------------------------------------------------------------------------- /src/ANNIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/ANNIndex.cpp -------------------------------------------------------------------------------- /src/ANNIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/ANNIndex.h -------------------------------------------------------------------------------- /src/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/COPYRIGHT -------------------------------------------------------------------------------- /src/IndexInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/IndexInterface.cpp -------------------------------------------------------------------------------- /src/IndexInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/IndexInterface.h -------------------------------------------------------------------------------- /src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/Makevars.in -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/bd_fix_rad_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/bd_fix_rad_search.cpp -------------------------------------------------------------------------------- /src/bd_pr_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/bd_pr_search.cpp -------------------------------------------------------------------------------- /src/bd_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/bd_search.cpp -------------------------------------------------------------------------------- /src/bd_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/bd_tree.cpp -------------------------------------------------------------------------------- /src/bd_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/bd_tree.h -------------------------------------------------------------------------------- /src/brute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/brute.cpp -------------------------------------------------------------------------------- /src/gdal_bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/gdal_bindings.h -------------------------------------------------------------------------------- /src/kd_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/kd_dump.cpp -------------------------------------------------------------------------------- /src/kd_fix_rad_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/kd_fix_rad_search.cpp -------------------------------------------------------------------------------- /src/kd_fix_rad_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/kd_fix_rad_search.h -------------------------------------------------------------------------------- /src/kd_pr_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/kd_pr_search.cpp -------------------------------------------------------------------------------- /src/kd_pr_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/kd_pr_search.h -------------------------------------------------------------------------------- /src/kd_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/kd_search.cpp -------------------------------------------------------------------------------- /src/kd_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/kd_search.h -------------------------------------------------------------------------------- /src/kd_split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/kd_split.cpp -------------------------------------------------------------------------------- /src/kd_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/kd_split.h -------------------------------------------------------------------------------- /src/kd_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/kd_tree.cpp -------------------------------------------------------------------------------- /src/kd_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/kd_tree.h -------------------------------------------------------------------------------- /src/kd_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/kd_util.cpp -------------------------------------------------------------------------------- /src/kd_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/kd_util.h -------------------------------------------------------------------------------- /src/perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/perf.cpp -------------------------------------------------------------------------------- /src/pr_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/pr_queue.h -------------------------------------------------------------------------------- /src/pr_queue_k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/pr_queue_k.h -------------------------------------------------------------------------------- /src/random_forest_to_strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/random_forest_to_strings.cpp -------------------------------------------------------------------------------- /src/random_forest_to_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/random_forest_to_strings.h -------------------------------------------------------------------------------- /src/rasterizeHDF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/rasterizeHDF.cpp -------------------------------------------------------------------------------- /src/registerDynamicSymbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/registerDynamicSymbol.c -------------------------------------------------------------------------------- /src/sampling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/sampling.cpp -------------------------------------------------------------------------------- /src/seq_lens_simplify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/seq_lens_simplify.cpp -------------------------------------------------------------------------------- /src/seq_lens_simplify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/src/seq_lens_simplify.h -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-ICESat2.h5_cloud.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/tests/testthat/test-ICESat2.h5_cloud.R -------------------------------------------------------------------------------- /tests/testthat/test-ICESat2.h5_compatibility.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/tests/testthat/test-ICESat2.h5_compatibility.R -------------------------------------------------------------------------------- /tests/testthat/test-ICESat2.h5_local.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/tests/testthat/test-ICESat2.h5_local.R -------------------------------------------------------------------------------- /tests/testthat/test-ICESat2.h5ds_cloud.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/tests/testthat/test-ICESat2.h5ds_cloud.R -------------------------------------------------------------------------------- /tests/testthat/test-ICESat2.h5ds_compatibility.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/tests/testthat/test-ICESat2.h5ds_compatibility.R -------------------------------------------------------------------------------- /tests/testthat/test-ICESat2.h5ds_local.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/tests/testthat/test-ICESat2.h5ds_local.R -------------------------------------------------------------------------------- /tests/testthat/test-predict_h5.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/tests/testthat/test-predict_h5.R -------------------------------------------------------------------------------- /tests/testthat/test-rasterize_h5.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/tests/testthat/test-rasterize_h5.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/basic/00setup.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/basic/00setup.Rmd -------------------------------------------------------------------------------- /vignettes/basic/01close.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/basic/01close.Rmd -------------------------------------------------------------------------------- /vignettes/basic/02print_mapview.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/basic/02print_mapview.Rmd -------------------------------------------------------------------------------- /vignettes/intermediate/02find_and_download.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/intermediate/02find_and_download.Rmd -------------------------------------------------------------------------------- /vignettes/intermediate/03segment_attributes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/intermediate/03segment_attributes.Rmd -------------------------------------------------------------------------------- /vignettes/intermediate/04clipping_data.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/intermediate/04clipping_data.Rmd -------------------------------------------------------------------------------- /vignettes/intermediate/05joining_photons.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/intermediate/05joining_photons.Rmd -------------------------------------------------------------------------------- /vignettes/intermediate/06differentSizeSegments.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/intermediate/06differentSizeSegments.Rmd -------------------------------------------------------------------------------- /vignettes/intermediate/07predict_h5.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/intermediate/07predict_h5.Rmd -------------------------------------------------------------------------------- /vignettes/intermediate/08gee_modelling.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/intermediate/08gee_modelling.Rmd -------------------------------------------------------------------------------- /vignettes/v01_Installation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/v01_Installation.Rmd -------------------------------------------------------------------------------- /vignettes/v02_FindingDownloading.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/v02_FindingDownloading.Rmd -------------------------------------------------------------------------------- /vignettes/v03_WorkingWithSegments.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/v03_WorkingWithSegments.Rmd -------------------------------------------------------------------------------- /vignettes/v04_ClipData.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/v04_ClipData.Rmd -------------------------------------------------------------------------------- /vignettes/v05_JoiningPhotons.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/v05_JoiningPhotons.Rmd -------------------------------------------------------------------------------- /vignettes/v06_DifferentSizeSegments.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/v06_DifferentSizeSegments.Rmd -------------------------------------------------------------------------------- /vignettes/v07_PredictH5.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/v07_PredictH5.Rmd -------------------------------------------------------------------------------- /vignettes/v08_GeeModelling.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/v08_GeeModelling.Rmd -------------------------------------------------------------------------------- /vignettes/v08_GeeModelling.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-alberto-silva/ICESat2VegR/HEAD/vignettes/v08_GeeModelling.Rmd.orig --------------------------------------------------------------------------------