Description

This API provides access to data that describes the economic activity dependent on the oceans and Great Lakes. The data show four economic indicators (establishments, employment, wages, and GDP) for six economic sectors. Data are available for around 400 coastal counties, 30 coastal states, 8 regions, and the nation. This service can be queried for geographies and years, and a return contains all information for those parameters. For more information on the data, go to: https://coast.noaa.gov/dataregistry/search/collection/info/enow

Data Service URL

XML Format:

https://coast.noaa.gov/api/services/enow/v1/getenowdatafor?geoids={GEOIDS}&years={YEARS}&f=xml

JSON Format:

https://coast.noaa.gov/api/services/enow/v1/getenowdatafor?geoids={GEOIDS}&years={YEARS}&f=json

JSONP Format:

https://coast.noaa.gov/api/services/enow/v1/getenowdatafor?geoids={GEOIDS}&years={YEARS}&f=jsonp&callback={CALLBACK}

Parameters

{GeoID}:

This parameter uses 5-digit FIPS (Federal information processing standards) codes or a dataset-specific 2-digit region code (-0 to -7). This parameter is comma delimited, and can have multiple FIPS added (ex; GeoID=-3,45000,45019). For a list of geographies, see the supporting services below.

{Year}:

This parameter accepts comma delimited 4-digit numeric values that describes the years (ex; Year=2005,2006,2007). The data are updated annually, with 2005 as the first year of data. For the most recent year of data, see the dates available here: https://coast.noaa.gov/dataregistry/search/collection/info/enow

Response Values

GeoID: 5-digit FIPS code or a 2-digit (-x) region code specific to the geography

GeoName: Full name of the geography selected (includes County, Parish, city where applicable)

Year: 4-digit numeric value of the year selected.

OceanSectorID: 1-digit numeric value (between 1-6, 9) that is unique to the OceanSector (see below)

OceanSector: Text description of the Ocean Sector the data apply to. For more information visit https://coast.noaa.gov/data/digitalcoast/pdf/enow-naics-crosswalk-table.pdf. The sectors are (corresponding OceanSect_id in parentheses): Marine Construction (1) Living Resources (2) Offshore Mineral Extraction (3) Ship and Boat Building (4) Tourism and Recreation (5) Marine Transportation (6) All Ocean Sectors (9)

Establishments: Average annual number of business establishments in an economic sector

Employment: Average annual employment in an economic sector

Wages: Total annual wages paid to the employees in a sector (dollars)

GDP: Gross Domestic Product (value of all goods and services) produced in an economic sector (dollars)

Data Notes

Any data values of "-9999" indicate that the data are suppressed (there are data, but they cannot legally be shown). Any data value of "0" is a true zero. The first year of data is 2005. For the most recent year of data, see the dates available here: https://coast.noaa.gov/dataregistry/search/collection/info/enow

Example (1 geography and year, XML):

https://coast.noaa.gov/api/services/enow/v1/getenowdatafor?geoids=45019&years=2011&f=xml

Result:

<Geography>
    <GeographyData>
        <GeoID>45019</GeoID>
        <GeoName>Charleston County</GeoName>
        <Year>2011</Year>
        <OceanSectorId>1</OceanSectorId>
        <OceanSector>Marine Construction</OceanSector>
        <Establishments>23</Establishments>
        <Employment>251</Employment>
        <Wages>15273000</Wages>
        <GDP>32267000</GDP>
    </GeographyData>
    <GeographyData>
        <GeoID>45019</GeoID>
        <GeoName>Charleston County</GeoName>
        <Year>2011</Year>
        <OceanSectorId>2</OceanSectorId>
        <OceanSector>Living Resources</OceanSector>
        <Establishments>12</Establishments>
        <Employment>57</Employment>
        <Wages>1076000</Wages>
        <GDP>2405000</GDP>
    </GeographyData>
    <GeographyData>
        <GeoID>45019</GeoID>
        <GeoName>Charleston County</GeoName>
        <Year>2011</Year>
        <OceanSectorId>3</OceanSectorId>
        <OceanSector>Offshore Mineral Extraction</OceanSector>
        <Establishments>-9999</Establishments>
        <Employment>-9999</Employment>
        <Wages>-9999</Wages>
        <GDP>-9999</GDP>
    </GeographyData>
    <GeographyData>
        <GeoID>45019</GeoID>
        <GeoName>Charleston County</GeoName>
        <Year>2011</Year>
        <OceanSectorId>4</OceanSectorId>
        <OceanSector>Ship and Boat Building</OceanSector>
        <Establishments>12</Establishments>
        <Employment>830</Employment>
        <Wages>43442000</Wages>
        <GDP>71001000</GDP>
    </GeographyData>
    <GeographyData>
        <GeoID>45019</GeoID>
        <GeoName>Charleston County</GeoName>
        <Year>2011</Year>
        <OceanSectorId>5</OceanSectorId>
        <OceanSector>Tourism and Recreation</OceanSector>
        <Establishments>943</Establishments>
        <Employment>21212</Employment>
        <Wages>400397000</Wages>
        <GDP>928614000</GDP>
    </GeographyData>
    <GeographyData>
        <GeoID>45019</GeoID>
        <GeoName>Charleston County</GeoName>
        <Year>2011</Year>
        <OceanSectorId>6</OceanSectorId>
        <OceanSector>Marine Transportation</OceanSector>
        <Establishments>68</Establishments>
        <Employment>2160</Employment>
        <Wages>71245000</Wages>
        <GDP>132937000</GDP>
    </GeographyData>
    <GeographyData>
        <GeoID>45019</GeoID>
        <GeoName>Charleston County</GeoName>
        <Year>2011</Year>
        <OceanSectorId>9</OceanSectorId>
        <OceanSector>All Ocean Sectors</OceanSector>
        <Establishments>1070</Establishments>
        <Employment>24904</Employment>
        <Wages>554613000</Wages>
        <GDP>1219697000</GDP>
    </GeographyData>
</Geography>

Example (multiple geographies and years, json): https://coast.noaa.gov/api/services/enow/v1/getenowdatafor?geoids=-3,45000,45019&years=2010,2011&f=json

{
  "Geography": {
    "GeographyData": [
      {
        "GeoID": "45000",
        "GeoName": "South Carolina",
        "Year": "2010",
        "OceanSectorId": "1",
        "OceanSector": "Marine Construction",
        "Establishments": "61",
        "Employment": "375",
        "Wages": "19973000",
        "GDP": "40744000"
      },
      {
        "GeoID": "45000",
        "GeoName": "South Carolina",
        "Year": "2010",
        "OceanSectorId": "2",
        "OceanSector": "Living Resources",
        "Establishments": "62",
        "Employment": "248",
        "Wages": "4419000",
        "GDP": "10605000"
      },
      {
        "GeoID": "45000",
        "GeoName": "South Carolina",
        "Year": "2010",
        "OceanSectorId": "3",
        "OceanSector": "Offshore Mineral Extraction",
        "Establishments": "17",
        "Employment": "63",
        "Wages": "2460000",
        "GDP": "5376000"
      },
      {
        "GeoID": "45000",
        "GeoName": "South Carolina",
        "Year": "2010",
        "OceanSectorId": "4",
        "OceanSector": "Ship and Boat Building",
        "Establishments": "39",
        "Employment": "1981",
        "Wages": "84256000",
        "GDP": "114774000"
      },
      {
        "GeoID": "45000",
        "GeoName": "South Carolina",
        "Year": "2010",
        "OceanSectorId": "5",
        "OceanSector": "Tourism and Recreation",
        "Establishments": "2605",
        "Employment": "57329",
        "Wages": "1029426000",
        "GDP": "2401135000"
      },
      {
        "GeoID": "45000",
        "GeoName": "South Carolina",
        "Year": "2010",
        "OceanSectorId": "6",
        "OceanSector": "Marine Transportation",
        "Establishments": "138",
        "Employment": "3012",
        "Wages": "115176000",
        "GDP": "223217000"
      },
      {
        "GeoID": "45000",
        "GeoName": "South Carolina",
        "Year": "2010",
        "OceanSectorId": "9",
        "OceanSector": "All Ocean Sectors",
        "Establishments": "2922",
        "Employment": "63011",
        "Wages": "1255710000",
        "GDP": "2795850000"
      },
      {
        "GeoID": "45019",
        "GeoName": "Charleston County",
        "Year": "2010",
        "OceanSectorId": "1",
        "OceanSector": "Marine Construction",
        "Establishments": "25",
        "Employment": "232",
        "Wages": "12925000",
        "GDP": "26366000"
      },
      {
        "GeoID": "45019",
        "GeoName": "Charleston County",
        "Year": "2010",
        "OceanSectorId": "2",
        "OceanSector": "Living Resources",
        "Establishments": "12",
        "Employment": "62",
        "Wages": "1118000",
        "GDP": "2518000"
      },
      {
        "GeoID": "45019",
        "GeoName": "Charleston County",
        "Year": "2010",
        "OceanSectorId": "3",
        "OceanSector": "Offshore Mineral Extraction",
        "Establishments": "-9999",
        "Employment": "-9999",
        "Wages": "-9999",
        "GDP": "-9999"
      },
      {
        "GeoID": "45019",
        "GeoName": "Charleston County",
        "Year": "2010",
        "OceanSectorId": "4",
        "OceanSector": "Ship and Boat Building",
        "Establishments": "13",
        "Employment": "808",
        "Wages": "40208000",
        "GDP": "54772000"
      },
      {
        "GeoID": "45019",
        "GeoName": "Charleston County",
        "Year": "2010",
        "OceanSectorId": "5",
        "OceanSector": "Tourism and Recreation",
        "Establishments": "934",
        "Employment": "20841",
        "Wages": "382013000",
        "GDP": "871025000"
      },
      {
        "GeoID": "45019",
        "GeoName": "Charleston County",
        "Year": "2010",
        "OceanSectorId": "6",
        "OceanSector": "Marine Transportation",
        "Establishments": "65",
        "Employment": "1879",
        "Wages": "68774000",
        "GDP": "124028000"
      },
      {
        "GeoID": "45019",
        "GeoName": "Charleston County",
        "Year": "2010",
        "OceanSectorId": "9",
        "OceanSector": "All Ocean Sectors",
        "Establishments": "1065",
        "Employment": "24149",
        "Wages": "523391000",
        "GDP": "1123037000"
      },
      {
        "GeoID": "-3   ",
        "GeoName": "Southeast",
        "Year": "2010",
        "OceanSectorId": "1",
        "OceanSector": "Marine Construction",
        "Establishments": "497",
        "Employment": "3925",
        "Wages": "181015000",
        "GDP": "384102000"
      },
      {
        "GeoID": "-3   ",
        "GeoName": "Southeast",
        "Year": "2010",
        "OceanSectorId": "2",
        "OceanSector": "Living Resources",
        "Establishments": "511",
        "Employment": "2606",
        "Wages": "69331000",
        "GDP": "275089000"
      },
      {
        "GeoID": "-3   ",
        "GeoName": "Southeast",
        "Year": "2010",
        "OceanSectorId": "3",
        "OceanSector": "Offshore Mineral Extraction",
        "Establishments": "198",
        "Employment": "411",
        "Wages": "17760000",
        "GDP": "37234000"
      },
      {
        "GeoID": "-3   ",
        "GeoName": "Southeast",
        "Year": "2010",
        "OceanSectorId": "4",
        "OceanSector": "Ship and Boat Building",
        "Establishments": "351",
        "Employment": "6863",
        "Wages": "290878000",
        "GDP": "436967000"
      },
      {
        "GeoID": "-3   ",
        "GeoName": "Southeast",
        "Year": "2010",
        "OceanSectorId": "5",
        "OceanSector": "Tourism and Recreation",
        "Establishments": "15713",
        "Employment": "274845",
        "Wages": "5394872000",
        "GDP": "12158323000"
      },
      {
        "GeoID": "-3   ",
        "GeoName": "Southeast",
        "Year": "2010",
        "OceanSectorId": "6",
        "OceanSector": "Marine Transportation",
        "Establishments": "1283",
        "Employment": "34798",
        "Wages": "1624656000",
        "GDP": "3905534000"
      },
      {
        "GeoID": "-3   ",
        "GeoName": "Southeast",
        "Year": "2010",
        "OceanSectorId": "9",
        "OceanSector": "All Ocean Sectors",
        "Establishments": "18553",
        "Employment": "323449",
        "Wages": "7578512000",
        "GDP": "17197250000"
      },
      {
        "GeoID": "45000",
        "GeoName": "South Carolina",
        "Year": "2011",
        "OceanSectorId": "1",
        "OceanSector": "Marine Construction",
        "Establishments": "57",
        "Employment": "391",
        "Wages": "22255000",
        "GDP": "47018000"
      },
      {
        "GeoID": "45000",
        "GeoName": "South Carolina",
        "Year": "2011",
        "OceanSectorId": "2",
        "OceanSector": "Living Resources",
        "Establishments": "63",
        "Employment": "236",
        "Wages": "4320000",
        "GDP": "10138000"
      },
      {
        "GeoID": "45000",
        "GeoName": "South Carolina",
        "Year": "2011",
        "OceanSectorId": "3",
        "OceanSector": "Offshore Mineral Extraction",
        "Establishments": "17",
        "Employment": "61",
        "Wages": "2706000",
        "GDP": "6403000"
      },
      {
        "GeoID": "45000",
        "GeoName": "South Carolina",
        "Year": "2011",
        "OceanSectorId": "4",
        "OceanSector": "Ship and Boat Building",
        "Establishments": "35",
        "Employment": "2112",
        "Wages": "92179000",
        "GDP": "150655000"
      },
      {
        "GeoID": "45000",
        "GeoName": "South Carolina",
        "Year": "2011",
        "OceanSectorId": "5",
        "OceanSector": "Tourism and Recreation",
        "Establishments": "2681",
        "Employment": "58828",
        "Wages": "1075963000",
        "GDP": "2542278000"
      },
      {
        "GeoID": "45000",
        "GeoName": "South Carolina",
        "Year": "2011",
        "OceanSectorId": "6",
        "OceanSector": "Marine Transportation",
        "Establishments": "134",
        "Employment": "3397",
        "Wages": "125738000",
        "GDP": "245105000"
      },
      {
        "GeoID": "45000",
        "GeoName": "South Carolina",
        "Year": "2011",
        "OceanSectorId": "9",
        "OceanSector": "All Ocean Sectors",
        "Establishments": "2987",
        "Employment": "65027",
        "Wages": "1323162000",
        "GDP": "3001598000"
      },
      {
        "GeoID": "45019",
        "GeoName": "Charleston County",
        "Year": "2011",
        "OceanSectorId": "1",
        "OceanSector": "Marine Construction",
        "Establishments": "23",
        "Employment": "251",
        "Wages": "15273000",
        "GDP": "32267000"
      },
      {
        "GeoID": "45019",
        "GeoName": "Charleston County",
        "Year": "2011",
        "OceanSectorId": "2",
        "OceanSector": "Living Resources",
        "Establishments": "12",
        "Employment": "57",
        "Wages": "1076000",
        "GDP": "2405000"
      },
      {
        "GeoID": "45019",
        "GeoName": "Charleston County",
        "Year": "2011",
        "OceanSectorId": "3",
        "OceanSector": "Offshore Mineral Extraction",
        "Establishments": "-9999",
        "Employment": "-9999",
        "Wages": "-9999",
        "GDP": "-9999"
      },
      {
        "GeoID": "45019",
        "GeoName": "Charleston County",
        "Year": "2011",
        "OceanSectorId": "4",
        "OceanSector": "Ship and Boat Building",
        "Establishments": "12",
        "Employment": "830",
        "Wages": "43442000",
        "GDP": "71001000"
      },
      {
        "GeoID": "45019",
        "GeoName": "Charleston County",
        "Year": "2011",
        "OceanSectorId": "5",
        "OceanSector": "Tourism and Recreation",
        "Establishments": "943",
        "Employment": "21212",
        "Wages": "400397000",
        "GDP": "928614000"
      },
      {
        "GeoID": "45019",
        "GeoName": "Charleston County",
        "Year": "2011",
        "OceanSectorId": "6",
        "OceanSector": "Marine Transportation",
        "Establishments": "68",
        "Employment": "2160",
        "Wages": "71245000",
        "GDP": "132937000"
      },
      {
        "GeoID": "45019",
        "GeoName": "Charleston County",
        "Year": "2011",
        "OceanSectorId": "9",
        "OceanSector": "All Ocean Sectors",
        "Establishments": "1070",
        "Employment": "24904",
        "Wages": "554613000",
        "GDP": "1219697000"
      },
      {
        "GeoID": "-3   ",
        "GeoName": "Southeast",
        "Year": "2011",
        "OceanSectorId": "1",
        "OceanSector": "Marine Construction",
        "Establishments": "502",
        "Employment": "4022",
        "Wages": "198260000",
        "GDP": "422476000"
      },
      {
        "GeoID": "-3   ",
        "GeoName": "Southeast",
        "Year": "2011",
        "OceanSectorId": "2",
        "OceanSector": "Living Resources",
        "Establishments": "491",
        "Employment": "2801",
        "Wages": "73537000",
        "GDP": "283069000"
      },
      {
        "GeoID": "-3   ",
        "GeoName": "Southeast",
        "Year": "2011",
        "OceanSectorId": "3",
        "OceanSector": "Offshore Mineral Extraction",
        "Establishments": "141",
        "Employment": "329",
        "Wages": "14185000",
        "GDP": "27468000"
      },
      {
        "GeoID": "-3   ",
        "GeoName": "Southeast",
        "Year": "2011",
        "OceanSectorId": "4",
        "OceanSector": "Ship and Boat Building",
        "Establishments": "308",
        "Employment": "8138",
        "Wages": "359589000",
        "GDP": "665983000"
      },
      {
        "GeoID": "-3   ",
        "GeoName": "Southeast",
        "Year": "2011",
        "OceanSectorId": "5",
        "OceanSector": "Tourism and Recreation",
        "Establishments": "16319",
        "Employment": "283842",
        "Wages": "5748743000",
        "GDP": "13064959000"
      },
      {
        "GeoID": "-3   ",
        "GeoName": "Southeast",
        "Year": "2011",
        "OceanSectorId": "6",
        "OceanSector": "Marine Transportation",
        "Establishments": "1233",
        "Employment": "35601",
        "Wages": "1666989000",
        "GDP": "3880320000"
      },
      {
        "GeoID": "-3   ",
        "GeoName": "Southeast",
        "Year": "2011",
        "OceanSectorId": "9",
        "OceanSector": "All Ocean Sectors",
        "Establishments": "18994",
        "Employment": "334736",
        "Wages": "8061304000",
        "GDP": "18344275000"
      }
    ]
  }
}

Supporting Services:

Geography Lookup (XML format)

Description: Service provides a nested list of regions, the states within the region, and the counties within the state. The geographies are only listed if they are included in the dataset (8 regions, 30 states, approx 400 counties). Go here for a full listing if the counties contained within the data.

XML Format:

https://coast.noaa.gov/api/services/enow/v1/getgeoids?f=xml

JSON Format:

https://coast.noaa.gov/api/services/enow/v1/getgeoids?f=json

JSONP Format:

https://coast.noaa.gov/api/services/enow/v1/getgeoids?f=jsonp&callback={CALLBACK}

Parameters None

Response Values

Region_Name: Full name of the region

RegionID: Unique numeric identifier, between -0 and -7

StateName: Full name of the state

Sate_abbrv: Two-letter state abbreviation

StateFips: 5-digit unique identifier for the state, uses the standard FIPS (Federal information processing standards) codes. For states, it will be two digits followed by three zeros (xx000).

County_Name: Full name of county, including the identifier of County, Parish, etc.

StateCountyFips: 5-digit unique identifier for the state, uses the standard FIPS (Federal information processing standards) codes

Example: (Northeast region taken from full list)

<Regions Region_Name="Northeast" RegionID="-5">
   <State State_Name="Connecticut" State_Abbrv="CT" StateFips="09000">
      <County County_Name="Fairfield County" StateCountyFIPS="09001" />
      <County County_Name="Middlesex County" StateCountyFIPS="09007" />
      <County County_Name="New Haven County" StateCountyFIPS="09009" />
      <County County_Name="New London County" StateCountyFIPS="09011" />
   </State>
   <State State_Name="Maine" State_Abbrv="ME" StateFips="23000">
      <County County_Name="Cumberland County" StateCountyFIPS="23005" />
      <County County_Name="Hancock County" StateCountyFIPS="23009" />
      <County County_Name="Kennebec County" StateCountyFIPS="23011" />
      <County County_Name="Knox County" StateCountyFIPS="23013" />
      <County County_Name="Lincoln County" StateCountyFIPS="23015" />
      <County County_Name="Penobscot County" StateCountyFIPS="23019" />
      <County County_Name="Sagadahoc County" StateCountyFIPS="23023" />
      <County County_Name="Waldo County" StateCountyFIPS="23027" />
      <County County_Name="Washington County" StateCountyFIPS="23029" />
      <County County_Name="York County" StateCountyFIPS="23031" />
   </State>
   <State State_Name="Massachusetts" State_Abbrv="MA" StateFips="25000">
      <County County_Name="Barnstable County" StateCountyFIPS="25001" />
      <County County_Name="Bristol County" StateCountyFIPS="25005" />
      <County County_Name="Dukes County" StateCountyFIPS="25007" />
      <County County_Name="Essex County" StateCountyFIPS="25009" />
      <County County_Name="Middlesex County" StateCountyFIPS="25017" />
      <County County_Name="Nantucket County" StateCountyFIPS="25019" />
      <County County_Name="Norfolk County" StateCountyFIPS="25021" />
      <County County_Name="Plymouth County" StateCountyFIPS="25023" />
      <County County_Name="Suffolk County" StateCountyFIPS="25025" />
   </State>
   <State State_Name="New Hampshire" State_Abbrv="NH" StateFips="33000">
      <County County_Name="Rockingham County" StateCountyFIPS="33015" />
      <County County_Name="Strafford County" StateCountyFIPS="33017" />
   </State>
   <State State_Name="Rhode Island" State_Abbrv="RI" StateFips="44000">
      <County County_Name="Bristol County" StateCountyFIPS="44001" />
      <County County_Name="Kent County" StateCountyFIPS="44003" />
      <County County_Name="Newport County" StateCountyFIPS="44005" />
      <County County_Name="Providence County" StateCountyFIPS="44007" />
      <County County_Name="Washington County" StateCountyFIPS="44009" />
   </State>
</Region>

Supporting Map Services:

Regions Service (ArcGIS REST)

https://coast.noaa.gov/arcgis/rest/services/enow/ENOW_Regions/MapServer

States Service (ArcGIS REST)

https://coast.noaa.gov/arcgis/rest/services/enow/ENOW_States/MapServer

Counties Service (ArcGIS REST)

https://coast.noaa.gov/arcgis/rest/services/enow/ENOW_Counties/MapServer