The matplotlib basemap toolkit is a library for plotting 2D data on maps in Python. It is similar in functionality to the matlab mapping toolbox, the IDL mapping facilities, GrADS, or the Generic Mapping Tools. PyNGL and CDAT are other libraries that provide similar capabilities in Python.

learn more… | top users | synonyms

0
votes
0answers
9 views

cartesian grid projected to geographical coordinates

I have a set of grids in cartesian coordinates (x, y, z) which I would like to project onto geographical coordinates. When I use imshow with matplotlib basemap it seems as though the grid is simply ...
7
votes
2answers
297 views

Python GUI from Java

I am working on a program which takes a user input and generates an output as a map projection plot. The easiest map projection library that I have found is matplotlib-basemap, written in python a ...
1
vote
1answer
97 views

pcolormesh draws not points but lines between data points

I need to plot data of rain summas (from satellite observations) onto a map from grib2 files. Finally I managed to load the data via text files into numpy arrays and tie it with picture coordinates ...
0
votes
0answers
40 views

Coordinate transformation in Basemap do not match proj4 transformation results, plotted array appears shifted

i'm trying to plot an array using basemap and a lambert conformal conic projection (lcc). I have native coordinates x,y in EPSG 31287 system. I setup the coordinates and the area to plot giving the ...
-1
votes
1answer
107 views

to plot points on a country map dynamically

I am working on a taxi dataset. I want to plot them on country map. also, after plotting the trajectories of the taxis, i want the user to choose a point on the map and request him to enter an ...
0
votes
0answers
129 views

Python solution to transforming polar stereographic data to mercator projection

I've data in polar stereographic projection and the lat and lon values as well. But I cannot seem to find a simple way to transform this to a mercator (regular square lat and lon) projection in ...
-2
votes
2answers
169 views

How to make an animated geographic heat map?

I have a list of coordinates and timestamps spread over a 24-hour period. I want to create an animated heat map which will show the map throughout the day. I've tried looking at Basemap's example ...
0
votes
1answer
35 views

python basemap drawgreatcircle has strange behaviour

I am trying to plot a great circle between the mean on a collection of points and a second point. However the great circle path is incorrect when I use the mean, but is right if I use a predefined ...
4
votes
1answer
172 views

Scipy map_coordinates bilinear interpolation compared to interp and IDL interpolate

I'm in the process of rewriting a coworkers IDL code into python and am coming up with some differences that I'm confused about. According to other SO questions and mailing list threads I've found if ...
3
votes
3answers
100 views

why does my colorbar have lines in it?

Does anyone know why my colorbar has what appear to be lines in it? Or rather why is the color transition not smooth? I'm using basemap, obviously, but that shouldn't matter since it's all matplotlib ...
0
votes
0answers
90 views

projection-plot country boundaries

I use this code to plot a projection center over France: from sys import argv from numpy import array,histogram from numpy import * from math import * from matplotlib.pyplot import * from ...
0
votes
0answers
117 views

How to plot gridded data in basemap and find grid points along a specific azimuth

I am trying to map some data. I have a dataset that gives a range of values (frequencies) for each direction. I want to plot them on a grid so each grid point along a particular azimuth is weighted by ...
2
votes
2answers
249 views

Best way to create a 2D Contour Map with Python

I am trying to create a 2D Contour Map in Python that looks like this: In this case, it is a map of chemical concentration for a number of points on the map. But for the sake of simplicity, we ...
0
votes
1answer
203 views

Orthographic projection Python

I use orthographic projection to plot maps. I use this programm: from mpl_toolkits.basemap import Basemap import numpy as np import matplotlib.pyplot as plt import os, sys from sys import ...
0
votes
0answers
83 views

python, basemap, pcolor, unstructured tri=True, missing argument

I am trying to plot model result using python, matplotlib and basemap for unstructured (triangle based) data. There is a possibly to do that using option tri=True, however it does not allow me to ...
1
vote
2answers
327 views

plot trajectories on an map using basemap

import numpy as np data = np.loadtxt('path-tracks.csv',dtype=np.str,delimiter=',',skiprows=1) print data [['19.70' '-95.20' '2/5/04 6:45 AM' '1' '-38' 'CCM'] ['19.70' '-94.70' '2/5/04 7:45 AM' '1' ...
0
votes
0answers
116 views

matplotlib basemap Force North to be Up

I'm plotting elevation data for a segment near the north pole on Mars, using an Azimuthal Equidistant Projection, and this is how it looks, I would prefer it if North was up! This is how I'm doing ...
1
vote
1answer
55 views

Cryptic link error. Where do I start?

I'm trying to build the basemap toolkit, from source, for matplotlib to run on my MacBook Pro under OS X 10.8. The C and C++ compiler are those included with the latest Xcode package. The package ...
1
vote
1answer
51 views

Is it possible to show the 'back side' of the earth with matplotlib basemap using orthographic projection?

Basically I want to make the body of the Earth "transparent" so that an object (a point or a patch, etc) and its antipodal image can be displayed simultaneously on the same orthographic map. Is this ...
9
votes
6answers
867 views

world map without rivers with matplotlib / Basemap?

Would there be a way to plot the borders of the continents with Basemap (or without Basemap, if there is some other way), without those annoying rivers coming along? Especially that piece of Kongo ...
5
votes
1answer
813 views

Why do I get “UserWarning: Module dap was already imported from None …”

I have python-matplotlib and python-mpltoolkits.basemap installed from Ubuntu packages. Installing python-mpltoolkits.basemap also installs python-dap as a dependency. When I import basemap, I get ...
1
vote
2answers
142 views

Plotting sphere grid with matplotlib basemap

I would like to draw a grid covering all the sphere on an orthographic projection. The issue is cells outside the projection are not drawed correctly. This happened with drawgreatcircles as pointed ...
0
votes
2answers
207 views

Python Basemap drawgreatcircle function

Hi I'm trying to map a graph of ip addresses onto a world map using the greatcircle function in Basemap (part of matplot lib) but every time I connect two points that span across the Pacific Ocean ...
1
vote
1answer
95 views

Python's matplotlib/basemap error message

I use py2.7 with the free version of EPD for windows, I have a procedure that uses NetCDF4 to read data and I use basemap 1.0.5 from ...
-2
votes
1answer
55 views

Program runs forever without giving an error when plotting data only on continent [closed]

I was trying to plot data only on continent. I asked a question about this before and I've got the answer here. Now when I implemented it in the code, the program will run without giving an error. ...
3
votes
2answers
148 views

Plot only on continent in matplotlib

I am drawing a map using basemap from matplotlib. The data are spreaded all over the world, but I just want to retain all the data on the continent and drop those on the ocean. Is there a way that I ...
6
votes
1answer
367 views

Eliminate white edges in Matplotlib/Basemap pcolor plot

I am plotting data on a map using this code: import numpy as np import matplotlib as mpl import matplotlib.pyplot as plt import matplotlib.cm as cm from mpl_toolkits.basemap import Basemap from ...
1
vote
2answers
331 views

Fill countries in python basemap

Hi I am trying to plot a map using pythons basemap with some countries filled in a certain colour. Is there a quick and easy solution out there??
1
vote
2answers
156 views

Plot multiple lines in python

I have begun to learn about python / matplolib / basemap and really need some help. My data is in an Excel workbook with the following structure: Event Number Date Lat LOn ...
2
votes
1answer
232 views

Create simple Basemap that corresponds to a specific region on the Earth

I'm am trying to familarize myself with matplotlib and Basemap. As a start, I'm trying to generate an image of greenland that matches a specific grid for which I have data. The gruesome details ...
1
vote
0answers
62 views

File format of Basemap data files

I would like to know the file formats of the following files data files in Matplotlib Basemap toolkit countries*.dat countriesmeta*.dat gshhs*.dat rivers*.dat riversmeta*.dat ...
1
vote
1answer
184 views

Automatically center matplotlib basemap onto data

I would like a solution to automatically center a basemap plot on my coordinate data. I've got things to automatically center, but the resulting area is much larger than the area actually used by my ...
1
vote
1answer
63 views

How to use BaseMap with chaco plots

I had developed scatter and lasso selection plots with Chaco. Now, I need to embed a BaseMap [with few markers on a map] onto the plot area side by side. I created a BaseMap and tried to add to the ...
0
votes
1answer
369 views

matplotlib basemap colorbar text position

I have a problem about the text position of the colorbar. I'm using matplotlib Basemap to make some plots, and I the use colorbar() function. Now I need to put my colorbar on the left side of my ...
2
votes
1answer
268 views

Matplotlib basemaps draws two parallels on stereographic projection

This is my first question on Stack Overflow, so my apologies if I've overlooked anything. I'm making a plot of cruise positions, and I am getting a double-parallel happening at 60 degrees North, with ...
2
votes
0answers
77 views

BufferRegion is cleared by a call to clf()

I have an application in which I'd like to draw counties from a shapefile using Basemap. Drawing the county polygons is the bottleneck in the rendering, and since I'll be drawing the same region of ...
7
votes
2answers
1k views

Draw polygons more efficiently with matplotlib

I have a dateset of around 60000 shapes (with lat/lon coordinates of each corner) which I want to draw on a map using matplotlib and basemap. This is the way I am doing it at the moment: for ii in ...
1
vote
1answer
139 views

Draw a network/graph on world map using basemap (python)

I have a list of hundreds of connected countries: ... Albania ; Austria Albania ; Azerbaijan ... This gives a graph. I would like to draw lines (straight or curved) between the connected countries ...
0
votes
1answer
410 views

matplotlib mouseclick event in pie chart

Is there a way in matplotlib and Python to return the value/label clicked in a pie chart. For example if user clicks on sliver A of pie chart, return value A. If user clicks on sliver B of B pie ...
1
vote
2answers
484 views

OSError geos_c could not be found when Installing Shapely

I'm a newbie to making/plotting on maps with python, been trying to follow this blogpost to generate a world map ...
0
votes
1answer
685 views

Python and Matplotlib and Annotations with Mouse Hover

I am currently employing this code to have pop up annotatations on a map when i click on a point in a Basemap Matplotlib Plot. dcc=DataCursor(self.figure.gca()) ...
0
votes
2answers
573 views

Preparing data to plot contours in Matplotlib's Basemap

I'm having a hard time with plotting a basemap with Matplotlib and I'm fairly new to it so I was hoping for some help. I have data of the format: [ (lat1, lon1, data1), (lat2, lon2, data2), ...
0
votes
2answers
120 views

mlab.griddata bug?

I'm using mlab.griddata to interpolate some data when I encountered a strange and what looks like floating point precision bug. This is calling sequence: nvals = ...
2
votes
1answer
333 views

Using pcolormesh for plotting an orbit data

I am trying to map a dataset with associated latitude and longitude. The details of the data I am using are given below: Variable Type Data/Info ------------------------------- lat ndarray ...
1
vote
1answer
202 views

python and Basemap and remove Mexico/Canada from view

I am using Basemap within Matplotlib to draw a map of the United States. However, I cannot seem to be able to remove Mexico or Canada to just have the US shown. I need to draw the states as well. ...
2
votes
1answer
653 views

How to draw rectangles on a Basemap

I'm looking for a way to plot filled rectangles on a Basemap. I could easily draw the rectangle's edges using the drawgreatcircle method, but I cannot find a way to actually fill these rectangles ...
2
votes
2answers
337 views

python and matplotlib and changing marker color

I am plotting things using matplotlib and Basemap (within a wxpython gui). Currently, my plot code look something like this: self.map = Basemap(llcrnrlon=lon_L, llcrnrlat=lat_D, urcrnrlon=lon_R, ...
0
votes
1answer
65 views

Removing just one layer in pyplot

I'm using matplotlibs basemap to plot some wind barbs on top of a pcolor over multiple days using a loop. I can easily change the pcolor by using set_data() but now I'm not sure how to replace the ...
0
votes
1answer
987 views

Matplotlib: draw a selection area in the shape of a rectangle with the mouse

I want to be able to draw a selection area on a matplotlib plot with a mouse event. I didn't find information on how to do it with python. In the end, I want to be able to draw a region of interest ...
0
votes
1answer
316 views

wxpython and updating matplotlib figure in panel

I am using a wx gui with basemap and matplotlib. I have two panels (left/right). I plot a map of the US in my right panel. This occurs no problem with the code below: # Setup the Map for Display ...

1 2