Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hi @galuardi can you please add a text file stating how to use this function or code. #3

Open
galuardi opened this issue Sep 10, 2020 · 1 comment

Comments

@galuardi
Copy link
Owner

hi @galuardi can you please add a text file stating how to use this function or code.
I am working on a project related to front detection. And i will have to use my sst plots for front detection. so how to input my images to this function.

Originally posted by @shouvik-iitbbs in #1 (comment)

@galuardi
Copy link
Owner Author

galuardi commented Sep 10, 2020

I don't know which function you mean. there is an example in the package documentation

library(boaR)
# some good color ramps for gradient mapping
chlgradcol =   colorRampPalette(c("#00007F", "blue", "#007FFF", "cyan","#7FFF7F", "yellow", "#FF7F00", "red", "#7F0000"), interpolate = 'spline', bias = 2.0)
sstgradcol =   colorRampPalette(c("#00007F", "blue", "#007FFF", "cyan","#7FFF7F", "yellow", "#FF7F00", "red", "#7F0000"), interpolate = 'spline')
# load some satelite data originally downloaded here (as a netcdf file):  http://coastwatch.pfeg.noaa.gov/erddap/griddap/index.html
data(satdata)
# Blended SST image
x11()
tfront = boa(sst$lon, sst$lat, sst$DATA, direction = T)
par(mfrow=c(1,2))
plot(tfront[[1]])
title('Direction')
plot(tfront[[2]], col = sstgradcol(100))
title('Gradient Magnitude')
# SeaWifs chlorophyll image
x11()
cfront = boa(swchl$swlon, swchl$swlat, log(swchl$chl), direction = T)  # be sure to take the log of the chl 
par(mfrow=c(1,2))
plot(cfront[[1]])
title('Direction')
plot(cfront[[2]], col = chlgradcol(100))
title('Gradient Magnitude (Ratio)')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant