R/spatial_parameters.R

spatial_parameters = function( p=NULL, ... ) {

    if (is.null(p)) p=list()
    p_add = list(...)
    if ( length(p_add) > 0 ) p = c(p, p_add)
    i = which(duplicated(names(p), fromLast=TRUE ))
    if ( length(i) > 0 ) p = p[-i] # give any passed parameters a higher priority, overwriting pre-existing variable

    if ( p$spatial.domain %in% c("snowcrab") ) {
        
        p$internal.crs =  "+proj=utm +ellps=WGS84 +zone=20 +units=km"
        p$dres = 1/60/4  # this is the 15 second grid from CHS  .. default use highest resolution
        p$pres = 1   # 1 km resolution!
        p$lon0=-66.1
        # p$lon1=-57.0
        p$lon1=-56.6
        p$lat0=42.8
        p$lat1=47.4
        p$psignif = 1

    } else if ( p$spatial.domain %in% c("SSE") ) {

        p$internal.crs =  "+proj=utm +ellps=WGS84 +zone=20 +units=km"
        p$dres = 1/60/4  # this is the 15 second grid from CHS  .. default use highest resolution
        p$pres = 1   # 1 km resolution!
        p$lon0=-68
        p$lon1=-56
        p$lat0=41
        p$lat1=48
        p$psignif = 1

    } else if ( p$spatial.domain %in% c("SSE.mpa") ) {

        p$internal.crs =  "+proj=utm +ellps=WGS84 +zone=20 +units=km"
        p$dres = 1/60/4  # this is the 15 second grid from CHS  .. default use highest resolution
        p$pres = 1  # 1 km resolution
        p$lon0=-71
        p$lon1=-48
        p$lat0=37
        p$lat1=48
        p$psignif = 1
        p$boundary = "scotia.fundy.with.buffer"

    } else if ( p$spatial.domain=="canada.east") {

        p$internal.crs = "+proj=lcc +ellps=WGS84  +lon_0=62W +lat_0=45N +lat_1=43N +lat_2=47N +units=km "
        p$dres = 1/60/4  # this is the 15 second grid from CHS  .. ~ 0.25 km
        p$pres = 1  # km
        p$lon0=-72
        p$lon1=-52
        p$lat0=40
        p$lat1=50
        p$psignif = 1

    } else if ( p$spatial.domain %in% c("canada.east.highres")) {

        p$internal.crs = "+proj=lcc +ellps=WGS84  +lon_0=62W +lat_0=45N +lat_1=43N +lat_2=47N +units=km"
        p$dres = 1/60/4  # CHS is 15 arc second ~ 0.25 km
        p$pres = 0.5  # discretize to 0.5 km resolution
        p$lon0=-72
        p$lon1=-52
        p$lat0=40
        p$lat1=50
        p$psignif = 1

    } else if ( p$spatial.domain %in% c("canada.east.superhighres")) {

        p$internal.crs = "+proj=lcc +ellps=WGS84  +lon_0=62W +lat_0=45N +lat_1=43N +lat_2=47N +units=km"
        p$dres = 1/60/4  # CHS is 15 arc second ~ 0.25 km
        p$pres = 0.2  # discretize to 0.2 km resolution
        p$lon0=-72
        p$lon1=-52
        p$lat0=40
        p$lat1=50
        p$psignif = 1

    } else {

        message( "The spatial.domain was not recognised:")
        message( p$spatial.domain )
        message( "Assuming this is manual mode and you are constructing your own list .. you are on your own ...")

     }

    p$nlons = ceiling( diff(range(c(p$lon0,p$lon1)))/p$dres) + 1
    p$nlats = ceiling( diff(range(c(p$lat0,p$lat1)))/p$dres) + 1
    corners = data.frame(lon=c(p$lon0,p$lon1), lat=c(p$lat0,p$lat1))
    corners = lonlat2planar( corners, proj.type=p$internal.crs )
    corners$plon = round( corners$plon, p$psignif)  # this matches the p$pres value of x km resolution
    corners$plat = round( corners$plat, p$psignif)  # this matches the p$pres value of x km resolution
    p$corners=corners

    p$plons = seq(min(p$corners$plon), max(p$corners$plon), by=p$pres)
    p$plats = seq(min(p$corners$plat), max(p$corners$plat), by=p$pres)
    plons = seq(min(p$corners$plon), max(p$corners$plon), by=p$pres)
    plats = seq(min(p$corners$plat), max(p$corners$plat), by=p$pres)
    p$nplons = length(plons)
    p$nplats = length(plats)
    p$origin = c(min(p$corners$plon), min(p$corners$plat ))
    p$gridparams = list( dims=c(p$nplons, p$nplats), origin=p$origin, res=c(p$pres, p$pres) ) # used for fast indexing and merging


  return(p)
}
jae0/stmdat documentation built on May 28, 2019, 11 p.m.