psalama commited on
Commit
e99c0c5
·
1 Parent(s): bc686cb

python modularize attempt 2

Browse files
Files changed (1) hide show
  1. main_operations.py +59 -0
main_operations.py ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import geopandas as gpd
2
+ from .arcgis_operations import get_gdf_from_feature_layer
3
+ from .geospatial_operations import process_buildings, get_max_extent, create_plot
4
+
5
+ def ss_intersect(geojson1, ss_geoselect, multiplier_factor, default_building_height):
6
+ # Read the GeoJSON files
7
+ input_gdf = gpd.read_file(geojson1.name)
8
+
9
+ # Check that CRS is EPSG:4326
10
+ if input_gdf.crs.to_epsg() != 4326:
11
+ raise ValueError("Input GeoJSON files must be in CRS EPSG:4326")
12
+
13
+ if ss_geoselect==0:
14
+ sensitive_sites_gdf = gpd.read_file("sensitive_sites/NYC_Parks_Properties.geojson")
15
+ else:
16
+ sensitive_sites_gdf = gpd.read_file("sensitive_sites/NYC_Parks_Zones.geojson")
17
+
18
+ default_building_height_m = default_building_height * 0.3048
19
+
20
+ buffers, intersected_sites, intersection_desc = process_buildings(input_gdf, sensitive_sites_gdf, default_building_height_m, multiplier_factor)
21
+
22
+ # Concatenate all buffer GeoDataFrames and save as a GeoJSON file
23
+ buffers_gdf = pd.concat(buffers, ignore_index=True)
24
+ buffers_gdf = buffers_gdf.to_crs("EPSG:4326")
25
+ buffers_gdf.to_file("building_buffers.geojson", driver='GeoJSON')
26
+
27
+ # Concatenate all intersected sensitive sites and save as a GeoJSON file
28
+ if intersected_sites:
29
+ intersected_sites_gdf = pd.concat(intersected_sites, ignore_index=True)
30
+ intersected_sites_gdf = intersected_sites_gdf.to_crs("EPSG:4326")
31
+ else: #if there aren't any intersections, return an empty geojson
32
+ intersected_sites_gdf = gpd.read_file("files/No_intersecting_buildings.geojson")
33
+ print("No buildings are in the vicinity of any sensitive sites.")
34
+
35
+ intersected_sites_gdf.to_file("intersected_sensitive_sites.geojson", driver='GeoJSON')
36
+
37
+ # Perform the union operation if there is more than one buffer
38
+ if len(buffers) > 1:
39
+ # Perform a unary union on the geometry column of the GeoDataFrame
40
+ buffer_union = unary_union(buffers_gdf['geometry'])
41
+
42
+ # Create a new GeoDataFrame from the union result
43
+ buffer_union_gdf = gpd.GeoDataFrame(geometry=[buffer_union], crs="EPSG:4326")
44
+
45
+ # Save the union GeoDataFrame as a GeoJSON file
46
+ buffer_union_gdf.to_file("buffer_union.geojson", driver='GeoJSON')
47
+
48
+
49
+ # Calculate the maximum extent
50
+ extent = get_max_extent(input_gdf, buffers_gdf)
51
+
52
+ lots_url = "https://services5.arcgis.com/GfwWNkhOj9bNBqoJ/arcgis/rest/services/MAPPLUTO/FeatureServer/0" # Access MapPLUTO # Eventually should be a checkbox
53
+ lots_gdf = get_gdf_from_feature_layer(lots_url)
54
+
55
+ # Create and save the plot - which is the output image
56
+ create_plot('output_image.png', extent, lots_gdf, sensitive_sites_gdf, buffer_union_gdf, intersected_sites_gdf, input_gdf)
57
+
58
+ # Return the image, geojson files, and text description
59
+ return 'output_image.png', "building_buffers.geojson", "buffer_union.geojson", intersection_desc