Skip to content

Instantly share code, notes, and snippets.

View axelstudios's full-sized avatar

Alex Swindler axelstudios

View GitHub Profile
@axelstudios
axelstudios / EPWs.csv
Created October 27, 2021 23:23
BEopt EPWs
We can't make this file beautiful and searchable because it's too large.
Africa,DZA - Algiers,Algiers 603900 (IWEC),https://energyplus-weather.s3.amazonaws.com/africa_wmo_region_1/DZA/DZA_Algiers.603900_IWEC/DZA_Algiers.603900_IWEC.zip
Africa,EGY - Egypt,Al Minya 623870 (ETMY),https://energyplus-weather.s3.amazonaws.com/africa_wmo_region_1/EGY/EGY_Al.Minya.623870_ETMY/EGY_Al.Minya.623870_ETMY.zip
Africa,EGY - Egypt,Alexandria 623180 (ETMY),https://energyplus-weather.s3.amazonaws.com/africa_wmo_region_1/EGY/EGY_Alexandria.623180_ETMY/EGY_Alexandria.623180_ETMY.zip
Africa,EGY - Egypt,Aswan 624140 (ETMY),https://energyplus-weather.s3.amazonaws.com/africa_wmo_region_1/EGY/EGY_Aswan.624140_ETMY/EGY_Aswan.624140_ETMY.zip
Africa,EGY - Egypt,Aswan 624140 (IWEC),https://energyplus-weather.s3.amazonaws.com/africa_wmo_region_1/EGY/EGY_Aswan.624140_IWEC/EGY_Aswan.624140_IWEC.zip
Africa,EGY - Egypt,Asyut 623930 (ETMY),https://energyplus-weather.s3.amazonaws.com/africa_wmo_region_1/EGY/EGY_Asyut.623930_ETMY/EGY_Asyut.623930_ETMY.zip
Africa,EGY - Egypt,Cairo 623660 (IWEC),https://energyplus-weat
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@axelstudios
axelstudios / gist:cd4b638927a888ac8eb3
Last active August 29, 2015 14:17
Remove "No Data" columns
$('table').each(function() {
var table = $(this);
var rows = table.find('tr');
var colsToRemove = [];
rows.eq(2).find('td.no-data').each(function() {
colsToRemove.push($(this)[0].cellIndex);
});
for (var row = 3; row < rows.length; ++row) {
var cells = rows.eq(row).find('td');
for (var i = colsToRemove.length - 1; i >= 0; --i) {