eu.limetri.client.mapviewer.layer.weather.component.legend.PrecipitationLegendPanel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapviewer-weather Show documentation
Show all versions of mapviewer-weather Show documentation
MapViewer Weather layer project
/**
* Copyright (C) 2008-2012 AgroSense Foundation.
*
* AgroSense is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* There are special exceptions to the terms and conditions of the GPLv3 as it
* is applied to this software, see the FLOSS License Exception
* .
*
* AgroSense is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* AgroSense. If not, see .
*/
package eu.limetri.client.mapviewer.layer.weather.component.legend;
import java.awt.Color;
import java.util.LinkedHashMap;
import java.util.Map;
public class PrecipitationLegendPanel extends AbstractLegendPanel {
public PrecipitationLegendPanel() {
super();
initData();
}
private void initData() {
Map data = new LinkedHashMap<>();
data.put(65f, new Color(173, 0, 0));
data.put(40f, new Color(254, 23, 0));
data.put(25f, new Color(254, 121, 0));
data.put(14f, new Color(254, 243, 0));
data.put(6f, new Color(155, 254, 99));
data.put(5f, new Color(103, 254, 151));
data.put(4f, new Color(43, 254, 211));
data.put(3f, new Color(0, 238, 254));
data.put(2f, new Color(0, 173, 254));
data.put(1f, new Color(0, 114, 254));
data.put(0.5f, new Color(0, 24, 254));
data.put(0.131f, new Color(0, 0, 153));
setMap(data);
}
}