Automated process for creating service areas?

698
4
03-27-2014 11:14 AM
LushaZhou
New Contributor
Hello all,

Suppose you would like a final map that shows the service areas of a hundred hospitals, based on some sort of network cost (travel time, travel distance). Network Analysis has the service area rings option, but there is too much data for arcGIS and my computer to handle. In addition, there is the question of trimming any overlapping rings afterward. On any of the above, does anyone have any ideas how to proceed?

Thanks!
Tags (2)
0 Kudos
4 Replies
markdenil
Occasional Contributor III
It has been a long time since I did any network analysis, but
I think that Make Location-Allocation Layer (Network Analyst)
is the tool you need to start with,
Then use the Add Locations Tool and the Solve tool.
0 Kudos
LushaZhou
New Contributor
Thank you for the suggestions. One of the main problems is handling the volume of data when using those tools. Often my computer's memory is exceeded before results can be produced. So short of new equipment, I am thinking of using python to feed ArcGIS smaller chunks of data and then piecing it together. Is it just a trial and error way of seeing the largest amount of data it can handle or is there documentation perhaps on such limits?
0 Kudos
markdenil
Occasional Contributor III
Obviously, if processing the whole set is too much,
you need to break the problem up.

Perhaps you could create service areas for each hospital individually,
using a maximum acceptable travel time.

union the polygons of hospital areas,
The single hospital parts represent eash hospital's unique core area
the overlaps tell you which hospitals could potentially service that area.

for each cluster of overlap polys, run allocation for just the hospitals that
are potential servicers

Ignore any allocation outside the selected overlap polygon (or cluster of polygons)
because outside the selected cluster there may be other hospitals,
not included in this round, affecting the allocation.

working through the overlap polys will resolve the potential conflicts
and restrict your analysis runs to just the hospitals participating in the conflict area.
0 Kudos
LushaZhou
New Contributor
Much thanks for your thoughts!
0 Kudos