diff --git a/app.py b/app.py index d2501720fddaf152104d252a5e54d729e97c50f3..8139719b0ebc0d7e6fe1248bfee1fbcfa695a288 100644 --- a/app.py +++ b/app.py @@ -16,35 +16,41 @@ unseen_capita_index_path = ( population_path = "data/population" +maps_path = "data/map_figures" # Update image_paths using global_index_path index_paths = { "India": { + "map": f"{maps_path}/map_Indian world.png", "global_index": f"{global_index_path}/india.png", "unseen_index": f"{unseen_index_path}/india.png", "unseen_index_capita": f"{unseen_capita_index_path}/india.png", "population_index": f"{population_path}/Indian world.png", }, "Japan": { + "map": f"{maps_path}/map_Japan.png", "global_index": f"{global_index_path}/japan.png", "unseen_index": f"{unseen_index_path}/japan.png", "unseen_index_capita": f"{unseen_capita_index_path}/Japan.png", "population_index": f"{population_path}/Japan.png", }, "France": { + "map": f"{maps_path}/map_France.png", "global_index": f"{global_index_path}/france.png", "unseen_index": f"{unseen_index_path}/france.png", "unseen_index_capita": f"{unseen_capita_index_path}/France.png", "population_index": f"{population_path}/France.png", }, "Italy": { + "map": f"{maps_path}/map_Italy.png", "global_index": f"{global_index_path}/italy.png", "unseen_index": f"{unseen_index_path}/italy.png", "unseen_index_capita": f"{unseen_capita_index_path}/Italy.png", "population_index": f"{population_path}/Italy.png", }, "Spain": { + "map": f"{maps_path}/map_Spain.png", "global_index": f"{global_index_path}/spain.png", "unseen_index": f"{unseen_index_path}/spain.png", "unseen_index_capita": f"{unseen_capita_index_path}/Spain.png", @@ -65,14 +71,29 @@ if selected_region in index_paths: if os.path.exists(path): if key == "global_index": st.subheader("Global Index") + st.image( + Image.open(path), caption=key.capitalize(), use_column_width=True + ) elif key == "unseen_index": st.subheader("Unsee-Species Index") + st.image( + Image.open(path), caption=key.capitalize(), use_column_width=True + ) elif key == "unseen_index_capita": st.subheader("Unsee-Species per capita Index") + st.image( + Image.open(path), caption=key.capitalize(), use_column_width=True + ) elif key == "population_index": - st.subheader("") - - st.image(Image.open(path), caption=key.capitalize(), use_column_width=True) + st.subheader("¨Population Index") + st.image( + Image.open(path), caption=key.capitalize(), use_column_width=True + ) + elif key == "map": + st.subheader("Maps") + st.sidebar.image( + Image.open(path), caption=key.capitalize(), use_column_width=True + ) else: st.write(f"File for {key.capitalize()} does not exist.") # Add more information or charts specific to India here diff --git a/data/map_figures/map_Arabian peninsula.png b/data/map_figures/map_Arabian peninsula.png new file mode 100644 index 0000000000000000000000000000000000000000..6b59788fc5e5038a555c7f08fbed4277bae3679b --- /dev/null +++ b/data/map_figures/map_Arabian peninsula.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cf8930ffe993af63c07dfa5b096e55e310b4c99fbe45068704643779bc94820 +size 129353 diff --git a/data/map_figures/map_Arabic world.png b/data/map_figures/map_Arabic world.png new file mode 100644 index 0000000000000000000000000000000000000000..62ba6dc88e747743661b4e14e80750910fe5ed71 --- /dev/null +++ b/data/map_figures/map_Arabic world.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fabd54d4ba1c2b63b69dee3debbcfe1e4431f025346dc5cbeaa1ff8dd564c00 +size 135397 diff --git a/data/map_figures/map_Austria.png b/data/map_figures/map_Austria.png new file mode 100644 index 0000000000000000000000000000000000000000..59580bb2caac6b8a9c8fa6c630f90cf21a195c71 --- /dev/null +++ b/data/map_figures/map_Austria.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c59336639aa5a21aeb2c61dcc4b84c23bd85aa0cec522a27c28564377f32328 +size 94752 diff --git a/data/map_figures/map_Balkans.png b/data/map_figures/map_Balkans.png new file mode 100644 index 0000000000000000000000000000000000000000..bf21fc6943dadd436e01a0ef2b3f22388d433864 --- /dev/null +++ b/data/map_figures/map_Balkans.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a4d5cdf79d0fc1588326b62dcbd60c7d3ea8bb487277370643761051d7ea67a +size 109830 diff --git a/data/map_figures/map_Belgium.png b/data/map_figures/map_Belgium.png new file mode 100644 index 0000000000000000000000000000000000000000..9dc8bf17d86272b4ec63c6a4f93a511009f89715 --- /dev/null +++ b/data/map_figures/map_Belgium.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:411393369c5e04f5fa512fd3c18baaed33c57630631cc1c09875191f8e54a2a9 +size 86049 diff --git a/data/map_figures/map_British Islands.png b/data/map_figures/map_British Islands.png new file mode 100644 index 0000000000000000000000000000000000000000..499c94799273bbd7a55f3ed9e70d64ea9d831c27 --- /dev/null +++ b/data/map_figures/map_British Islands.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19622f901a4a15f3f2b41dafc2e3b51b30685f8ab2f263e3443f97ec37c47f40 +size 76967 diff --git a/data/map_figures/map_Central Europe.png b/data/map_figures/map_Central Europe.png new file mode 100644 index 0000000000000000000000000000000000000000..abb3c9a1b3396ff22aa3a2eb403c5518cfb66017 --- /dev/null +++ b/data/map_figures/map_Central Europe.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afbb53ac0d41fedf1f5c187bec02e09fdb8fcf8a6c4feb75c13accfd9c4058eb +size 92969 diff --git a/data/map_figures/map_Chinese world.png b/data/map_figures/map_Chinese world.png new file mode 100644 index 0000000000000000000000000000000000000000..c9235d492c463df09925233d783f7ea866be8b3b --- /dev/null +++ b/data/map_figures/map_Chinese world.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db805b765c37555f172def55aeb1e218f7dac9881a8f15e711e047dd426a7329 +size 96178 diff --git a/data/map_figures/map_Denmark.png b/data/map_figures/map_Denmark.png new file mode 100644 index 0000000000000000000000000000000000000000..9d26fe9c19d03f434448bbd98d7b31c0afdcc9ed --- /dev/null +++ b/data/map_figures/map_Denmark.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e1362fdfe1a63a14843ef21fca3fef3b7a236315d19fb9db5077eee9f1f9a36 +size 78261 diff --git a/data/map_figures/map_East Slavic.png b/data/map_figures/map_East Slavic.png new file mode 100644 index 0000000000000000000000000000000000000000..486a15606e653f0052389c45a0cd284a09348b77 --- /dev/null +++ b/data/map_figures/map_East Slavic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4e7463aae47c7e3d82a2df9601cb17a7299b6cac695ca353bfe60d8e69ec73a +size 63630 diff --git a/data/map_figures/map_Eastern Europe.png b/data/map_figures/map_Eastern Europe.png new file mode 100644 index 0000000000000000000000000000000000000000..aeb3b09ce055029588637a6bad8ac668a0dac505 --- /dev/null +++ b/data/map_figures/map_Eastern Europe.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21a00de3fb8e3684dad8cba3408f0ad4ccec8ae3027942ddc2dbefc3c260c5f2 +size 67611 diff --git a/data/map_figures/map_Finland.png b/data/map_figures/map_Finland.png new file mode 100644 index 0000000000000000000000000000000000000000..dcb451e2b1aa425819fab8ebf2c6a396a55a1985 --- /dev/null +++ b/data/map_figures/map_Finland.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7b6bf8cb7f699c9626bba68035405fbbc4a23bbafc25c5aab21dba9d5345fc4 +size 65899 diff --git a/data/map_figures/map_France.png b/data/map_figures/map_France.png new file mode 100644 index 0000000000000000000000000000000000000000..4f77ece294af42b8025c0b59a35a24551a4a965d --- /dev/null +++ b/data/map_figures/map_France.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86632f4d75d064d3d5b9c63aba87cd2ca472d7d818d1ed47972d89df6361839f +size 103965 diff --git a/data/map_figures/map_German world.png b/data/map_figures/map_German world.png new file mode 100644 index 0000000000000000000000000000000000000000..26da6be48b5deda983e3ccd9c81a9835f555facf --- /dev/null +++ b/data/map_figures/map_German world.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ddcdab115ab864fee4f238e9fd62f00060a8da60be64b94729080e8fde85c4f +size 91794 diff --git a/data/map_figures/map_Germany.png b/data/map_figures/map_Germany.png new file mode 100644 index 0000000000000000000000000000000000000000..2e55ee566225205e24c95ddbb5a05e617ef86516 --- /dev/null +++ b/data/map_figures/map_Germany.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c8efacd0e5746d14a8587b8e5f8950265c4a2586b44703f0ddc69b9ea2df6ad +size 89085 diff --git a/data/map_figures/map_Greece.png b/data/map_figures/map_Greece.png new file mode 100644 index 0000000000000000000000000000000000000000..c3a3e5a8503eee0fc23d579bedd1bb7546602323 --- /dev/null +++ b/data/map_figures/map_Greece.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cec430d341c6a332a44974200ab858a1bf113bd1cc4a8e8eb371fd594371992 +size 112875 diff --git a/data/map_figures/map_Greek World.png b/data/map_figures/map_Greek World.png new file mode 100644 index 0000000000000000000000000000000000000000..719beaa93fa7d7f14542bfe14e463ae6d860e334 --- /dev/null +++ b/data/map_figures/map_Greek World.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:286d5210856949ee785524bff9b6b6300f378500f5d6dfa34d67a7f021dd8381 +size 135354 diff --git a/data/map_figures/map_Iceland.png b/data/map_figures/map_Iceland.png new file mode 100644 index 0000000000000000000000000000000000000000..bc56e660295a9a155f3145cf596cc27e3fe7e11e --- /dev/null +++ b/data/map_figures/map_Iceland.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a143aa765ec7c5174619479f630c3a8c345e8ee88ba988b8cc303a4f0bb609 +size 51191 diff --git a/data/map_figures/map_Indian world.png b/data/map_figures/map_Indian world.png new file mode 100644 index 0000000000000000000000000000000000000000..c8f6d99810a356c30667f590e7a322ab359417e6 --- /dev/null +++ b/data/map_figures/map_Indian world.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7793745e4c58629da6c7eb5327cdfd7c35a99d33e570dd3eb07eab995f2c6f23 +size 120503 diff --git a/data/map_figures/map_Ireland.png b/data/map_figures/map_Ireland.png new file mode 100644 index 0000000000000000000000000000000000000000..af92f8c7ffa07cc75391f9a81153b89e1999472a --- /dev/null +++ b/data/map_figures/map_Ireland.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11b0ac51fbcaeec68725143ffc678d3ea74d60f0d77801ec0261811176467f4e +size 75449 diff --git a/data/map_figures/map_Italy.png b/data/map_figures/map_Italy.png new file mode 100644 index 0000000000000000000000000000000000000000..a6aac097cf255ed6dd4dfb287a63231102d96086 --- /dev/null +++ b/data/map_figures/map_Italy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c1b4a2dddb7d6342bbd1b2ebef8f5f9ac2d590f6e3d651a1f27588b8adc7622 +size 102962 diff --git a/data/map_figures/map_Japan.png b/data/map_figures/map_Japan.png new file mode 100644 index 0000000000000000000000000000000000000000..9ea1e7ee69a510be9c8434fb9da033c480e3731a --- /dev/null +++ b/data/map_figures/map_Japan.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df5df93b27cac6605ff1799e4808a6a4d20cbcf4a846b95b2338a84b835c8ce +size 72617 diff --git a/data/map_figures/map_Korea.png b/data/map_figures/map_Korea.png new file mode 100644 index 0000000000000000000000000000000000000000..ba80bd4514bb6ae6ecb9b138dd79b1cf404c6f00 --- /dev/null +++ b/data/map_figures/map_Korea.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e2d9d9e8046aa4ca9ae869c015f6dbb81591418484170d557e62e84c2fcf465 +size 75636 diff --git a/data/map_figures/map_Latin World.png b/data/map_figures/map_Latin World.png new file mode 100644 index 0000000000000000000000000000000000000000..2b2f5a12f966f0c43145ce9054355e2e5125c59a --- /dev/null +++ b/data/map_figures/map_Latin World.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e899cf8758c999e6aceffed85d5eb2e470b1a8e248305267122ad8271ab14906 +size 116100 diff --git a/data/map_figures/map_Low countries.png b/data/map_figures/map_Low countries.png new file mode 100644 index 0000000000000000000000000000000000000000..d0b408a8ef2b0c147aa116847a79cea69d74b04b --- /dev/null +++ b/data/map_figures/map_Low countries.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1bf50ce25e9a80474f59dbe739f4863bd1b621d76c1b9aec6d4f218f2143651 +size 85820 diff --git a/data/map_figures/map_Muslim world.png b/data/map_figures/map_Muslim world.png new file mode 100644 index 0000000000000000000000000000000000000000..b49507c0cc700091d2481c2d5d88c1edd0cef864 --- /dev/null +++ b/data/map_figures/map_Muslim world.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f55ef373c15499852521ab68ae852c408107ab2078c3e3b123cd747840ac8b74 +size 143203 diff --git a/data/map_figures/map_Netherlands.png b/data/map_figures/map_Netherlands.png new file mode 100644 index 0000000000000000000000000000000000000000..01d7a3af04a534e04c6ef63de924d98088f298a2 --- /dev/null +++ b/data/map_figures/map_Netherlands.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ed9462b5583e57df121e034c5735dde69d289a60462dbd63a169a558bc155e7 +size 84895 diff --git a/data/map_figures/map_Nordic countries.png b/data/map_figures/map_Nordic countries.png new file mode 100644 index 0000000000000000000000000000000000000000..d441cf91967674b0e99350bcb7723c1fc60bdc9e --- /dev/null +++ b/data/map_figures/map_Nordic countries.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8732bfae233aef0d9e8dc20cddaf7ee39a12f2e1c4f437140fba18b33826c07a +size 61065 diff --git a/data/map_figures/map_Northern China.png b/data/map_figures/map_Northern China.png new file mode 100644 index 0000000000000000000000000000000000000000..5453977c196cbd7c14e18c52c3dddd28f31a0325 --- /dev/null +++ b/data/map_figures/map_Northern China.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:938dbdeeab2c139a79febbe2574c122a1ae4e5b9ae8412e50387a8b85a2d8f56 +size 96214 diff --git a/data/map_figures/map_Northern France.png b/data/map_figures/map_Northern France.png new file mode 100644 index 0000000000000000000000000000000000000000..01a998f0d4d41310da95f465f7578c6be5ff25c4 --- /dev/null +++ b/data/map_figures/map_Northern France.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42ca51d3c4ce13e85595540e013e468837c2df6f0d01c57e2be87afc3611bc76 +size 105157 diff --git a/data/map_figures/map_Northern India.png b/data/map_figures/map_Northern India.png new file mode 100644 index 0000000000000000000000000000000000000000..6e1317b80e9b50271987bcfe2cc1e42babb649ba --- /dev/null +++ b/data/map_figures/map_Northern India.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b2d44c6a8e6dc60fbf4417c94221d9f129be7d26b2169263cc1c41d9053c44e +size 120620 diff --git a/data/map_figures/map_Northern Italy.png b/data/map_figures/map_Northern Italy.png new file mode 100644 index 0000000000000000000000000000000000000000..6011d08908b047be0bafb7d67c512677a1229e93 --- /dev/null +++ b/data/map_figures/map_Northern Italy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:128cb6756a13dab51596ac5972fd2a5f36607e1c42b11e2ed75e5799af62835a +size 104305 diff --git a/data/map_figures/map_Northern Japan.png b/data/map_figures/map_Northern Japan.png new file mode 100644 index 0000000000000000000000000000000000000000..f8aef2cf16a8d5a20002a96f9c778a75965e77e8 --- /dev/null +++ b/data/map_figures/map_Northern Japan.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e56015ad727556afc5b3026d067c3193047f9c010f3fbc64088bba58b818111a +size 74011 diff --git a/data/map_figures/map_Northwestern Europe.png b/data/map_figures/map_Northwestern Europe.png new file mode 100644 index 0000000000000000000000000000000000000000..4390de0a2b9f456f2098335cf2af6c910ac6ff93 --- /dev/null +++ b/data/map_figures/map_Northwestern Europe.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:467f4d94fc94b5ac0c370cb68a20b071a8b559fc699db679b2524a108f61b5c1 +size 100409 diff --git a/data/map_figures/map_Norway.png b/data/map_figures/map_Norway.png new file mode 100644 index 0000000000000000000000000000000000000000..10b5e39529bde387d3093ce41278f64d973ec1f9 --- /dev/null +++ b/data/map_figures/map_Norway.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e730934a2586f20432723c39ccee115c6b91d7657fe43eab2409c51e59f7a49d +size 53650 diff --git a/data/map_figures/map_Ottoman Turkey.png b/data/map_figures/map_Ottoman Turkey.png new file mode 100644 index 0000000000000000000000000000000000000000..a116de5da893d5f3dfd7b228be81dc9c03b6efc1 --- /dev/null +++ b/data/map_figures/map_Ottoman Turkey.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36657db8ccc08d6b37b388d89a9550b1e8dc7d677df98f78169102699dd82354 +size 116195 diff --git a/data/map_figures/map_Ottoman world.png b/data/map_figures/map_Ottoman world.png new file mode 100644 index 0000000000000000000000000000000000000000..1747015cefef720d3f55c658815e965e3746c62a --- /dev/null +++ b/data/map_figures/map_Ottoman world.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3f1c96d274d89c14fa9e1c9435edde9f45f341f00b92c1c54f3aebecd3a05ac +size 139320 diff --git a/data/map_figures/map_Persian world.png b/data/map_figures/map_Persian world.png new file mode 100644 index 0000000000000000000000000000000000000000..4ea57afc81ba2f4d82ccba8c38bcf4796b647b49 --- /dev/null +++ b/data/map_figures/map_Persian world.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cab5ae60e1242fc0f2f064348560301a830b5538fc048fed884821a650dc224 +size 123293 diff --git a/data/map_figures/map_Portugal.png b/data/map_figures/map_Portugal.png new file mode 100644 index 0000000000000000000000000000000000000000..bd163af072bb7488361a6cd1aa8f0cbc9426d867 --- /dev/null +++ b/data/map_figures/map_Portugal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:defbfde1b5dcf0e5b481505ae698ff0c0d945efe1593c5e8e70242538bed31ff +size 95968 diff --git a/data/map_figures/map_Slav world.png b/data/map_figures/map_Slav world.png new file mode 100644 index 0000000000000000000000000000000000000000..e5b7fd2cc5e88601191ea8bfb0d00efa24a5a68e --- /dev/null +++ b/data/map_figures/map_Slav world.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2a111881c16007f4ca398b8e07231a3ce15aae96f68749123824cc309cc8f4f +size 72461 diff --git a/data/map_figures/map_South East Asia.png b/data/map_figures/map_South East Asia.png new file mode 100644 index 0000000000000000000000000000000000000000..8e70ae28f8b552d750f5a1a0d23dcd3dbe0ddf12 --- /dev/null +++ b/data/map_figures/map_South East Asia.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a901e36da6255357ab1e025046664a8f0369a9338ccadd0041fd9b2f7f823346 +size 108706 diff --git a/data/map_figures/map_Southern China.png b/data/map_figures/map_Southern China.png new file mode 100644 index 0000000000000000000000000000000000000000..e644dde1dbdc77f8ce95a6742668d7ae4369bf98 --- /dev/null +++ b/data/map_figures/map_Southern China.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc309c8357fb337544f2a0b8bbbc60c4e5a755a77687eb5fd71d05489a36b169 +size 96338 diff --git a/data/map_figures/map_Southern France.png b/data/map_figures/map_Southern France.png new file mode 100644 index 0000000000000000000000000000000000000000..10b724ec47973c20adf0c8011b444fd4498aef19 --- /dev/null +++ b/data/map_figures/map_Southern France.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d414c38ad448e7368ae2a7e7f71f03d9387130e90ae21bed086a9f27012c7f4f +size 105300 diff --git a/data/map_figures/map_Southern India.png b/data/map_figures/map_Southern India.png new file mode 100644 index 0000000000000000000000000000000000000000..e0918089183dae8e7c942d06b674890da4a70abc --- /dev/null +++ b/data/map_figures/map_Southern India.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8efa7b0127e1a4438333c425d1800916781697279c6a346b9b813be408027c9a +size 120843 diff --git a/data/map_figures/map_Southern Italy.png b/data/map_figures/map_Southern Italy.png new file mode 100644 index 0000000000000000000000000000000000000000..63e977ffdf8bbdae3cc2b5ed260c62a431a84811 --- /dev/null +++ b/data/map_figures/map_Southern Italy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce604487f3038eb159157561dee2dcf9937124ccdc8967677fa1d9c7419db9d +size 104500 diff --git a/data/map_figures/map_Southern Japan.png b/data/map_figures/map_Southern Japan.png new file mode 100644 index 0000000000000000000000000000000000000000..15722fc95dae17ff7d45025e6eee470127627a63 --- /dev/null +++ b/data/map_figures/map_Southern Japan.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75624cf4d0dad5575604be5a8b3e4dc9b1ac8bf510809e6c197fe0f75ff2cdc9 +size 74263 diff --git a/data/map_figures/map_Southwestern Europe.png b/data/map_figures/map_Southwestern Europe.png new file mode 100644 index 0000000000000000000000000000000000000000..1d4a8baa8f24d83f32406ba9d690d6674a59e7e8 --- /dev/null +++ b/data/map_figures/map_Southwestern Europe.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c065710c5d59a951088f8448e8028086e929dc8dbc749b375ca5ff6cdd9a624b +size 102325 diff --git a/data/map_figures/map_Spain.png b/data/map_figures/map_Spain.png new file mode 100644 index 0000000000000000000000000000000000000000..d18fa88d9ed04ab9023d488a8a66688c6021208d --- /dev/null +++ b/data/map_figures/map_Spain.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f7cb314ba5593de33d2a677a039a8ec43bc555f51fccce05cb720b2a23497ec +size 96732 diff --git a/data/map_figures/map_Sweden.png b/data/map_figures/map_Sweden.png new file mode 100644 index 0000000000000000000000000000000000000000..1c433b35df357917e2cd2a98a607ff6c7b4c5757 --- /dev/null +++ b/data/map_figures/map_Sweden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7c58fc3ec462492cfeebaacbf7e0884ee4719158d14e0cc4f523c70850d71d1 +size 67967 diff --git a/data/map_figures/map_Switzerland.png b/data/map_figures/map_Switzerland.png new file mode 100644 index 0000000000000000000000000000000000000000..1f2db7d2f616a7d50c4db773cb780182c3199bb9 --- /dev/null +++ b/data/map_figures/map_Switzerland.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69979e331d9976046a60f6f81adb4a15797527dc62f33ba6a3743b75d8123eed +size 94596 diff --git a/data/map_figures/map_United Kingdom.png b/data/map_figures/map_United Kingdom.png new file mode 100644 index 0000000000000000000000000000000000000000..847501f1be747b228bc9d3c8c1bf2029f9c4b510 --- /dev/null +++ b/data/map_figures/map_United Kingdom.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef3420303eed71219e5663ae0662b809e609355bec374c6d180c65577e0f0d79 +size 77235 diff --git a/data/map_figures/map_Western Europe.png b/data/map_figures/map_Western Europe.png new file mode 100644 index 0000000000000000000000000000000000000000..c67052f9120a211b504ef117cdb02c679bf9ffe1 --- /dev/null +++ b/data/map_figures/map_Western Europe.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5820ca0fbef7580f279ab52f4c0971917856b367b0031e308eac398bf890d3ae +size 105135 diff --git a/data/map_figures/map_Yangtze.png b/data/map_figures/map_Yangtze.png new file mode 100644 index 0000000000000000000000000000000000000000..597effd0119445ab2380c0ef5015d50f63a592d2 --- /dev/null +++ b/data/map_figures/map_Yangtze.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:125efdf9e35eef8b96773adde895a55e83f1777571c36ac23edeb0ba8db016e9 +size 95563 diff --git a/data/map_figures/map_mediterranean World.png b/data/map_figures/map_mediterranean World.png new file mode 100644 index 0000000000000000000000000000000000000000..43b7f0176c3e68c7919f9656b9ab2f3392dab1f4 --- /dev/null +++ b/data/map_figures/map_mediterranean World.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07c90e68b67eb149e6fb134f171192b5141d215b1a962609e007388bb18a256e +size 139921 diff --git a/moving_pictures.sh b/moving_pictures.sh index 557dd83f8d5e208bba37f90cc9a382fd0e4bfc94..347bc46a3d96e980a1d0fb79e275227081634291 100644 --- a/moving_pictures.sh +++ b/moving_pictures.sh @@ -1,8 +1,12 @@ +# Immaterial Index and Corrected Index cp -r ../immaterial_index data/ find data/immaterial_index -type f ! -name "*.png" -exec rm {} \; - +# Population Index cp -r ../figures_notebooks/figures/environment/population data/ find data/population -type f ! -name "*.png" -exec rm {} \; +# Map Figures +cp -r ../figures_notebooks/map_figures data/ +find data/map_figures -type f ! -name "*.png" -exec rm {} \; \ No newline at end of file diff --git a/todo.md b/todo.md index 058e7ce590221aecbd09006360a07e7fcc49a9b9..e7bb0d7ec8bdb74b0d6c69b4d584ff76607b6f72 100644 --- a/todo.md +++ b/todo.md @@ -1,7 +1,7 @@ # ToDo List Cultura - [x] Faire une commande qui bouge les fichiers dans le nouveau répo -- [x] Afficher la première région avec le plus d'informations possibles pour un Use case (GDP per capita, CPi, CPi per capita, unseen, unseen per capita, population) +- [x] Afficher la première région avec le plus d'informations possibles pour un Use case (GDP per capita, CPi, CPi per capita, unseen, unseen per capita, population, Maps) - [] - [] - []