Skip to content

Commit

Permalink
Fix the unfixed in #530
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailsunni committed Mar 14, 2013
1 parent 63b1c4e commit 699d01e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions safe/impact_functions/volcanic/volcano_building_impact.py
Expand Up @@ -78,12 +78,12 @@ def run(self, layers):
attributes = H.get_data()
rad_m = [x * 1000 for x in radii] # Convert to meters
Z = make_circular_polygon(centers, rad_m, attributes=attributes)
Z.write_to_file('Marapi_evac_zone_%s.shp' % str(radii)) # To check
Z.write_to_file('Marapi_evac_zone_%s.shp' % str(rad_m)) # To check
category_title = 'Radius'
H = Z

#category_names = ['%s m' % x for x in radii]
category_names = radii
category_names = rad_m
else:
# Use hazard map
category_title = 'KRB'
Expand Down

0 comments on commit 699d01e

Please sign in to comment.