Skip to content

Commit

Permalink
fixup! Scaffold worksheet endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadain committed Oct 31, 2019
1 parent b29f340 commit 012cd4e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/mmw/apps/geoprocessing_api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1030,8 +1030,10 @@ def start_modeling_worksheet(request, format=None):
Takes a model_input that contains an area of interest, and uses it to
find which HUC-12s intersect with it. For every HUC-12 that intersects
with the area of interest, we make pairs of thue HUC-12 and the clipped
area which is contained within it. For every pair, we make a BMP Worksheet.
Finally, all the worksheets are collected in a ZIP file and downloaded.
area which is contained within it. For every pair, we make a dictionary
of numbers needed to make the BMP Worksheet. This job returns an array
of dictionaries, which should be posted to the /export/worksheet/ endpoint
to get the actual Excel files.
"""
area_of_interest, _ = _parse_input(request)

Expand Down

0 comments on commit 012cd4e

Please sign in to comment.