Author: Krzysztof Satola (satola.net)
From: https://github.com/ksatola
Version: 1.0.0
The data comes from the website of Polish Institute of Meteorology and Water Management - National Research Institute - Instytut Meteorologii i Gospodarki Wodnej (IMGW). Among others, the IMGW data archive contains hourly synoptic instruments measurements and observations results (from 1960 to 2020).
The synoptic data from 2001 to 2019 is dowloaded on Feb 19th, 2020.
For the download, I use web scraping techniques. The ETL logic is defined as follows:
https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2001/2001_100_s.zip
. There are many such files for each year.wykaz_stacji.csv
file (downloaded manually from https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/),s_t_format.txt
).Windows 1250
)' encoding. The ultimate encoding is changed to utf-8
.s_t_format.txt
) is not consistent across rows of data. It consists of two columns but witout any distinguishable separator, and the first column (containing dataset column names) consists of multiple words separated by different number of white spaces between the words (some of them contain more spaces than between columns). Because of this, I had to perform cleaning of the file manually by removing: s_t_format_corrected_input.txt
. This TXT file is processed automatically to derive columns name.%load_ext autoreload
%autoreload 2
import sys
sys.path.insert(0, '../src')
import pandas as pd
import requests
import urllib.request
import time
from bs4 import BeautifulSoup
import os
from pathlib import Path
import random
import re
pd.set_option('display.max_columns', None)
pd.set_option('display.max_rows', None)
pd.set_option('display.width', 1000)
from prepare import (
extract_archived_data,
get_imgw_yearly_weather_data_files,
parse_imgw_metadata,
build_imgw_analytical_view
)
# Set the url to the website and access the site with our requests library
url = 'https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2001'
response = requests.get(url)
response
<Response [200]>
# Get HTML content of the page
soup = BeautifulSoup(response.text, "html.parser")
# We use the method .findAll to locate all of our <a> tags
soup.findAll('a')[:10]
[<a href="?C=N;O=D">Name</a>, <a href="?C=M;O=A">Last modified</a>, <a href="?C=S;O=A">Size</a>, <a href="?C=D;O=A">Description</a>, <a href="/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/">Parent Directory</a>, <a href="2001_100_s.zip">2001_100_s.zip</a>, <a href="2001_105_s.zip">2001_105_s.zip</a>, <a href="2001_115_s.zip">2001_115_s.zip</a>, <a href="2001_120_s.zip">2001_120_s.zip</a>, <a href="2001_125_s.zip">2001_125_s.zip</a>]
# Extract the actual link that we want. Let’s test out the first link
one_a_tag = soup.findAll('a')[5]
filename = one_a_tag['href']
filename
'2001_100_s.zip'
path_to_save = "/Users/ksatola/Documents/git/air-polution/data/imgw/etl"
path_to_save
'/Users/ksatola/Documents/git/air-polution/data/imgw/etl'
fullfilename = os.path.join(path_to_save, filename)
fullfilename
'/Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001_100_s.zip'
# Use the urllib.request library to download this file path to the local file system
# Provide request.urlretrieve with two parameters: file url and the filename.
urllib.request.urlretrieve(url+'/'+filename, path_to_save+filename)
('/Users/ksatola/Documents/git/air-polution/data/imgw/etl2001_100_s.zip', <http.client.HTTPMessage at 0x11ee1f978>)
years = [
'2001',
'2002',
'2003',
'2004',
'2005',
'2006',
'2007',
'2008',
'2009',
'2010',
'2011',
'2012',
'2013',
'2014',
'2015',
'2016',
'2017',
'2018',
'2019'
]
download_base_url = 'https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop'
path_to_save = "/Users/ksatola/Documents/git/air-polution/data/imgw/etl"
%%time
get_imgw_yearly_weather_data_files(years, download_base_url, path_to_save)
ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_100_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_105_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_115_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_120_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_125_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_135_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_155_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_160_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_185_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_195_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_200_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_205_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_210_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_230_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_235_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_250_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_270_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_272_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_280_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_295_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_300_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_310_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_330_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_345_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_360_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_375_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_385_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_399_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_400_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_415_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_418_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_424_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_435_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_455_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_465_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_469_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_488_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_495_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_497_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_500_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_510_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_520_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_530_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_540_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_550_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_560_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_566_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_570_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_575_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_580_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_585_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_595_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_600_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_625_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_628_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_650_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_660_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_670_s.zip ok: 200 https://dane.imgw.pl/data/dane_pomiarowo_obserwacyjne/dane_meteorologiczne/terminowe/synop/2019/2019_690_s.zip CPU times: user 2.16 s, sys: 554 ms, total: 2.72 s Wall time: 4min 16s
# List all files in a directory using scandir()
basepath = '.'
with os.scandir(basepath) as entries:
for entry in entries:
if entry.is_file():
print(entry.name)
numpy_random_numbers_normal_distribution.png .DS_Store 010_Project_Environment_Setup.ipynb 200_References.ipynb test.csv 028_ETL_Clean_Complete.ipynb 025_ETL_Pollution.ipynb 030_EDA.ipynb Distributions.ipynb tmp_remove.csv 020_ETL_Weather.ipynb 005_General_Notes.ipynb
# List all subdirectories using scandir()
basepath = '.'
with os.scandir(basepath) as entries:
for entry in entries:
if entry.is_dir():
print(entry.name)
.ipynb_checkpoints
from datetime import datetime
from os import scandir
def convert_date(timestamp):
d = datetime.utcfromtimestamp(timestamp)
formated_date = d.strftime('%d %b %Y')
return formated_date
def get_files(dir: str):
dir_entries = scandir(dir)
for entry in dir_entries:
if entry.is_file():
info = entry.stat()
print(f'{entry.name}\t Last Modified: {convert_date(info.st_mtime)}')
get_files('.')
numpy_random_numbers_normal_distribution.png Last Modified: 14 Feb 2020 .DS_Store Last Modified: 19 Feb 2020 010_Project_Environment_Setup.ipynb Last Modified: 19 Feb 2020 200_References.ipynb Last Modified: 19 Feb 2020 test.csv Last Modified: 16 Feb 2020 028_ETL_Clean_Complete.ipynb Last Modified: 19 Feb 2020 025_ETL_Pollution.ipynb Last Modified: 19 Feb 2020 030_EDA.ipynb Last Modified: 19 Feb 2020 Distributions.ipynb Last Modified: 14 Feb 2020 tmp_remove.csv Last Modified: 16 Feb 2020 020_ETL_Weather.ipynb Last Modified: 19 Feb 2020 005_General_Notes.ipynb Last Modified: 19 Feb 2020
from pathlib import Path
# Create a single repository
p = Path('example_directory')
p.mkdir(exist_ok=True) # do not raise error if the dir exists
# Create multiple sub-directories
p = Path('2018/10/05')
p.mkdir(parents=True)
! tree
. ├── 005_General_Notes.ipynb ├── 010_Project_Environment_Setup.ipynb ├── 020_ETL_Weather.ipynb ├── 025_ETL_Pollution.ipynb ├── 028_ETL_Clean_Complete.ipynb ├── 030_EDA.ipynb ├── 200_References.ipynb ├── 2018 │ └── 10 │ └── 05 ├── Distributions.ipynb ├── example_directory ├── numpy_random_numbers_normal_distribution.png ├── test.csv └── tmp_remove.csv 4 directories, 11 files
# Find all files matching filter
base_dir = '/Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019'
import fnmatch
# Get .zip files
for f_name in os.listdir(base_dir):
#if f_name.endswith('.zip'):
if fnmatch.fnmatch(f_name, '*.zip'): # wildcard search for files
print(f_name)
2019_560_s.zip 2019_235_s.zip 2019_270_s.zip 2019_155_s.zip 2019_195_s.zip 2019_600_s.zip 2019_272_s.zip 2019_566_s.zip 2019_250_s.zip 2019_580_s.zip 2019_418_s.zip 2019_540_s.zip 2019_135_s.zip 2019_660_s.zip 2019_625_s.zip 2019_330_s.zip 2019_375_s.zip 2019_500_s.zip 2019_295_s.zip 2019_585_s.zip 2019_210_s.zip 2019_465_s.zip 2019_424_s.zip 2019_115_s.zip 2019_400_s.zip 2019_230_s.zip 2019_520_s.zip 2019_310_s.zip 2019_100_s.zip 2019_399_s.zip 2019_185_s.zip 2019_570_s.zip 2019_415_s.zip 2019_469_s.zip 2019_120_s.zip 2019_435_s.zip 2019_205_s.zip 2019_550_s.zip 2019_280_s.zip 2019_360_s.zip 2019_510_s.zip 2019_488_s.zip 2019_200_s.zip 2019_595_s.zip 2019_160_s.zip 2019_125_s.zip 2019_670_s.zip 2019_497_s.zip 2019_385_s.zip 2019_455_s.zip 2019_300_s.zip 2019_345_s.zip 2019_495_s.zip 2019_575_s.zip 2019_530_s.zip 2019_650_s.zip 2019_628_s.zip 2019_105_s.zip 2019_690_s.zip
# Walking a directory tree and printing the names of the directories and files
base_dir = '/Users/ksatola/Documents/git/air-polution/data/imgw/etl'
#base_dir = '.'
for dirpath, dirnames, files in os.walk(base_dir, topdown=True, followlinks=False): # no symbolic links following
print(f'Found directory: {dirpath}')
for file_name in files:
print(file_name)
Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl .DS_Store Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013 2013_310_s.zip 2013_520_s.zip 2013_230_s.zip 2013_400_s.zip 2013_115_s.zip 2013_424_s.zip 2013_465_s.zip 2013_210_s.zip 2013_585_s.zip 2013_295_s.zip 2013_500_s.zip 2013_330_s.zip 2013_375_s.zip 2013_660_s.zip 2013_625_s.zip 2013_135_s.zip 2013_540_s.zip 2013_418_s.zip 2013_580_s.zip 2013_250_s.zip 2013_566_s.zip 2013_272_s.zip 2013_600_s.zip 2013_195_s.zip 2013_155_s.zip 2013_235_s.zip 2013_270_s.zip 2013_560_s.zip 2013_690_s.zip 2013_105_s.zip 2013_650_s.zip 2013_575_s.zip 2013_530_s.zip 2013_495_s.zip 2013_300_s.zip 2013_345_s.zip 2013_455_s.zip 2013_385_s.zip 2013_497_s.zip 2013_670_s.zip 2013_160_s.zip 2013_125_s.zip 2013_200_s.zip 2013_488_s.zip 2013_510_s.zip 2013_360_s.zip 2013_280_s.zip 2013_550_s.zip 2013_205_s.zip 2013_435_s.zip 2013_120_s.zip 2013_469_s.zip 2013_415_s.zip 2013_570_s.zip 2013_185_s.zip 2013_399_s.zip 2013_100_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014 2014_272_s.zip 2014_560_s.zip 2014_270_s.zip 2014_235_s.zip 2014_155_s.zip 2014_600_s.zip 2014_195_s.zip 2014_580_s.zip 2014_250_s.zip 2014_418_s.zip 2014_540_s.zip 2014_566_s.zip 2014_135_s.zip 2014_625_s.zip 2014_660_s.zip 2014_375_s.zip 2014_330_s.zip 2014_295_s.zip 2014_500_s.zip 2014_210_s.zip 2014_585_s.zip 2014_465_s.zip 2014_424_s.zip 2014_115_s.zip 2014_400_s.zip 2014_230_s.zip 2014_520_s.zip 2014_310_s.zip 2014_100_s.zip 2014_399_s.zip 2014_185_s.zip 2014_570_s.zip 2014_415_s.zip 2014_469_s.zip 2014_120_s.zip 2014_435_s.zip 2014_205_s.zip 2014_280_s.zip 2014_550_s.zip 2014_360_s.zip 2014_510_s.zip 2014_488_s.zip 2014_200_s.zip 2014_125_s.zip 2014_160_s.zip 2014_670_s.zip 2014_455_s.zip 2014_385_s.zip 2014_495_s.zip 2014_345_s.zip 2014_300_s.zip 2014_530_s.zip 2014_575_s.zip 2014_650_s.zip 2014_690_s.zip 2014_105_s.zip 2014_497_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015 2015_625_s.zip 2015_660_s.zip 2015_135_s.zip 2015_585_s.zip 2015_465_s.zip 2015_375_s.zip 2015_330_s.zip 2015_295_s.zip 2015_500_s.zip 2015_424_s.zip 2015_115_s.zip 2015_520_s.zip 2015_310_s.zip 2015_400_s.zip 2015_230_s.zip 2015_272_s.zip 2015_270_s.zip 2015_235_s.zip 2015_560_s.zip 2015_600_s.zip 2015_195_s.zip 2015_155_s.zip 2015_418_s.zip 2015_540_s.zip 2015_580_s.zip 2015_250_s.zip 2015_566_s.zip 2015_488_s.zip 2015_595_s.zip 2015_200_s.zip 2015_510_s.zip 2015_670_s.zip 2015_125_s.zip 2015_160_s.zip 2015_495_s.zip 2015_345_s.zip 2015_300_s.zip 2015_530_s.zip 2015_575_s.zip 2015_455_s.zip 2015_385_s.zip 2015_690_s.zip 2015_105_s.zip 2015_650_s.zip 2015_497_s.zip 2015_399_s.zip 2015_185_s.zip 2015_100_s.zip 2015_415_s.zip 2015_570_s.zip 2015_120_s.zip 2015_469_s.zip 2015_280_s.zip 2015_550_s.zip 2015_360_s.zip 2015_435_s.zip 2015_205_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012 2012_580_s.zip 2012_250_s.zip 2012_540_s.zip 2012_418_s.zip 2012_566_s.zip 2012_272_s.zip 2012_600_s.zip 2012_195_s.zip 2012_560_s.zip 2012_235_s.zip 2012_270_s.zip 2012_230_s.zip 2012_400_s.zip 2012_310_s.zip 2012_520_s.zip 2012_115_s.zip 2012_424_s.zip 2012_295_s.zip 2012_500_s.zip 2012_330_s.zip 2012_375_s.zip 2012_465_s.zip 2012_210_s.zip 2012_585_s.zip 2012_135_s.zip 2012_660_s.zip 2012_625_s.zip 2012_205_s.zip 2012_435_s.zip 2012_360_s.zip 2012_280_s.zip 2012_550_s.zip 2012_469_s.zip 2012_120_s.zip 2012_570_s.zip 2012_415_s.zip 2012_100_s.zip 2012_185_s.zip 2012_399_s.zip 2012_650_s.zip 2012_690_s.zip 2012_140_s.zip 2012_105_s.zip 2012_455_s.zip 2012_385_s.zip 2012_575_s.zip 2012_530_s.zip 2012_495_s.zip 2012_300_s.zip 2012_345_s.zip 2012_497_s.zip 2012_160_s.zip 2012_125_s.zip 2012_670_s.zip 2012_510_s.zip 2012_200_s.zip 2012_488_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008 2008_497_s.zip 2008_385_s.zip 2008_455_s.zip 2008_345_s.zip 2008_300_s.zip 2008_495_s.zip 2008_530_s.zip 2008_575_s.zip 2008_650_s.zip 2008_105_s.zip 2008_140_s.zip 2008_690_s.zip 2008_510_s.zip 2008_488_s.zip 2008_200_s.zip 2008_125_s.zip 2008_160_s.zip 2008_670_s.zip 2008_469_s.zip 2008_120_s.zip 2008_435_s.zip 2008_205_s.zip 2008_550_s.zip 2008_280_s.zip 2008_360_s.zip 2008_100_s.zip 2008_399_s.zip 2008_185_s.zip 2008_570_s.zip 2008_415_s.zip 2008_424_s.zip 2008_115_s.zip 2008_400_s.zip 2008_230_s.zip 2008_520_s.zip 2008_310_s.zip 2008_135_s.zip 2008_625_s.zip 2008_660_s.zip 2008_375_s.zip 2008_330_s.zip 2008_500_s.zip 2008_295_s.zip 2008_585_s.zip 2008_210_s.zip 2008_465_s.zip 2008_566_s.zip 2008_250_s.zip 2008_580_s.zip 2008_418_s.zip 2008_540_s.zip 2008_560_s.zip 2008_405_s.zip 2008_270_s.zip 2008_235_s.zip 2008_195_s.zip 2008_600_s.zip 2008_272_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001 2001_135_s.zip 2001_660_s.zip 2001_625_s.zip 2001_500_s.zip 2001_295_s.zip 2001_330_s.zip 2001_375_s.zip 2001_465_s.zip 2001_585_s.zip 2001_210_s.zip 2001_115_s.zip 2001_424_s.zip 2001_230_s.zip 2001_400_s.zip 2001_310_s.zip 2001_520_s.zip 2001_272_s.zip 2001_560_s.zip 2001_235_s.zip 2001_270_s.zip 2001_195_s.zip 2001_600_s.zip 2001_250_s.zip 2001_580_s.zip 2001_540_s.zip 2001_418_s.zip 2001_566_s.zip 2001_510_s.zip 2001_200_s.zip 2001_488_s.zip 2001_160_s.zip 2001_125_s.zip 2001_670_s.zip 2001_385_s.zip 2001_455_s.zip 2001_575_s.zip 2001_530_s.zip 2001_300_s.zip 2001_345_s.zip 2001_495_s.zip 2001_650_s.zip 2001_140_s.zip 2001_105_s.zip 2001_690_s.zip 2001_497_s.zip 2001_100_s.zip 2001_185_s.zip 2001_399_s.zip 2001_570_s.zip 2001_415_s.zip 2001_469_s.zip 2001_120_s.zip 2001_205_s.zip 2001_435_s.zip 2001_360_s.zip 2001_550_s.zip 2001_280_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006 2006_418_s.zip 2006_540_s.zip 2006_250_s.zip 2006_580_s.zip 2006_566_s.zip 2006_272_s.zip 2006_195_s.zip 2006_600_s.zip 2006_270_s.zip 2006_235_s.zip 2006_560_s.zip 2006_520_s.zip 2006_310_s.zip 2006_400_s.zip 2006_230_s.zip 2006_424_s.zip 2006_115_s.zip 2006_585_s.zip 2006_210_s.zip 2006_465_s.zip 2006_375_s.zip 2006_330_s.zip 2006_500_s.zip 2006_295_s.zip 2006_625_s.zip 2006_660_s.zip 2006_135_s.zip 2006_550_s.zip 2006_280_s.zip 2006_360_s.zip 2006_435_s.zip 2006_205_s.zip 2006_120_s.zip 2006_469_s.zip 2006_415_s.zip 2006_570_s.zip 2006_399_s.zip 2006_185_s.zip 2006_100_s.zip 2006_105_s.zip 2006_140_s.zip 2006_690_s.zip 2006_650_s.zip 2006_345_s.zip 2006_300_s.zip 2006_495_s.zip 2006_530_s.zip 2006_575_s.zip 2006_385_s.zip 2006_455_s.zip 2006_497_s.zip 2006_670_s.zip 2006_125_s.zip 2006_160_s.zip 2006_488_s.zip 2006_200_s.zip 2006_510_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007 2007_400_s.zip 2007_230_s.zip 2007_520_s.zip 2007_310_s.zip 2007_424_s.zip 2007_115_s.zip 2007_375_s.zip 2007_330_s.zip 2007_500_s.zip 2007_295_s.zip 2007_585_s.zip 2007_210_s.zip 2007_465_s.zip 2007_135_s.zip 2007_625_s.zip 2007_660_s.zip 2007_250_s.zip 2007_580_s.zip 2007_418_s.zip 2007_540_s.zip 2007_566_s.zip 2007_272_s.zip 2007_195_s.zip 2007_600_s.zip 2007_560_s.zip 2007_270_s.zip 2007_235_s.zip 2007_650_s.zip 2007_105_s.zip 2007_140_s.zip 2007_690_s.zip 2007_385_s.zip 2007_455_s.zip 2007_345_s.zip 2007_300_s.zip 2007_495_s.zip 2007_530_s.zip 2007_575_s.zip 2007_497_s.zip 2007_125_s.zip 2007_160_s.zip 2007_670_s.zip 2007_510_s.zip 2007_488_s.zip 2007_200_s.zip 2007_435_s.zip 2007_205_s.zip 2007_550_s.zip 2007_280_s.zip 2007_360_s.zip 2007_469_s.zip 2007_120_s.zip 2007_570_s.zip 2007_415_s.zip 2007_100_s.zip 2007_399_s.zip 2007_185_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009 2009_120_s.zip 2009_469_s.zip 2009_550_s.zip 2009_280_s.zip 2009_360_s.zip 2009_435_s.zip 2009_205_s.zip 2009_399_s.zip 2009_185_s.zip 2009_100_s.zip 2009_415_s.zip 2009_570_s.zip 2009_497_s.zip 2009_345_s.zip 2009_300_s.zip 2009_495_s.zip 2009_530_s.zip 2009_575_s.zip 2009_385_s.zip 2009_455_s.zip 2009_105_s.zip 2009_140_s.zip 2009_690_s.zip 2009_650_s.zip 2009_488_s.zip 2009_200_s.zip 2009_510_s.zip 2009_670_s.zip 2009_125_s.zip 2009_160_s.zip 2009_566_s.zip 2009_418_s.zip 2009_540_s.zip 2009_250_s.zip 2009_580_s.zip 2009_405_s.zip 2009_270_s.zip 2009_235_s.zip 2009_560_s.zip 2009_195_s.zip 2009_600_s.zip 2009_272_s.zip 2009_424_s.zip 2009_115_s.zip 2009_520_s.zip 2009_310_s.zip 2009_400_s.zip 2009_230_s.zip 2009_625_s.zip 2009_660_s.zip 2009_135_s.zip 2009_585_s.zip 2009_210_s.zip 2009_465_s.zip 2009_375_s.zip 2009_330_s.zip 2009_500_s.zip 2009_295_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017 2017_670_s.zip 2017_160_s.zip 2017_125_s.zip 2017_488_s.zip 2017_200_s.zip 2017_595_s.zip 2017_510_s.zip 2017_105_s.zip 2017_690_s.zip 2017_650_s.zip 2017_300_s.zip 2017_345_s.zip 2017_495_s.zip 2017_575_s.zip 2017_530_s.zip 2017_385_s.zip 2017_455_s.zip 2017_497_s.zip 2017_415_s.zip 2017_570_s.zip 2017_399_s.zip 2017_185_s.zip 2017_100_s.zip 2017_550_s.zip 2017_280_s.zip 2017_360_s.zip 2017_435_s.zip 2017_205_s.zip 2017_120_s.zip 2017_469_s.zip 2017_585_s.zip 2017_465_s.zip 2017_330_s.zip 2017_375_s.zip 2017_500_s.zip 2017_295_s.zip 2017_660_s.zip 2017_625_s.zip 2017_135_s.zip 2017_520_s.zip 2017_310_s.zip 2017_400_s.zip 2017_230_s.zip 2017_424_s.zip 2017_115_s.zip 2017_272_s.zip 2017_195_s.zip 2017_600_s.zip 2017_155_s.zip 2017_235_s.zip 2017_270_s.zip 2017_560_s.zip 2017_418_s.zip 2017_540_s.zip 2017_250_s.zip 2017_580_s.zip 2017_566_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010 2010_469_s.zip 2010_120_s.zip 2010_205_s.zip 2010_435_s.zip 2010_360_s.zip 2010_550_s.zip 2010_280_s.zip 2010_100_s.zip 2010_185_s.zip 2010_399_s.zip 2010_570_s.zip 2010_415_s.zip 2010_385_s.zip 2010_455_s.zip 2010_530_s.zip 2010_575_s.zip 2010_345_s.zip 2010_300_s.zip 2010_495_s.zip 2010_650_s.zip 2010_105_s.zip 2010_140_s.zip 2010_690_s.zip 2010_497_s.zip 2010_510_s.zip 2010_200_s.zip 2010_488_s.zip 2010_125_s.zip 2010_160_s.zip 2010_670_s.zip 2010_250_s.zip 2010_580_s.zip 2010_540_s.zip 2010_418_s.zip 2010_566_s.zip 2010_272_s.zip 2010_560_s.zip 2010_270_s.zip 2010_235_s.zip 2010_405_s.zip 2010_195_s.zip 2010_600_s.zip 2010_115_s.zip 2010_424_s.zip 2010_230_s.zip 2010_400_s.zip 2010_310_s.zip 2010_520_s.zip 2010_135_s.zip 2010_625_s.zip 2010_660_s.zip 2010_500_s.zip 2010_295_s.zip 2010_375_s.zip 2010_330_s.zip 2010_465_s.zip 2010_585_s.zip 2010_210_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019 2019_560_s.zip 2019_235_s.zip 2019_270_s.zip 2019_155_s.zip 2019_195_s.zip 2019_600_s.zip 2019_272_s.zip 2019_566_s.zip 2019_250_s.zip 2019_580_s.zip 2019_418_s.zip 2019_540_s.zip 2019_135_s.zip 2019_660_s.zip 2019_625_s.zip 2019_330_s.zip 2019_375_s.zip 2019_500_s.zip 2019_295_s.zip 2019_585_s.zip 2019_210_s.zip 2019_465_s.zip 2019_424_s.zip 2019_115_s.zip 2019_400_s.zip 2019_230_s.zip 2019_520_s.zip 2019_310_s.zip 2019_100_s.zip 2019_399_s.zip 2019_185_s.zip 2019_570_s.zip 2019_415_s.zip 2019_469_s.zip 2019_120_s.zip 2019_435_s.zip 2019_205_s.zip 2019_550_s.zip 2019_280_s.zip 2019_360_s.zip 2019_510_s.zip 2019_488_s.zip 2019_200_s.zip 2019_595_s.zip 2019_160_s.zip 2019_125_s.zip 2019_670_s.zip 2019_497_s.zip 2019_385_s.zip 2019_455_s.zip 2019_300_s.zip 2019_345_s.zip 2019_495_s.zip 2019_575_s.zip 2019_530_s.zip 2019_650_s.zip 2019_628_s.zip 2019_105_s.zip 2019_690_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018 2018_660_s.zip 2018_625_s.zip 2018_135_s.zip 2018_585_s.zip 2018_210_s.zip 2018_465_s.zip 2018_330_s.zip 2018_375_s.zip 2018_500_s.zip 2018_295_s.zip 2018_424_s.zip 2018_115_s.zip 2018_520_s.zip 2018_310_s.zip 2018_400_s.zip 2018_230_s.zip 2018_235_s.zip 2018_270_s.zip 2018_560_s.zip 2018_195_s.zip 2018_600_s.zip 2018_155_s.zip 2018_272_s.zip 2018_566_s.zip 2018_418_s.zip 2018_540_s.zip 2018_250_s.zip 2018_580_s.zip 2018_488_s.zip 2018_200_s.zip 2018_595_s.zip 2018_510_s.zip 2018_670_s.zip 2018_160_s.zip 2018_125_s.zip 2018_497_s.zip 2018_300_s.zip 2018_345_s.zip 2018_495_s.zip 2018_575_s.zip 2018_530_s.zip 2018_385_s.zip 2018_455_s.zip 2018_105_s.zip 2018_690_s.zip 2018_650_s.zip 2018_399_s.zip 2018_185_s.zip 2018_100_s.zip 2018_415_s.zip 2018_570_s.zip 2018_120_s.zip 2018_469_s.zip 2018_550_s.zip 2018_280_s.zip 2018_360_s.zip 2018_435_s.zip 2018_205_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011 2011_530_s.zip 2011_575_s.zip 2011_345_s.zip 2011_300_s.zip 2011_495_s.zip 2011_385_s.zip 2011_455_s.zip 2011_105_s.zip 2011_140_s.zip 2011_690_s.zip 2011_650_s.zip 2011_497_s.zip 2011_200_s.zip 2011_488_s.zip 2011_510_s.zip 2011_670_s.zip 2011_125_s.zip 2011_160_s.zip 2011_120_s.zip 2011_469_s.zip 2011_360_s.zip 2011_550_s.zip 2011_280_s.zip 2011_205_s.zip 2011_435_s.zip 2011_185_s.zip 2011_399_s.zip 2011_100_s.zip 2011_415_s.zip 2011_570_s.zip 2011_115_s.zip 2011_424_s.zip 2011_310_s.zip 2011_520_s.zip 2011_230_s.zip 2011_400_s.zip 2011_625_s.zip 2011_660_s.zip 2011_135_s.zip 2011_465_s.zip 2011_585_s.zip 2011_210_s.zip 2011_500_s.zip 2011_295_s.zip 2011_375_s.zip 2011_330_s.zip 2011_540_s.zip 2011_418_s.zip 2011_250_s.zip 2011_580_s.zip 2011_566_s.zip 2011_272_s.zip 2011_270_s.zip 2011_235_s.zip 2011_560_s.zip 2011_195_s.zip 2011_600_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016 2016_570_s.zip 2016_415_s.zip 2016_100_s.zip 2016_399_s.zip 2016_185_s.zip 2016_435_s.zip 2016_205_s.zip 2016_550_s.zip 2016_280_s.zip 2016_360_s.zip 2016_469_s.zip 2016_120_s.zip 2016_160_s.zip 2016_125_s.zip 2016_670_s.zip 2016_510_s.zip 2016_488_s.zip 2016_200_s.zip 2016_595_s.zip 2016_650_s.zip 2016_105_s.zip 2016_690_s.zip 2016_385_s.zip 2016_455_s.zip 2016_300_s.zip 2016_345_s.zip 2016_495_s.zip 2016_575_s.zip 2016_530_s.zip 2016_497_s.zip 2016_272_s.zip 2016_155_s.zip 2016_195_s.zip 2016_600_s.zip 2016_560_s.zip 2016_235_s.zip 2016_270_s.zip 2016_250_s.zip 2016_580_s.zip 2016_418_s.zip 2016_540_s.zip 2016_566_s.zip 2016_330_s.zip 2016_375_s.zip 2016_500_s.zip 2016_295_s.zip 2016_585_s.zip 2016_465_s.zip 2016_135_s.zip 2016_660_s.zip 2016_625_s.zip 2016_400_s.zip 2016_230_s.zip 2016_520_s.zip 2016_310_s.zip 2016_424_s.zip 2016_115_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/metadata .DS_Store s_t_format_corrected_output.csv s_t_format.txt s_t_format_corrected_input.txt Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005 2005_455_s.zip 2005_385_s.zip 2005_495_s.zip 2005_300_s.zip 2005_345_s.zip 2005_575_s.zip 2005_530_s.zip 2005_650_s.zip 2005_690_s.zip 2005_140_s.zip 2005_105_s.zip 2005_497_s.zip 2005_510_s.zip 2005_488_s.zip 2005_200_s.zip 2005_160_s.zip 2005_125_s.zip 2005_670_s.zip 2005_469_s.zip 2005_120_s.zip 2005_435_s.zip 2005_205_s.zip 2005_280_s.zip 2005_550_s.zip 2005_360_s.zip 2005_100_s.zip 2005_399_s.zip 2005_185_s.zip 2005_570_s.zip 2005_415_s.zip 2005_424_s.zip 2005_115_s.zip 2005_400_s.zip 2005_230_s.zip 2005_520_s.zip 2005_310_s.zip 2005_135_s.zip 2005_660_s.zip 2005_625_s.zip 2005_330_s.zip 2005_375_s.zip 2005_295_s.zip 2005_500_s.zip 2005_210_s.zip 2005_585_s.zip 2005_465_s.zip 2005_580_s.zip 2005_250_s.zip 2005_418_s.zip 2005_540_s.zip 2005_566_s.zip 2005_272_s.zip 2005_560_s.zip 2005_235_s.zip 2005_270_s.zip 2005_600_s.zip 2005_195_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002 2002_415_s.zip 2002_570_s.zip 2002_185_s.zip 2002_399_s.zip 2002_100_s.zip 2002_360_s.zip 2002_280_s.zip 2002_550_s.zip 2002_205_s.zip 2002_435_s.zip 2002_120_s.zip 2002_469_s.zip 2002_670_s.zip 2002_125_s.zip 2002_160_s.zip 2002_200_s.zip 2002_488_s.zip 2002_510_s.zip 2002_690_s.zip 2002_105_s.zip 2002_140_s.zip 2002_650_s.zip 2002_530_s.zip 2002_575_s.zip 2002_495_s.zip 2002_345_s.zip 2002_300_s.zip 2002_455_s.zip 2002_385_s.zip 2002_497_s.zip 2002_272_s.zip 2002_600_s.zip 2002_195_s.zip 2002_270_s.zip 2002_235_s.zip 2002_560_s.zip 2002_540_s.zip 2002_418_s.zip 2002_580_s.zip 2002_250_s.zip 2002_566_s.zip 2002_465_s.zip 2002_210_s.zip 2002_585_s.zip 2002_295_s.zip 2002_500_s.zip 2002_375_s.zip 2002_330_s.zip 2002_625_s.zip 2002_660_s.zip 2002_135_s.zip 2002_310_s.zip 2002_520_s.zip 2002_230_s.zip 2002_400_s.zip 2002_115_s.zip 2002_424_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003 2003_125_s.zip 2003_160_s.zip 2003_670_s.zip 2003_510_s.zip 2003_200_s.zip 2003_488_s.zip 2003_650_s.zip 2003_690_s.zip 2003_105_s.zip 2003_140_s.zip 2003_455_s.zip 2003_385_s.zip 2003_530_s.zip 2003_575_s.zip 2003_495_s.zip 2003_345_s.zip 2003_300_s.zip 2003_497_s.zip 2003_570_s.zip 2003_415_s.zip 2003_100_s.zip 2003_185_s.zip 2003_399_s.zip 2003_205_s.zip 2003_435_s.zip 2003_360_s.zip 2003_280_s.zip 2003_550_s.zip 2003_469_s.zip 2003_120_s.zip 2003_295_s.zip 2003_500_s.zip 2003_375_s.zip 2003_330_s.zip 2003_465_s.zip 2003_210_s.zip 2003_585_s.zip 2003_135_s.zip 2003_625_s.zip 2003_660_s.zip 2003_230_s.zip 2003_400_s.zip 2003_310_s.zip 2003_520_s.zip 2003_115_s.zip 2003_424_s.zip 2003_272_s.zip 2003_600_s.zip 2003_195_s.zip 2003_560_s.zip 2003_270_s.zip 2003_235_s.zip 2003_580_s.zip 2003_250_s.zip 2003_540_s.zip 2003_418_s.zip 2003_566_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004 2004_120_s.zip 2004_469_s.zip 2004_280_s.zip 2004_550_s.zip 2004_360_s.zip 2004_435_s.zip 2004_205_s.zip 2004_399_s.zip 2004_185_s.zip 2004_100_s.zip 2004_415_s.zip 2004_570_s.zip 2004_495_s.zip 2004_300_s.zip 2004_345_s.zip 2004_575_s.zip 2004_530_s.zip 2004_455_s.zip 2004_385_s.zip 2004_690_s.zip 2004_140_s.zip 2004_105_s.zip 2004_650_s.zip 2004_497_s.zip 2004_488_s.zip 2004_200_s.zip 2004_510_s.zip 2004_670_s.zip 2004_160_s.zip 2004_125_s.zip 2004_418_s.zip 2004_540_s.zip 2004_580_s.zip 2004_250_s.zip 2004_566_s.zip 2004_272_s.zip 2004_235_s.zip 2004_270_s.zip 2004_560_s.zip 2004_600_s.zip 2004_195_s.zip 2004_424_s.zip 2004_115_s.zip 2004_520_s.zip 2004_310_s.zip 2004_400_s.zip 2004_230_s.zip 2004_660_s.zip 2004_625_s.zip 2004_135_s.zip 2004_210_s.zip 2004_585_s.zip 2004_465_s.zip 2004_330_s.zip 2004_375_s.zip 2004_295_s.zip 2004_500_s.zip
import zipfile
zip_dir = '/Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/'
zip_file = zip_dir+'2019_100_s.zip'
with zipfile.ZipFile(zip_file, 'r') as zipobj:
contents = zipobj.namelist()
print(contents)
first_file = zipobj.getinfo(contents[0])
print(first_file)
print(first_file.filename)
print(first_file.file_size)
print(first_file.date_time)
zipobj.extractall(path=zip_dir+'extracted/')
['s_t_100_2019.csv'] <ZipInfo filename='s_t_100_2019.csv' compress_type=deflate external_attr=0x20 file_size=3627030 compress_size=369035> s_t_100_2019.csv 3627030 (2020, 1, 28, 8, 16, 40)
%%time
source_dir = '/Users/ksatola/Documents/git/air-polution/data/imgw/etl/'
target_dir = '/Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/'
file_search_pattern = '*.zip'
extract_archived_data(source_dir, target_dir, file_search_pattern)
Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/ Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_210_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_155_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2013/2013_100_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_155_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_210_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2014/2014_497_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_155_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_595_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2015/2015_205_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_210_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_140_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2012/2012_488_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_140_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_210_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_405_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2008/2008_272_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_210_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_140_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2001/2001_280_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_210_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_140_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2006/2006_510_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_210_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_140_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2007/2007_185_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_140_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_405_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_210_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2009/2009_295_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_595_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_155_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2017/2017_566_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_140_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_405_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2010/2010_210_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_155_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_210_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_595_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_628_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2019/2019_690_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_210_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_155_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_595_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2018/2018_205_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_140_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_210_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2011/2011_600_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_595_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_155_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2016/2016_115_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/metadata Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_140_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_210_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2005/2005_195_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_140_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_210_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2002/2002_424_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_140_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_500_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_210_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2003/2003_566_s.zip Found directory: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004 Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_120_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_469_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_280_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_550_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_360_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_435_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_205_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_399_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_185_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_100_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_415_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_570_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_495_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_300_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_345_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_575_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_530_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_455_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_385_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_690_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_140_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_105_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_650_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_497_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_488_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_200_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_510_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_670_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_160_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_125_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_418_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_540_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_580_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_250_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_566_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_272_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_235_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_270_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_560_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_600_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_195_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_424_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_115_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_520_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_310_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_400_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_230_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_660_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_625_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_135_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_210_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_585_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_465_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_330_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_375_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_295_s.zip Extracting: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/2004/2004_500_s.zip CPU times: user 10.7 s, sys: 6.39 s, total: 17.1 s Wall time: 22.2 s
%%timeit
file_input = '/Users/ksatola/Documents/git/air-polution/data/imgw/etl/metadata/s_t_format_corrected_input.txt'
file_output = '/Users/ksatola/Documents/git/air-polution/data/imgw/etl/metadata/s_t_format_corrected_output.csv'
parse_imgw_metadata(file_input, file_output, input_encoding="cp1250", output_encoding="utf-8")
855 µs ± 56.1 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)
columns = '/Users/ksatola/Documents/git/air-polution/data/imgw/etl/metadata/s_t_format_corrected_output.csv'
source_dir = '/Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/'
file_search_pattern = '*.csv'
# Synoptic stations codes in the Krakow area
sms_codes = [
"250190410", # "KRAKÓW HISTORYCZNE"
"350190566", # "KRAKÓW-BALICE"
"250199987", # "KRAKÓW-BIELANY-KLASZTOR"
"250209979", # "KRAKÓW-ŁĘG"
"250190390", # "KRAKÓW-OBSERWATORIUM"
"250199984", # "KRAKÓW-SWOSZOWICE"
"250190470" # "KRAKÓW-WOLA JUSTOWSKA"
]
# Read columns file
cols = pd.read_csv(columns, encoding='utf-8', sep=",")
cols.columns.tolist()
['Kod stacji', 'Nazwa stacji', 'Rok', 'Miesiąc', 'Dzień', 'Godzina', 'Wysokość podstawy chmur CL CM szyfrowana [kod]', 'Status pomiaru HPOD', 'Wysokość podstawy niższej [m]', 'Status pomiaru HPON', 'Wysokość podstawy wyższej [m]', 'Status pomiaru HPOW', 'Wysokość podstawy tekstowy [opis]', 'Pomiar przyrzadem 1 (niższa) [P]', 'Pomiar przyrzadem 2 (wyższa) [P]', 'Widzialność [kod]', 'Status pomiaru WID', 'Widzialność operatora [m]', 'Status pomiaru WIDO', 'Widzialność automat [m]', 'Status pomiaru WIDA', 'Zachmurzenie ogólne [oktanty]', 'Status pomiaru NOG', 'Kierunek wiatru [°]', 'Status pomiaru KRWR', 'Prędkość wiatru [m/s]', 'Status pomiaru FWR', 'Poryw wiatru [m/s]', 'Status pomiaru PORW', 'Temperatura powietrza [°C]', 'Status pomiaru TEMP', 'Temperatura termometru zwilżonego [°C]', 'Status pomiaru TTZW', 'Wskaźnik wentylacji [W/N]', 'Wskaźnik lodu [L/W]', 'Ciśnienie pary wodnej [hPa]', 'Status pomiaru CPW', 'Wilgotność względna [%]', 'Status pomiaru WLGW', 'Temperatura punktu rosy [°C]', 'Status pomiaru TPTR', 'Ciśnienie na pozimie stacji [hPa]', 'Status pomiaru PPPS', 'Ciśnienie na pozimie morza [hPa]', 'Status pomiaru PPPM', 'Charakterystyka tendencji [kod]', 'Wartość tendencji [wartość]', 'Status pomiaru APP', 'Opad za 6 godzin [mm]', 'Status pomiaru WO6G', 'Rodzaj opadu za 6 godzin [kod]', 'Status pomiaru ROPT', 'Pogoda bieżąca [kod]', 'Pogoda ubiegła [kod]', 'Zachmurzenie niskie [oktanty]', 'Status pomiaru CLCM', 'Chmury CL [kod]', 'Status pomiaru CHCL', 'Chmury CL tekstem', 'Chmury CM [kod]', 'Status pomiaru CHCM', 'Chmury CM tekstem', 'Chmury CH [kod]', 'Status pomiaru CHCH', 'Chmury CH tekstem', 'Stan gruntu [kod]', 'Status pomiaru SGRN', 'Niedosyt wilgotności [hPa]', 'Status pomiaru DEFI', 'Usłonecznienie', 'Status pomiaru USLN', 'Wystąpienie rosy [0/1]', 'Status pomiaru ROSW', 'Poryw maksymalny za okres WW [m/s]', 'Status pomiaru PORK', 'Godzina wystąpienia porywu', 'Minuta wystąpienia porywu', 'Temperatura gruntu -5 [°C]', 'Status pomiaru TG05', 'Temperatura gruntu -10 [°C]', 'Status pomiaru TG10', 'Temperatura gruntu -20 [°C]', 'Status pomiaru TG20', 'Temperatura gruntu -50 [°C]', 'Status pomiaru TG50', 'Temperatura gruntu -100 [°C]', 'Status pomiaru TG100', 'Temperatura minimalna za 12 godzin [°C]', 'Status pomiaru TMIN', 'Temperatura maksymalna za 12 godzin [°C]', 'Status pomiaru TMAX', 'Temperatura minimalna przy gruncie za 12 godzin [°C]', 'Status pomiaru TGMI', 'Równoważnik wodny śniegu [mm/cm]', 'Status pomiaru RWSN', 'Wysokość pokrywy śnieżnej [cm]', 'Status pomiaru PKSN', 'Wysokość świeżo spadłego śniegu [cm]', 'Status pomiaru HSS', 'Wysokość śniegu na poletku [cm]', 'Status pomiaru GRSN', 'Gatunek śniegu [kod]', 'Ukształtowanie pokrywy [kod]', 'Wysokość próbki [cm]', 'Status pomiaru HPRO', 'Ciężar próbki [g]', 'Status pomiaru CIPR']
%%time
df = build_imgw_analytical_view(source_dir, columns, file_search_pattern, sms_codes)
0001 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2013.csv, total rows: 0 0002 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2008.csv, total rows: 107 0003 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2018.csv, total rows: 214 0004 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2007.csv, total rows: 321 0005 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2011.csv, total rows: 428 0006 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2005.csv, total rows: 535 0007 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2003.csv, total rows: 642 0008 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2017.csv, total rows: 749 0009 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2019.csv, total rows: 856 0010 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2016.csv, total rows: 963 0011 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2002.csv, total rows: 1070 0012 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2008.csv, total rows: 1177 0013 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2019.csv, total rows: 1284 0014 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2014.csv, total rows: 1391 0015 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2004.csv, total rows: 1498 0016 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2010.csv, total rows: 1605 0017 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2017.csv, total rows: 1712 0018 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2003.csv, total rows: 1819 0019 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2012.csv, total rows: 1926 0020 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2006.csv, total rows: 2033 0021 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2008.csv, total rows: 2140 0022 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2004.csv, total rows: 2247 0023 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2010.csv, total rows: 2354 0024 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2009.csv, total rows: 2461 0025 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_140_2001.csv, total rows: 2568 0026 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2018.csv, total rows: 2675 0027 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2018.csv, total rows: 2782 0028 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2012.csv, total rows: 2889 0029 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2008.csv, total rows: 2996 0030 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2006.csv, total rows: 3103 0031 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2007.csv, total rows: 3210 0032 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2009.csv, total rows: 3317 0033 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2001.csv, total rows: 3424 0034 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2015.csv, total rows: 3531 0035 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_628_2019.csv, total rows: 3638 0036 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2013.csv, total rows: 3745 0037 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2014.csv, total rows: 3852 0038 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2012.csv, total rows: 3959 0039 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2006.csv, total rows: 4066 0040 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2008.csv, total rows: 4173 0041 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2009.csv, total rows: 4280 0042 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2007.csv, total rows: 4387 0043 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2013.csv, total rows: 4494 0044 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2019.csv, total rows: 4601 0045 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2019.csv, total rows: 4708 0046 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2008.csv, total rows: 4815 0047 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2011.csv, total rows: 4922 0048 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2005.csv, total rows: 5029 0049 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2009.csv, total rows: 5136 0050 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2007.csv, total rows: 5243 0051 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2013.csv, total rows: 5350 0052 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2002.csv, total rows: 5457 0053 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2016.csv, total rows: 5564 0054 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2011.csv, total rows: 5671 0055 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2005.csv, total rows: 5778 0056 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2001.csv, total rows: 5885 0057 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2018.csv, total rows: 5992 0058 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2009.csv, total rows: 6099 0059 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2003.csv, total rows: 6206 0060 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2017.csv, total rows: 6313 0061 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2016.csv, total rows: 6420 0062 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2018.csv, total rows: 6527 0063 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2002.csv, total rows: 6634 0064 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2004.csv, total rows: 6741 0065 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2010.csv, total rows: 6848 0066 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2019.csv, total rows: 6955 0067 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2006.csv, total rows: 7062 0068 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2012.csv, total rows: 7169 0069 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2009.csv, total rows: 7276 0070 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2004.csv, total rows: 7383 0071 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2010.csv, total rows: 7490 0072 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2006.csv, total rows: 7597 0073 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2012.csv, total rows: 7704 0074 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2014.csv, total rows: 7811 0075 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2001.csv, total rows: 7918 0076 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2015.csv, total rows: 8025 0077 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2003.csv, total rows: 8132 0078 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2013.csv, total rows: 8239 0079 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2007.csv, total rows: 8346 0080 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2018.csv, total rows: 8453 0081 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2014.csv, total rows: 8560 0082 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2005.csv, total rows: 8667 0083 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2008.csv, total rows: 8774 0084 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2011.csv, total rows: 8881 0085 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2013.csv, total rows: 8988 0086 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2007.csv, total rows: 9095 0087 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_140_2002.csv, total rows: 9202 0088 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2005.csv, total rows: 9309 0089 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2011.csv, total rows: 9416 0090 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2009.csv, total rows: 9523 0091 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2010.csv, total rows: 9630 0092 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2016.csv, total rows: 9737 0093 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2002.csv, total rows: 9844 0094 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2004.csv, total rows: 9951 0095 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2003.csv, total rows: 10058 0096 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2005.csv, total rows: 10165 0097 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2008.csv, total rows: 10272 0098 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2011.csv, total rows: 10379 0099 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2017.csv, total rows: 10486 0100 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2010.csv, total rows: 10593 0101 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2004.csv, total rows: 10700 0102 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_140_2003.csv, total rows: 10807 0103 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2006.csv, total rows: 10914 0104 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2012.csv, total rows: 11021 0105 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2009.csv, total rows: 11128 0106 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2010.csv, total rows: 11235 0107 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2004.csv, total rows: 11342 0108 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2015.csv, total rows: 11449 0109 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2001.csv, total rows: 11556 0110 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2006.csv, total rows: 11663 0111 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2019.csv, total rows: 11770 0112 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2012.csv, total rows: 11877 0113 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2002.csv, total rows: 11984 0114 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2014.csv, total rows: 12091 0115 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2001.csv, total rows: 12198 0116 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2015.csv, total rows: 12305 0117 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2013.csv, total rows: 12412 0118 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2007.csv, total rows: 12519 0119 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2011.csv, total rows: 12626 0120 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2005.csv, total rows: 12733 0121 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2003.csv, total rows: 12840 0122 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2017.csv, total rows: 12947 0123 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2001.csv, total rows: 13054 0124 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2015.csv, total rows: 13161 0125 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2004.csv, total rows: 13268 0126 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2010.csv, total rows: 13375 0127 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2011.csv, total rows: 13482 0128 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2005.csv, total rows: 13589 0129 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2016.csv, total rows: 13696 0130 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2009.csv, total rows: 13803 0131 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2002.csv, total rows: 13910 0132 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2012.csv, total rows: 14017 0133 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2006.csv, total rows: 14124 0134 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2019.csv, total rows: 14231 0135 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2014.csv, total rows: 14338 0136 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2005.csv, total rows: 14445 0137 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2011.csv, total rows: 14552 0138 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2016.csv, total rows: 14659 0139 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2002.csv, total rows: 14766 0140 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_140_2007.csv, total rows: 14873 0141 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2013.csv, total rows: 14980 0142 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2015.csv, total rows: 15087 0143 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2018.csv, total rows: 15194 0144 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2001.csv, total rows: 15301 0145 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2007.csv, total rows: 15408 0146 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2014.csv, total rows: 15515 0147 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2015.csv, total rows: 15622 0148 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2001.csv, total rows: 15729 0149 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2019.csv, total rows: 15836 0150 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2006.csv, total rows: 15943 0151 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2012.csv, total rows: 16050 0152 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2014.csv, total rows: 16157 0153 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_140_2012.csv, total rows: 16264 0154 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_140_2006.csv, total rows: 16371 0155 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2003.csv, total rows: 16478 0156 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2017.csv, total rows: 16585 0157 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2010.csv, total rows: 16692 0158 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2004.csv, total rows: 16799 0159 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2015.csv, total rows: 16906 0160 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2018.csv, total rows: 17013 0161 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2001.csv, total rows: 17120 0162 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2007.csv, total rows: 17227 0163 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2013.csv, total rows: 17334 0164 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2003.csv, total rows: 17441 0165 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2017.csv, total rows: 17548 0166 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2008.csv, total rows: 17655 0167 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2004.csv, total rows: 17762 0168 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2010.csv, total rows: 17869 0169 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2011.csv, total rows: 17976 0170 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2005.csv, total rows: 18083 0171 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2014.csv, total rows: 18190 0172 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2016.csv, total rows: 18297 0173 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2002.csv, total rows: 18404 0174 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2014.csv, total rows: 18511 0175 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2009.csv, total rows: 18618 0176 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2016.csv, total rows: 18725 0177 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2002.csv, total rows: 18832 0178 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2019.csv, total rows: 18939 0179 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2013.csv, total rows: 19046 0180 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2007.csv, total rows: 19153 0181 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2006.csv, total rows: 19260 0182 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2008.csv, total rows: 19367 0183 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2012.csv, total rows: 19474 0184 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2001.csv, total rows: 19581 0185 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2015.csv, total rows: 19688 0186 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2005.csv, total rows: 19795 0187 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2011.csv, total rows: 19902 0188 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2008.csv, total rows: 20009 0189 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2019.csv, total rows: 20116 0190 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2017.csv, total rows: 20223 0191 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2003.csv, total rows: 20330 0192 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2012.csv, total rows: 20437 0193 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2006.csv, total rows: 20544 0194 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2001.csv, total rows: 20651 0195 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2015.csv, total rows: 20758 0196 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2019.csv, total rows: 20865 0197 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2018.csv, total rows: 20972 0198 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2009.csv, total rows: 21079 0199 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_140_2010.csv, total rows: 21186 0200 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2009.csv, total rows: 21293 0201 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_140_2004.csv, total rows: 21400 0202 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2004.csv, total rows: 21507 0203 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2002.csv, total rows: 21614 0204 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2016.csv, total rows: 21721 0205 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2010.csv, total rows: 21828 0206 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2018.csv, total rows: 21935 0207 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2019.csv, total rows: 22042 0208 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2017.csv, total rows: 22149 0209 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2003.csv, total rows: 22256 0210 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2002.csv, total rows: 22363 0211 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2018.csv, total rows: 22470 0212 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2016.csv, total rows: 22577 0213 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2017.csv, total rows: 22684 0214 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2019.csv, total rows: 22791 0215 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2011.csv, total rows: 22898 0216 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2005.csv, total rows: 23005 0217 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2003.csv, total rows: 23112 0218 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_140_2005.csv, total rows: 23219 0219 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_140_2011.csv, total rows: 23326 0220 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2008.csv, total rows: 23433 0221 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2008.csv, total rows: 23540 0222 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2019.csv, total rows: 23647 0223 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2018.csv, total rows: 23754 0224 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2014.csv, total rows: 23861 0225 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2007.csv, total rows: 23968 0226 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2013.csv, total rows: 24075 0227 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2002.csv, total rows: 24182 0228 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2016.csv, total rows: 24289 0229 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2018.csv, total rows: 24396 0230 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2010.csv, total rows: 24503 0231 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2009.csv, total rows: 24610 0232 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2004.csv, total rows: 24717 0233 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2014.csv, total rows: 24824 0234 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2013.csv, total rows: 24931 0235 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2007.csv, total rows: 25038 0236 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2009.csv, total rows: 25145 0237 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2006.csv, total rows: 25252 0238 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2012.csv, total rows: 25359 0239 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2003.csv, total rows: 25466 0240 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2018.csv, total rows: 25573 0241 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2008.csv, total rows: 25680 0242 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2017.csv, total rows: 25787 0243 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2001.csv, total rows: 25894 0244 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2015.csv, total rows: 26001 0245 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2004.csv, total rows: 26108 0246 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2002.csv, total rows: 26215 0247 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2001.csv, total rows: 26322 0248 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2016.csv, total rows: 26429 0249 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2015.csv, total rows: 26536 0250 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2018.csv, total rows: 26643 0251 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2010.csv, total rows: 26750 0252 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2009.csv, total rows: 26857 0253 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2008.csv, total rows: 26964 0254 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2009.csv, total rows: 27071 0255 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2004.csv, total rows: 27178 0256 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2008.csv, total rows: 27285 0257 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2010.csv, total rows: 27392 0258 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2018.csv, total rows: 27499 0259 -> Shape: (8760, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2005.csv, total rows: 27606 0260 -> Shape: (8760, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2011.csv, total rows: 27713 0261 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2008.csv, total rows: 27820 0262 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2018.csv, total rows: 27927 0263 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_595_2016.csv, total rows: 28034 0264 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2003.csv, total rows: 28141 0265 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2012.csv, total rows: 28248 0266 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2006.csv, total rows: 28355 0267 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2017.csv, total rows: 28462 0268 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2004.csv, total rows: 28569 0269 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2010.csv, total rows: 28676 0270 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2009.csv, total rows: 28783 0271 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2006.csv, total rows: 28890 0272 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2019.csv, total rows: 28997 0273 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2014.csv, total rows: 29104 0274 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2012.csv, total rows: 29211 0275 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2016.csv, total rows: 29318 0276 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2002.csv, total rows: 29425 0277 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2003.csv, total rows: 29532 0278 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2017.csv, total rows: 29639 0279 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2015.csv, total rows: 29746 0280 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2013.csv, total rows: 29853 0281 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2007.csv, total rows: 29960 0282 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2001.csv, total rows: 30067 0283 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2018.csv, total rows: 30174 0284 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2011.csv, total rows: 30281 0285 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2008.csv, total rows: 30388 0286 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2005.csv, total rows: 30495 0287 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2016.csv, total rows: 30602 0288 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2007.csv, total rows: 30709 0289 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2013.csv, total rows: 30816 0290 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2002.csv, total rows: 30923 0291 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_595_2017.csv, total rows: 31030 0292 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2019.csv, total rows: 31137 0293 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2009.csv, total rows: 31244 0294 -> Shape: (8760, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2010.csv, total rows: 31351 0295 -> Shape: (8784, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2004.csv, total rows: 31458 0296 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2019.csv, total rows: 31565 0297 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2011.csv, total rows: 31672 0298 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2009.csv, total rows: 31779 0299 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2005.csv, total rows: 31886 0300 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2008.csv, total rows: 31993 0301 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2009.csv, total rows: 32100 0302 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2014.csv, total rows: 32207 0303 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2017.csv, total rows: 32314 0304 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2011.csv, total rows: 32421 0305 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2008.csv, total rows: 32528 0306 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2019.csv, total rows: 32635 0307 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2005.csv, total rows: 32742 0308 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2003.csv, total rows: 32849 0309 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2013.csv, total rows: 32956 0310 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2015.csv, total rows: 33063 0311 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2016.csv, total rows: 33170 0312 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2001.csv, total rows: 33277 0313 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2002.csv, total rows: 33384 0314 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2007.csv, total rows: 33491 0315 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2008.csv, total rows: 33598 0316 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2018.csv, total rows: 33705 0317 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2013.csv, total rows: 33812 0318 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2007.csv, total rows: 33919 0319 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2009.csv, total rows: 34026 0320 -> Shape: (8784, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2012.csv, total rows: 34133 0321 -> Shape: (8760, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2006.csv, total rows: 34240 0322 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2019.csv, total rows: 34347 0323 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2009.csv, total rows: 34454 0324 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_595_2015.csv, total rows: 34561 0325 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2005.csv, total rows: 34668 0326 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2014.csv, total rows: 34775 0327 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2019.csv, total rows: 34882 0328 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2011.csv, total rows: 34989 0329 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2013.csv, total rows: 35096 0330 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2007.csv, total rows: 35203 0331 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2018.csv, total rows: 35310 0332 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2011.csv, total rows: 35417 0333 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2017.csv, total rows: 35524 0334 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2003.csv, total rows: 35631 0335 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2008.csv, total rows: 35738 0336 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2005.csv, total rows: 35845 0337 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2008.csv, total rows: 35952 0338 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2001.csv, total rows: 36059 0339 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2015.csv, total rows: 36166 0340 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2014.csv, total rows: 36273 0341 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2009.csv, total rows: 36380 0342 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2009.csv, total rows: 36487 0343 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2002.csv, total rows: 36594 0344 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2004.csv, total rows: 36701 0345 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2010.csv, total rows: 36808 0346 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2016.csv, total rows: 36915 0347 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2006.csv, total rows: 37022 0348 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2019.csv, total rows: 37129 0349 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2012.csv, total rows: 37236 0350 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2010.csv, total rows: 37343 0351 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2018.csv, total rows: 37450 0352 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2001.csv, total rows: 37557 0353 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2015.csv, total rows: 37664 0354 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2004.csv, total rows: 37771 0355 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2008.csv, total rows: 37878 0356 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2018.csv, total rows: 37985 0357 -> Shape: (8760, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2007.csv, total rows: 38092 0358 -> Shape: (8760, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2013.csv, total rows: 38199 0359 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2008.csv, total rows: 38306 0360 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2006.csv, total rows: 38413 0361 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2012.csv, total rows: 38520 0362 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2019.csv, total rows: 38627 0363 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2009.csv, total rows: 38734 0364 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2003.csv, total rows: 38841 0365 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2006.csv, total rows: 38948 0366 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2012.csv, total rows: 39055 0367 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2017.csv, total rows: 39162 0368 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2014.csv, total rows: 39269 0369 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2019.csv, total rows: 39376 0370 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2010.csv, total rows: 39483 0371 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2013.csv, total rows: 39590 0372 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2016.csv, total rows: 39697 0373 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2002.csv, total rows: 39804 0374 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2004.csv, total rows: 39911 0375 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2007.csv, total rows: 40018 0376 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2009.csv, total rows: 40125 0377 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_155_2019.csv, total rows: 40232 0378 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2018.csv, total rows: 40339 0379 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2016.csv, total rows: 40446 0380 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2002.csv, total rows: 40553 0381 -> Shape: (8760, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2017.csv, total rows: 40660 0382 -> Shape: (8760, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2003.csv, total rows: 40767 0383 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2008.csv, total rows: 40874 0384 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2008.csv, total rows: 40981 0385 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2011.csv, total rows: 41088 0386 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2005.csv, total rows: 41195 0387 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2014.csv, total rows: 41302 0388 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2018.csv, total rows: 41409 0389 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2019.csv, total rows: 41516 0390 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2012.csv, total rows: 41623 0391 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2014.csv, total rows: 41730 0392 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2006.csv, total rows: 41837 0393 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2016.csv, total rows: 41944 0394 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2009.csv, total rows: 42051 0395 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2002.csv, total rows: 42158 0396 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2004.csv, total rows: 42265 0397 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2010.csv, total rows: 42372 0398 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2019.csv, total rows: 42479 0399 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2018.csv, total rows: 42586 0400 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2011.csv, total rows: 42693 0401 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2005.csv, total rows: 42800 0402 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2003.csv, total rows: 42907 0403 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2017.csv, total rows: 43014 0404 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2008.csv, total rows: 43121 0405 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2001.csv, total rows: 43228 0406 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2007.csv, total rows: 43335 0407 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2013.csv, total rows: 43442 0408 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2018.csv, total rows: 43549 0409 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2015.csv, total rows: 43656 0410 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2019.csv, total rows: 43763 0411 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2015.csv, total rows: 43870 0412 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2004.csv, total rows: 43977 0413 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2009.csv, total rows: 44084 0414 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2010.csv, total rows: 44191 0415 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2001.csv, total rows: 44298 0416 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2009.csv, total rows: 44405 0417 -> Shape: (8760, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2002.csv, total rows: 44512 0418 -> Shape: (8784, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2016.csv, total rows: 44619 0419 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2003.csv, total rows: 44726 0420 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2017.csv, total rows: 44833 0421 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2019.csv, total rows: 44940 0422 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_155_2018.csv, total rows: 45047 0423 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2008.csv, total rows: 45154 0424 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2003.csv, total rows: 45261 0425 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2006.csv, total rows: 45368 0426 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2005.csv, total rows: 45475 0427 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2012.csv, total rows: 45582 0428 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2011.csv, total rows: 45689 0429 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2017.csv, total rows: 45796 0430 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2018.csv, total rows: 45903 0431 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2019.csv, total rows: 46010 0432 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2007.csv, total rows: 46117 0433 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2004.csv, total rows: 46224 0434 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2001.csv, total rows: 46331 0435 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2018.csv, total rows: 46438 0436 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2009.csv, total rows: 46545 0437 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2015.csv, total rows: 46652 0438 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2013.csv, total rows: 46759 0439 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2010.csv, total rows: 46866 0440 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2018.csv, total rows: 46973 0441 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2009.csv, total rows: 47080 0442 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2001.csv, total rows: 47187 0443 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2019.csv, total rows: 47294 0444 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2015.csv, total rows: 47401 0445 -> Shape: (8760, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2014.csv, total rows: 47508 0446 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_405_2010.csv, total rows: 47615 0447 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2009.csv, total rows: 47722 0448 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2019.csv, total rows: 47829 0449 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2006.csv, total rows: 47936 0450 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2017.csv, total rows: 48043 0451 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2003.csv, total rows: 48150 0452 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2012.csv, total rows: 48257 0453 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2005.csv, total rows: 48364 0454 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2003.csv, total rows: 48471 0455 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2017.csv, total rows: 48578 0456 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2011.csv, total rows: 48685 0457 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2008.csv, total rows: 48792 0458 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2001.csv, total rows: 48899 0459 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2018.csv, total rows: 49006 0460 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2015.csv, total rows: 49113 0461 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2013.csv, total rows: 49220 0462 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2007.csv, total rows: 49327 0463 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2006.csv, total rows: 49434 0464 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2012.csv, total rows: 49541 0465 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2014.csv, total rows: 49648 0466 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2019.csv, total rows: 49755 0467 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2016.csv, total rows: 49862 0468 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2010.csv, total rows: 49969 0469 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2009.csv, total rows: 50076 0470 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2004.csv, total rows: 50183 0471 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2002.csv, total rows: 50290 0472 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2013.csv, total rows: 50397 0473 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2002.csv, total rows: 50504 0474 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2016.csv, total rows: 50611 0475 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2007.csv, total rows: 50718 0476 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2018.csv, total rows: 50825 0477 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2008.csv, total rows: 50932 0478 -> Shape: (8760, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2015.csv, total rows: 51039 0479 -> Shape: (8760, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2001.csv, total rows: 51146 0480 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2014.csv, total rows: 51253 0481 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2018.csv, total rows: 51360 0482 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2008.csv, total rows: 51467 0483 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2019.csv, total rows: 51574 0484 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2014.csv, total rows: 51681 0485 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2011.csv, total rows: 51788 0486 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2012.csv, total rows: 51895 0487 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2005.csv, total rows: 52002 0488 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2006.csv, total rows: 52109 0489 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2008.csv, total rows: 52216 0490 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2019.csv, total rows: 52323 0491 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2018.csv, total rows: 52430 0492 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2015.csv, total rows: 52537 0493 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2002.csv, total rows: 52644 0494 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2016.csv, total rows: 52751 0495 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2001.csv, total rows: 52858 0496 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2019.csv, total rows: 52965 0497 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2011.csv, total rows: 53072 0498 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2008.csv, total rows: 53179 0499 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2005.csv, total rows: 53286 0500 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2014.csv, total rows: 53393 0501 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2012.csv, total rows: 53500 0502 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2014.csv, total rows: 53607 0503 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2006.csv, total rows: 53714 0504 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_155_2016.csv, total rows: 53821 0505 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2011.csv, total rows: 53928 0506 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2017.csv, total rows: 54035 0507 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2003.csv, total rows: 54142 0508 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2005.csv, total rows: 54249 0509 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2019.csv, total rows: 54356 0510 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2015.csv, total rows: 54463 0511 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2001.csv, total rows: 54570 0512 -> Shape: (8760, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2018.csv, total rows: 54677 0513 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_405_2008.csv, total rows: 54784 0514 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2011.csv, total rows: 54891 0515 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2005.csv, total rows: 54998 0516 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2013.csv, total rows: 55105 0517 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2015.csv, total rows: 55212 0518 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2001.csv, total rows: 55319 0519 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2007.csv, total rows: 55426 0520 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2007.csv, total rows: 55533 0521 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2013.csv, total rows: 55640 0522 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2003.csv, total rows: 55747 0523 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2017.csv, total rows: 55854 0524 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2004.csv, total rows: 55961 0525 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2016.csv, total rows: 56068 0526 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2002.csv, total rows: 56175 0527 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2009.csv, total rows: 56282 0528 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2010.csv, total rows: 56389 0529 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2006.csv, total rows: 56496 0530 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2019.csv, total rows: 56603 0531 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2014.csv, total rows: 56710 0532 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2012.csv, total rows: 56817 0533 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2016.csv, total rows: 56924 0534 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2002.csv, total rows: 57031 0535 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2003.csv, total rows: 57138 0536 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2017.csv, total rows: 57245 0537 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2015.csv, total rows: 57352 0538 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2013.csv, total rows: 57459 0539 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2007.csv, total rows: 57566 0540 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2018.csv, total rows: 57673 0541 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2001.csv, total rows: 57780 0542 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2008.csv, total rows: 57887 0543 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2011.csv, total rows: 57994 0544 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2003.csv, total rows: 58101 0545 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2017.csv, total rows: 58208 0546 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2005.csv, total rows: 58315 0547 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2016.csv, total rows: 58422 0548 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2002.csv, total rows: 58529 0549 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2012.csv, total rows: 58636 0550 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2006.csv, total rows: 58743 0551 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2006.csv, total rows: 58850 0552 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2012.csv, total rows: 58957 0553 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2014.csv, total rows: 59064 0554 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2004.csv, total rows: 59171 0555 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2010.csv, total rows: 59278 0556 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_405_2009.csv, total rows: 59385 0557 -> Shape: (8760, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2019.csv, total rows: 59492 0558 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2014.csv, total rows: 59599 0559 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2018.csv, total rows: 59706 0560 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2002.csv, total rows: 59813 0561 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2004.csv, total rows: 59920 0562 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2010.csv, total rows: 60027 0563 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2016.csv, total rows: 60134 0564 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_155_2017.csv, total rows: 60241 0565 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2001.csv, total rows: 60348 0566 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2007.csv, total rows: 60455 0567 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2013.csv, total rows: 60562 0568 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2015.csv, total rows: 60669 0569 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2009.csv, total rows: 60776 0570 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2015.csv, total rows: 60883 0571 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2004.csv, total rows: 60990 0572 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2010.csv, total rows: 61097 0573 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2018.csv, total rows: 61204 0574 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2001.csv, total rows: 61311 0575 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2017.csv, total rows: 61418 0576 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2014.csv, total rows: 61525 0577 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2003.csv, total rows: 61632 0578 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2002.csv, total rows: 61739 0579 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2015.csv, total rows: 61846 0580 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2001.csv, total rows: 61953 0581 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2016.csv, total rows: 62060 0582 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2006.csv, total rows: 62167 0583 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2017.csv, total rows: 62274 0584 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2008.csv, total rows: 62381 0585 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2003.csv, total rows: 62488 0586 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2012.csv, total rows: 62595 0587 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2005.csv, total rows: 62702 0588 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2003.csv, total rows: 62809 0589 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2017.csv, total rows: 62916 0590 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2011.csv, total rows: 63023 0591 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_155_2015.csv, total rows: 63130 0592 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2006.csv, total rows: 63237 0593 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2014.csv, total rows: 63344 0594 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2012.csv, total rows: 63451 0595 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2002.csv, total rows: 63558 0596 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2016.csv, total rows: 63665 0597 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2006.csv, total rows: 63772 0598 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2012.csv, total rows: 63879 0599 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2004.csv, total rows: 63986 0600 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2002.csv, total rows: 64093 0601 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2016.csv, total rows: 64200 0602 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2010.csv, total rows: 64307 0603 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2018.csv, total rows: 64414 0604 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2010.csv, total rows: 64521 0605 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2009.csv, total rows: 64628 0606 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2004.csv, total rows: 64735 0607 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2014.csv, total rows: 64842 0608 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2001.csv, total rows: 64949 0609 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2013.csv, total rows: 65056 0610 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2007.csv, total rows: 65163 0611 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2015.csv, total rows: 65270 0612 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2018.csv, total rows: 65377 0613 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2011.csv, total rows: 65484 0614 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2017.csv, total rows: 65591 0615 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2003.csv, total rows: 65698 0616 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2005.csv, total rows: 65805 0617 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2008.csv, total rows: 65912 0618 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2001.csv, total rows: 66019 0619 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2015.csv, total rows: 66126 0620 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2014.csv, total rows: 66233 0621 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2009.csv, total rows: 66340 0622 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2002.csv, total rows: 66447 0623 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2004.csv, total rows: 66554 0624 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2010.csv, total rows: 66661 0625 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2016.csv, total rows: 66768 0626 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2014.csv, total rows: 66875 0627 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2006.csv, total rows: 66982 0628 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2019.csv, total rows: 67089 0629 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2012.csv, total rows: 67196 0630 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2001.csv, total rows: 67303 0631 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2015.csv, total rows: 67410 0632 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2005.csv, total rows: 67517 0633 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2011.csv, total rows: 67624 0634 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2008.csv, total rows: 67731 0635 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2019.csv, total rows: 67838 0636 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2017.csv, total rows: 67945 0637 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2011.csv, total rows: 68052 0638 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2005.csv, total rows: 68159 0639 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2003.csv, total rows: 68266 0640 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2013.csv, total rows: 68373 0641 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2007.csv, total rows: 68480 0642 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2017.csv, total rows: 68587 0643 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2003.csv, total rows: 68694 0644 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2015.csv, total rows: 68801 0645 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2013.csv, total rows: 68908 0646 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2007.csv, total rows: 69015 0647 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2001.csv, total rows: 69122 0648 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_155_2014.csv, total rows: 69229 0649 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2016.csv, total rows: 69336 0650 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2010.csv, total rows: 69443 0651 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2004.csv, total rows: 69550 0652 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2002.csv, total rows: 69657 0653 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2013.csv, total rows: 69764 0654 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2002.csv, total rows: 69871 0655 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2016.csv, total rows: 69978 0656 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2007.csv, total rows: 70085 0657 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2009.csv, total rows: 70192 0658 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2017.csv, total rows: 70299 0659 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2003.csv, total rows: 70406 0660 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2014.csv, total rows: 70513 0661 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2003.csv, total rows: 70620 0662 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2012.csv, total rows: 70727 0663 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2006.csv, total rows: 70834 0664 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2017.csv, total rows: 70941 0665 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2019.csv, total rows: 71048 0666 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2010.csv, total rows: 71155 0667 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2007.csv, total rows: 71262 0668 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2013.csv, total rows: 71369 0669 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2004.csv, total rows: 71476 0670 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2006.csv, total rows: 71583 0671 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2014.csv, total rows: 71690 0672 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2012.csv, total rows: 71797 0673 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2007.csv, total rows: 71904 0674 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2013.csv, total rows: 72011 0675 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2005.csv, total rows: 72118 0676 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2003.csv, total rows: 72225 0677 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2017.csv, total rows: 72332 0678 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2011.csv, total rows: 72439 0679 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2007.csv, total rows: 72546 0680 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2001.csv, total rows: 72653 0681 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2015.csv, total rows: 72760 0682 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2013.csv, total rows: 72867 0683 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2003.csv, total rows: 72974 0684 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2017.csv, total rows: 73081 0685 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_595_2019.csv, total rows: 73188 0686 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2011.csv, total rows: 73295 0687 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2005.csv, total rows: 73402 0688 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2015.csv, total rows: 73509 0689 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2001.csv, total rows: 73616 0690 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2018.csv, total rows: 73723 0691 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2009.csv, total rows: 73830 0692 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2012.csv, total rows: 73937 0693 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2014.csv, total rows: 74044 0694 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2006.csv, total rows: 74151 0695 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2004.csv, total rows: 74258 0696 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2016.csv, total rows: 74365 0697 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2009.csv, total rows: 74472 0698 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2002.csv, total rows: 74579 0699 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2010.csv, total rows: 74686 0700 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2004.csv, total rows: 74793 0701 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2010.csv, total rows: 74900 0702 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2019.csv, total rows: 75007 0703 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_235_2018.csv, total rows: 75114 0704 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2011.csv, total rows: 75221 0705 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2005.csv, total rows: 75328 0706 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2011.csv, total rows: 75435 0707 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2003.csv, total rows: 75542 0708 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2017.csv, total rows: 75649 0709 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2005.csv, total rows: 75756 0710 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_465_2008.csv, total rows: 75863 0711 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2001.csv, total rows: 75970 0712 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2007.csv, total rows: 76077 0713 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2013.csv, total rows: 76184 0714 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2015.csv, total rows: 76291 0715 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_690_2008.csv, total rows: 76398 0716 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_570_2019.csv, total rows: 76505 0717 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2014.csv, total rows: 76612 0718 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2004.csv, total rows: 76719 0719 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2010.csv, total rows: 76826 0720 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_595_2018.csv, total rows: 76933 0721 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2016.csv, total rows: 77040 0722 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2002.csv, total rows: 77147 0723 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2014.csv, total rows: 77254 0724 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2012.csv, total rows: 77361 0725 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2006.csv, total rows: 77468 0726 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2016.csv, total rows: 77575 0727 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2010.csv, total rows: 77682 0728 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2004.csv, total rows: 77789 0729 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2002.csv, total rows: 77896 0730 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2012.csv, total rows: 78003 0731 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2006.csv, total rows: 78110 0732 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2015.csv, total rows: 78217 0733 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2013.csv, total rows: 78324 0734 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2007.csv, total rows: 78431 0735 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2001.csv, total rows: 78538 0736 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2012.csv, total rows: 78645 0737 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2005.csv, total rows: 78752 0738 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2011.csv, total rows: 78859 0739 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2006.csv, total rows: 78966 0740 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2016.csv, total rows: 79073 0741 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2007.csv, total rows: 79180 0742 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_375_2018.csv, total rows: 79287 0743 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2013.csv, total rows: 79394 0744 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2002.csv, total rows: 79501 0745 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2019.csv, total rows: 79608 0746 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2005.csv, total rows: 79715 0747 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2014.csv, total rows: 79822 0748 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2008.csv, total rows: 79929 0749 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2011.csv, total rows: 80036 0750 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2007.csv, total rows: 80143 0751 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2010.csv, total rows: 80250 0752 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2004.csv, total rows: 80357 0753 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2013.csv, total rows: 80464 0754 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_155_2013.csv, total rows: 80571 0755 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2011.csv, total rows: 80678 0756 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2017.csv, total rows: 80785 0757 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2003.csv, total rows: 80892 0758 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2005.csv, total rows: 80999 0759 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2010.csv, total rows: 81106 0760 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2004.csv, total rows: 81213 0761 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2008.csv, total rows: 81320 0762 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2012.csv, total rows: 81427 0763 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2014.csv, total rows: 81534 0764 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2006.csv, total rows: 81641 0765 -> Shape: (8760, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2009.csv, total rows: 81748 0766 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2010.csv, total rows: 81855 0767 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2016.csv, total rows: 81962 0768 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2002.csv, total rows: 82069 0769 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2004.csv, total rows: 82176 0770 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2014.csv, total rows: 82283 0771 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2006.csv, total rows: 82390 0772 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2012.csv, total rows: 82497 0773 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2002.csv, total rows: 82604 0774 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2016.csv, total rows: 82711 0775 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2005.csv, total rows: 82818 0776 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2003.csv, total rows: 82925 0777 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2017.csv, total rows: 83032 0778 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2008.csv, total rows: 83139 0779 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2011.csv, total rows: 83246 0780 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2018.csv, total rows: 83353 0781 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2001.csv, total rows: 83460 0782 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2013.csv, total rows: 83567 0783 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2007.csv, total rows: 83674 0784 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2015.csv, total rows: 83781 0785 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2013.csv, total rows: 83888 0786 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2007.csv, total rows: 83995 0787 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2006.csv, total rows: 84102 0788 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_540_2012.csv, total rows: 84209 0789 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_670_2014.csv, total rows: 84316 0790 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2006.csv, total rows: 84423 0791 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_272_2012.csv, total rows: 84530 0792 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_200_2019.csv, total rows: 84637 0793 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2016.csv, total rows: 84744 0794 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_105_2009.csv, total rows: 84851 0795 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2010.csv, total rows: 84958 0796 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_575_2004.csv, total rows: 85065 0797 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_310_2002.csv, total rows: 85172 0798 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2017.csv, total rows: 85279 0799 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_100_2003.csv, total rows: 85386 0800 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2013.csv, total rows: 85493 0801 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_205_2007.csv, total rows: 85600 0802 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2001.csv, total rows: 85707 0803 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_135_2015.csv, total rows: 85814 0804 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2003.csv, total rows: 85921 0805 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2005.csv, total rows: 86028 0806 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_230_2011.csv, total rows: 86135 0807 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_455_2017.csv, total rows: 86242 0808 -> Shape: (8784, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_566_2008.csv, total rows: 86349 0809 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2001.csv, total rows: 86456 0810 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2007.csv, total rows: 86563 0811 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_345_2013.csv, total rows: 86670 0812 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_520_2015.csv, total rows: 86777 0813 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_418_2009.csv, total rows: 86884 0814 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2005.csv, total rows: 86991 0815 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_625_2011.csv, total rows: 87098 0816 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2002.csv, total rows: 87205 0817 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2004.csv, total rows: 87312 0818 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_435_2010.csv, total rows: 87419 0819 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_250_2016.csv, total rows: 87526 0820 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2005.csv, total rows: 87633 0821 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2012.csv, total rows: 87740 0822 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_400_2006.csv, total rows: 87847 0823 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_185_2011.csv, total rows: 87954 0824 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_510_2009.csv, total rows: 88061 0825 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2010.csv, total rows: 88168 0826 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2001.csv, total rows: 88275 0827 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_497_2018.csv, total rows: 88382 0828 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_280_2015.csv, total rows: 88489 0829 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_160_2004.csv, total rows: 88596 0830 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2018.csv, total rows: 88703 0831 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2015.csv, total rows: 88810 0832 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2011.csv, total rows: 88917 0833 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2001.csv, total rows: 89024 0834 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2005.csv, total rows: 89131 0835 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2010.csv, total rows: 89238 0836 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2004.csv, total rows: 89345 0837 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2006.csv, total rows: 89452 0838 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2019.csv, total rows: 89559 0839 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2012.csv, total rows: 89666 0840 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2015.csv, total rows: 89773 0841 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2004.csv, total rows: 89880 0842 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2009.csv, total rows: 89987 0843 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2010.csv, total rows: 90094 0844 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2001.csv, total rows: 90201 0845 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2016.csv, total rows: 90308 0846 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2002.csv, total rows: 90415 0847 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2019.csv, total rows: 90522 0848 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2015.csv, total rows: 90629 0849 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2001.csv, total rows: 90736 0850 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2014.csv, total rows: 90843 0851 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2005.csv, total rows: 90950 0852 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2011.csv, total rows: 91057 0853 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_140_2008.csv, total rows: 91164 0854 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2011.csv, total rows: 91271 0855 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2005.csv, total rows: 91378 0856 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2003.csv, total rows: 91485 0857 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2014.csv, total rows: 91592 0858 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2008.csv, total rows: 91699 0859 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2017.csv, total rows: 91806 0860 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2001.csv, total rows: 91913 0861 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2015.csv, total rows: 92020 0862 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2014.csv, total rows: 92127 0863 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2001.csv, total rows: 92234 0864 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2009.csv, total rows: 92341 0865 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2016.csv, total rows: 92448 0866 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2002.csv, total rows: 92555 0867 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2015.csv, total rows: 92662 0868 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2004.csv, total rows: 92769 0869 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_140_2009.csv, total rows: 92876 0870 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2010.csv, total rows: 92983 0871 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2010.csv, total rows: 93090 0872 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2004.csv, total rows: 93197 0873 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2015.csv, total rows: 93304 0874 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2001.csv, total rows: 93411 0875 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2014.csv, total rows: 93518 0876 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2018.csv, total rows: 93625 0877 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2003.csv, total rows: 93732 0878 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2017.csv, total rows: 93839 0879 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2008.csv, total rows: 93946 0880 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2011.csv, total rows: 94053 0881 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2005.csv, total rows: 94160 0882 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2014.csv, total rows: 94267 0883 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2013.csv, total rows: 94374 0884 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2007.csv, total rows: 94481 0885 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2018.csv, total rows: 94588 0886 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2005.csv, total rows: 94695 0887 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2011.csv, total rows: 94802 0888 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2004.csv, total rows: 94909 0889 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2010.csv, total rows: 95016 0890 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2014.csv, total rows: 95123 0891 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2019.csv, total rows: 95230 0892 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2019.csv, total rows: 95337 0893 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2006.csv, total rows: 95444 0894 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2002.csv, total rows: 95551 0895 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2012.csv, total rows: 95658 0896 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2016.csv, total rows: 95765 0897 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2008.csv, total rows: 95872 0898 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2007.csv, total rows: 95979 0899 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2009.csv, total rows: 96086 0900 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2013.csv, total rows: 96193 0901 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2011.csv, total rows: 96300 0902 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2005.csv, total rows: 96407 0903 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2013.csv, total rows: 96514 0904 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2002.csv, total rows: 96621 0905 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2016.csv, total rows: 96728 0906 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2007.csv, total rows: 96835 0907 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2001.csv, total rows: 96942 0908 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2018.csv, total rows: 97049 0909 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2015.csv, total rows: 97156 0910 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2009.csv, total rows: 97263 0911 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2002.csv, total rows: 97370 0912 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2016.csv, total rows: 97477 0913 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2017.csv, total rows: 97584 0914 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2003.csv, total rows: 97691 0915 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2012.csv, total rows: 97798 0916 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2006.csv, total rows: 97905 0917 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2006.csv, total rows: 98012 0918 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2012.csv, total rows: 98119 0919 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2014.csv, total rows: 98226 0920 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2003.csv, total rows: 98333 0921 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2017.csv, total rows: 98440 0922 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2019.csv, total rows: 98547 0923 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2018.csv, total rows: 98654 0924 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2016.csv, total rows: 98761 0925 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2002.csv, total rows: 98868 0926 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2003.csv, total rows: 98975 0927 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2019.csv, total rows: 99082 0928 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2017.csv, total rows: 99189 0929 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2016.csv, total rows: 99296 0930 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2001.csv, total rows: 99403 0931 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2018.csv, total rows: 99510 0932 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2015.csv, total rows: 99617 0933 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2002.csv, total rows: 99724 0934 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2013.csv, total rows: 99831 0935 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2007.csv, total rows: 99938 0936 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2007.csv, total rows: 100045 0937 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2013.csv, total rows: 100152 0938 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2002.csv, total rows: 100259 0939 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2016.csv, total rows: 100366 0940 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2017.csv, total rows: 100473 0941 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2003.csv, total rows: 100580 0942 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2008.csv, total rows: 100687 0943 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2014.csv, total rows: 100794 0944 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2019.csv, total rows: 100901 0945 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2006.csv, total rows: 101008 0946 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2017.csv, total rows: 101115 0947 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2003.csv, total rows: 101222 0948 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2012.csv, total rows: 101329 0949 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2004.csv, total rows: 101436 0950 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2010.csv, total rows: 101543 0951 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2012.csv, total rows: 101650 0952 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2006.csv, total rows: 101757 0953 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2008.csv, total rows: 101864 0954 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2009.csv, total rows: 101971 0955 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2017.csv, total rows: 102078 0956 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2013.csv, total rows: 102185 0957 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2018.csv, total rows: 102292 0958 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2003.csv, total rows: 102399 0959 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2007.csv, total rows: 102506 0960 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2003.csv, total rows: 102613 0961 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2007.csv, total rows: 102720 0962 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2008.csv, total rows: 102827 0963 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2017.csv, total rows: 102934 0964 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2013.csv, total rows: 103041 0965 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2002.csv, total rows: 103148 0966 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2016.csv, total rows: 103255 0967 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2018.csv, total rows: 103362 0968 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2019.csv, total rows: 103469 0969 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2016.csv, total rows: 103576 0970 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2007.csv, total rows: 103683 0971 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2013.csv, total rows: 103790 0972 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2002.csv, total rows: 103897 0973 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2014.csv, total rows: 104004 0974 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2018.csv, total rows: 104111 0975 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2004.csv, total rows: 104218 0976 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2010.csv, total rows: 104325 0977 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2009.csv, total rows: 104432 0978 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2007.csv, total rows: 104539 0979 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2013.csv, total rows: 104646 0980 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2012.csv, total rows: 104753 0981 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2006.csv, total rows: 104860 0982 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2003.csv, total rows: 104967 0983 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2017.csv, total rows: 105074 0984 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2017.csv, total rows: 105181 0985 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2003.csv, total rows: 105288 0986 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2013.csv, total rows: 105395 0987 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2009.csv, total rows: 105502 0988 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2007.csv, total rows: 105609 0989 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2006.csv, total rows: 105716 0990 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2011.csv, total rows: 105823 0991 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2008.csv, total rows: 105930 0992 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2005.csv, total rows: 106037 0993 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2012.csv, total rows: 106144 0994 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2004.csv, total rows: 106251 0995 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2013.csv, total rows: 106358 0996 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2007.csv, total rows: 106465 0997 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2010.csv, total rows: 106572 0998 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_270_2009.csv, total rows: 106679 0999 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_295_2008.csv, total rows: 106786 1000 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2006.csv, total rows: 106893 1001 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2012.csv, total rows: 107000 1002 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2002.csv, total rows: 107107 1003 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2016.csv, total rows: 107214 1004 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2016.csv, total rows: 107321 1005 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2002.csv, total rows: 107428 1006 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2007.csv, total rows: 107535 1007 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2013.csv, total rows: 107642 1008 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2012.csv, total rows: 107749 1009 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2006.csv, total rows: 107856 1010 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2011.csv, total rows: 107963 1011 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_120_2008.csv, total rows: 108070 1012 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2005.csv, total rows: 108177 1013 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_469_2019.csv, total rows: 108284 1014 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2001.csv, total rows: 108391 1015 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2015.csv, total rows: 108498 1016 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2003.csv, total rows: 108605 1017 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2012.csv, total rows: 108712 1018 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2006.csv, total rows: 108819 1019 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2017.csv, total rows: 108926 1020 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_585_2018.csv, total rows: 109033 1021 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2017.csv, total rows: 109140 1022 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_560_2019.csv, total rows: 109247 1023 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2003.csv, total rows: 109354 1024 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_330_2009.csv, total rows: 109461 1025 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2012.csv, total rows: 109568 1026 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2016.csv, total rows: 109675 1027 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2006.csv, total rows: 109782 1028 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2002.csv, total rows: 109889 1029 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2010.csv, total rows: 109996 1030 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2014.csv, total rows: 110103 1031 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2004.csv, total rows: 110210 1032 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2009.csv, total rows: 110317 1033 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2015.csv, total rows: 110424 1034 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2001.csv, total rows: 110531 1035 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2010.csv, total rows: 110638 1036 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2018.csv, total rows: 110745 1037 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2001.csv, total rows: 110852 1038 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2015.csv, total rows: 110959 1039 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2004.csv, total rows: 111066 1040 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2003.csv, total rows: 111173 1041 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2017.csv, total rows: 111280 1042 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2008.csv, total rows: 111387 1043 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2013.csv, total rows: 111494 1044 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2007.csv, total rows: 111601 1045 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2010.csv, total rows: 111708 1046 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2004.csv, total rows: 111815 1047 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2008.csv, total rows: 111922 1048 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2005.csv, total rows: 112029 1049 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2011.csv, total rows: 112136 1050 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2014.csv, total rows: 112243 1051 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2014.csv, total rows: 112350 1052 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2004.csv, total rows: 112457 1053 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2010.csv, total rows: 112564 1054 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2011.csv, total rows: 112671 1055 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2019.csv, total rows: 112778 1056 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2006.csv, total rows: 112885 1057 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2012.csv, total rows: 112992 1058 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2005.csv, total rows: 113099 1059 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2013.csv, total rows: 113206 1060 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2004.csv, total rows: 113313 1061 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_415_2018.csv, total rows: 113420 1062 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_385_2010.csv, total rows: 113527 1063 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_600_2007.csv, total rows: 113634 1064 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2011.csv, total rows: 113741 1065 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_360_2005.csv, total rows: 113848 1066 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2015.csv, total rows: 113955 1067 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_399_2001.csv, total rows: 114062 1068 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2001.csv, total rows: 114169 1069 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_530_2015.csv, total rows: 114276 1070 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2010.csv, total rows: 114383 1071 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_424_2004.csv, total rows: 114490 1072 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_500_2009.csv, total rows: 114597 1073 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2005.csv, total rows: 114704 1074 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_195_2011.csv, total rows: 114811 1075 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2006.csv, total rows: 114918 1076 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_550_2012.csv, total rows: 115025 1077 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2016.csv, total rows: 115132 1078 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_115_2009.csv, total rows: 115239 1079 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_300_2002.csv, total rows: 115346 1080 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2005.csv, total rows: 115453 1081 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_660_2014.csv, total rows: 115560 1082 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_210_2019.csv, total rows: 115667 1083 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_580_2011.csv, total rows: 115774 1084 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_495_2014.csv, total rows: 115881 1085 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_650_2008.csv, total rows: 115988 1086 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2001.csv, total rows: 116095 1087 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2005.csv, total rows: 116202 1088 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_125_2015.csv, total rows: 116309 1089 -> Shape: (0, 107), file: /Users/ksatola/Documents/git/air-polution/data/imgw/etl/extracted/s_t_488_2011.csv, total rows: 116416 CPU times: user 3min 23s, sys: 2min, total: 5min 23s Wall time: 5min 25s
df.shape
(166536, 107)
df.head()
Kod stacji | Nazwa stacji | year | month | day | hour | Wysokość podstawy chmur CL CM szyfrowana [kod] | Status pomiaru HPOD | Wysokość podstawy niższej [m] | Status pomiaru HPON | Wysokość podstawy wyższej [m] | Status pomiaru HPOW | Wysokość podstawy tekstowy [opis] | Pomiar przyrzadem 1 (niższa) [P] | Pomiar przyrzadem 2 (wyższa) [P] | Widzialność [kod] | Status pomiaru WID | Widzialność operatora [m] | Status pomiaru WIDO | Widzialność automat [m] | Status pomiaru WIDA | Zachmurzenie ogólne [oktanty] | Status pomiaru NOG | Kierunek wiatru [°] | Status pomiaru KRWR | Prędkość wiatru [m/s] | Status pomiaru FWR | Poryw wiatru [m/s] | Status pomiaru PORW | Temperatura powietrza [°C] | Status pomiaru TEMP | Temperatura termometru zwilżonego [°C] | Status pomiaru TTZW | Wskaźnik wentylacji [W/N] | Wskaźnik lodu [L/W] | Ciśnienie pary wodnej [hPa] | Status pomiaru CPW | Wilgotność względna [%] | Status pomiaru WLGW | Temperatura punktu rosy [°C] | Status pomiaru TPTR | Ciśnienie na pozimie stacji [hPa] | Status pomiaru PPPS | Ciśnienie na pozimie morza [hPa] | Status pomiaru PPPM | Charakterystyka tendencji [kod] | Wartość tendencji [wartość] | Status pomiaru APP | Opad za 6 godzin [mm] | Status pomiaru WO6G | Rodzaj opadu za 6 godzin [kod] | Status pomiaru ROPT | Pogoda bieżąca [kod] | Pogoda ubiegła [kod] | Zachmurzenie niskie [oktanty] | Status pomiaru CLCM | Chmury CL [kod] | Status pomiaru CHCL | Chmury CL tekstem | Chmury CM [kod] | Status pomiaru CHCM | Chmury CM tekstem | Chmury CH [kod] | Status pomiaru CHCH | Chmury CH tekstem | Stan gruntu [kod] | Status pomiaru SGRN | Niedosyt wilgotności [hPa] | Status pomiaru DEFI | Usłonecznienie | Status pomiaru USLN | Wystąpienie rosy [0/1] | Status pomiaru ROSW | Poryw maksymalny za okres WW [m/s] | Status pomiaru PORK | Godzina wystąpienia porywu | Minuta wystąpienia porywu | Temperatura gruntu -5 [°C] | Status pomiaru TG05 | Temperatura gruntu -10 [°C] | Status pomiaru TG10 | Temperatura gruntu -20 [°C] | Status pomiaru TG20 | Temperatura gruntu -50 [°C] | Status pomiaru TG50 | Temperatura gruntu -100 [°C] | Status pomiaru TG100 | Temperatura minimalna za 12 godzin [°C] | Status pomiaru TMIN | Temperatura maksymalna za 12 godzin [°C] | Status pomiaru TMAX | Temperatura minimalna przy gruncie za 12 godzin [°C] | Status pomiaru TGMI | Równoważnik wodny śniegu [mm/cm] | Status pomiaru RWSN | Wysokość pokrywy śnieżnej [cm] | Status pomiaru PKSN | Wysokość świeżo spadłego śniegu [cm] | Status pomiaru HSS | Wysokość śniegu na poletku [cm] | Status pomiaru GRSN | Gatunek śniegu [kod] | Ukształtowanie pokrywy [kod] | Wysokość próbki [cm] | Status pomiaru HPRO | Ciężar próbki [g] | Status pomiaru CIPR | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Datetime | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2005-01-01 00:00:00 | 350190566 | KRAKÓW-BALICE | 2005 | 1 | 1 | 0 | 5 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 6 | NaN | 0 | 8.0 | 0 | 8.0 | 7 | NaN | 210 | NaN | 1 | NaN | 0 | NaN | 2.3 | NaN | 1.5 | NaN | W | W | 6.3 | NaN | 87 | NaN | 0.3 | NaN | 993.6 | NaN | 1023.4 | NaN | 7 | -0.1 | NaN | 0.0 | 9.0 | 0 | 9.0 | 10 | 2 | 7 | NaN | 5 | NaN | NaN | / | NaN | NaN | / | NaN | NaN | 1 | NaN | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2005-01-01 01:00:00 | 350190566 | KRAKÓW-BALICE | 2005 | 1 | 1 | 1 | 4 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 6 | NaN | 0 | 8.0 | 0 | 8.0 | 8 | NaN | 230 | NaN | 2 | NaN | 0 | NaN | 2.0 | NaN | 1.1 | NaN | W | W | 6.0 | NaN | 85 | NaN | -0.2 | NaN | 993.2 | NaN | 1023.0 | NaN | 8 | -0.4 | NaN | 0.0 | 8.0 | 0 | 8.0 | 10 | 2 | 7 | NaN | 5 | NaN | NaN | / | NaN | NaN | / | NaN | NaN | 0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2005-01-01 02:00:00 | 350190566 | KRAKÓW-BALICE | 2005 | 1 | 1 | 2 | 4 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 6 | NaN | 0 | 8.0 | 0 | 8.0 | 8 | NaN | 220 | NaN | 3 | NaN | 0 | NaN | 2.0 | NaN | 1.1 | NaN | W | W | 6.0 | NaN | 85 | NaN | -0.2 | NaN | 992.5 | NaN | 1022.3 | NaN | 8 | -1.2 | NaN | 0.0 | 8.0 | 0 | 8.0 | 10 | 2 | 7 | NaN | 5 | NaN | NaN | / | NaN | NaN | / | NaN | NaN | 0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2005-01-01 03:00:00 | 350190566 | KRAKÓW-BALICE | 2005 | 1 | 1 | 3 | 4 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 6 | NaN | 0 | 8.0 | 0 | 8.0 | 8 | NaN | 210 | NaN | 2 | NaN | 0 | NaN | 2.4 | NaN | 1.7 | NaN | W | W | 6.4 | NaN | 89 | NaN | 0.7 | NaN | 992.6 | NaN | 1022.3 | NaN | 5 | -1.0 | NaN | 0.0 | 8.0 | 0 | 8.0 | 10 | 2 | 7 | NaN | 5 | NaN | NaN | / | NaN | NaN | / | NaN | NaN | 0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2005-01-01 04:00:00 | 350190566 | KRAKÓW-BALICE | 2005 | 1 | 1 | 4 | 4 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 6 | NaN | 0 | 8.0 | 0 | 8.0 | 8 | NaN | 220 | NaN | 2 | NaN | 0 | NaN | 2.4 | NaN | 1.8 | NaN | W | W | 6.5 | NaN | 90 | NaN | 1.0 | NaN | 992.3 | NaN | 1022.0 | NaN | 7 | -0.9 | NaN | 0.0 | 8.0 | 0 | 8.0 | 60 | 2 | 7 | NaN | 5 | NaN | NaN | / | NaN | NaN | / | NaN | NaN | 0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
df.tail()
Kod stacji | Nazwa stacji | year | month | day | hour | Wysokość podstawy chmur CL CM szyfrowana [kod] | Status pomiaru HPOD | Wysokość podstawy niższej [m] | Status pomiaru HPON | Wysokość podstawy wyższej [m] | Status pomiaru HPOW | Wysokość podstawy tekstowy [opis] | Pomiar przyrzadem 1 (niższa) [P] | Pomiar przyrzadem 2 (wyższa) [P] | Widzialność [kod] | Status pomiaru WID | Widzialność operatora [m] | Status pomiaru WIDO | Widzialność automat [m] | Status pomiaru WIDA | Zachmurzenie ogólne [oktanty] | Status pomiaru NOG | Kierunek wiatru [°] | Status pomiaru KRWR | Prędkość wiatru [m/s] | Status pomiaru FWR | Poryw wiatru [m/s] | Status pomiaru PORW | Temperatura powietrza [°C] | Status pomiaru TEMP | Temperatura termometru zwilżonego [°C] | Status pomiaru TTZW | Wskaźnik wentylacji [W/N] | Wskaźnik lodu [L/W] | Ciśnienie pary wodnej [hPa] | Status pomiaru CPW | Wilgotność względna [%] | Status pomiaru WLGW | Temperatura punktu rosy [°C] | Status pomiaru TPTR | Ciśnienie na pozimie stacji [hPa] | Status pomiaru PPPS | Ciśnienie na pozimie morza [hPa] | Status pomiaru PPPM | Charakterystyka tendencji [kod] | Wartość tendencji [wartość] | Status pomiaru APP | Opad za 6 godzin [mm] | Status pomiaru WO6G | Rodzaj opadu za 6 godzin [kod] | Status pomiaru ROPT | Pogoda bieżąca [kod] | Pogoda ubiegła [kod] | Zachmurzenie niskie [oktanty] | Status pomiaru CLCM | Chmury CL [kod] | Status pomiaru CHCL | Chmury CL tekstem | Chmury CM [kod] | Status pomiaru CHCM | Chmury CM tekstem | Chmury CH [kod] | Status pomiaru CHCH | Chmury CH tekstem | Stan gruntu [kod] | Status pomiaru SGRN | Niedosyt wilgotności [hPa] | Status pomiaru DEFI | Usłonecznienie | Status pomiaru USLN | Wystąpienie rosy [0/1] | Status pomiaru ROSW | Poryw maksymalny za okres WW [m/s] | Status pomiaru PORK | Godzina wystąpienia porywu | Minuta wystąpienia porywu | Temperatura gruntu -5 [°C] | Status pomiaru TG05 | Temperatura gruntu -10 [°C] | Status pomiaru TG10 | Temperatura gruntu -20 [°C] | Status pomiaru TG20 | Temperatura gruntu -50 [°C] | Status pomiaru TG50 | Temperatura gruntu -100 [°C] | Status pomiaru TG100 | Temperatura minimalna za 12 godzin [°C] | Status pomiaru TMIN | Temperatura maksymalna za 12 godzin [°C] | Status pomiaru TMAX | Temperatura minimalna przy gruncie za 12 godzin [°C] | Status pomiaru TGMI | Równoważnik wodny śniegu [mm/cm] | Status pomiaru RWSN | Wysokość pokrywy śnieżnej [cm] | Status pomiaru PKSN | Wysokość świeżo spadłego śniegu [cm] | Status pomiaru HSS | Wysokość śniegu na poletku [cm] | Status pomiaru GRSN | Gatunek śniegu [kod] | Ukształtowanie pokrywy [kod] | Wysokość próbki [cm] | Status pomiaru HPRO | Ciężar próbki [g] | Status pomiaru CIPR | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Datetime | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2008-12-31 19:00:00 | 350190566 | KRAKÓW-BALICE | 2008 | 12 | 31 | 19 | 9 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 4 | NaN | 0 | 8.0 | 0 | 8.0 | 0 | NaN | 0 | NaN | 0 | NaN | 0 | NaN | -6.2 | NaN | 0.0 | 8.0 | U | NaN | 3.5 | NaN | 92 | NaN | -7.3 | NaN | 996.4 | NaN | 1027.2 | NaN | 7 | -1.6 | NaN | 0.0 | 8.0 | 0 | 8.0 | 10 | 0 | 0 | NaN | 0 | NaN | NaN | 0 | NaN | NaN | 0 | NaN | NaN | 0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2008-12-31 20:00:00 | 350190566 | KRAKÓW-BALICE | 2008 | 12 | 31 | 20 | 9 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 4 | NaN | 0 | 8.0 | 0 | 8.0 | 0 | NaN | 200 | NaN | 1 | NaN | 0 | NaN | -7.3 | NaN | 0.0 | 8.0 | U | NaN | 3.3 | NaN | 94 | NaN | -8.1 | NaN | 996.1 | NaN | 1027.1 | NaN | 6 | -1.4 | NaN | 0.0 | 8.0 | 0 | 8.0 | 10 | 0 | 0 | NaN | 0 | NaN | NaN | 0 | NaN | NaN | 0 | NaN | NaN | 0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2008-12-31 21:00:00 | 350190566 | KRAKÓW-BALICE | 2008 | 12 | 31 | 21 | 9 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 4 | NaN | 0 | 8.0 | 0 | 8.0 | 0 | NaN | 0 | NaN | 0 | NaN | 0 | NaN | -7.2 | NaN | 0.0 | 8.0 | U | NaN | 3.4 | NaN | 94 | NaN | -8.0 | NaN | 995.4 | NaN | 1026.3 | NaN | 7 | -1.5 | NaN | 0.0 | 8.0 | 0 | 8.0 | 10 | 0 | 0 | NaN | 0 | NaN | NaN | 0 | NaN | NaN | 0 | NaN | NaN | 0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2008-12-31 22:00:00 | 350190566 | KRAKÓW-BALICE | 2008 | 12 | 31 | 22 | 9 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 4 | NaN | 0 | 8.0 | 0 | 8.0 | 0 | NaN | 230 | NaN | 1 | NaN | 0 | NaN | -8.4 | NaN | 0.0 | 8.0 | U | NaN | 3.1 | NaN | 94 | NaN | -9.2 | NaN | 995.3 | NaN | 1026.4 | NaN | 7 | -1.1 | NaN | 0.0 | 8.0 | 0 | 8.0 | 10 | 0 | 0 | NaN | 0 | NaN | NaN | 0 | NaN | NaN | 0 | NaN | NaN | 0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2008-12-31 23:00:00 | 350190566 | KRAKÓW-BALICE | 2008 | 12 | 31 | 23 | 9 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 4 | NaN | 0 | 8.0 | 0 | 8.0 | 0 | NaN | 240 | NaN | 1 | NaN | 0 | NaN | -8.6 | NaN | 0.0 | 8.0 | U | NaN | 3.0 | NaN | 94 | NaN | -9.4 | NaN | 994.8 | NaN | 1025.9 | NaN | 7 | -1.3 | NaN | 0.0 | 8.0 | 0 | 8.0 | 10 | 0 | 0 | NaN | 0 | NaN | NaN | 0 | NaN | NaN | 0 | NaN | NaN | 0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
df.sample(5)
Kod stacji | Nazwa stacji | year | month | day | hour | Wysokość podstawy chmur CL CM szyfrowana [kod] | Status pomiaru HPOD | Wysokość podstawy niższej [m] | Status pomiaru HPON | Wysokość podstawy wyższej [m] | Status pomiaru HPOW | Wysokość podstawy tekstowy [opis] | Pomiar przyrzadem 1 (niższa) [P] | Pomiar przyrzadem 2 (wyższa) [P] | Widzialność [kod] | Status pomiaru WID | Widzialność operatora [m] | Status pomiaru WIDO | Widzialność automat [m] | Status pomiaru WIDA | Zachmurzenie ogólne [oktanty] | Status pomiaru NOG | Kierunek wiatru [°] | Status pomiaru KRWR | Prędkość wiatru [m/s] | Status pomiaru FWR | Poryw wiatru [m/s] | Status pomiaru PORW | Temperatura powietrza [°C] | Status pomiaru TEMP | Temperatura termometru zwilżonego [°C] | Status pomiaru TTZW | Wskaźnik wentylacji [W/N] | Wskaźnik lodu [L/W] | Ciśnienie pary wodnej [hPa] | Status pomiaru CPW | Wilgotność względna [%] | Status pomiaru WLGW | Temperatura punktu rosy [°C] | Status pomiaru TPTR | Ciśnienie na pozimie stacji [hPa] | Status pomiaru PPPS | Ciśnienie na pozimie morza [hPa] | Status pomiaru PPPM | Charakterystyka tendencji [kod] | Wartość tendencji [wartość] | Status pomiaru APP | Opad za 6 godzin [mm] | Status pomiaru WO6G | Rodzaj opadu za 6 godzin [kod] | Status pomiaru ROPT | Pogoda bieżąca [kod] | Pogoda ubiegła [kod] | Zachmurzenie niskie [oktanty] | Status pomiaru CLCM | Chmury CL [kod] | Status pomiaru CHCL | Chmury CL tekstem | Chmury CM [kod] | Status pomiaru CHCM | Chmury CM tekstem | Chmury CH [kod] | Status pomiaru CHCH | Chmury CH tekstem | Stan gruntu [kod] | Status pomiaru SGRN | Niedosyt wilgotności [hPa] | Status pomiaru DEFI | Usłonecznienie | Status pomiaru USLN | Wystąpienie rosy [0/1] | Status pomiaru ROSW | Poryw maksymalny za okres WW [m/s] | Status pomiaru PORK | Godzina wystąpienia porywu | Minuta wystąpienia porywu | Temperatura gruntu -5 [°C] | Status pomiaru TG05 | Temperatura gruntu -10 [°C] | Status pomiaru TG10 | Temperatura gruntu -20 [°C] | Status pomiaru TG20 | Temperatura gruntu -50 [°C] | Status pomiaru TG50 | Temperatura gruntu -100 [°C] | Status pomiaru TG100 | Temperatura minimalna za 12 godzin [°C] | Status pomiaru TMIN | Temperatura maksymalna za 12 godzin [°C] | Status pomiaru TMAX | Temperatura minimalna przy gruncie za 12 godzin [°C] | Status pomiaru TGMI | Równoważnik wodny śniegu [mm/cm] | Status pomiaru RWSN | Wysokość pokrywy śnieżnej [cm] | Status pomiaru PKSN | Wysokość świeżo spadłego śniegu [cm] | Status pomiaru HSS | Wysokość śniegu na poletku [cm] | Status pomiaru GRSN | Gatunek śniegu [kod] | Ukształtowanie pokrywy [kod] | Wysokość próbki [cm] | Status pomiaru HPRO | Ciężar próbki [g] | Status pomiaru CIPR | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Datetime | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2015-08-29 02:00:00 | 350190566 | KRAKÓW-BALICE | 2015 | 8 | 29 | 2 | 7 | NaN | 1600 | NaN | 0 | 8.0 | 1600 | NaN | NaN | 8 | NaN | 30000 | NaN | 0 | NaN | 7 | NaN | 65 | NaN | 2 | NaN | 0 | 9.0 | 20.1 | NaN | 0.0 | 8.0 | U | NaN | 19.0 | NaN | 81 | NaN | 16.7 | NaN | 993.8 | NaN | 1022.1 | NaN | 1 | 1.4 | NaN | 0.0 | 8.0 | 0 | 8.0 | 3 | 2 | 7 | NaN | 5 | NaN | Sc str pe | / | NaN | / | / | NaN | / | 0 | 8.0 | 4.5 | NaN | 0.0 | 8.0 | 0.0 | NaN | 0 | 9.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2011-08-18 19:00:00 | 350190566 | KRAKÓW-BALICE | 2011 | 8 | 18 | 19 | 9 | NaN | 0 | 8.0 | 0 | 8.0 | >2500 | NaN | NaN | 8 | NaN | 20000 | NaN | 0 | NaN | 1 | NaN | 0 | NaN | 0 | NaN | 0 | 9.0 | 20.5 | NaN | 0.0 | 8.0 | U | NaN | 19.5 | NaN | 81 | NaN | 17.1 | NaN | 989.3 | NaN | 1017.5 | NaN | 3 | 0.5 | NaN | 0.0 | 8.0 | 0 | 8.0 | 3 | 0 | 1 | NaN | 0 | NaN | . | 3 | NaN | Ac str pe | 0 | NaN | . | 0 | 8.0 | 4.6 | NaN | 0.0 | 8.0 | NaN | 8.0 | 0 | 9.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2010-03-19 14:00:00 | 350190566 | KRAKÓW-BALICE | 2010 | 3 | 19 | 14 | 9 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 8 | NaN | 0 | 8.0 | 0 | 8.0 | 7 | NaN | 240 | NaN | 6 | NaN | 0 | NaN | 14.5 | NaN | 0.0 | 8.0 | U | NaN | 6.3 | NaN | 38 | NaN | 0.3 | NaN | 991.7 | NaN | 1020.1 | NaN | 6 | -1.0 | NaN | 0.0 | 8.0 | 0 | 8.0 | 2 | 2 | 0 | NaN | 0 | NaN | NaN | 0 | NaN | NaN | 8 | NaN | NaN | 0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2008-08-29 10:00:00 | 350190566 | KRAKÓW-BALICE | 2008 | 8 | 29 | 10 | 5 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 7 | NaN | 0 | 8.0 | 0 | 8.0 | 7 | NaN | 260 | NaN | 7 | NaN | 0 | NaN | 19.8 | NaN | 0.0 | 8.0 | U | NaN | 15.4 | NaN | 67 | NaN | 13.5 | NaN | 986.3 | NaN | 1014.1 | NaN | 8 | -0.4 | NaN | 0.0 | 8.0 | 0 | 8.0 | 1 | 2 | 3 | NaN | 5 | NaN | NaN | 3 | NaN | NaN | / | NaN | NaN | 0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2013-05-08 12:00:00 | 350190566 | KRAKÓW-BALICE | 2013 | 5 | 8 | 12 | 6 | NaN | 1000 | NaN | 0 | 8.0 | 1000 | NaN | NaN | 8 | NaN | 30000 | NaN | 0 | NaN | 2 | NaN | 44 | NaN | 4 | NaN | 0 | 9.0 | 25.2 | NaN | 0.0 | 8.0 | U | NaN | 17.3 | NaN | 54 | NaN | 15.2 | NaN | 987.5 | NaN | 1015.2 | NaN | 8 | -1.4 | NaN | 0.0 | 9.0 | 0 | 9.0 | 3 | 4 | 1 | NaN | 2 | NaN | Cu con | 0 | NaN | . | 2 | NaN | Ci spi2 | 1 | NaN | 14.7 | NaN | 0.0 | 8.0 | NaN | 8.0 | 0 | 9.0 | NaN | NaN | 15.7 | NaN | 14.2 | NaN | 12.8 | NaN | 11.2 | NaN | 9.0 | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
# Create a save directory if not exists
save_dir = '/Users/ksatola/Documents/git/air-polution/data/final'
Path(save_dir).mkdir(parents=True, exist_ok=True)
# Save
imgw_all_file = '/Users/ksatola/Documents/git/air-polution/data/final/imgw_all.csv'
df.to_csv(imgw_all_file, encoding="utf-8", index=True)
# Test read
# when without low_memory=False
# https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.errors.DtypeWarning.html
#/Users/ksatola/anaconda3/lib/python3.7/site-packages/IPython/core/interactiveshell.py:3058:
# DtypeWarning: Columns (6,12,13,14,34,52,53,54,56,58,59,61,62,64,101,102) have mixed types.
# Specify dtype option on import or set low_memory=False.
# interactivity=interactivity, compiler=compiler, result=result)
df_read = pd.read_csv(imgw_all_file, encoding='utf-8', sep=",", index_col="Datetime", low_memory=False)
df_read.head()
Kod stacji | Nazwa stacji | year | month | day | hour | Wysokość podstawy chmur CL CM szyfrowana [kod] | Status pomiaru HPOD | Wysokość podstawy niższej [m] | Status pomiaru HPON | Wysokość podstawy wyższej [m] | Status pomiaru HPOW | Wysokość podstawy tekstowy [opis] | Pomiar przyrzadem 1 (niższa) [P] | Pomiar przyrzadem 2 (wyższa) [P] | Widzialność [kod] | Status pomiaru WID | Widzialność operatora [m] | Status pomiaru WIDO | Widzialność automat [m] | Status pomiaru WIDA | Zachmurzenie ogólne [oktanty] | Status pomiaru NOG | Kierunek wiatru [°] | Status pomiaru KRWR | Prędkość wiatru [m/s] | Status pomiaru FWR | Poryw wiatru [m/s] | Status pomiaru PORW | Temperatura powietrza [°C] | Status pomiaru TEMP | Temperatura termometru zwilżonego [°C] | Status pomiaru TTZW | Wskaźnik wentylacji [W/N] | Wskaźnik lodu [L/W] | Ciśnienie pary wodnej [hPa] | Status pomiaru CPW | Wilgotność względna [%] | Status pomiaru WLGW | Temperatura punktu rosy [°C] | Status pomiaru TPTR | Ciśnienie na pozimie stacji [hPa] | Status pomiaru PPPS | Ciśnienie na pozimie morza [hPa] | Status pomiaru PPPM | Charakterystyka tendencji [kod] | Wartość tendencji [wartość] | Status pomiaru APP | Opad za 6 godzin [mm] | Status pomiaru WO6G | Rodzaj opadu za 6 godzin [kod] | Status pomiaru ROPT | Pogoda bieżąca [kod] | Pogoda ubiegła [kod] | Zachmurzenie niskie [oktanty] | Status pomiaru CLCM | Chmury CL [kod] | Status pomiaru CHCL | Chmury CL tekstem | Chmury CM [kod] | Status pomiaru CHCM | Chmury CM tekstem | Chmury CH [kod] | Status pomiaru CHCH | Chmury CH tekstem | Stan gruntu [kod] | Status pomiaru SGRN | Niedosyt wilgotności [hPa] | Status pomiaru DEFI | Usłonecznienie | Status pomiaru USLN | Wystąpienie rosy [0/1] | Status pomiaru ROSW | Poryw maksymalny za okres WW [m/s] | Status pomiaru PORK | Godzina wystąpienia porywu | Minuta wystąpienia porywu | Temperatura gruntu -5 [°C] | Status pomiaru TG05 | Temperatura gruntu -10 [°C] | Status pomiaru TG10 | Temperatura gruntu -20 [°C] | Status pomiaru TG20 | Temperatura gruntu -50 [°C] | Status pomiaru TG50 | Temperatura gruntu -100 [°C] | Status pomiaru TG100 | Temperatura minimalna za 12 godzin [°C] | Status pomiaru TMIN | Temperatura maksymalna za 12 godzin [°C] | Status pomiaru TMAX | Temperatura minimalna przy gruncie za 12 godzin [°C] | Status pomiaru TGMI | Równoważnik wodny śniegu [mm/cm] | Status pomiaru RWSN | Wysokość pokrywy śnieżnej [cm] | Status pomiaru PKSN | Wysokość świeżo spadłego śniegu [cm] | Status pomiaru HSS | Wysokość śniegu na poletku [cm] | Status pomiaru GRSN | Gatunek śniegu [kod] | Ukształtowanie pokrywy [kod] | Wysokość próbki [cm] | Status pomiaru HPRO | Ciężar próbki [g] | Status pomiaru CIPR | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Datetime | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2005-01-01 00:00:00 | 350190566 | KRAKÓW-BALICE | 2005 | 1 | 1 | 0 | 5 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 6 | NaN | 0 | 8.0 | 0 | 8.0 | 7 | NaN | 210 | NaN | 1 | NaN | 0 | NaN | 2.3 | NaN | 1.5 | NaN | W | W | 6.3 | NaN | 87 | NaN | 0.3 | NaN | 993.6 | NaN | 1023.4 | NaN | 7 | -0.1 | NaN | 0.0 | 9.0 | 0 | 9.0 | 10 | 2 | 7 | NaN | 5 | NaN | NaN | / | NaN | NaN | / | NaN | NaN | 1 | NaN | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2005-01-01 01:00:00 | 350190566 | KRAKÓW-BALICE | 2005 | 1 | 1 | 1 | 4 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 6 | NaN | 0 | 8.0 | 0 | 8.0 | 8 | NaN | 230 | NaN | 2 | NaN | 0 | NaN | 2.0 | NaN | 1.1 | NaN | W | W | 6.0 | NaN | 85 | NaN | -0.2 | NaN | 993.2 | NaN | 1023.0 | NaN | 8 | -0.4 | NaN | 0.0 | 8.0 | 0 | 8.0 | 10 | 2 | 7 | NaN | 5 | NaN | NaN | / | NaN | NaN | / | NaN | NaN | 0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2005-01-01 02:00:00 | 350190566 | KRAKÓW-BALICE | 2005 | 1 | 1 | 2 | 4 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 6 | NaN | 0 | 8.0 | 0 | 8.0 | 8 | NaN | 220 | NaN | 3 | NaN | 0 | NaN | 2.0 | NaN | 1.1 | NaN | W | W | 6.0 | NaN | 85 | NaN | -0.2 | NaN | 992.5 | NaN | 1022.3 | NaN | 8 | -1.2 | NaN | 0.0 | 8.0 | 0 | 8.0 | 10 | 2 | 7 | NaN | 5 | NaN | NaN | / | NaN | NaN | / | NaN | NaN | 0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2005-01-01 03:00:00 | 350190566 | KRAKÓW-BALICE | 2005 | 1 | 1 | 3 | 4 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 6 | NaN | 0 | 8.0 | 0 | 8.0 | 8 | NaN | 210 | NaN | 2 | NaN | 0 | NaN | 2.4 | NaN | 1.7 | NaN | W | W | 6.4 | NaN | 89 | NaN | 0.7 | NaN | 992.6 | NaN | 1022.3 | NaN | 5 | -1.0 | NaN | 0.0 | 8.0 | 0 | 8.0 | 10 | 2 | 7 | NaN | 5 | NaN | NaN | / | NaN | NaN | / | NaN | NaN | 0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
2005-01-01 04:00:00 | 350190566 | KRAKÓW-BALICE | 2005 | 1 | 1 | 4 | 4 | NaN | 0 | 8.0 | 0 | 8.0 | NaN | NaN | NaN | 6 | NaN | 0 | 8.0 | 0 | 8.0 | 8 | NaN | 220 | NaN | 2 | NaN | 0 | NaN | 2.4 | NaN | 1.8 | NaN | W | W | 6.5 | NaN | 90 | NaN | 1.0 | NaN | 992.3 | NaN | 1022.0 | NaN | 7 | -0.9 | NaN | 0.0 | 8.0 | 0 | 8.0 | 60 | 2 | 7 | NaN | 5 | NaN | NaN | / | NaN | NaN | / | NaN | NaN | 0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | NaN | 8.0 | 0 | 8.0 | NaN | NaN | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0.0 | 8.0 | 0 | 8.0 | 0 | 8.0 | 0 | 8.0 | NaN | NaN | 0 | 8.0 | 0 | 8.0 |
df_read.shape
(166536, 107)
assert df.shape[1] == df_read.shape[1]