We can't make this file beautiful and searchable because it's too large.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('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) { |