diff --git a/app.py b/app.py index 38f18f608958061f79ca16a9354fa69585f0dcce..252f539abe9246637d98d3a3dbd2aed768944a98 100644 --- a/app.py +++ b/app.py @@ -1,11 +1,63 @@ -import os import streamlit as st import zipfile -import torch from utils import * +import numpy as np import matplotlib.pyplot as plt +import matplotlib.animation as animation +import streamlit.components.v1 as components from matplotlib import colors +st.set_page_config(layout="wide") + +def create_animation(images, pred_dates): + print('Creating composition of images...') + fps = 2 + fig_an, ax_an = plt.subplots() + plt.title("") + a = images[0] + im = ax_an.imshow(a, interpolation='none', aspect='auto', vmin=0, vmax=1) + + title = ax_an.text(0.5, 0.85, "", bbox={'facecolor': 'w', 'alpha': 0.5, 'pad': 5}, + transform=ax_an.transAxes, ha="center") + + def animate_func(idx): + title.set_text("date: " + pred_dates[idx]) + im.set_array(images[idx]) + return [im] + + anima = animation.FuncAnimation(fig_an, animate_func, frames=len(images), interval=1000 / fps, blit=True, + repeat=False) + print('Done!') + return anima + + +def load_daily_preds_as_animations(pred_full_paths, pred_dates): + daily_preds = [] + for path in pred_full_paths: + img, _ = read(path) + img = np.squeeze(img) + img = [classes_color_map[p] for p in img] + daily_preds.append(img) + anima = create_animation(daily_preds, pred_dates) + return anima + + +def load_src_images_as_animations(img_paths, pred_dates): + imgs = [] + for path in img_paths: + img, _ = read(path) + + # https://custom-scripts.sentinel-hub.com/custom-scripts/sentinel-2/composites/ + # IREA image: + # False colors (8,4,3): 2,blue-B3,green-B4,5,6,7,red-B8,11,12 + # Simple RGB (4, 3, 2): blue-B2,green-B3,red-B4,5,6,7,8,11,12 + rgb = img[[2, 1, 0], :, :] + rgb = np.moveaxis(rgb, 0, -1) + imgs.append(rgb/np.amax(rgb)) + anima = create_animation(imgs, pred_dates) + return anima + + if not hasattr(st, 'paths'): st.paths = None if not hasattr(st, 'daily_model'): @@ -43,7 +95,7 @@ if not hasattr(st, 'daily_model'): st.title('In-season and dynamic crop mapping using 3D convolution neural networks and sentinel-2 time series') -st.markdown(""" Demo App for the model presented in the paper: +st.markdown(""" Demo App for the model presented in the [paper](https://www.sciencedirect.com/science/article/pii/S0924271622003203): ``` @article{gallo2022in_season, title = {In-season and dynamic crop mapping using 3D convolution neural networks and sentinel-2 time series}, @@ -57,6 +109,7 @@ st.markdown(""" Demo App for the model presented in the paper: author = {Ignazio Gallo and Luigi Ranghetti and Nicola Landro and Riccardo {La Grassa} and Mirco Boschetti}, } ``` +***The demo doesn't work properly, we are working to fix the bugs!* """) file_uploaded = st.file_uploader( @@ -65,6 +118,7 @@ file_uploaded = st.file_uploader( accept_multiple_files=False, ) sample_path = None +tileids = None if file_uploaded is not None: with zipfile.ZipFile(file_uploaded, "r") as z: z.extractall("uploaded_samples") @@ -72,10 +126,20 @@ if file_uploaded is not None: st.markdown('or use a demo sample') if st.button('sample 1'): sample_path = 'demo_data/lombardia' + tileids = ['24'] +if st.button('sample 2'): + sample_path = 'demo_data/lombardia' + tileids = ['712'] +if st.button('sample 3'): + sample_path = 'demo_data/lombardia' + tileids = ['814'] +if st.button('sample 4'): + sample_path = 'demo_data/lombardia' + tileids = ['1509'] paths = None if sample_path is not None: - st.markdown(f'elaborating {sample_path}...') + # st.markdown(f'elaborating {sample_path} ...') validationdataset = SentinelDailyAnnualDatasetNoLabel( sample_path, @@ -83,11 +147,11 @@ if sample_path is not None: opt.classes_path, opt.sample_duration, opt.win_size, - tileids=None) + tileids=tileids) validationdataloader = torch.utils.data.DataLoader( validationdataset, batch_size=opt.batch_size, shuffle=False, num_workers=opt.workers) - st.markdown(f'predict in progress...') + st.markdown('Model prediction in progress ...') out_dir = os.path.join(opt.result_path, "seg_maps") if not os.path.exists(out_dir): @@ -154,7 +218,7 @@ if sample_path is not None: # save GT image in opt.root_path full_pth_date = os.path.join( - full_pth_patch, dates[ch][batch] + f'-ch{ch}-b{batch}-daily-pred.tif') + full_pth_patch, dates[ch] + '-daily-pred.tif') profile.update({ 'nodata': None, 'dtype': 'uint8', @@ -164,15 +228,21 @@ if sample_path is not None: st.markdown('End prediction') - folder = "demo_data/results/seg_maps/example-lombardia/2" - st.paths = os.listdir(folder) + # folder_out = "demo_data/results/seg_maps/example-lombardia/2" + folder_out = os.path.join("demo_data/results/seg_maps/"+opt.years[0]+"-lombardia/", tileids[0]) + st.paths = os.listdir(folder_out) + st.paths.sort() if st.paths is not None: - folder = "demo_data/results/seg_maps/example-lombardia/2" - file_picker = st.selectbox("Select day predict (annual is patch-pred-nn.tif)", - st.paths, index=st.paths.index('patch-pred-nn.tif')) + # folder_out = os.path.join("demo_data/results/seg_maps/example-lombardia/", tileids[0]) + folder_src = os.path.join("demo_data/lombardia/", opt.years[0], tileids[0]) + st.markdown(""" + ### Predictions + """) + # file_picker = st.selectbox("Select day predict (annual is patch-pred-nn.tif)", + # st.paths, index=st.paths.index('patch-pred-nn.tif')) - file_path = os.path.join(folder, file_picker) + file_path = os.path.join(folder_out, 'patch-pred-nn.tif') # print(file_path) target, profile = read(file_path) target = np.squeeze(target) @@ -186,18 +256,33 @@ if st.paths is not None: # print(colors.to_hex(c)) markdown_legend += f'
{l}

' - col1, col2 = st.columns(2) + col1, col2 = st.columns([2,1]) with col1: + st.markdown("**Long-term (annual) prediction**") st.pyplot(fig) with col2: + st.markdown("**Legend**") st.markdown(markdown_legend, unsafe_allow_html=True) + st.markdown("**Short-term (daily) prediction**") + img_full_paths = [os.path.join(folder_out, path) for path in st.paths if 'daily-pred' in path] + pred_dates = [path[:8] for path in st.paths if 'daily-pred' in path] + anim = load_daily_preds_as_animations(img_full_paths, pred_dates) + components.html(anim.to_jshtml(), height=600) + + st.markdown("**Input time series**") + list_dir = os.listdir(folder_src) + list_dir.sort() + img_full_paths = [os.path.join(folder_src, f) for f in list_dir if f.endswith(".tif")] + pred_dates = [f[:8] for f in list_dir if f.endswith(".tif")] + anim_src = load_src_images_as_animations(img_full_paths, pred_dates) + components.html(anim_src.to_jshtml(), height=600) + st.markdown(""" ## Lombardia Dataset You can download other patches from the original dataset created and published on [Kaggle](https://www.kaggle.com/datasets/ignazio/sentinel2-crop-mapping) and used in our paper. - + ## How to build an input file for the Demo - Using a daily FPN and giving a zip that contains 30 tiff with 7 channels, correctly named you can reach prediction of - crop mapping og the area... + Working in progress: to be defined ... """) diff --git a/demo_data/lombardia/2019/1509/20190104.tif b/demo_data/lombardia/2019/1509/20190104.tif new file mode 100755 index 0000000000000000000000000000000000000000..8a53fae3518b1096f0c255ebb21e6db5d466ebf5 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190104.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4e8740d5b5971dfe408e375f35bbe49987bb9294c3f62729ab4aaca3f7fd7f9 +size 37853 diff --git a/demo_data/lombardia/2019/1509/20190109.tif b/demo_data/lombardia/2019/1509/20190109.tif new file mode 100755 index 0000000000000000000000000000000000000000..a5b897b327aab4ba0e578b5694977cb41e2ce28f --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190109.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71d18603b9bbc7b9c18d459085f90680c89f960ac962d931c0cadcd6a333338c +size 38562 diff --git a/demo_data/lombardia/2019/1509/20190114.tif b/demo_data/lombardia/2019/1509/20190114.tif new file mode 100755 index 0000000000000000000000000000000000000000..284ee374f5d462b411acfc239fd60261bba5f1ad --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190114.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b0106023d6a708337701a32c100e9226d5db3c3101e58e696f65bc4fa9c467 +size 38215 diff --git a/demo_data/lombardia/2019/1509/20190119.tif b/demo_data/lombardia/2019/1509/20190119.tif new file mode 100755 index 0000000000000000000000000000000000000000..064120ea38799e3e23a5d67a132c78be9378069d --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190119.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ed98e9474d6d40b07f3544b082c8164d54f09e9bcb831a0f8ca0dc2ca9bb27 +size 34925 diff --git a/demo_data/lombardia/2019/1509/20190124.tif b/demo_data/lombardia/2019/1509/20190124.tif new file mode 100755 index 0000000000000000000000000000000000000000..0ceb53bde7592ba2b9557ec5b556da02acc78bb8 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190124.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa28be73fbca1ddc8547680b834907c9fdc63fe6821a5e0e80f9ceb2ee03f666 +size 38575 diff --git a/demo_data/lombardia/2019/1509/20190129.tif b/demo_data/lombardia/2019/1509/20190129.tif new file mode 100755 index 0000000000000000000000000000000000000000..74f67ce20d6e895d6f6d71a6057dddf8951eb047 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190129.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b0af3fcf29758aab775763e588472baf3fbbc4978ce058f33f36e71e8c62ec +size 37783 diff --git a/demo_data/lombardia/2019/1509/20190203.tif b/demo_data/lombardia/2019/1509/20190203.tif new file mode 100755 index 0000000000000000000000000000000000000000..e2c545ffe9254a82e2cd05a881b980080ceabbe0 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190203.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31b56144e9f6bfcd490885cfa7a91c77b6853d02c29270a6651cf7abce450297 +size 36344 diff --git a/demo_data/lombardia/2019/1509/20190208.tif b/demo_data/lombardia/2019/1509/20190208.tif new file mode 100755 index 0000000000000000000000000000000000000000..7d4ae5dddad8361f50f80e2d20947aa6e8d73d1d --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190208.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745710be86cd0c106b0f173fa13b72936cf9c287e3b09ab8afddf0b87fdd246c +size 38201 diff --git a/demo_data/lombardia/2019/1509/20190213.tif b/demo_data/lombardia/2019/1509/20190213.tif new file mode 100755 index 0000000000000000000000000000000000000000..52406864f9bda12a74045faf2a19bfd637881779 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190213.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:599411aa312225f25ae01addd6f9353f9af7259accb3f1a2eb6d54a9411011d8 +size 39142 diff --git a/demo_data/lombardia/2019/1509/20190218.tif b/demo_data/lombardia/2019/1509/20190218.tif new file mode 100755 index 0000000000000000000000000000000000000000..e66f2cfa285ba1e8f33023a222f329baa7b0ddcd --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190218.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb74cff352da01062d12e4671e0ab1bff1fa66afd2ed30dcec696c4e5a7e3cac +size 38671 diff --git a/demo_data/lombardia/2019/1509/20190223.tif b/demo_data/lombardia/2019/1509/20190223.tif new file mode 100755 index 0000000000000000000000000000000000000000..c150bfd5bacb1bd7d4c1660ba3540e98b1513002 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190223.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f16322724565a7f30c2a3931e606dbd495108f40501903c645d23571d4cb4c89 +size 39224 diff --git a/demo_data/lombardia/2019/1509/20190228.tif b/demo_data/lombardia/2019/1509/20190228.tif new file mode 100755 index 0000000000000000000000000000000000000000..363cf1d65c78168d13eb6da19465cdaad5df3587 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190228.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3e355233dcffc9acf3d51ab359c22def41a0c97768a8e6234c5f520c80247d +size 38787 diff --git a/demo_data/lombardia/2019/1509/20190305.tif b/demo_data/lombardia/2019/1509/20190305.tif new file mode 100755 index 0000000000000000000000000000000000000000..71ae8643ff82f8ac7f1eb417eadf7b728b536465 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190305.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b417f0f52471c7b38a6c9c064b81d79ed18767e376e25194c0e915413dcb753 +size 35927 diff --git a/demo_data/lombardia/2019/1509/20190310.tif b/demo_data/lombardia/2019/1509/20190310.tif new file mode 100755 index 0000000000000000000000000000000000000000..03c77b6236cde28bf3d3d3d360fce00454ec8c4b --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190310.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4f3776542a48ebd518aa611f63ae1c426d781b77896db932dab2034bf7c5a31 +size 39251 diff --git a/demo_data/lombardia/2019/1509/20190315.tif b/demo_data/lombardia/2019/1509/20190315.tif new file mode 100755 index 0000000000000000000000000000000000000000..cc5b29d8ccfc01be7063a1d50e96eef1d983f502 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190315.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:600411c2ffbcebc289125d587f7aaa8eb752d2ad7d7d4be6d04a460390bdcee7 +size 39369 diff --git a/demo_data/lombardia/2019/1509/20190320.tif b/demo_data/lombardia/2019/1509/20190320.tif new file mode 100755 index 0000000000000000000000000000000000000000..cfff5cd5a80e03a96ba5803faa83baa251114252 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190320.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13d33349ece119b1c4df102bf19fdc9adfe35c8bd64179c5c02080656296953 +size 39519 diff --git a/demo_data/lombardia/2019/1509/20190325.tif b/demo_data/lombardia/2019/1509/20190325.tif new file mode 100755 index 0000000000000000000000000000000000000000..287849b17032ec3d838fe8067c6de7e0a509dc14 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190325.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ca89349759a02b7a8afe686b73f684e90c5804d1497603bc68d0a423e9fcf66 +size 39329 diff --git a/demo_data/lombardia/2019/1509/20190330.tif b/demo_data/lombardia/2019/1509/20190330.tif new file mode 100755 index 0000000000000000000000000000000000000000..7a8de74ce6e6980850a3ab56e04a2b068a012baf --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190330.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ea87dd02dff44248ef00e565b3251e313cc63274790bb530924f57f03fe67d5 +size 39163 diff --git a/demo_data/lombardia/2019/1509/20190404.tif b/demo_data/lombardia/2019/1509/20190404.tif new file mode 100755 index 0000000000000000000000000000000000000000..6dffcca12344f0693e325b73550898907129bc8a --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190404.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b428e412c73d4978305283bc542e2db1bf4a883ddae688b661e43e716e616c9 +size 26444 diff --git a/demo_data/lombardia/2019/1509/20190409.tif b/demo_data/lombardia/2019/1509/20190409.tif new file mode 100755 index 0000000000000000000000000000000000000000..8e184a7e5f93c81eadb557cb5eb4b5721720367a --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190409.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68413e0cdb2e0b0a890e9a50a6ceda08924e87c6f805f778185437ce6f579625 +size 36803 diff --git a/demo_data/lombardia/2019/1509/20190414.tif b/demo_data/lombardia/2019/1509/20190414.tif new file mode 100755 index 0000000000000000000000000000000000000000..2287cf4608b05fe7097c58807de7d5ab12d881ad --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190414.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1098ca5422c9758d5eaa88cfc731075d97a3539246e608e4f7942ae7b33a2c0 +size 26962 diff --git a/demo_data/lombardia/2019/1509/20190419.tif b/demo_data/lombardia/2019/1509/20190419.tif new file mode 100755 index 0000000000000000000000000000000000000000..53f56e2b0a2fa27d6dc3c5a487c4674722c06998 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190419.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5dae788f87ff387bb199c18a3f30f9a21ba38bdb09ea86fc7134d8eae603e0f +size 38711 diff --git a/demo_data/lombardia/2019/1509/20190424.tif b/demo_data/lombardia/2019/1509/20190424.tif new file mode 100755 index 0000000000000000000000000000000000000000..146b50c95485040540599dc9726d9a9264945511 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190424.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:967ed6b16331fa5374b3d26246da9446f39d4c294d3a369885e57bfd827e1cfb +size 33397 diff --git a/demo_data/lombardia/2019/1509/20190429.tif b/demo_data/lombardia/2019/1509/20190429.tif new file mode 100755 index 0000000000000000000000000000000000000000..48118fcc33ef9ff530bf96423ae6c81540910e9a --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190429.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c440a2b41d3d1db61e74d22a06be87f432acdfd1f0d7ad9ba7964c7a2eee266 +size 29298 diff --git a/demo_data/lombardia/2019/1509/20190504.tif b/demo_data/lombardia/2019/1509/20190504.tif new file mode 100755 index 0000000000000000000000000000000000000000..4a4c2bf028368f9da213ad889add541666da55f5 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190504.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02365de3703f24dc5d61536917e92679d2f3b805f454c5f67c4c3033f4225a02 +size 36426 diff --git a/demo_data/lombardia/2019/1509/20190509.tif b/demo_data/lombardia/2019/1509/20190509.tif new file mode 100755 index 0000000000000000000000000000000000000000..d80dad4fc06abceb7b2244b6ec3c6cd8e9712edd --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190509.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e5d26641958f2dc53dee3ffca3741595f5ecd5c5d46f65907e2eb3b27ffa10 +size 36356 diff --git a/demo_data/lombardia/2019/1509/20190514.tif b/demo_data/lombardia/2019/1509/20190514.tif new file mode 100755 index 0000000000000000000000000000000000000000..e813203dff9c8d4583d0ee30b47b59302db5e602 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190514.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:798a8cbff487ecd536995d26f954c3f9862d8c39ddad0db202c9b7a8d011ef72 +size 38818 diff --git a/demo_data/lombardia/2019/1509/20190519.tif b/demo_data/lombardia/2019/1509/20190519.tif new file mode 100755 index 0000000000000000000000000000000000000000..58f6f4b1cf9e5dfb23bca710de8abc96da1bf807 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190519.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e6c221fe7162dabab9a8103631abc04f1db0ae695c5a7fe3e2ef7b4662cdb6 +size 26713 diff --git a/demo_data/lombardia/2019/1509/20190524.tif b/demo_data/lombardia/2019/1509/20190524.tif new file mode 100755 index 0000000000000000000000000000000000000000..e2643b4ec16744f36410e832c85117c76beec9bf --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190524.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff0f3cd8128b2e1ebff462b85f349c6c7da4becb404ae2ec7c50f0be9af5d959 +size 38661 diff --git a/demo_data/lombardia/2019/1509/20190529.tif b/demo_data/lombardia/2019/1509/20190529.tif new file mode 100755 index 0000000000000000000000000000000000000000..429106ef74d43f172b003fe872024a190025a78c --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190529.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88248837eb5eb047d2e86d79ed722a8d0b0415a238a4ac88d7b6393ecd3fa3b2 +size 31399 diff --git a/demo_data/lombardia/2019/1509/20190603.tif b/demo_data/lombardia/2019/1509/20190603.tif new file mode 100755 index 0000000000000000000000000000000000000000..2c170bca2c6470080e282af463c6d10c877ab273 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190603.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b3445514d357f0deb41a8f9e9b98a7708edb263e3d7861f2cc455fa4995dd6e +size 39108 diff --git a/demo_data/lombardia/2019/1509/20190613.tif b/demo_data/lombardia/2019/1509/20190613.tif new file mode 100755 index 0000000000000000000000000000000000000000..3f560d84dbc52a5c6ffff04f755876711b05843c --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190613.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cc70dbdb2f6c407ab48e35d55a122ee72f94570456bc668ee7e580aef6c7f96 +size 39287 diff --git a/demo_data/lombardia/2019/1509/20190618.tif b/demo_data/lombardia/2019/1509/20190618.tif new file mode 100755 index 0000000000000000000000000000000000000000..c9072b7775841f26db7fe674197ce7bb0deadd54 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190618.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acb1c77a32e6f5de2e7667a708a5114e281fcc94dfab4a1e71c0d8fea37b9983 +size 38923 diff --git a/demo_data/lombardia/2019/1509/20190623.tif b/demo_data/lombardia/2019/1509/20190623.tif new file mode 100755 index 0000000000000000000000000000000000000000..73aa6378583ac82ab991f29fc46c14738eee5d3f --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190623.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:146a392635de369bbc66b0e99e8ddb6eeb6a2428e8039587c500aaf7f3701e71 +size 39115 diff --git a/demo_data/lombardia/2019/1509/20190628.tif b/demo_data/lombardia/2019/1509/20190628.tif new file mode 100755 index 0000000000000000000000000000000000000000..55425e2675add6cc37d0aa240c2ecbc3cb09bef7 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190628.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce06d88a5e7698ac2ee154652dbc121a65a3a3b4f20394f4b3b88518c1799b7a +size 37335 diff --git a/demo_data/lombardia/2019/1509/20190703.tif b/demo_data/lombardia/2019/1509/20190703.tif new file mode 100755 index 0000000000000000000000000000000000000000..ee2b43f27e04f92756df80bc7c75620293f701a9 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190703.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:420766cc39931d8459d045f5a480e1238ac35703d27fc92f71d4df14b464092b +size 39043 diff --git a/demo_data/lombardia/2019/1509/20190708.tif b/demo_data/lombardia/2019/1509/20190708.tif new file mode 100755 index 0000000000000000000000000000000000000000..36428f1722225a1feb20d5d4b738e5932c413600 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190708.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b25f458391f5bbac581736aeedce8f9fe3b18f2db5dac8e27cc7205a816d6c18 +size 38635 diff --git a/demo_data/lombardia/2019/1509/20190713.tif b/demo_data/lombardia/2019/1509/20190713.tif new file mode 100755 index 0000000000000000000000000000000000000000..730749fa8f7c8c3a642d49a7e7d35c36bc6a88c5 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190713.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc7feb35c32e1a0f943a88fd71811f4ca1c15ab639e297538a20671e26689d7 +size 39373 diff --git a/demo_data/lombardia/2019/1509/20190718.tif b/demo_data/lombardia/2019/1509/20190718.tif new file mode 100755 index 0000000000000000000000000000000000000000..c2e805a34c1fe0988746305360faea2286ac0169 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190718.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:309dc272c75b8b01ddccea529cc8aecd15c108aa2ed0ec00d0de9c6d3c45b674 +size 27518 diff --git a/demo_data/lombardia/2019/1509/20190723.tif b/demo_data/lombardia/2019/1509/20190723.tif new file mode 100755 index 0000000000000000000000000000000000000000..98168178d5880ac52c53b4c747fc4b07bf00f532 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190723.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c33489a477975525972c8de476833bcb01662f3b49c6e24bdf8bf48e5cd1aecd +size 38202 diff --git a/demo_data/lombardia/2019/1509/20190728.tif b/demo_data/lombardia/2019/1509/20190728.tif new file mode 100755 index 0000000000000000000000000000000000000000..59d17eaea173cea908c1cbe9506876b82b6d6321 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190728.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e549623c7dd26d2959751a0c508bb7ebfef0b406ed41e5ab2ae5d7bb1cc18f0 +size 25139 diff --git a/demo_data/lombardia/2019/1509/20190802.tif b/demo_data/lombardia/2019/1509/20190802.tif new file mode 100755 index 0000000000000000000000000000000000000000..d98f8bf5266bfb229766e8f6539c1bc3aac2c8da --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190802.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:120460271573b038b1ea1ed701691db764f73983ce42d3d0e85ace8a7f85a61e +size 36442 diff --git a/demo_data/lombardia/2019/1509/20190807.tif b/demo_data/lombardia/2019/1509/20190807.tif new file mode 100755 index 0000000000000000000000000000000000000000..f12b4af18116b8024e947cfb24fde610efb0848f --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190807.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f61ebcb6fe753bd7d20699d830f9f5908bfbb24d616edb9a3a0b9ccbcc1ba3e1 +size 38840 diff --git a/demo_data/lombardia/2019/1509/20190812.tif b/demo_data/lombardia/2019/1509/20190812.tif new file mode 100755 index 0000000000000000000000000000000000000000..750a7da1a3d61f9ae91cd21133de6374d2c4e6a1 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190812.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36a9b908e205eac9e1973dd26d36dcb9e587b431e18645f7397735a72979c74a +size 37361 diff --git a/demo_data/lombardia/2019/1509/20190817.tif b/demo_data/lombardia/2019/1509/20190817.tif new file mode 100755 index 0000000000000000000000000000000000000000..d4c7f01c4d1dd399d5a4f07d7b2374ee4663604a --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190817.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1301771fb571a3af88242ce1eece1e2f6cacf1f6b4a8cf762640f81d8f016f87 +size 37800 diff --git a/demo_data/lombardia/2019/1509/20190822.tif b/demo_data/lombardia/2019/1509/20190822.tif new file mode 100755 index 0000000000000000000000000000000000000000..94973284da58d4bf8b6198458ce2e4ae64481c0c --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190822.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bac71d148addb58fad34859d950ebc8f260e1fa1a6fc24e437217bec7e24ab0e +size 33169 diff --git a/demo_data/lombardia/2019/1509/20190827.tif b/demo_data/lombardia/2019/1509/20190827.tif new file mode 100755 index 0000000000000000000000000000000000000000..22634715a2d421b9ef44a9eb05bff55828d4c2d8 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190827.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9db67136b50b0da9285f229adf2295d1feb969271634d4a16c2ba090257eaed +size 37940 diff --git a/demo_data/lombardia/2019/1509/20190901.tif b/demo_data/lombardia/2019/1509/20190901.tif new file mode 100755 index 0000000000000000000000000000000000000000..84205b0cd7dbe7d7edc8ae4aa932b6675684460d --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190901.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be4793781477be4bf631aeed2d878f695dd9faa28aeccd40f2cf38f76b03bf7a +size 38231 diff --git a/demo_data/lombardia/2019/1509/20190906.tif b/demo_data/lombardia/2019/1509/20190906.tif new file mode 100755 index 0000000000000000000000000000000000000000..7c0cdd2b9742768ff06dff52bbf9b05c5e5f2bd5 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190906.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:205d607e34020e27d878b34f92f494b131b708f4a3a3ae1d23322355986c8685 +size 31434 diff --git a/demo_data/lombardia/2019/1509/20190911.tif b/demo_data/lombardia/2019/1509/20190911.tif new file mode 100755 index 0000000000000000000000000000000000000000..00de97683653e3b77262d556f628df6c299c86b9 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190911.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07ab0e8a91dff84ee6d4a3c13579207d25559b3251814f58bc6f57eb4fe7dbb4 +size 38566 diff --git a/demo_data/lombardia/2019/1509/20190916.tif b/demo_data/lombardia/2019/1509/20190916.tif new file mode 100755 index 0000000000000000000000000000000000000000..e4a1ce14465480c1c8dbb3fa9603e499ffd671bc --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190916.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c6d3501b96d532a38f0866556fc0e0ed70e77aa26c9a20c7104c08b872af9a +size 37657 diff --git a/demo_data/lombardia/2019/1509/20190921.tif b/demo_data/lombardia/2019/1509/20190921.tif new file mode 100755 index 0000000000000000000000000000000000000000..f1da6c054169ee57fb98827c63159ccfca6eecfb --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190921.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa1e3b4d6c8e76bb3c9beffe67f43992e99d066b8422ec19f52aec9500b8b76 +size 38787 diff --git a/demo_data/lombardia/2019/1509/20190926.tif b/demo_data/lombardia/2019/1509/20190926.tif new file mode 100755 index 0000000000000000000000000000000000000000..4add261b8e949017e71802f3051a8eb7e393bf49 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20190926.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5122029073fbb063f8b4a1eff90a7dd66e75548940992f1bab4b74bd8632ed20 +size 37434 diff --git a/demo_data/lombardia/2019/1509/20191001.tif b/demo_data/lombardia/2019/1509/20191001.tif new file mode 100755 index 0000000000000000000000000000000000000000..fd25cb32f2f3acd4b888491800cc57784beb7a4d --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191001.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb051ab8ed6073383841c85c46e48813f67745e9c7bb6ffc0266daae25f83f4 +size 37673 diff --git a/demo_data/lombardia/2019/1509/20191006.tif b/demo_data/lombardia/2019/1509/20191006.tif new file mode 100755 index 0000000000000000000000000000000000000000..08c1a561d7eec4cd842c99273d4fa61bd1485235 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191006.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:574f92ea08e8636deabd95e426032ec96f66fd711764604ae58b43ad30cf8475 +size 35545 diff --git a/demo_data/lombardia/2019/1509/20191011.tif b/demo_data/lombardia/2019/1509/20191011.tif new file mode 100755 index 0000000000000000000000000000000000000000..12622e2975893dcaf29027a162f774303b009cdd --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191011.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a12833e004eb847ac27fd614a5a3590bfef66282fd9717fa5d5c804ad77f8845 +size 37840 diff --git a/demo_data/lombardia/2019/1509/20191016.tif b/demo_data/lombardia/2019/1509/20191016.tif new file mode 100755 index 0000000000000000000000000000000000000000..867cb5fe0774e28f125e05797a48183fd514264c --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191016.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32ca8ecc52665a51568f1fb1d8792e0588671140d4dcc4508f0650272cb71b65 +size 38039 diff --git a/demo_data/lombardia/2019/1509/20191021.tif b/demo_data/lombardia/2019/1509/20191021.tif new file mode 100755 index 0000000000000000000000000000000000000000..7c414cd32d50861fc9bc04c2a3f69bb7532e8c23 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191021.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10a4fdf0c9074a4d68aeb3604e038ec3bf1d56ae0fab33787fb810508303aefd +size 36195 diff --git a/demo_data/lombardia/2019/1509/20191026.tif b/demo_data/lombardia/2019/1509/20191026.tif new file mode 100755 index 0000000000000000000000000000000000000000..e819d085c7c41ea4af3bfffacd3e516dcc4ecaf0 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191026.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6bbdb2f70b6881847876fc472bbdb624bae5ce0cfcb546777c1731aa26475a5 +size 37811 diff --git a/demo_data/lombardia/2019/1509/20191031.tif b/demo_data/lombardia/2019/1509/20191031.tif new file mode 100755 index 0000000000000000000000000000000000000000..177775fe185462fad4563e8d74437041b8bd0ff2 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191031.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622633299133db7c227b87263e050b1e5b857cfc0a8642ace65ec5a8941f6adf +size 33813 diff --git a/demo_data/lombardia/2019/1509/20191105.tif b/demo_data/lombardia/2019/1509/20191105.tif new file mode 100755 index 0000000000000000000000000000000000000000..e7070f672b91ced1024a265decd24674dc4ebf23 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191105.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d909111570478434423d8bd3acd0847d51f0c1575292a20b1e9e422a9a0f4697 +size 33964 diff --git a/demo_data/lombardia/2019/1509/20191110.tif b/demo_data/lombardia/2019/1509/20191110.tif new file mode 100755 index 0000000000000000000000000000000000000000..ee4644f82d808db53c87b1adb0a46797eb19ac98 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191110.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6ccd4ddf1b6b9147bde6bf9902817b81d872a1096ace63335d7c09e15d790c2 +size 37847 diff --git a/demo_data/lombardia/2019/1509/20191115.tif b/demo_data/lombardia/2019/1509/20191115.tif new file mode 100755 index 0000000000000000000000000000000000000000..7d2d7220470d10671cb3255a18abcd118ecb0d2a --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191115.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be21742cb99dfd89c86fd99a4ae2b2ee3f8795c427dc7a3bda1ef84604a9eea +size 34969 diff --git a/demo_data/lombardia/2019/1509/20191120.tif b/demo_data/lombardia/2019/1509/20191120.tif new file mode 100755 index 0000000000000000000000000000000000000000..b037afc33b6734ba1c375e6a5d8be11a45a41f0b --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191120.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18847b28de7855a3c73828d13f615b63ba505f77b7be4841edc6618ac8d3fab4 +size 37164 diff --git a/demo_data/lombardia/2019/1509/20191130.tif b/demo_data/lombardia/2019/1509/20191130.tif new file mode 100755 index 0000000000000000000000000000000000000000..007f9919f5253f69845f54d17fe260abfac9c684 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191130.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbc513a9b008a312b4e5d2a7d0c3dd294d4ca9bed25dab1c78bedd2d88844830 +size 36969 diff --git a/demo_data/lombardia/2019/1509/20191205.tif b/demo_data/lombardia/2019/1509/20191205.tif new file mode 100755 index 0000000000000000000000000000000000000000..09f8504a5feaed464b6d47fa54c288f7cff9a685 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191205.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c14f134160fbef1be8aad904ab619e65d8dcff43f2846af3453c4d0e437e0a6 +size 38231 diff --git a/demo_data/lombardia/2019/1509/20191210.tif b/demo_data/lombardia/2019/1509/20191210.tif new file mode 100755 index 0000000000000000000000000000000000000000..6f1247031cddd4ebefaf0d347c7b30111df0ee8e --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191210.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d417f612a6eaa9d456ec0068ac1b93df47981aeab1cf73c90bb9b332fa40c60e +size 38263 diff --git a/demo_data/lombardia/2019/1509/20191215.tif b/demo_data/lombardia/2019/1509/20191215.tif new file mode 100755 index 0000000000000000000000000000000000000000..5249ae14ec4e5df50e99e2d367e0d1e6af3de8c9 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191215.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb6500007d0e62069fa56f6b81ef040426ac3631ae1d3ba36047c66c4e6f0595 +size 39355 diff --git a/demo_data/lombardia/2019/1509/20191220.tif b/demo_data/lombardia/2019/1509/20191220.tif new file mode 100755 index 0000000000000000000000000000000000000000..eb8b72c98a3c70ad991239a847953ec8dd848886 --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191220.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:212657adae6226d10bd3ee36a21f697bacb5af41c51095e6ab8adf221ab907de +size 31026 diff --git a/demo_data/lombardia/2019/1509/20191225.tif b/demo_data/lombardia/2019/1509/20191225.tif new file mode 100755 index 0000000000000000000000000000000000000000..a351b8569fd9af4689e3936c88bd9b63926a240a --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191225.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:128da03634cb79f7b00af99fe66f5d78cf211a7e0a5f7c72b2dc1369bcdba87e +size 38608 diff --git a/demo_data/lombardia/2019/1509/20191230.tif b/demo_data/lombardia/2019/1509/20191230.tif new file mode 100755 index 0000000000000000000000000000000000000000..1700c21c112921f8145c8f89b81872f53f1350ff --- /dev/null +++ b/demo_data/lombardia/2019/1509/20191230.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:900f5a4f610bf54a11f424083711f53e47ed2af5055fc2815e4708a276be7e9d +size 37438 diff --git a/demo_data/lombardia/2019/24/20190104.tif b/demo_data/lombardia/2019/24/20190104.tif new file mode 100755 index 0000000000000000000000000000000000000000..9bd3e6929c8d047ef86754b3fd552a165f998be5 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190104.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57768fc4fbae185b7272d3e4fe4758ba138e7d1bbe8fd027b8fd7709c759aace +size 37764 diff --git a/demo_data/lombardia/2019/24/20190109.tif b/demo_data/lombardia/2019/24/20190109.tif new file mode 100755 index 0000000000000000000000000000000000000000..74ae05329dcfeaa60176d75fa8667ef0338c87b6 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190109.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c99c31d645eacde704652713edb704974a0832d88b5b1da48221e5a9bc089519 +size 39456 diff --git a/demo_data/lombardia/2019/24/20190114.tif b/demo_data/lombardia/2019/24/20190114.tif new file mode 100755 index 0000000000000000000000000000000000000000..f0ab479530d409ab9e18d58afe4648227a3c5225 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190114.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b1ee0d272ed1857c124dccab946a071264eac0c9e5bc73d9d2673faa95c8948 +size 39096 diff --git a/demo_data/lombardia/2019/24/20190119.tif b/demo_data/lombardia/2019/24/20190119.tif new file mode 100755 index 0000000000000000000000000000000000000000..da348d54c8e09e5a38442b9d8465204844c8645f --- /dev/null +++ b/demo_data/lombardia/2019/24/20190119.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b604e2c6bcf787d277fcc3447268729db43804afc0f7d7b4fe773fb593cfe87 +size 35652 diff --git a/demo_data/lombardia/2019/24/20190124.tif b/demo_data/lombardia/2019/24/20190124.tif new file mode 100755 index 0000000000000000000000000000000000000000..f7a2f033377d3f11ad0d9ea56ca74f5a3c1dca19 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190124.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b2cc1bc1c6fb4414cd56f1df0d7718c97783fd6c3775db3a4f8d900d608859 +size 38298 diff --git a/demo_data/lombardia/2019/24/20190129.tif b/demo_data/lombardia/2019/24/20190129.tif new file mode 100755 index 0000000000000000000000000000000000000000..d2e533934a91f82b594ae8e92f49b6868811b77d --- /dev/null +++ b/demo_data/lombardia/2019/24/20190129.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df323e17b8529f280a5f5f4dc06412dd5943e380c538f441ca413822f4e22a4f +size 38642 diff --git a/demo_data/lombardia/2019/24/20190203.tif b/demo_data/lombardia/2019/24/20190203.tif new file mode 100755 index 0000000000000000000000000000000000000000..5bdab370c83c3e2b318aa83808ad4666c8667296 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190203.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dd271239044a4c5d7dba7cc7c46c1322f792e3d38813eb93581b376c94c5c05 +size 36876 diff --git a/demo_data/lombardia/2019/24/20190208.tif b/demo_data/lombardia/2019/24/20190208.tif new file mode 100755 index 0000000000000000000000000000000000000000..b4df34d43cbfc0d15dd99efb68ddd2f296b25315 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190208.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d2b8097cfad1a0a9bf4b7c3ced6414b8ce7c939abf142baf77d4a74471f4eca +size 38634 diff --git a/demo_data/lombardia/2019/24/20190213.tif b/demo_data/lombardia/2019/24/20190213.tif new file mode 100755 index 0000000000000000000000000000000000000000..3e45d47921e9eecf57bf02b2ab1ed1649d763e48 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190213.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57870c93a205e6934a495323ff2027103927b6359c4f21dcb1b3524aef075304 +size 38938 diff --git a/demo_data/lombardia/2019/24/20190218.tif b/demo_data/lombardia/2019/24/20190218.tif new file mode 100755 index 0000000000000000000000000000000000000000..369884a0db4aebba2c0afb4cbe91d77eb83014ff --- /dev/null +++ b/demo_data/lombardia/2019/24/20190218.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b23bf141b09721e7a456e07c036503969278283ef943093c1a94b7a460ed777 +size 38716 diff --git a/demo_data/lombardia/2019/24/20190223.tif b/demo_data/lombardia/2019/24/20190223.tif new file mode 100755 index 0000000000000000000000000000000000000000..59ac687e922ef2a00bf8f123b467df5de2315773 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190223.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69c678c959b48d0339f91fcbcfeec9716234737018c07c5e80ac0609f368e2c4 +size 39210 diff --git a/demo_data/lombardia/2019/24/20190228.tif b/demo_data/lombardia/2019/24/20190228.tif new file mode 100755 index 0000000000000000000000000000000000000000..18194b95cca924454d139b7444888ff475cba9f6 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190228.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cef4a86d3d14c176f95bffe1769a20551b404f66a7f9945f8fb01044ec0204d +size 38506 diff --git a/demo_data/lombardia/2019/24/20190305.tif b/demo_data/lombardia/2019/24/20190305.tif new file mode 100755 index 0000000000000000000000000000000000000000..78c9492ee3129f43b7c8d9949cc3e1b13ff6b024 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190305.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6943611fe22c153e9f928fd0a4464a9a4dc3935a2a8b7c61a27a1dea2c0d582 +size 36736 diff --git a/demo_data/lombardia/2019/24/20190310.tif b/demo_data/lombardia/2019/24/20190310.tif new file mode 100755 index 0000000000000000000000000000000000000000..c4d08bb3810a646946cffcad9fd47487f5ec4179 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190310.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fb925bc4518b617e3d0f88b3f733e0e7d57319b17ea3ba445a97639cabebcda +size 39169 diff --git a/demo_data/lombardia/2019/24/20190315.tif b/demo_data/lombardia/2019/24/20190315.tif new file mode 100755 index 0000000000000000000000000000000000000000..ae5845d77602e62a4467b222709a03fe5b857531 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190315.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb543b2905d300f56f8157b5506158887dae7974d211586adbf4d49771541c00 +size 39655 diff --git a/demo_data/lombardia/2019/24/20190320.tif b/demo_data/lombardia/2019/24/20190320.tif new file mode 100755 index 0000000000000000000000000000000000000000..94cf6080aca80343d6a979a1ad6453cf2e7b53d5 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190320.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21b3f89cbd1c95effd61e488b5ec7d5698fc64eb30fcd4f308207ad0c0e5f2a9 +size 39780 diff --git a/demo_data/lombardia/2019/24/20190325.tif b/demo_data/lombardia/2019/24/20190325.tif new file mode 100755 index 0000000000000000000000000000000000000000..a3745cdc19597a4c56e237e0e434449d3595db78 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190325.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:304cb7f208ec71c7fc4765103bc558fb6678fd403042a227c5c00e9f711b6917 +size 39595 diff --git a/demo_data/lombardia/2019/24/20190330.tif b/demo_data/lombardia/2019/24/20190330.tif new file mode 100755 index 0000000000000000000000000000000000000000..5e390709280ec2d11d01bd11316169cb19b84178 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190330.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2db033d660c32137502410698de9c803fed114f61f8e6daec6955d7d9e60370d +size 39475 diff --git a/demo_data/lombardia/2019/24/20190404.tif b/demo_data/lombardia/2019/24/20190404.tif new file mode 100755 index 0000000000000000000000000000000000000000..617b556ff33a882fc2e9e8b64d3354e9fd631050 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190404.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4b5edd85ad0218fca750d066a234f4fa1a2550729cac8802dfee1ff5ba0bebf +size 28241 diff --git a/demo_data/lombardia/2019/24/20190409.tif b/demo_data/lombardia/2019/24/20190409.tif new file mode 100755 index 0000000000000000000000000000000000000000..2aabdb0d5f4a0558bda8df26a5119dba77f1a50c --- /dev/null +++ b/demo_data/lombardia/2019/24/20190409.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9847177956c8479f93d8a50e2b22a834772a722f5baa4d3452fd323df4222b0f +size 39214 diff --git a/demo_data/lombardia/2019/24/20190414.tif b/demo_data/lombardia/2019/24/20190414.tif new file mode 100755 index 0000000000000000000000000000000000000000..5849612e2a1ce1bb11c0c53e407a59b7234b3200 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190414.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1362fbca3dbcba2676e360944819e85709d83993c71359e19d6a17de92b838a +size 27230 diff --git a/demo_data/lombardia/2019/24/20190419.tif b/demo_data/lombardia/2019/24/20190419.tif new file mode 100755 index 0000000000000000000000000000000000000000..7e3c57b46658ec2ba54416bcea1084795152f5fd --- /dev/null +++ b/demo_data/lombardia/2019/24/20190419.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ccda89382c4ace7b11e409539b21dedf00283aec6f8b48678a8ec1e0b24db5e +size 38898 diff --git a/demo_data/lombardia/2019/24/20190424.tif b/demo_data/lombardia/2019/24/20190424.tif new file mode 100755 index 0000000000000000000000000000000000000000..04b5d94c166b3bcef17123cd789e2cf96a64fb11 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190424.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2c73739f021316069d93bdd185ce57d1bbeb436e340b2267a5bc13f8f1d1318 +size 31005 diff --git a/demo_data/lombardia/2019/24/20190429.tif b/demo_data/lombardia/2019/24/20190429.tif new file mode 100755 index 0000000000000000000000000000000000000000..7a0e306ff4b301074d015b90e062a7e470d6fb99 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190429.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc37d5d4e71a8f25c750ba4176e4c3aff6b2043fcb4ef1810972ea54a4ebdb59 +size 27462 diff --git a/demo_data/lombardia/2019/24/20190504.tif b/demo_data/lombardia/2019/24/20190504.tif new file mode 100755 index 0000000000000000000000000000000000000000..1c34cf1c6544829852aa56c70953215831c8fdaf --- /dev/null +++ b/demo_data/lombardia/2019/24/20190504.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98a6ea2f249d6be935742e3896316c0221ea3fc89a2fe05d8f2afe24a28bf756 +size 39812 diff --git a/demo_data/lombardia/2019/24/20190509.tif b/demo_data/lombardia/2019/24/20190509.tif new file mode 100755 index 0000000000000000000000000000000000000000..6009362f3c20cc82000f4e58d477b319ab7878bd --- /dev/null +++ b/demo_data/lombardia/2019/24/20190509.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c58b880dc46e6c216e0f801b2b38dcfdadd3bf2ac63cb063485d69b1f2d5c0c +size 39053 diff --git a/demo_data/lombardia/2019/24/20190514.tif b/demo_data/lombardia/2019/24/20190514.tif new file mode 100755 index 0000000000000000000000000000000000000000..c048008cf2a93512ee4f91423e41f441a51cb69f --- /dev/null +++ b/demo_data/lombardia/2019/24/20190514.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b08f8756e2fdf60ea9d099c5da849e037652a3362b4639d8fcea04068a3d3f66 +size 38196 diff --git a/demo_data/lombardia/2019/24/20190519.tif b/demo_data/lombardia/2019/24/20190519.tif new file mode 100755 index 0000000000000000000000000000000000000000..1df2ad6daa001e361af725f2c457071064e370dc --- /dev/null +++ b/demo_data/lombardia/2019/24/20190519.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0423d85ab3442afef3ac1d9d41c7b8566d9ef852b70ca8e79e0a3566627b56d +size 25106 diff --git a/demo_data/lombardia/2019/24/20190524.tif b/demo_data/lombardia/2019/24/20190524.tif new file mode 100755 index 0000000000000000000000000000000000000000..c422ba9aba51a14ac53572cc9e5a3beb94f4a075 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190524.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e381ea7df5b55c798e89ece52808f67d0eefd338ef69cbc7314afa97785c812 +size 38435 diff --git a/demo_data/lombardia/2019/24/20190529.tif b/demo_data/lombardia/2019/24/20190529.tif new file mode 100755 index 0000000000000000000000000000000000000000..e2226aa9403f186cf91b7b96c7289d4ae447b285 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190529.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9855b5909e91e1f3a8b8b50818fb562fa193ee73beec6e1b22af9549d66468 +size 32785 diff --git a/demo_data/lombardia/2019/24/20190603.tif b/demo_data/lombardia/2019/24/20190603.tif new file mode 100755 index 0000000000000000000000000000000000000000..d2de5665dcda592369bd8002f2cad4b9e12952eb --- /dev/null +++ b/demo_data/lombardia/2019/24/20190603.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae9a881e289d4a157f97e6f068b74a4bc4710f80a69262da4ed59423f186f0ef +size 39028 diff --git a/demo_data/lombardia/2019/24/20190613.tif b/demo_data/lombardia/2019/24/20190613.tif new file mode 100755 index 0000000000000000000000000000000000000000..32ea6b4b7c3c1eedf96f74856807d9d5ff595ba1 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190613.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1a2454194b57650d90b642e8b0441732545135e3250bf6dcd55fe6e58dfb9fe +size 39239 diff --git a/demo_data/lombardia/2019/24/20190618.tif b/demo_data/lombardia/2019/24/20190618.tif new file mode 100755 index 0000000000000000000000000000000000000000..4d0e65c637cafb5967384bdcd51718029898a533 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190618.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3955f9576633aa1f18f7bdd68de1991b7ac45b89c180dd87d4d7e08fd26cd249 +size 39106 diff --git a/demo_data/lombardia/2019/24/20190623.tif b/demo_data/lombardia/2019/24/20190623.tif new file mode 100755 index 0000000000000000000000000000000000000000..d9f3605b41f7e6ec4cb2da2c3c7f64d162e6d781 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190623.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4d6bb49db0f828ec56cc43c5b3fce1c15f579989f10f2f8f64348a63dd9f3d1 +size 39115 diff --git a/demo_data/lombardia/2019/24/20190628.tif b/demo_data/lombardia/2019/24/20190628.tif new file mode 100755 index 0000000000000000000000000000000000000000..68359669a825e7afabc2de6bf4a30fa4538b5b26 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190628.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fc64119d6923c089b5f88a32e88214829c6a7e2168f85e71f1b3640876bc564 +size 37099 diff --git a/demo_data/lombardia/2019/24/20190703.tif b/demo_data/lombardia/2019/24/20190703.tif new file mode 100755 index 0000000000000000000000000000000000000000..94715b38bbd07b89c5dd8b5b187f5ea2fc20bdfd --- /dev/null +++ b/demo_data/lombardia/2019/24/20190703.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86bfdf91029b674cd844a4642e246bf32dfd31a04966c3bd80be6d03d7b19d0 +size 38932 diff --git a/demo_data/lombardia/2019/24/20190708.tif b/demo_data/lombardia/2019/24/20190708.tif new file mode 100755 index 0000000000000000000000000000000000000000..b27174de2d3f1a205ede722a0e030f1f230b2d09 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190708.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea163ff8c79e5202fc38964dc057db1b54df4f6a05ab49a6ee87367679fbe94 +size 38563 diff --git a/demo_data/lombardia/2019/24/20190713.tif b/demo_data/lombardia/2019/24/20190713.tif new file mode 100755 index 0000000000000000000000000000000000000000..0d531d60e22bce28843aa20fb3c6e8f1579b4c17 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190713.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08645be398132866109b4c49e563e45d0f085fe22d3822fc78c6196c41777b41 +size 39258 diff --git a/demo_data/lombardia/2019/24/20190718.tif b/demo_data/lombardia/2019/24/20190718.tif new file mode 100755 index 0000000000000000000000000000000000000000..145b45d226f217ac83c2bd5e527535ead61181a2 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190718.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d65947569450c56033354c5805ffd48d8457381709e1a827e5f007fadc044cf +size 27211 diff --git a/demo_data/lombardia/2019/24/20190723.tif b/demo_data/lombardia/2019/24/20190723.tif new file mode 100755 index 0000000000000000000000000000000000000000..bc419e3105503a55affffc942ff352102f9e4d95 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190723.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f064c362eec169a8482026cd11cc0a9c64347cc4acaf2cf5d08ecf43e32321 +size 38802 diff --git a/demo_data/lombardia/2019/24/20190728.tif b/demo_data/lombardia/2019/24/20190728.tif new file mode 100755 index 0000000000000000000000000000000000000000..8e9a4f954d9eb6a1de763987c61c18df56e98014 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190728.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cb1c27ca2331e3b746a1b4f424438d26c191baaf9e746c076ca8bd60d58b67b +size 25587 diff --git a/demo_data/lombardia/2019/24/20190802.tif b/demo_data/lombardia/2019/24/20190802.tif new file mode 100755 index 0000000000000000000000000000000000000000..0c80994fd71fd720a0c3c35d8a7b2101c917317d --- /dev/null +++ b/demo_data/lombardia/2019/24/20190802.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf8634ff4d4f425dd65e66d8fc033f32c8f7237a4a2e83b1026969bbd0e822f +size 38193 diff --git a/demo_data/lombardia/2019/24/20190807.tif b/demo_data/lombardia/2019/24/20190807.tif new file mode 100755 index 0000000000000000000000000000000000000000..8de6dac6fb3e79fb7e90cfc68179a1d1bcbbf644 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190807.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e87e7543c559917c524c94281256bef8974f85c9b140a7d6c1f358430e38f4 +size 37270 diff --git a/demo_data/lombardia/2019/24/20190812.tif b/demo_data/lombardia/2019/24/20190812.tif new file mode 100755 index 0000000000000000000000000000000000000000..a2c2bf5c40ee9487251030c84ec1441be4c09533 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190812.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5177aff50b3ee43a9b36dc7b786e8a7eec8156eaa8b6e6a90587e60541d3e3 +size 35843 diff --git a/demo_data/lombardia/2019/24/20190817.tif b/demo_data/lombardia/2019/24/20190817.tif new file mode 100755 index 0000000000000000000000000000000000000000..8d83e620dd0bc1b12b31105dde4f887baefa98ea --- /dev/null +++ b/demo_data/lombardia/2019/24/20190817.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9a0120abf2ed2e6cb0358a901be36b90b794a542fdeb362303f3fe9a06ae658 +size 38779 diff --git a/demo_data/lombardia/2019/24/20190822.tif b/demo_data/lombardia/2019/24/20190822.tif new file mode 100755 index 0000000000000000000000000000000000000000..cd49c71e7ff67e0988755649ce06bb7a3ff2bfdb --- /dev/null +++ b/demo_data/lombardia/2019/24/20190822.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ee34db7880e29d91773badf983cf118eb416610d29ce32667e7fb315b688b8 +size 28414 diff --git a/demo_data/lombardia/2019/24/20190827.tif b/demo_data/lombardia/2019/24/20190827.tif new file mode 100755 index 0000000000000000000000000000000000000000..728d9d8b6324754d7d6b9f14a9c50f01297f2581 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190827.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1fd02a2fcbc872699c36c7066f21226be1f147fc503570c08db7dcffa8f5a49 +size 37990 diff --git a/demo_data/lombardia/2019/24/20190901.tif b/demo_data/lombardia/2019/24/20190901.tif new file mode 100755 index 0000000000000000000000000000000000000000..0a9fe22a5a1c23f6a1b9479cbff7d840e3fb7b25 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190901.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da787443a5163a4a19f6139ca206400c7c00ec7bc050aa5b03185b90d35f61c3 +size 38077 diff --git a/demo_data/lombardia/2019/24/20190906.tif b/demo_data/lombardia/2019/24/20190906.tif new file mode 100755 index 0000000000000000000000000000000000000000..ebb318477210aba6a0afd2e0064e78c260ca695f --- /dev/null +++ b/demo_data/lombardia/2019/24/20190906.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076ebd6e33f3c76a2d208db6096f08e0bc4db7552d72793fee557567fa823c2b +size 31540 diff --git a/demo_data/lombardia/2019/24/20190911.tif b/demo_data/lombardia/2019/24/20190911.tif new file mode 100755 index 0000000000000000000000000000000000000000..ba799080b2b2dfb329383f0a2fbb7d6c738ab24d --- /dev/null +++ b/demo_data/lombardia/2019/24/20190911.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91e2b285ffee99d32283cbfc94fe6414cf28f1d61f529f3142fd580b76550560 +size 38169 diff --git a/demo_data/lombardia/2019/24/20190916.tif b/demo_data/lombardia/2019/24/20190916.tif new file mode 100755 index 0000000000000000000000000000000000000000..1ba2745a7101db42f1d8aeb3bd798ae2686744be --- /dev/null +++ b/demo_data/lombardia/2019/24/20190916.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14216ce491efeeb1c666afe6d15efc2d517bf5bae3f7e5a2634c572b664f943c +size 37599 diff --git a/demo_data/lombardia/2019/24/20190921.tif b/demo_data/lombardia/2019/24/20190921.tif new file mode 100755 index 0000000000000000000000000000000000000000..51ed40e85f5d16a5332decd4fd4bfcd1580f9823 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190921.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:add69e5b52d67957e7f9c7fcd9da39e6da3be3f9d029e72b973c1c27b806db0a +size 38830 diff --git a/demo_data/lombardia/2019/24/20190926.tif b/demo_data/lombardia/2019/24/20190926.tif new file mode 100755 index 0000000000000000000000000000000000000000..c4c1ee0d9829ae88de5d6d0bc4be49831ef52ef8 --- /dev/null +++ b/demo_data/lombardia/2019/24/20190926.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f6eba8d479d9ec026abe3c12a599f8e56fcfc8d2ac3c3db92e61a764c109e0 +size 36451 diff --git a/demo_data/lombardia/2019/24/20191001.tif b/demo_data/lombardia/2019/24/20191001.tif new file mode 100755 index 0000000000000000000000000000000000000000..d3c0f29b821b7574339bf6b4cca2cda999f393e0 --- /dev/null +++ b/demo_data/lombardia/2019/24/20191001.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:733ccda436904002272e78922139bab4896dd5223f8d0332eab58814a4c6bc4b +size 38386 diff --git a/demo_data/lombardia/2019/24/20191006.tif b/demo_data/lombardia/2019/24/20191006.tif new file mode 100755 index 0000000000000000000000000000000000000000..bb806475a23f1a85972eb4179b61a15abc2c7cf8 --- /dev/null +++ b/demo_data/lombardia/2019/24/20191006.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f99ee7e462fbd54f4094fe04b1e6925cb46fe5f83053cece8206a29a133cb13 +size 34441 diff --git a/demo_data/lombardia/2019/24/20191011.tif b/demo_data/lombardia/2019/24/20191011.tif new file mode 100755 index 0000000000000000000000000000000000000000..77df04e2deb157fc00e2f786006939e60009ad49 --- /dev/null +++ b/demo_data/lombardia/2019/24/20191011.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88282dbf329054394418e629b94d449111cff360ea369bfd488485f1b41c2603 +size 37382 diff --git a/demo_data/lombardia/2019/24/20191016.tif b/demo_data/lombardia/2019/24/20191016.tif new file mode 100755 index 0000000000000000000000000000000000000000..87f7bb3ff0673ec880e03f70a6757ffe5faacd0f --- /dev/null +++ b/demo_data/lombardia/2019/24/20191016.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ce61aabe66af6e343388ca257b8abb0c3efcc241b7b04628420653d0c445ba +size 38582 diff --git a/demo_data/lombardia/2019/24/20191021.tif b/demo_data/lombardia/2019/24/20191021.tif new file mode 100755 index 0000000000000000000000000000000000000000..400824377a09c95635deb4a6be2dd7eeea85c5ae --- /dev/null +++ b/demo_data/lombardia/2019/24/20191021.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d96b49f6c1d8a1df97f97140406763d08d12587fa295cb2b10dfeb93959f284b +size 38000 diff --git a/demo_data/lombardia/2019/24/20191026.tif b/demo_data/lombardia/2019/24/20191026.tif new file mode 100755 index 0000000000000000000000000000000000000000..d8c739b731d5be5d3c00438db48cbf48b0b121ee --- /dev/null +++ b/demo_data/lombardia/2019/24/20191026.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:988c3230eec6e7a8f8fa565f8628f3e2d43f59d4e4c747e9f3fd0261a55bd95b +size 38259 diff --git a/demo_data/lombardia/2019/24/20191031.tif b/demo_data/lombardia/2019/24/20191031.tif new file mode 100755 index 0000000000000000000000000000000000000000..c3f020a61e502d7a5917ba55885daf154eb463bd --- /dev/null +++ b/demo_data/lombardia/2019/24/20191031.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c682b1e85535ff2d94e48b2836f4bd273581af134f2b5b8dfdaa7e2e4628671c +size 35252 diff --git a/demo_data/lombardia/2019/24/20191105.tif b/demo_data/lombardia/2019/24/20191105.tif new file mode 100755 index 0000000000000000000000000000000000000000..5708db06e9a89266618b36516ac07cd4005d843b --- /dev/null +++ b/demo_data/lombardia/2019/24/20191105.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62a6696e34b21c2850cd6e11fe4361e24d82e996c187cf59dfa2743d9b343f9b +size 36398 diff --git a/demo_data/lombardia/2019/24/20191110.tif b/demo_data/lombardia/2019/24/20191110.tif new file mode 100755 index 0000000000000000000000000000000000000000..58c8b4dd1ea62a8048214bec4b66b04723ef8d66 --- /dev/null +++ b/demo_data/lombardia/2019/24/20191110.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:364e2fd56cba6feb004afc83a6c16bed46bac8bfba20e0cc0989c61ae9192eec +size 37129 diff --git a/demo_data/lombardia/2019/24/20191115.tif b/demo_data/lombardia/2019/24/20191115.tif new file mode 100755 index 0000000000000000000000000000000000000000..c20ea8287a1624727e9f5d4848499c4a0bfa346d --- /dev/null +++ b/demo_data/lombardia/2019/24/20191115.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b4f3e18a6d722b7c13ff974b1b38e763f3c508d69efc7da544434cf2abd15a +size 31070 diff --git a/demo_data/lombardia/2019/24/20191120.tif b/demo_data/lombardia/2019/24/20191120.tif new file mode 100755 index 0000000000000000000000000000000000000000..ed95b576235c10a5f60cd6818dd58278da0429b9 --- /dev/null +++ b/demo_data/lombardia/2019/24/20191120.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:712815cdd5d999e2a2c7d64fe755d8545908f46401efc15e517775716ce4636d +size 34894 diff --git a/demo_data/lombardia/2019/24/20191130.tif b/demo_data/lombardia/2019/24/20191130.tif new file mode 100755 index 0000000000000000000000000000000000000000..020a6f4dba2891d3d1cc9625bb088a8986ffd266 --- /dev/null +++ b/demo_data/lombardia/2019/24/20191130.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3fed27f6f7adac2b422d24b0b916af58dfcc1bea80bf96aff1656920fc90c3d +size 36873 diff --git a/demo_data/lombardia/2019/24/20191205.tif b/demo_data/lombardia/2019/24/20191205.tif new file mode 100755 index 0000000000000000000000000000000000000000..b840ac1a844a43e12dc405f11f0eeae0a5627cc7 --- /dev/null +++ b/demo_data/lombardia/2019/24/20191205.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e0696f230295d894d97b0f496e3b87fa98f3867249eaf4bd5379b5ef6135c69 +size 38222 diff --git a/demo_data/lombardia/2019/24/20191210.tif b/demo_data/lombardia/2019/24/20191210.tif new file mode 100755 index 0000000000000000000000000000000000000000..92a60dac52cf57967a255ec34037d02fc56e2457 --- /dev/null +++ b/demo_data/lombardia/2019/24/20191210.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a15bbc59abdd180fc2df32161c139caa5299a98238b35eb0627e220483f1ec2 +size 38606 diff --git a/demo_data/lombardia/2019/24/20191215.tif b/demo_data/lombardia/2019/24/20191215.tif new file mode 100755 index 0000000000000000000000000000000000000000..9214ed76690e6ba44e633eef87eb6e686f73faa3 --- /dev/null +++ b/demo_data/lombardia/2019/24/20191215.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46463bb91fecb9c2b58924555eb1af88fd4714a8e79d7d44efb56c9da6002201 +size 39534 diff --git a/demo_data/lombardia/2019/24/20191220.tif b/demo_data/lombardia/2019/24/20191220.tif new file mode 100755 index 0000000000000000000000000000000000000000..04c986858861d6357b18c79848992cae8548d2f2 --- /dev/null +++ b/demo_data/lombardia/2019/24/20191220.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2d6052860bb9c59e9f6f26aba0afbb0b23ad559cf244e9a5362d31902dccd56 +size 31467 diff --git a/demo_data/lombardia/2019/24/20191225.tif b/demo_data/lombardia/2019/24/20191225.tif new file mode 100755 index 0000000000000000000000000000000000000000..a22b9e83058b1384daea4028a28af138d2855c64 --- /dev/null +++ b/demo_data/lombardia/2019/24/20191225.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1b028b90c14e91c4f1b32c8bf0bef8b42e297cc6197cf52d0c3ca8d8cfcd5f2 +size 38838 diff --git a/demo_data/lombardia/2019/24/20191230.tif b/demo_data/lombardia/2019/24/20191230.tif new file mode 100755 index 0000000000000000000000000000000000000000..a5888651d463692325251029a855741de67bb205 --- /dev/null +++ b/demo_data/lombardia/2019/24/20191230.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f2c83d26d7aced467534aa77e44b6dab97d3c3df9e350d974c882b8adf4b9b3 +size 37866 diff --git a/demo_data/lombardia/2019/712/20190104.tif b/demo_data/lombardia/2019/712/20190104.tif new file mode 100755 index 0000000000000000000000000000000000000000..a42cd7dcafef6dd7285d0149309a3e742b11b3c0 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190104.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae09810301910a90f75465870ea9ace241803f4b3601fe46b949223327e834f1 +size 36785 diff --git a/demo_data/lombardia/2019/712/20190109.tif b/demo_data/lombardia/2019/712/20190109.tif new file mode 100755 index 0000000000000000000000000000000000000000..839a5ad3ffd16515c309b291f2bfb4a90f86a295 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190109.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8c8a30dffaf562a320156335aec3757647129fb07d3eb8df89e47a3ffae2f6f +size 36975 diff --git a/demo_data/lombardia/2019/712/20190114.tif b/demo_data/lombardia/2019/712/20190114.tif new file mode 100755 index 0000000000000000000000000000000000000000..9d1701ec5625e74674741d012adca695469c6464 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190114.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82adb778960345a3c561f5bbd8eb5453b4f7194caf9e819bb6859af3bab8e9ff +size 38515 diff --git a/demo_data/lombardia/2019/712/20190119.tif b/demo_data/lombardia/2019/712/20190119.tif new file mode 100755 index 0000000000000000000000000000000000000000..e3b21324cec88f9daf2d9ee7ed100d605f4dc4dd --- /dev/null +++ b/demo_data/lombardia/2019/712/20190119.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b62a2bc2c01cba5e6b340c766b69a8408eeec1dc8be251de7fb2c2900c4a5b9b +size 35215 diff --git a/demo_data/lombardia/2019/712/20190124.tif b/demo_data/lombardia/2019/712/20190124.tif new file mode 100755 index 0000000000000000000000000000000000000000..48e55a78d3288941c01a774ce9d60f582133d037 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190124.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68347e4c0de03f653868bea019b2b2f903fe0b06f763ccfca3e64905ca328bbe +size 37721 diff --git a/demo_data/lombardia/2019/712/20190129.tif b/demo_data/lombardia/2019/712/20190129.tif new file mode 100755 index 0000000000000000000000000000000000000000..7d5e6f64e1cb8cdbcdd41a9708dd033a42fb522c --- /dev/null +++ b/demo_data/lombardia/2019/712/20190129.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f3bc7f3179c590319d80db219baa187c23c62a79c508f6c8700b4cb1297e6b8 +size 37753 diff --git a/demo_data/lombardia/2019/712/20190203.tif b/demo_data/lombardia/2019/712/20190203.tif new file mode 100755 index 0000000000000000000000000000000000000000..297011dae8bbdaf7ced2764a2ec15b4f35ddf4f4 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190203.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f04930c3ce126e40ceccbdde1b6a8e78d578910cda18740b3ca1f8309e8a64d +size 36227 diff --git a/demo_data/lombardia/2019/712/20190208.tif b/demo_data/lombardia/2019/712/20190208.tif new file mode 100755 index 0000000000000000000000000000000000000000..4224b98d38d81fb54a2bf6983b03706175a6a16c --- /dev/null +++ b/demo_data/lombardia/2019/712/20190208.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daf02f43965c3204de573500665839a286730c8b57647265692ea658454ad1a1 +size 38238 diff --git a/demo_data/lombardia/2019/712/20190213.tif b/demo_data/lombardia/2019/712/20190213.tif new file mode 100755 index 0000000000000000000000000000000000000000..3bea91c62f887f194f8eca692a5553f40fdf9c6f --- /dev/null +++ b/demo_data/lombardia/2019/712/20190213.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfe9ce0c2ce37e35eea79b36f75d37e850a30211878e42f460b4a0fd492f6996 +size 37679 diff --git a/demo_data/lombardia/2019/712/20190218.tif b/demo_data/lombardia/2019/712/20190218.tif new file mode 100755 index 0000000000000000000000000000000000000000..dcc010c7d331cea1989980e4984238c595e3de52 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190218.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d5bedb3c9f1f41d7858c09e37ef0e2e08c19d964ed63da7872baad531e494fb +size 38620 diff --git a/demo_data/lombardia/2019/712/20190223.tif b/demo_data/lombardia/2019/712/20190223.tif new file mode 100755 index 0000000000000000000000000000000000000000..f4011eb9f32e3a1cc7918117d23683c8134b8be1 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190223.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:924c4521f58bd69e9695f5733baf2de12a3e844212fad000971773390471b24f +size 38984 diff --git a/demo_data/lombardia/2019/712/20190228.tif b/demo_data/lombardia/2019/712/20190228.tif new file mode 100755 index 0000000000000000000000000000000000000000..f4dc27a5c8ac0b41ec552678e993c218e36cbb8b --- /dev/null +++ b/demo_data/lombardia/2019/712/20190228.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d06529918bf92c185f48bbbeaafdc6e2a95a66c53350ae84f4a93d07852e553 +size 38757 diff --git a/demo_data/lombardia/2019/712/20190305.tif b/demo_data/lombardia/2019/712/20190305.tif new file mode 100755 index 0000000000000000000000000000000000000000..0152272241943ea52c09fb6776dd026e57892350 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190305.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6bae57b641305b6bed221ee26e0c09281dbbc8e2b272660dac35c1c12130ca1 +size 37351 diff --git a/demo_data/lombardia/2019/712/20190310.tif b/demo_data/lombardia/2019/712/20190310.tif new file mode 100755 index 0000000000000000000000000000000000000000..f877c3c798bdd30b6b10669352ba3d49e127cc49 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190310.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40541492f1166a63d1ad3e8145ba24ceb1282a735c1c5aec94051d39a131593e +size 37238 diff --git a/demo_data/lombardia/2019/712/20190315.tif b/demo_data/lombardia/2019/712/20190315.tif new file mode 100755 index 0000000000000000000000000000000000000000..6fd365709d6ea76934c9a8c7619b6825a33b277f --- /dev/null +++ b/demo_data/lombardia/2019/712/20190315.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffee4cc699923cd22fa5e46fbad74a8776c02baf7f90cb0ad3963035eabfdd54 +size 39215 diff --git a/demo_data/lombardia/2019/712/20190320.tif b/demo_data/lombardia/2019/712/20190320.tif new file mode 100755 index 0000000000000000000000000000000000000000..d93b252b8bbaa151b5b1e73a4d79a0d36c5b67fb --- /dev/null +++ b/demo_data/lombardia/2019/712/20190320.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9db30cb7fa1683db17f7dca20d577e882361075efb4d7568c576d7f172d64341 +size 39402 diff --git a/demo_data/lombardia/2019/712/20190325.tif b/demo_data/lombardia/2019/712/20190325.tif new file mode 100755 index 0000000000000000000000000000000000000000..b7635e8f885f088628c917dc360ca592767771cf --- /dev/null +++ b/demo_data/lombardia/2019/712/20190325.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f36b0b318fe898cb6adaa9e8bdb30a299a6fbd55ce77995310b9da7b5365761 +size 39260 diff --git a/demo_data/lombardia/2019/712/20190330.tif b/demo_data/lombardia/2019/712/20190330.tif new file mode 100755 index 0000000000000000000000000000000000000000..f91ba6f9acade0d7d0fe7b8a6436a2567721ea81 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190330.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eafa5f3afda30fa549f7ac5aaa014b8e2482dbb993c3b28b6f3793126a13c3dd +size 39097 diff --git a/demo_data/lombardia/2019/712/20190404.tif b/demo_data/lombardia/2019/712/20190404.tif new file mode 100755 index 0000000000000000000000000000000000000000..8c229716b5be0e19b8196b19e24f105600d92854 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190404.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290cba7bb920f97b7051ada7ca956ac2f21cc8d242bfd0896b7535299fd27cdd +size 27630 diff --git a/demo_data/lombardia/2019/712/20190409.tif b/demo_data/lombardia/2019/712/20190409.tif new file mode 100755 index 0000000000000000000000000000000000000000..b0ad5bf70e27557432886e17046445f9367706b0 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190409.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf1d5eb2054536a4852735f30d760f2dca2a6465234f83c79afdb9ce9e28cd6b +size 38021 diff --git a/demo_data/lombardia/2019/712/20190414.tif b/demo_data/lombardia/2019/712/20190414.tif new file mode 100755 index 0000000000000000000000000000000000000000..e9001596ca0ac7b1cd4c814980b0f78696817eea --- /dev/null +++ b/demo_data/lombardia/2019/712/20190414.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8517e514040c8ea40df4c32ccceed8257f937799c072ff8837c6a7d74a7efc5e +size 26694 diff --git a/demo_data/lombardia/2019/712/20190419.tif b/demo_data/lombardia/2019/712/20190419.tif new file mode 100755 index 0000000000000000000000000000000000000000..028a07869324eee3f2ec7e8f7f6954d03b4d90b6 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190419.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:630bfe26a18d65be9fe302c5fbc829a8db302f8ea02d5841a1595c37e8091357 +size 38334 diff --git a/demo_data/lombardia/2019/712/20190424.tif b/demo_data/lombardia/2019/712/20190424.tif new file mode 100755 index 0000000000000000000000000000000000000000..027beda10f8e273a3b3b3fea06699ad607b59075 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190424.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a489663b29fde0b1956bae1a95914767a72b44baa7697de01e028c42dbe4a37 +size 32204 diff --git a/demo_data/lombardia/2019/712/20190429.tif b/demo_data/lombardia/2019/712/20190429.tif new file mode 100755 index 0000000000000000000000000000000000000000..d2a139e657c3c4ec9a24515eeaff85e7a4811484 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190429.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6151a28f8b4e944b93c0c8f1adccb3b4519dbf2ed97a17cff1c98d4a1967f8 +size 26818 diff --git a/demo_data/lombardia/2019/712/20190504.tif b/demo_data/lombardia/2019/712/20190504.tif new file mode 100755 index 0000000000000000000000000000000000000000..2b4de1faeed5ede71e3615bb08995df78e109c65 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190504.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea56c9bc901ea95e6d081f3b3aeb035e46d241f9bc6326df4c55b3d368ecfa8 +size 35860 diff --git a/demo_data/lombardia/2019/712/20190509.tif b/demo_data/lombardia/2019/712/20190509.tif new file mode 100755 index 0000000000000000000000000000000000000000..f5dbee27b130bad6f2c76731f83516d0347590f2 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190509.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ac832a5c9fcd920d86d7cd9fe47d73247d5b9725130b44002c7a7b281275a7b +size 37359 diff --git a/demo_data/lombardia/2019/712/20190514.tif b/demo_data/lombardia/2019/712/20190514.tif new file mode 100755 index 0000000000000000000000000000000000000000..0e7402a541b61099046031161ba1d1e266cea454 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190514.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a055bc351b00b7e2b7fdd4e491886fa4372c9364d93b859091a56f9b87234a9 +size 37988 diff --git a/demo_data/lombardia/2019/712/20190519.tif b/demo_data/lombardia/2019/712/20190519.tif new file mode 100755 index 0000000000000000000000000000000000000000..ec2db63460cfcdd8dd2de40be3a4810139f351f0 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190519.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d688fdcc41b9083cba92c53d85258ddc0b2d967e77a6ad07555f0bb43bcbfa4 +size 26375 diff --git a/demo_data/lombardia/2019/712/20190524.tif b/demo_data/lombardia/2019/712/20190524.tif new file mode 100755 index 0000000000000000000000000000000000000000..241622ce9f0cef042cd9170c8d0249a6f9087280 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190524.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b859de1fc2c5a95d8862977a5a136484e8a16763729093d9b7632269e8fc1c1e +size 38469 diff --git a/demo_data/lombardia/2019/712/20190529.tif b/demo_data/lombardia/2019/712/20190529.tif new file mode 100755 index 0000000000000000000000000000000000000000..6ace0de92d711c2891e511dd9c15d39531cd5b41 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190529.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeaec3fad3e3b5176f5fea7e00f6c2bfffcf9aad11445789d305d3402948be08 +size 33117 diff --git a/demo_data/lombardia/2019/712/20190603.tif b/demo_data/lombardia/2019/712/20190603.tif new file mode 100755 index 0000000000000000000000000000000000000000..a83ec4778cb92413581f603dba7c556644dea6a2 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190603.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a4871243cf1261ec409d2f9f504c19aebce8da969c94f59f55cf015d13e025c +size 38844 diff --git a/demo_data/lombardia/2019/712/20190613.tif b/demo_data/lombardia/2019/712/20190613.tif new file mode 100755 index 0000000000000000000000000000000000000000..9c10103bfb235c22e03ec7d5b1cdee9e2012509c --- /dev/null +++ b/demo_data/lombardia/2019/712/20190613.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e45705110c84c2f20386131026c2be008b252f0daef184baaa037f48d31592a +size 39106 diff --git a/demo_data/lombardia/2019/712/20190618.tif b/demo_data/lombardia/2019/712/20190618.tif new file mode 100755 index 0000000000000000000000000000000000000000..0270905e873632a482d4508b7d751a7521865bf2 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190618.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a7cdeabc79938b08ca800ae6dce577ad2ab2312896047e2af4a7da3de3b93c1 +size 38766 diff --git a/demo_data/lombardia/2019/712/20190623.tif b/demo_data/lombardia/2019/712/20190623.tif new file mode 100755 index 0000000000000000000000000000000000000000..f1600b3d07808fb12be6a5ffa00251885369f4c3 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190623.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:674732144f4e7d889f1c707313b9187ea9dd5577263aeecaf10828c627d47867 +size 38945 diff --git a/demo_data/lombardia/2019/712/20190628.tif b/demo_data/lombardia/2019/712/20190628.tif new file mode 100755 index 0000000000000000000000000000000000000000..dd71bd97e350cc319ddc326fb1de66921c0a0f66 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190628.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1102eb6302f5479ba8e87fa0e878071d4a052f5783866d3b66f2b5808109b8ae +size 37769 diff --git a/demo_data/lombardia/2019/712/20190703.tif b/demo_data/lombardia/2019/712/20190703.tif new file mode 100755 index 0000000000000000000000000000000000000000..c9a163e975ea69c525c431decb40a44db358b57f --- /dev/null +++ b/demo_data/lombardia/2019/712/20190703.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a91c54313b44675844f58f6c1610abec544b061090a31f1ed1e830c009eebed +size 38345 diff --git a/demo_data/lombardia/2019/712/20190708.tif b/demo_data/lombardia/2019/712/20190708.tif new file mode 100755 index 0000000000000000000000000000000000000000..c9036de24565f8be580b7a6b2d5c28781db0d4f1 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190708.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f20f52d9c45cd8fa2c9382fe3aab5d22cc71758001bbaec50f79d302d112d3e +size 37744 diff --git a/demo_data/lombardia/2019/712/20190713.tif b/demo_data/lombardia/2019/712/20190713.tif new file mode 100755 index 0000000000000000000000000000000000000000..4811bcebb88217ea4855f1aeff894a2a95002aa4 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190713.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56ec222f57c5c304ab72e212715559001181e704e9084655194f52ba87ab0ea6 +size 38345 diff --git a/demo_data/lombardia/2019/712/20190718.tif b/demo_data/lombardia/2019/712/20190718.tif new file mode 100755 index 0000000000000000000000000000000000000000..479f8ac321a2a34f7a817ef546c8d677502632b9 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190718.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681e8301d32458140f42820fc575db2c7b7d67e9982abdb61f0fe5287063be90 +size 30207 diff --git a/demo_data/lombardia/2019/712/20190723.tif b/demo_data/lombardia/2019/712/20190723.tif new file mode 100755 index 0000000000000000000000000000000000000000..75a66b1e990019bdc0d72a488e00a19586a384f7 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190723.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fae521ecd11cd46237578035c1bb6fcb27256b20ae8c2a7ec177380b3a1c3ea +size 37790 diff --git a/demo_data/lombardia/2019/712/20190728.tif b/demo_data/lombardia/2019/712/20190728.tif new file mode 100755 index 0000000000000000000000000000000000000000..2110f6ff72c4063b0eaa23066e1673853897e61d --- /dev/null +++ b/demo_data/lombardia/2019/712/20190728.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:553450cadf2112afe1209c1a8f44acbddbe38ee6a8f796f5de95da8718d49f24 +size 27007 diff --git a/demo_data/lombardia/2019/712/20190802.tif b/demo_data/lombardia/2019/712/20190802.tif new file mode 100755 index 0000000000000000000000000000000000000000..3b5c8d6ff8717535319cee3bac63e85d36870316 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190802.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b914853b910844dc01efeab237f4cbdba4d75a7ddb6b884ff46bed6b593b13a0 +size 38770 diff --git a/demo_data/lombardia/2019/712/20190807.tif b/demo_data/lombardia/2019/712/20190807.tif new file mode 100755 index 0000000000000000000000000000000000000000..1ca1ba7bcb798938eb602fde01c2f5874f5836bb --- /dev/null +++ b/demo_data/lombardia/2019/712/20190807.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f8903fe117e553aa6ed36c598ca1bbf7405e190f838b025805f1820e61f5925 +size 35735 diff --git a/demo_data/lombardia/2019/712/20190812.tif b/demo_data/lombardia/2019/712/20190812.tif new file mode 100755 index 0000000000000000000000000000000000000000..a82ab9da5ff10ee70d581d7359d976c71ef8e720 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190812.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3579f20005f5af1d1963775ea1a1562f7b080c61352c05ddd23e97f1461ff65 +size 35386 diff --git a/demo_data/lombardia/2019/712/20190817.tif b/demo_data/lombardia/2019/712/20190817.tif new file mode 100755 index 0000000000000000000000000000000000000000..3cc21cfd893fcbf7cba0c1576e32d08e9b7efa7e --- /dev/null +++ b/demo_data/lombardia/2019/712/20190817.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:334605a4ba9dab6faa618a3b938c2e3844fe310253f436ea8ea11afa3d85ed57 +size 35887 diff --git a/demo_data/lombardia/2019/712/20190822.tif b/demo_data/lombardia/2019/712/20190822.tif new file mode 100755 index 0000000000000000000000000000000000000000..bf216972b8d316177403aa7b8f8d4abe95f965d4 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190822.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5f97ca23bd3b5cc56e412c2188b78b060cdd4edad228b4d61eac524a0c1dbdf +size 37245 diff --git a/demo_data/lombardia/2019/712/20190827.tif b/demo_data/lombardia/2019/712/20190827.tif new file mode 100755 index 0000000000000000000000000000000000000000..7891d0c1fb38bcd7d23aa25939d3be660f83ea4c --- /dev/null +++ b/demo_data/lombardia/2019/712/20190827.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:895b4c5a0e1c0b8c4557d4288038e3891a66120ffc0547af9021301edfe378f5 +size 37540 diff --git a/demo_data/lombardia/2019/712/20190901.tif b/demo_data/lombardia/2019/712/20190901.tif new file mode 100755 index 0000000000000000000000000000000000000000..993c7c9f9bb6472f9114b7d96c93bfb6c9da9e8c --- /dev/null +++ b/demo_data/lombardia/2019/712/20190901.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cb7947106226da142af731a49a3f78b4246df8c27eee2ee0c96c4f7a372680 +size 38078 diff --git a/demo_data/lombardia/2019/712/20190906.tif b/demo_data/lombardia/2019/712/20190906.tif new file mode 100755 index 0000000000000000000000000000000000000000..f8b6c7095f6d6368cfed203a2de751f646f36e54 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190906.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d54670bf4fb56a3645e23ad536d2a69c253308cfc0f2dfb4dbead783702bf76 +size 33213 diff --git a/demo_data/lombardia/2019/712/20190911.tif b/demo_data/lombardia/2019/712/20190911.tif new file mode 100755 index 0000000000000000000000000000000000000000..1d6c846f40d164cc8d3756cb8fadb79868bfabbf --- /dev/null +++ b/demo_data/lombardia/2019/712/20190911.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7f0775acf8659ae4dfc9b661cff5004897eef73ada9dc604d62dbabc2645d0 +size 36521 diff --git a/demo_data/lombardia/2019/712/20190916.tif b/demo_data/lombardia/2019/712/20190916.tif new file mode 100755 index 0000000000000000000000000000000000000000..d9a8fd5d845967bffa2cba85d070b8f7e91c82d9 --- /dev/null +++ b/demo_data/lombardia/2019/712/20190916.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa8bf641eddca14d6850dd939d3d1b08d53e2817ad8088a79cbb61034ffcec1 +size 37769 diff --git a/demo_data/lombardia/2019/712/20190921.tif b/demo_data/lombardia/2019/712/20190921.tif new file mode 100755 index 0000000000000000000000000000000000000000..8d55add700bca5a290202ebe68930a68636fd6be --- /dev/null +++ b/demo_data/lombardia/2019/712/20190921.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:091811d719156151587d45bdba2cbf48ace31b3388bdd326e99f7fe5e97eef4a +size 38597 diff --git a/demo_data/lombardia/2019/712/20190926.tif b/demo_data/lombardia/2019/712/20190926.tif new file mode 100755 index 0000000000000000000000000000000000000000..8c5d326cb276cc640fac6f265956be64ff87a7fb --- /dev/null +++ b/demo_data/lombardia/2019/712/20190926.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f4573b5a6ed6e648c405719f0e2e69764a40172ff9771c592bdf8bea73d2598 +size 36455 diff --git a/demo_data/lombardia/2019/712/20191001.tif b/demo_data/lombardia/2019/712/20191001.tif new file mode 100755 index 0000000000000000000000000000000000000000..56c94b122c419eaeb7d4cd72063823d3bda47472 --- /dev/null +++ b/demo_data/lombardia/2019/712/20191001.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca27e8c5b74bd8913be94e58e67469aa1d28b6cec7a65178cb86df1798865bb +size 38032 diff --git a/demo_data/lombardia/2019/712/20191006.tif b/demo_data/lombardia/2019/712/20191006.tif new file mode 100755 index 0000000000000000000000000000000000000000..e25bd8c86e26c1f53bfeb9940a55414cb98ad438 --- /dev/null +++ b/demo_data/lombardia/2019/712/20191006.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e57dd8e0e5b996926d47f28782687d5adcefa0fe473c8c6210208a3384de84df +size 34873 diff --git a/demo_data/lombardia/2019/712/20191011.tif b/demo_data/lombardia/2019/712/20191011.tif new file mode 100755 index 0000000000000000000000000000000000000000..dd6fffc8bea557174f85f333e74a563e76f4e420 --- /dev/null +++ b/demo_data/lombardia/2019/712/20191011.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ba4fcc538001ae2bd8cddbc93989e80b5caccb348bb94467e43ae615129788 +size 36400 diff --git a/demo_data/lombardia/2019/712/20191016.tif b/demo_data/lombardia/2019/712/20191016.tif new file mode 100755 index 0000000000000000000000000000000000000000..7c16312c7cda220b703de3438ba4d2d0b3a1b730 --- /dev/null +++ b/demo_data/lombardia/2019/712/20191016.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0390c7ff0d4abdd67a09b5218daa61c8d7ccb6e74ddd31fb267383c5cc897202 +size 38438 diff --git a/demo_data/lombardia/2019/712/20191021.tif b/demo_data/lombardia/2019/712/20191021.tif new file mode 100755 index 0000000000000000000000000000000000000000..15f24e02426ffe0ec4d5085d48ba9c587ba9ed48 --- /dev/null +++ b/demo_data/lombardia/2019/712/20191021.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6104722744d0422d4f2f823c67593764475df7dfced6b7406aac14591ce60df +size 35011 diff --git a/demo_data/lombardia/2019/712/20191026.tif b/demo_data/lombardia/2019/712/20191026.tif new file mode 100755 index 0000000000000000000000000000000000000000..8e44ef5690de209bdb3e0349928e48d8fbf02f48 --- /dev/null +++ b/demo_data/lombardia/2019/712/20191026.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3474469eb98260ae26359e9c39288596f52140ee69dec55d5e9c4fe6164bc64 +size 37865 diff --git a/demo_data/lombardia/2019/712/20191031.tif b/demo_data/lombardia/2019/712/20191031.tif new file mode 100755 index 0000000000000000000000000000000000000000..13efcc2e51bbc89540db75f86368de9d36f8b873 --- /dev/null +++ b/demo_data/lombardia/2019/712/20191031.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d654c8a3fe34b244bc34757e275edf3b23dd3ccca52dcb41a4a5696e77db73f +size 35868 diff --git a/demo_data/lombardia/2019/712/20191105.tif b/demo_data/lombardia/2019/712/20191105.tif new file mode 100755 index 0000000000000000000000000000000000000000..b9383bae511b081a7668baad88335f4ceee0234e --- /dev/null +++ b/demo_data/lombardia/2019/712/20191105.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e577bf8fc0ce6676b2f5de0384e45c5046d576902f6bb078f5411dd39019e0b4 +size 36701 diff --git a/demo_data/lombardia/2019/712/20191110.tif b/demo_data/lombardia/2019/712/20191110.tif new file mode 100755 index 0000000000000000000000000000000000000000..fa32e265a1cb807cfc8239f0779b3f633a789f2e --- /dev/null +++ b/demo_data/lombardia/2019/712/20191110.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73c177e69811fbc67dd3b08fb4ac50169a82541248440d936a5e3a17aa37a657 +size 38387 diff --git a/demo_data/lombardia/2019/712/20191115.tif b/demo_data/lombardia/2019/712/20191115.tif new file mode 100755 index 0000000000000000000000000000000000000000..7f914739288dba3bbf28dbec116d470d8af55e89 --- /dev/null +++ b/demo_data/lombardia/2019/712/20191115.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7d0665039c965f07377f6d455f5d2d682fb442057ec0c3d1c3b25cf93b18161 +size 30894 diff --git a/demo_data/lombardia/2019/712/20191120.tif b/demo_data/lombardia/2019/712/20191120.tif new file mode 100755 index 0000000000000000000000000000000000000000..16dd2698ec2e8b092247d199ee4d4fabd83aaa4e --- /dev/null +++ b/demo_data/lombardia/2019/712/20191120.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dccd18d4522f81fd5a88998eb73c97b319ab0cf0bb5797b6af208ad3eb555f7e +size 34082 diff --git a/demo_data/lombardia/2019/712/20191130.tif b/demo_data/lombardia/2019/712/20191130.tif new file mode 100755 index 0000000000000000000000000000000000000000..af2ef4df481a2081b9ccf0cc5d71f1e89937bfc9 --- /dev/null +++ b/demo_data/lombardia/2019/712/20191130.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c44b381601e3b84db68bd4b06f903cb53c1c664660b1cc40ecb37c5fe8a508ab +size 38218 diff --git a/demo_data/lombardia/2019/712/20191205.tif b/demo_data/lombardia/2019/712/20191205.tif new file mode 100755 index 0000000000000000000000000000000000000000..bb3c46e8798519d823437be33b9d305a5f9fa90f --- /dev/null +++ b/demo_data/lombardia/2019/712/20191205.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f624716566d466b07fd1cd2d846447b0564351082a3f324f03d626aafec86629 +size 37479 diff --git a/demo_data/lombardia/2019/712/20191210.tif b/demo_data/lombardia/2019/712/20191210.tif new file mode 100755 index 0000000000000000000000000000000000000000..6f4f5a9d3c666ce4ea1acacc921a8cbf81ac6d83 --- /dev/null +++ b/demo_data/lombardia/2019/712/20191210.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c32d1adeea591e290551d77e60c22d6a642ba2cec9aca7cd775c5204507881d +size 38744 diff --git a/demo_data/lombardia/2019/712/20191215.tif b/demo_data/lombardia/2019/712/20191215.tif new file mode 100755 index 0000000000000000000000000000000000000000..a5af3eefbd0f3947fcc658d9e6c85dc9f3a8011e --- /dev/null +++ b/demo_data/lombardia/2019/712/20191215.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f680d9639d7d744705c1a47ae635257d984cded64e3beb4f4911db1786beebfa +size 38937 diff --git a/demo_data/lombardia/2019/712/20191220.tif b/demo_data/lombardia/2019/712/20191220.tif new file mode 100755 index 0000000000000000000000000000000000000000..a331836971148babe80190ff0e44b32fec5d439e --- /dev/null +++ b/demo_data/lombardia/2019/712/20191220.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2be3c84e988062ff1b0f1a483226262ddaff0854aa6a204b28e88c1caf9ab0d +size 32528 diff --git a/demo_data/lombardia/2019/712/20191225.tif b/demo_data/lombardia/2019/712/20191225.tif new file mode 100755 index 0000000000000000000000000000000000000000..14285a52e1fb061352f1a6c24eb0d1c59a0aa95d --- /dev/null +++ b/demo_data/lombardia/2019/712/20191225.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef9711d16664c004fcabf5765f6665220f625bd9c1618027807ff330b2f1717 +size 38783 diff --git a/demo_data/lombardia/2019/712/20191230.tif b/demo_data/lombardia/2019/712/20191230.tif new file mode 100755 index 0000000000000000000000000000000000000000..487badf16f73cc4c310e6cd63df8d5d262c52e3f --- /dev/null +++ b/demo_data/lombardia/2019/712/20191230.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ea4c73d719919935c561163c8fdc912acbc196847a00a934845dad69798f663 +size 37373 diff --git a/demo_data/lombardia/2019/814/20190104.tif b/demo_data/lombardia/2019/814/20190104.tif new file mode 100755 index 0000000000000000000000000000000000000000..ae2b5e043a6e762480121f484edc9280f104861c --- /dev/null +++ b/demo_data/lombardia/2019/814/20190104.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:687d23f46ccfd3f429e68724f275922f04e3792b32b131a2c3c32bdc5b525c35 +size 37503 diff --git a/demo_data/lombardia/2019/814/20190109.tif b/demo_data/lombardia/2019/814/20190109.tif new file mode 100755 index 0000000000000000000000000000000000000000..3f1922ce5254f9349b1fdf23b0b7ca2851973262 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190109.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:474e869f8240573bbfd51c0fdd0d15b4a9862954bbfae2897826faba437fb1dd +size 35993 diff --git a/demo_data/lombardia/2019/814/20190114.tif b/demo_data/lombardia/2019/814/20190114.tif new file mode 100755 index 0000000000000000000000000000000000000000..34fb4b24662b9bd1a7b816efed3090e653db7ddd --- /dev/null +++ b/demo_data/lombardia/2019/814/20190114.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0c8e43cb73f3e762965bbc8cd248ea2841cc878b579f380f9a5e2388c0d9e32 +size 38623 diff --git a/demo_data/lombardia/2019/814/20190119.tif b/demo_data/lombardia/2019/814/20190119.tif new file mode 100755 index 0000000000000000000000000000000000000000..4bc630de8e251263b165ab2cd8da9ceaf8163d77 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190119.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd1c9d42155b952a94ea5ae604118b24c8af46c52566f1461fcefee6c49ee70 +size 36351 diff --git a/demo_data/lombardia/2019/814/20190124.tif b/demo_data/lombardia/2019/814/20190124.tif new file mode 100755 index 0000000000000000000000000000000000000000..ec3dc0b90d770d531642f403fd589115dbb9e5d4 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190124.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:562bc7aa5d667f5a01afe3b223b6d11b76dacb5d62d318544c1be077b848b2e9 +size 38295 diff --git a/demo_data/lombardia/2019/814/20190129.tif b/demo_data/lombardia/2019/814/20190129.tif new file mode 100755 index 0000000000000000000000000000000000000000..188714f537d9a910d1b26c2b881614bac8626910 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190129.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7242c221b633d60891f096c5b6f7ca99454de83520cfefd928a1953d315b00 +size 38165 diff --git a/demo_data/lombardia/2019/814/20190203.tif b/demo_data/lombardia/2019/814/20190203.tif new file mode 100755 index 0000000000000000000000000000000000000000..bae611bd2a5bb9cdb7125b00b582907b1a44fe0c --- /dev/null +++ b/demo_data/lombardia/2019/814/20190203.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fbcdec2ceb9b0240e716f85a726868d0f7a43ef84824449227047f02433eee9 +size 36333 diff --git a/demo_data/lombardia/2019/814/20190208.tif b/demo_data/lombardia/2019/814/20190208.tif new file mode 100755 index 0000000000000000000000000000000000000000..4bc96a974c4071f640b98d8689f5b885a1261e0e --- /dev/null +++ b/demo_data/lombardia/2019/814/20190208.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6422daa5bec38cff77439984c527628c04ba26260938aed31c9bdfa03418acb9 +size 38331 diff --git a/demo_data/lombardia/2019/814/20190213.tif b/demo_data/lombardia/2019/814/20190213.tif new file mode 100755 index 0000000000000000000000000000000000000000..7b41488fcea50fcc1df050cdddd7f71a684e68b1 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190213.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c9bcac44dedaeec288e40bf6d8f27348dba6f0250f84c0c5c33cbbfe008e5e0 +size 39225 diff --git a/demo_data/lombardia/2019/814/20190218.tif b/demo_data/lombardia/2019/814/20190218.tif new file mode 100755 index 0000000000000000000000000000000000000000..1d91d17b4e474dae40652352922e418ece89903d --- /dev/null +++ b/demo_data/lombardia/2019/814/20190218.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:834c604a554b06dc28cffbce8e0fbdfd61f735013e1615e965e24924ae9be014 +size 38492 diff --git a/demo_data/lombardia/2019/814/20190223.tif b/demo_data/lombardia/2019/814/20190223.tif new file mode 100755 index 0000000000000000000000000000000000000000..3abbe3ac0aef160048b38e04a17837a219fd578f --- /dev/null +++ b/demo_data/lombardia/2019/814/20190223.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a89e705f6bb51b4db66db8df2895ef25bfccaf8e13cac8618bd615615853e85 +size 39102 diff --git a/demo_data/lombardia/2019/814/20190228.tif b/demo_data/lombardia/2019/814/20190228.tif new file mode 100755 index 0000000000000000000000000000000000000000..29277be8b6192cbdc2ddcbaa6d559a318a402df0 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190228.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7c0024164f535a1d7811a8ad894a0297d35ecf4ca7e5c907e2d79f9638e5df +size 38542 diff --git a/demo_data/lombardia/2019/814/20190305.tif b/demo_data/lombardia/2019/814/20190305.tif new file mode 100755 index 0000000000000000000000000000000000000000..04bd02dbc8bffb2bae736df8da04ac320ba388fb --- /dev/null +++ b/demo_data/lombardia/2019/814/20190305.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3747115a74998c87fd22178bdbfd4c72a2e1fce47f718e95ca013245d813f18 +size 36537 diff --git a/demo_data/lombardia/2019/814/20190310.tif b/demo_data/lombardia/2019/814/20190310.tif new file mode 100755 index 0000000000000000000000000000000000000000..61bf750acf4be4c29f1e1ac3c0673d930a1d80b3 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190310.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03cfad547bd6af00a83c43e43d09aa465113231515f15c121b0405e61fc9078 +size 38227 diff --git a/demo_data/lombardia/2019/814/20190315.tif b/demo_data/lombardia/2019/814/20190315.tif new file mode 100755 index 0000000000000000000000000000000000000000..c70c38b8904d49007e4a5e38c8bdb8e9e0464a21 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190315.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a5743fe9eecedd938a50550e65d9a350a29f8f98d19c080ce68464c2fb1a6ce +size 39588 diff --git a/demo_data/lombardia/2019/814/20190320.tif b/demo_data/lombardia/2019/814/20190320.tif new file mode 100755 index 0000000000000000000000000000000000000000..f289c2bac4ef9ff7fba396464547b3f65ed37353 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190320.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27c0bf5007ba00216853a157bc6c03238970fb4071e22c12ac37c0a620d9de87 +size 39699 diff --git a/demo_data/lombardia/2019/814/20190325.tif b/demo_data/lombardia/2019/814/20190325.tif new file mode 100755 index 0000000000000000000000000000000000000000..5b57ce121448fb2f90afff7c33a63770287a2896 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190325.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7b9c7a5a830bf8c6ca527ce0a68a677481e7e63e8c1b889936d4f5283062da +size 39541 diff --git a/demo_data/lombardia/2019/814/20190330.tif b/demo_data/lombardia/2019/814/20190330.tif new file mode 100755 index 0000000000000000000000000000000000000000..ded1a9b868fc8db0f2105301ab31150464e54ea5 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190330.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfd62cebe555b6d82128dc9ac860187b3c5abfce7be37e43f14a7fdbcf6d1779 +size 39537 diff --git a/demo_data/lombardia/2019/814/20190404.tif b/demo_data/lombardia/2019/814/20190404.tif new file mode 100755 index 0000000000000000000000000000000000000000..6c2e0e6248f07f3031b46457dbab388fbc9babc9 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190404.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1326f51e0b007da772cd9c830f8c944f77af6a4acb4c977128d8a116ff363d1 +size 25881 diff --git a/demo_data/lombardia/2019/814/20190409.tif b/demo_data/lombardia/2019/814/20190409.tif new file mode 100755 index 0000000000000000000000000000000000000000..a6d111e0136717f61885fe369c70b05db584a3c6 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190409.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2617228ae545b6682d10045ac1524532f3f1678813f8d2a60bfa6b871e7365fb +size 38669 diff --git a/demo_data/lombardia/2019/814/20190414.tif b/demo_data/lombardia/2019/814/20190414.tif new file mode 100755 index 0000000000000000000000000000000000000000..ae23a29421b9ae7cad1c43149e46674eb0b0cb5e --- /dev/null +++ b/demo_data/lombardia/2019/814/20190414.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ed7a11fd0195c209d8d2d72996e4a4bfa90140919b0ddfb10dc382faed3d12 +size 26745 diff --git a/demo_data/lombardia/2019/814/20190419.tif b/demo_data/lombardia/2019/814/20190419.tif new file mode 100755 index 0000000000000000000000000000000000000000..b93c422e8788977d9e7ca227f9403aa180141191 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190419.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:091680ffe0a6dcc92ccfd83f2dc3f7522b703cde02a8877c7d2a87ac66dfbbaa +size 39055 diff --git a/demo_data/lombardia/2019/814/20190424.tif b/demo_data/lombardia/2019/814/20190424.tif new file mode 100755 index 0000000000000000000000000000000000000000..8fb244aeda477419813f65df88868f628f84f746 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190424.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a99fbed307b74545a83c81a7dc619c6b69469caedbf4d8259e8167f1204d6bb +size 32875 diff --git a/demo_data/lombardia/2019/814/20190429.tif b/demo_data/lombardia/2019/814/20190429.tif new file mode 100755 index 0000000000000000000000000000000000000000..00aae785c762425b299e3c76c42e6ac5993158bf --- /dev/null +++ b/demo_data/lombardia/2019/814/20190429.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d9d61ddc19fe3f29c42f148d43262c19249c293d58972f0215abd1c9acfd6d +size 29124 diff --git a/demo_data/lombardia/2019/814/20190504.tif b/demo_data/lombardia/2019/814/20190504.tif new file mode 100755 index 0000000000000000000000000000000000000000..3d080a8388089c7ec8b3fa11151596a21355a24b --- /dev/null +++ b/demo_data/lombardia/2019/814/20190504.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126bdf77f44300a73f7d18dadf151bd64bc25aadc462f57c04126c1698e0c62a +size 39002 diff --git a/demo_data/lombardia/2019/814/20190509.tif b/demo_data/lombardia/2019/814/20190509.tif new file mode 100755 index 0000000000000000000000000000000000000000..93cd4c1f0e1231ab4a5d8e27bda18c524422e2e4 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190509.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8693c4657915100808a9909a32505cc43d27c969ee093b67b0adaf2082b7a3a8 +size 38107 diff --git a/demo_data/lombardia/2019/814/20190514.tif b/demo_data/lombardia/2019/814/20190514.tif new file mode 100755 index 0000000000000000000000000000000000000000..e7a4c9a7aa8cb0fd44720807c380469ffa32e104 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190514.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71976aaa603e905d8b7053fc7de0933d6c8ff7b19b86193509fc378b9d07e79c +size 38871 diff --git a/demo_data/lombardia/2019/814/20190519.tif b/demo_data/lombardia/2019/814/20190519.tif new file mode 100755 index 0000000000000000000000000000000000000000..3d87826061f6e64718fb51b19fe7372191a53a47 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190519.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7948355d011b4b3a0c34a2e40632934ca33056f54df5c98c1a65a2ae9c5549 +size 27039 diff --git a/demo_data/lombardia/2019/814/20190524.tif b/demo_data/lombardia/2019/814/20190524.tif new file mode 100755 index 0000000000000000000000000000000000000000..4c212bcc901543b19f072a1c45636851ba1c18ee --- /dev/null +++ b/demo_data/lombardia/2019/814/20190524.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb396fe37210622f723b8e0966c7698508802cc0b872e6df2fe38bbb4f20aeba +size 38641 diff --git a/demo_data/lombardia/2019/814/20190529.tif b/demo_data/lombardia/2019/814/20190529.tif new file mode 100755 index 0000000000000000000000000000000000000000..142e190f18dbc7a575404cd1f1d4161a6c4f5c2b --- /dev/null +++ b/demo_data/lombardia/2019/814/20190529.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ece5d7ac25ae04e14876db76e04204445563ea5f6296d4e691dec4c934604b7f +size 31605 diff --git a/demo_data/lombardia/2019/814/20190603.tif b/demo_data/lombardia/2019/814/20190603.tif new file mode 100755 index 0000000000000000000000000000000000000000..5725150837dbcfadfab1e0b0da5fef047a3bd6e9 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190603.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b27734539c471e3ba0b7cb5a679ee98d167d03d7a8b9b0fc4fd311b7a80f9fb +size 38917 diff --git a/demo_data/lombardia/2019/814/20190613.tif b/demo_data/lombardia/2019/814/20190613.tif new file mode 100755 index 0000000000000000000000000000000000000000..ab9a430145b3df0206e8696f7df23684cba9567b --- /dev/null +++ b/demo_data/lombardia/2019/814/20190613.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ba2de6af8d35aeeb03f990ca3ae228db6000ea0970b3bdc6f36a5e203c5e50 +size 38947 diff --git a/demo_data/lombardia/2019/814/20190618.tif b/demo_data/lombardia/2019/814/20190618.tif new file mode 100755 index 0000000000000000000000000000000000000000..5d86d54ee479992e0d8449412581c06feb23db8d --- /dev/null +++ b/demo_data/lombardia/2019/814/20190618.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b861920643588065ff06d0722a5b41321449992f08150dc5b2dd8ad6b0ade7b +size 39013 diff --git a/demo_data/lombardia/2019/814/20190623.tif b/demo_data/lombardia/2019/814/20190623.tif new file mode 100755 index 0000000000000000000000000000000000000000..aaa409f1eccc5aa06b6a12bcef6b32c821386e03 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190623.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745113c934c1fbeeedcbb3d683d1d05ba81636ce0ac5bf0c0d8406a20bc82ac5 +size 38827 diff --git a/demo_data/lombardia/2019/814/20190628.tif b/demo_data/lombardia/2019/814/20190628.tif new file mode 100755 index 0000000000000000000000000000000000000000..751f1d9298aba5e7937d6180184d85a250f6426b --- /dev/null +++ b/demo_data/lombardia/2019/814/20190628.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8db103142a7d43c0065bf7c0f85f25fb9dc9357e32b3ac94f257ef870a2066 +size 37881 diff --git a/demo_data/lombardia/2019/814/20190703.tif b/demo_data/lombardia/2019/814/20190703.tif new file mode 100755 index 0000000000000000000000000000000000000000..f693072def7bc80bb270847438808003a3c66aed --- /dev/null +++ b/demo_data/lombardia/2019/814/20190703.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4451fac12b908de84ae5171acd3d408ea304500df12548fcde05f13c9182ada +size 39226 diff --git a/demo_data/lombardia/2019/814/20190708.tif b/demo_data/lombardia/2019/814/20190708.tif new file mode 100755 index 0000000000000000000000000000000000000000..35c48d335b181aba567e7734f795c31b0908a36a --- /dev/null +++ b/demo_data/lombardia/2019/814/20190708.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb095efc656932bb181e823326c1d434fd4265a89f023c04816766d1de70160d +size 38711 diff --git a/demo_data/lombardia/2019/814/20190713.tif b/demo_data/lombardia/2019/814/20190713.tif new file mode 100755 index 0000000000000000000000000000000000000000..0949dc0723f95e0b861ea78bb5625d13866c519e --- /dev/null +++ b/demo_data/lombardia/2019/814/20190713.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9db652255380f2172830877c7b36f398250e01f8f5784a4680fb97d15aabc25a +size 39389 diff --git a/demo_data/lombardia/2019/814/20190718.tif b/demo_data/lombardia/2019/814/20190718.tif new file mode 100755 index 0000000000000000000000000000000000000000..be4b45e90ae01ed028fa66dab1a8cc52a482c3a0 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190718.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42fc954fc7d6649f6eeb0fee134225804bb2fd519745e602c41f6c7e64c258b4 +size 26329 diff --git a/demo_data/lombardia/2019/814/20190723.tif b/demo_data/lombardia/2019/814/20190723.tif new file mode 100755 index 0000000000000000000000000000000000000000..d2b627cfd4ff98cf411fa1ce2a66ccf4470798e2 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190723.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fbbb904059e4e60919e5369ec471a6da247822d376a1c2268634053db40742d +size 38684 diff --git a/demo_data/lombardia/2019/814/20190728.tif b/demo_data/lombardia/2019/814/20190728.tif new file mode 100755 index 0000000000000000000000000000000000000000..954f597534b84e576bbc4fda545891319a34de18 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190728.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cb63872deafede575f0f2e3b01037586e7d7c389874108ec0505cc7c4e5039a +size 26651 diff --git a/demo_data/lombardia/2019/814/20190802.tif b/demo_data/lombardia/2019/814/20190802.tif new file mode 100755 index 0000000000000000000000000000000000000000..73f436998b2259166ec4c465169340b260682f3a --- /dev/null +++ b/demo_data/lombardia/2019/814/20190802.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04de5047604a45ba3c88887544baa798186aa4aaf5f39df2c58a73132a2bbe15 +size 38265 diff --git a/demo_data/lombardia/2019/814/20190807.tif b/demo_data/lombardia/2019/814/20190807.tif new file mode 100755 index 0000000000000000000000000000000000000000..224fdd2e17a1394ca4c537f6666ba9166962f5ec --- /dev/null +++ b/demo_data/lombardia/2019/814/20190807.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4447d820a5eba7000e6884a8748db0a7508cd52b092e7f52f1a3e7bd3df3994f +size 38329 diff --git a/demo_data/lombardia/2019/814/20190812.tif b/demo_data/lombardia/2019/814/20190812.tif new file mode 100755 index 0000000000000000000000000000000000000000..8a5e8edd7528dc965051fc3a90092d0ac022fa5e --- /dev/null +++ b/demo_data/lombardia/2019/814/20190812.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:883d4679de3b3914519a4f3a9805c5b9886187df8404c1709a942d35ab1e83d4 +size 35358 diff --git a/demo_data/lombardia/2019/814/20190817.tif b/demo_data/lombardia/2019/814/20190817.tif new file mode 100755 index 0000000000000000000000000000000000000000..22d599fd789cab4a835ab8bfacea24e841bee4ea --- /dev/null +++ b/demo_data/lombardia/2019/814/20190817.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb391fe7161e756a498154438cf15a0a6947ad23ffd4b3808d1c5ec71e4379a +size 38086 diff --git a/demo_data/lombardia/2019/814/20190822.tif b/demo_data/lombardia/2019/814/20190822.tif new file mode 100755 index 0000000000000000000000000000000000000000..7b5a5a78222a6d53df7dfff0168aa071f8c9bf76 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190822.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1861776371668b7f724a9d3c3655b1ad552d2a0eedd464113a14c20c2e7642 +size 27572 diff --git a/demo_data/lombardia/2019/814/20190827.tif b/demo_data/lombardia/2019/814/20190827.tif new file mode 100755 index 0000000000000000000000000000000000000000..7a328f6b7f61a2026c1a38fb45325cf1359690d1 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190827.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f8d328d9f62f92e7eb631624186ff7e98cf39c09fb637ccd38614b5bf3d6b28 +size 38167 diff --git a/demo_data/lombardia/2019/814/20190901.tif b/demo_data/lombardia/2019/814/20190901.tif new file mode 100755 index 0000000000000000000000000000000000000000..8476e0df7b21885f5a144caa42def962d12bcbca --- /dev/null +++ b/demo_data/lombardia/2019/814/20190901.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5099463a3c696d74f3c3ea29090959fe4deaf46f33301ac77b3846a72d6cc95 +size 38334 diff --git a/demo_data/lombardia/2019/814/20190906.tif b/demo_data/lombardia/2019/814/20190906.tif new file mode 100755 index 0000000000000000000000000000000000000000..8a3373cbe6f01aacfac4302e9804d86be6c4fc38 --- /dev/null +++ b/demo_data/lombardia/2019/814/20190906.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581963b1f697d8d4a2f4718fcf7e80ac9159b47fce0f19d66c9d2ab3ae277725 +size 33977 diff --git a/demo_data/lombardia/2019/814/20190911.tif b/demo_data/lombardia/2019/814/20190911.tif new file mode 100755 index 0000000000000000000000000000000000000000..adffdb71bcd7bff8a25e14c054390be4066790ba --- /dev/null +++ b/demo_data/lombardia/2019/814/20190911.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70478041116a4077659da619378f993bf407baa43565d6edd7cdba7d32abb69d +size 38898 diff --git a/demo_data/lombardia/2019/814/20190916.tif b/demo_data/lombardia/2019/814/20190916.tif new file mode 100755 index 0000000000000000000000000000000000000000..8a0acd53800f19f400815d8099ab6b680215133d --- /dev/null +++ b/demo_data/lombardia/2019/814/20190916.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d7acdb568b0c34c2da233fb17282f51b77ba37c904796b9b0ef6853c46b8ddd +size 38104 diff --git a/demo_data/lombardia/2019/814/20190921.tif b/demo_data/lombardia/2019/814/20190921.tif new file mode 100755 index 0000000000000000000000000000000000000000..d3729b333ba04aa9e5493d5ef1a59e5848b7f61c --- /dev/null +++ b/demo_data/lombardia/2019/814/20190921.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e1defb2bdb1877137be60104af2adae5108217b2a0350bd07a1f717b6b9172 +size 38851 diff --git a/demo_data/lombardia/2019/814/20190926.tif b/demo_data/lombardia/2019/814/20190926.tif new file mode 100755 index 0000000000000000000000000000000000000000..5c95ae2c4c1828eaebbb48436d9cca87c5df865b --- /dev/null +++ b/demo_data/lombardia/2019/814/20190926.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3472a3ee66eb1fbc47c43083e6721ea57ff5a08053c12158c70456a703aa45 +size 37704 diff --git a/demo_data/lombardia/2019/814/20191001.tif b/demo_data/lombardia/2019/814/20191001.tif new file mode 100755 index 0000000000000000000000000000000000000000..c97ca6265b53631b1938f33a164aa9ae42469dcd --- /dev/null +++ b/demo_data/lombardia/2019/814/20191001.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c3757542e69681fb297419378c246d8be3df90248ac2deae04ec1c4ad99a993 +size 38695 diff --git a/demo_data/lombardia/2019/814/20191006.tif b/demo_data/lombardia/2019/814/20191006.tif new file mode 100755 index 0000000000000000000000000000000000000000..dfec62642b3d9fb1f1cf19a1ab188ab4c2ed68b5 --- /dev/null +++ b/demo_data/lombardia/2019/814/20191006.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3459c1966c603f03530e4df8966a58abee9e72f8aadd470abc546387b08795a3 +size 34697 diff --git a/demo_data/lombardia/2019/814/20191011.tif b/demo_data/lombardia/2019/814/20191011.tif new file mode 100755 index 0000000000000000000000000000000000000000..0b0afbf3159b26c1a3f6354007d4e465ce509785 --- /dev/null +++ b/demo_data/lombardia/2019/814/20191011.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:889269ea5f059d7aae7e622723ed0f17928bdffa1e9ace512611d7264df2c82c +size 38060 diff --git a/demo_data/lombardia/2019/814/20191016.tif b/demo_data/lombardia/2019/814/20191016.tif new file mode 100755 index 0000000000000000000000000000000000000000..e526f7544e5a66e1d4b3ac519c71bed18a564f4d --- /dev/null +++ b/demo_data/lombardia/2019/814/20191016.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ba8c69e819ee7abdef701f491cc233126a06a2d309a17befe653d65811845ca +size 38643 diff --git a/demo_data/lombardia/2019/814/20191021.tif b/demo_data/lombardia/2019/814/20191021.tif new file mode 100755 index 0000000000000000000000000000000000000000..9c7b8b3a6dfd6cbb90eec453f8e28cd7f5d0eef4 --- /dev/null +++ b/demo_data/lombardia/2019/814/20191021.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56da3d65760ff7cfceab777829fe38e153a0943b713e9023091243bb1117f77c +size 37169 diff --git a/demo_data/lombardia/2019/814/20191026.tif b/demo_data/lombardia/2019/814/20191026.tif new file mode 100755 index 0000000000000000000000000000000000000000..ba8da2b0bcd2fd2a07a9e85c743dce665b8b8b98 --- /dev/null +++ b/demo_data/lombardia/2019/814/20191026.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dc5ebb005fa6d06575b75badf18b024ad7c1498440673aeaf497b190aea12e2 +size 38326 diff --git a/demo_data/lombardia/2019/814/20191031.tif b/demo_data/lombardia/2019/814/20191031.tif new file mode 100755 index 0000000000000000000000000000000000000000..7fec45a3bf6a769926d4d0dab1dabf44b09e1cd1 --- /dev/null +++ b/demo_data/lombardia/2019/814/20191031.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f8ef07b18fc2b60607ce89b035f329ef4c18e55b6c3013c7d69b8ccacfba525 +size 33393 diff --git a/demo_data/lombardia/2019/814/20191105.tif b/demo_data/lombardia/2019/814/20191105.tif new file mode 100755 index 0000000000000000000000000000000000000000..c030ed42b15708089a78a5187a4222798e96586e --- /dev/null +++ b/demo_data/lombardia/2019/814/20191105.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c872dc28bfb417e4eb7463e76a464f0b0ee0914cb18d6864925f4c4950905cd +size 38695 diff --git a/demo_data/lombardia/2019/814/20191110.tif b/demo_data/lombardia/2019/814/20191110.tif new file mode 100755 index 0000000000000000000000000000000000000000..a8d4346a56d95cdd728799e5a0436cb53fb81b3d --- /dev/null +++ b/demo_data/lombardia/2019/814/20191110.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17f28e1aa7361a1df4f754900cbfa9a891c0e27a279007850ae16a77601234dd +size 38401 diff --git a/demo_data/lombardia/2019/814/20191115.tif b/demo_data/lombardia/2019/814/20191115.tif new file mode 100755 index 0000000000000000000000000000000000000000..eb83a570be1077bc1f2c3728856575c2e5a80393 --- /dev/null +++ b/demo_data/lombardia/2019/814/20191115.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eb2a88341b08fd15cb484d50f280ba6be32e5ca117a455b5ef3ef08edee01fa +size 33221 diff --git a/demo_data/lombardia/2019/814/20191120.tif b/demo_data/lombardia/2019/814/20191120.tif new file mode 100755 index 0000000000000000000000000000000000000000..04108f19313958c136b0746f6a1ed49cbd3a1577 --- /dev/null +++ b/demo_data/lombardia/2019/814/20191120.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008a074354a68730825fc236394821fd5169d3117e42a4215c05725f9ea02de0 +size 38400 diff --git a/demo_data/lombardia/2019/814/20191130.tif b/demo_data/lombardia/2019/814/20191130.tif new file mode 100755 index 0000000000000000000000000000000000000000..f10cecbd0d4f1deea3073bb670092b01f556c7b5 --- /dev/null +++ b/demo_data/lombardia/2019/814/20191130.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aab6d688709a4b695d2f5259782465b96836839f5d55f73872c81c37a08b5a38 +size 37465 diff --git a/demo_data/lombardia/2019/814/20191205.tif b/demo_data/lombardia/2019/814/20191205.tif new file mode 100755 index 0000000000000000000000000000000000000000..d42653f7eabc61fe9090e41a4f7f5394fdc44e46 --- /dev/null +++ b/demo_data/lombardia/2019/814/20191205.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3671d4a614f4587a8310346ef35c375e884acdd2a5173c411cb1d8dc357b87b +size 38465 diff --git a/demo_data/lombardia/2019/814/20191210.tif b/demo_data/lombardia/2019/814/20191210.tif new file mode 100755 index 0000000000000000000000000000000000000000..8cb366d7b7a5eaa21f18123604ea6fd75525cff3 --- /dev/null +++ b/demo_data/lombardia/2019/814/20191210.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad650fab8b86a8c660abb6806b763ae01b577570369261ca6e57bb92a05e5a0 +size 38404 diff --git a/demo_data/lombardia/2019/814/20191215.tif b/demo_data/lombardia/2019/814/20191215.tif new file mode 100755 index 0000000000000000000000000000000000000000..879a5db75c3166843e19794f091a42a1da0fb75e --- /dev/null +++ b/demo_data/lombardia/2019/814/20191215.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15733b1bb6ea00bd24d7ab9855c8c163eebf9226d94075eca6f41317a5aef4e9 +size 39593 diff --git a/demo_data/lombardia/2019/814/20191220.tif b/demo_data/lombardia/2019/814/20191220.tif new file mode 100755 index 0000000000000000000000000000000000000000..3c1991418e36c94d3b73c4fa27d3643e9dbe8b32 --- /dev/null +++ b/demo_data/lombardia/2019/814/20191220.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9494d055d14b3960222ec92759bafdca35f61fd79f80f390f6e2c67d26f1c837 +size 32247 diff --git a/demo_data/lombardia/2019/814/20191225.tif b/demo_data/lombardia/2019/814/20191225.tif new file mode 100755 index 0000000000000000000000000000000000000000..9e0a0a597f43ace71d3bf2505c1386f243efd884 --- /dev/null +++ b/demo_data/lombardia/2019/814/20191225.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c857b60b3facb123cd609f1140b203a8f0213fa1e7e3c653505814235de97f1 +size 38639 diff --git a/demo_data/lombardia/2019/814/20191230.tif b/demo_data/lombardia/2019/814/20191230.tif new file mode 100755 index 0000000000000000000000000000000000000000..e4834154e0a745d8a082087b3d915438d730c1a1 --- /dev/null +++ b/demo_data/lombardia/2019/814/20191230.tif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0860b46903e366651c7742c009e45870fd99414f54f85e71fe1fcb800b19388a +size 37422 diff --git a/demo_data/lombardia/example/2/20190104.tif b/demo_data/lombardia/example/2/20190104.tif deleted file mode 100755 index 6ecb68aecadef28b0459e5045d94419896e14524..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190104.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0c94b20ffd7571807aa0020a3e84d13c342ae20be46b09c3fa30c238c6f6357c -size 37340 diff --git a/demo_data/lombardia/example/2/20190104_MSAVI.tif b/demo_data/lombardia/example/2/20190104_MSAVI.tif deleted file mode 100755 index 16ca9208c392bfeb11eae6fe6e68ba919e578103..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190104_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:45646b9a5acf52354198ba1fc485f501db6d6bfe7022c772d62fc85feebb9326 -size 5209 diff --git a/demo_data/lombardia/example/2/20190109.tif b/demo_data/lombardia/example/2/20190109.tif deleted file mode 100755 index de5914bfa649598764b065f34b772f4df0ff4c6a..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190109.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f55283e02f82998052bce2d64716996dc70659a7f39d9121858109a05b7fd06c -size 37828 diff --git a/demo_data/lombardia/example/2/20190109_MSAVI.tif b/demo_data/lombardia/example/2/20190109_MSAVI.tif deleted file mode 100755 index 2692b9870fbca4512732eafb009345c8d07f72bd..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190109_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cc465b965eb59d642e44346ed0a353a28750a3f5f48b59349430b56760c4a3c2 -size 5894 diff --git a/demo_data/lombardia/example/2/20190114.tif b/demo_data/lombardia/example/2/20190114.tif deleted file mode 100755 index eac0fb7ec02f95861b36952c11ed39e09485f4d9..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190114.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6de35a778963ecefe2c89716c1c8080c0fe0f28263af1bf4903426f0fe3aafc9 -size 38022 diff --git a/demo_data/lombardia/example/2/20190114_MSAVI.tif b/demo_data/lombardia/example/2/20190114_MSAVI.tif deleted file mode 100755 index 861e53b6c203c34abf6f9afa9b7d1d14524771d3..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190114_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7c593c57f88ea02e4f960b413e6c1e98e22872c9c9fa775f9fe0431d8fb8c4ce -size 5989 diff --git a/demo_data/lombardia/example/2/20190119.tif b/demo_data/lombardia/example/2/20190119.tif deleted file mode 100755 index 1c4f37f9ca2cd50f2e4b25b343b295a856f62115..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190119.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:71ecf7cc3bf67383d1bfa86e4ba24220453cc56c791b288e451c511b0f7ba18d -size 35530 diff --git a/demo_data/lombardia/example/2/20190119_MSAVI.tif b/demo_data/lombardia/example/2/20190119_MSAVI.tif deleted file mode 100755 index bdc3f16bc8bc0a2a04b144d95f9a75230ec22361..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190119_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eaefb84965c9e7359e19777f3ebc598344896c87e3cf25a8548668ca97060ad9 -size 4688 diff --git a/demo_data/lombardia/example/2/20190124.tif b/demo_data/lombardia/example/2/20190124.tif deleted file mode 100755 index ecb543e46a7bc89ed5b8c21a746d56170f6b7161..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190124.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a62f00ed8379367b328c1a255c8558f6682c643fc55bbba12a3818c1408437b -size 36511 diff --git a/demo_data/lombardia/example/2/20190124_MSAVI.tif b/demo_data/lombardia/example/2/20190124_MSAVI.tif deleted file mode 100755 index 69659d2ae3595558be9de530c12a957b9eb6ff13..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190124_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:27dd32479af98502b67c0d773fde36f197c60e5f3c27398397265d14766db4a3 -size 5850 diff --git a/demo_data/lombardia/example/2/20190129.tif b/demo_data/lombardia/example/2/20190129.tif deleted file mode 100755 index 266b1696177cecf79920e29bf8a3e59049b99a55..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190129.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3e2fde2de1b559f7a58ba02f8d4ccdf87fd883669cc4bc9d8b4f5f030ed6317f -size 37234 diff --git a/demo_data/lombardia/example/2/20190129_MSAVI.tif b/demo_data/lombardia/example/2/20190129_MSAVI.tif deleted file mode 100755 index a412253c1063406d80357b5580e7f0c99a197161..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190129_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5b2b849664835a5c5d6d289c942c5d2b7549f7cb5e1b5f13ff2f8ab3f7135446 -size 5848 diff --git a/demo_data/lombardia/example/2/20190203.tif b/demo_data/lombardia/example/2/20190203.tif deleted file mode 100755 index cdc6bfa8eec39bd093a087e27c47bdcc7b52d88d..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190203.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:742c43825835b164608f855d99ef4f3b524625d0b83d174e89f2608568e00a9b -size 35612 diff --git a/demo_data/lombardia/example/2/20190203_MSAVI.tif b/demo_data/lombardia/example/2/20190203_MSAVI.tif deleted file mode 100755 index 89734ffead110f1f5928961013a2a6d2f92c6122..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190203_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:33ed3cf5733bc34bb773811fe75bff00abc4a0b00fcbad6e3fb8d9b97a9ac787 -size 4192 diff --git a/demo_data/lombardia/example/2/20190208.tif b/demo_data/lombardia/example/2/20190208.tif deleted file mode 100755 index 69db82151a878267d3677be1df911c30d286f5f5..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190208.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c04ecb495c9a8abf5de4d35f8debd0389c2eee1f0bf6ffc6d5ed8ce321144e80 -size 37647 diff --git a/demo_data/lombardia/example/2/20190208_MSAVI.tif b/demo_data/lombardia/example/2/20190208_MSAVI.tif deleted file mode 100755 index 0ae44c7e1628ee86b436757a6fca99dfe178ffea..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190208_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0cf7ed58170d536604893624eb865dc8dec8e51b2258474b9375539746d80a58 -size 5826 diff --git a/demo_data/lombardia/example/2/20190213.tif b/demo_data/lombardia/example/2/20190213.tif deleted file mode 100755 index 345a1b30f812795786353306a2c76dccbae3d229..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190213.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5add48ba9867f3ee4adc140c22fa458ddac413bcace9ca8ccab0d669d02479df -size 37242 diff --git a/demo_data/lombardia/example/2/20190213_MSAVI.tif b/demo_data/lombardia/example/2/20190213_MSAVI.tif deleted file mode 100755 index d9f733cdbf469cfe981f7414f8c95e44d8505695..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190213_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e4e4320a2b9fa9720678d1b3b05ce4284ec3aa14c587a012bd1a05595a39ceb2 -size 5602 diff --git a/demo_data/lombardia/example/2/20190218.tif b/demo_data/lombardia/example/2/20190218.tif deleted file mode 100755 index 7547aecd3ef07c44e5556006018e3a7214b99c30..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190218.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a2dd948d2a4ba5cfe01a836496d2462212978767eb9142ceb9df25bd41a4e6bd -size 38514 diff --git a/demo_data/lombardia/example/2/20190218_MSAVI.tif b/demo_data/lombardia/example/2/20190218_MSAVI.tif deleted file mode 100755 index c6c0c8f3262901f409700dd1fa69195100210014..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190218_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2ecd82c7e4c0a710abcb11719bf970765b93198f729c1e1345b31afda57038ae -size 5741 diff --git a/demo_data/lombardia/example/2/20190223.tif b/demo_data/lombardia/example/2/20190223.tif deleted file mode 100755 index 76d38fe59c4e98e6fededbc9659f76c53878056a..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190223.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5c50f6347d57401065fe96baf214fda01ac56e0980525f53bfdf161df6299219 -size 39161 diff --git a/demo_data/lombardia/example/2/20190223_MSAVI.tif b/demo_data/lombardia/example/2/20190223_MSAVI.tif deleted file mode 100755 index fd51cdddc07e8aec92429fa49cf62ff61787c5c0..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190223_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:803128e66dec1a10548e1b0a3b2b97f3d725698c21b6aa3fdd3073de4be396ab -size 5878 diff --git a/demo_data/lombardia/example/2/20190228.tif b/demo_data/lombardia/example/2/20190228.tif deleted file mode 100755 index 9b09712f1ddacd45bd322517247145e1c2890612..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190228.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2a29a5eecea7dba19e427abc313c5f238707e33e57c33c86a1c70e9514a92286 -size 39135 diff --git a/demo_data/lombardia/example/2/20190228_MSAVI.tif b/demo_data/lombardia/example/2/20190228_MSAVI.tif deleted file mode 100755 index db096da6ce82ccff938c3f4d16b248b4f5d9ffdc..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190228_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:109375eca6a06df8e30c1e64b6ed1f91b4405a0c0d55522699aa379b8946ad97 -size 5866 diff --git a/demo_data/lombardia/example/2/20190305.tif b/demo_data/lombardia/example/2/20190305.tif deleted file mode 100755 index a2cbc2397b7c3c7de8c9fb965ca4c1c3a8580fb3..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190305.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9c92e1de8ec44f07c269f2c0646c186bd1c7149fd855c2260e8a24fbcd1cd47a -size 36980 diff --git a/demo_data/lombardia/example/2/20190305_MSAVI.tif b/demo_data/lombardia/example/2/20190305_MSAVI.tif deleted file mode 100755 index 1ad162d52ac448576986e98803aed8c304138106..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190305_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d47e81878088407adf489c87b583a0a4497fa6266887f95adeea0c2d4430b145 -size 5537 diff --git a/demo_data/lombardia/example/2/20190310.tif b/demo_data/lombardia/example/2/20190310.tif deleted file mode 100755 index e219d166543441a6106a8b016ad8e8a6225303e3..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190310.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e3291ceaad6bb04e4ab982545663cb308456a2246aaa54cb9d5f3b23bee0b983 -size 35965 diff --git a/demo_data/lombardia/example/2/20190310_MSAVI.tif b/demo_data/lombardia/example/2/20190310_MSAVI.tif deleted file mode 100755 index b18bff827c0ad8a78898bc00efd2b6fed09793b0..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190310_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9a54fdbe8e33d4e1bb853a6be9620b9c83c913438c197672eb9fdb46757256bc -size 5117 diff --git a/demo_data/lombardia/example/2/20190315.tif b/demo_data/lombardia/example/2/20190315.tif deleted file mode 100755 index 80d0e403d334bf8034cc9a49647ee2578feadb07..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190315.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e8242615ccd6cb963849799e54557248a90c37d6da58a6846a02d9e351925287 -size 39389 diff --git a/demo_data/lombardia/example/2/20190315_MSAVI.tif b/demo_data/lombardia/example/2/20190315_MSAVI.tif deleted file mode 100755 index 258beebb95c656f53c84cf97e54708b99d717a93..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190315_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:934d946cf262959fe9dc68f5226f9e84cdb21d3b552c4b5ba04caabc50436484 -size 5832 diff --git a/demo_data/lombardia/example/2/20190320.tif b/demo_data/lombardia/example/2/20190320.tif deleted file mode 100755 index 2771bf8db92f5c9dbd1b1c99b979b8caa267c565..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190320.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:98edceed82c6e8b65bf2ec27f9e3ea5c2422e7c7da264e05eb1aa52aa1081463 -size 39314 diff --git a/demo_data/lombardia/example/2/20190320_MSAVI.tif b/demo_data/lombardia/example/2/20190320_MSAVI.tif deleted file mode 100755 index 993392fc19af9edcb0d90471923530d5bfd445dd..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190320_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1abbe746efe824eb9454ba72aa039b3545a131ae1fb24623b4e07386e52b76b5 -size 5870 diff --git a/demo_data/lombardia/example/2/20190325.tif b/demo_data/lombardia/example/2/20190325.tif deleted file mode 100755 index 685aed1c3cbb6e4f9c3a6a9f0c429c5bbcfbe260..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190325.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fcb18f1a204a4dcf30b10836825f061717d88e8329e6984c01bd10c94e35b0fd -size 39225 diff --git a/demo_data/lombardia/example/2/20190325_MSAVI.tif b/demo_data/lombardia/example/2/20190325_MSAVI.tif deleted file mode 100755 index 7d1ccbe89b8293c45ed15d8ec63f728076532d66..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190325_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f950b5eac2a5be6d873385b35b2135c58befa28e883e07a6213de1651d5e4407 -size 5862 diff --git a/demo_data/lombardia/example/2/20190330.tif b/demo_data/lombardia/example/2/20190330.tif deleted file mode 100755 index 72389d7358ca99a871fc7e361a82dbf529102a59..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190330.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:20327d5328947da1d15824887e6fae55857d775a0a97bec8c4aafbe82be92889 -size 39181 diff --git a/demo_data/lombardia/example/2/20190330_MSAVI.tif b/demo_data/lombardia/example/2/20190330_MSAVI.tif deleted file mode 100755 index 2c598c4f91d58f3de6848f9dd31278d1c395bebc..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190330_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:73612b4f13f30b317611e00016f15bb199b12448e9412c4d5032fe5d06ca0020 -size 5916 diff --git a/demo_data/lombardia/example/2/20190404.tif b/demo_data/lombardia/example/2/20190404.tif deleted file mode 100755 index d83ab6630bf7f3e2e37a468a0f8ff9dfc412ca16..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190404.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dc5ccfd4072e53eb34630de5ed3eceda5c68622a7b41359c02d678973919376f -size 28892 diff --git a/demo_data/lombardia/example/2/20190404_MSAVI.tif b/demo_data/lombardia/example/2/20190404_MSAVI.tif deleted file mode 100755 index 3f5329af913be8a2301a1907851283189fb496eb..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190404_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6fcbb652d7833609b1740e85dfdc66af58fdb304c85f97b2167f2d97d73e63db -size 3608 diff --git a/demo_data/lombardia/example/2/20190409.tif b/demo_data/lombardia/example/2/20190409.tif deleted file mode 100755 index 1d43a90037b2660160b572d047c335769506c765..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190409.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a35822a5aafbc45ca0eb005da17ce7d76250ba6633f69dbd4e6b39159d5acf84 -size 38104 diff --git a/demo_data/lombardia/example/2/20190409_MSAVI.tif b/demo_data/lombardia/example/2/20190409_MSAVI.tif deleted file mode 100755 index b98c6857ba288b701180b780739f36bb8999e00a..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190409_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ac7c01de5be8c8691a42c2dcbee212c6f97b29d2c5a8c7d5679e83c5c790b511 -size 4388 diff --git a/demo_data/lombardia/example/2/20190414.tif b/demo_data/lombardia/example/2/20190414.tif deleted file mode 100755 index 2f69942a9f289597e894fc3a9748423c66fb2573..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190414.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8c09dd573ad82864c7c9bf9fd06e85ee19bce14f829d18563485bc09222b573e -size 26869 diff --git a/demo_data/lombardia/example/2/20190414_MSAVI.tif b/demo_data/lombardia/example/2/20190414_MSAVI.tif deleted file mode 100755 index 1e56819d751672d96a640197b4e2d74d6293e790..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190414_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:79cb4330749e14bfc21fce428e968565e769dd5001b4e4c6c8cc8b8dc078aaf7 -size 3954 diff --git a/demo_data/lombardia/example/2/20190419.tif b/demo_data/lombardia/example/2/20190419.tif deleted file mode 100755 index d62c4e412e212e23c3bb1b3ef59bece861716a0c..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190419.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:11d530ac13cfd47319a5d41bd7fd14fa43031319c99b4b6e6224c4e54de55c49 -size 38952 diff --git a/demo_data/lombardia/example/2/20190419_MSAVI.tif b/demo_data/lombardia/example/2/20190419_MSAVI.tif deleted file mode 100755 index 14ebccf20a74e5397e2112ae88b44336a4761a1b..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190419_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:75b7dadf1a399421e8a17991b717d7a3af301714e567efb213ba6ddf5f7925c3 -size 4455 diff --git a/demo_data/lombardia/example/2/20190424.tif b/demo_data/lombardia/example/2/20190424.tif deleted file mode 100755 index 2aee5a833ca0dc6a03cf6c2bcbeb5099b68c1891..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190424.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:aa610212419ae2243bc0a98a6b0931db2e10cef4f00fe3e4be7f60a037030ab3 -size 33269 diff --git a/demo_data/lombardia/example/2/20190424_MSAVI.tif b/demo_data/lombardia/example/2/20190424_MSAVI.tif deleted file mode 100755 index 29803d4ce980c73e4800ac6474cee255ed58e3ee..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190424_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5dbf865bf9f103a62e932b8b0a563d9bacb8e95ba0481e183709c920aab7a1bb -size 5031 diff --git a/demo_data/lombardia/example/2/20190429.tif b/demo_data/lombardia/example/2/20190429.tif deleted file mode 100755 index 061b2bfa082918dc08e8d2bf3c19b507a56e11fe..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190429.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b004e0e0255d130517a327955985968fe564244f474815fd8eb042efb812a117 -size 25831 diff --git a/demo_data/lombardia/example/2/20190429_MSAVI.tif b/demo_data/lombardia/example/2/20190429_MSAVI.tif deleted file mode 100755 index a0604243948468944dad89840d8eb9707ec2e993..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190429_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7142a284e67a1e92aa4edfd2bed74d4d90c2aec0bac17cc1f1f07f8a245555df -size 2598 diff --git a/demo_data/lombardia/example/2/20190504.tif b/demo_data/lombardia/example/2/20190504.tif deleted file mode 100755 index 4db5c91823e9395066d82ebc69aeef7867d756e1..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190504.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e1a4ef1b06b4abe930975b730be64ab34583a371ac4ba2e60d995b09334714a8 -size 34604 diff --git a/demo_data/lombardia/example/2/20190504_MSAVI.tif b/demo_data/lombardia/example/2/20190504_MSAVI.tif deleted file mode 100755 index 193f0457dc6094f081aa4fab1df0056e239c76da..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190504_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9ce5adcf3187ef4d80b419af677490cd63e6ca7377f6d841815d099864c1c843 -size 5051 diff --git a/demo_data/lombardia/example/2/20190509.tif b/demo_data/lombardia/example/2/20190509.tif deleted file mode 100755 index f44552f6050d3abdb16b5d81a9d69e4ac8269cc3..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190509.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5de84eb4bee631f2ccb1eeff237bb9729626292ea118ec65c3a8aa1313e8f81f -size 38002 diff --git a/demo_data/lombardia/example/2/20190509_MSAVI.tif b/demo_data/lombardia/example/2/20190509_MSAVI.tif deleted file mode 100755 index 31f61a7fac104d6b100d0539b5f2cb93dc6495ef..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190509_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:07e805df9aef5b68153a6ee342a1587187f299d516edc198b6e331978d65f3da -size 4470 diff --git a/demo_data/lombardia/example/2/20190514.tif b/demo_data/lombardia/example/2/20190514.tif deleted file mode 100755 index eef5cf666e1ca7cca4c6f899b6110bf7e20fe3ed..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190514.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:de83b18588cfcbf4cfcc668168484db0693dba4b4be0d9c8ee2fa2d99ea7a3dc -size 38608 diff --git a/demo_data/lombardia/example/2/20190514_MSAVI.tif b/demo_data/lombardia/example/2/20190514_MSAVI.tif deleted file mode 100755 index 4f4178722186a71910894c252c7177587598950e..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190514_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:73b0ea14c7d2e4c32213a62fb40130525d9b431c8389e14465382583829fc128 -size 6190 diff --git a/demo_data/lombardia/example/2/20190519.tif b/demo_data/lombardia/example/2/20190519.tif deleted file mode 100755 index 62aaf0f9f074f14c2158d8865f34be97a2acf978..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190519.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c03c7ea3e9f0084112c05fb3fdca8eb287a755293aa1da44d401c9d95b413443 -size 26142 diff --git a/demo_data/lombardia/example/2/20190519_MSAVI.tif b/demo_data/lombardia/example/2/20190519_MSAVI.tif deleted file mode 100755 index 79ffd145d0cefd2ed9e3b743e034d2b9e1fd715b..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190519_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5b4f45286ca5e9eb1a45d3f48594f55c84b8353e55b2893f3816d3f2914c5a35 -size 2680 diff --git a/demo_data/lombardia/example/2/20190524.tif b/demo_data/lombardia/example/2/20190524.tif deleted file mode 100755 index 06a0d6d5dcc2970ab05ccf6ccdacc16b8e887f4d..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190524.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4925688f455b10d26c7f8d8636fa8909ac18b97009f34521100b26362fb88ad2 -size 38678 diff --git a/demo_data/lombardia/example/2/20190524_MSAVI.tif b/demo_data/lombardia/example/2/20190524_MSAVI.tif deleted file mode 100755 index d222de2a0c00ff0397abc7da4ab4119f9ccfa7d1..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190524_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c0c48feb0ea1858e8d1e1f7662fe646575c53b8accc68065a870ca9c5774a313 -size 6065 diff --git a/demo_data/lombardia/example/2/20190529.tif b/demo_data/lombardia/example/2/20190529.tif deleted file mode 100755 index 306e129ea8865d318fb759bea05b12e4145fb96e..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190529.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ee5be2e93ba9b641153fa6eea0e71686c8155ea702805f963f9befb9cf8f3e33 -size 34162 diff --git a/demo_data/lombardia/example/2/20190529_MSAVI.tif b/demo_data/lombardia/example/2/20190529_MSAVI.tif deleted file mode 100755 index 10afefc29e5d14329f4d6a6400342869eaa13992..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190529_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4dce30f737622b9988cb12bef14e6f3dd2e2c11a3abaf5961ec45efdf3dc6e5f -size 3791 diff --git a/demo_data/lombardia/example/2/20190603.tif b/demo_data/lombardia/example/2/20190603.tif deleted file mode 100755 index fe6e34a2512aeb042a6e87997201c8b1c3e9fa1b..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190603.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f22e0df1b732aaeca96a1c311280ec41e14c18fc76820c8071ead9eec51604c8 -size 38967 diff --git a/demo_data/lombardia/example/2/20190603_MSAVI.tif b/demo_data/lombardia/example/2/20190603_MSAVI.tif deleted file mode 100755 index a7058085a5d2e95c78e7685230a3799cda43f716..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190603_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7ed2fecf568b82ea8381f125496c5e89f7b93eebf7b583370eced14856b1a39c -size 6051 diff --git a/demo_data/lombardia/example/2/20190613.tif b/demo_data/lombardia/example/2/20190613.tif deleted file mode 100755 index 6aeee1f8b18d17eba6e3fe1c886110e9396d614b..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190613.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8f06501e23ad4f2ea83759d16c85a9ebf51f084aa75b56e416abc3bbffbf2a4e -size 39128 diff --git a/demo_data/lombardia/example/2/20190613_MSAVI.tif b/demo_data/lombardia/example/2/20190613_MSAVI.tif deleted file mode 100755 index 2a4f49caa5ce3b129e68848d57b5a8f6020b8a58..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190613_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:912b9fcd772914dc4d8d45e5b4b880177182817e8e50bf5b2da32c05b8934664 -size 6056 diff --git a/demo_data/lombardia/example/2/20190618.tif b/demo_data/lombardia/example/2/20190618.tif deleted file mode 100755 index 1f8bbc4c902cfc036d2bb7ae717cbbf99243f7ff..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190618.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fe159a9da1d509b9a23108ab9408b79e3eb2ce6ae3b1e4c97ce86d7e5a5fae36 -size 38964 diff --git a/demo_data/lombardia/example/2/20190618_MSAVI.tif b/demo_data/lombardia/example/2/20190618_MSAVI.tif deleted file mode 100755 index ff592c0363f2e1224e18a62ae3159b622af314b6..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190618_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a585ce7e7fcddda065bb979928a53bf1c872253a54dd841f54df3470d9fec485 -size 4431 diff --git a/demo_data/lombardia/example/2/20190623.tif b/demo_data/lombardia/example/2/20190623.tif deleted file mode 100755 index 59e7fceec69b870107777a104d128a2ecf9fc628..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190623.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:03fb0f2b2a5364a14429b8d84fcdec5f77218b9cc5bcac13105165451ea6b274 -size 38825 diff --git a/demo_data/lombardia/example/2/20190623_MSAVI.tif b/demo_data/lombardia/example/2/20190623_MSAVI.tif deleted file mode 100755 index d4ef94ea8c6218817ce281e7104889aca082ebe8..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190623_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6ba1b559998e34c38fde209a46f2605f8c48a6e7d025868aba182ae7782bcc42 -size 6120 diff --git a/demo_data/lombardia/example/2/20190628.tif b/demo_data/lombardia/example/2/20190628.tif deleted file mode 100755 index d31386daef29ba5c8cf79f53e786fe20e41760dd..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190628.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:279eaa4dc73ac53001b49ca070722e1136b20420e3c00a5574f453f2115bce9e -size 37084 diff --git a/demo_data/lombardia/example/2/20190628_MSAVI.tif b/demo_data/lombardia/example/2/20190628_MSAVI.tif deleted file mode 100755 index 8d72b10c4f3d52e858648236299e62f9d3049607..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190628_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:75ec80cab076bc0d0f9a3d827bb75228cdd24b61dbcd9be0f9d4ac408bec1b27 -size 4321 diff --git a/demo_data/lombardia/example/2/20190703.tif b/demo_data/lombardia/example/2/20190703.tif deleted file mode 100755 index 2c0e286ed75f37ca083673026dfddbac3429468c..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190703.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8840d42969ee92a426436b4a1a1ab65846d381c57ae7d2f9b9ef76ffb2528c72 -size 38342 diff --git a/demo_data/lombardia/example/2/20190703_MSAVI.tif b/demo_data/lombardia/example/2/20190703_MSAVI.tif deleted file mode 100755 index 0b2d939d430c1675ecb5599b794dd68b7e79af93..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190703_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e4cb4943e43d87fe638ba761ebb7f5dc12145232a9914ffbe5cd96192e71cce5 -size 6020 diff --git a/demo_data/lombardia/example/2/20190708.tif b/demo_data/lombardia/example/2/20190708.tif deleted file mode 100755 index f2eb7d069f3c97d00c5de9a347299b1b2f73e89f..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190708.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7ab970aeac8dd82e69da692d7d8b5aafbbe46c81c4652550bc5b56754c44a5ef -size 36274 diff --git a/demo_data/lombardia/example/2/20190708_MSAVI.tif b/demo_data/lombardia/example/2/20190708_MSAVI.tif deleted file mode 100755 index 25b8664f1e9939b824a9854407f085cb4fa5a92f..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190708_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bcf446e3a6e15751f45da044452b51f4d1e9f860b694d410d2e03cfc10010c67 -size 4185 diff --git a/demo_data/lombardia/example/2/20190713.tif b/demo_data/lombardia/example/2/20190713.tif deleted file mode 100755 index d1bea458761b36d220431f0e9a9f9343df8c5b19..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190713.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:99c3319e062805086bc8df1537efa116127d50196114f7056daaf795f7e8189c -size 38559 diff --git a/demo_data/lombardia/example/2/20190713_MSAVI.tif b/demo_data/lombardia/example/2/20190713_MSAVI.tif deleted file mode 100755 index 3f0e980fdade39c07a969d77ce25ba73505f730a..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190713_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1bff7dbd98414c362c8cd8e9c419cee5940007e8ca05367526cb9549920a23ac -size 6024 diff --git a/demo_data/lombardia/example/2/20190718.tif b/demo_data/lombardia/example/2/20190718.tif deleted file mode 100755 index c2e6203de596bf6fe4efc08e60662cf70a54d343..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190718.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c9cade3e117bf9502ffa0c8efd4936d39d73830f0c5858d0e7f1d24d712fd49 -size 28201 diff --git a/demo_data/lombardia/example/2/20190718_MSAVI.tif b/demo_data/lombardia/example/2/20190718_MSAVI.tif deleted file mode 100755 index a73ef03a3f715e12a5852b977bea95e9c6846b2d..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190718_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:15053af036166d75dce48f15712a4644c844626eedec25f6b262244eae8ff64f -size 3134 diff --git a/demo_data/lombardia/example/2/20190723.tif b/demo_data/lombardia/example/2/20190723.tif deleted file mode 100755 index 991a5488ecad277eb684aab3f2fad41cbbd959cf..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190723.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3d0e5476914e0227538e3a4b27ffd35a24fb5bc5329142c3823189410a0bcac2 -size 38354 diff --git a/demo_data/lombardia/example/2/20190723_MSAVI.tif b/demo_data/lombardia/example/2/20190723_MSAVI.tif deleted file mode 100755 index 22905efbacaaf4d9330b882725f4263bb83e3615..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190723_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c72d4cd43bf6e4e0774da581faab65aade6d634c2ec0df615e3746bf5d6869ba -size 5966 diff --git a/demo_data/lombardia/example/2/20190728.tif b/demo_data/lombardia/example/2/20190728.tif deleted file mode 100755 index 76c48b59039b73ea29154ec28b1785b2e5c71976..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190728.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6c75e35d15a0a4b67c10f72c4cbf6ad4a829e29baefbcb6973e59a9c2e00d1fb -size 27539 diff --git a/demo_data/lombardia/example/2/20190728_MSAVI.tif b/demo_data/lombardia/example/2/20190728_MSAVI.tif deleted file mode 100755 index 2771770f5c4f69b0580802c49636fe69ff8c2462..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190728_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:19b6d2900d35dad40006008979a9b72d7bb2130eef8a300eb65acbb163e176f2 -size 3200 diff --git a/demo_data/lombardia/example/2/20190802.tif b/demo_data/lombardia/example/2/20190802.tif deleted file mode 100755 index 707fdbe30ab6d2ee9c803af880ab3f683c2ae1b3..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190802.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:823b04afd66676a8391ca181dadd044c25e0c02bae8083b244156486118f2e11 -size 37656 diff --git a/demo_data/lombardia/example/2/20190802_MSAVI.tif b/demo_data/lombardia/example/2/20190802_MSAVI.tif deleted file mode 100755 index f74a9e5d0b98c4e1e8ef07307a6f14385b0c5729..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190802_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:17ac99546b0426ab7254a30a9bfd4e6d506d5ddfaaff0700653f862e1e72f605 -size 5927 diff --git a/demo_data/lombardia/example/2/20190807.tif b/demo_data/lombardia/example/2/20190807.tif deleted file mode 100755 index 408c3116f79839e3be5bea428d3c17477be90a42..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190807.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6c977abb88257656bbc73b2559217b1530f8f65f27eff95993b772121d1ae4d6 -size 38143 diff --git a/demo_data/lombardia/example/2/20190807_MSAVI.tif b/demo_data/lombardia/example/2/20190807_MSAVI.tif deleted file mode 100755 index e432ac2c692e58e88925b1bf055255c3d9e17074..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190807_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5b0be1031f6aa67462fe9ef845bb8f00ece0e667d6d5cb69e9efa2d958420beb -size 4179 diff --git a/demo_data/lombardia/example/2/20190812.tif b/demo_data/lombardia/example/2/20190812.tif deleted file mode 100755 index 7a70383a243dcf3da7d0dddce1779d52bdf90dc3..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190812.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:26ecbc437b7b6f59315283368a91edbe34f5518b993b467139c7b7ac58275f1e -size 35420 diff --git a/demo_data/lombardia/example/2/20190812_MSAVI.tif b/demo_data/lombardia/example/2/20190812_MSAVI.tif deleted file mode 100755 index 762d022bee1afe7a258c84dffa949ff8858bcb97..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190812_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:441d5ca95124ed7caf90a7ad6f8c9d13f17739e0140f601f392a0fa02d22fb9c -size 5392 diff --git a/demo_data/lombardia/example/2/20190817.tif b/demo_data/lombardia/example/2/20190817.tif deleted file mode 100755 index dd34a750dd4c21f38323a71b17cab948f42e5b38..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190817.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2dfc226bae1f9dd4c3e4db7b00016f227012e4ce9b534d706267513180fa4dd5 -size 36233 diff --git a/demo_data/lombardia/example/2/20190817_MSAVI.tif b/demo_data/lombardia/example/2/20190817_MSAVI.tif deleted file mode 100755 index 1390e255ad0ac73b4f470b6739b221f8258175ca..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190817_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3d30451efacd14ea323264795dac24f703fcc4f81592855703a4315ba6db4674 -size 3961 diff --git a/demo_data/lombardia/example/2/20190822.tif b/demo_data/lombardia/example/2/20190822.tif deleted file mode 100755 index fc49b7fb5467ffe9522a39eed46edd56e2167338..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190822.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:406fc1aa314509a491101637d0d224a9ca453cd01f5c7b50025b752d9770f65f -size 32069 diff --git a/demo_data/lombardia/example/2/20190822_MSAVI.tif b/demo_data/lombardia/example/2/20190822_MSAVI.tif deleted file mode 100755 index 9ec3afb1b73be405f49432d2bddb3d9832eb5ca6..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190822_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fa211f6a76c55a89d2d8b7898a90b0c0b9e48969e15b7b90a85f71230b0507fe -size 4874 diff --git a/demo_data/lombardia/example/2/20190827.tif b/demo_data/lombardia/example/2/20190827.tif deleted file mode 100755 index 04040c7df382ba38749bce4eb6d2b14308afae77..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190827.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:808c199e99c1ffe710ee8e5fac383a76e860f560a31b221e44d11f30a90f74e2 -size 37085 diff --git a/demo_data/lombardia/example/2/20190827_MSAVI.tif b/demo_data/lombardia/example/2/20190827_MSAVI.tif deleted file mode 100755 index 602eb4d053f3fb4b110119b4adc5c3840b251e63..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190827_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f38c1e277215beac6843943bd8b20a09dbf73bdffeccc3b7f373eab2b31d7442 -size 4303 diff --git a/demo_data/lombardia/example/2/20190901.tif b/demo_data/lombardia/example/2/20190901.tif deleted file mode 100755 index 9a27ec5631aa1206e2c3fb0e11e4d7e69079b592..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190901.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:13c663ee79c21a260795d0792cfe1cd1dc8484ba8afb8dab9080afe26e16ec44 -size 37728 diff --git a/demo_data/lombardia/example/2/20190901_MSAVI.tif b/demo_data/lombardia/example/2/20190901_MSAVI.tif deleted file mode 100755 index f3c81badddeb4b1bdff86a935a15015dac977fd3..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190901_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4f48b66f3877c0e18c1a6d7182ef96ff7f1542650bd389f89bdebc4a0efa26c8 -size 5964 diff --git a/demo_data/lombardia/example/2/20190906.tif b/demo_data/lombardia/example/2/20190906.tif deleted file mode 100755 index 580fd7cad6898277d26ce516bb95766e1ee64ab4..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190906.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:148874cdb49f6fb002171826fdea07abe14f92863fe922b83821ea921413698a -size 32498 diff --git a/demo_data/lombardia/example/2/20190906_MSAVI.tif b/demo_data/lombardia/example/2/20190906_MSAVI.tif deleted file mode 100755 index 67a7c4f3b2c257d8bc0d2d2ddfdee5a873d0063f..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190906_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9a394aece9ea17b5e7098f46b665e5e06f4c1b156f189ba8b9318e269f0f2757 -size 3637 diff --git a/demo_data/lombardia/example/2/20190911.tif b/demo_data/lombardia/example/2/20190911.tif deleted file mode 100755 index b3b775e5af6de535dc078c7a5de1f7fd1e01031f..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190911.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ebb66a7e5d826d2f948f1481eb556ed17819f8458cf29663a97603b73aa90e9a -size 37779 diff --git a/demo_data/lombardia/example/2/20190911_MSAVI.tif b/demo_data/lombardia/example/2/20190911_MSAVI.tif deleted file mode 100755 index 3efa216d5e10833fa9734268b09e1904619e1a4b..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190911_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4dba364c4003e3587b76c286c3e24ef6161e397395371d43075656cdaa6b772d -size 5935 diff --git a/demo_data/lombardia/example/2/20190916.tif b/demo_data/lombardia/example/2/20190916.tif deleted file mode 100755 index 2cbd36fb5a94039483624c027321e182aeca7573..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190916.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:284b428c4ad936003fc9a4fc6dde859284abd32dd29dfadff7ad10f016260aa6 -size 37196 diff --git a/demo_data/lombardia/example/2/20190916_MSAVI.tif b/demo_data/lombardia/example/2/20190916_MSAVI.tif deleted file mode 100755 index 5cde9c5e73f144d7ab18ac42e8f2ab06f1011747..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190916_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d4b784654413901f83044dff6c5e4b26fa7cc73c7172be721ce618bdf665dab -size 4267 diff --git a/demo_data/lombardia/example/2/20190921.tif b/demo_data/lombardia/example/2/20190921.tif deleted file mode 100755 index 4806613ed5c67139ebd5c6f0711cc73c70d699fa..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190921.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dc7769038593e6a4bcb8137f364b15acca4a33a24f2dd492ad2eead98fdd2143 -size 38192 diff --git a/demo_data/lombardia/example/2/20190921_MSAVI.tif b/demo_data/lombardia/example/2/20190921_MSAVI.tif deleted file mode 100755 index 5fe596dfbc5d7c9b9ae2a00412e64281cbea8d06..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190921_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eccb3a2a23bf1d93e197d204f3a78d6c0d0e8555dcd660a2cb39628b69518505 -size 6117 diff --git a/demo_data/lombardia/example/2/20190926.tif b/demo_data/lombardia/example/2/20190926.tif deleted file mode 100755 index 3b99d3ebfacc2ba5721beed6208451eea3e72186..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190926.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0ee3266fdb44e9d25ba16d5f1d6950834525451551953dc2333e2034559f5553 -size 37568 diff --git a/demo_data/lombardia/example/2/20190926_MSAVI.tif b/demo_data/lombardia/example/2/20190926_MSAVI.tif deleted file mode 100755 index 7adef9875d74779637c429818c4b78a9cdefa3ae..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20190926_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1f77946eb58805f7235518610b3834f8fc86fee2da07fba6fcec2209a832919c -size 4154 diff --git a/demo_data/lombardia/example/2/20191001.tif b/demo_data/lombardia/example/2/20191001.tif deleted file mode 100755 index 8f6d9ff43353a2e383076ebf8dec2410296dbcb5..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191001.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dfb6e81eceb0be837e7b4323594933f5078e7cfe6319b04741bb5449fa59b2f3 -size 37753 diff --git a/demo_data/lombardia/example/2/20191001_MSAVI.tif b/demo_data/lombardia/example/2/20191001_MSAVI.tif deleted file mode 100755 index 79ba1128244f11d97232c7fdb5bb14b2dfa7ce4b..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191001_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cda28ddd5672f7e101fbab63532802fac42b237bdddc6f3dad23fb3cb7f1f9d5 -size 5910 diff --git a/demo_data/lombardia/example/2/20191006.tif b/demo_data/lombardia/example/2/20191006.tif deleted file mode 100755 index 14ecb6fb43b95f7c02d030d7e2eddcf53b3cfba6..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191006.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:977cd82024860baa2fe294e2f346ab051c3d1a02d7a8315adacd89f928a33e8d -size 34456 diff --git a/demo_data/lombardia/example/2/20191006_MSAVI.tif b/demo_data/lombardia/example/2/20191006_MSAVI.tif deleted file mode 100755 index 06122828dc55f50bfee7d94659abad6b4038b68e..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191006_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:046a3abc0d0748474e4db3d712248e61c098b3698cded4a45ac7d0ee1ecde1e7 -size 3842 diff --git a/demo_data/lombardia/example/2/20191011.tif b/demo_data/lombardia/example/2/20191011.tif deleted file mode 100755 index bf66ec2a1973f2b411816c9b1e35a5691ebf7653..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191011.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e79a046124c29d743f534b26d50cba7f8a8bfefdb495f3e58f65d8d4cb80379a -size 37406 diff --git a/demo_data/lombardia/example/2/20191011_MSAVI.tif b/demo_data/lombardia/example/2/20191011_MSAVI.tif deleted file mode 100755 index f42c4970f8c2830e887c96efd3ba86e3ec19127a..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191011_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9ec1789056b81e727499b0ed1a66bdf13d2fe9aa3d890f1358f6a4fbabc333ab -size 5642 diff --git a/demo_data/lombardia/example/2/20191016.tif b/demo_data/lombardia/example/2/20191016.tif deleted file mode 100755 index 9b21f579a8e0e8ab6bdb9c5a62b39a64cf71b289..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191016.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2a260d7cada3838151262042399367bae2130e269f1ace1d81553dd381db313a -size 37847 diff --git a/demo_data/lombardia/example/2/20191016_MSAVI.tif b/demo_data/lombardia/example/2/20191016_MSAVI.tif deleted file mode 100755 index 044fda40912c116e4fbc1ac187a71c308e804b30..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191016_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9203ae2b2f907e54d7db1f36050c2c5b3503838059babdff8c8a87275db9b1d3 -size 4233 diff --git a/demo_data/lombardia/example/2/20191021.tif b/demo_data/lombardia/example/2/20191021.tif deleted file mode 100755 index a4b44039f574a6e0a255443538b44e14e52011b1..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191021.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:53287499c9fe35dfa4eed5c7fa8b39bdf02d5c5af450d1ec73f5725d7a3ec7f0 -size 33665 diff --git a/demo_data/lombardia/example/2/20191021_MSAVI.tif b/demo_data/lombardia/example/2/20191021_MSAVI.tif deleted file mode 100755 index 771d2f40e38f0cd422b973f77b66ca521c169797..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191021_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cd749d3a9c64bc19d9352c63b2b227b85794534a4e2d4ff9eed8703a8682911a -size 5439 diff --git a/demo_data/lombardia/example/2/20191026.tif b/demo_data/lombardia/example/2/20191026.tif deleted file mode 100755 index 590af9a795b90dbd403591d704b3456d9dbd98ca..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191026.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:59eaf4a3e91917833bec2ccc28d202655c99a1a209480e301088458138f9ccd7 -size 37401 diff --git a/demo_data/lombardia/example/2/20191026_MSAVI.tif b/demo_data/lombardia/example/2/20191026_MSAVI.tif deleted file mode 100755 index f190eeaa00f2e3497bbeeb1a8702a197bc6e7e03..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191026_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b01b45331562df875274e0ed85e224dcd7611dd338c984995c0d8d865371396b -size 4196 diff --git a/demo_data/lombardia/example/2/20191031.tif b/demo_data/lombardia/example/2/20191031.tif deleted file mode 100755 index 14ecf0a3e719205c468b39440681f326627a2b37..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191031.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b0786d74cede4f1a652a8fbedd479a55ea79b7f51127d20a411de651fb5107e1 -size 34043 diff --git a/demo_data/lombardia/example/2/20191031_MSAVI.tif b/demo_data/lombardia/example/2/20191031_MSAVI.tif deleted file mode 100755 index d39dece251e356b1db9869cd2ab5cfca77d97db5..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191031_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a1ffe1b9df34ba5bed1791da7a0992e4d3b762fbddd89ed84303e017c2c34189 -size 4869 diff --git a/demo_data/lombardia/example/2/20191105.tif b/demo_data/lombardia/example/2/20191105.tif deleted file mode 100755 index ebac6da572339f69427290786d0b077c6d37f187..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191105.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e80ec12b1c86debf45fcdcc33fa7561287bc9f86c35694fde3b7f3c3f4289ccd -size 38023 diff --git a/demo_data/lombardia/example/2/20191105_MSAVI.tif b/demo_data/lombardia/example/2/20191105_MSAVI.tif deleted file mode 100755 index db1b58320549b0a88c385279268396a8602d327e..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191105_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ddd1e4bb87021f7968ab126f738c8cfe1bc6fad33b27691580a5c4964f2ce8d3 -size 4176 diff --git a/demo_data/lombardia/example/2/20191110.tif b/demo_data/lombardia/example/2/20191110.tif deleted file mode 100755 index 6a59f79bdfb231e785947159f0e791512bf76d3b..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191110.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e6afb59bb63471c3865f5e5cfbd68fdcfc376ca2281b985934475e37e8a91710 -size 38023 diff --git a/demo_data/lombardia/example/2/20191110_MSAVI.tif b/demo_data/lombardia/example/2/20191110_MSAVI.tif deleted file mode 100755 index 71a851429802a4e91f80f2b68b7a26fb9231cede..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191110_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:58f7c48f15f4fff32751864a58c13cb0dad05710f6a6bd320066da87bcf6444c -size 6074 diff --git a/demo_data/lombardia/example/2/20191115.tif b/demo_data/lombardia/example/2/20191115.tif deleted file mode 100755 index bd4f14bc5b9d4812c6d3d0706ec712ac45fb5532..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191115.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:888f03dc517d04b4a0f837a079ec66be1fe76ced2b836c9977ca410b0aa1d988 -size 31925 diff --git a/demo_data/lombardia/example/2/20191115_MSAVI.tif b/demo_data/lombardia/example/2/20191115_MSAVI.tif deleted file mode 100755 index 5423a20468d21881b76477a069859d824502d6e4..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191115_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5b6ff57ce3fa96a140a5bc919d69fb740b4457558e8ad649be76ccfd36848f2c -size 3619 diff --git a/demo_data/lombardia/example/2/20191120.tif b/demo_data/lombardia/example/2/20191120.tif deleted file mode 100755 index 2b2713c487b1bb734917060e290f4e8932d1fafc..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191120.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c2effbe20ea70c0e4fca69453527d065c1cbbb96f695e73492113bdb98b2013d -size 32969 diff --git a/demo_data/lombardia/example/2/20191120_MSAVI.tif b/demo_data/lombardia/example/2/20191120_MSAVI.tif deleted file mode 100755 index 486babafd698d99d40dd9ca0e8e9bda95d2d40ed..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191120_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:16923bbbb71fd4034a9eed78c82ec0368e2d9ec4ef21034891168a4185fff4fd -size 4582 diff --git a/demo_data/lombardia/example/2/20191130.tif b/demo_data/lombardia/example/2/20191130.tif deleted file mode 100755 index 347275c7d55e2247d1126e87046fa451dc49b208..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191130.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9e97a8a2ca3d4b48380f6a338023d8f54688d3ce30008b0426d6c2fd487417e4 -size 36307 diff --git a/demo_data/lombardia/example/2/20191130_MSAVI.tif b/demo_data/lombardia/example/2/20191130_MSAVI.tif deleted file mode 100755 index ea769cf4814b083c617da4ce81ed9a722203e2c4..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191130_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a0a0062ba401a842936c018ad53e18bebe8132139dcda97afc9e1f22440d82af -size 4495 diff --git a/demo_data/lombardia/example/2/20191205.tif b/demo_data/lombardia/example/2/20191205.tif deleted file mode 100755 index 23f3b84e2cb2b8e1a889763877812c3e34166ca0..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191205.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b70912038e5161b9789c5404d2159c59a9ca6367521023d050c859a9c58cff92 -size 36085 diff --git a/demo_data/lombardia/example/2/20191205_MSAVI.tif b/demo_data/lombardia/example/2/20191205_MSAVI.tif deleted file mode 100755 index b64713b8055dca32264c7aa530b96087b160db40..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191205_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d29b32e78bbf0f00992ef890baf6fa9b42d81500717f7e0aeecd6c48b651e4e6 -size 4110 diff --git a/demo_data/lombardia/example/2/20191210.tif b/demo_data/lombardia/example/2/20191210.tif deleted file mode 100755 index 1f991f2e1f88ab2a76b34495256af774ff5fdf09..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191210.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:38fdca874b5ac470c50ebcaf436bf839fe3b796bf924dc90e268acee07b8c7a0 -size 38492 diff --git a/demo_data/lombardia/example/2/20191210_MSAVI.tif b/demo_data/lombardia/example/2/20191210_MSAVI.tif deleted file mode 100755 index 65c51ec53256ff4e9e7db11114947a83c44b518e..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191210_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:188a1f41d1343f9cc33ba1a1ab5aedc19807883ee4097d788d0896dcd414f03e -size 6159 diff --git a/demo_data/lombardia/example/2/20191215.tif b/demo_data/lombardia/example/2/20191215.tif deleted file mode 100755 index a98fb594d3d18854321b5c05c21af055ba5b78c4..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191215.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:69fe08f502e6ddb683c60b81ec86899688ad06985a9932ef3bb33a8313419977 -size 38849 diff --git a/demo_data/lombardia/example/2/20191215_MSAVI.tif b/demo_data/lombardia/example/2/20191215_MSAVI.tif deleted file mode 100755 index d4b609dac931e815875eb3cac3bdfa157df56095..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191215_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:138dd4a77ecbfe7efc44a7bce56a0d51b54371f0a7ada65fd1a1d1050f306aa6 -size 4141 diff --git a/demo_data/lombardia/example/2/20191220.tif b/demo_data/lombardia/example/2/20191220.tif deleted file mode 100755 index 244394be69b116a804730341b931ab14fb16acf6..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191220.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3ad07b45fe64748dab26f2603989dd3ad7f4b675c2e4847e11dc46bdee1d759b -size 33138 diff --git a/demo_data/lombardia/example/2/20191220_MSAVI.tif b/demo_data/lombardia/example/2/20191220_MSAVI.tif deleted file mode 100755 index 0eb91502817cd1d67b35ad2ae18624a780588d83..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191220_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e9e10bcf0685af33d0cd6f102fcb742615329dc241a3eca967955e0c971444f7 -size 4633 diff --git a/demo_data/lombardia/example/2/20191225.tif b/demo_data/lombardia/example/2/20191225.tif deleted file mode 100755 index 3301f9f814cd64405a5258f56ab047a77809ed3e..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191225.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c93215a685dbcb9189a53094f96e0b575ab32df72d470c638fb0dcf9e013ab45 -size 38647 diff --git a/demo_data/lombardia/example/2/20191225_MSAVI.tif b/demo_data/lombardia/example/2/20191225_MSAVI.tif deleted file mode 100755 index 1a2511f32fa71b8768199e21973e759ea0e1db10..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191225_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fdc912b9f18bbf9c48382b783ba6936e628081154c8e4a6ff938729f546953e4 -size 4442 diff --git a/demo_data/lombardia/example/2/20191230.tif b/demo_data/lombardia/example/2/20191230.tif deleted file mode 100755 index 2098e3fc78a0e29f940a43e76b80d22cfbd4387a..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191230.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:27a87605469490ec1e141dff6f2ba15fe6bb8b6f6b7512bee05278ae9057346d -size 37375 diff --git a/demo_data/lombardia/example/2/20191230_MSAVI.tif b/demo_data/lombardia/example/2/20191230_MSAVI.tif deleted file mode 100755 index 6de6ce3a1ac88b76b79a05237a5c108df4a55098..0000000000000000000000000000000000000000 --- a/demo_data/lombardia/example/2/20191230_MSAVI.tif +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f146441d7ebf940a98b9cc0a2dd92f142a6ea3d8a04e32a781703bd6cc676560 -size 6011 diff --git a/utils.py b/utils.py index a49c93a6f65332d453f7c2848aed8263e1507889..12314c3d8e1f09bee5934d19cb69544738e30278 100644 --- a/utils.py +++ b/utils.py @@ -57,7 +57,7 @@ def get_all_dates(path, num_max_dates): files = os.listdir(path) dates = list() for f in files: - f = f.split("_")[0] + f = f.split(".")[0] if len(f) == 8: # 20160101 dates.append(f) @@ -185,10 +185,10 @@ class SentinelDailyAnnualDatasetNoLabel(torch.utils.data.Dataset): dirs.extend(dirs_path) else: # tileids e.g. "tileids/train_fold0.tileids" path of line separated tileids specifying - with open(os.path.join(root_dir, tileids), 'r') as f: - files = [el.replace("\n", "") for el in f.readlines()] + # with open(os.path.join(root_dir, tileids), 'r') as f: + # files = [el.replace("\n", "") for el in f.readlines()] for d in self.data_dirs: - dirs_path = [os.path.join(root_dir, d, f) for f in files] + dirs_path = [os.path.join(root_dir, d, f) for f in tileids] dirs.extend(dirs_path) for path in dirs: @@ -210,6 +210,11 @@ class SentinelDailyAnnualDatasetNoLabel(torch.utils.data.Dataset): patch_id, path = get_patch_id(self.samples, idx_img) dates = get_all_dates(path, self.max_seq_length) + # print("idx_img:", idx_img) + # print("self.samples:", self.samples) + # print("path:", path) + # print("self.max_seq_length:", self.max_seq_length) + # print(dates) x_annual = list() @@ -717,7 +722,7 @@ opt.resnet_shortcut = 'B' opt.result_path = 'demo_data/results' input_data_folder = 'demo_data/lombardia' #@param {type:"string"} opt.root_path = [input_data_folder] -opt.years = ['example'] +opt.years = ['2019'] opt.classes_path = 'demo_data/classes-newmapping.txt' opt.resume_path = 'demo_data' opt.pretrain_path = '' @@ -746,6 +751,7 @@ classes_color_map = np.array([[255/255.0, 255/255.0, 255/255.0], [139/255, 35/255, 35/255], [0, 0, 0], # Black - 17 - No Arable land ]) -color_labels = [classes_color_map[1], classes_color_map[2], classes_color_map[4], classes_color_map[7], - classes_color_map[9], classes_color_map[12], classes_color_map[17]] -labels_map = ['Unknow cropland', 'Other cereals', 'Woods and other tree crops', 'Forage', 'Corn', 'Rice', 'No arable land'] \ No newline at end of file +color_labels = [classes_color_map[0], classes_color_map[1], classes_color_map[2], classes_color_map[4], + classes_color_map[7], classes_color_map[9], classes_color_map[12], classes_color_map[17]] +labels_map = ['Unknown', 'Unknown cropland', 'Other cereals', 'Woods and other tree crops', 'Forage', 'Corn', 'Rice', + 'No arable land']