Code Monkey home page Code Monkey logo

Comments (2)

lukelbd avatar lukelbd commented on May 16, 2024 1

Ok, this bug + some other bugs should be fixed now. All the demo examples work.

from proplot.

bradyrx avatar bradyrx commented on May 16, 2024

@lukelbd , it also might be worth re-running your demo notebook after major updates. A lot of the code snippets break with the current version of proplot. For example, the snippet I was trying to make a colorbar off of:

import proplot as plot
import numpy as np
plot.nbsetup()
# First make figure
f, axs = plot.subplots(ncols=2, nrows=2, width=7, hspace=0.2, wspace=0.3, top=0.5,
                       bottomcolorbars=True, bwidth=0.2, bottom=0.2,
                       proj='hammer', proj_kw={'lon_0':0},
                       # basemap=False,
                       basemap={(1,3):False, (2,4):True},
                       )
offset = 20
x = plot.arange(-180+offset,180+offset-1,60)
y = plot.arange(-60,60+1,30)
data = np.random.rand(len(x), len(y))
for ax,p,pcolor,basemap in zip(axs,range(4),[1,1,0,0],[0,1,0,1]):
    # adfdas
    m = None
    cmap = ['sunset', 'sunrise'][basemap]
    levels = [0, .3, .5, .7, .9, 1]
    levels = np.linspace(0,1,11)
    if pcolor:
        m = ax.pcolorpoly(x, y, data, levels=levels, cmap=cmap, extend='both', extremes=True)
        ax.scatter(np.random.rand(5,5)*180, 180*np.random.rand(5,5))
    if not pcolor:
        m = ax.contourf(x, y, data, levels=levels, cmap=cmap, extend='both', extremes=False)
        ax.scatter(np.random.rand(5,5)*180, 180*np.random.rand(5,5))
    ax.format(facecolor='gray2', suptitle='Hammer projection in different mapping frameworks', collabels=['Cartopy', 'Basemap'])
    if p<2:
        ax, c = f.bottompanel[p].colorbar(m, clabel='values', ctickminor=False)
    # print(p, ax._sharex, ax._sharey, list(ax._shared_x_axes))
    # if p==2:
        # raise Exception

Breaks with a similar error to above.

from proplot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.