Analysing Marked Spatial Point Patterns

Overview

In this hands-on exercise, you will gain hands-on experience on using appropriate R functions to analyse marked spatial point events. The case study aims to discover the spatial point processes of childecare centres by operators in Singapore.

The research questions

The specific questions we would like to answer are as follows: Are the childcare centres operate by different business groups (i.e. NT, PT, RC, ST) are randomly distributed?

The data

To provide answers to the questions above, two data sets will be used. They are: 1. Childcare centre: this data is downloaded from www.data.gov.sg. The original data is in KML format. It has been coverted into ESRI shapefile format. 2. Singapore coastal outline boundary from Singapore Land Authorithy (SLA) (i.e. CostalOutline). It is in ESRI shapefile format.

Installing and Loading the R packages

packages = c('rgdal', 'maptools', 'raster','spatstat', 'tmap')
for (p in packages){
if(!require(p, character.only = T)){
install.packages(p)
}
library(p,character.only = T)
}
## Loading required package: rgdal
## Loading required package: sp
## rgdal: version: 1.4-8, (SVN revision 845)
##  Geospatial Data Abstraction Library extensions to R successfully loaded
##  Loaded GDAL runtime: GDAL 2.4.2, released 2019/06/28
##  Path to GDAL shared files: /Library/Frameworks/R.framework/Versions/3.6/Resources/library/rgdal/gdal
##  GDAL binary built with GEOS: FALSE 
##  Loaded PROJ.4 runtime: Rel. 5.2.0, September 15th, 2018, [PJ_VERSION: 520]
##  Path to PROJ.4 shared files: /Library/Frameworks/R.framework/Versions/3.6/Resources/library/rgdal/proj
##  Linking to sp version: 1.3-2
## Loading required package: maptools
## Checking rgeos availability: TRUE
## Loading required package: raster
## Loading required package: spatstat
## Loading required package: spatstat.data
## Loading required package: nlme
## 
## Attaching package: 'nlme'
## The following object is masked from 'package:raster':
## 
##     getData
## Loading required package: rpart
## 
## spatstat 1.63-3       (nickname: 'Wet paint') 
## For an introduction to spatstat, type 'beginner'
## 
## Note: spatstat version 1.63-3 is out of date by more than 11 weeks; a newer version should be available.
## 
## Attaching package: 'spatstat'
## The following objects are masked from 'package:raster':
## 
##     area, rotate, shift
## Loading required package: tmap

Importing the Spatial Data

The code chunk below will be used to import both geospatial data files into R Since, readOGR() of rgdal package is used, the output will be in SpatialPointsDataFrame and SpatialPolygonsDataframe classes

childcare <- readOGR(dsn = "data/geospatial", layer="CHILDCARE")
## OGR data source with driver: ESRI Shapefile 
## Source: "/Users/theodora/Desktop/IS415/Lesson 9/data/geospatial", layer: "CHILDCARE"
## with 1885 features
## It has 1 fields
sg = readOGR(dsn = "data/geospatial", layer="CostalOutline")
## OGR data source with driver: ESRI Shapefile 
## Source: "/Users/theodora/Desktop/IS415/Lesson 9/data/geospatial", layer: "CostalOutline"
## with 60 features
## It has 4 fields

Mapping geospatial layers

Let us take a quick look at the distribution of the geospatial data by using the code chunk below

tmap_mode("view")
## tmap mode set to interactive viewing
tm_shape(sg) +
  tm_borders(alpha = 0.5) +
tm_shape(childcare) +
  tm_dots(col = 'Type', size = 0.02)
## Warning: The shape sg is invalid. See sf::st_is_valid
## Linking to GEOS 3.7.2, GDAL 2.4.2, PROJ 5.2.0
tmap_mode("plot")
## tmap mode set to plotting

Alternatively, we can use the code chunk below to create four small point maps by using tm_facets() of tmap pckage.

tm_shape(sg) +
  tm_borders(alpha = 0.5) +
tm_shape(childcare) +
  tm_dots(col = 'Type', 
          size = 0.5) +
tm_facets(by="Type")
## Warning: The shape sg is invalid. See sf::st_is_valid

Spatial Data Wrangling

Converting Spatial Points Data Frame into ppp format

The code chunk below uses as (x, “ppp”) or as.ppp(x) of maptools package is used to convert an object x of class SpatialPointsDataFrame to a spatial point pattern in spatstat. In this conversion, the data frame of additional variables in x will become the marks of the point pattern z.

childcare_ppp <- as(childcare, "ppp")
plot(childcare_ppp)

Avoiding duplicated spatial point event by using jittering method

The code chunk below is used to check if there is any duplicated point events

any(duplicated(childcare_ppp))
## [1] TRUE

The result indicates that there are duplicated spatial point event We can use the code chunk below to display the duplicated point events

duplicated(childcare_ppp)
##    [1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##   [13] FALSE FALSE  TRUE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##   [25] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##   [37] FALSE FALSE FALSE FALSE  TRUE FALSE  TRUE  TRUE  TRUE FALSE FALSE FALSE
##   [49] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##   [61] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##   [73] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##   [85] FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##   [97] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE  TRUE
##  [109] FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE
##  [121] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE
##  [133] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [145] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [157] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [169] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE
##  [181] FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [193] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [205] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [217] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [229] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [241] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [253] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [265] FALSE  TRUE FALSE FALSE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE FALSE  TRUE
##  [277] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [289] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [301] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE
##  [313] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [325] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [337] FALSE  TRUE FALSE  TRUE FALSE  TRUE FALSE FALSE FALSE  TRUE FALSE FALSE
##  [349] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [361] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [373] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [385] FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [397] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE  TRUE
##  [409] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [421] FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [433]  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [445] FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [457] FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE
##  [469] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [481] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [493] FALSE FALSE FALSE FALSE  TRUE  TRUE  TRUE  TRUE FALSE FALSE FALSE FALSE
##  [505] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [517] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [529] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [541] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [553] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [565] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE  TRUE  TRUE
##  [577]  TRUE  TRUE  TRUE  TRUE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE
##  [589]  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [601] FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [613] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [625] FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE  TRUE FALSE FALSE FALSE
##  [637] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [649] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [661] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [673] FALSE  TRUE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [685] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [697] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [709] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [721] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE
##  [733] FALSE FALSE FALSE FALSE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
##  [745]  TRUE  TRUE FALSE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE FALSE  TRUE  TRUE
##  [757]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE FALSE FALSE
##  [769] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE
##  [781] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [793] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [805] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE
##  [817] FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [829] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [841] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [853] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [865] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [877] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [889] FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE
##  [901] FALSE  TRUE FALSE FALSE FALSE  TRUE  TRUE FALSE FALSE FALSE FALSE FALSE
##  [913] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [925] FALSE FALSE  TRUE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE
##  [937] FALSE  TRUE  TRUE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [949]  TRUE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [961] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [973]  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
##  [985] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE
##  [997] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1009] FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE
## [1021] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1033] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1045] FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE
## [1057] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1069] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1081] FALSE FALSE FALSE FALSE FALSE FALSE  TRUE  TRUE FALSE FALSE FALSE FALSE
## [1093] FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1105] FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE
## [1117] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1129] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE
## [1141] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1153] FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE  TRUE FALSE FALSE FALSE
## [1165] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE
## [1177]  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1189] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1201] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE
## [1213] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1225] FALSE  TRUE  TRUE  TRUE  TRUE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE
## [1237] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1249] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1261] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE  TRUE
## [1273]  TRUE  TRUE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE
## [1285]  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1297] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1309] FALSE FALSE FALSE FALSE FALSE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
## [1321]  TRUE  TRUE  TRUE FALSE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE FALSE
## [1333]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE FALSE FALSE FALSE FALSE FALSE
## [1345] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1357] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1369] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1381] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1393] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE
## [1405] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1417] FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE
## [1429] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1441] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1453] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE
## [1465]  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1477] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1489] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE
## [1501] FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1513] FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1525] FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE
## [1537] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1549] FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE  TRUE FALSE
## [1561] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1573] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1585] FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE
## [1597] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE
## [1609] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1621] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1633] FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1645]  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1657] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1669] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1681] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1693] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1705] FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1717] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1729] FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE  TRUE  TRUE FALSE FALSE
## [1741] FALSE FALSE FALSE  TRUE FALSE FALSE  TRUE FALSE  TRUE FALSE  TRUE FALSE
## [1753]  TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1765] FALSE FALSE FALSE FALSE FALSE  TRUE  TRUE FALSE FALSE FALSE FALSE  TRUE
## [1777] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1789] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE
## [1801] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1813] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE
## [1825] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1837] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1849] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1861] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
## [1873] FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE FALSE FALSE FALSE FALSE
## [1885] FALSE

The print out above shows that there are several duplication point events (ie TRUE) The code chunk below resolves the duplicated spatial point events issue by using the jittering approach

childcare_ppp_jit <- rjitter(childcare_ppp, retry=TRUE, nsim=1, drop=TRUE)

Check the output to ensure that there is no more duplicated spatial point events in the data

any(duplicated(childcare_ppp))
## [1] TRUE

Creating owin

When analysing spatial point patterns, it is a good practice to confine the analysis within a geographical area like Singapore boundary. In spatstat, an object called owin is specially designed to represent this polygonal region.

The code chunk below is used to covert sg SpatialPolygonsDataFrame object into owin object of spatstat.

sg_sp <- as(sg, "SpatialPolygons")
sg_owin <- as(sg_sp, "owin")
sg_owin
## window: polygonal boundary
## enclosing rectangle: [2663.93, 56047.79] x [16357.98, 50244.03] units

The output object can be displayed by using plot() function

plot(sg_owin)

Combining childcare points and the study area

By using the code below, we are able to extract childcare that is within the specific region to do our analysis later on

childcare_owin <- childcare_ppp_jit[sg_owin]
childcare_owin
## Marked planar point pattern: 1885 points
## Multitype, with levels = NT, PT, RC, ST 
## window: polygonal boundary
## enclosing rectangle: [2663.93, 56047.79] x [16357.98, 50244.03] units

Here, we plot the combined childcare point and Punggol region to prove that it works

plot(childcare_owin)

Analysing Marked Point Patterns

Working with Cross K-Function

Now, we will analyse the relationship of ST (ie PA runs childcare centres) and NT (ie NTUC runs childcare centres) by using Kcross() of spatstat package

childcare_Kcross <- Kcross(childcare_owin, i="NT", j="ST", correction='border')
plot(childcare_Kcross)

Performing CSR testing on the Cross K-Function

The hypothesis and test are as follows: Ho = The distribution of ST childcare centres and NT chilcare centres are at random. H1= The distribution of ST childcare centres and NT chilcare centres are NOT at random. The null hypothesis will be rejected is p-value is smaller than alpha value of 0.001. In order to perform the CSR test, the envelope() of spatstat package will be used

childcare_Kcross.csr <- envelope(childcare_owin, Kcross, i="ST", j="NT", correction='border', nsim=999)
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## Generating 999 simulations of CSR  ...
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## 1,
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## 2,
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## 3,
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## 10 [etd 6:23]
## Warning: point-in-polygon test had difficulty with 77 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## 20 [etd 5:56]
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## 30 [etd 5:45]
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## 40 [etd 5:35]
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 75 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## 50 [etd 5:20]
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## 60 [etd 5:19]
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 70 [etd 5:19]
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 77 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 75 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## 80 [etd 5:23]
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## 90 [etd 5:14]
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## 100 [etd 5:06]
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## 110 [etd 4:57]
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## 120 [etd 4:49]
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## 130 [etd 4:43]
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 40 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 43 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## 140 [etd 4:36]
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 150 [etd 4:30]
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 43 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 76 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## 160 [etd 4:25]
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## 170 [etd 4:19]
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## 180 [etd 4:14]
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 190 [etd 4:10]
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 37 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## 200 [etd 4:06]
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## 210 [etd 4:01]
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## 220 [etd 3:57]
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## 230 [etd 3:53]
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## 240 [etd 3:48]
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## 250 [etd 3:44]
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 44 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## 260 [etd 3:40]
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## 270 [etd 3:37]
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 39 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 37 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## 280 [etd 3:33]
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 44 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## 290
##  [etd 3:30]
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## 300 [etd 3:26]
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## 310 [etd 3:23]
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## 320 [etd 3:21]
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## 330 [etd 3:19]
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## 340 [etd 3:17]
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 77 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## 350 [etd 3:14]
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## 360 [etd 3:13]
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## 370 [etd 3:13]
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 41 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## 380 [etd 3:10]
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## 390 [etd 3:07]
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## 400 [etd 3:03]
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## 410 [etd 3:00]
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 82 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## 420 [etd 2:57]
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## 430 [etd 2:54]
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## 440 [etd 2:51]
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 450 [etd 2:47]
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 460 [etd 2:44]
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## 470 [etd 2:41]
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## 480 [etd 2:37]
## Warning: point-in-polygon test had difficulty with 75 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 77 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## 490 [etd 2:35]
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## 500 [etd 2:31]
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## 510 [etd 2:28]
## Warning: point-in-polygon test had difficulty with 41 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## 520 [etd 2:25]
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## 530 [etd 2:21]
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 540 [etd 2:18]
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## 550 [etd 2:15]
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## 560 [etd 2:12]
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## 570 [etd 2:09]
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## 580
##  [etd 2:06]
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 77 points (total score not 0
## or 1)
## 590 [etd 2:04]
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 81 points (total score not 0
## or 1)
## 600 [etd 2:02]
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## 610 [etd 1:59]
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## 620 [etd 1:57]
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 630 [etd 1:53]
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## 640 [etd 1:51]
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 650 [etd 1:47]
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## 660 [etd 1:44]
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## 670 [etd 1:41]
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## 680 [etd 1:38]
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## 690 [etd 1:35]
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## 700 [etd 1:32]
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## 710 [etd 1:29]
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## 720 [etd 1:25]
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## 730 [etd 1:22]
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## 740 [etd 1:19]
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 44 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 750 [etd 1:16]
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 760 [etd 1:13]
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 42 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 770 [etd 1:10]
## Warning: point-in-polygon test had difficulty with 77 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## 780 [etd 1:07]
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 43 points (total score not 0
## or 1)
## 790 [etd 1:04]
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 75 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 44 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## 800 [etd 1:00]
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 77 points (total score not 0
## or 1)
## 810 [etd 57 sec]
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 81 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 79 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## 820 [etd 54 sec]
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## 830 [etd 51 sec]
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## 840 [etd 48 sec]
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 77 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## 850 [etd 45 sec]
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 78 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## 860 [etd 42 sec]
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 44 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## 870
##  [etd 39 sec]
## Warning: point-in-polygon test had difficulty with 42 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 41 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## 880 [etd 36 sec]
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 43 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## 890 [etd 33 sec]
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## 900 [etd 30 sec]
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## 910 [etd 27 sec]
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 44 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 920 [etd 24 sec]
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## 930 [etd 21 sec]
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## 940 [etd 18 sec]
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 41 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## 950 [etd 15 sec]
## Warning: point-in-polygon test had difficulty with 78 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 81 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 41 points (total score not 0
## or 1)
## 960 [etd 12 sec]
## Warning: point-in-polygon test had difficulty with 38 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 80 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## 970 [etd 9 sec]
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 44 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## 980 [etd 6 sec]
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## 990 [etd 3 sec]
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
##  999.
## 
## Done.
plot(childcare_Kcross.csr, xlab="distance(m)", xlim=c(0,500))

Working with Cross L-Function

The code chunk below will be used to compute Cross L-function.

childcare_Lcross <- Lcross(childcare_owin, i="ST", j="NT", correction='border')
plot(childcare_Lcross, . -r ~ r, 
     xlab = "distance(m)", 
     xlim=c(0, 5000))

Performing CSR testing on Cross L-Function

Ho = The distribution of ST childcare centres and NT chilcare centres are at random. H1= The distribution of ST childcare centres and NT chilcare centres are NOT at random. The null hypothesis will be rejected is p-value is smaller than alpha value of 0.001. Similar to Cross-K-Function, we can perform the CSR test by using envelope() of spatstat package will be used.

childcare_Lcross.csr <- envelope(childcare_owin, Lcross, i="ST", j="NT", correction='border', nsim=999)
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## Generating 999 simulations of CSR  ...
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## 1,
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## 2,
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## 3,
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 77 points (total score not 0
## or 1)
## 10 [etd 5:03]
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## 20 [etd 4:49]
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## 30 [etd 4:42]
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## 40 [etd 4:37]
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 36 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## 50 [etd 4:34]
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## 60 [etd 4:32]
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## 70 [etd 4:31]
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 75 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 80 [etd 4:39]
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## 90 [etd 4:52]
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## 100 [etd 4:53]
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 41 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## 110 [etd 4:49]
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 82 points (total score not 0
## or 1)
## 120 [etd 4:49]
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 130 [etd 4:50]
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## 140 [etd 4:52]
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## 150 [etd 4:49]
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 79 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## 160 [etd 4:44]
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## 170 [etd 4:39]
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 42 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## 180 [etd 4:36]
## Warning: point-in-polygon test had difficulty with 75 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## 190 [etd 4:31]
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## 200 [etd 4:26]
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 210 [etd 4:21]
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 220 [etd 4:16]
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## 230 [etd 4:12]
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 75 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 44 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## 240 [etd 4:09]
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 43 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 250 [etd 4:05]
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 76 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 44 points (total score not 0
## or 1)
## 260 [etd 4:00]
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 42 points (total score not 0
## or 1)
## 270 [etd 3:57]
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## 280 [etd 3:54]
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## 290
##  [etd 3:50]
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 300 [etd 3:47]
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 310 [etd 3:42]
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 320 [etd 3:38]
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 330 [etd 3:35]
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## 340 [etd 3:31]
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 75 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## 350 [etd 3:29]
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 42 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## 360 [etd 3:27]
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 75 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## 370 [etd 3:25]
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 380 [etd 3:22]
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## 390 [etd 3:19]
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## 400 [etd 3:16]
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## 410 [etd 3:14]
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## 420 [etd 3:10]
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 44 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## 430 [etd 3:07]
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## 440 [etd 3:03]
## Warning: point-in-polygon test had difficulty with 41 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## 450 [etd 2:59]
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 77 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## 460 [etd 2:56]
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## 470 [etd 2:52]
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## 480 [etd 2:49]
## Warning: point-in-polygon test had difficulty with 44 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## 490 [etd 2:45]
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## 500 [etd 2:42]
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## 510 [etd 2:38]
## Warning: point-in-polygon test had difficulty with 79 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## 520 [etd 2:35]
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 78 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## 530 [etd 2:31]
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 40 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## 540 [etd 2:28]
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## 550 [etd 2:25]
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 560 [etd 2:21]
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## 570 [etd 2:18]
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## 580
##  [etd 2:14]
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## 590 [etd 2:11]
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 75 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 600 [etd 2:08]
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 44 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 76 points (total score not 0
## or 1)
## 610 [etd 2:04]
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 43 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## 620 [etd 2:01]
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 77 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 630 [etd 1:59]
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 640 [etd 1:56]
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## 650 [etd 1:53]
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 660 [etd 1:50]
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## 670 [etd 1:46]
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## 680 [etd 1:43]
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 76 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## 690 [etd 1:40]
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 77 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## 700 [etd 1:36]
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## 710 [etd 1:33]
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## 720 [etd 1:30]
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## 730 [etd 1:26]
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## 740 [etd 1:23]
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## 750 [etd 1:20]
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 75 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## 760 [etd 1:17]
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## 770 [etd 1:13]
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## 780 [etd 1:10]
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 72 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 81 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## 790 [etd 1:07]
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## 800 [etd 1:04]
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## 810 [etd 1:00]
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## 820 [etd 57 sec]
## Warning: point-in-polygon test had difficulty with 34 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 830 [etd 54 sec]
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## 840 [etd 51 sec]
## Warning: point-in-polygon test had difficulty with 44 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## 850 [etd 48 sec]
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## 860 [etd 45 sec]
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 78 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 75 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## 870
##  [etd 42 sec]
## Warning: point-in-polygon test had difficulty with 43 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 880 [etd 39 sec]
## Warning: point-in-polygon test had difficulty with 77 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## 890 [etd 36 sec]
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 76 points (total score not 0
## or 1)
## 900 [etd 33 sec]
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 45 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## 910 [etd 30 sec]
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## 920 [etd 26 sec]
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 53 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 71 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 930 [etd 23 sec]
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 80 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 48 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## 940 [etd 20 sec]
## Warning: point-in-polygon test had difficulty with 74 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 68 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 65 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 47 points (total score not 0
## or 1)
## 950 [etd 16 sec]
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## 960 [etd 13 sec]
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 46 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## 970 [etd 10 sec]
## Warning: point-in-polygon test had difficulty with 64 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 54 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 58 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 57 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 49 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 63 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 66 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## 980 [etd 6 sec]
## Warning: point-in-polygon test had difficulty with 52 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 70 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 67 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 62 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 69 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 73 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## 990 [etd 3 sec]
## Warning: point-in-polygon test had difficulty with 61 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 56 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 55 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 60 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 76 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 50 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 59 points (total score not 0
## or 1)
## .
## Warning: point-in-polygon test had difficulty with 51 points (total score not 0
## or 1)
##  999.
## 
## Done.