├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── HydroTool.Rproj ├── LICENSE ├── NAMESPACE ├── R ├── DEM_tools.R ├── HYDROBASINS_Rscript.R ├── SAGA_Tools.R ├── basin_creation.R ├── geonames_db.R ├── misc.R ├── spatial_stations.R ├── station_names.R └── upstReam.R ├── README.md ├── built └── HydroTool_0.2.0.00.tar.gz ├── examples └── delineation_example.R └── man ├── ARCTICTileName.Rd ├── ARCTICTileURL.Rd ├── BreachDepressionsRS.Rd ├── CDEDGetTilePath.Rd ├── CDEMGetTilePath.Rd ├── CGNDBDownloadAPI.Rd ├── CGNDBHydroKML.Rd ├── CGNDBQueryAPI.Rd ├── CalculateNCA.Rd ├── ChannelNetworkRS.Rd ├── ClipGridRS.Rd ├── ClipPolygonRS.Rd ├── CombineWatersheds.Rd ├── CompileDEM.Rd ├── DEMDrainageBasin.Rd ├── DifferenceRS.Rd ├── DownloadAndUnzip.Rd ├── DownloadMultipleDEM.Rd ├── DownloadSingleDEM.Rd ├── ExpandBBox.Rd ├── FillSinksRS.Rd ├── FilterKMLGeometry.Rd ├── FindAllUpstreamSubBasins.Rd ├── FindDownstreamBasins.Rd ├── FindNearestRiverSegment.Rd ├── FindUpstreamSubBasins.Rd ├── FlowAccumulationRS.Rd ├── GetMosaicLimits.Rd ├── GetNTSDEMTilePath.Rd ├── GetProj4.Rd ├── GetTilePathsHS.Rd ├── GraticuleIndices.Rd ├── Grid2PolyRS.Rd ├── GridThresholdRS.Rd ├── GridVolumeRS.Rd ├── HYBASBasinLimits.Rd ├── HYBASBasinLimits_Lake.Rd ├── HydroMosaic.Rd ├── HydroTile.Rd ├── InterpretShapefile.Rd ├── LakeDEM.Rd ├── Lake_Station.Rd ├── LoadHybas.Rd ├── LongitudeLength.Rd ├── MoisaicRS.Rd ├── MosaicAndWarp.Rd ├── NEDcoverage.Rd ├── NearestHYBAS.Rd ├── OverlayDEM.Rd ├── ParseStationName.Rd ├── Point2GridRS.Rd ├── SameCRS.Rd ├── SampleRasterRS.Rd ├── SnapToNearest.Rd ├── SnapToPourPoint.Rd ├── SpatialCSV.Rd ├── SpatialECDE.Rd ├── SpatialHydat.Rd ├── StationNameGeometry.Rd ├── TileIndex.Rd ├── USGSTileName.Rd ├── USGSTileURL.Rd ├── UpslopeAreaRS.Rd ├── UpslopeDEM.Rd ├── UpstreamHYBAS.Rd ├── WhichZone.Rd ├── add_station_to_table.Rd ├── bool_check.Rd ├── check_symmetry.Rd ├── check_transitivity.Rd ├── fill_upstream_gaps.Rd ├── gdal_mosaic.Rd ├── gdal_warp2SAGA.Rd ├── getPourPoint.Rd ├── get_downstream.Rd ├── get_upstream.Rd ├── initialize_matrix_from_stations.Rd ├── most_downstream.Rd ├── outerRing.Rd ├── pad.Rd ├── populate_table_from_delineations.Rd ├── read.pt2.Rd ├── read.sgrd.header.Rd ├── read.tb0.Rd ├── read_coverage_tree.Rd ├── readsimple.Rd ├── set_downstream.Rd ├── set_downstream_recursive.Rd ├── set_relative_position.Rd ├── set_upstream.Rd ├── set_upstream_recursive.Rd ├── subset_table.Rd ├── tree_get_all_upstream.Rd ├── tree_get_upstream.Rd ├── tree_to_matrix.Rd └── upstream_stations_from_delineation.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /HydroTool.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/HydroTool.Rproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/DEM_tools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/R/DEM_tools.R -------------------------------------------------------------------------------- /R/HYDROBASINS_Rscript.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/R/HYDROBASINS_Rscript.R -------------------------------------------------------------------------------- /R/SAGA_Tools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/R/SAGA_Tools.R -------------------------------------------------------------------------------- /R/basin_creation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/R/basin_creation.R -------------------------------------------------------------------------------- /R/geonames_db.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/R/geonames_db.R -------------------------------------------------------------------------------- /R/misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/R/misc.R -------------------------------------------------------------------------------- /R/spatial_stations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/R/spatial_stations.R -------------------------------------------------------------------------------- /R/station_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/R/station_names.R -------------------------------------------------------------------------------- /R/upstReam.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/R/upstReam.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/README.md -------------------------------------------------------------------------------- /built/HydroTool_0.2.0.00.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/built/HydroTool_0.2.0.00.tar.gz -------------------------------------------------------------------------------- /examples/delineation_example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/examples/delineation_example.R -------------------------------------------------------------------------------- /man/ARCTICTileName.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/ARCTICTileName.Rd -------------------------------------------------------------------------------- /man/ARCTICTileURL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/ARCTICTileURL.Rd -------------------------------------------------------------------------------- /man/BreachDepressionsRS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/BreachDepressionsRS.Rd -------------------------------------------------------------------------------- /man/CDEDGetTilePath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/CDEDGetTilePath.Rd -------------------------------------------------------------------------------- /man/CDEMGetTilePath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/CDEMGetTilePath.Rd -------------------------------------------------------------------------------- /man/CGNDBDownloadAPI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/CGNDBDownloadAPI.Rd -------------------------------------------------------------------------------- /man/CGNDBHydroKML.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/CGNDBHydroKML.Rd -------------------------------------------------------------------------------- /man/CGNDBQueryAPI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/CGNDBQueryAPI.Rd -------------------------------------------------------------------------------- /man/CalculateNCA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/CalculateNCA.Rd -------------------------------------------------------------------------------- /man/ChannelNetworkRS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/ChannelNetworkRS.Rd -------------------------------------------------------------------------------- /man/ClipGridRS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/ClipGridRS.Rd -------------------------------------------------------------------------------- /man/ClipPolygonRS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/ClipPolygonRS.Rd -------------------------------------------------------------------------------- /man/CombineWatersheds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/CombineWatersheds.Rd -------------------------------------------------------------------------------- /man/CompileDEM.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/CompileDEM.Rd -------------------------------------------------------------------------------- /man/DEMDrainageBasin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/DEMDrainageBasin.Rd -------------------------------------------------------------------------------- /man/DifferenceRS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/DifferenceRS.Rd -------------------------------------------------------------------------------- /man/DownloadAndUnzip.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/DownloadAndUnzip.Rd -------------------------------------------------------------------------------- /man/DownloadMultipleDEM.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/DownloadMultipleDEM.Rd -------------------------------------------------------------------------------- /man/DownloadSingleDEM.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/DownloadSingleDEM.Rd -------------------------------------------------------------------------------- /man/ExpandBBox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/ExpandBBox.Rd -------------------------------------------------------------------------------- /man/FillSinksRS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/FillSinksRS.Rd -------------------------------------------------------------------------------- /man/FilterKMLGeometry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/FilterKMLGeometry.Rd -------------------------------------------------------------------------------- /man/FindAllUpstreamSubBasins.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/FindAllUpstreamSubBasins.Rd -------------------------------------------------------------------------------- /man/FindDownstreamBasins.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/FindDownstreamBasins.Rd -------------------------------------------------------------------------------- /man/FindNearestRiverSegment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/FindNearestRiverSegment.Rd -------------------------------------------------------------------------------- /man/FindUpstreamSubBasins.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/FindUpstreamSubBasins.Rd -------------------------------------------------------------------------------- /man/FlowAccumulationRS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/FlowAccumulationRS.Rd -------------------------------------------------------------------------------- /man/GetMosaicLimits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/GetMosaicLimits.Rd -------------------------------------------------------------------------------- /man/GetNTSDEMTilePath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/GetNTSDEMTilePath.Rd -------------------------------------------------------------------------------- /man/GetProj4.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/GetProj4.Rd -------------------------------------------------------------------------------- /man/GetTilePathsHS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/GetTilePathsHS.Rd -------------------------------------------------------------------------------- /man/GraticuleIndices.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/GraticuleIndices.Rd -------------------------------------------------------------------------------- /man/Grid2PolyRS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/Grid2PolyRS.Rd -------------------------------------------------------------------------------- /man/GridThresholdRS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/GridThresholdRS.Rd -------------------------------------------------------------------------------- /man/GridVolumeRS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/GridVolumeRS.Rd -------------------------------------------------------------------------------- /man/HYBASBasinLimits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/HYBASBasinLimits.Rd -------------------------------------------------------------------------------- /man/HYBASBasinLimits_Lake.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/HYBASBasinLimits_Lake.Rd -------------------------------------------------------------------------------- /man/HydroMosaic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/HydroMosaic.Rd -------------------------------------------------------------------------------- /man/HydroTile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/HydroTile.Rd -------------------------------------------------------------------------------- /man/InterpretShapefile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/InterpretShapefile.Rd -------------------------------------------------------------------------------- /man/LakeDEM.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/LakeDEM.Rd -------------------------------------------------------------------------------- /man/Lake_Station.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/Lake_Station.Rd -------------------------------------------------------------------------------- /man/LoadHybas.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/LoadHybas.Rd -------------------------------------------------------------------------------- /man/LongitudeLength.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/LongitudeLength.Rd -------------------------------------------------------------------------------- /man/MoisaicRS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/MoisaicRS.Rd -------------------------------------------------------------------------------- /man/MosaicAndWarp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/MosaicAndWarp.Rd -------------------------------------------------------------------------------- /man/NEDcoverage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/NEDcoverage.Rd -------------------------------------------------------------------------------- /man/NearestHYBAS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/NearestHYBAS.Rd -------------------------------------------------------------------------------- /man/OverlayDEM.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/OverlayDEM.Rd -------------------------------------------------------------------------------- /man/ParseStationName.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/ParseStationName.Rd -------------------------------------------------------------------------------- /man/Point2GridRS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/Point2GridRS.Rd -------------------------------------------------------------------------------- /man/SameCRS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/SameCRS.Rd -------------------------------------------------------------------------------- /man/SampleRasterRS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/SampleRasterRS.Rd -------------------------------------------------------------------------------- /man/SnapToNearest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/SnapToNearest.Rd -------------------------------------------------------------------------------- /man/SnapToPourPoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/SnapToPourPoint.Rd -------------------------------------------------------------------------------- /man/SpatialCSV.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/SpatialCSV.Rd -------------------------------------------------------------------------------- /man/SpatialECDE.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/SpatialECDE.Rd -------------------------------------------------------------------------------- /man/SpatialHydat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/SpatialHydat.Rd -------------------------------------------------------------------------------- /man/StationNameGeometry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/StationNameGeometry.Rd -------------------------------------------------------------------------------- /man/TileIndex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/TileIndex.Rd -------------------------------------------------------------------------------- /man/USGSTileName.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/USGSTileName.Rd -------------------------------------------------------------------------------- /man/USGSTileURL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/USGSTileURL.Rd -------------------------------------------------------------------------------- /man/UpslopeAreaRS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/UpslopeAreaRS.Rd -------------------------------------------------------------------------------- /man/UpslopeDEM.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/UpslopeDEM.Rd -------------------------------------------------------------------------------- /man/UpstreamHYBAS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/UpstreamHYBAS.Rd -------------------------------------------------------------------------------- /man/WhichZone.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/WhichZone.Rd -------------------------------------------------------------------------------- /man/add_station_to_table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/add_station_to_table.Rd -------------------------------------------------------------------------------- /man/bool_check.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/bool_check.Rd -------------------------------------------------------------------------------- /man/check_symmetry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/check_symmetry.Rd -------------------------------------------------------------------------------- /man/check_transitivity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/check_transitivity.Rd -------------------------------------------------------------------------------- /man/fill_upstream_gaps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/fill_upstream_gaps.Rd -------------------------------------------------------------------------------- /man/gdal_mosaic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/gdal_mosaic.Rd -------------------------------------------------------------------------------- /man/gdal_warp2SAGA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/gdal_warp2SAGA.Rd -------------------------------------------------------------------------------- /man/getPourPoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/getPourPoint.Rd -------------------------------------------------------------------------------- /man/get_downstream.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/get_downstream.Rd -------------------------------------------------------------------------------- /man/get_upstream.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/get_upstream.Rd -------------------------------------------------------------------------------- /man/initialize_matrix_from_stations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/initialize_matrix_from_stations.Rd -------------------------------------------------------------------------------- /man/most_downstream.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/most_downstream.Rd -------------------------------------------------------------------------------- /man/outerRing.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/outerRing.Rd -------------------------------------------------------------------------------- /man/pad.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/pad.Rd -------------------------------------------------------------------------------- /man/populate_table_from_delineations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/populate_table_from_delineations.Rd -------------------------------------------------------------------------------- /man/read.pt2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/read.pt2.Rd -------------------------------------------------------------------------------- /man/read.sgrd.header.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/read.sgrd.header.Rd -------------------------------------------------------------------------------- /man/read.tb0.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/read.tb0.Rd -------------------------------------------------------------------------------- /man/read_coverage_tree.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/read_coverage_tree.Rd -------------------------------------------------------------------------------- /man/readsimple.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/readsimple.Rd -------------------------------------------------------------------------------- /man/set_downstream.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/set_downstream.Rd -------------------------------------------------------------------------------- /man/set_downstream_recursive.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/set_downstream_recursive.Rd -------------------------------------------------------------------------------- /man/set_relative_position.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/set_relative_position.Rd -------------------------------------------------------------------------------- /man/set_upstream.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/set_upstream.Rd -------------------------------------------------------------------------------- /man/set_upstream_recursive.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/set_upstream_recursive.Rd -------------------------------------------------------------------------------- /man/subset_table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/subset_table.Rd -------------------------------------------------------------------------------- /man/tree_get_all_upstream.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/tree_get_all_upstream.Rd -------------------------------------------------------------------------------- /man/tree_get_upstream.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/tree_get_upstream.Rd -------------------------------------------------------------------------------- /man/tree_to_matrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/tree_to_matrix.Rd -------------------------------------------------------------------------------- /man/upstream_stations_from_delineation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ECCC-MSC/Basin-Delineation/HEAD/man/upstream_stations_from_delineation.Rd --------------------------------------------------------------------------------