Estimates of Monthly CO2 Emissions From Fossil-Fuel

Attachments

Click to expand Click to collapse

Dataset schema

Click to expand Click to collapse
FREQUENCY
               

No description available for this field.

Name (identifier)
frequency
Type
text
Sample
                       
DATE
               

No description available for this field.

Name (identifier)
date
Type
date
Sample
                       
LOCATION_ID
               

No description available for this field.

Name (identifier)
location_id
Type
text
Sample
                       
LOCATION_NAME
               

No description available for this field.

Name (identifier)
location_name
Type
text
Sample
                       
VARIABLE_NAME
               

No description available for this field.

Name (identifier)
variable_name
Type
text
Sample
                       
VALUE
               

No description available for this field.

Name (identifier)
value
Type
decimal
Sample
                       
VARIABLE_ID
               

No description available for this field.

Name (identifier)
variable_id
Type
text
Sample
                       
Lat
               

No description available for this field.

Name (identifier)
lat
Type
text
Sample
                       
Long
               

No description available for this field.

Name (identifier)
long
Type
text
Sample
                       
geo
               

No description available for this field.

Name (identifier)
geo
Type
geo point
Sample
                       

JSON Schema

The following JSON object is a standardized description of your dataset's schema. More about JSON schema.

{
  • "title":"estimates-of-monthly-co2-emissions-from-fossil-fuel-consumption-in-the-usa",
  • "type":"object",
  • "oneOf":
    [
    • {
      • "$ref":"#/definitions/estimates-of-monthly-co2-emissions-from-fossil-fuel-consumption-in-the-usa"
      }
    ]
    ,
  • "definitions":
    {
    • "estimates-of-monthly-co2-emissions-from-fossil-fuel-consumption-in-the-usa":
      {
      • "properties":
        {
        • "records":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/estimates-of-monthly-co2-emissions-from-fossil-fuel-consumption-in-the-usa_records"
            }
          }
        }
      }
      ,
    • "geoJSON":
      {
      • "title":"Geo JSON object",
      • "description":"Schema for a Geo JSON object",
      • "type":"object",
      • "required":
        [
        • "type"
        ]
        ,
      • "properties":
        {
        • "crs":
          {
          • "$ref":"#/definitions/crs"
          }
          ,
        • "bbox":
          {
          • "$ref":"#/definitions/bbox"
          }
        }
        ,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/geometry"
          }
          ,
        • {
          • "$ref":"#/definitions/geometryCollection"
          }
          ,
        • {
          • "$ref":"#/definitions/feature"
          }
          ,
        • {
          • "$ref":"#/definitions/featureCollection"
          }
        ]
      }
      ,
    • "bbox":
      {
      • "description":"A bounding box as defined by GeoJSON",
      • "type":"array",
      • "items":
        {
        • "type":"number"
        }
      }
      ,
    • "crs":
      {
      • "title":"crs",
      • "description":"a Coordinate Reference System object",
      • "type":
        [
        • "object",
        • "null"
        ]
        ,
      • "required":
        [
        • "type",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "type":"string"
          }
          ,
        • "properties":
          {
          • "type":"object"
          }
        }
        ,
      • "additionalProperties":false,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/namedCrs"
          }
          ,
        • {
          • "$ref":"#/definitions/linkedCrs"
          }
        ]
      }
      ,
    • "namedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "name"
            ]
          }
          ,
        • "properties":
          {
          • "required":
            [
            • "name"
            ]
            ,
          • "additionalProperties":false,
          • "properties":
            {
            • "name":
              {
              • "type":"string"
              }
            }
          }
        }
      }
      ,
    • "linkedObject":
      {
      • "type":"object",
      • "required":
        [
        • "href"
        ]
        ,
      • "properties":
        {
        • "href":
          {
          • "type":"string",
          • "format":"uri"
          }
          ,
        • "type":
          {
          • "type":"string",
          • "description":"Suggested values: proj4, ogjwkt, esriwkt"
          }
        }
      }
      ,
    • "linkedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "link"
            ]
          }
          ,
        • "properties":
          {
          • "$ref":"#/definitions/linkedObject"
          }
        }
      }
      ,
    • "geometryCollection":
      {
      • "title":"GeometryCollection",
      • "description":"A collection of geometry objects",
      • "required":
        [
        • "geometries"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "GeometryCollection"
            ]
          }
          ,
        • "geometries":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"http://json-schema.org/geojson/geometry.json#"
            }
          }
        }
      }
      ,
    • "feature":
      {
      • "title":"Feature",
      • "description":"A Geo JSON feature object",
      • "required":
        [
        • "geometry",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "Feature"
            ]
          }
          ,
        • "geometry":
          {
          • "oneOf":
            [
            • {
              • "type":"null"
              }
              ,
            • {
              • "$ref":"#/definitions/geometry"
              }
            ]
          }
          ,
        • "properties":
          {
          • "type":
            [
            • "object",
            • "null"
            ]
          }
          ,
        • "id":
          {
            }
          }
        }
        ,
      • "featureCollection":
        {
        • "title":"FeatureCollection",
        • "description":"A Geo JSON feature collection",
        • "required":
          [
          • "features"
          ]
          ,
        • "properties":
          {
          • "type":
            {
            • "enum":
              [
              • "FeatureCollection"
              ]
            }
            ,
          • "features":
            {
            • "type":"array",
            • "items":
              {
              • "$ref":"#/definitions/feature"
              }
            }
          }
        }
        ,
      • "geometry":
        {
        • "title":"geometry",
        • "description":"One geometry as defined by GeoJSON",
        • "type":"object",
        • "required":
          [
          • "type",
          • "coordinates"
          ]
          ,
        • "oneOf":
          [
          • {
            • "title":"Point",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Point"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/position"
                }
              }
            }
            ,
          • {
            • "title":"MultiPoint",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPoint"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/positionArray"
                }
              }
            }
            ,
          • {
            • "title":"LineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "LineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/lineString"
                }
              }
            }
            ,
          • {
            • "title":"MultiLineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiLineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/lineString"
                  }
                }
              }
            }
            ,
          • {
            • "title":"Polygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Polygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/polygon"
                }
              }
            }
            ,
          • {
            • "title":"MultiPolygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPolygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/polygon"
                  }
                }
              }
            }
          ]
          ,
        • "position":
          {
          • "description":"A single position",
          • "type":"array",
          • "minItems":2,
          • "items":
            [
            • {
              • "type":"number"
              }
              ,
            • {
              • "type":"number"
              }
            ]
            ,
          • "additionalItems":false
          }
          ,
        • "positionArray":
          {
          • "description":"An array of positions",
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/position"
            }
          }
          ,
        • "lineString":
          {
          • "description":"An array of two or more positions",
          • "allOf":
            [
            • {
              • "$ref":"#/definitions/positionArray"
              }
              ,
            • {
              • "minItems":2
              }
            ]
          }
          ,
        • "linearRing":
          {
          • "description":"An array of four positions where the first equals the last",
          • "allOf":
            [
            • {
              • "$ref":"#/definitions/positionArray"
              }
              ,
            • {
              • "minItems":4
              }
            ]
          }
          ,
        • "polygon":
          {
          • "description":"An array of linear rings",
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/linearRing"
            }
          }
        }
        ,
      • "estimates-of-monthly-co2-emissions-from-fossil-fuel-consumption-in-the-usa_records":
        {
        • "properties":
          {
          • "fields":
            {
            • "type":"object",
            • "properties":
              {
              • "frequency":
                {
                • "type":"string",
                • "title":"FREQUENCY",
                • "description":""
                }
                ,
              • "date":
                {
                • "type":"string",
                • "format":"date",
                • "title":"DATE",
                • "description":""
                }
                ,
              • "location_id":
                {
                • "type":"string",
                • "title":"LOCATION_ID",
                • "description":""
                }
                ,
              • "location_name":
                {
                • "type":"string",
                • "title":"LOCATION_NAME",
                • "description":""
                }
                ,
              • "variable_name":
                {
                • "type":"string",
                • "title":"VARIABLE_NAME",
                • "description":""
                }
                ,
              • "value":
                {
                • "type":"number",
                • "title":"VALUE",
                • "description":""
                }
                ,
              • "variable_id":
                {
                • "type":"string",
                • "title":"VARIABLE_ID",
                • "description":""
                }
                ,
              • "lat":
                {
                • "type":"string",
                • "title":"Lat",
                • "description":""
                }
                ,
              • "long":
                {
                • "type":"string",
                • "title":"Long",
                • "description":""
                }
                ,
              • "geo":
                {
                • "type":"array",
                • "minItems":2,
                • "maxItems":2,
                • "items":
                  {
                  • "type":"number"
                  }
                  ,
                • "title":"geo",
                • "description":""
                }
              }
            }
          }
        }
      }
    }

    Similar datasets

    • Estimates of Annual Fossil-Fuel CO2 Emitted for Each State in the U.S.A. and the District of Columbia for Each Year from 1980 through 2017. Consumption data for coal, petroleum, and natural gas are multiplied by their respective thermal conversion factors, which are in units of heat energy per unit of fuel consumed (i.e., per cubic foot, barrel, or ton), to calculate the amount of heat energy d…
    • This dataset contains the annual historical series of CO2 emissions by TES and GDP for the years 1971-2021 
    • This dataset is based on territorial emissions, which do not account for emissions embedded in traded goods.It includes Emissions from fossil fuels and industry, but not land-use change emissions. International aviation and shipping are included as separate entities, as they are not included in any country's emissions.Data originally from Global Carbon Project – Global Carbon Budget.