write.PTS: Function to write a pts-file.

Description Usage Arguments Details Value Author(s) References See Also Examples

View source: R/write.PTS.R

Description

The function writes a pts-file from a PTS object (e.g. created by create.PTS) as input file for a CHILD model run.

Usage

1
write.PTS(filename, PTS)

Arguments

filename

(character scalar) Name of the pts-file to be created, with extention.

PTS

(numeric matrix) PTS-object to data is read from (created by create.PTS).

Details

A PTS-file has a simple header which indicates the number of nodes. These are stored in subsequent rows with their x-y-z-coordinates and boundary flags.

Value

A pts-file with x-y-z-coordinates and boundary flags as input for a CHILD model run. The file comprises the data CHILD uses to create a TIN.

Author(s)

Michael Dietze

References

CSDMS website. http://csdms.colorado.edu/wiki/Model:CHILD.
Tucker, GE. 2010. CHILD Users Guide for version R9.4.1. http://csdms.colorado.edu/mediawiki/images/Child_users_guide.pdf
Tucker, GE., Lancaster, ST., Gasparini, NM., Bras, RL. 2001. The Channel-Hillslope Integrated Landscape Development (CHILD) Model. In Harmon, RS., Doe, W.W. III (eds). Landscape Erosion and Evolution Modeling. Kluwer Academic/Plenum Publishers, pp. 349-388.

See Also

create.PTS, read.TIN

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  # uncomment code to rune examples
  
  # load example data set
  data(DEM500)
  DEM <- DEM500
  
  ## assign PTS extent, just 1000 m smaller than DEM
  extent <- c(DEM@extent@xmin + 1000, 
              DEM@extent@xmax - 1000, 
              DEM@extent@ymin + 1000, 
              DEM@extent@ymax - 1000)
  
  # create and show a hexagonal PTS data set
  PTS <- create.PTS(DEM = DEM, 
                     extent = extent, 
                     spacing = 5000, 
                     type = "hexagonal", 
                     boundary = "open")
  plot(DEM)
  points(PTS[,1], PTS[,2], col = PTS[,4] + 1)
  
#   # write the PTS-file, uncomment to execute
#   # write.PTS("erzgebirge_5000m.pts", PTS = PTS)

coffeemuggler/RCHILD documentation built on Dec. 31, 2020, 10:05 p.m.