Skip to content

Commit

Permalink
Deploying to gh-pages from @ 66be9c5 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgasquez committed Feb 5, 2024
1 parent 3d73cdb commit b697405
Show file tree
Hide file tree
Showing 39 changed files with 110 additions and 68 deletions.
2 changes: 1 addition & 1 deletion README.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.4">
<meta name="generator" content="quarto-1.5.8">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down
2 changes: 1 addition & 1 deletion dbt/catalog.json

Large diffs are not rendered by default.

Binary file modified dbt/graph.gpickle
Binary file not shown.
2 changes: 1 addition & 1 deletion dbt/graph_summary.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"_invocation_id": "8c8bfa60-e795-4dd0-bb0e-bf259a76040c", "linked": {"0": {"name": "source.datadex.public.threatened_animal_species", "type": "source"}, "1": {"name": "source.datadex.public.owid_co2_data", "type": "source"}, "2": {"name": "source.datadex.public.owid_energy_data", "type": "source", "succ": [4]}, "3": {"name": "source.datadex.public.co2_global_trend", "type": "source", "succ": [4]}, "4": {"name": "model.datadex.climate", "type": "model"}}}
{"_invocation_id": "45718007-d746-4136-a828-fe603eb29778", "linked": {"0": {"name": "source.datadex.public.threatened_animal_species", "type": "source"}, "1": {"name": "source.datadex.public.owid_co2_data", "type": "source"}, "2": {"name": "source.datadex.public.owid_energy_data", "type": "source", "succ": [4]}, "3": {"name": "source.datadex.public.co2_global_trend", "type": "source", "succ": [4]}, "4": {"name": "model.datadex.climate", "type": "model"}}}
2 changes: 1 addition & 1 deletion dbt/manifest.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dbt/run_results.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/run-results/v5.json", "dbt_version": "1.7.6", "generated_at": "2024-01-29T10:13:51.796364Z", "invocation_id": "8c8bfa60-e795-4dd0-bb0e-bf259a76040c", "env": {}}, "results": [{"status": "success", "timing": [{"name": "compile", "started_at": "2024-01-29T10:13:51.783474Z", "completed_at": "2024-01-29T10:13:51.790986Z"}, {"name": "execute", "started_at": "2024-01-29T10:13:51.792191Z", "completed_at": "2024-01-29T10:13:51.792205Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.011036396026611328, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.datadex.climate", "compiled": true, "compiled_code": "with\n energy_data as (\n select year, sum(solar_electricity) as solar_electricity\n from \"local\".\"public\".\"owid_energy_data\"\n where iso_code is not null and solar_electricity is not null and year >= 2014\n group by year\n ),\n co2_global_trend as (\n select year, avg(trend) as co2_trend\n from \"local\".\"public\".\"co2_global_trend\"\n group by year\n )\nselect\n energy_data.year,\n energy_data.solar_electricity,\n co2_global_trend.co2_trend as co2_trend\nfrom energy_data\nleft join co2_global_trend on energy_data.year = co2_global_trend.year", "relation_name": "\"local\".\"main\".\"climate\""}], "elapsed_time": 0.06436800956726074, "args": {"send_anonymous_usage_stats": false, "log_path": "/home/runner/work/datadex/datadex/dbt/logs", "warn_error_options": {"include": [], "exclude": []}, "write_json": true, "partial_parse": true, "log_format_file": "debug", "which": "generate", "print": true, "empty_catalog": false, "favor_state": false, "use_colors": true, "macro_debugging": false, "exclude": [], "log_level_file": "debug", "cache_selected_only": false, "log_file_max_bytes": 10485760, "compile": true, "partial_parse_file_diff": true, "vars": {}, "populate_cache": true, "log_level": "info", "defer": false, "show_resource_report": false, "strict_mode": false, "indirect_selection": "eager", "project_dir": "/home/runner/work/datadex/datadex/dbt", "static": false, "printer_width": 80, "log_format": "default", "static_parser": true, "use_colors_file": true, "profiles_dir": ".", "quiet": false, "invocation_command": "dbt docs generate --profiles-dir .", "enable_legacy_logger": false, "select": [], "version_check": true, "introspect": true}}
{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/run-results/v5.json", "dbt_version": "1.7.7", "generated_at": "2024-02-05T10:19:07.506899Z", "invocation_id": "45718007-d746-4136-a828-fe603eb29778", "env": {}}, "results": [{"status": "success", "timing": [{"name": "compile", "started_at": "2024-02-05T10:19:07.494386Z", "completed_at": "2024-02-05T10:19:07.501615Z"}, {"name": "execute", "started_at": "2024-02-05T10:19:07.502817Z", "completed_at": "2024-02-05T10:19:07.502831Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.010584115982055664, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.datadex.climate", "compiled": true, "compiled_code": "with\n energy_data as (\n select year, sum(solar_electricity) as solar_electricity\n from \"local\".\"public\".\"owid_energy_data\"\n where iso_code is not null and solar_electricity is not null and year >= 2014\n group by year\n ),\n co2_global_trend as (\n select year, avg(trend) as co2_trend\n from \"local\".\"public\".\"co2_global_trend\"\n group by year\n )\nselect\n energy_data.year,\n energy_data.solar_electricity,\n co2_global_trend.co2_trend as co2_trend\nfrom energy_data\nleft join co2_global_trend on energy_data.year = co2_global_trend.year", "relation_name": "\"local\".\"main\".\"climate\""}], "elapsed_time": 0.06375646591186523, "args": {"show_resource_report": false, "quiet": false, "static": false, "vars": {}, "populate_cache": true, "empty_catalog": false, "invocation_command": "dbt docs generate --profiles-dir .", "select": [], "use_colors": true, "printer_width": 80, "print": true, "static_parser": true, "partial_parse_file_diff": true, "log_level": "info", "which": "generate", "project_dir": "/home/runner/work/datadex/datadex/dbt", "log_format": "default", "strict_mode": false, "use_colors_file": true, "version_check": true, "send_anonymous_usage_stats": false, "log_path": "/home/runner/work/datadex/datadex/dbt/logs", "warn_error_options": {"include": [], "exclude": []}, "partial_parse": true, "write_json": true, "indirect_selection": "eager", "introspect": true, "favor_state": false, "compile": true, "cache_selected_only": false, "exclude": [], "log_file_max_bytes": 10485760, "enable_legacy_logger": false, "defer": false, "profiles_dir": ".", "log_level_file": "debug", "log_format_file": "debug", "macro_debugging": false}}
2 changes: 1 addition & 1 deletion docs/tutorial.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.4">
<meta name="generator" content="quarto-1.5.8">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.4">
<meta name="generator" content="quarto-1.5.8">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down
2 changes: 1 addition & 1 deletion notebooks/2023-01-01-Datadex.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.4">
<meta name="generator" content="quarto-1.5.8">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down
2 changes: 1 addition & 1 deletion notebooks/2023-11-01-Observable.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.4">
<meta name="generator" content="quarto-1.5.8">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down
2 changes: 1 addition & 1 deletion notebooks/2024-01-01-Dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.4">
<meta name="generator" content="quarto-1.5.8">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down
8 changes: 4 additions & 4 deletions notebooks/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.4">
<meta name="generator" content="quarto-1.5.8">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down Expand Up @@ -227,7 +227,7 @@ <h1 class="title">Notebooks</h1>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">
<div class="quarto-post image-right" data-index="0" data-listing-date-sort="1672531200000" data-listing-file-modified-sort="1706522685969" data-listing-date-modified-sort="NaN" data-listing-reading-time-sort="2" data-listing-word-count-sort="275">
<div class="quarto-post image-right" data-index="0" data-listing-date-sort="1672531200000" data-listing-file-modified-sort="1707127543869" data-listing-date-modified-sort="NaN" data-listing-reading-time-sort="2" data-listing-word-count-sort="275">
<div class="thumbnail">
<p><a href="../notebooks/2024-01-01-Dashboard.html" class="no-external"></a></p><a href="../notebooks/2024-01-01-Dashboard.html" class="no-external">
<p><img src="https://www.freeiconspng.com/uploads/dashboard-icon-3.png" class="thumbnail-image"></p>
Expand All @@ -252,7 +252,7 @@ <h3 class="no-anchor listing-title">
</a>
</div>
</div>
<div class="quarto-post image-right" data-index="1" data-listing-date-sort="1672531200000" data-listing-file-modified-sort="1706522685969" data-listing-date-modified-sort="NaN" data-listing-reading-time-sort="1" data-listing-word-count-sort="85">
<div class="quarto-post image-right" data-index="1" data-listing-date-sort="1672531200000" data-listing-file-modified-sort="1707127543865" data-listing-date-modified-sort="NaN" data-listing-reading-time-sort="1" data-listing-word-count-sort="85">
<div class="thumbnail">
<p><a href="../notebooks/2023-01-01-Datadex.html" class="no-external"></a></p><a href="../notebooks/2023-01-01-Datadex.html" class="no-external">
<p class="card-img-top"><img src="2023-01-01-Datadex_files/figure-html/fig-charts-output-1.png" class="thumbnail-image card-img"/></p>
Expand Down Expand Up @@ -280,7 +280,7 @@ <h3 class="no-anchor listing-title">
</a>
</div>
</div>
<div class="quarto-post image-right" data-index="2" data-listing-date-sort="1672531200000" data-listing-file-modified-sort="1706522685969" data-listing-date-modified-sort="NaN" data-listing-reading-time-sort="2" data-listing-word-count-sort="315">
<div class="quarto-post image-right" data-index="2" data-listing-date-sort="1672531200000" data-listing-file-modified-sort="1707127543865" data-listing-date-modified-sort="NaN" data-listing-reading-time-sort="2" data-listing-word-count-sort="315">
<div class="thumbnail">
<p><a href="../notebooks/2023-11-01-Observable.html" class="no-external"></a></p><a href="../notebooks/2023-11-01-Observable.html" class="no-external">
<div class="listing-item-img-placeholder card-img-top" >&nbsp;</div>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b697405

Please sign in to comment.