Air pollution from La Palma volcano!

I am Sergi Bargués, in this webpage you will find my analysis of sulfur dioxide gas from La Palma Volcano found in my theree cities Gavà, El Prat de Llobregat(Jardins de la Pau), El Prat de Llobregat(Sagnier) in the weekend from 25 to 26 septembre 2021

Air pollution data is obtained in the webside of Generalitat de Catalunya automatic data download.

Graph created with matplotlib in Python

This is the code of my graph

 
 import matplotlib.pyplot as plt

x = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48]
y = [ [1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,1,1,1,1,1,2,5,5,5,5,4,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
      [1,1,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,1,1,2,5,5,1,3,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
      [3,3,3,3,3,3,3,4,4,4,3,3,3,4,4,3,3,3,3,3,3,3,4,4,3,3,3,3,2,2,3,3,3,2,3,3,3,3,4,3,3,3,3,3,3,3,3,3] ]
labels=['Igualada', 'Montseny', 'Barcelona (Eixample)']
colors=['r','g','b']

# loop over data, labels and colors
for i in range(len(y)):
    plt.plot(x,y[i],'o-',color=colors[i],label=labels[i])
plt.title("AIR SULFUR DIOXIDE IN CATALONIA", loc='left')
plt.xlabel("Hours of weekend 25-26/09/2021")
plt.ylabel("SO2 microgram/m3")
plt.legend()
plt.show()
    

this is the resulting image of the previous code

Some of the project objectives are:

  1. To learn how to build a mobile App using MIT App Inventor for this project
  2. To create original videogames based on traditions
  3. Our first game is a T-rex like videogame using traditional big-head from Martorell ("capgrossos" in Catalan language) and the Devil's bridge (Pont del diable in Catalan)
  4. To create a T-Rex like videogame you will follow the less than 200 code lines from this Youtube video tutorial, in the following steps:
  5. Look carefully the following videotutorial:
  6. Every student will use differnt images related to local traditions in their own neocities websites and mobile apps creations
  7. To create in your neocities a folder named trex and inside that folder a file named "index.htlm" and another named "trex.js" in order to make the game work.
  8. You can copy the code from the video above in the files index.htlm and trex.js. Remember code does not allow mistakes and typos. In case of doubt copy the code from http://github.com/drfperez/erasmusvideogame
  9. Edit the big-head images, Devil's bridge images and all images involved in the game using GIMP editor and substitute the images in the game.
  10. To learn more about HTML, CSS and Javascript, check out these tutorials and www.w3schools.com!