Plotting Industries and Railway Station #47
Replies: 4 comments
-
The above file includes all the railway stations of India which is 7462 with its |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
@nipunbatra , @patel-zeel |
Beta Was this translation helpful? Give feedback.
-
Plotting IndustriesCODE:fig, ax = plt.subplots(figsize=(12, 12))
coal = pd.read_csv(r'C:\Users\Harshit Jain\Desktop\delhiaq\delhi wazirpur\industries\coal.csv')
coal = gpd.GeoDataFrame(coal, geometry=gpd.points_from_xy(coal.longitude, coal.latitude))
diesel = pd.read_csv(r'C:\Users\Harshit Jain\Desktop\delhiaq\delhi wazirpur\industries\diesel.csv')
diesel = gpd.GeoDataFrame(diesel, geometry=gpd.points_from_xy(diesel.longitude, diesel.latitude))
steam = pd.read_csv(r'C:\Users\Harshit Jain\Desktop\delhiaq\delhi wazirpur\industries\steam.csv')
steam = gpd.GeoDataFrame(steam, geometry=gpd.points_from_xy(steam.longitude, steam.latitude))
biomass = pd.read_csv(r'C:\Users\Harshit Jain\Desktop\delhiaq\delhi wazirpur\industries\biomass.csv')
biomass = gpd.GeoDataFrame(biomass, geometry=gpd.points_from_xy(biomass.longitude, biomass.latitude))
biomass.plot(ax=ax, edgecolor='black', facecolor='orange',alpha=0.5,label='Biomass Industries')
steam.plot(ax=ax, edgecolor='black', facecolor='pink',alpha=0.5,label='Steam Industries')
diesel.plot(ax=ax, edgecolor='black', facecolor='purple',alpha=0.5,label='Diesel Industries')
coal.plot(ax=ax, edgecolor='black', facecolor='yellow',alpha=0.5,label='Coal Industries')
plt.legend()
plt.show() OUTPUT: |
Beta Was this translation helpful? Give feedback.
-
@nipunbatra , @patel-zeel
I have an idea which I think can be informative and helpful to gain insights.
If we plot
industries
andrailway stations
on a map alongsideair quality
monitoring stations that display pollutant values, it can provide valuable insights into the surrounding areas and their impact on air quality. This information can be instrumental in understanding the environmental conditions and potential sources of pollution in the vicinity.Let me take an example for that:
The above image is just for example
red circle indicates air station
green circle indicates industry or railway station
Now even though the marked red circle(air station) is quite far from the industries, it is still bigger in size which indicates it has
high pollutant value
that makes us think that the quality of air is polluted not because of vicinity but due to thewind speed
andwind direction
Hence, plotting Industries/Railway station might give some useful insights to us.Beta Was this translation helpful? Give feedback.
All reactions