Re: [R] can we visualize water flows with 3d in R?

2016-10-14 Thread Marna Wagley
Thanks for everyone for your suggestions. I am trying to use the techniques that you suggested and I will update you its outcome so that it might be useful to other too. Thanks, On Thu, Oct 13, 2016 at 2:10 PM, Duncan Murdoch wrote: > On 13/10/2016 11:14 AM, Thomas Adams wrote: > >> Duncan, >>

Re: [R] can we visualize water flows with 3d in R?

2016-10-14 Thread Duncan Mackay
rtly determined by your future requirements of which I am not qualified. Regards Duncan From: Marna Wagley [mailto:marna.wag...@gmail.com] Sent: Friday, 14 October 2016 03:13 To: Duncan Mackay Subject: Re: [R] can we visualize water flows with 3d in R? Hi Duncan, Thank you v

Re: [R] can we visualize water flows with 3d in R?

2016-10-14 Thread Hutchinson, David (EC)
it is only supported for Windows-based OS. Dave -Original Message- From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Duncan Murdoch Sent: October 13, 2016 2:11 PM To: Thomas Adams Cc: r-help mailing list; Karline Soetaert Subject: Re: [R] can we visualize water flows with 3d

Re: [R] can we visualize water flows with 3d in R?

2016-10-13 Thread Duncan Murdoch
On 13/10/2016 11:14 AM, Thomas Adams wrote: Duncan, Oh, to be sure, with a fair amount of work, you're probably correct that one could mash up something. Here are some examples: http://www.illinoisfloods.org/documents/2013_IAFSM_Conference/Conference_Presentations/5C-1_HEC-GeoRAS_Part1.pdf <---

Re: [R] can we visualize water flows with 3d in R?

2016-10-13 Thread Thomas Adams
Duncan, Oh, to be sure, with a fair amount of work, you're probably correct that one could mash up something. Here are some examples: http://www.illinoisfloods.org/documents/2013_IAFSM_Conference/Conference_Presentations/5C-1_HEC-GeoRAS_Part1.pdf <--- lots of graphics http://rivergis.com/ also.

Re: [R] can we visualize water flows with 3d in R?

2016-10-13 Thread Karline Soetaert
-help mailing list ; Karline Soetaert Subject: Re: [R] can we visualize water flows with 3d in R? On 13/10/2016 8:35 AM, Thomas Adams wrote: > All, > > Very respectfully, there are no R packages that can do what Marna desires. I would guess that's not literally true, in that the

Re: [R] can we visualize water flows with 3d in R?

2016-10-13 Thread Duncan Murdoch
On 13/10/2016 8:35 AM, Thomas Adams wrote: All, Very respectfully, there are no R packages that can do what Marna desires. I would guess that's not literally true, in that there are several graphics packages that are very flexible. You could well be right that there are none that are desig

Re: [R] can we visualize water flows with 3d in R?

2016-10-13 Thread Thomas Adams
All, Very respectfully, there are no R packages that can do what Marna desires. His/Her data, undoubtably, comes from a 1-D hydraulic model simulation -- where output is generated at channel cross-sections -- representing the sloping water surface elevation of the centerline of flow in a stream or

Re: [R] can we visualize water flows with 3d in R?

2016-10-12 Thread Duncan Mackay
Hi With a small data set 3D is not really an option; reduce the number of dimensions-- 2D conditional library(lattice) xyplot(flow ~ depth|factor(long), dat1, groups = lat, type = c("p","r"), pch = 16) I had started with lat and long reversed doing EDA gave the above ? latitude effect Regards

Re: [R] can we visualize water flows with 3d in R?

2016-10-12 Thread David Winsemius
> On Oct 12, 2016, at 4:28 AM, Duncan Murdoch wrote: > > On 12/10/2016 4:49 AM, Marna Wagley wrote: >> Hi R Users, >> Is it possible to visualize river flow in 3D (latitude, longitude with >> respect to depth)? >> The example of my data looks like. Any suggestions? >> >>> dat1 >>long lat d

Re: [R] can we visualize water flows with 3d in R?

2016-10-12 Thread clark richards
ersion deleted]] > > > > ---------------------- > > Message: 19 > Date: Wed, 12 Oct 2016 20:49:27 +1100 > From: Jim Lemon > To: Marna Wagley > Cc: r-help mailing list > Subject: Re: [R] can we visualize water flows with 3d in R? > Message-ID: >

Re: [R] can we visualize water flows with 3d in R?

2016-10-12 Thread Duncan Murdoch
On 12/10/2016 4:49 AM, Marna Wagley wrote: Hi R Users, Is it possible to visualize river flow in 3D (latitude, longitude with respect to depth)? The example of my data looks like. Any suggestions? dat1 long lat depth flow 1 1015.9 857 1.00 1.50 2 1015.9 857 1.25 1.23 3 1015.9 857 0.50

Re: [R] can we visualize water flows with 3d in R?

2016-10-12 Thread Michal Kubista
Dear Marna, This might come handy: http://www.geo.ut.ee/aasa/LOOM02331/heatmap_in_R.html Best regards, Michal *Michal Kubišta* Retail Analytics Support Europe Central/East Nielsen tel (+420) 242 438 737 www.nielsen.com [image: nielsen] 2016-10-12 10:49 GMT+02:00 Marna

Re: [R] can we visualize water flows with 3d in R?

2016-10-12 Thread Jim Lemon
Hi Marna, Isn't the conventional way to visualize depth as shades of blue? library(plotrix) depth.col<-color.scale(dat1$depth,extremes=c("lightblue",blue")) Then color the lon/lat rectangles with depth.col Jim On Wed, Oct 12, 2016 at 7:49 PM, Marna Wagley wrote: > Hi R Users, > Is it possibl