SlideShare a Scribd company logo
1 of 25
Download to read offline
Mapping Marijuana:
Eligible Dispensary Locations in
the City of Denver
GIS Analysis, Methods, and Results
Grant Garstka
Senior GIS Analyst
Analysis Overview
January 1st, 2014 -- two-year moratorium on
newcomers to the market on
December 2016, the moratorium was extended an
additional 120 days while City Council further
considered policy and fully assessed the marijuana
industry’s impact on the city and communities.
How many more stores will fit inside the city?
Nobody really understood the situation on the ground.
Presentation Overview
- Not really about
marijuana,
- but GIS spatial allocation
methods and Python
- Analysis Overview
- Two-Phase Approach
- Where are eligible locations
- How many will fit?
Analysis Overview
Tasked to find the total number of centers or stores
that could fit inside the City and County of Denver
• Applied quantitative GIS techniques to find eligible land
– existing store and center locations
– existing pending store and center application locations
– the current zoning regulations and licensing requirements
• Did not consider qualitative data
– Did not use non-numerical information (i.e., conversations, interviews, visual interpretation)
– Did not consider any market conditions
– Did not take into consideration the current land tenant or owner
• Created an automated and scripted process that populates the
map with eligible locations.
– All candidate facilities meet current regulations.
Analysis Criteria
Retail Marijuana Stores and Medical Marijuana Centers cannot be located
1. In any residential zone district as defined by the zoning code of the city
2. In any MS-2, MS-2x, MX-2, MX-2A or MX-2x zone district as defined by the zoning code of the city.
3. In any location where retail sales are prohibited by the zoning code or by any ordinance governing a
Planned Unit Development (PUD).
4. Within one thousand (1,000) feet of any school.
– Using the nearest property line of the land used for school to the nearest portion of the building
in which the store or center is located.
5. Within one thousand (1,000) feet of any other retail marijuana store or medical marijuana center.
– Using the nearest portion of the building in which one store or center is located to the nearest
portion of the building in which the other store or center is located.
6. Within one thousand (1,000) feet of any child care establishment or alcohol or drug treatment
facility.
– Using the nearest property line of the land used for the child care establishment or alcohol or
drug treatment facility to the nearest portion of the property upon which the store or center is
proposed to be located.
Assumptions
– Planned Urban Developments (PUDs), Zone District I-B, and Non-Residential Former
Chapter 59 Zones require additional site review. The analysis treats them equal to other
eligible land
– Eligible land less than 11,294.81 sq ft is not included in the analysis
– Schools, childcare centers, and treatment centers that exist outside the city limits of
Denver are not included in this analysis
– Alcohol and Drug Treatment Centers data obtained from the Colorado Dept. of Human
Services and has not been fully vetted by the city.
– Water and Right-Of-Way eliminated from eligible area
– Certain criteria call for a positive spatial match with a building or a parcel. However, if no
positive match can be made, the geocoded point is used.
Positive Match Unsuccessful Match
Assumptions
Child Care and Treatment Centers
Using the nearest property line of the land used for the child care establishment or
alcohol or drug treatment facility to the nearest portion of the property upon which
the store or center is proposed to be located.
If the buffer intersects
the parcel, whole
parcel is disqualified
Data Model
Developed using ESRI’s ArcGIS ModelBuilder tool
Disqualifying Data
Eligible Land Results
Step 1:
Use criteria
to find all
eligible land
Step 2:
Create a
process to
find the
total
number of
eligible
locations
Additional Assumptions
Placing Random points on the map
– A point has no mass
– A dispensary does have mass. It is a real place on earth.
– Random points assume a store size of 1,018 sq ft.
– The store is circular
Assumed Store Size Buffer
Analysis Problems
Find the Total Eligible Area 1,000 sq ft = Answer?
1,000 ft
100 Stores
Reality is not made of nice tidy boxes
Problem Solving
Pros
You can set a distance requirement.
Cons
User asked to input the number ->
this is what I am trying to figure out
The tool mathematically places
points in the whole bounding area,
not just eligible area.
After running the tool. I am left with
lots of eligible land
Create Random Points Tool
Input 10 points. Captures 7.
Almost there… but
still a long way to go.
Methodology
All eligible land identified
Methodology
Random points are placed within the eligible area
Methodology
Points are buffered 1,000 ft.
Methodology
Eligible land within buffer is removed from eligible area
Methodology
New points are generated, buffered, and land removed
Methodology
New points are generated
This process continues until no more points can be
generated.
The current analysis was 148 iterations
Eligible Area Static Cleanup
Eligible Area Static Cleanup
Eligible Area Static Cleanup
Eligible land less than 11,294.81 sq ft* will not
continue on to the next iteration of analysis
* the average building size for marijuana centers, marijuana stores, or marijuana
pending store/center application permits that fall within a building footprint
Methodology
arcpy.CreateRandomPoints_management(outpath, "point0", inputpoly, "",50,"1018 feet")
print "First random points created...."
count = int(arcpy.GetCount_management("point0").getOutput(0))
print "%s points created" % count
pointnames = []
for i in xrange(len(subsets)-1):
arcpy.Buffer_analysis("point{0}".format(i), "buff{0}".format(i), "1018 feet", dissolve_option="ALL")
print "Buffering"
arcpy.Erase_analysis("Cerase{0}".format(i), "buff{0}".format(i), "Cerase{0}".format(i+1))
print "Erase"
arcpy.FeatureClassToShapefile_conversion("Cerase{0}".format(i+1), r"R:CityDatabmoprojectsMarijuanaForAnalysis")
print "Made new shapefile for single part conversion"
arcpy.RepairGeometry_management(r"R:CityDatabmoprojectsMarijuanaForAnalysisCerase{0}.shp".format(i+1))
print "repaired"
arcpy.MultipartToSinglepart_management(r"R:CityDatabmoprojectsMarijuanaForAnalysisCerase{0}.shp".format(i+1), "SPoutput{0}".format(i+1))
print "Made single part output"
arcpy.MakeFeatureLayer_management("SPoutput{0}".format(i+1), "MFoutput{0}_lyr".format(i+1))
print "made new layer"
arcpy.SelectLayerByAttribute_management ("MFoutput{0}_lyr".format(i+1), "NEW_SELECTION", ""Shape_Area" > 11294.81")
print "selection complete"
arcpy.CopyFeatures_management("MFoutput{0}_lyr".format(i+1), "MFoutput{0}".format(i+1))
print "Made static free output"
arcpy.Dissolve_management("MFoutput{0}".format(i+1), "SPCDerase{0}".format(i+1), "DOCUMENT","", "MULTI_PART")
print "Dissolved layer"
arcpy.CreateRandomPoints_management(outpath, "point{0}".format(i+1), "SPCDerase{0}".format(i+1),"", 50, "1000 feet")
print "Make new random"
pointnames.append("point{0}".format(i+1))
icount = int(arcpy.GetCount_management("point{0}".format(i+1)).getOutput(0))
print "%s points created" % icount
if icount == 0:
break
Analysis Results
Estimated Number
of Future Facilities:
413
Points within Site
Review Areas:
278
Viable Sites:
135
Conclusion
- Random points still not perfect for “Maximum build out,” but it is
pretty close?
- Random points do reflect real world variance
- Way to improve analysis to account for market conditions and
supply/demand
Questions?
Contact information:
Grant Garstka
Grant.Garstka@denvergov.org
720.913.4907
Appendix

More Related Content

Viewers also liked

2016 develoment track: using esri’s java script api to disperse gis data by m...
2016 develoment track: using esri’s java script api to disperse gis data by m...2016 develoment track: using esri’s java script api to disperse gis data by m...
2016 develoment track: using esri’s java script api to disperse gis data by m...GIS in the Rockies
 
2016 asprs track: faa and uavs: what you need to know by caitlin reusch
2016 asprs track:  faa and uavs:  what you need to know by caitlin reusch2016 asprs track:  faa and uavs:  what you need to know by caitlin reusch
2016 asprs track: faa and uavs: what you need to know by caitlin reuschGIS in the Rockies
 
2016 gisco track: gis and emergency response the critical role of gis in a...
2016 gisco track:  gis and emergency response   the critical role of gis in a...2016 gisco track:  gis and emergency response   the critical role of gis in a...
2016 gisco track: gis and emergency response the critical role of gis in a...GIS in the Rockies
 
2016 urisa track: challenges to implementing an enterprise landbase maintenan...
2016 urisa track: challenges to implementing an enterprise landbase maintenan...2016 urisa track: challenges to implementing an enterprise landbase maintenan...
2016 urisa track: challenges to implementing an enterprise landbase maintenan...GIS in the Rockies
 
2016 gisco track: improving GIS Response for Emergency Management by stephani...
2016 gisco track: improving GIS Response for Emergency Management by stephani...2016 gisco track: improving GIS Response for Emergency Management by stephani...
2016 gisco track: improving GIS Response for Emergency Management by stephani...GIS in the Rockies
 
2016 urisa track: ring pattern of older adult population in urban areas by y...
2016 urisa track:  ring pattern of older adult population in urban areas by y...2016 urisa track:  ring pattern of older adult population in urban areas by y...
2016 urisa track: ring pattern of older adult population in urban areas by y...GIS in the Rockies
 
2016 education track: r evolving the classroom by jennifer muha
2016 education track: r evolving the classroom by jennifer muha2016 education track: r evolving the classroom by jennifer muha
2016 education track: r evolving the classroom by jennifer muhaGIS in the Rockies
 
2016 gisco track: mapping right of way by brandi rank and claire brewer
2016 gisco track:  mapping   right of way by brandi rank and claire brewer2016 gisco track:  mapping   right of way by brandi rank and claire brewer
2016 gisco track: mapping right of way by brandi rank and claire brewerGIS in the Rockies
 
2012 URISA Track, Object-Oriented GIS: A Flat Ontology of Pixels, Charlie Jac...
2012 URISA Track, Object-Oriented GIS: A Flat Ontology of Pixels, Charlie Jac...2012 URISA Track, Object-Oriented GIS: A Flat Ontology of Pixels, Charlie Jac...
2012 URISA Track, Object-Oriented GIS: A Flat Ontology of Pixels, Charlie Jac...GIS in the Rockies
 
2016 conservation track: off the-shelf data collection solution for weed mana...
2016 conservation track: off the-shelf data collection solution for weed mana...2016 conservation track: off the-shelf data collection solution for weed mana...
2016 conservation track: off the-shelf data collection solution for weed mana...GIS in the Rockies
 
2016 gisco track: creating a quick map configured to us topo specifications: ...
2016 gisco track: creating a quick map configured to us topo specifications: ...2016 gisco track: creating a quick map configured to us topo specifications: ...
2016 gisco track: creating a quick map configured to us topo specifications: ...GIS in the Rockies
 
2016 asprs track: spatial analysis at the continental scale: a practical app...
2016 asprs track:  spatial analysis at the continental scale: a practical app...2016 asprs track:  spatial analysis at the continental scale: a practical app...
2016 asprs track: spatial analysis at the continental scale: a practical app...GIS in the Rockies
 
2016 conservation track: geospatial and temporal population analysis of short...
2016 conservation track: geospatial and temporal population analysis of short...2016 conservation track: geospatial and temporal population analysis of short...
2016 conservation track: geospatial and temporal population analysis of short...GIS in the Rockies
 
2016 education track: addressing challenges to effective learning in the gis ...
2016 education track: addressing challenges to effective learning in the gis ...2016 education track: addressing challenges to effective learning in the gis ...
2016 education track: addressing challenges to effective learning in the gis ...GIS in the Rockies
 
2016 development track: geospatial java script… so many choices, so little t...
2016 development track: geospatial java script…  so many choices, so little t...2016 development track: geospatial java script…  so many choices, so little t...
2016 development track: geospatial java script… so many choices, so little t...GIS in the Rockies
 
2016 conservation track: broad scale assessment, planning and management of ...
2016 conservation track:  broad scale assessment, planning and management of ...2016 conservation track:  broad scale assessment, planning and management of ...
2016 conservation track: broad scale assessment, planning and management of ...GIS in the Rockies
 
2016 asprs track: gis support for trail planning by jeff orlowski
2016 asprs track: gis support for trail planning by jeff orlowski2016 asprs track: gis support for trail planning by jeff orlowski
2016 asprs track: gis support for trail planning by jeff orlowskiGIS in the Rockies
 
2016 conservation track: evaluating lidar derived synthetic streams as a ...
2016 conservation track: evaluating   lidar derived   synthetic streams as a ...2016 conservation track: evaluating   lidar derived   synthetic streams as a ...
2016 conservation track: evaluating lidar derived synthetic streams as a ...GIS in the Rockies
 

Viewers also liked (18)

2016 develoment track: using esri’s java script api to disperse gis data by m...
2016 develoment track: using esri’s java script api to disperse gis data by m...2016 develoment track: using esri’s java script api to disperse gis data by m...
2016 develoment track: using esri’s java script api to disperse gis data by m...
 
2016 asprs track: faa and uavs: what you need to know by caitlin reusch
2016 asprs track:  faa and uavs:  what you need to know by caitlin reusch2016 asprs track:  faa and uavs:  what you need to know by caitlin reusch
2016 asprs track: faa and uavs: what you need to know by caitlin reusch
 
2016 gisco track: gis and emergency response the critical role of gis in a...
2016 gisco track:  gis and emergency response   the critical role of gis in a...2016 gisco track:  gis and emergency response   the critical role of gis in a...
2016 gisco track: gis and emergency response the critical role of gis in a...
 
2016 urisa track: challenges to implementing an enterprise landbase maintenan...
2016 urisa track: challenges to implementing an enterprise landbase maintenan...2016 urisa track: challenges to implementing an enterprise landbase maintenan...
2016 urisa track: challenges to implementing an enterprise landbase maintenan...
 
2016 gisco track: improving GIS Response for Emergency Management by stephani...
2016 gisco track: improving GIS Response for Emergency Management by stephani...2016 gisco track: improving GIS Response for Emergency Management by stephani...
2016 gisco track: improving GIS Response for Emergency Management by stephani...
 
2016 urisa track: ring pattern of older adult population in urban areas by y...
2016 urisa track:  ring pattern of older adult population in urban areas by y...2016 urisa track:  ring pattern of older adult population in urban areas by y...
2016 urisa track: ring pattern of older adult population in urban areas by y...
 
2016 education track: r evolving the classroom by jennifer muha
2016 education track: r evolving the classroom by jennifer muha2016 education track: r evolving the classroom by jennifer muha
2016 education track: r evolving the classroom by jennifer muha
 
2016 gisco track: mapping right of way by brandi rank and claire brewer
2016 gisco track:  mapping   right of way by brandi rank and claire brewer2016 gisco track:  mapping   right of way by brandi rank and claire brewer
2016 gisco track: mapping right of way by brandi rank and claire brewer
 
2012 URISA Track, Object-Oriented GIS: A Flat Ontology of Pixels, Charlie Jac...
2012 URISA Track, Object-Oriented GIS: A Flat Ontology of Pixels, Charlie Jac...2012 URISA Track, Object-Oriented GIS: A Flat Ontology of Pixels, Charlie Jac...
2012 URISA Track, Object-Oriented GIS: A Flat Ontology of Pixels, Charlie Jac...
 
2016 conservation track: off the-shelf data collection solution for weed mana...
2016 conservation track: off the-shelf data collection solution for weed mana...2016 conservation track: off the-shelf data collection solution for weed mana...
2016 conservation track: off the-shelf data collection solution for weed mana...
 
2016 gisco track: creating a quick map configured to us topo specifications: ...
2016 gisco track: creating a quick map configured to us topo specifications: ...2016 gisco track: creating a quick map configured to us topo specifications: ...
2016 gisco track: creating a quick map configured to us topo specifications: ...
 
2016 asprs track: spatial analysis at the continental scale: a practical app...
2016 asprs track:  spatial analysis at the continental scale: a practical app...2016 asprs track:  spatial analysis at the continental scale: a practical app...
2016 asprs track: spatial analysis at the continental scale: a practical app...
 
2016 conservation track: geospatial and temporal population analysis of short...
2016 conservation track: geospatial and temporal population analysis of short...2016 conservation track: geospatial and temporal population analysis of short...
2016 conservation track: geospatial and temporal population analysis of short...
 
2016 education track: addressing challenges to effective learning in the gis ...
2016 education track: addressing challenges to effective learning in the gis ...2016 education track: addressing challenges to effective learning in the gis ...
2016 education track: addressing challenges to effective learning in the gis ...
 
2016 development track: geospatial java script… so many choices, so little t...
2016 development track: geospatial java script…  so many choices, so little t...2016 development track: geospatial java script…  so many choices, so little t...
2016 development track: geospatial java script… so many choices, so little t...
 
2016 conservation track: broad scale assessment, planning and management of ...
2016 conservation track:  broad scale assessment, planning and management of ...2016 conservation track:  broad scale assessment, planning and management of ...
2016 conservation track: broad scale assessment, planning and management of ...
 
2016 asprs track: gis support for trail planning by jeff orlowski
2016 asprs track: gis support for trail planning by jeff orlowski2016 asprs track: gis support for trail planning by jeff orlowski
2016 asprs track: gis support for trail planning by jeff orlowski
 
2016 conservation track: evaluating lidar derived synthetic streams as a ...
2016 conservation track: evaluating   lidar derived   synthetic streams as a ...2016 conservation track: evaluating   lidar derived   synthetic streams as a ...
2016 conservation track: evaluating lidar derived synthetic streams as a ...
 

Similar to 2016 gisco track: mapping marijuana: eligible dispensary locations in the city of denver by grant garstka

Retail Stores Network: Optimal Size & Geographical Distribution
Retail Stores Network: Optimal Size & Geographical DistributionRetail Stores Network: Optimal Size & Geographical Distribution
Retail Stores Network: Optimal Size & Geographical DistributionSotiris Athanassopoulos
 
CARTO for Retail: Driving Site Selection Decisions with Advanced Spatial Anal...
CARTO for Retail: Driving Site Selection Decisions with Advanced Spatial Anal...CARTO for Retail: Driving Site Selection Decisions with Advanced Spatial Anal...
CARTO for Retail: Driving Site Selection Decisions with Advanced Spatial Anal...CARTO
 
Dr. Stacey Schwabenlander - Minnesota State Perspective on Highly Pathogenic ...
Dr. Stacey Schwabenlander - Minnesota State Perspective on Highly Pathogenic ...Dr. Stacey Schwabenlander - Minnesota State Perspective on Highly Pathogenic ...
Dr. Stacey Schwabenlander - Minnesota State Perspective on Highly Pathogenic ...John Blue
 
Mahesh distribution research
Mahesh distribution researchMahesh distribution research
Mahesh distribution researchVikesh Kumar
 
Le rôle de l’intelligence géospatiale dans la reprise économique
Le rôle de l’intelligence géospatiale dans la reprise économiqueLe rôle de l’intelligence géospatiale dans la reprise économique
Le rôle de l’intelligence géospatiale dans la reprise économiqueCARTO
 
Geophone -- Data Mining Presentation
Geophone -- Data Mining PresentationGeophone -- Data Mining Presentation
Geophone -- Data Mining PresentationRicardo Aguirre
 
Using Spatial Analysis to Drive Post-Pandemic Site Selection in Retail
Using Spatial Analysis to Drive Post-Pandemic Site Selection in RetailUsing Spatial Analysis to Drive Post-Pandemic Site Selection in Retail
Using Spatial Analysis to Drive Post-Pandemic Site Selection in RetailCARTO
 
Using Gis To Solve City Problems
Using Gis To Solve City ProblemsUsing Gis To Solve City Problems
Using Gis To Solve City ProblemsAndrew Harrison
 
Lean startups en el mundo real ejemplos y metricas
Lean startups en el mundo real  ejemplos y metricasLean startups en el mundo real  ejemplos y metricas
Lean startups en el mundo real ejemplos y metricasSoftware Guru
 
Habitat Research Paper (2-26-14)
Habitat Research Paper (2-26-14)Habitat Research Paper (2-26-14)
Habitat Research Paper (2-26-14)Jon Farchmin
 
Ieeepro techno solutions 2013 ieee embedded project concept, design and imp...
Ieeepro techno solutions   2013 ieee embedded project concept, design and imp...Ieeepro techno solutions   2013 ieee embedded project concept, design and imp...
Ieeepro techno solutions 2013 ieee embedded project concept, design and imp...srinivasanece7
 
Smart Urban Planning Support through Web Data Science on Open and Enterprise ...
Smart Urban Planning Support through Web Data Science on Open and Enterprise ...Smart Urban Planning Support through Web Data Science on Open and Enterprise ...
Smart Urban Planning Support through Web Data Science on Open and Enterprise ...Gloria Re Calegari
 
Predictive Analytics: Context and Use Cases
Predictive Analytics: Context and Use CasesPredictive Analytics: Context and Use Cases
Predictive Analytics: Context and Use CasesKimberley Mitchell
 
NDWC Chennai 2013 - Evaluating ABC - Dr Elly Hiby and Lex Hiby
NDWC Chennai 2013 - Evaluating ABC - Dr Elly Hiby and Lex HibyNDWC Chennai 2013 - Evaluating ABC - Dr Elly Hiby and Lex Hiby
NDWC Chennai 2013 - Evaluating ABC - Dr Elly Hiby and Lex HibyDogs Trust
 
Causal reasoning and Learning Systems
Causal reasoning and Learning SystemsCausal reasoning and Learning Systems
Causal reasoning and Learning SystemsTrieu Nguyen
 
Impact of Urban Revitalization in Birmingham Alabama
Impact of Urban Revitalization in Birmingham AlabamaImpact of Urban Revitalization in Birmingham Alabama
Impact of Urban Revitalization in Birmingham AlabamaStormBourne, LLC
 

Similar to 2016 gisco track: mapping marijuana: eligible dispensary locations in the city of denver by grant garstka (20)

Retail Stores Network: Optimal Size & Geographical Distribution
Retail Stores Network: Optimal Size & Geographical DistributionRetail Stores Network: Optimal Size & Geographical Distribution
Retail Stores Network: Optimal Size & Geographical Distribution
 
CARTO for Retail: Driving Site Selection Decisions with Advanced Spatial Anal...
CARTO for Retail: Driving Site Selection Decisions with Advanced Spatial Anal...CARTO for Retail: Driving Site Selection Decisions with Advanced Spatial Anal...
CARTO for Retail: Driving Site Selection Decisions with Advanced Spatial Anal...
 
Dr. Stacey Schwabenlander - Minnesota State Perspective on Highly Pathogenic ...
Dr. Stacey Schwabenlander - Minnesota State Perspective on Highly Pathogenic ...Dr. Stacey Schwabenlander - Minnesota State Perspective on Highly Pathogenic ...
Dr. Stacey Schwabenlander - Minnesota State Perspective on Highly Pathogenic ...
 
Mahesh distribution research
Mahesh distribution researchMahesh distribution research
Mahesh distribution research
 
Le rôle de l’intelligence géospatiale dans la reprise économique
Le rôle de l’intelligence géospatiale dans la reprise économiqueLe rôle de l’intelligence géospatiale dans la reprise économique
Le rôle de l’intelligence géospatiale dans la reprise économique
 
Geophone -- Data Mining Presentation
Geophone -- Data Mining PresentationGeophone -- Data Mining Presentation
Geophone -- Data Mining Presentation
 
Using Spatial Analysis to Drive Post-Pandemic Site Selection in Retail
Using Spatial Analysis to Drive Post-Pandemic Site Selection in RetailUsing Spatial Analysis to Drive Post-Pandemic Site Selection in Retail
Using Spatial Analysis to Drive Post-Pandemic Site Selection in Retail
 
Using Gis To Solve City Problems
Using Gis To Solve City ProblemsUsing Gis To Solve City Problems
Using Gis To Solve City Problems
 
Lean startups en el mundo real ejemplos y metricas
Lean startups en el mundo real  ejemplos y metricasLean startups en el mundo real  ejemplos y metricas
Lean startups en el mundo real ejemplos y metricas
 
om assign.docx
om assign.docxom assign.docx
om assign.docx
 
Habitat Research Paper (2-26-14)
Habitat Research Paper (2-26-14)Habitat Research Paper (2-26-14)
Habitat Research Paper (2-26-14)
 
Ieeepro techno solutions 2013 ieee embedded project concept, design and imp...
Ieeepro techno solutions   2013 ieee embedded project concept, design and imp...Ieeepro techno solutions   2013 ieee embedded project concept, design and imp...
Ieeepro techno solutions 2013 ieee embedded project concept, design and imp...
 
Smart Urban Planning Support through Web Data Science on Open and Enterprise ...
Smart Urban Planning Support through Web Data Science on Open and Enterprise ...Smart Urban Planning Support through Web Data Science on Open and Enterprise ...
Smart Urban Planning Support through Web Data Science on Open and Enterprise ...
 
Predictive Analytics: Context and Use Cases
Predictive Analytics: Context and Use CasesPredictive Analytics: Context and Use Cases
Predictive Analytics: Context and Use Cases
 
NDWC Chennai 2013 - Evaluating ABC - Dr Elly Hiby and Lex Hiby
NDWC Chennai 2013 - Evaluating ABC - Dr Elly Hiby and Lex HibyNDWC Chennai 2013 - Evaluating ABC - Dr Elly Hiby and Lex Hiby
NDWC Chennai 2013 - Evaluating ABC - Dr Elly Hiby and Lex Hiby
 
Smart dustbin
Smart dustbinSmart dustbin
Smart dustbin
 
ch14.ppt
ch14.pptch14.ppt
ch14.ppt
 
ch14.ppt
ch14.pptch14.ppt
ch14.ppt
 
Causal reasoning and Learning Systems
Causal reasoning and Learning SystemsCausal reasoning and Learning Systems
Causal reasoning and Learning Systems
 
Impact of Urban Revitalization in Birmingham Alabama
Impact of Urban Revitalization in Birmingham AlabamaImpact of Urban Revitalization in Birmingham Alabama
Impact of Urban Revitalization in Birmingham Alabama
 

More from GIS in the Rockies

GISCO Fall 2018: Bike Network Equity: A GIS and Qualitative Analysis of Ameri...
GISCO Fall 2018: Bike Network Equity: A GIS and Qualitative Analysis of Ameri...GISCO Fall 2018: Bike Network Equity: A GIS and Qualitative Analysis of Ameri...
GISCO Fall 2018: Bike Network Equity: A GIS and Qualitative Analysis of Ameri...GIS in the Rockies
 
GISCO Fall 2018: Colorado 811: Changes and Challenges – Brian Collison
GISCO Fall 2018: Colorado 811: Changes and Challenges – Brian CollisonGISCO Fall 2018: Colorado 811: Changes and Challenges – Brian Collison
GISCO Fall 2018: Colorado 811: Changes and Challenges – Brian CollisonGIS in the Rockies
 
GISCO Fall 2018: Senate Bill 18-167 and GIS – Dave Murray
GISCO Fall 2018: Senate Bill 18-167 and GIS – Dave MurrayGISCO Fall 2018: Senate Bill 18-167 and GIS – Dave Murray
GISCO Fall 2018: Senate Bill 18-167 and GIS – Dave MurrayGIS in the Rockies
 
2018 GIS in the Rockies Workshop: Coordinate Systems and Projections
2018 GIS in the Rockies Workshop: Coordinate Systems and Projections 2018 GIS in the Rockies Workshop: Coordinate Systems and Projections
2018 GIS in the Rockies Workshop: Coordinate Systems and Projections GIS in the Rockies
 
2018 GIS in Emergency Management: Denver Office of Emergency Management Overview
2018 GIS in Emergency Management: Denver Office of Emergency Management Overview2018 GIS in Emergency Management: Denver Office of Emergency Management Overview
2018 GIS in Emergency Management: Denver Office of Emergency Management OverviewGIS in the Rockies
 
2018 GIS in the Rockies Vendor Showcase (Th): The Data Driven Government
2018 GIS in the Rockies Vendor Showcase (Th): The Data Driven Government2018 GIS in the Rockies Vendor Showcase (Th): The Data Driven Government
2018 GIS in the Rockies Vendor Showcase (Th): The Data Driven GovernmentGIS in the Rockies
 
2018 GIS in the Rockies Vendor Showcase (Th): Solving Real World Issues With ...
2018 GIS in the Rockies Vendor Showcase (Th): Solving Real World Issues With ...2018 GIS in the Rockies Vendor Showcase (Th): Solving Real World Issues With ...
2018 GIS in the Rockies Vendor Showcase (Th): Solving Real World Issues With ...GIS in the Rockies
 
2018 GIS in the Rockies Vendor Showcase (Th): ERDAS Imagine What's New and Ti...
2018 GIS in the Rockies Vendor Showcase (Th): ERDAS Imagine What's New and Ti...2018 GIS in the Rockies Vendor Showcase (Th): ERDAS Imagine What's New and Ti...
2018 GIS in the Rockies Vendor Showcase (Th): ERDAS Imagine What's New and Ti...GIS in the Rockies
 
2018 GIS in the Rockies Vendor Showcase (Th): Building High Performance Gover...
2018 GIS in the Rockies Vendor Showcase (Th): Building High Performance Gover...2018 GIS in the Rockies Vendor Showcase (Th): Building High Performance Gover...
2018 GIS in the Rockies Vendor Showcase (Th): Building High Performance Gover...GIS in the Rockies
 
2018 GIS in Recreation: The Making of a Trail
2018 GIS in Recreation: The Making of a Trail2018 GIS in Recreation: The Making of a Trail
2018 GIS in Recreation: The Making of a TrailGIS in the Rockies
 
2018 GIS in Recreation: The Latest Trail Technology Crowdsourcing Maps and Apps
2018 GIS in Recreation: The Latest Trail Technology Crowdsourcing Maps and Apps2018 GIS in Recreation: The Latest Trail Technology Crowdsourcing Maps and Apps
2018 GIS in Recreation: The Latest Trail Technology Crowdsourcing Maps and AppsGIS in the Rockies
 
2018 GIS in the Rockies: Riparian Shrub Assessment of the Mancos River Canyon...
2018 GIS in the Rockies: Riparian Shrub Assessment of the Mancos River Canyon...2018 GIS in the Rockies: Riparian Shrub Assessment of the Mancos River Canyon...
2018 GIS in the Rockies: Riparian Shrub Assessment of the Mancos River Canyon...GIS in the Rockies
 
2018 GIS in Development: Partnerships Lead to Additional Recreational Content...
2018 GIS in Development: Partnerships Lead to Additional Recreational Content...2018 GIS in Development: Partnerships Lead to Additional Recreational Content...
2018 GIS in Development: Partnerships Lead to Additional Recreational Content...GIS in the Rockies
 
2018 GIS in Recreation: Adding Value to Colorado the Beautiful Initiative carr
2018 GIS in Recreation: Adding Value to Colorado the Beautiful Initiative carr2018 GIS in Recreation: Adding Value to Colorado the Beautiful Initiative carr
2018 GIS in Recreation: Adding Value to Colorado the Beautiful Initiative carrGIS in the Rockies
 
2018 GIS in Recreation: A Creek Runs Through It
2018 GIS in Recreation: A Creek Runs Through It2018 GIS in Recreation: A Creek Runs Through It
2018 GIS in Recreation: A Creek Runs Through ItGIS in the Rockies
 
2018 GIS in Recreation: Virtually Touring the National Trails
2018 GIS in Recreation: Virtually Touring the National Trails2018 GIS in Recreation: Virtually Touring the National Trails
2018 GIS in Recreation: Virtually Touring the National TrailsGIS in the Rockies
 
2018 GIS in the Rockies PLSC Track: Turning Towards the Future
2018 GIS in the Rockies PLSC Track: Turning Towards the Future2018 GIS in the Rockies PLSC Track: Turning Towards the Future
2018 GIS in the Rockies PLSC Track: Turning Towards the FutureGIS in the Rockies
 
2018 GIS in the Rockies PLSC: Intro to PLSS
2018 GIS in the Rockies PLSC: Intro to PLSS2018 GIS in the Rockies PLSC: Intro to PLSS
2018 GIS in the Rockies PLSC: Intro to PLSSGIS in the Rockies
 
2018 GIS in the Rockies PLSC Track: Grid to Ground NATRF2022
2018 GIS in the Rockies PLSC Track: Grid to Ground NATRF20222018 GIS in the Rockies PLSC Track: Grid to Ground NATRF2022
2018 GIS in the Rockies PLSC Track: Grid to Ground NATRF2022GIS in the Rockies
 
2018 GIS in Development: USGS and Citizen Science Success and Enhancements fo...
2018 GIS in Development: USGS and Citizen Science Success and Enhancements fo...2018 GIS in Development: USGS and Citizen Science Success and Enhancements fo...
2018 GIS in Development: USGS and Citizen Science Success and Enhancements fo...GIS in the Rockies
 

More from GIS in the Rockies (20)

GISCO Fall 2018: Bike Network Equity: A GIS and Qualitative Analysis of Ameri...
GISCO Fall 2018: Bike Network Equity: A GIS and Qualitative Analysis of Ameri...GISCO Fall 2018: Bike Network Equity: A GIS and Qualitative Analysis of Ameri...
GISCO Fall 2018: Bike Network Equity: A GIS and Qualitative Analysis of Ameri...
 
GISCO Fall 2018: Colorado 811: Changes and Challenges – Brian Collison
GISCO Fall 2018: Colorado 811: Changes and Challenges – Brian CollisonGISCO Fall 2018: Colorado 811: Changes and Challenges – Brian Collison
GISCO Fall 2018: Colorado 811: Changes and Challenges – Brian Collison
 
GISCO Fall 2018: Senate Bill 18-167 and GIS – Dave Murray
GISCO Fall 2018: Senate Bill 18-167 and GIS – Dave MurrayGISCO Fall 2018: Senate Bill 18-167 and GIS – Dave Murray
GISCO Fall 2018: Senate Bill 18-167 and GIS – Dave Murray
 
2018 GIS in the Rockies Workshop: Coordinate Systems and Projections
2018 GIS in the Rockies Workshop: Coordinate Systems and Projections 2018 GIS in the Rockies Workshop: Coordinate Systems and Projections
2018 GIS in the Rockies Workshop: Coordinate Systems and Projections
 
2018 GIS in Emergency Management: Denver Office of Emergency Management Overview
2018 GIS in Emergency Management: Denver Office of Emergency Management Overview2018 GIS in Emergency Management: Denver Office of Emergency Management Overview
2018 GIS in Emergency Management: Denver Office of Emergency Management Overview
 
2018 GIS in the Rockies Vendor Showcase (Th): The Data Driven Government
2018 GIS in the Rockies Vendor Showcase (Th): The Data Driven Government2018 GIS in the Rockies Vendor Showcase (Th): The Data Driven Government
2018 GIS in the Rockies Vendor Showcase (Th): The Data Driven Government
 
2018 GIS in the Rockies Vendor Showcase (Th): Solving Real World Issues With ...
2018 GIS in the Rockies Vendor Showcase (Th): Solving Real World Issues With ...2018 GIS in the Rockies Vendor Showcase (Th): Solving Real World Issues With ...
2018 GIS in the Rockies Vendor Showcase (Th): Solving Real World Issues With ...
 
2018 GIS in the Rockies Vendor Showcase (Th): ERDAS Imagine What's New and Ti...
2018 GIS in the Rockies Vendor Showcase (Th): ERDAS Imagine What's New and Ti...2018 GIS in the Rockies Vendor Showcase (Th): ERDAS Imagine What's New and Ti...
2018 GIS in the Rockies Vendor Showcase (Th): ERDAS Imagine What's New and Ti...
 
2018 GIS in the Rockies Vendor Showcase (Th): Building High Performance Gover...
2018 GIS in the Rockies Vendor Showcase (Th): Building High Performance Gover...2018 GIS in the Rockies Vendor Showcase (Th): Building High Performance Gover...
2018 GIS in the Rockies Vendor Showcase (Th): Building High Performance Gover...
 
2018 GIS in Recreation: The Making of a Trail
2018 GIS in Recreation: The Making of a Trail2018 GIS in Recreation: The Making of a Trail
2018 GIS in Recreation: The Making of a Trail
 
2018 GIS in Recreation: The Latest Trail Technology Crowdsourcing Maps and Apps
2018 GIS in Recreation: The Latest Trail Technology Crowdsourcing Maps and Apps2018 GIS in Recreation: The Latest Trail Technology Crowdsourcing Maps and Apps
2018 GIS in Recreation: The Latest Trail Technology Crowdsourcing Maps and Apps
 
2018 GIS in the Rockies: Riparian Shrub Assessment of the Mancos River Canyon...
2018 GIS in the Rockies: Riparian Shrub Assessment of the Mancos River Canyon...2018 GIS in the Rockies: Riparian Shrub Assessment of the Mancos River Canyon...
2018 GIS in the Rockies: Riparian Shrub Assessment of the Mancos River Canyon...
 
2018 GIS in Development: Partnerships Lead to Additional Recreational Content...
2018 GIS in Development: Partnerships Lead to Additional Recreational Content...2018 GIS in Development: Partnerships Lead to Additional Recreational Content...
2018 GIS in Development: Partnerships Lead to Additional Recreational Content...
 
2018 GIS in Recreation: Adding Value to Colorado the Beautiful Initiative carr
2018 GIS in Recreation: Adding Value to Colorado the Beautiful Initiative carr2018 GIS in Recreation: Adding Value to Colorado the Beautiful Initiative carr
2018 GIS in Recreation: Adding Value to Colorado the Beautiful Initiative carr
 
2018 GIS in Recreation: A Creek Runs Through It
2018 GIS in Recreation: A Creek Runs Through It2018 GIS in Recreation: A Creek Runs Through It
2018 GIS in Recreation: A Creek Runs Through It
 
2018 GIS in Recreation: Virtually Touring the National Trails
2018 GIS in Recreation: Virtually Touring the National Trails2018 GIS in Recreation: Virtually Touring the National Trails
2018 GIS in Recreation: Virtually Touring the National Trails
 
2018 GIS in the Rockies PLSC Track: Turning Towards the Future
2018 GIS in the Rockies PLSC Track: Turning Towards the Future2018 GIS in the Rockies PLSC Track: Turning Towards the Future
2018 GIS in the Rockies PLSC Track: Turning Towards the Future
 
2018 GIS in the Rockies PLSC: Intro to PLSS
2018 GIS in the Rockies PLSC: Intro to PLSS2018 GIS in the Rockies PLSC: Intro to PLSS
2018 GIS in the Rockies PLSC: Intro to PLSS
 
2018 GIS in the Rockies PLSC Track: Grid to Ground NATRF2022
2018 GIS in the Rockies PLSC Track: Grid to Ground NATRF20222018 GIS in the Rockies PLSC Track: Grid to Ground NATRF2022
2018 GIS in the Rockies PLSC Track: Grid to Ground NATRF2022
 
2018 GIS in Development: USGS and Citizen Science Success and Enhancements fo...
2018 GIS in Development: USGS and Citizen Science Success and Enhancements fo...2018 GIS in Development: USGS and Citizen Science Success and Enhancements fo...
2018 GIS in Development: USGS and Citizen Science Success and Enhancements fo...
 

Recently uploaded

New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 

Recently uploaded (20)

New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 

2016 gisco track: mapping marijuana: eligible dispensary locations in the city of denver by grant garstka

  • 1. Mapping Marijuana: Eligible Dispensary Locations in the City of Denver GIS Analysis, Methods, and Results Grant Garstka Senior GIS Analyst
  • 2. Analysis Overview January 1st, 2014 -- two-year moratorium on newcomers to the market on December 2016, the moratorium was extended an additional 120 days while City Council further considered policy and fully assessed the marijuana industry’s impact on the city and communities. How many more stores will fit inside the city? Nobody really understood the situation on the ground.
  • 3. Presentation Overview - Not really about marijuana, - but GIS spatial allocation methods and Python - Analysis Overview - Two-Phase Approach - Where are eligible locations - How many will fit?
  • 4. Analysis Overview Tasked to find the total number of centers or stores that could fit inside the City and County of Denver • Applied quantitative GIS techniques to find eligible land – existing store and center locations – existing pending store and center application locations – the current zoning regulations and licensing requirements • Did not consider qualitative data – Did not use non-numerical information (i.e., conversations, interviews, visual interpretation) – Did not consider any market conditions – Did not take into consideration the current land tenant or owner • Created an automated and scripted process that populates the map with eligible locations. – All candidate facilities meet current regulations.
  • 5. Analysis Criteria Retail Marijuana Stores and Medical Marijuana Centers cannot be located 1. In any residential zone district as defined by the zoning code of the city 2. In any MS-2, MS-2x, MX-2, MX-2A or MX-2x zone district as defined by the zoning code of the city. 3. In any location where retail sales are prohibited by the zoning code or by any ordinance governing a Planned Unit Development (PUD). 4. Within one thousand (1,000) feet of any school. – Using the nearest property line of the land used for school to the nearest portion of the building in which the store or center is located. 5. Within one thousand (1,000) feet of any other retail marijuana store or medical marijuana center. – Using the nearest portion of the building in which one store or center is located to the nearest portion of the building in which the other store or center is located. 6. Within one thousand (1,000) feet of any child care establishment or alcohol or drug treatment facility. – Using the nearest property line of the land used for the child care establishment or alcohol or drug treatment facility to the nearest portion of the property upon which the store or center is proposed to be located.
  • 6. Assumptions – Planned Urban Developments (PUDs), Zone District I-B, and Non-Residential Former Chapter 59 Zones require additional site review. The analysis treats them equal to other eligible land – Eligible land less than 11,294.81 sq ft is not included in the analysis – Schools, childcare centers, and treatment centers that exist outside the city limits of Denver are not included in this analysis – Alcohol and Drug Treatment Centers data obtained from the Colorado Dept. of Human Services and has not been fully vetted by the city. – Water and Right-Of-Way eliminated from eligible area – Certain criteria call for a positive spatial match with a building or a parcel. However, if no positive match can be made, the geocoded point is used. Positive Match Unsuccessful Match
  • 7. Assumptions Child Care and Treatment Centers Using the nearest property line of the land used for the child care establishment or alcohol or drug treatment facility to the nearest portion of the property upon which the store or center is proposed to be located. If the buffer intersects the parcel, whole parcel is disqualified
  • 8. Data Model Developed using ESRI’s ArcGIS ModelBuilder tool Disqualifying Data
  • 9. Eligible Land Results Step 1: Use criteria to find all eligible land Step 2: Create a process to find the total number of eligible locations
  • 10. Additional Assumptions Placing Random points on the map – A point has no mass – A dispensary does have mass. It is a real place on earth. – Random points assume a store size of 1,018 sq ft. – The store is circular Assumed Store Size Buffer
  • 11. Analysis Problems Find the Total Eligible Area 1,000 sq ft = Answer? 1,000 ft 100 Stores Reality is not made of nice tidy boxes
  • 12. Problem Solving Pros You can set a distance requirement. Cons User asked to input the number -> this is what I am trying to figure out The tool mathematically places points in the whole bounding area, not just eligible area. After running the tool. I am left with lots of eligible land Create Random Points Tool Input 10 points. Captures 7. Almost there… but still a long way to go.
  • 14. Methodology Random points are placed within the eligible area
  • 16. Methodology Eligible land within buffer is removed from eligible area
  • 17. Methodology New points are generated, buffered, and land removed
  • 18. Methodology New points are generated This process continues until no more points can be generated. The current analysis was 148 iterations
  • 21. Eligible Area Static Cleanup Eligible land less than 11,294.81 sq ft* will not continue on to the next iteration of analysis * the average building size for marijuana centers, marijuana stores, or marijuana pending store/center application permits that fall within a building footprint
  • 22. Methodology arcpy.CreateRandomPoints_management(outpath, "point0", inputpoly, "",50,"1018 feet") print "First random points created...." count = int(arcpy.GetCount_management("point0").getOutput(0)) print "%s points created" % count pointnames = [] for i in xrange(len(subsets)-1): arcpy.Buffer_analysis("point{0}".format(i), "buff{0}".format(i), "1018 feet", dissolve_option="ALL") print "Buffering" arcpy.Erase_analysis("Cerase{0}".format(i), "buff{0}".format(i), "Cerase{0}".format(i+1)) print "Erase" arcpy.FeatureClassToShapefile_conversion("Cerase{0}".format(i+1), r"R:CityDatabmoprojectsMarijuanaForAnalysis") print "Made new shapefile for single part conversion" arcpy.RepairGeometry_management(r"R:CityDatabmoprojectsMarijuanaForAnalysisCerase{0}.shp".format(i+1)) print "repaired" arcpy.MultipartToSinglepart_management(r"R:CityDatabmoprojectsMarijuanaForAnalysisCerase{0}.shp".format(i+1), "SPoutput{0}".format(i+1)) print "Made single part output" arcpy.MakeFeatureLayer_management("SPoutput{0}".format(i+1), "MFoutput{0}_lyr".format(i+1)) print "made new layer" arcpy.SelectLayerByAttribute_management ("MFoutput{0}_lyr".format(i+1), "NEW_SELECTION", ""Shape_Area" > 11294.81") print "selection complete" arcpy.CopyFeatures_management("MFoutput{0}_lyr".format(i+1), "MFoutput{0}".format(i+1)) print "Made static free output" arcpy.Dissolve_management("MFoutput{0}".format(i+1), "SPCDerase{0}".format(i+1), "DOCUMENT","", "MULTI_PART") print "Dissolved layer" arcpy.CreateRandomPoints_management(outpath, "point{0}".format(i+1), "SPCDerase{0}".format(i+1),"", 50, "1000 feet") print "Make new random" pointnames.append("point{0}".format(i+1)) icount = int(arcpy.GetCount_management("point{0}".format(i+1)).getOutput(0)) print "%s points created" % icount if icount == 0: break
  • 23. Analysis Results Estimated Number of Future Facilities: 413 Points within Site Review Areas: 278 Viable Sites: 135
  • 24. Conclusion - Random points still not perfect for “Maximum build out,” but it is pretty close? - Random points do reflect real world variance - Way to improve analysis to account for market conditions and supply/demand Questions? Contact information: Grant Garstka Grant.Garstka@denvergov.org 720.913.4907