Contour map gridded data visualizations using bokeh

Hi there,

I found one of your blog posts at http://webcache.googleusercontent.com/search?q=cache:R4ZzSKdHx9AJ:continuum.io/blog/bokeh-0.4.1+&cd=2&hl=en&ct=clnk&gl=us after searching for contour map visualizations using bokeh.

I have a list of NETCDF climatology files that I am attempting to plot and want to incorporate a time scrolling slider bar. Where can I find the example code for the contour plot example that used to be hosted on github?

I plan to use Xray and Bokeh to create this, but I don’t see the example code located anywhere. Was it removed?

If you have any info or tips that could help me out here that would be appreciated.

Thanks

aj

Any update on this? Do you guys have other working contour plot examples like what use to be seen at: https://github.com/bokeh/bokeh/blob/demo/examples/plotting/server/remote_ocean_volume.py ?

···

On Tuesday, July 21, 2015 at 3:04:27 PM UTC-7, Andrew Joros wrote:

Hi there,

I found one of your blog posts at http://webcache.googleusercontent.com/search?q=cache:R4ZzSKdHx9AJ:continuum.io/blog/bokeh-0.4.1+&cd=2&hl=en&ct=clnk&gl=us after searching for contour map visualizations using bokeh.

I have a list of NETCDF climatology files that I am attempting to plot and want to incorporate a time scrolling slider bar. Where can I find the example code for the contour plot example that used to be hosted on github?

I plan to use Xray and Bokeh to create this, but I don’t see the example code located anywhere. Was it removed?

If you have any info or tips that could help me out here that would be appreciated.

Thanks

aj

I didn’t know there used to be contour plots.

You can use matplotlib’s contour routines to get a collection of path objects, which can be rendered as lines. I’m working on creating filled contours by treating them as a set of closed polygons. This requires extracting paths from matplotlib’s contourf function and connecting interior holes to exterior domains. I’m using scipy’s delaunay and networkX’s graph to handle the connectivity.

···

On Wed, Jul 29, 2015 at 3:39 PM, Andrew Joros [email protected] wrote:

Any update on this? Do you guys have other working contour plot examples like what use to be seen at: https://github.com/bokeh/bokeh/blob/demo/examples/plotting/server/remote_ocean_volume.py ?

On Tuesday, July 21, 2015 at 3:04:27 PM UTC-7, Andrew Joros wrote:

Hi there,

I found one of your blog posts at http://webcache.googleusercontent.com/search?q=cache:R4ZzSKdHx9AJ:continuum.io/blog/bokeh-0.4.1+&cd=2&hl=en&ct=clnk&gl=us after searching for contour map visualizations using bokeh.

I have a list of NETCDF climatology files that I am attempting to plot and want to incorporate a time scrolling slider bar. Where can I find the example code for the contour plot example that used to be hosted on github?

I plan to use Xray and Bokeh to create this, but I don’t see the example code located anywhere. Was it removed?

If you have any info or tips that could help me out here that would be appreciated.

Thanks

aj

–

You received this message because you are subscribed to the Google Groups “Bokeh Discussion - Public” group.

To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].

To post to this group, send email to [email protected].

To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/bokeh/5410e92d-33e5-46ac-98ae-545c1785d14a%40continuum.io.

For more options, visit https://groups.google.com/a/continuum.io/d/optout.

Yes there was code examples of this Continuum talk on youtube but I can’t find it anymore. https://www.youtube.com/watch?v=B-P3yA-P-sY
Hoping for some help in searching around.

···

On Wednesday, July 29, 2015 at 3:06:32 PM UTC-7, Asher Pembroke wrote:

I didn’t know there used to be contour plots.

You can use matplotlib’s contour routines to get a collection of path objects, which can be rendered as lines. I’m working on creating filled contours by treating them as a set of closed polygons. This requires extracting paths from matplotlib’s contourf function and connecting interior holes to exterior domains. I’m using scipy’s delaunay and networkX’s graph to handle the connectivity.

On Wed, Jul 29, 2015 at 3:39 PM, Andrew Joros [email protected] wrote:

Any update on this? Do you guys have other working contour plot examples like what use to be seen at: https://github.com/bokeh/bokeh/blob/demo/examples/plotting/server/remote_ocean_volume.py ?

On Tuesday, July 21, 2015 at 3:04:27 PM UTC-7, Andrew Joros wrote:

Hi there,

I found one of your blog posts at http://webcache.googleusercontent.com/search?q=cache:R4ZzSKdHx9AJ:continuum.io/blog/bokeh-0.4.1+&cd=2&hl=en&ct=clnk&gl=us after searching for contour map visualizations using bokeh.

I have a list of NETCDF climatology files that I am attempting to plot and want to incorporate a time scrolling slider bar. Where can I find the example code for the contour plot example that used to be hosted on github?

I plan to use Xray and Bokeh to create this, but I don’t see the example code located anywhere. Was it removed?

If you have any info or tips that could help me out here that would be appreciated.

Thanks

aj

–

You received this message because you are subscribed to the Google Groups “Bokeh Discussion - Public” group.

To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].

To post to this group, send email to [email protected].

To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/bokeh/5410e92d-33e5-46ac-98ae-545c1785d14a%40continuum.io.

For more options, visit https://groups.google.com/a/continuum.io/d/optout.

I just came across these examples from Continuum from Christine Doig

She has links to the notebooks on

as well in the slides.

I am also trying to grid oceanographic data and if i get something working will post it here.

Good Luck,

Corinne Bassin

···

On Wednesday, July 29, 2015 at 5:45:11 PM UTC-7, Andrew Joros wrote:

Yes there was code examples of this Continuum talk on youtube but I can’t find it anymore. https://www.youtube.com/watch?v=B-P3yA-P-sY
Hoping for some help in searching around.

On Wednesday, July 29, 2015 at 3:06:32 PM UTC-7, Asher Pembroke wrote:

I didn’t know there used to be contour plots.

You can use matplotlib’s contour routines to get a collection of path objects, which can be rendered as lines. I’m working on creating filled contours by treating them as a set of closed polygons. This requires extracting paths from matplotlib’s contourf function and connecting interior holes to exterior domains. I’m using scipy’s delaunay and networkX’s graph to handle the connectivity.

On Wed, Jul 29, 2015 at 3:39 PM, Andrew Joros [email protected] wrote:

Any update on this? Do you guys have other working contour plot examples like what use to be seen at: https://github.com/bokeh/bokeh/blob/demo/examples/plotting/server/remote_ocean_volume.py ?

On Tuesday, July 21, 2015 at 3:04:27 PM UTC-7, Andrew Joros wrote:

Hi there,

I found one of your blog posts at http://webcache.googleusercontent.com/search?q=cache:R4ZzSKdHx9AJ:continuum.io/blog/bokeh-0.4.1+&cd=2&hl=en&ct=clnk&gl=us after searching for contour map visualizations using bokeh.

I have a list of NETCDF climatology files that I am attempting to plot and want to incorporate a time scrolling slider bar. Where can I find the example code for the contour plot example that used to be hosted on github?

I plan to use Xray and Bokeh to create this, but I don’t see the example code located anywhere. Was it removed?

If you have any info or tips that could help me out here that would be appreciated.

Thanks

aj

–

You received this message because you are subscribed to the Google Groups “Bokeh Discussion - Public” group.

To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].

To post to this group, send email to [email protected].

To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/bokeh/5410e92d-33e5-46ac-98ae-545c1785d14a%40continuum.io.

For more options, visit https://groups.google.com/a/continuum.io/d/optout.

Awesome thanks Corrine.

···

On Monday, August 3, 2015 at 11:02:40 AM UTC-7, Corinne Bassin wrote:

I just came across these examples from Continuum from Christine Doig
http://chdoig.github.io/scipy2015-blaze-bokeh/#/

She has links to the notebooks on

https://github.com/chdoig/scipy2015-blaze-bokeh

as well in the slides.

I am also trying to grid oceanographic data and if i get something working will post it here.

Good Luck,

Corinne Bassin

On Wednesday, July 29, 2015 at 5:45:11 PM UTC-7, Andrew Joros wrote:

Yes there was code examples of this Continuum talk on youtube but I can’t find it anymore. https://www.youtube.com/watch?v=B-P3yA-P-sY
Hoping for some help in searching around.

On Wednesday, July 29, 2015 at 3:06:32 PM UTC-7, Asher Pembroke wrote:

I didn’t know there used to be contour plots.

You can use matplotlib’s contour routines to get a collection of path objects, which can be rendered as lines. I’m working on creating filled contours by treating them as a set of closed polygons. This requires extracting paths from matplotlib’s contourf function and connecting interior holes to exterior domains. I’m using scipy’s delaunay and networkX’s graph to handle the connectivity.

On Wed, Jul 29, 2015 at 3:39 PM, Andrew Joros [email protected] wrote:

Any update on this? Do you guys have other working contour plot examples like what use to be seen at: https://github.com/bokeh/bokeh/blob/demo/examples/plotting/server/remote_ocean_volume.py ?

On Tuesday, July 21, 2015 at 3:04:27 PM UTC-7, Andrew Joros wrote:

Hi there,

I found one of your blog posts at http://webcache.googleusercontent.com/search?q=cache:R4ZzSKdHx9AJ:continuum.io/blog/bokeh-0.4.1+&cd=2&hl=en&ct=clnk&gl=us after searching for contour map visualizations using bokeh.

I have a list of NETCDF climatology files that I am attempting to plot and want to incorporate a time scrolling slider bar. Where can I find the example code for the contour plot example that used to be hosted on github?

I plan to use Xray and Bokeh to create this, but I don’t see the example code located anywhere. Was it removed?

If you have any info or tips that could help me out here that would be appreciated.

Thanks

aj

–

You received this message because you are subscribed to the Google Groups “Bokeh Discussion - Public” group.

To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].

To post to this group, send email to [email protected].

To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/bokeh/5410e92d-33e5-46ac-98ae-545c1785d14a%40continuum.io.

For more options, visit https://groups.google.com/a/continuum.io/d/optout.

Is there any update on the contour plots?

Work on contour plots has started, see Add a Figure.contour method · Issue #8360 · bokeh/bokeh · GitHub

1 Like

This is really great news. Since I love and use the matplotlib contour-plots regularly.