LCC C CAP LAND - USEPA/ATtILA2 GitHub Wiki

C-CAP LAND

Coastal Change Analysis Program LAND

Water-related raster values are tagged as EXCLUDED. Excluded values are ignored when calculating the effective area of a reporting unit. Percentage metrics are based on the effective area of a reporting unit, not the total area.

Coefficient values for impervious area calculations are based on those reported in Caraco et al. (1998). Those supplied for the nitrogen loading and phosphorous loading estimates were obtained from Reckhow et al. (1980). As coefficient values can vary considerably for a given land cover type across locations, all provided values should be evaluated critically before use and altered when necessary.

For more information about the C-CAP dataset go to: https://coast.noaa.gov/digitalcoast/data/ccapregional.html

C-CAP LAND - Value Table

Value Description Excluded Nitrogen Phosphorus Impervious Class(es)
0 Background yes
1 Unclassified yes
2 High Intensity Developed 5.5 1.2 0.9 UI, dev, devh
3 Medium Intensity Developed 5.5 1.2 0.6 UI, dev, devm
4 Low Intensity Developed 5.5 1.2 0.4 UI, dev, devl
5 Open Spaces Developed 0.1 UI, dev, devo
6 Cultivated Crop 5.0 0.9 UI, agr, agrc
7 Pasture/Hay 5.0 0.9 UI, agr, agrp
8 Grassland 0.3 0.06 0.02 NI, hrb
9 Deciduous Forest 2.5 0.25 0.02 NI, for
10 Evergreen Forest 2.5 0.25 0.02 NI, for
11 Mixed Forest 2.5 0.25 0.02 NI, for
12 Scrub/Shrub 0.4 0.04 0.02 NI, shb
13 Palustrine Forested Wetland 2.5 0.25 0.02 NI, wtl, wtlw
14 Palustrine Scrub/Shrub Wetland 0.4 0.04 0.02 NI, wtl, wtlw
15 Palustrine Emergent Wetland 0.3 0.06 0.02 NI, wtl, wtle
16 Estuarine Forested Wetland 2.5 0.25 0.02 NI, wtl, wtlw
17 Estuarine Scrub/Shrub Wetland 0.4 0.04 0.02 NI, wtl, wtlw
18 Estuarine Emergent Wetland 0.3 0.06 0.02 NI, wtl, wtle
19 Unconsolidated Shore NI, bar
20 Barren Land NI, bar
21 Open Water yes
22 Palustrine Aquatic Bed yes
23 Estuarine Aquatic Bed yes
24 Tundra 0.3 0.06 0.02 NI, tun
25 Perennial Ice/Snow yes

C-CAP LAND - Class Table

Class Name abbv Value
All NIural Land Use NI 8,9,10,11,12,13,14,15,16,17,18,19,20,24
Herbaceous hrb 8
Forest for 9,10,11
Shrubland shb 12
Wetland wtl 13,14,15,16,17,18
Woody Wetland wtlw 13,14,16,17
Emergent Wetland wtle 15,18
Barren bar 19,20
Tundra tun 24
All Human Land Use UI 2,3,4,5,6,7
Developed dev 2,3,4,5
High Intensity Developed devh 2
Medium Intensity Developed devm 3
Low Intensity Developed devl 4
Open Space Developed devo 5
Agriculture agr 6,7
Cultivated Crop agrc 6
Pasture/Hay agrp 7
Unclassified UC 1
View C-CAP LAND XML

C-CAP LAND XML

<?xml version='1.0' encoding='UTF-8'?>
<lccSchema xmlns="lcc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lcc LCCSchema.xsd">
    <metadata>
        <name>C-CAP LAND</name>
        <description>C-CAP LAND Land Cover Classification Schema. Water-related raster values are tagged as EXCLUDED. Excluded values are ignored when calculating the effective area of a reporting unit. Percentage metrics are based on the effective area of a reporting unit, not the total area. Coefficient values for impervious area calculations are based on those reported in Caraco et al. (1998). Those supplied for the nitrogen loading and phosphorous loading estimates were obtained from Reckhow et al. (1980). As coefficient values can vary considerably for a given land cover type across locations, all provided values should be evaluated critically before use and altered when necessary. Complete literature citations are provided in the ATtILA online help (https://github.com/USEPA/ATtILA2/wiki).</description>
    </metadata>
    <!--  
        * The coefficients node contains coefficients to be assigned to values.
           
        * REQUIRED ATTRIBUTES
        * Id - text, unique identifier
        * Name - text, word or phrase describing coefficient
        * fieldName - text, name of field to be created for output
        *           - must conform to the field naming conventions dictated by the output database system
        * method - text, "P" or "A", designates "P"ercentage or per unit "A"rea calculation routine
     -->
    <coefficients>
        <coefficient Id="IMPERVIOUS" Name="Percent Cover Total Impervious Area" fieldName="PCTIA" method="P" />
        <coefficient Id="NITROGEN" Name="Estimated Nitrogen Loading Based on Land Cover" fieldName="N_Load" method="A" />
        <coefficient Id="PHOSPHORUS" Name="Estimated Phosphorus Loading Based on Land Cover" fieldName="P_Load" method="A" />
    </coefficients>
    <!--  
        * The values node defines the full set of values that can exist in a land cover raster.
        
        * REQUIRED ATTRIBUTES
        * Id - integer, raster code
        *
        * OPTIONAL ATTRIBUTES
        * Name - text, word or phrase describing value
        * excluded - boolean, "true" or "false" or "1" or "0"
        *          - used to exclude values from effective area calculations
        *          - excluded=false is the default 
        
        * A value element can optionally contain one or more coefficient elements

        * REQUIRED COEFFICIENT ATTRIBUTES
        * Id - text, must match an Id attribute from a coefficients node element
        * value - decimal, weighting/calculation factor
     -->
    <values>
        <value Id="0" Name="Background" excluded="true">
            <coefficient Id="IMPERVIOUS" value="0.0" />
            <coefficient Id="NITROGEN" value="0.0" />
            <coefficient Id="PHOSPHORUS" value="0.0" />
        </value>
        <value Id="1" Name="Unclassified" excluded="true">
            <coefficient Id="IMPERVIOUS" value="0.0" />
            <coefficient Id="NITROGEN" value="0.0" />
            <coefficient Id="PHOSPHORUS" value="0.0" />
        </value>
        <value Id="2" Name="High Intensity Developed">
            <coefficient Id="IMPERVIOUS" value="0.9" />
            <coefficient Id="NITROGEN" value="5.5" />
            <coefficient Id="PHOSPHORUS" value="1.2" />
        </value>
        <value Id="3" Name="Medium Intensity Developed">
            <coefficient Id="IMPERVIOUS" value="0.6" />
            <coefficient Id="NITROGEN" value="5.5" />
            <coefficient Id="PHOSPHORUS" value="1.2" />
        </value>
        <value Id="4" Name="Low Intensity Developed">
            <coefficient Id="IMPERVIOUS" value="0.4" />
            <coefficient Id="NITROGEN" value="5.5" />
            <coefficient Id="PHOSPHORUS" value="1.2" />
        </value>
        <value Id="5" Name="Open Space Developed">
            <coefficient Id="IMPERVIOUS" value="0.1" />
            <coefficient Id="NITROGEN" value="0.0" />
            <coefficient Id="PHOSPHORUS" value="0.0" />
        </value>
        <value Id="6" Name="Cultivated Crop">
            <coefficient Id="IMPERVIOUS" value="0.0" />
            <coefficient Id="NITROGEN" value="5.0" />
            <coefficient Id="PHOSPHORUS" value="0.9" />
        </value>
        <value Id="7" Name="Pasture/Hay">
            <coefficient Id="IMPERVIOUS" value="0.0" />
            <coefficient Id="NITROGEN" value="5.0" />
            <coefficient Id="PHOSPHORUS" value="0.9" />
        </value>
        <value Id="8" Name="Grassland">
            <coefficient Id="IMPERVIOUS" value="0.02" />
            <coefficient Id="NITROGEN" value="0.3" />
            <coefficient Id="PHOSPHORUS" value="0.06" />
        </value>
        <value Id="9" Name="Deciduous Forest">
            <coefficient Id="IMPERVIOUS" value="0.02" />
            <coefficient Id="NITROGEN" value="2.5" />
            <coefficient Id="PHOSPHORUS" value="0.25" />
        </value>
        <value Id="10" Name="Evergreen Forest">
            <coefficient Id="IMPERVIOUS" value="0.02" />
            <coefficient Id="NITROGEN" value="2.5" />
            <coefficient Id="PHOSPHORUS" value="0.25" />
        </value>
        <value Id="11" Name="Mixed Forest">
            <coefficient Id="IMPERVIOUS" value="0.02" />
            <coefficient Id="NITROGEN" value="2.5" />
            <coefficient Id="PHOSPHORUS" value="0.25" />
        </value>
        <value Id="12" Name="Scrub/Shrub">
            <coefficient Id="IMPERVIOUS" value="0.02" />
            <coefficient Id="NITROGEN" value="0.4" />
            <coefficient Id="PHOSPHORUS" value="0.04" />
        </value>
        <value Id="13" Name="Palustrine Forested Wetland">
            <coefficient Id="IMPERVIOUS" value="0.02" />
            <coefficient Id="NITROGEN" value="2.5" />
            <coefficient Id="PHOSPHORUS" value="0.25" />
        </value>
        <value Id="14" Name="Palustrine Scrub/Shrub Wetland">
            <coefficient Id="IMPERVIOUS" value="0.02" />
            <coefficient Id="NITROGEN" value="0.4" />
            <coefficient Id="PHOSPHORUS" value="0.04" />
        </value>
        <value Id="15" Name="Palustrine Emergent Wetland">
            <coefficient Id="IMPERVIOUS" value="0.02" />
            <coefficient Id="NITROGEN" value="0.3" />
            <coefficient Id="PHOSPHORUS" value="0.06" />
        </value>
        <value Id="16" Name="Estuarine Forested Wetland">
            <coefficient Id="IMPERVIOUS" value="0.02" />
            <coefficient Id="NITROGEN" value="2.5" />
            <coefficient Id="PHOSPHORUS" value="0.25" />
        </value>
        <value Id="17" Name="Estuarine Scrub/Shrub Wetland">
            <coefficient Id="IMPERVIOUS" value="0.02" />
            <coefficient Id="NITROGEN" value="0.4" />
            <coefficient Id="PHOSPHORUS" value="0.04" />
        </value>
        <value Id="18" Name="Estuarine Emergent Wetland">
            <coefficient Id="IMPERVIOUS" value="0.02" />
            <coefficient Id="NITROGEN" value="0.3" />
            <coefficient Id="PHOSPHORUS" value="0.06" />
        </value>
        <value Id="19" Name="Unconsolidated Shore">
            <coefficient Id="IMPERVIOUS" value="0.0" />
            <coefficient Id="NITROGEN" value="0.0" />
            <coefficient Id="PHOSPHORUS" value="0.0" />
        </value>
        <value Id="20" Name="Barren Land">
            <coefficient Id="IMPERVIOUS" value="0.0" />
            <coefficient Id="NITROGEN" value="0.0" />
            <coefficient Id="PHOSPHORUS" value="0.0" />
        </value>
        <value Id="21" Name="Open Water" excluded="true">
            <coefficient Id="IMPERVIOUS" value="0.0" />
            <coefficient Id="NITROGEN" value="0.0" />
            <coefficient Id="PHOSPHORUS" value="0.0" />
        </value>
        <value Id="22" Name="Palustrine Aquatic Bed" excluded="true">
            <coefficient Id="IMPERVIOUS" value="0.0" />
            <coefficient Id="NITROGEN" value="0.0" />
            <coefficient Id="PHOSPHORUS" value="0.0" />
        </value>
        <value Id="23" Name="Estuarine Aquatic Bed" excluded="true">
            <coefficient Id="IMPERVIOUS" value="0.0" />
            <coefficient Id="NITROGEN" value="0.0" />
            <coefficient Id="PHOSPHORUS" value="0.0" />
        </value>
        <value Id="24" Name="Tundra">
            <coefficient Id="IMPERVIOUS" value="0.02" />
            <coefficient Id="NITROGEN" value="0.3" />
            <coefficient Id="PHOSPHORUS" value="0.06" />
        </value>
        <value Id="25" Name="Perennial Ice/Snow" excluded="true">
            <coefficient Id="IMPERVIOUS" value="0.0" />
            <coefficient Id="NITROGEN" value="0.0" />
            <coefficient Id="PHOSPHORUS" value="0.0" />
        </value>
    </values>
    <!-- 
        * The classes node contains values from a land cover raster grouped into one or more classes.
    
        * REQUIRED ATTRIBUTES
        * Id - text, unique identifier, also used for automated generation of output field name
        *    - must conform to the field naming conventions dictated by the output database system
        
        * OPTIONAL ATTRIBUTES
        * Name - text, word or phrase describing class
        * filter - text, a string of one or more tool name abbreviations separated by a ";"
        *        - possible abbreviations are: caem, flcp, flcv, lcosp, lcp, np, plcv, pm, rlcp, and splcp
        *        - used to exclude the class from the selectable classes in the tool's GUI
        * xxxxField - text, overrides ATtILA-generated field name for output
        *           - where xxxx equals a tool name abbreviation
        *           - possible abbreviations are: caem, flcp, flcv, lcosp, lcp, rlcp, and splcp
        *           - a separate xxxxField attribute can exist for each tool
        *           - must conform to the field naming conventions dictated by the output database system

        * A class can contain either values or classes but not both types.
        * Value elements contain only an Id attribute which refers to a value in a raster.
        * Values tagged as excluded="true" in the values node should not be included in any class.
     -->
    <classes>
        <class Id="NI" Name="All Natural Land Use" filter="" lcpField="NINDEX">
            <class Id="hrb" Name="Herbaceous" filter="">
                <value Id="8" />
            </class>
            <class Id="for" Name="Forest" filter="">
                <value Id="9" />
                <value Id="10" />
                <value Id="11" />
            </class>
            <class Id="shb" Name="Shrubland" filter="">
                <value Id="12" />
            </class>
            <class Id="wtl" Name="Wetland" filter="">
                <class Id="wtlw" Name="Woody Wetland" filter="">
                    <value Id="13" />
                    <value Id="14" />
                    <value Id="16" />
                    <value Id="17" />
                </class>
                <class Id="wtle" Name="Emergent Wetland" filter="">
                    <value Id="15" />
                    <value Id="18" />
                </class>
            </class>
            <class Id="bar" Name="Barren" filter="">
                <value Id="19" />
                <value Id="20" />
            </class>
            <class Id="tun" Name="Tundra" filter="">
                <value Id="24" />
            </class>
        </class>
        <class Id="UI" Name="All Human Land Use" filter="" lcpField="UINDEX">
            <class Id="dev" Name="Developed" filter="">
                <class Id="devh" Name="High Intensity Developed" filter="">
                    <value Id="2" />
                </class>
                <class Id="devm" Name="Medium Intensity Developed" filter="">
                    <value Id="3" />
                </class>
                <class Id="devl" Name="Low Intensity Developed" filter="">
                    <value Id="4" />
                </class>
                <class Id="devo" Name="Open Space Developed" filter="">
                    <value Id="5" />
                </class>
            </class>
            <class Id="agr" Name="Agriculture" filter="">
                <class Id="agrc" Name="Cultivated Crop" filter="">
                    <value Id="6" />
                </class>
                <class Id="agrp" Name="Pasture/Hay" filter="">
                    <value Id="7" />
                </class>
            </class>
        </class>
        <class Id="UC" Name="Unclassified" filter="" />
    </classes>
</lccSchema>

arrow_up Top of the page     |     arrow_left C-CAP ALL     |     arrow_right MULC Blended Levels ALL


⚠️ **GitHub.com Fallback** ⚠️