NASA-IMPACT / veda-data-pipelines

data transformation - ingestion - publication pipelines to support VEDA
Other
13 stars 6 forks source link

Add SEDAC Social Vulnerability Index Dataset #82

Closed leothomas closed 2 years ago

leothomas commented 2 years ago

Data source:

https://sedac.ciesin.columbia.edu/data/set/usgrid-us-social-vulnerability-index/data-download

CDC's Social Vulnerability Index uses 15 variables at the census tract level. The data comes from the U.S. decennial census for the years 2000 & 2010, and the American Community Survey (ACS) for the years 2014, 2016, and 2018. It is a hierarchical additive index (Tate, 2013), with the component elements of CDC’s SVI including the following for 4 themes: Socioeconomic Status (Below Poverty, Unemployed, Income, No High School Diploma), Household Composition & Disability (Aged 65 or Older, Aged 17 or Younger, Civilian with a Disability, Single-Parent Households), Minority Status & Language (Minority, Speaks English “Less than Well”), and Housing Type & Transportation (Multi-Unit Structures, Mobile Homes, Crowding, No Vehicle, Group Quarters). While state ranked versions of the indices are available, note that all of these data which are gridded are from the national U.S. data set version.

The dataset is loosely organized as follows:

social_vulnerability_index  -> [ socioeconomic | housing | household | minority | overall ] -> [_default | nopop]

Note:

_default refers to COGs that covers ALL of the US (continental + AK + HI), nopop refers to COGs that have a mask applied to remove areas with 0 population as well as bodies of water.

Processing Code:

import json
import datetime
import rio_stac
import os
import subprocess
import boto3

# GDAL attempts to list the directory when it opens a file, in order to 
# find "sidecar" files. This setting tells GDAL to assume the directory
# is empty when opening a file, saving both on S3 LIST costs and 
# runtime. See: https://github.com/OSGeo/gdal/issues/909
os.environ["GDAL_DISABLE_READDIR_ON_OPEN"] = "EMPTY_DIR"

bucket = boto3.resource("s3").Bucket("climatedashboard-data")

years = [2000, 2010, 2014, 2016, 2018]
categories = ["household", "housing", "minority", "socioeconomic", "overall"]

def filepath(year:int, category:str, population_mask:bool) -> str: 
    return f"usgrid-us-social-vulnerability-index-tract-{year}-wgs84-geotiff/usgrid-us-social-vulnerability-index-tract-{year}-wgs84-geotiff/svi_{year}_tract_{category}_wgs84{'_nopop' if population_mask else ''}.tif"

def generate_cog(year, category, population_mask):
    source_filepath = filepath(year, category, population_mask)
    cog_filepath = source_filepath.split("/")[-1].replace(".tif", "_cog.tif")

    create_cog = subprocess.call(f"rio cogeo create ./{source_filepath} ./{cog_filepath} --profile COMPRESS=DEFLATE --blocksize 512 --overview-blocksize 512 --allow-intermediate-compression", shell=True)
    validate_cog = subprocess.call(f"rio cogeo validate ./{cog_filepath}", shell=True)

    s3_key = f"social_vulnerability_index/{cog_filepath}"
    bucket.upload_file(Filename=cog_filepath, Key=s3_key)

    return f"s3://{bucket.name}/{s3_key}"

def generate_stac(year, category, cog_s3_key):

    r = rio_stac.stac.create_stac_item(
        source = cog_s3_key,
        collection = f"social-vulnerability-index-{category}", 
        #properties = {"cmip6:model":"ensemble", "cmip6:ssp":ssp, "cmip6:variable": var},
        input_datetime=datetime.datetime(year, 1, 1),
        #collection_url=None # TODO
        with_proj=True,
        with_raster=True
    )

    return r

def process(year, category, population_mask): 
    cog_s3_key = generate_cog(year, category, population_mask)
    stac_item =  generate_stac(year, category, cog_s3_key)
    return stac_item

stac_items = [process(year, category, population_mask) for year in years for category in categories for population_mask in [True,False]]

# sort by date (to optimize loading) and dump to file for safekeeping
with open("social-vulnerability-index-items-sorted.json", "w") as f: 
    f.write("\n".join([json.dumps(x.to_dict()) for x in sorted(stac_items, key=lambda x: x.to_dict()["properties"]["datetime"])]))

COLLECTIONS (social-vulnerability-index-collections.json):

"id":"social-vulnerability-index-overall","title":"Social Vulnerability Index (Overall)","description":"Overall Social Vulnerability Index - Percentile ranking","stac_version":"1.0.0","license":"public-domain","links":[],"extent":{"spatial":{"bbox":[ [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688]]},"temporal":{"interval":[["2000-01-01T00:00:00Z","2018-01-01T00:00:00Z"]]}}}
{"id":"social-vulnerability-index-household","title":"Social Vulnerability Index (Houshold)","description":"Household Composition & Disability (Aged 65 or Older, Aged 17 or Younger, Civilian with a Disability, Single-Parent Households) - Percentile ranking","stac_version":"1.0.0","license":"public-domain","links":[],"extent":{"spatial":{"bbox":[ [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688]]},"temporal":{"interval":[["2000-01-01T00:00:00Z","2018-01-01T00:00:00Z"]]}}}
{"id":"social-vulnerability-index-housing","title":"Social Vulnerability Index (Housing)","description":"Housing Type & Transportation (Multi-Unit Structures, Mobile Homes, Crowding, No Vehicle, Group Quarters) - Percentile ranking","stac_version":"1.0.0","license":"public-domain","links":[],"extent":{"spatial":{"bbox":[ [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688]]},"temporal":{"interval":[["2000-01-01T00:00:00Z","2018-01-01T00:00:00Z"]]}}}
{"id":"social-vulnerability-index-minority","title":"Social Vulnerability Index (Minority)","description":"Minority Status & Language (Minority, Speaks English “Less than Well”) - Percentile ranking","stac_version":"1.0.0","license":"public-domain","links":[],"extent":{"spatial":{"bbox":[ [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688]]},"temporal":{"interval":[["2000-01-01T00:00:00Z","2018-01-01T00:00:00Z"]]}}}
{"id":"social-vulnerability-index-socioeconomic","title":"Social Vulnerability Index (SocioEconomic)","description":"Socioeconomic Status (Below Poverty, Unemployed, Income, No High School Diploma) - Percentile ranking","stac_version":"1.0.0","license":"public-domain","links":[],"extent":{"spatial":{"bbox":[ [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688]]},"temporal":{"interval":[["2000-01-01T00:00:00Z","2018-01-01T00:00:00Z"]]}}}

ITEMS (social-vulnerability-index-items-sorted.json):

{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2000_tract_household_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2000-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-household", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2000_tract_household_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5058384340226956, "minimum": 0.0, "maximum": 0.9990000128746033, "stddev": 0.2262215117976263, "valid_percent": 11.465409873188406}, "histogram": {"count": 11, "min": 0.0, "max": 0.9990000128746033, "buckets": [2409, 3378, 5363, 6980, 9268, 9242, 7590, 6422, 3705, 2350]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-household"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2000_tract_household_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2000-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-household", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2000_tract_household_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5139610195797517, "minimum": 0.0, "maximum": 0.9990000128746033, "stddev": 0.21842600085514224, "valid_percent": 18.62868788819876}, "histogram": {"count": 11, "min": 0.0, "max": 0.9990000128746033, "buckets": [4277, 4792, 7878, 9198, 12558, 18953, 14971, 11687, 4865, 2957]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-household"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2000_tract_housing_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2000-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-housing", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2000_tract_housing_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5153798734613892, "minimum": 0.0, "maximum": 1.0, "stddev": 0.25584187497566024, "valid_percent": 11.465409873188406}, "histogram": {"count": 11, "min": 0.0, "max": 1.0, "buckets": [2788, 5064, 5941, 6466, 5960, 7904, 6869, 6352, 5498, 3865]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-housing"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2000_tract_housing_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2000-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-housing", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2000_tract_housing_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5476898619974819, "minimum": 0.0, "maximum": 1.0, "stddev": 0.23929761730721247, "valid_percent": 18.62868788819876}, "histogram": {"count": 11, "min": 0.0, "max": 1.0, "buckets": [3460, 6239, 7571, 8642, 8863, 15532, 13578, 15151, 7551, 5549]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-housing"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2000_tract_minority_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2000-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-minority", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2000_tract_minority_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.37812034338794154, "minimum": 0.0, "maximum": 1.0, "stddev": 0.28670767940541286, "valid_percent": 11.465409873188406}, "histogram": {"count": 11, "min": 0.0, "max": 1.0, "buckets": [11265, 8703, 7467, 5787, 5068, 4601, 3870, 3321, 3091, 3534]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-minority"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2000_tract_minority_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2000-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-minority", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2000_tract_minority_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.46983603043327254, "minimum": 0.0, "maximum": 1.0, "stddev": 0.32749037278437215, "valid_percent": 18.62868788819876}, "histogram": {"count": 11, "min": 0.0, "max": 1.0, "buckets": [14239, 11423, 10493, 7762, 7929, 7837, 5488, 6225, 4869, 15871]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-minority"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2000_tract_socioeconomic_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2000-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-socioeconomic", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2000_tract_socioeconomic_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5742737889502177, "minimum": 0.0, "maximum": 0.9990000128746033, "stddev": 0.22296835705296605, "valid_percent": 11.465409873188406}, "histogram": {"count": 11, "min": 0.0, "max": 0.9990000128746033, "buckets": [1306, 1990, 3546, 5982, 7924, 8845, 9106, 8192, 5655, 4161]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-socioeconomic"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2000_tract_socioeconomic_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2000-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-socioeconomic", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2000_tract_socioeconomic_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.6285156080413736, "minimum": 0.0, "maximum": 0.9990000128746033, "stddev": 0.22380393738494053, "valid_percent": 18.62868788819876}, "histogram": {"count": 11, "min": 0.0, "max": 0.9990000128746033, "buckets": [1545, 2174, 4146, 7538, 10641, 11835, 17893, 12526, 11412, 12426]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-socioeconomic"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2000_tract_overall_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2000-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-overall", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2000_tract_overall_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.514235972576137, "minimum": 0.0, "maximum": 0.9990000128746033, "stddev": 0.231466252566547, "valid_percent": 11.465409873188406}, "histogram": {"count": 11, "min": 0.0, "max": 0.9990000128746033, "buckets": [1775, 4113, 5380, 7076, 8911, 8599, 7344, 6170, 4769, 2570]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-overall"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2000_tract_overall_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2000-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-overall", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2000_tract_overall_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5769154259735608, "minimum": 0.0, "maximum": 0.9990000128746033, "stddev": 0.2371425110742133, "valid_percent": 18.62868788819876}, "histogram": {"count": 11, "min": 0.0, "max": 0.9990000128746033, "buckets": [2102, 4826, 6524, 9525, 11741, 12291, 11156, 14645, 15245, 4081]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-overall"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2010_tract_household_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2010-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-household", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2010_tract_household_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.3215508823032574, "minimum": 0.0, "maximum": 0.9990000128746033, "stddev": 0.2575005539521092, "valid_percent": 11.520202510351966}, "histogram": {"count": 11, "min": 0.0, "max": 0.9990000128746033, "buckets": [12817, 11329, 7848, 6236, 4448, 3888, 3805, 2863, 2443, 1301]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-household"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2010_tract_household_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2010-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-household", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2010_tract_household_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.4044363643301743, "minimum": 0.0, "maximum": 0.9990000128746033, "stddev": 0.2878048547025411, "valid_percent": 18.71016918995859}, "histogram": {"count": 11, "min": 0.0, "max": 0.9990000128746033, "buckets": [15835, 14783, 9936, 9960, 7658, 5587, 8153, 7196, 9955, 3476]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-household"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2010_tract_housing_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2010-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-housing", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2010_tract_housing_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.47634892801675033, "minimum": 0.0, "maximum": 0.9987999796867371, "stddev": 0.242577426958785, "valid_percent": 11.358453027950311}, "histogram": {"count": 11, "min": 0.0, "max": 0.9987999796867371, "buckets": [2870, 5791, 6508, 7514, 8063, 7282, 6672, 5110, 3486, 2882]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-housing"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2010_tract_housing_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2010-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-housing", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2010_tract_housing_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5392883271405817, "minimum": 0.0, "maximum": 0.9987999796867371, "stddev": 0.26557773946634416, "valid_percent": 17.644037914078677}, "histogram": {"count": 11, "min": 0.0, "max": 0.9987999796867371, "buckets": [3557, 7644, 8212, 10132, 10204, 10624, 9307, 7972, 8834, 10780]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-housing"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2010_tract_minority_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2010-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-minority", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2010_tract_minority_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5389274081114641, "minimum": 0.0, "maximum": 0.998199999332428, "stddev": 0.2511605188828235, "valid_percent": 11.520202510351966}, "histogram": {"count": 11, "min": 0.0, "max": 0.998199999332428, "buckets": [1787, 4501, 5741, 6398, 6318, 7387, 7456, 6285, 6385, 4720]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-minority"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2010_tract_minority_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2010-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-minority", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2010_tract_minority_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.6071392027955781, "minimum": 0.0, "maximum": 0.998199999332428, "stddev": 0.2593630016975984, "valid_percent": 18.71016918995859}, "histogram": {"count": 11, "min": 0.0, "max": 0.998199999332428, "buckets": [2334, 5398, 7281, 7887, 8445, 10340, 10538, 11224, 13491, 15601]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-minority"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2010_tract_socioeconomic_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2010-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-socioeconomic", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2010_tract_socioeconomic_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.486884123587174, "minimum": 0.0, "maximum": 0.9990000128746033, "stddev": 0.25085051286971627, "valid_percent": 11.520202510351966}, "histogram": {"count": 11, "min": 0.0, "max": 0.9990000128746033, "buckets": [2552, 6429, 6112, 7997, 7139, 7308, 6544, 4995, 3876, 4026]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-socioeconomic"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2010_tract_socioeconomic_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2010-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-socioeconomic", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2010_tract_socioeconomic_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5338847421762716, "minimum": 0.0, "maximum": 0.9990000128746033, "stddev": 0.2780592135271069, "valid_percent": 18.71016918995859}, "histogram": {"count": 11, "min": 0.0, "max": 0.9990000128746033, "buckets": [5106, 9386, 8479, 11022, 8926, 9228, 9765, 6855, 12742, 11030]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-socioeconomic"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2010_tract_overall_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2010-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-overall", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2010_tract_overall_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5127576144687422, "minimum": 0.0, "maximum": 0.9998000264167786, "stddev": 0.23493527884847198, "valid_percent": 11.358453027950311}, "histogram": {"count": 11, "min": 0.0, "max": 0.9998000264167786, "buckets": [2087, 3553, 5912, 7980, 7319, 7969, 7198, 6779, 4947, 2434]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-overall"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2010_tract_overall_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2010-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-overall", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2010_tract_overall_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5554206212900786, "minimum": 0.0, "maximum": 0.9998000264167786, "stddev": 0.24786964505608824, "valid_percent": 17.644037914078677}, "histogram": {"count": 11, "min": 0.0, "max": 0.9998000264167786, "buckets": [3014, 5075, 7317, 10587, 9720, 11742, 9750, 11277, 12493, 6291]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-overall"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2014_tract_household_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2014-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-household", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2014_tract_household_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5883923042634297, "minimum": 0.0, "maximum": 0.9998999834060669, "stddev": 0.2409341591145785, "valid_percent": 11.50968879399586}, "histogram": {"count": 11, "min": 0.0, "max": 0.9998999834060669, "buckets": [1508, 2853, 3944, 5764, 6196, 7198, 7697, 8688, 7627, 5451]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-household"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2014_tract_household_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2014-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-household", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2014_tract_household_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.6121692006786181, "minimum": 0.0, "maximum": 0.9998999834060669, "stddev": 0.24170715293395384, "valid_percent": 18.710573563664596}, "histogram": {"count": 11, "min": 0.0, "max": 0.9998999834060669, "buckets": [2800, 3853, 5602, 8271, 8606, 10870, 11784, 16354, 13233, 11168]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-household"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2014_tract_housing_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2014-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-housing", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2014_tract_housing_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5443252945710221, "minimum": 0.0, "maximum": 0.9995999932289124, "stddev": 0.24999569416204093, "valid_percent": 11.50968879399586}, "histogram": {"count": 11, "min": 0.0, "max": 0.9995999932289124, "buckets": [1689, 4273, 5386, 6405, 7022, 7188, 7158, 5947, 7841, 4017]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-housing"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2014_tract_housing_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2014-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-housing", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2014_tract_housing_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.6165982763720945, "minimum": 0.0, "maximum": 0.9995999932289124, "stddev": 0.2580893492954417, "valid_percent": 18.710573563664596}, "histogram": {"count": 11, "min": 0.0, "max": 0.9995999932289124, "buckets": [2086, 5013, 6387, 7981, 10280, 9803, 10099, 8322, 20889, 11681]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-housing"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2014_tract_minority_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2014-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-minority", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2014_tract_minority_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.329441642164828, "minimum": 0.0, "maximum": 0.9986000061035156, "stddev": 0.2527385440619076, "valid_percent": 11.50968879399586}, "histogram": {"count": 11, "min": 0.0, "max": 0.9986000061035156, "buckets": [12106, 11118, 8018, 6124, 4706, 4412, 3777, 3580, 1901, 1184]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-minority"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2014_tract_minority_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2014-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-minority", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2014_tract_minority_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.4112309003576793, "minimum": 0.0, "maximum": 1.0, "stddev": 0.2737728793935278, "valid_percent": 18.710573563664596}, "histogram": {"count": 11, "min": 0.0, "max": 1.0, "buckets": [15418, 13249, 10354, 8256, 7040, 10203, 7870, 13392, 3952, 2807]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-minority"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2014_tract_socioeconomic_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2014-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-socioeconomic", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2014_tract_socioeconomic_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5033848743893545, "minimum": 0.00019999999494757503, "maximum": 0.9995999932289124, "stddev": 0.24024675487957653, "valid_percent": 11.50584724378882}, "histogram": {"count": 11, "min": 0.00019999999494757503, "max": 0.9995999932289124, "buckets": [2222, 4500, 6669, 7662, 7167, 7276, 7387, 7095, 4275, 2654]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-socioeconomic"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2014_tract_socioeconomic_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2014-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-socioeconomic", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2014_tract_socioeconomic_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5656421150020005, "minimum": 0.00019999999494757503, "maximum": 0.9995999932289124, "stddev": 0.2517596077851214, "valid_percent": 18.698442352484474}, "histogram": {"count": 11, "min": 0.00019999999494757503, "max": 0.9995999932289124, "buckets": [2824, 5678, 8949, 9787, 9518, 10064, 11164, 15997, 10464, 8036]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-socioeconomic"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2014_tract_overall_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2014-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-overall", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2014_tract_overall_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.49808064720728557, "minimum": 0.0, "maximum": 0.9976000189781189, "stddev": 0.24672430821874572, "valid_percent": 11.50584724378882}, "histogram": {"count": 11, "min": 0.0, "max": 0.9976000189781189, "buckets": [2551, 5175, 6378, 6890, 7847, 7736, 6608, 5478, 4962, 3282]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-overall"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2014_tract_overall_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2014-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-overall", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2014_tract_overall_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5762645249429612, "minimum": 0.0, "maximum": 0.9976000189781189, "stddev": 0.26485246256031475, "valid_percent": 18.698442352484474}, "histogram": {"count": 11, "min": 0.0, "max": 0.9976000189781189, "buckets": [3112, 6090, 8473, 8684, 10106, 10799, 10018, 9560, 13741, 11898]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-overall"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2016_tract_household_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2016-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-household", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2016_tract_household_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5897710015241492, "minimum": 0.0, "maximum": 0.9994999766349792, "stddev": 0.24063518445536264, "valid_percent": 11.50786911231884}, "histogram": {"count": 11, "min": 0.0, "max": 0.9994999766349792, "buckets": [1714, 2541, 3817, 5295, 5944, 7772, 8563, 8506, 7423, 5342]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-household"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2016_tract_household_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2016-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-household", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2016_tract_household_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.6147715532735489, "minimum": 0.0, "maximum": 0.9994999766349792, "stddev": 0.23933912669241375, "valid_percent": 18.70208171583851}, "histogram": {"count": 11, "min": 0.0, "max": 0.9994999766349792, "buckets": [3054, 3598, 5294, 6687, 7764, 11980, 13987, 16810, 13574, 9751]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-household"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2016_tract_housing_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2016-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-housing", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2016_tract_housing_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5348791766208225, "minimum": 0.0, "maximum": 0.9987000226974487, "stddev": 0.25864277723483486, "valid_percent": 11.488863548136646}, "histogram": {"count": 11, "min": 0.0, "max": 0.9987000226974487, "buckets": [1978, 5054, 5958, 5923, 6772, 6564, 7291, 5934, 5689, 5660]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-housing"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2016_tract_housing_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2016-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-housing", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2016_tract_housing_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.6164744379109215, "minimum": 0.0, "maximum": 0.9987000226974487, "stddev": 0.2708289616120292, "valid_percent": 18.666496829710145}, "histogram": {"count": 11, "min": 0.0, "max": 0.9987000226974487, "buckets": [2386, 5818, 7378, 7180, 8922, 9089, 11143, 8887, 9788, 21732]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-housing"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2016_tract_minority_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2016-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-minority", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2016_tract_minority_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.3205502198222097, "minimum": 0.0, "maximum": 0.9994000196456909, "stddev": 0.2500472088667705, "valid_percent": 11.508677859730849}, "histogram": {"count": 11, "min": 0.0, "max": 0.9994000196456909, "buckets": [12555, 11375, 7782, 6171, 4871, 4569, 3438, 3163, 1958, 1039]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-minority"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2016_tract_minority_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2016-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-minority", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2016_tract_minority_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.3944595117713186, "minimum": 0.0, "maximum": 1.0, "stddev": 0.2661284898811445, "valid_percent": 18.704912331780537}, "histogram": {"count": 11, "min": 0.0, "max": 1.0, "buckets": [15002, 14866, 10246, 8318, 8664, 10697, 8088, 10499, 4233, 1900]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-minority"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2016_tract_socioeconomic_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2016-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-socioeconomic", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2016_tract_socioeconomic_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5080811555277265, "minimum": 0.0005000000237487257, "maximum": 0.9998000264167786, "stddev": 0.24215231047000213, "valid_percent": 11.503421001552795}, "histogram": {"count": 11, "min": 0.0005000000237487257, "max": 0.9998000264167786, "buckets": [1947, 4815, 6765, 7088, 7323, 7669, 6756, 6808, 4649, 3075]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-socioeconomic"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2016_tract_socioeconomic_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2016-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-socioeconomic", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2016_tract_socioeconomic_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5727537372360678, "minimum": 9.999999747378752e-05, "maximum": 0.9998000264167786, "stddev": 0.2546162897477641, "valid_percent": 18.691770186335404}, "histogram": {"count": 11, "min": 9.999999747378752e-05, "max": 0.9998000264167786, "buckets": [2252, 6312, 8422, 9279, 10499, 10386, 9560, 12643, 12962, 10133]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-socioeconomic"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2016_tract_overall_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2016-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-overall", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2016_tract_overall_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.49708547565972466, "minimum": 0.00019999999494757503, "maximum": 0.9987000226974487, "stddev": 0.24968713621137287, "valid_percent": 11.485021997929607}, "histogram": {"count": 11, "min": 0.00019999999494757503, "max": 0.9987000226974487, "buckets": [2786, 5181, 6560, 6838, 7501, 7651, 6859, 5240, 4098, 4090]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-overall"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2016_tract_overall_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2016-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-overall", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2016_tract_overall_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5787861306324368, "minimum": 0.0, "maximum": 0.9987000226974487, "stddev": 0.2700090323788396, "valid_percent": 18.657398421325052}, "histogram": {"count": 11, "min": 0.0, "max": 0.9987000226974487, "buckets": [3262, 6477, 8260, 8624, 9983, 10259, 10406, 9321, 6804, 18882]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-overall"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2018_tract_household_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2018-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-household", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2018_tract_household_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.6007314764381347, "minimum": 0.00026732473634183407, "maximum": 0.9998999834060669, "stddev": 0.23790564463549882, "valid_percent": 11.507262551759833}, "histogram": {"count": 11, "min": 0.00026732473634183407, "max": 0.9998999834060669, "buckets": [1319, 2695, 3883, 4376, 6140, 7476, 8587, 9197, 7344, 5897]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-household"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2018_tract_household_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2018-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-household", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2018_tract_household_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.6245003952916374, "minimum": 0.0, "maximum": 0.9998999834060669, "stddev": 0.23815498832626025, "valid_percent": 18.7012729684265}, "histogram": {"count": 11, "min": 0.0, "max": 0.9998999834060669, "buckets": [2662, 3857, 5544, 5489, 8389, 10277, 12419, 20565, 12377, 10916]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-household"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2018_tract_housing_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2018-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-housing", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2018_tract_housing_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5338343329263464, "minimum": 0.0, "maximum": 0.9987999796867371, "stddev": 0.26067054515335913, "valid_percent": 11.48825698757764}, "histogram": {"count": 11, "min": 0.0, "max": 0.9987999796867371, "buckets": [2109, 5109, 5964, 6171, 6403, 6803, 6711, 5606, 6294, 5650]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-housing"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2018_tract_housing_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2018-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-housing", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2018_tract_housing_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.6200335716104082, "minimum": 0.0, "maximum": 0.9987999796867371, "stddev": 0.27667810609603316, "valid_percent": 18.664272774327124}, "histogram": {"count": 11, "min": 0.0, "max": 0.9987999796867371, "buckets": [2489, 6288, 7190, 7646, 8214, 9321, 9351, 7644, 12449, 21720]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-housing"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2018_tract_minority_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2018-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-minority", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2018_tract_minority_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.31765892101055887, "minimum": 0.0, "maximum": 0.9994999766349792, "stddev": 0.24641906597923727, "valid_percent": 11.508273486024844}, "histogram": {"count": 11, "min": 0.0, "max": 0.9994999766349792, "buckets": [12558, 11077, 7690, 6414, 5884, 4088, 3775, 2525, 1915, 993]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-minority"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2018_tract_minority_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2018-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-minority", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2018_tract_minority_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.3867790475354016, "minimum": 0.0, "maximum": 0.9995999932289124, "stddev": 0.2583882899577331, "valid_percent": 18.704305771221534}, "histogram": {"count": 11, "min": 0.0, "max": 0.9995999932289124, "buckets": [15278, 14084, 10270, 8768, 11483, 9035, 11720, 4968, 5141, 1763]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-minority"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2018_tract_socioeconomic_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2018-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-socioeconomic", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2018_tract_socioeconomic_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5160200642328127, "minimum": 0.00039999998989515007, "maximum": 1.0, "stddev": 0.2429981835132333, "valid_percent": 11.493109472049689}, "histogram": {"count": 11, "min": 0.00039999998989515007, "max": 1.0, "buckets": [1802, 4116, 6962, 7131, 7503, 7097, 7422, 6191, 5237, 3383]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-socioeconomic"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2018_tract_socioeconomic_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2018-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-socioeconomic", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2018_tract_socioeconomic_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5814566061159065, "minimum": 9.999999747378752e-05, "maximum": 1.0, "stddev": 0.2566145050379606, "valid_percent": 18.668518698240167}, "histogram": {"count": 11, "min": 9.999999747378752e-05, "max": 1.0, "buckets": [2052, 5254, 8997, 9583, 10430, 9763, 10605, 10831, 14751, 10067]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-socioeconomic"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2018_tract_overall_wgs84_nopop_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2018-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-overall", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2018_tract_overall_wgs84_nopop_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5012285192383931, "minimum": 0.0, "maximum": 0.9998000264167786, "stddev": 0.2507121200411164, "valid_percent": 11.475114842132506}, "histogram": {"count": 11, "min": 0.0, "max": 0.9998000264167786, "buckets": [2760, 4927, 6770, 6962, 7015, 7595, 6791, 5678, 4035, 4222]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-overall"}
{"type": "Feature", "stac_version": "1.0.0", "id": "svi_2018_tract_overall_wgs84_cog.tif", "properties": {"proj:epsg": 4326, "proj:geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "proj:bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "proj:shape": [6297, 13353], "proj:transform": [0.00833333330000749, 0.0, -178.23333334, 0.0, -0.00833333329998412, 71.383332688, 0.0, 0.0, 1.0], "datetime": "2018-01-01T00:00:00Z"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.23333334, 71.383332688], [-178.23333334, 18.908332897999998], [-66.958333785, 18.908332897999998], [-66.958333785, 71.383332688], [-178.23333334, 71.383332688]]]}, "links": [{"rel": "collection", "href": "social-vulnerability-index-overall", "type": "application/json"}], "assets": {"asset": {"href": "s3://climatedashboard-data/social_vulnerability_index/svi_2018_tract_overall_wgs84_cog.tif", "raster:bands": [{"data_type": "float32", "scale": 1.0, "offset": 0.0, "sampling": "area", "nodata": "inf", "statistics": {"mean": 0.5843708210592843, "minimum": 0.0, "maximum": 0.9998000264167786, "stddev": 0.27337772204503596, "valid_percent": 18.634753493788818}, "histogram": {"count": 11, "min": 0.0, "max": 0.9998000264167786, "buckets": [3361, 6051, 8673, 8752, 9476, 9934, 10225, 8652, 7939, 19103]}}], "roles": []}}, "bbox": [-178.23333334, 18.908332897999998, -66.958333785, 71.383332688], "stac_extensions": ["https://stac-extensions.github.io/projection/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json"], "collection": "social-vulnerability-index-overall"}

Next Steps:

leothomas commented 2 years ago

Note: COGs are at s3://climatedashboard-data/social_vulnerability_index/

slesaad commented 2 years ago

Published to the dev api:

The 10 collections:

and the corresponding items/cogs

Links: https://dev-stac.delta-backend.xyz/collections/social-vulnerability-index-overall/items https://dev-stac.delta-backend.xyz/collections/social-vulnerability-index-housing/items https://dev-stac.delta-backend.xyz/collections/social-vulnerability-index-household/items https://dev-stac.delta-backend.xyz/collections/social-vulnerability-index-minority/items https://dev-stac.delta-backend.xyz/collections/social-vulnerability-index-socioeconomic/items

https://dev-stac.delta-backend.xyz/collections/social-vulnerability-index-overall-nopop/items https://dev-stac.delta-backend.xyz/collections/social-vulnerability-index-housing-nopop/items https://dev-stac.delta-backend.xyz/collections/social-vulnerability-index-household-nopop/items https://dev-stac.delta-backend.xyz/collections/social-vulnerability-index-minority-nopop/items https://dev-stac.delta-backend.xyz/collections/social-vulnerability-index-socioeconomic-nopop/items

Please verify the metadata so I can publish it to the staging api too. cc: @anayeaye @leothomas @abarciauskas-bgse @xhagrg

abarciauskas-bgse commented 2 years ago

@slesaad @anayeaye @sharkinsspatial @leothomas curious what you think about this case: The social vulnerability index includes 4 sub indices and 1 overall index of social vulnerability and has 2 variants - one with a population mask (masking places with no population such as bodies of water) and one without that mask. Each of these indices is provided every 2 years from 2000 to 2018.

I'm leaning towards having 1 general collection for the social vulnerability index and having an additional "properties" field which identifies the specific index, for example:

"properties": {
        "datetime": "2018-01-01T00:00:00Z",
        "svi_index": "housing-nopop"

The current code produces a collection for each index, which seems ok but leads to a lot more specific collections. It seems like this is similar to how CMIP6 has many models and Shared Socioeconomic Pathways (SSPs) but, I think, we decided to group them all into one collection.

anayeaye commented 2 years ago

^ I still like the idea of moving towards including like items together in the same filterable collection but I thought the decision was to default to single-asset/layer collections.

I am going to review the metadata for these "flat" collections for now to unblock and then maybe we can revisit this to consider a single collection in the future?

Collection & Item metadata QA

anayeaye commented 2 years ago

These collections all look great. I think we may want to include these in our discussion about defaults for how we represent datetime in the database (could/should these also be ranges in the future?).

slesaad commented 2 years ago

Links: https://staging-stac.delta-backend.xyz/collections/social-vulnerability-index-overall/items https://staging-stac.delta-backend.xyz/collections/social-vulnerability-index-housing/items https://staging-stac.delta-backend.xyz/collections/social-vulnerability-index-household/items https://staging-stac.delta-backend.xyz/collections/social-vulnerability-index-minority/items https://staging-stac.delta-backend.xyz/collections/social-vulnerability-index-socioeconomic/items

https://staging-stac.delta-backend.xyz/collections/social-vulnerability-index-overall-nopop/items https://staging-stac.delta-backend.xyz/collections/social-vulnerability-index-housing-nopop/items https://staging-stac.delta-backend.xyz/collections/social-vulnerability-index-household-nopop/items https://staging-stac.delta-backend.xyz/collections/social-vulnerability-index-minority-nopop/items https://staging-stac.delta-backend.xyz/collections/social-vulnerability-index-socioeconomic-nopop/items

cc @abarciauskas-bgse @anayeaye

abarciauskas-bgse commented 2 years ago

👏🏽 @slesaad thanks, do you want to close this ticket?