All,
If I have a set of coordinates, is there a geo-spatial function that can generate the coordinates of a bounding box within specified radius.
For e.g.
Latitude = 47.80
Longitude = -122.00
I would like to generate a bounding box around these coordinates within a 10 mile radius. Does JMP have any inbuilt functions for this ?
I was able to acheive this using "R" , except I would prefer to do this in JMP if at all possible. Also, the function documentation for the function accepts a fraction and not necessarily distance - not clear on what the fraction symbolizes. To eliminate the ambiguity , I prefer to do it in JMP if possible.
Lat <- 47.80
Lon <- -122.00
Rad <- 0.05
BBox <- ggmap::make_bbox(lon = Lon,lat = Lat,f = Rad)
Best
Uday