add examples

This commit is contained in:
Hannes Janetzek
2014-01-21 18:21:15 +01:00
parent 9109da9784
commit 3fd92982c4
18 changed files with 956 additions and 520 deletions

View File

@@ -0,0 +1,12 @@
package org.oscim.jeo;
import org.jeo.map.RGB;
public class JeoUtils {
public static int color(RGB rgb) {
return rgb.getAlpha() << 24
| rgb.getRed() << 16
| rgb.getGreen() << 8
| rgb.getBlue();
}
}