Skip to main content

METHODS article

Front. Neurol., 07 August 2019
Sec. Stroke
This article is part of the Research Topic Geospatial and Transport Modeling in Stroke Service Planning View all 13 articles

An Introduction to Software Tools, Data, and Services for Geospatial Analysis of Stroke Services

  • 1Active Transport Futures, Muenster, Germany
  • 2School of Public Policy and Urban Affairs, Northeastern University, Boston, MA, United States
  • 3Symbolix Pty Ltd, Melbourne, VIC, Australia
  • 4Department of Econometrics and Business Statistics, Monash University, Melbourne, VIC, Australia
  • 5Australian Antarctic Division, Department of the Environment and Energy, Kingston, TAS, Australia
  • 6Clinical Trials Imaging and Informatics Division of Stroke and Aging Research Group, Monash University, Melbourne, VIC, Australia
  • 7Stroke Unit, Monash Medical Centre, Melbourne, VIC, Australia
  • 8Department of Medicine, Monash University, Melbourne, VIC, Australia
  • 9Developmental Imaging, Murdoch Children's Research Institute, Melbourne, VIC, Australia

Background: There is interest in the use geospatial data for development of acute stroke services given the importance of timely access to acute reperfusion therapy. This paper aims to introduce clinicians and citizen scientists to the possibilities offered by open source softwares (R and Python) for analyzing geospatial data. It is hoped that this introduction will stimulate interest in the field as well as generate ideas for improving stroke services.

Method: Instructions on installation of libraries for R and Python, source codes and links to census data are provided in a notebook format to enhance experience with running the software. The code illustrates different aspects of using geospatial analysis: (1) creation of choropleth (thematic) map which depicts estimate of stroke cases per post codes; (2) use of map to help define service regions for rehabilitation after stroke.

Results: Choropleth map showing estimate of stroke per post codes and service boundary map for rehabilitation after stroke. Conclusions The examples in this article illustrate the use of a range of components that underpin geospatial analysis. By providing an accessible introduction to these areas, clinicians and researchers can create code to answer clinically relevant questions on topics such as service delivery and service demand.

1. Introduction

Endovascular clot retrieval (ECR) and thrombolysis enables reperfusion following ischemic stroke and results in dramatic reversal of neurological deficit in selected patients (16). The publication of the DEFUSE3 (Endovascular Therapy Following Imaging Evaluation for Ischemic Stroke) and DAWN (DWI or CTP Assessment with Clinical Mismatch in the Triage of Wake-Up and Late Presenting Strokes Undergoing Neurointervention with Trevo) trials potentially pushed the boundary for performing ECR in a small set of patients to 24 h (7, 8) and thrombolysis to 9 h (6). ECR treatment requires specialist centers with 24 h staffing by skilled stroke teams and interventional radiologists with unrestricted access to angiography suites. Key decisions for governments and policy makers include: how many centers are required to service a specified area, how to identify redundant centers, where should the centers be placed and what is the expected load on the centers (9). Many factors influence the final choice, including the availability of trained interventional neuroradiologists (INR), the number of cases required for INR to retain skills, and costs.

Related to the above considerations is the issue of transport model. One proposed model is direct transport to mothership (ECR hub) whereby ambulance bypass the smaller hospitals including those which are thrombolysis capable and take the patient to directly to the ECR hub (10, 11). The alternative model is the “drip and ship” model whereby patients are brought to the nearest thrombolysis center for advanced imaging and trigging on the need for thrombolytic drug and or ECR. A drawback to the drip and ship model is that there is an additional 99 minutes delay related to a second transfer of the case with large vessel occlusion (LVO) to the mothership (12). Investigators recently proposed inclusion of speed of delivery of thrombolysis as an additional consideration (11). Identification of patients for ECR at the pre-hospital level requires either the use of LVO scale or mobile stroke unit (MSU). Before LVO scales can be used in the field, the impact from its use on ECR hub loading (handling of large volume of ECR and non-ECR cases) has to be tested.

In the writing of this introduction, we have asked several data scientists (software engineers) to contribute the introduction to geospatial analysis for clinicians and other citizen scientists aspiring to work in the field. Alternatively, a deeper understanding of these geospatial methods will enable clinicians to collaborate with other researchers or citizen scientists on models to improve local stroke service. Both codes and data are provided so that once R and Python softwares are installed, the scientist can copy and paste the example codes to test run. These softwares typically involve relatively steep learning curves and as such instructions for running the softwares are provided; please see the more extensive codes and data on our github address https://richardbeare.github.io/GeospatialStroke/. The examples provided here are not exhaustive and are intended to stimulate creative use of these geospatial tools. The two examples we present are a choropleth (thematic map) and a service catchment basin estimation. A choropleth is a thematic map display in which regions are colored by a measure of the region. We use demographic and boundary data from the Australian Bureau of Statistics and incidence data from the NEMESIS (13, 14) study to estimate stroke cases per postcode and display the result on an interactive map. The service catchment basin estimation involves a Monte-Carlo simulation of patients attending a rehabilitation service of 3 hospitals. The catchment basin of each hospital is the region that has lower travel time to that hospital than any other. Catchment basins can be combined with incidence data to estimate load on rehabilitation centers. The data can be used to explore scenarios, such as the removal or addition of service centers.

2. Geospatial Analysis

Geospatial analysis or modeling of spatial data has traditionally been the domain of geographic information systems (GIS) specialists, employing commercial software and data products. Recent years, however, have seen the development of open source tools and free or low cost web services, such as Google Maps, that make geospatial analysis accessible and feasible to the non-specialist citizen scientist. In this article we introduce a family of computational techniques and services, collectively termed geospatial analysis tools, that can be applied to a range of questions relevant to stroke services. The codes used here are for two free and open source software environments—R and Python. Geospatial analysis can also be performed with Matlab (10); this software is not free and will not be discussed further. Geospatial analysis tools allow manipulation and modeling of geospatial data. These tools, data, and modeling techniques have a long track record in the quantitative geography, city and regional planning, and civil engineering research literatures. Geospatial data, in the context of stroke research, includes the location of patients and treatment centers, routes through the road network linking patients to treatment centers, geographic and administrative region boundaries (e.g., post codes, government areas, national boundaries) and disease incidence and demographic information associated with such regions.

2.1. Geospatial Frameworks

In geospatial analysis, the location of a data point on the Earth's surface is referred to in terms of longitude and latitude. In practice, longitude is the X axis and latitude is the Y axis. More complex data, such as national boundaries or administrative or postcode boundaries consist of sets of points connected together in defined orders, typically to produce a closed shape. Other structures, such as road networks, are also constructed using sets of points and include other types of information, such as speed limits, travel direction etc. A geospatial framework provides mechanisms for representing, loading, and saving geospatial data and performing fundamental mathematical operations. For example, the simple features (sf) (15) package, on which our R examples are based, provides structures to represent all manner of shapes and associate them with non-spatial quantities, perform transforms between coordinate systems, display shapes, compute geometric quantities like areas and distances and perform operations like intersections and unions. The equivalent Python framework is the geopandas package that provides a geospatial extension to standard data frames. A key emerging subdomain of geospatial analysis is spatial network analysis. Several open-source packages now exist for modeling and analyzing spatial networks, such as urban street networks, including dodgr for R (16) and OSMnx for Python (17).

2.2. Sources of Regional Data

The examples below use postcode boundary data available from the Australian Bureau of Statistics (the codes for performing this task are available in the Supplementary Material or on the website https://richardbeare.github.io/GeospatialStroke/). It is common for boundaries used in reporting of regional statistics to be available in standard file formats from the reporting bodies or central authorities along with the reported statistics. The regional demographics measures, often derived from national census data, also represent an important source of information for researchers, including age, sex, income, ethnicity etc. For example, in the US, key data sources on sociodemographics and the built environment include the Census Bureau's decennial census (18) (a complete enumeration at fine spatial scales but coarse, decadal temporal scales), American Community Survey (19) (a survey with annual temporal scales, but often fairly large standard errors at small spatial scales due to the sample size), and TIGER/Line shapefiles (20) of tract, municipal, and urbanized area boundaries. A comprehensive repository of US road network models at regional and municipal scales is available on the Harvard Dataverse (21). Additional regional data are frequently available from municipal, state, county, or metropolitan governmental agencies. Demographic data for countries in the European Union are provided by Eurostat (22). This includes time series data from several years to decades on economics, demography, infrastructure, health, traffic, and more of the EU (23). Geographic data for the EU is available through the Geographic Information System of the COmmission (GISCO), part of Eurostat. Similar levels of demographic data are available from France through INSEE (24), Germany through Destatis (25) and, Switzerland through (26). There are a number of European sources of geospatial data (2729).

2.3. Geocoding and Reverse Geocoding

Location information, such as a patient's home address, is often available as a street address, rather than coordinates (a longitude/latitude pair). However, operations such as plotting addresses on a map require coordinates. Geocoding is the process of converting an address to a coordinate pair. Reverse geocoding converts a coordinate pair to an address. Coordinates are useful in many other types of computation, as we shall see in the examples below. There are two common approaches to geocoding and reverse geocoding. The most ubiquitous is via web services such as Google Maps. Other services, such as OpenStreetMap's Nominatim web service and OpenCage (https://opencagedata.com/), provide similar capabilities and all can be queried in an automated way from R and Python (30). The other approach is via a local database of geocoded addresses. One example, for Australia, is the PSMA (formerly Public Sector Mapping Agencies) address database available in an R queryable form. A local database allows many high speed queries, but is often less flexible in terms of query structure than the web services. Web services are discussed in more detail below.

2.4. Distance and Travel Time Estimation

A key part of a number of studies cited above is the estimation of travel time between patient and treatment center. The popularity of personal navigation systems in smartphones has driven the development of extremely sophisticated tools to estimate the fastest route between points. One of the best known, Google Maps1, uses a combination of information about the road network, historic travel time data derived from smartphone users and live information from smartphones. The travel time estimates are thus sensitive to time of day, weather conditions and possibly traffic accidents. Google, and other web services for travel time estimation, can be queried in a similar fashion to the geocoding services. It is also possible to create a local database to represent the road network, allowing more rapid querying, but losing some of the benefits of traffic models.

2.5. Visualization

Two forms of visualization are used in the following examples - static and interactive. Static maps are required for printed reports and typically present a carefully selected view. Interactive maps allow exploration of a data set, via zooming and toggling of overlays. Interactive maps often use web services to provide the background map “tiles,” over which data is superimposed. Different interactive web services specialize in different types of display. Some tools produce static and interactive displays in very similar ways.

2.6. Introduction to Web Services

Web services providing various forms of geospatial capabilities are a crucial component of the geospatial analysis tools now available to researchers. Web services deliver what used to be complex and specialized information products to the general public. Geocoding and travel time estimation are two common examples that have already been discussed. Other capabilities include delivery of tiled maps (such as the Google Maps display), street network and building footprint data (such as from OpenStreetMap), and census data on sociodemographic or built environment characteristics (such as from the US Census Bureau).

2.6.1. Application Programming Interfaces (API)

Web services such as Google Maps are accessible via an API. The API allows software tools, such as R or Python, to make requests to the web service and retrieve results. Thus, if we consider the Google Maps example, not only can a user access a map query for an address via a web browser, but a program can submit the same request. Furthermore, a program can submit a series of automated requests. For example, given a list of addresses, it is relatively simple to generate an R or Python procedure to geocode all of them via a web service. Many APIs such as Google Maps are commercial products and thus charge for use, although the use is often free for small volumes (typical limit is 2,500 queries per day). The combination of these factors tends to mean that many APIs require somewhat complex setup, typically via signup and creation of keys. Terms of use may evolve over time, with charging being introduced, possibly leading to a need to enter credit card details (necessary for Google Maps API). We have endeavored to create examples that do not require keys, simplifying getting started (tmaptools and OpenStreetMap). However, some extensions have been included that do require keys. These are described in Supplementary Material.

2.6.2. OpenStreetMap (OSM)

OSM (https://www.openstreetmap.org/) is a service collecting and distributing crowdsourced geospatial data. Many useful OSM services are available without API keys, and it is thus the platform of choice for examples in this paper. OSM is also unusual in that it allows access to underlying geospatial structures, such as road networks, rather than images generated from those structures. This capability is used to estimate travel time.

2.6.3. Access to the Examples

The examples are available in their source code form from https://github.com/richardbeare/GeospatialStroke/archive/master.zip. “Live” versions and instructions are available at https://richardbeare.github.io/GeospatialStroke/index.html and can be viewed in conjunction with the methods section. The description focuses on the R versions of the examples. Code is visible in the shaded boxes, while output of the code, such as maps, are displayed immediately after the code. Python versions are provided and implement equivalent steps. Details on downloading and running the examples are available in Supplementary Material and at the web site.

3. Methods

The key sections of code used in the methods are presented and described in tables in this article. These pieces of code are not intended to be executed in isolation, and are best appreciated in the complete examples (both code and data), which are too long to include directly in the article, but are available for download, as described in section 2.6.3.

3.1. Example 1: Choropleth to Visualize Estimated Stroke Numbers

3.1.1. Overview

We demonstrate accessing and using different data sources. The first is Australian Bureau of Statistics census data provided at the postcode level for population information, stratified by age, as well as postcode boundary information. The second data source is incidence data from the North East Melbourne Stroke Incidence Study (NEMESIS) (13). This is combined with the first dataset to estimate per-postcode stroke incidence. We demonstrate geocoding by finding the location of a hospital delivering acute stroke services, and then display postcodes within 15 km, coloring each postcode by estimated stroke incidence. The steps involved are described in Tables 1, 2.

TABLE 1
www.frontiersin.org

Table 1. Steps 1-4 in computation of interactive display of choropleth of estimated stroke incidence. R code listings from the demonstration scripts is included.

TABLE 2
www.frontiersin.org

Table 2. Steps 5-7 in computation of interactive display of choropleth of estimated stroke incidence.

3.1.2. Example 2: Service Regions for Stroke Rehabilitation

In the second example we demonstrate the idea of estimating catchment basins for a set of three service centers (network comprising three rehabilitation hospitals servicing a hospital with an acute stroke service). The idea can be easily extended to more service centers. A catchment basin, or catchment area for a service center is the region that is closer to that service center than any other. The definition of “closer” is critical in this calculation, with travel time through the road network being a useful measure for many practical purposes. The approach used in this example involves the sampling of random addresses within a region of interest around the service centers, estimation of travel time from each address to each service center, assignment of addresses to the closest service center, combination of addresses based on service center to form catchment areas. The catchment areas can then be used to estimate loadings on service centers. The steps involved are described in Table 3.

TABLE 3
www.frontiersin.org

Table 3. Steps in computation of catchment basin and case load for rehabilitation centers.

4. Results

The results of the two examples described above are a combination of source code and data and the output from the code. The output consists of visualizations of spatial data and estimates of rehabilitation loadings.

Complete versions of the examples are illustrated online at https://richardbeare.github.io/GeospatialStroke/index.html. A zipfile containing the complete data and code used to create the results can be downloaded from https://github.com/richardbeare/GeospatialStroke/archive/master.zip, and these two resources are the recommended starting point for readers interested in reproducing the results in this paper and getting started with experimentation with the ideas presented.

The key points of the examples are described in tables in the methods sections. However these points are best appreciated in the context of the complete examples.

4.1. Example 1: Choropleth to Visualize Estimated Stroke Numbers

Spatial data, as displayed by an R session, is illustrated in Tables S1, S2. Table S1 shows the hospital coordinates determined via geocoding, while a subset of the combined spatial, demographic and estimated stroke count data is illustrated in Table S2. A visualization of straight-line distance between each postcode and the hospital, useful for verifying the calculation is sensible, is illustrated in Figure 1. Finally, Figure 2 provides a screenshot of the interactive choropleth featuring postcodes in the vicinity of the hospital colored by estimated stroke case load. The display can be exported as a web page and viewed interactively, with the ability to pan and zoom and switch display layers on and off.

FIGURE 1
www.frontiersin.org

Figure 1. Visualization of straightline distance calculation from every postcode in the state to Monash Medical Centre. Static visualization created with tmap.

FIGURE 2
www.frontiersin.org

Figure 2. Choropleth of stroke case load estimate. Postcodes are colored according to estimation of stroke cases derived from demographic data. Screenshot of interactive visualization created with tmap.

4.2. Example 2: Service Regions for Stroke Rehabilitation

Results of geocoding rehabilitation center addresses is shown in Table S3 with the corresponding visualization in Figure 3. A small selection of random addresses is available in Table S4 and the complete set is visualized in Figure 4. Boundaries of postcodes of interest are shown in Figure 5. Figures 68 show addressed-based, polygon-based and road-based views of the computed catchment basin. Figures 9, 10 show alternative visualizations of travel time using a hexagonal height map and a color coded road network. Finally, allocation of random addresses to rehabilitation centers and estimated case loads per catchment center are available in Tables 4, 5.

FIGURE 3
www.frontiersin.org

Figure 3. Locations of the three rehabilitation centers determined by geocoding. Screenshot of interactive visualization created with mapview.

FIGURE 4
www.frontiersin.org

Figure 4. Randomly sampled addresses within the postcodes of interest. One thousand addresses per postcode were sampled, and the differing population density across the postcodes of interest is clearly visible. Screenshot of interactive visualization created with mapview.

FIGURE 5
www.frontiersin.org

Figure 5. Boundaries of postcodes with centroids within 10 km of one of the rehabilitation centers. Screenshot of interactive visualization created with mapview.

FIGURE 6
www.frontiersin.org

Figure 6. Sampled address colorcoded according to nearest destination, with distance to destination computed through the street network. Screenshot of interactive visualization created with mapview.

FIGURE 7
www.frontiersin.org

Figure 7. Polygon representation of rehabilitation center catchment zones. Screenshot of interactive visualization created with mapview.

FIGURE 8
www.frontiersin.org

Figure 8. Road network-based visualization of catchment zones for rehabilitation centers. Screenshot of interactive visualization created with mapdeck (API key required).

FIGURE 9
www.frontiersin.org

Figure 9. Alternative visualization of distances from random addresses to rehabilitation centeres. Screenshot of interactive visualization created with mapdeck (API key required).

FIGURE 10
www.frontiersin.org

Figure 10. Road network visualization of travel times from random addresses to rehabilitation centeres. Screenshot of interactive visualization created with mapdeck (API key required).

TABLE 4
www.frontiersin.org

Table 4. The proportion of randomly sampled addresses allocated to each rehabilitation center via the distance calculation.

TABLE 5
www.frontiersin.org

Table 5. The estimated case load per center, based on combination of per postcode prediction based on demographics and assignment based on distance calculations.

5. Discussion

There are many potential advantages to including geospatial variables such as location of patients and travel times to treatment centers when analyzing performance of, or modeling stroke treatment pathways. The ability to accurately model parts of the treatment pathway is important when fairly allocating limited resources, optimizing the placement of those resources, forecasting changes in loading in response to change in population distribution and investigating how to best utilize new technology or treatment options. In this article we have introduced some of the fundamental geospatial analysis components and provided reproducible examples using those components in a form that we hope will reduce the steep learning curve for researchers new to the area. In the writing of this paper, we heeded the call from this special issue of Frontiers in Neurology to provide source codes and enable both stroke researchers and “…citizen scientist to explore ideas in transportation and access to stroke therapy.” Recent years have seen increasing use of geospatial analysis techniques, similar to those explored in this paper, in stroke research as well as other health related areas. Two scenarios, with different spatial scales, for provision of acute stroke services are explored in Allen et al. (31) via an optimization framework, where the costs being optimized are derived from geospatial measures, including travel time. Implications of new technology (MSU) for rural patients is discussed in Mathur et al. (32) and urban application of the same technology is quantitatively analyzed in Phan et al. (33), with analysis exploiting travel time derived from web services to estimate deployment boundaries. Rather than providing further examples in acute stroke services of which are published in his special topic (3133) we had provided examples here in terms of rehabilitation service provided by 3 hospitals attached to an ECR hub (Figures 310). Fair distribution of load across the hospital network is possible while allowing the patients and family unit in close contact, in keeping with the idea of patient centrad design. These studies discussed here were conducted to inform decisions under specific assumptions and in relation to individual urban environments (i.e. specific cities). However, they share common analytical ideas and data, namely geospatial analysis tools of the form explored in this paper. Use of these frameworks allow relevant research to be extended to different urban environments and extended as new assessment tools or treatment or transport options become available. For example, the tools described in this paper allow a researcher and citizen scientist to explore how the models relate to their own city as the key data, travel time and center location, can be collected easily from web services (10, 11) Furthermore, the analysis could be modified to investigate the effect of a new LVO assessment tool on decision making (34). The focus of discussion thus far has been on acute stroke services, however there are applications in many other health areas. For example, effects of traffic conditions on staff recall times for ST elevation myocardial infarction patients has been explored using similar approaches (35). Finally, geospatial analysis can be adapted to evaluation of brain health as seen in a recent study of the associations between brain measures and a neighborhood walkability index computed from geospatial data (36).

5.1. Limitations

In this project, we have provided examples in urban setting only. Modeling of transport in non-urban rural setting can be complex as it may have to take into account air transport.

A limitation of the current work in which the traffic model is based on Google Maps API, is that it does not take into account population growth and change in road network. In a paper in this journal, strategic transport model was used to assess stability of the geospatial model over time (37). Further geospatial analysis is only one component of a complex equation governing decisions on optimal centralized models for acute stroke therapy. As alluded to earlier in the article, the equation would also involve hospital capacity, availability of interventional neuroradiologists and stroke neurologists. For example, in the State of Victoria, Australia there are currently 13 certified interventional neuroradiologists with the majority of these currently in the two designated clot retrieval hubs http://www.ccinr.org.au/register (accessed 23/3/2019). As such adding a third hub in this centralized acute stroke therapy model would require acquisition of additional personnel. The choice of a model such as direct transfer to “mothership” for all patients would require modeling to estimate its effect on capacity of “mothership” to handle evaluation of all stroke cases since 84% of acute stroke cases do not go on to ECR (38). These types of modeling, such as discrete event simulation and agent-based modeling, were not covered in this introduction to software for geospatial analysis. An alternative strategy to support the “mothership” model is the use of bedside tools to screen patients for LVO (34). These tools have not yet been rigorously and prospectively tested in the field, nor has the impact of these tools on hospital case load been tested.

6. Conclusion

Computational frameworks facilitatinig analysis of geospatial data are now more accessible than ever before due to the combination of open source software tools, increasing availability of geospatial, demographic and other relevant health data from government and administrative bodies and a plethora of web services offering advanced geospatial data products. These tools are extremely powerful and flexible and offer the potential to address many important questions in stroke treatment. We hope this paper provides a useful introduction to researchers wanting to utilize spatial data. We invite the reader and citizen scientist to take the next step.

Data Availability

Publicly available datasets were analyzed in this study. The data and code can be found here: https://github.com/richardbeare/GeospatialStroke/archive/master.zip.

Author Contributions

RB, TP, MP, NT, DC, MS, and GB contributed to the research plan. RB, GB, MP, MS, and DC wrote the code. RB, TP, NT, GB, and MS wrote the manuscript and provided critical reviews.

Conflict of Interest Statement

DC is employed by company Symbolix Pty Ltd. TP is on the Advisory Board of Genzyme on Fabry Disease and has received payment for lectures including service on speakers' bureaus for Bayer, Boehringer Ingelheim, Pfizer, and Genzyme.

The remaining authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.

Supplementary Material

The Supplementary Material for this article can be found online at: https://www.frontiersin.org/articles/10.3389/fneur.2019.00743/full#supplementary-material

Footnotes

1. ^the two APIs involved are the directions api and distance api.

References

1. Berkhemer OA, Fransen PS, Beumer D, van den Berg LA, Lingsma HF, Yoo AJ, et al. A randomized trial of intraarterial treatment for acute ischemic stroke. N Eng J Med. (2015) 372:11–20. doi: 10.1056/NEJMoa1411587

PubMed Abstract | CrossRef Full Text | Google Scholar

2. Goyal M, Menon BK, Van Zwam WH, Dippel DW, Mitchell PJ, Demchuk AM, et al. Endovascular thrombectomy after large-vessel ischaemic stroke: a meta-analysis of individual patient data from five randomised trials. Lancet. (2016) 387:1723–31. doi: 10.1016/S0140-6736(16)00163-X

PubMed Abstract | CrossRef Full Text | Google Scholar

3. Goyal M, Demchuk AM, Menon BK, Eesa M, Rempel JL, Thornton J, et al. Randomized assessment of rapid endovascular treatment of ischemic stroke. N Eng J Med. (2015) 372:1019–30. doi: 10.1056/NEJMoa1414905

PubMed Abstract | CrossRef Full Text | Google Scholar

4. Campbell BC, Mitchell PJ, Kleinig TJ, Dewey HM, Churilov L, Yassi N, et al. Endovascular therapy for ischemic stroke with perfusion-imaging selection. N Eng J Med. (2015) 372:1009–18. doi: 10.1056/NEJMoa1414792

PubMed Abstract | CrossRef Full Text | Google Scholar

5. Saver JL, Goyal M, Bonafe A, Diener HC, Levy EI, Pereira VM, et al. Stent-retriever thrombectomy after intravenous t-PA vs. t-PA alone in stroke. N Eng J Med. (2015) 372:2285–95. doi: 10.1056/NEJMoa1415061

PubMed Abstract | CrossRef Full Text | Google Scholar

6. Ma H, Campbell BC, Parsons MW, Churilov L, Levi CR, Hsu C, et al. Thrombolysis guided by perfusion imaging up to 9 hours after onset of stroke. N Eng J Med. (2019) 380:1795–803. doi: 10.1056/NEJMoa1813046

PubMed Abstract | CrossRef Full Text | Google Scholar

7. Nogueira RG, Jadhav AP, Haussen DC, Bonafe A, Budzik RF, Bhuva P, et al. Thrombectomy 6 to 24 hours after stroke with a mismatch between deficit and infarct. N Eng J Med. (2018) 378:11–21. doi: 10.1056/NEJMoa1706442

PubMed Abstract | CrossRef Full Text | Google Scholar

8. Albers GW, Marks MP, Kemp S, Christensen S, Tsai JP, Ortega-Gutierrez S, et al. Thrombectomy for stroke at 6 to 16 hours with selection by perfusion imaging. N Eng J Med. (2018) 378:708–18. doi: 10.1056/NEJMoa1713973

PubMed Abstract | CrossRef Full Text | Google Scholar

9. Phan TG, Beare R, Chen J, Clissold B, Ly J, Singhal S, et al. Googling service boundaries for endovascular clot retrieval hub hospitals in a metropolitan setting. Stroke. (2017) 48:1353–61. doi: 10.1161/STROKEAHA.116.015323

PubMed Abstract | CrossRef Full Text | Google Scholar

10. Milne MSW, Holodinsky JK, Hill MD, Nygren A, Qiu C, Goyal M, et al. Drip ‘n ship versus mothership for endovascular treatment. Stroke. (2017) 48:791–4. doi: 10.1161/STROKEAHA.116.015321

PubMed Abstract | CrossRef Full Text | Google Scholar

11. Holodinsky JK, Williamson TS, Demchuk AM, Zhao H, Zhu L, Francis MJ, et al. Modeling stroke patient transport for all patients with suspected large-vessel occlusion. JAMA Neurol. (2018) 75:1477–86. doi: 10.1001/jamaneurol.2018.242

PubMed Abstract | CrossRef Full Text | Google Scholar

12. Froehler MT, Saver JL, Zaidat OO, Jahan R, Aziz-Sultan MA, Klucznik RP, et al. Interhospital transfer before thrombectomy is associated with delayed treatment and worse outcome in the STRATIS registry (systematic evaluation of patients treated with neurothrombectomy devices for acute ischemic stroke). Circulation. (2017) 136:2311–21. doi: 10.1161/CIRCULATIONAHA.117.028920

PubMed Abstract | CrossRef Full Text | Google Scholar

13. Thrift AG, Dewey HM, Macdonell RA, McNeil JJ, Donnan GA. Stroke incidence on the east coast of australia: the north east melbourne stroke incidence study(Nemesis). Stroke. (2000) 31:2087–92. doi: 10.1161/01.STR.31.9.2087

PubMed Abstract | CrossRef Full Text | Google Scholar

14. Azarpazhooh M, Nicol MB, Donnan GA, Dewey HM, Sturm JW, Macdonell RA, et al. Patterns of stroke recurrence according to subtype of first stroke event: the North East Melbourne Stroke Incidence Study (NEMESIS). Int J Stroke. (2008) 3:158–64. doi: 10.1111/j.1747-4949.2008.00204.x

PubMed Abstract | CrossRef Full Text | Google Scholar

15. Pebesma E. Simple features for R: standardized support for spatial vector data. R J. (2018) 10:439–46. doi: 10.32614/RJ-2018-009

CrossRef Full Text | Google Scholar

16. Padgham M. dodgr: An R Package for Network Flow Aggregation. Transport Findings (2019). Available online at: https://transportfindings.org/article/6945-dodgr-an-r-package-for-network-flow-aggregation (accessed March 06, 2019).

17. Boeing G. OSMnx: new methods for acquiring, constructing, analyzing, and visualizing complex street networks. Comput Environ Urban Syst. (2017) 65:126–39. doi: 10.32866/6945

CrossRef Full Text | Google Scholar

18. US Census Bureau CHS. Decennial census - history - u. S. Census bureau. (2019). Available online at: https://www.census.gov/history/www/programs/demographic/decennial_census.html (accessed February 19, 2019).

19. Bureau UC. American Community Survey(Acs). (2019). Available online at: https://www.census.gov/programs-surveys/acs (accessed February 19, 2019).

20. Geography UCB. Tiger/line® shapefiles and tiger/line® files (2019). Available online at: https://www.census.gov/geo/maps-data/data/tiger-line.html (accessed February 19, 2019).

21. Boeing G. Street network models and measures for every U.S. City, county, urbanized area, census tract, and zillow-defined neighborhood. Urban Sci. (2019) 3:28. doi: 10.3390/urbansci3010028

CrossRef Full Text | Google Scholar

22. Eurostat. GISCO A Geographic Information System of the Commission. (2015). European Union. Available online at: https://ec.europa.eu/eurostat/web/products-catalogues/-/KS-04-14-908 (accessed February 19, 2019).

Google Scholar

23. Lahti L, Huovari J, Kainus M, Biecek P. Retrieval and analysis of Eurostat open data with the eurostat package. R J. (2017) 9:385–92. doi: 10.32614/RJ-2017-019

CrossRef Full Text | Google Scholar

24. Résultats de la recherche | Insee,. (2019). Available online at: https://www.insee.fr/en/statistiques (accessed February 19, 2019).

25. Homepage-Federal Statistical Office(Destatis),. (2019). Available online at: https://www-genesis.destatis.de/genesis/online/logon?language=en (accessed February 23, 2019).

26. Office FS. Federal Statistical Office. (2019). Available online at: https://www.bfs.admin.ch/bfs/en/home.html (accessed February 19, 2019).

27. Download Data by Country | DIVA-GIS,. (2019). Available online at http://www.diva-gis.org/gdata (accessed February 23, 2019).

28. Dienstleistungszentrum. (2019). Available online at: https://www.geodatenzentrum.de/geodaten/gdz_rahmen.gdz_div?gdz_spr=eng&gdz_akt_zeile=5&gdz_anz_zeile=1&gdz_unt_zeile=0&gdz_user_id=0 (accessed February 23, 2019).

29. Swisstopo Online Shop,. (2019). Available online at: https://shop.swisstopo.admin.ch/en/products/landscape/boundaries3D (accessed February 23, 2019).

30. Salmon M. Opencage: Interface to the OpenCage API. (2018). R package version 0.1.4. Available online at: https://CRAN.R-project.org/package=opencage (accessed February 19, 2019).

31. Allen M, Pearn K, Villeneuve E, James M, Stein K. Planning and providing acute stroke care in England: the effect of planning footprint size. Front. Neurol. (2019) 10:150. doi: 10.3389/fneur.2019.00150

PubMed Abstract | CrossRef Full Text | Google Scholar

32. Mathur S, Walter S, Grunwald IQ, Helwig SA, Lesmeister M, Fassbender K. Improving prehospital stroke services in rural and underserved settings with mobile stroke units. Front Neurol. (2019) 10:159. doi: 10.3389/fneur.2019.00159

PubMed Abstract | CrossRef Full Text | Google Scholar

33. Phan TG, Beare R, Parsons M, Zhao H, Davis SM, Donnan G, et al. Googling boundaries for operating Mobile Stroke Unit for Stroke Codes. Front Neurol. (2019) 10:331. doi: 10.3389/fneur.2019.00331

PubMed Abstract | CrossRef Full Text | Google Scholar

34. Vidale S, Arnaboldi M, Frangi L, Longoni M, Monza G, Agostoni E. The large ARtery intracranial occlusion stroke scale: a new tool with high accuracy in predicting large vessel occlusion. Front Neurol. (2019) 10:130. doi: 10.3389/fneur.2019.00130

PubMed Abstract | CrossRef Full Text | Google Scholar

35. Cole J, Beare R, Phan TG, Srikanth V, MacIsaac A, Tan C, et al. Staff recall travel time for ST elevation myocardial infarction impacted by traffic congestion and distance: a digitally integrated map software study. Front Cardiovas Med. (2018) 4:89. doi: 10.3389/fcvm.2017.00089

PubMed Abstract | CrossRef Full Text | Google Scholar

36. Cerin E, Rainey-Smith SR, Ames D, Lautenschlager NT, Macaulay SL, Fowler C, et al. Associations of neighborhood environment with brain imaging outcomes in the Australian Imaging, Biomarkers and Lifestyle cohort. Alzheimer's Dement. (2017) 13:388–98. doi: 10.1016/j.jalz.2016.06.2364

PubMed Abstract | CrossRef Full Text | Google Scholar

37. Tajaddini A, Phan TG, R B, H M, Srikanth G V, Curri Vu HL. Application of strategic transport model and Google Maps to develop better stroke service. Front Neurol. (2019) 10:692. doi: 10.3389/fneur.2019.00692

PubMed Abstract | CrossRef Full Text | Google Scholar

38. Man S, Zhao X, Uchino K, Hussain MS, Smith EE, Bhatt DL, et al. Comparison of acute ischemic stroke care and outcomes between comprehensive stroke centers and primary stroke centers in the United States. Circ Cardiovasc Qual Outcomes. (2018) 11:e004512. doi: 10.1161/CIRCOUTCOMES.117.004512

PubMed Abstract | CrossRef Full Text | Google Scholar

Keywords: geospatial, software, data, review, stroke, emergency clot retrieval

Citation: Padgham M, Boeing G, Cooley D, Tierney N, Sumner M, Phan TG and Beare R (2019) An Introduction to Software Tools, Data, and Services for Geospatial Analysis of Stroke Services. Front. Neurol. 10:743. doi: 10.3389/fneur.2019.00743

Received: 08 April 2019; Accepted: 25 June 2019;
Published: 07 August 2019.

Edited by:

Robin Lemmens, University Hospitals Leuven, Belgium

Reviewed by:

Ludwig Schlemm, Charité Medical University of Berlin, Germany
Grant Mair, University of Edinburgh, United Kingdom

Copyright © 2019 Padgham, Boeing, Cooley, Tierney, Sumner, Phan and Beare. This is an open-access article distributed under the terms of the Creative Commons Attribution License (CC BY). The use, distribution or reproduction in other forums is permitted, provided the original author(s) and the copyright owner(s) are credited and that the original publication in this journal is cited, in accordance with accepted academic practice. No use, distribution or reproduction is permitted which does not comply with these terms.

*Correspondence: Richard Beare, Richard.Beare@monash.edu

Disclaimer: All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article or claim that may be made by its manufacturer is not guaranteed or endorsed by the publisher.