Skip to content
Snippets Groups Projects
Commit 02de43f1 authored by Kwang, Jeffrey S's avatar Kwang, Jeffrey S
Browse files

removed code that was not necessary

parent 59ce1574
No related branches found
No related tags found
1 merge request!70Adds the Python code for creating two of the FireInIce visualizations.
......@@ -2,8 +2,8 @@ import pandas as pd
import geopandas as gpd
def main(core_data,core_shpfile):
cd = pd.read_excel(core_data)
cd['Latitude'][2] = "58° 51’ 16.1” N" #datafix 2016, C3
cd['Longitude'][2] = "134° 10’ 31.1” W" #datafix 2016, C3
cd.loc[2, 'Latitude'] = "58° 51’ 16.1” N" #datafix 2016, C3
cd.loc[2, 'Longitude'] = "134° 10’ 31.1” W" #datafix 2016, C3
core_name = []
Lat = []
......
......@@ -157,15 +157,6 @@ def main(
buff_west, buff_east, buff_south, buff_north = buffer_shapefile(
west, east, length, south, north, height, 25.0
)
domain_geom = Polygon(
zip(
[buff_west, buff_west, buff_east, buff_east],
[buff_north, buff_south, buff_south, buff_north],
)
)
domain_polygon = gpd.GeoDataFrame(index=[0], crs=utm_crs, geometry=[domain_geom])
buff_length = buff_west - buff_east
buff_height = buff_north - buff_south
# build interpolators to sampling data from dem and ice field
extent = list(get_raster_extent(proj_ds))
......
HUC8s = [19010301,19010304]
sb_id = "5e472c3ee4b0ff554f6837bc"
rule all:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment