python4oceanographers

Turning ripples into waves

R package: oce

Dan Kelley is one of those heroes that creates and maintain software libraries for oceanographers. His language of choice is R, I particularly do not like R syntax. I use it only when I have really have to.

However, R does have some amazing libraries, like Dan's oce package ...

World Bank Data

(Warning this post is written in Brazilian Portuguese and it is heavily laced with the political option of the author!)

Não tenho TV e por isso tem sido difícil fácil sobreviver esse período eleitoral no Brasil. Mesmo assim sou bombardeado com "notícias", afinal a internet está recheada com opiniões, análises ...

Stick Plots with matplotlib

This short post consists of some notes on how to plot a stick plot with matplotlib. The function I used below is mostly based on this message from the mailing list.

The main differences are:

  • Plot customization via **kw.

  • Ensure that the user does not change the angles option to ...

Exploring GPX files

This post is an exercise on how to explore GPX files. Most of what I did in this post learned from this tutorial.

Deep down the GPX file format is just a XML document text. They can be parsed with any XML parser out there, but the gpxpy module makes ...