Ozon3Org / Ozon3

An open-source Python package to easily obtain real-time, historical, or forecasted air quality data for anywhere in the world. Reliable, accurate and simple.
GNU General Public License v3.0
66 stars 23 forks source link

The label of one column of the returned dataframe for all methods should be pm2.5, not pm25 #115

Closed Milind220 closed 2 years ago

Milind220 commented 2 years ago

The dataframe returned by the methods contains data on particulate matter 2.5 microns (PM2.5). This data is slightly mislabelled, and might confuse users.

Current behaviour

The column with this data is labelled 'pm25'

Desired behaviour

The column should be labelled 'pm2.5'

Screenshots

Screenshot 2022-04-20 at 4 19 06 PM Screenshot 2022-04-20 at 4 19 21 PM
Milind220 commented 2 years ago

Also, I think this would technically qualify as a breaking change. It would be backwards incompatible, as if anyone has code designed to work with the column label 'pm25' their code wouldn't work with the new column name of 'pm2.5'.