@ step
@ step
@ step
@ step
@ step
@ step
@ step
@ step
@ step
@ step
@ step
to

Step # Hex Code RGB CSS Value
1#F7F4C2rgb(247, 244, 194, 1)-0.2
2#E0E4B0rgb(224, 228, 176, 1)-0.1
3#C9D49Frgb(201, 212, 159, 1)0.0
4#B2C48Drgb(178, 196, 141, 1)0.1
5#9BB47Crgb(155, 180, 124, 1)0.2
6#85A46Argb(133, 164, 106, 1)0.3
7#6E9459rgb(110, 148, 89, 1)0.4
8#578447rgb(87, 132, 71, 1)0.5
9#407436rgb(64, 116, 54, 1)0.6
10#296424rgb(41, 100, 36, 1)0.7
11#135513rgb(19, 85, 19, 1)1.00
1.00
0.9
0.8
0.7
0.6
0.5
0.4
0.3
0.2
0.1
-0.2
Copy to Clipboard
<dl id="legendTable" style="width: 66px;background: #fff;border: 1px solid #000;padding: 10px 10px;line-height:0;border-radius:10px;margin-top:10px;">
    <dt style="background:#135513;display: inline-block;width:20px;height:16px;"></dt>
    <dd style="display: inline-block;font-size:10px;vertical-align: middle;margin-bottom:8px;">1.00</dd>
    <dt style="background:#296424;display: inline-block;width:20px;height:16px;"></dt>
    <dd style="display: inline-block;font-size:10px;vertical-align: middle;margin-bottom:8px;">0.9</dd>
    <dt style="background:#407436;display: inline-block;width:20px;height:16px;"></dt>
    <dd style="display: inline-block;font-size:10px;vertical-align: middle;margin-bottom:8px;">0.8</dd>
    <dt style="background:#578447;display: inline-block;width:20px;height:16px;"></dt>
    <dd style="display: inline-block;font-size:10px;vertical-align: middle;margin-bottom:8px;">0.7</dd>
    <dt style="background:#6E9459;display: inline-block;width:20px;height:16px;"></dt>
    <dd style="display: inline-block;font-size:10px;vertical-align: middle;margin-bottom:8px;">0.6</dd>
    <dt style="background:#85A46A;display: inline-block;width:20px;height:16px;"></dt>
    <dd style="display: inline-block;font-size:10px;vertical-align: middle;margin-bottom:8px;">0.5</dd>
    <dt style="background:#9BB47C;display: inline-block;width:20px;height:16px;"></dt>
    <dd style="display: inline-block;font-size:10px;vertical-align: middle;margin-bottom:8px;">0.4</dd>
    <dt style="background:#B2C48D;display: inline-block;width:20px;height:16px;"></dt>
    <dd style="display: inline-block;font-size:10px;vertical-align: middle;margin-bottom:8px;">0.3</dd>
    <dt style="background:#C9D49F;display: inline-block;width:20px;height:16px;"></dt>
    <dd style="display: inline-block;font-size:10px;vertical-align: middle;margin-bottom:8px;">0.2</dd>
    <dt style="background:#E0E4B0;display: inline-block;width:20px;height:16px;"></dt>
    <dd style="display: inline-block;font-size:10px;vertical-align: middle;margin-bottom:8px;">0.1</dd>
    <dt style="background:#F7F4C2;display: inline-block;width:20px;height:16px;"></dt>
    <dd style="display: inline-block;font-size:10px;vertical-align: middle;margin-bottom:8px;">-0.2</dd>
</dl>
Copy to Clipboard
getFillColor: deck.carto.colorContinuous({
    attr: 'extreme_temp',
    nullColor: [238, 238, 238],
    domain: [-0.2,-0.1,0.0,0.1,0.2,0.3,0.4,0.5,0.6,0.7,1.00],
    colors: [
       [247, 244, 194],
       [224, 228, 176],
       [201, 212, 159],
       [178, 196, 141],
       [155, 180, 124],
       [133, 164, 106],
       [110, 148, 89],
       [87, 132, 71],
       [64, 116, 54],
       [41, 100, 36],
       [19, 85, 19]
    ];
}),


                        
Copy to Clipboard Download JSON
{
   "ramp": [
        {
             "values": -0.2,
             "color": "#F7F4C2"
        },
        {
             "value": 0.1,
             "color": "#E0E4B0"
        },
        {
             "value": 0.2,
             "color": "#C9D49F"
        },
        {
             "value": 0.3,
             "color": "#B2C48D"
        },
        {
             "value": 0.4,
             "color": "#9BB47C"
        },
        {
             "value": 0.5,
             "color": "#85A46A"
        },
        {
             "value": 0.6,
             "color": "#6E9459"
        },
        {
             "value": 0.7,
             "color": "#578447"
        },
        {
             "value": 0.8,
             "color": "#407436"
        },
        {
             "value": 0.9,
             "color": "#296424"
        },
        {
             "value": 1.00,
             "color": "#135513"
        }
    ]
}
Copy to Clipboard
// Generated by RampGenerator.com

// This function allows you to enter a value and have the color returned,
// useful when coloring geojson maps or anything else you can think of.

// sample usage:
// console.log(getColor(0));
// result: #C9D49F

function getColor(v) {
  return v >= 1.00 ? '#135513' :
    v >= 0.9 ? '#296424' :
    v >= 0.8 ? '#407436' :
    v >= 0.7 ? '#578447' :
    v >= 0.6 ? '#6E9459' :
    v >= 0.5 ? '#85A46A' :
    v >= 0.4 ? '#9BB47C' :
    v >= 0.3 ? '#B2C48D' :
    v >= 0.2 ? '#C9D49F' :
    v >= 0.1 ? '#E0E4B0' :
    v >= -0.2 ? '#F7F4C2' :
            '#F7F4C2'; 
}
Copy to Clipboard
/*
Generated by RampGenerator.com
==============================
This is a CSS Style meant for Geoserver,
the Geoserver CSS Extension must be
installed to be able to use this.

Generated URL: 
https://rampgenerator.com/?unique_colors=11&steps=11&step_color%5B1%5D=%23F7F4C2&at_step%5B1%5D=1&step_color%5B2%5D=%23E0E4B0&at_step%5B2%5D=2&step_color%5B3%5D=%23C9D49F&at_step%5B3%5D=3&step_color%5B4%5D=%23B2C48D&at_step%5B4%5D=4&step_color%5B5%5D=%239BB47C&at_step%5B5%5D=5&step_color%5B6%5D=%2385A46A&at_step%5B6%5D=6&step_color%5B7%5D=%236E9459&at_step%5B7%5D=7&step_color%5B8%5D=%23578447&at_step%5B8%5D=8&step_color%5B9%5D=%23407436&at_step%5B9%5D=9&step_color%5B10%5D=%23296424&at_step%5B10%5D=10&step_color%5B11%5D=%23135513&at_step%5B11%5D=11&min_value=-0.2&max_value=1.00&decimals=1&opacity=1&col=extreme_temp&null_color=%23EEEEEE&legendContainer_css=width%3A+66px%3B%0D%0Abackground%3A+%23fff%3B%0D%0Aborder%3A+1px+solid+%23000%3B%0D%0Apadding%3A+10px+10px%3B%0D%0Aline-height%3A0%3B%0D%0Aborder-radius%3A10px%3B%0D%0Amargin-top%3A10px%3B&legendColor_css=display%3A+inline-block%3B%0D%0Awidth%3A20px%3B%0D%0Aheight%3A16px%3B&legendLabel_css=display%3A+inline-block%3B%0D%0Afont-size%3A10px%3B%0D%0Avertical-align%3A+middle%3B%0D%0Amargin-bottom%3A8px%3B&units=&default_tab=Legend&ssn=1&updated=1

*/

/* @title -0.2--0.1*/
[extreme_temp >= -0.2] [extreme_temp < -0.1] {
    fill: #F7F4C2;
    fill-opacity: 1;
}
/* @title -0.1-0.0*/
[extreme_temp >= -0.1] [extreme_temp < 0.0] {
    fill: #E0E4B0;
    fill-opacity: 1;
}
/* @title 0.0-0.1*/
[extreme_temp >= 0.0] [extreme_temp < 0.1] {
    fill: #C9D49F;
    fill-opacity: 1;
}
/* @title 0.1-0.2*/
[extreme_temp >= 0.1] [extreme_temp < 0.2] {
    fill: #B2C48D;
    fill-opacity: 1;
}
/* @title 0.2-0.3*/
[extreme_temp >= 0.2] [extreme_temp < 0.3] {
    fill: #9BB47C;
    fill-opacity: 1;
}
/* @title 0.3-0.4*/
[extreme_temp >= 0.3] [extreme_temp < 0.4] {
    fill: #85A46A;
    fill-opacity: 1;
}
/* @title 0.4-0.5*/
[extreme_temp >= 0.4] [extreme_temp < 0.5] {
    fill: #6E9459;
    fill-opacity: 1;
}
/* @title 0.5-0.6*/
[extreme_temp >= 0.5] [extreme_temp < 0.6] {
    fill: #578447;
    fill-opacity: 1;
}
/* @title 0.6-0.7*/
[extreme_temp >= 0.6] [extreme_temp < 0.7] {
    fill: #407436;
    fill-opacity: 1;
}
/* @title 0.7-0.8*/
[extreme_temp >= 0.7] [extreme_temp < 0.8] {
    fill: #296424;
    fill-opacity: 1;
}
/* @title 1.00+*/
[extreme_temp >= 1.00] {
    fill: #135513;
    fill-opacity: 1;
}

Copy to Clipboard Direct XML URL Download SLD
<?xml version="1.0" encoding="UTF-8"?>
<StyledLayerDescriptor version="1.0.0" xmlns="http://www.opengis.net/sld" xmlns:ogc="http://www.opengis.net/ogc"
  xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.opengis.net/sld http://schemas.opengis.net/sld/1.0.0/StyledLayerDescriptor.xsd">
  <NamedLayer>
    <Name>GeoServer Layer Name</Name>
    <UserStyle>
      <Name>name</Name>
      <Title>Title of Style</Title>
      <Abstract></Abstract>
      <FeatureTypeStyle>
        <Rule>
          <RasterSymbolizer>
            <Opacity>1.0</Opacity>
            <ColorMap>
              <ColorMapEntry color="#F7F4C2" quantity="-0.2" label="-0.2" opacity="1"/>
              <ColorMapEntry color="#E0E4B0" quantity="-0.1" label="-0.1" opacity="1"/>
              <ColorMapEntry color="#C9D49F" quantity="0.0" label="0.0" opacity="1"/>
              <ColorMapEntry color="#B2C48D" quantity="0.1" label="0.1" opacity="1"/>
              <ColorMapEntry color="#9BB47C" quantity="0.2" label="0.2" opacity="1"/>
              <ColorMapEntry color="#85A46A" quantity="0.3" label="0.3" opacity="1"/>
              <ColorMapEntry color="#6E9459" quantity="0.4" label="0.4" opacity="1"/>
              <ColorMapEntry color="#578447" quantity="0.5" label="0.5" opacity="1"/>
              <ColorMapEntry color="#407436" quantity="0.6" label="0.6" opacity="1"/>
              <ColorMapEntry color="#296424" quantity="0.7" label="0.7" opacity="1"/>
              <ColorMapEntry color="#135513" quantity="1.00" label="1.00" opacity="1"/>
            </ColorMap>
          </RasterSymbolizer>
        </Rule>
      </FeatureTypeStyle>
    </UserStyle>
  </NamedLayer>
</StyledLayerDescriptor>
Copy to Clipboard Download SLD
<?xml version="1.0" encoding="UTF-8"?>
<StyledLayerDescriptor version="1.0.0" xmlns="http://www.opengis.net/sld" xmlns:ogc="http://www.opengis.net/ogc"
  xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.opengis.net/sld http://schemas.opengis.net/sld/1.0.0/StyledLayerDescriptor.xsd">
  <NamedLayer>
    <Name>GeoServer Layer Name</Name>
    <UserStyle>
      <Title>Title of Style</Title>
      <Abstract></Abstract>
      <FeatureTypeStyle>
        <Rule>
          <Title>-0.2 - -0.1</Title>
          <ogc:Filter>
            <ogc:And>
              <ogc:PropertyIsGreaterThanOrEqualTo>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>-0.2</ogc:Literal>
              </ogc:PropertyIsGreaterThanOrEqualTo>
              <ogc:PropertyIsLessThan>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>-0.1</ogc:Literal>
              </ogc:PropertyIsLessThan>
            </ogc:And>
          </ogc:Filter>
          <PolygonSymbolizer>
            <Fill>
              <CssParameter name="fill">#F7F4C2</CssParameter>
            </Fill>
          </PolygonSymbolizer>
        </Rule>
        <Rule>
          <Title>-0.1 - 0</Title>
          <ogc:Filter>
            <ogc:And>
              <ogc:PropertyIsGreaterThanOrEqualTo>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>-0.1</ogc:Literal>
              </ogc:PropertyIsGreaterThanOrEqualTo>
              <ogc:PropertyIsLessThan>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0</ogc:Literal>
              </ogc:PropertyIsLessThan>
            </ogc:And>
          </ogc:Filter>
          <PolygonSymbolizer>
            <Fill>
              <CssParameter name="fill">#E0E4B0</CssParameter>
            </Fill>
          </PolygonSymbolizer>
        </Rule>
        <Rule>
          <Title>0.0 - 0.1</Title>
          <ogc:Filter>
            <ogc:And>
              <ogc:PropertyIsGreaterThanOrEqualTo>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.0</ogc:Literal>
              </ogc:PropertyIsGreaterThanOrEqualTo>
              <ogc:PropertyIsLessThan>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.1</ogc:Literal>
              </ogc:PropertyIsLessThan>
            </ogc:And>
          </ogc:Filter>
          <PolygonSymbolizer>
            <Fill>
              <CssParameter name="fill">#C9D49F</CssParameter>
            </Fill>
          </PolygonSymbolizer>
        </Rule>
        <Rule>
          <Title>0.1 - 0.2</Title>
          <ogc:Filter>
            <ogc:And>
              <ogc:PropertyIsGreaterThanOrEqualTo>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.1</ogc:Literal>
              </ogc:PropertyIsGreaterThanOrEqualTo>
              <ogc:PropertyIsLessThan>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.2</ogc:Literal>
              </ogc:PropertyIsLessThan>
            </ogc:And>
          </ogc:Filter>
          <PolygonSymbolizer>
            <Fill>
              <CssParameter name="fill">#B2C48D</CssParameter>
            </Fill>
          </PolygonSymbolizer>
        </Rule>
        <Rule>
          <Title>0.2 - 0.3</Title>
          <ogc:Filter>
            <ogc:And>
              <ogc:PropertyIsGreaterThanOrEqualTo>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.2</ogc:Literal>
              </ogc:PropertyIsGreaterThanOrEqualTo>
              <ogc:PropertyIsLessThan>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.3</ogc:Literal>
              </ogc:PropertyIsLessThan>
            </ogc:And>
          </ogc:Filter>
          <PolygonSymbolizer>
            <Fill>
              <CssParameter name="fill">#9BB47C</CssParameter>
            </Fill>
          </PolygonSymbolizer>
        </Rule>
        <Rule>
          <Title>0.3 - 0.4</Title>
          <ogc:Filter>
            <ogc:And>
              <ogc:PropertyIsGreaterThanOrEqualTo>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.3</ogc:Literal>
              </ogc:PropertyIsGreaterThanOrEqualTo>
              <ogc:PropertyIsLessThan>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.4</ogc:Literal>
              </ogc:PropertyIsLessThan>
            </ogc:And>
          </ogc:Filter>
          <PolygonSymbolizer>
            <Fill>
              <CssParameter name="fill">#85A46A</CssParameter>
            </Fill>
          </PolygonSymbolizer>
        </Rule>
        <Rule>
          <Title>0.4 - 0.5</Title>
          <ogc:Filter>
            <ogc:And>
              <ogc:PropertyIsGreaterThanOrEqualTo>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.4</ogc:Literal>
              </ogc:PropertyIsGreaterThanOrEqualTo>
              <ogc:PropertyIsLessThan>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.5</ogc:Literal>
              </ogc:PropertyIsLessThan>
            </ogc:And>
          </ogc:Filter>
          <PolygonSymbolizer>
            <Fill>
              <CssParameter name="fill">#6E9459</CssParameter>
            </Fill>
          </PolygonSymbolizer>
        </Rule>
        <Rule>
          <Title>0.5 - 0.6</Title>
          <ogc:Filter>
            <ogc:And>
              <ogc:PropertyIsGreaterThanOrEqualTo>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.5</ogc:Literal>
              </ogc:PropertyIsGreaterThanOrEqualTo>
              <ogc:PropertyIsLessThan>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.6</ogc:Literal>
              </ogc:PropertyIsLessThan>
            </ogc:And>
          </ogc:Filter>
          <PolygonSymbolizer>
            <Fill>
              <CssParameter name="fill">#578447</CssParameter>
            </Fill>
          </PolygonSymbolizer>
        </Rule>
        <Rule>
          <Title>0.6 - 0.7</Title>
          <ogc:Filter>
            <ogc:And>
              <ogc:PropertyIsGreaterThanOrEqualTo>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.6</ogc:Literal>
              </ogc:PropertyIsGreaterThanOrEqualTo>
              <ogc:PropertyIsLessThan>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.7</ogc:Literal>
              </ogc:PropertyIsLessThan>
            </ogc:And>
          </ogc:Filter>
          <PolygonSymbolizer>
            <Fill>
              <CssParameter name="fill">#407436</CssParameter>
            </Fill>
          </PolygonSymbolizer>
        </Rule>
        <Rule>
          <Title>0.7 - 0.8</Title>
          <ogc:Filter>
            <ogc:And>
              <ogc:PropertyIsGreaterThanOrEqualTo>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.7</ogc:Literal>
              </ogc:PropertyIsGreaterThanOrEqualTo>
              <ogc:PropertyIsLessThan>
                <ogc:PropertyName>extreme_temp</ogc:PropertyName>
                <ogc:Literal>0.8</ogc:Literal>
              </ogc:PropertyIsLessThan>
            </ogc:And>
          </ogc:Filter>
          <PolygonSymbolizer>
            <Fill>
              <CssParameter name="fill">#296424</CssParameter>
            </Fill>
          </PolygonSymbolizer>
        </Rule>
      </FeatureTypeStyle>
    </UserStyle>
  </NamedLayer>
</StyledLayerDescriptor>
Copy to Clipboard Download QML
<!--
Generated by RampGenerator.com

This is a QGIS Layer Style Definition File
You can load the file in the layer properties window. STYLE > Load Style
-->

<!DOCTYPE qgis PUBLIC 'http://mrcc.com/qgis.dtd' 'SYSTEM'>
<qgis hasScaleBasedVisibilityFlag="0" readOnly="0" version="3.6.3-Noosa" simplifyDrawingHints="1" simplifyAlgorithm="0" simplifyLocal="1" simplifyMaxScale="1" styleCategories="AllStyleCategories" maxScale="0" minScale="1e+8" simplifyDrawingTol="1" labelsEnabled="0">
  <flags>
    <Identifiable>1</Identifiable>
    <Removable>1</Removable>
    <Searchable>1</Searchable>
  </flags>
  <renderer-v2 attr="FID" graduatedMethod="GraduatedColor" forceraster="0" type="graduatedSymbol" enableorderby="0" symbollevels="0">
    <ranges>
        <range render="true" symbol="1" label="-0.2 - -0.1" lower="-0.2" upper="-0.1"/>
        <range render="true" symbol="2" label="-0.1 - 0.0" lower="-0.1" upper="0.0"/>
        <range render="true" symbol="3" label="0.0 - 0.1" lower="0.0" upper="0.1"/>
        <range render="true" symbol="4" label="0.1 - 0.2" lower="0.1" upper="0.2"/>
        <range render="true" symbol="5" label="0.2 - 0.3" lower="0.2" upper="0.3"/>
        <range render="true" symbol="6" label="0.3 - 0.4" lower="0.3" upper="0.4"/>
        <range render="true" symbol="7" label="0.4 - 0.5" lower="0.4" upper="0.5"/>
        <range render="true" symbol="8" label="0.5 - 0.6" lower="0.5" upper="0.6"/>
        <range render="true" symbol="9" label="0.6 - 0.7" lower="0.6" upper="0.7"/>
        <range render="true" symbol="10" label="0.7 - 0.8" lower="0.7" upper="0.8"/>
    </ranges>
    <symbols>
    <symbol type="fill" clip_to_extent="1" alpha="1" force_rhr="0" name="1">
      <layer pass="0" locked="0" enabled="1" class="SimpleFill">
        <prop v="3x:0,0,0,0,0,0" k="border_width_map_unit_scale"/>
        <prop v="247,244,194,255" k="color"/>
        <prop v="bevel" k="joinstyle"/>
        <prop v="0,0" k="offset"/>
        <prop v="3x:0,0,0,0,0,0" k="offset_map_unit_scale"/>
        <prop v="MM" k="offset_unit"/>
        <prop v="35,35,35,255" k="outline_color"/>
        <prop v="solid" k="outline_style"/>
        <prop v="0.26" k="outline_width"/>
        <prop v="MM" k="outline_width_unit"/>
        <prop v="solid" k="style"/>
        <data_defined_properties>
          <Option type="Map">
            <Option value="" type="QString" name="name"/>
            <Option name="properties"/>
            <Option value="collection" type="QString" name="type"/>
          </Option>
        </data_defined_properties>
      </layer>
    </symbol>
    <symbol type="fill" clip_to_extent="1" alpha="1" force_rhr="0" name="2">
      <layer pass="0" locked="0" enabled="1" class="SimpleFill">
        <prop v="3x:0,0,0,0,0,0" k="border_width_map_unit_scale"/>
        <prop v="224,228,176,255" k="color"/>
        <prop v="bevel" k="joinstyle"/>
        <prop v="0,0" k="offset"/>
        <prop v="3x:0,0,0,0,0,0" k="offset_map_unit_scale"/>
        <prop v="MM" k="offset_unit"/>
        <prop v="35,35,35,255" k="outline_color"/>
        <prop v="solid" k="outline_style"/>
        <prop v="0.26" k="outline_width"/>
        <prop v="MM" k="outline_width_unit"/>
        <prop v="solid" k="style"/>
        <data_defined_properties>
          <Option type="Map">
            <Option value="" type="QString" name="name"/>
            <Option name="properties"/>
            <Option value="collection" type="QString" name="type"/>
          </Option>
        </data_defined_properties>
      </layer>
    </symbol>
    <symbol type="fill" clip_to_extent="1" alpha="1" force_rhr="0" name="3">
      <layer pass="0" locked="0" enabled="1" class="SimpleFill">
        <prop v="3x:0,0,0,0,0,0" k="border_width_map_unit_scale"/>
        <prop v="201,212,159,255" k="color"/>
        <prop v="bevel" k="joinstyle"/>
        <prop v="0,0" k="offset"/>
        <prop v="3x:0,0,0,0,0,0" k="offset_map_unit_scale"/>
        <prop v="MM" k="offset_unit"/>
        <prop v="35,35,35,255" k="outline_color"/>
        <prop v="solid" k="outline_style"/>
        <prop v="0.26" k="outline_width"/>
        <prop v="MM" k="outline_width_unit"/>
        <prop v="solid" k="style"/>
        <data_defined_properties>
          <Option type="Map">
            <Option value="" type="QString" name="name"/>
            <Option name="properties"/>
            <Option value="collection" type="QString" name="type"/>
          </Option>
        </data_defined_properties>
      </layer>
    </symbol>
    <symbol type="fill" clip_to_extent="1" alpha="1" force_rhr="0" name="4">
      <layer pass="0" locked="0" enabled="1" class="SimpleFill">
        <prop v="3x:0,0,0,0,0,0" k="border_width_map_unit_scale"/>
        <prop v="178,196,141,255" k="color"/>
        <prop v="bevel" k="joinstyle"/>
        <prop v="0,0" k="offset"/>
        <prop v="3x:0,0,0,0,0,0" k="offset_map_unit_scale"/>
        <prop v="MM" k="offset_unit"/>
        <prop v="35,35,35,255" k="outline_color"/>
        <prop v="solid" k="outline_style"/>
        <prop v="0.26" k="outline_width"/>
        <prop v="MM" k="outline_width_unit"/>
        <prop v="solid" k="style"/>
        <data_defined_properties>
          <Option type="Map">
            <Option value="" type="QString" name="name"/>
            <Option name="properties"/>
            <Option value="collection" type="QString" name="type"/>
          </Option>
        </data_defined_properties>
      </layer>
    </symbol>
    <symbol type="fill" clip_to_extent="1" alpha="1" force_rhr="0" name="5">
      <layer pass="0" locked="0" enabled="1" class="SimpleFill">
        <prop v="3x:0,0,0,0,0,0" k="border_width_map_unit_scale"/>
        <prop v="155,180,124,255" k="color"/>
        <prop v="bevel" k="joinstyle"/>
        <prop v="0,0" k="offset"/>
        <prop v="3x:0,0,0,0,0,0" k="offset_map_unit_scale"/>
        <prop v="MM" k="offset_unit"/>
        <prop v="35,35,35,255" k="outline_color"/>
        <prop v="solid" k="outline_style"/>
        <prop v="0.26" k="outline_width"/>
        <prop v="MM" k="outline_width_unit"/>
        <prop v="solid" k="style"/>
        <data_defined_properties>
          <Option type="Map">
            <Option value="" type="QString" name="name"/>
            <Option name="properties"/>
            <Option value="collection" type="QString" name="type"/>
          </Option>
        </data_defined_properties>
      </layer>
    </symbol>
    <symbol type="fill" clip_to_extent="1" alpha="1" force_rhr="0" name="6">
      <layer pass="0" locked="0" enabled="1" class="SimpleFill">
        <prop v="3x:0,0,0,0,0,0" k="border_width_map_unit_scale"/>
        <prop v="133,164,106,255" k="color"/>
        <prop v="bevel" k="joinstyle"/>
        <prop v="0,0" k="offset"/>
        <prop v="3x:0,0,0,0,0,0" k="offset_map_unit_scale"/>
        <prop v="MM" k="offset_unit"/>
        <prop v="35,35,35,255" k="outline_color"/>
        <prop v="solid" k="outline_style"/>
        <prop v="0.26" k="outline_width"/>
        <prop v="MM" k="outline_width_unit"/>
        <prop v="solid" k="style"/>
        <data_defined_properties>
          <Option type="Map">
            <Option value="" type="QString" name="name"/>
            <Option name="properties"/>
            <Option value="collection" type="QString" name="type"/>
          </Option>
        </data_defined_properties>
      </layer>
    </symbol>
    <symbol type="fill" clip_to_extent="1" alpha="1" force_rhr="0" name="7">
      <layer pass="0" locked="0" enabled="1" class="SimpleFill">
        <prop v="3x:0,0,0,0,0,0" k="border_width_map_unit_scale"/>
        <prop v="110,148,89,255" k="color"/>
        <prop v="bevel" k="joinstyle"/>
        <prop v="0,0" k="offset"/>
        <prop v="3x:0,0,0,0,0,0" k="offset_map_unit_scale"/>
        <prop v="MM" k="offset_unit"/>
        <prop v="35,35,35,255" k="outline_color"/>
        <prop v="solid" k="outline_style"/>
        <prop v="0.26" k="outline_width"/>
        <prop v="MM" k="outline_width_unit"/>
        <prop v="solid" k="style"/>
        <data_defined_properties>
          <Option type="Map">
            <Option value="" type="QString" name="name"/>
            <Option name="properties"/>
            <Option value="collection" type="QString" name="type"/>
          </Option>
        </data_defined_properties>
      </layer>
    </symbol>
    <symbol type="fill" clip_to_extent="1" alpha="1" force_rhr="0" name="8">
      <layer pass="0" locked="0" enabled="1" class="SimpleFill">
        <prop v="3x:0,0,0,0,0,0" k="border_width_map_unit_scale"/>
        <prop v="87,132,71,255" k="color"/>
        <prop v="bevel" k="joinstyle"/>
        <prop v="0,0" k="offset"/>
        <prop v="3x:0,0,0,0,0,0" k="offset_map_unit_scale"/>
        <prop v="MM" k="offset_unit"/>
        <prop v="35,35,35,255" k="outline_color"/>
        <prop v="solid" k="outline_style"/>
        <prop v="0.26" k="outline_width"/>
        <prop v="MM" k="outline_width_unit"/>
        <prop v="solid" k="style"/>
        <data_defined_properties>
          <Option type="Map">
            <Option value="" type="QString" name="name"/>
            <Option name="properties"/>
            <Option value="collection" type="QString" name="type"/>
          </Option>
        </data_defined_properties>
      </layer>
    </symbol>
    <symbol type="fill" clip_to_extent="1" alpha="1" force_rhr="0" name="9">
      <layer pass="0" locked="0" enabled="1" class="SimpleFill">
        <prop v="3x:0,0,0,0,0,0" k="border_width_map_unit_scale"/>
        <prop v="64,116,54,255" k="color"/>
        <prop v="bevel" k="joinstyle"/>
        <prop v="0,0" k="offset"/>
        <prop v="3x:0,0,0,0,0,0" k="offset_map_unit_scale"/>
        <prop v="MM" k="offset_unit"/>
        <prop v="35,35,35,255" k="outline_color"/>
        <prop v="solid" k="outline_style"/>
        <prop v="0.26" k="outline_width"/>
        <prop v="MM" k="outline_width_unit"/>
        <prop v="solid" k="style"/>
        <data_defined_properties>
          <Option type="Map">
            <Option value="" type="QString" name="name"/>
            <Option name="properties"/>
            <Option value="collection" type="QString" name="type"/>
          </Option>
        </data_defined_properties>
      </layer>
    </symbol>
    <symbol type="fill" clip_to_extent="1" alpha="1" force_rhr="0" name="10">
      <layer pass="0" locked="0" enabled="1" class="SimpleFill">
        <prop v="3x:0,0,0,0,0,0" k="border_width_map_unit_scale"/>
        <prop v="41,100,36,255" k="color"/>
        <prop v="bevel" k="joinstyle"/>
        <prop v="0,0" k="offset"/>
        <prop v="3x:0,0,0,0,0,0" k="offset_map_unit_scale"/>
        <prop v="MM" k="offset_unit"/>
        <prop v="35,35,35,255" k="outline_color"/>
        <prop v="solid" k="outline_style"/>
        <prop v="0.26" k="outline_width"/>
        <prop v="MM" k="outline_width_unit"/>
        <prop v="solid" k="style"/>
        <data_defined_properties>
          <Option type="Map">
            <Option value="" type="QString" name="name"/>
            <Option name="properties"/>
            <Option value="collection" type="QString" name="type"/>
          </Option>
        </data_defined_properties>
      </layer>
    </symbol>
    </symbols>
    <source-symbol>
      <symbol type="fill" clip_to_extent="1" alpha="1" force_rhr="0" name="0">
        <layer pass="0" locked="0" enabled="1" class="SimpleFill">
          <prop v="3x:0,0,0,0,0,0" k="border_width_map_unit_scale"/>
          <prop v="255,255,255,255" k="color"/>
          <prop v="bevel" k="joinstyle"/>
          <prop v="0,0" k="offset"/>
          <prop v="3x:0,0,0,0,0,0" k="offset_map_unit_scale"/>
          <prop v="MM" k="offset_unit"/>
          <prop v="0,0,0,255" k="outline_color"/>
          <prop v="solid" k="outline_style"/>
          <prop v="0.26" k="outline_width"/>
          <prop v="MM" k="outline_width_unit"/>
          <prop v="solid" k="style"/>
          <data_defined_properties>
            <Option type="Map">
              <Option value="" type="QString" name="name"/>
              <Option name="properties"/>
              <Option value="collection" type="QString" name="type"/>
            </Option>
          </data_defined_properties>
        </layer>
      </symbol>
    </source-symbol>
    <colorramp type="gradient" name="[source]">
      <prop v="247,244,194,255" k="color1"/>
      <prop v="19,85,19,255" k="color2"/>
      <prop v="0" k="discrete"/>
      <prop v="gradient" k="rampType"/>
      <prop v="0.109091;224,228,176,255:0.218182;201,212,159,255:0.327273;178,196,141,255:0.436364;155,180,124,255:0.545455;133,164,106,255:0.654545;110,148,89,255:0.763636;87,132,71,255:0.872727;64,116,54,255:0.981818;41,100,36,255:1.090909;19,85,19,255" k="stops"/>
    </colorramp>
    <mode name="equal"/>
    <symmetricMode astride="false" enabled="false" symmetryPoint="0"/>
    <rotation/>
    <sizescale/>
    <labelformat trimtrailingzeroes="false" format="%1 - %2" decimalplaces="0"/>
  </renderer-v2>
  <customproperties>
    <property key="dualview/previewExpressions">
      <value>FID</value>
    </property>
    <property value="0" key="embeddedWidgets/count"/>
    <property key="variableNames"/>
    <property key="variableValues"/>
  </customproperties>
  <blendMode>0</blendMode>
  <featureBlendMode>0</featureBlendMode>
  <layerOpacity>1</layerOpacity>
  <SingleCategoryDiagramRenderer diagramType="Histogram" attributeLegend="1">
    <DiagramCategory minScaleDenominator="0" maxScaleDenominator="1e+8" penAlpha="255" rotationOffset="270" lineSizeType="MM" lineSizeScale="3x:0,0,0,0,0,0" scaleDependency="Area" scaleBasedVisibility="0" backgroundAlpha="255" labelPlacementMethod="XHeight" penColor="#000000" sizeType="MM" enabled="0" sizeScale="3x:0,0,0,0,0,0" height="15" diagramOrientation="Up" backgroundColor="#ffffff" penWidth="0" barWidth="5" opacity="1" minimumSize="0" width="15">
      <fontProperties description="Ubuntu,11,-1,5,50,0,0,0,0,0" style=""/>
    </DiagramCategory>
  </SingleCategoryDiagramRenderer>
  <DiagramLayerSettings obstacle="0" dist="0" priority="0" placement="1" linePlacementFlags="18" zIndex="0" showAll="1">
    <properties>
      <Option type="Map">
        <Option value="" type="QString" name="name"/>
        <Option name="properties"/>
        <Option value="collection" type="QString" name="type"/>
      </Option>
    </properties>
  </DiagramLayerSettings>
  <geometryOptions removeDuplicateNodes="0" geometryPrecision="0">
    <activeChecks/>
    <checkConfiguration/>
  </geometryOptions>
  <fieldConfiguration>
    <field name="FID">
      <editWidget type="TextEdit">
        <config>
          <Option/>
        </config>
      </editWidget>
    </field>
  </fieldConfiguration>
  <aliases>
    <alias field="FID" index="0" name=""/>
  </aliases>
  <excludeAttributesWMS/>
  <excludeAttributesWFS/>
  <defaults>
    <default applyOnUpdate="0" field="FID" expression=""/>
  </defaults>
  <constraints>
    <constraint notnull_strength="0" field="FID" constraints="0" unique_strength="0" exp_strength="0"/>
  </constraints>
  <constraintExpressions>
    <constraint field="FID" desc="" exp=""/>
  </constraintExpressions>
  <expressionfields/>
  <attributeactions>
    <defaultAction value="{00000000-0000-0000-0000-000000000000}" key="Canvas"/>
  </attributeactions>
  <attributetableconfig sortExpression="" actionWidgetStyle="dropDown" sortOrder="0">
    <columns>
      <column type="field" name="FID" hidden="0" width="-1"/>
      <column type="actions" hidden="1" width="-1"/>
    </columns>
  </attributetableconfig>
  <conditionalstyles>
    <rowstyles/>
    <fieldstyles/>
  </conditionalstyles>
  <editform tolerant="1"></editform>
  <editforminit/>
  <editforminitcodesource>0</editforminitcodesource>
  <editforminitfilepath></editforminitfilepath>
  <editforminitcode><![CDATA[# -*- coding: utf-8 -*-
"""
QGIS forms can have a Python function that is called when the form is
opened.

Use this function to add extra logic to your forms.

Enter the name of the function in the "Python Init function"
field.
An example follows:
"""
from qgis.PyQt.QtWidgets import QWidget

def my_form_open(dialog, layer, feature):
	geom = feature.geometry()
	control = dialog.findChild(QWidget, "MyLineEdit")
]]></editforminitcode>
  <featformsuppress>0</featformsuppress>
  <editorlayout>generatedlayout</editorlayout>
  <editable>
    <field editable="1" name="FID"/>
  </editable>
  <labelOnTop>
    <field name="FID" labelOnTop="0"/>
  </labelOnTop>
  <widgets/>
  <previewExpression>FID</previewExpression>
  <mapTip></mapTip>
  <layerGeometryType>2</layerGeometryType>
</qgis>
Copy to Clipboard
// string used in python/javascript api call (vis_params)

// without keys

-0.2:1.00:F7F4C2,E0E4B0,C9D49F,B2C48D,9BB47C,85A46A,6E9459,578447,407436,296424,135513

// with keys

{"min":-0.2, "max":1.00, palette:"F7F4C2,E0E4B0,C9D49F,B2C48D,9BB47C,85A46A,6E9459,578447,407436,296424,135513"}

// color ramp for code editor

var sld = '<RasterSymbolizer>' +
            '<Opacity>1.0</Opacity>' +
            '<ColorMap>' +
              '<ColorMapEntry color="#F7F4C2" quantity="-0.2" label="-0.2"/>' +
              '<ColorMapEntry color="#E0E4B0" quantity="-0.1" label="-0.1"/>' +
              '<ColorMapEntry color="#C9D49F" quantity="0.0" label="0.0"/>' +
              '<ColorMapEntry color="#B2C48D" quantity="0.1" label="0.1"/>' +
              '<ColorMapEntry color="#9BB47C" quantity="0.2" label="0.2"/>' +
              '<ColorMapEntry color="#85A46A" quantity="0.3" label="0.3"/>' +
              '<ColorMapEntry color="#6E9459" quantity="0.4" label="0.4"/>' +
              '<ColorMapEntry color="#578447" quantity="0.5" label="0.5"/>' +
              '<ColorMapEntry color="#407436" quantity="0.6" label="0.6"/>' +
              '<ColorMapEntry color="#296424" quantity="0.7" label="0.7"/>' +
              '<ColorMapEntry color="#135513" quantity="1.00" label="1.00"/>' +
            '</ColorMap>' +
          '</RasterSymbolizer>';