I would like to display a satellite image (preferably using python, but other solutions are welcome). It consists in a floating-point parameter P, with dimension NxM, and each pixel is geolocated by the fields latitude and longitude (each of size NxM). So I would like to:

(1) create an image of parameter P with an associated color scale. The image should not be resampled, so it should have dimension NxM

(2) display coastlines over this image

Currently, I can do (1) using PIL. I can also use the basemap library to display an image and the coastlines, but I don't know how to do it without reprojection, by staying in the image native projection with size NxM.

Edit: the parameter P does not contain any information about the coastline. Only the location (lat, lon) of the pixels should be used to overlay the coastline. The coordinates for the coastline can be obtained from gshhs for example. gshhs is actually used in the basemap library.

link|improve this question
feedback

1 Answer

If all you're trying to do is enhance the boundaries between land and water, it might be good to use a high-pass filter.

For instance, start out with Lena: alt text

and apply a highpass filter: alt text

then overlay the highpass on top of the original: alt text

(more details and examples can be found here).

You can find filters in scipy here.

link|improve this answer
This is not what i'm trying to do. I'll clarify my question... – François Jan 8 '11 at 12:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.