TheTS / palmsplusr

palmsplusr: PALMS post-processing
http:/thets.github.io/palmsplusr/
GNU Lesser General Public License v3.0
5 stars 1 forks source link

Make a palms_load_defaults() function #10

Closed TheTS closed 6 years ago

TheTS commented 6 years ago

This function should populate all of the field and domain tables with the basic fields that will probably be used in all cases. This will limit the number of fields that users have to create manually.

palms_load_defaults <- function() {
  palms_add_field(...)
  palms_add_field(...)
  #etc...
}