charts
Data license: CC-BY
1 row where publishedByUserId = 9 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date), lastEditedAt (date), publishedAt (date)
id ▲ | slug | type | config | createdAt | updatedAt | lastEditedAt | publishedAt | lastEditedByUserId | publishedByUserId | isIndexable | title | subtitle | note | title_plus_variant | configWithDefaults |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2600 | terrain-ruggedness-index | LineChart | { "id": 2600, "map": { "colorScale": { "baseColorScheme": "Purples", "binningStrategy": "equalInterval", "customNumericColors": [], "customNumericLabels": [], "customNumericValues": [], "customCategoryColors": {}, "customCategoryLabels": {}, "customHiddenCategories": {} }, "columnSlug": "97402", "projection": "World" }, "tab": "map", "slug": "terrain-ruggedness-index", "type": "LineChart", "title": "Terrain Ruggedness Index", "xAxis": { "scaleType": "linear" }, "yAxis": { "max": 0, "min": 0, "scaleType": "linear" }, "$schema": "https://files.ourworldindata.org/schemas/grapher-schema.004.json", "version": 3, "subtitle": "Indicates how jagged or flat the terrain of a country is on average. Ruggedness is measured in metres of elevation difference for grid points 30 arc-seconds (926 metres on the equator or any meridian) apart.", "hasMapTab": true, "originUrl": "ourworldindata.org/land-use", "stackMode": "absolute", "dimensions": [ { "display": {}, "property": "y", "variableId": 97402 } ], "hasChartTab": false, "isPublished": true, "hideRelativeToggle": true, "selectedEntityNames": [ "United States" ], "hideAnnotationFieldsInTitle": { "time": true, "entity": true, "changeInPrefix": true } } |
2018-04-15 14:21:02 | 2024-04-08 12:13:54 | 2018-04-15 14:29:59 | 2018-04-15 14:29:59 | Jaiden Mispy 9 | Jaiden Mispy 9 | 1 | Terrain Ruggedness Index | Indicates how jagged or flat the terrain of a country is on average. Ruggedness is measured in metres of elevation difference for grid points 30 arc-seconds (926 metres on the equator or any meridian) apart. | Terrain Ruggedness Index () | { "$schema": "https://files.ourworldindata.org/schemas/grapher-schema.004.json", "map": { "projection": "World", "hideTimeline": false, "colorScale": { "baseColorScheme": "default", "equalSizeBins": true, "binningStrategy": "ckmeans", "customNumericColorsActive": false, "colorSchemeInvert": false, "binningStrategyBinCount": 5 }, "timeTolerance": 0, "toleranceStrategy": "closest", "tooltipUseCustomLabels": false, "time": "latest" }, "maxTime": "latest", "baseColorScheme": "default", "yAxis": { "removePointsOutsideDomain": false, "scaleType": "linear", "canChangeScaleType": false, "facetDomain": "shared" }, "tab": "map", "matchingEntitiesOnly": false, "hasChartTab": false, "hideLegend": false, "hideLogo": false, "hideTimeline": false, "colorScale": { "baseColorScheme": "default", "equalSizeBins": true, "binningStrategy": "ckmeans", "customNumericColorsActive": false, "colorSchemeInvert": false, "binningStrategyBinCount": 5 }, "scatterPointLabelStrategy": "year", "selectedFacetStrategy": "none", "isPublished": true, "invertColorScheme": false, "version": 3, "logo": "owid", "entityType": "country or region", "facettingLabelByYVariables": "metric", "addCountryMode": "add-country", "compareEndPointsOnly": false, "type": "LineChart", "hasMapTab": true, "stackMode": "absolute", "minTime": "earliest", "hideAnnotationFieldsInTitle": { "entity": false, "time": false, "changeInPrefix": false }, "xAxis": { "removePointsOutsideDomain": false, "scaleType": "linear", "canChangeScaleType": false, "facetDomain": "shared" }, "hideConnectedScatterLines": false, "showNoDataArea": true, "zoomToSelection": false, "showYearLabels": false, "hideLinesOutsideTolerance": false, "hideTotalValueLabel": false, "hideScatterLabels": false, "sortBy": "total", "sortOrder": "desc", "hideFacetControl": true, "entityTypePlural": "countries", "missingDataStrategy": "auto", "id": 2600, "slug": "terrain-ruggedness-index", "title": "Terrain Ruggedness Index", "subtitle": "Indicates how jagged or flat the terrain of a country is on average. Ruggedness is measured in metres of elevation difference for grid points 30 arc-seconds (926 metres on the equator or any meridian) apart.", "originUrl": "ourworldindata.org/land-use", "dimensions": [ { "display": {}, "property": "y", "variableId": 97402 } ], "hideRelativeToggle": true, "selectedEntityNames": [ "United States" ] } |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "charts" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "slug" VARCHAR(255) NULL , "type" VARCHAR(255) NULL , "config" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "lastEditedAt" DATETIME NOT NULL , "publishedAt" DATETIME NULL , "lastEditedByUserId" INTEGER NOT NULL , "publishedByUserId" INTEGER NULL , "isIndexable" TINYINT NOT NULL DEFAULT '0', title TEXT GENERATED ALWAYS as (JSON_EXTRACT(config, '$.title')) VIRTUAL, subtitle TEXT GENERATED ALWAYS as (JSON_EXTRACT(config, '$.subtitle')) VIRTUAL, note TEXT GENERATED ALWAYS as (JSON_EXTRACT(config, '$.note')) VIRTUAL, title_plus_variant GENERATED ALWAYS as (printf("%s (%s)", title, json_extract(config, "$.variantName"))) VIRTUAL, configWithDefaults json, FOREIGN KEY("lastEditedByUserId") REFERENCES "users" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT, FOREIGN KEY("publishedByUserId") REFERENCES "users" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "charts_lastEditedByUserId" ON "charts" ("lastEditedByUserId"); CREATE INDEX "charts_publishedByUserId" ON "charts" ("publishedByUserId"); CREATE INDEX "charts_slug" ON "charts" ("slug"); CREATE INDEX idx_title_plus_variant ON charts(title_plus_variant);