Giter VIP home page Giter VIP logo

🏔️ mountainplot

mountainplot provides an easy to API to plot a chart showing triangles "mountains" representing the fulfilement of goals. It is meant as an enhancement for the famous matplotlib.

For example if you have climbed 5678m (64.2%) of the Mount Everest 🏔️ and you would like to plot your gain on a pretty chart. (and possible other mountains of the seven summits)

Usage

Basically two things are relevant for the usage of mountainplot, namely:

  • Mountain (a named tuple providing parameter for the mountain plot)
  • mountainplot (function taking an axes.Axes matplotlib object and a list of mountains)

Seven Summits Example

Seven Summits

Code for the upper plot.

import matplotlib.pyplot as plt
from mountainplot import Mountain, mountainplot

SEVEN_SUMMITS = [
    Mountain(name='Everest', height=8848 , level=0.642, color='lime', text_color='white'),
    ...
]

plt.style.use('dark_background')
fig, ax = plt.subplots()

ax.axes.get_xaxis().set_visible(False)
mountainplot(ax, SEVEN_SUMMITS)

plt.box(False)
plt.show()

Samuel Kurath's Projects

configvalidator icon configvalidator

ConfigValidator should help to reduce the toil of validating the user input of configuration files.

cppgeotile icon cppgeotile

C++ library to handle tiles and points of different projections, in particular WGS 84 (Latitude, Longitude), Spherical Mercator (Meters), Pixel Pyramid and Tiles (TMS, Google, QuadTree)

dbaas icon dbaas

Database as a Web Service by the Example of PostgreSQL (HSR Seminar FS2019)

dotnet-gitlab-ci icon dotnet-gitlab-ci

Example of build and test stages for a dotnet core project using gitlab-ci and docker.

gitignore icon gitignore

A collection of useful .gitignore templates

png_to_jpg icon png_to_jpg

convert all png images of a folder into jpg images and stores them at a chosen destination

pygltr icon pygltr

Python script to get GitLab Time Reports

pyminijass icon pyminijass

pyMiniJass is a minified version of the Schieber Jass game

pyntscreen icon pyntscreen

pyntsceen is a small tool to take screenshots along your mouse movement

pyschieber icon pyschieber

pyschieber is a playground for popular Swiss Schieber Jass game, it provides an API to the game as well as a CLI

pytictactoe icon pytictactoe

A Tic-Tac-Toe playground for reinforcement learning.

storm icon storm

Storm Queries for the Seminar

tira icon tira

tensorflow image recognition api

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.