From aa408a20f8e351b537662afb208045365ee01f6e Mon Sep 17 00:00:00 2001 From: Andrea Santurbano Date: Tue, 10 Jul 2018 22:21:43 +0200 Subject: [PATCH] First Commit --- Dockerfile | 13 + README.md | 2 +- neo4j-zeppelin.yml | 25 + zeppelin/conf/helium.json | 9 + zeppelin/conf/interpreter.json | 1652 +++++++++++++++++++++++++ zeppelin/notebook/2DHCVSHV5/note.json | 625 ++++++++++ 6 files changed, 2325 insertions(+), 1 deletion(-) create mode 100644 Dockerfile create mode 100644 neo4j-zeppelin.yml create mode 100644 zeppelin/conf/helium.json create mode 100644 zeppelin/conf/interpreter.json create mode 100644 zeppelin/notebook/2DHCVSHV5/note.json diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ec9bf62 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM apache/zeppelin:0.8.0 + +# Workaround to "fix" https://issues.apache.org/jira/browse/ZEPPELIN-3586 + +RUN echo "$LOG_TAG Download Spark binary" && \ + wget -O /tmp/spark-2.3.1-bin-hadoop2.7.tgz http://apache.panu.it/spark/spark-2.3.1/spark-2.3.1-bin-hadoop2.7.tgz && \ + tar -zxvf /tmp/spark-2.3.1-bin-hadoop2.7.tgz && \ + rm -rf /tmp/spark-2.3.1-bin-hadoop2.7.tgz && \ + mv spark-2.3.1-bin-hadoop2.7 /spark-2.3.1-bin-hadoop2.7 + +ENV SPARK_HOME=/spark-2.3.1-bin-hadoop2.7 + +CMD ["bin/zeppelin.sh"] \ No newline at end of file diff --git a/README.md b/README.md index 3963b37..58919b2 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# zeppelin-neo4j \ No newline at end of file +This repository contains the code relative to the article "Building a Graph Data Pipeline With Zeppelin Spark and Neo4j" \ No newline at end of file diff --git a/neo4j-zeppelin.yml b/neo4j-zeppelin.yml new file mode 100644 index 0000000..5e9e978 --- /dev/null +++ b/neo4j-zeppelin.yml @@ -0,0 +1,25 @@ +version: '3' + +services: + neo4j: + image: neo4j + networks: + - host + ports: + - 7474:7474 + - 7687:7687 + environment: + - NEO4J_AUTH=neo4j/zeppelin + zeppelin: + build: + context: . + image: santand84/zeppelin:0.8.0 + networks: + - host + ports: + - 8080:8080 + volumes: + - C:/Users/a.santurbano/Desktop/zep-neo/zeppelin/notebook:/zeppelin/notebook + - C:/Users/a.santurbano/Desktop/zep-neo/zeppelin/conf:/zeppelin/conf +networks: + host: \ No newline at end of file diff --git a/zeppelin/conf/helium.json b/zeppelin/conf/helium.json new file mode 100644 index 0000000..130ccb5 --- /dev/null +++ b/zeppelin/conf/helium.json @@ -0,0 +1,9 @@ +{ + "enabled": { + "volume-leaflet": "volume-leaflet@1.0.3" + }, + "packageConfig": {}, + "bundleDisplayOrder": [ + "volume-leaflet" + ] +} \ No newline at end of file diff --git a/zeppelin/conf/interpreter.json b/zeppelin/conf/interpreter.json new file mode 100644 index 0000000..85e2c8e --- /dev/null +++ b/zeppelin/conf/interpreter.json @@ -0,0 +1,1652 @@ +{ + "interpreterSettings": { + "ignite": { + "id": "ignite", + "name": "ignite", + "group": "ignite", + "properties": { + "ignite.config.url": { + "name": "ignite.config.url", + "value": "", + "type": "url" + }, + "ignite.clientMode": { + "name": "ignite.clientMode", + "value": true, + "type": "checkbox" + }, + "ignite.peerClassLoadingEnabled": { + "name": "ignite.peerClassLoadingEnabled", + "value": true, + "type": "checkbox" + }, + "ignite.jdbc.url": { + "name": "ignite.jdbc.url", + "value": "jdbc:ignite:cfg://default-ignite-jdbc.xml", + "type": "string" + }, + "ignite.addresses": { + "name": "ignite.addresses", + "value": "127.0.0.1:47500..47509", + "type": "textarea" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "ignite", + "class": "org.apache.zeppelin.ignite.IgniteInterpreter", + "defaultInterpreter": false, + "editor": { + "editOnDblClick": false, + "completionSupport": false + } + }, + { + "name": "ignitesql", + "class": "org.apache.zeppelin.ignite.IgniteSqlInterpreter", + "defaultInterpreter": false, + "editor": { + "editOnDblClick": false, + "completionSupport": false + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "python": { + "id": "python", + "name": "python", + "group": "python", + "properties": { + "zeppelin.python": { + "name": "zeppelin.python", + "value": "python", + "type": "string" + }, + "zeppelin.ipython.launch.timeout": { + "name": "zeppelin.ipython.launch.timeout", + "value": "30000", + "type": "number" + }, + "zeppelin.python.maxResult": { + "name": "zeppelin.python.maxResult", + "value": "1000", + "type": "number" + }, + "zeppelin.python.useIPython": { + "name": "zeppelin.python.useIPython", + "value": true, + "type": "checkbox" + }, + "zeppelin.ipython.grpc.message_size": { + "name": "zeppelin.ipython.grpc.message_size", + "value": "33554432", + "type": "number" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "python", + "class": "org.apache.zeppelin.python.PythonInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "python", + "editOnDblClick": false, + "completionSupport": true + } + }, + { + "name": "ipython", + "class": "org.apache.zeppelin.python.IPythonInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "python", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + } + }, + { + "name": "sql", + "class": "org.apache.zeppelin.python.PythonInterpreterPandasSql", + "defaultInterpreter": false, + "editor": { + "language": "sql", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": false + } + }, + { + "name": "conda", + "class": "org.apache.zeppelin.python.PythonCondaInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "sh", + "editOnDblClick": false, + "completionSupport": false + } + }, + { + "name": "docker", + "class": "org.apache.zeppelin.python.PythonDockerInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "sh", + "editOnDblClick": false, + "completionSupport": false + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "sap": { + "id": "sap", + "name": "sap", + "group": "sap", + "properties": { + "universe.api.url": { + "name": "universe.api.url", + "value": "http://localhost:6405/biprws", + "type": "url" + }, + "universe.authType": { + "name": "universe.authType", + "value": "secEnterprise", + "type": "string" + }, + "universe.user": { + "name": "universe.user", + "value": "", + "type": "string" + }, + "universe.password": { + "name": "universe.password", + "value": "", + "type": "password" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "universe", + "class": "org.apache.zeppelin.sap.UniverseInterpreter", + "defaultInterpreter": true, + "editor": { + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "jdbc": { + "id": "jdbc", + "name": "jdbc", + "group": "jdbc", + "properties": { + "default.url": { + "name": "default.url", + "value": "jdbc:postgresql://localhost:5432/", + "type": "string" + }, + "default.driver": { + "name": "default.driver", + "value": "org.postgresql.Driver", + "type": "string" + }, + "zeppelin.jdbc.principal": { + "name": "zeppelin.jdbc.principal", + "value": "", + "type": "string" + }, + "default.completer.ttlInSeconds": { + "name": "default.completer.ttlInSeconds", + "value": "120", + "type": "number" + }, + "default.password": { + "name": "default.password", + "value": "", + "type": "password" + }, + "default.completer.schemaFilters": { + "name": "default.completer.schemaFilters", + "value": "", + "type": "textarea" + }, + "default.splitQueries": { + "name": "default.splitQueries", + "value": false, + "type": "checkbox" + }, + "default.user": { + "name": "default.user", + "value": "gpadmin", + "type": "string" + }, + "zeppelin.jdbc.concurrent.max_connection": { + "name": "zeppelin.jdbc.concurrent.max_connection", + "value": "10", + "type": "number" + }, + "common.max_count": { + "name": "common.max_count", + "value": "1000", + "type": "number" + }, + "default.precode": { + "name": "default.precode", + "value": "", + "type": "textarea" + }, + "zeppelin.jdbc.auth.type": { + "name": "zeppelin.jdbc.auth.type", + "value": "", + "type": "string" + }, + "default.statementPrecode": { + "name": "default.statementPrecode", + "value": "", + "type": "string" + }, + "zeppelin.jdbc.concurrent.use": { + "name": "zeppelin.jdbc.concurrent.use", + "value": true, + "type": "checkbox" + }, + "zeppelin.jdbc.keytab.location": { + "name": "zeppelin.jdbc.keytab.location", + "value": "", + "type": "string" + }, + "zeppelin.jdbc.interpolation": { + "name": "zeppelin.jdbc.interpolation", + "value": false, + "type": "checkbox" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "sql", + "class": "org.apache.zeppelin.jdbc.JDBCInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "sql", + "editOnDblClick": false, + "completionSupport": true + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "lens": { + "id": "lens", + "name": "lens", + "group": "lens", + "properties": { + "lens.server.base.url": { + "name": "lens.server.base.url", + "value": "http://\u003chostname\u003e:\u003cport\u003e/lensapi", + "type": "url" + }, + "zeppelin.lens.maxThreads": { + "name": "zeppelin.lens.maxThreads", + "value": "10", + "type": "number" + }, + "zeppelin.lens.maxResults": { + "name": "zeppelin.lens.maxResults", + "value": "1000", + "type": "number" + }, + "lens.client.dbname": { + "name": "lens.client.dbname", + "value": "default", + "type": "string" + }, + "lens.query.enable.persistent.resultset": { + "name": "lens.query.enable.persistent.resultset", + "value": false, + "type": "checkbox" + }, + "zeppelin.lens.run.concurrent": { + "name": "zeppelin.lens.run.concurrent", + "value": true, + "type": "checkbox" + }, + "lens.session.cluster.user": { + "name": "lens.session.cluster.user", + "value": "default", + "type": "string" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "lens", + "class": "org.apache.zeppelin.lens.LensInterpreter", + "defaultInterpreter": false, + "editor": { + "editOnDblClick": false, + "completionSupport": false + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "pig": { + "id": "pig", + "name": "pig", + "group": "pig", + "properties": { + "zeppelin.pig.includeJobStats": { + "name": "zeppelin.pig.includeJobStats", + "value": false, + "type": "checkbox" + }, + "zeppelin.pig.maxResult": { + "name": "zeppelin.pig.maxResult", + "value": "1000", + "type": "number" + }, + "zeppelin.pig.execType": { + "name": "zeppelin.pig.execType", + "value": "mapreduce", + "type": "string" + }, + "SPARK_JAR": { + "name": "SPARK_JAR", + "value": "", + "type": "textarea" + }, + "SPARK_MASTER": { + "name": "SPARK_MASTER", + "value": "local", + "type": "string" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "script", + "class": "org.apache.zeppelin.pig.PigInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "pig", + "editOnDblClick": false + } + }, + { + "name": "query", + "class": "org.apache.zeppelin.pig.PigQueryInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "pig", + "editOnDblClick": false + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "flink": { + "id": "flink", + "name": "flink", + "group": "flink", + "properties": { + "host": { + "name": "host", + "value": "local", + "type": "string" + }, + "port": { + "name": "port", + "value": "6123", + "type": "number" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "flink", + "class": "org.apache.zeppelin.flink.FlinkInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "scala", + "editOnDblClick": false + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "angular": { + "id": "angular", + "name": "angular", + "group": "angular", + "properties": {}, + "status": "READY", + "interpreterGroup": [ + { + "name": "angular", + "class": "org.apache.zeppelin.angular.AngularInterpreter", + "defaultInterpreter": false, + "editor": { + "editOnDblClick": true, + "completionSupport": false + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "livy": { + "id": "livy", + "name": "livy", + "group": "livy", + "properties": { + "livy.spark.executor.instances": { + "name": "livy.spark.executor.instances", + "value": "", + "type": "number" + }, + "livy.spark.dynamicAllocation.cachedExecutorIdleTimeout": { + "name": "livy.spark.dynamicAllocation.cachedExecutorIdleTimeout", + "value": "", + "type": "string" + }, + "zeppelin.livy.concurrentSQL": { + "name": "zeppelin.livy.concurrentSQL", + "value": false, + "type": "checkbox" + }, + "zeppelin.livy.url": { + "name": "zeppelin.livy.url", + "value": "http://localhost:8998", + "type": "url" + }, + "zeppelin.livy.pull_status.interval.millis": { + "name": "zeppelin.livy.pull_status.interval.millis", + "value": "1000", + "type": "number" + }, + "livy.spark.executor.memory": { + "name": "livy.spark.executor.memory", + "value": "", + "type": "string" + }, + "zeppelin.livy.restart_dead_session": { + "name": "zeppelin.livy.restart_dead_session", + "value": false, + "type": "checkbox" + }, + "livy.spark.dynamicAllocation.enabled": { + "name": "livy.spark.dynamicAllocation.enabled", + "value": false, + "type": "checkbox" + }, + "zeppelin.livy.maxLogLines": { + "name": "zeppelin.livy.maxLogLines", + "value": "1000", + "type": "number" + }, + "livy.spark.dynamicAllocation.minExecutors": { + "name": "livy.spark.dynamicAllocation.minExecutors", + "value": "", + "type": "number" + }, + "livy.spark.executor.cores": { + "name": "livy.spark.executor.cores", + "value": "", + "type": "number" + }, + "zeppelin.livy.session.create_timeout": { + "name": "zeppelin.livy.session.create_timeout", + "value": "120", + "type": "number" + }, + "zeppelin.livy.spark.sql.maxResult": { + "name": "zeppelin.livy.spark.sql.maxResult", + "value": "1000", + "type": "number" + }, + "livy.spark.driver.cores": { + "name": "livy.spark.driver.cores", + "value": "", + "type": "number" + }, + "livy.spark.jars.packages": { + "name": "livy.spark.jars.packages", + "value": "", + "type": "textarea" + }, + "zeppelin.livy.spark.sql.field.truncate": { + "name": "zeppelin.livy.spark.sql.field.truncate", + "value": true, + "type": "checkbox" + }, + "livy.spark.driver.memory": { + "name": "livy.spark.driver.memory", + "value": "", + "type": "string" + }, + "zeppelin.livy.displayAppInfo": { + "name": "zeppelin.livy.displayAppInfo", + "value": true, + "type": "checkbox" + }, + "zeppelin.livy.principal": { + "name": "zeppelin.livy.principal", + "value": "", + "type": "string" + }, + "zeppelin.livy.keytab": { + "name": "zeppelin.livy.keytab", + "value": "", + "type": "textarea" + }, + "livy.spark.dynamicAllocation.maxExecutors": { + "name": "livy.spark.dynamicAllocation.maxExecutors", + "value": "", + "type": "number" + }, + "livy.spark.dynamicAllocation.initialExecutors": { + "name": "livy.spark.dynamicAllocation.initialExecutors", + "value": "", + "type": "number" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "spark", + "class": "org.apache.zeppelin.livy.LivySparkInterpreter", + "defaultInterpreter": true, + "editor": { + "language": "scala", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + } + }, + { + "name": "sql", + "class": "org.apache.zeppelin.livy.LivySparkSQLInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "sql", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + } + }, + { + "name": "pyspark", + "class": "org.apache.zeppelin.livy.LivyPySparkInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "python", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + } + }, + { + "name": "pyspark3", + "class": "org.apache.zeppelin.livy.LivyPySpark3Interpreter", + "defaultInterpreter": false, + "editor": { + "language": "python", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + } + }, + { + "name": "sparkr", + "class": "org.apache.zeppelin.livy.LivySparkRInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "r", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + } + }, + { + "name": "shared", + "class": "org.apache.zeppelin.livy.LivySharedInterpreter", + "defaultInterpreter": false + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "perNote": "shared", + "perUser": "scoped", + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "file": { + "id": "file", + "name": "file", + "group": "file", + "properties": { + "hdfs.url": { + "name": "hdfs.url", + "value": "http://localhost:50070/webhdfs/v1/", + "type": "url" + }, + "hdfs.user": { + "name": "hdfs.user", + "value": "hdfs", + "type": "string" + }, + "hdfs.maxlength": { + "name": "hdfs.maxlength", + "value": "1000", + "type": "number" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "hdfs", + "class": "org.apache.zeppelin.file.HDFSFileInterpreter", + "defaultInterpreter": false, + "editor": { + "editOnDblClick": false, + "completionSupport": true + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "groovy": { + "id": "groovy", + "name": "groovy", + "group": "groovy", + "properties": { + "GROOVY_CLASSES": { + "name": "GROOVY_CLASSES", + "value": "", + "type": "textarea" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "groovy", + "class": "org.apache.zeppelin.groovy.GroovyInterpreter", + "defaultInterpreter": false, + "editor": { + "editOnDblClick": false, + "completionSupport": false + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "neo4j": { + "id": "neo4j", + "name": "neo4j", + "group": "neo4j", + "properties": { + "neo4j.auth.user": { + "name": "neo4j.auth.user", + "value": "neo4j", + "type": "string" + }, + "neo4j.auth.password": { + "name": "neo4j.auth.password", + "value": "zeppelin", + "type": "string" + }, + "neo4j.auth.type": { + "name": "neo4j.auth.type", + "value": "BASIC", + "type": "string" + }, + "neo4j.max.concurrency": { + "name": "neo4j.max.concurrency", + "value": "50", + "type": "string" + }, + "neo4j.url": { + "name": "neo4j.url", + "value": "bolt://neo4j:7687", + "type": "string" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "neo4j", + "class": "org.apache.zeppelin.graph.neo4j.Neo4jCypherInterpreter", + "defaultInterpreter": false, + "editor": { + "editOnDblClick": false + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "perNote": "shared", + "perUser": "shared", + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "elasticsearch": { + "id": "elasticsearch", + "name": "elasticsearch", + "group": "elasticsearch", + "properties": { + "elasticsearch.cluster.name": { + "name": "elasticsearch.cluster.name", + "value": "elasticsearch", + "type": "string" + }, + "elasticsearch.basicauth.username": { + "name": "elasticsearch.basicauth.username", + "value": "", + "type": "string" + }, + "elasticsearch.client.type": { + "name": "elasticsearch.client.type", + "value": "transport", + "type": "string" + }, + "elasticsearch.result.size": { + "name": "elasticsearch.result.size", + "value": "10", + "type": "number" + }, + "elasticsearch.port": { + "name": "elasticsearch.port", + "value": "9300", + "type": "number" + }, + "elasticsearch.host": { + "name": "elasticsearch.host", + "value": "localhost", + "type": "string" + }, + "elasticsearch.basicauth.password": { + "name": "elasticsearch.basicauth.password", + "value": "", + "type": "password" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "elasticsearch", + "class": "org.apache.zeppelin.elasticsearch.ElasticsearchInterpreter", + "defaultInterpreter": false, + "editor": { + "editOnDblClick": false, + "completionSupport": true + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "sh": { + "id": "sh", + "name": "sh", + "group": "sh", + "properties": { + "zeppelin.shell.interpolation": { + "name": "zeppelin.shell.interpolation", + "value": false, + "type": "checkbox" + }, + "zeppelin.shell.principal": { + "name": "zeppelin.shell.principal", + "value": "", + "type": "string" + }, + "shell.working.directory.user.home": { + "name": "shell.working.directory.user.home", + "value": false, + "type": "checkbox" + }, + "zeppelin.shell.auth.type": { + "name": "zeppelin.shell.auth.type", + "value": "", + "type": "string" + }, + "zeppelin.shell.keytab.location": { + "name": "zeppelin.shell.keytab.location", + "value": "", + "type": "string" + }, + "shell.command.timeout.millisecs": { + "name": "shell.command.timeout.millisecs", + "value": "60000", + "type": "number" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "sh", + "class": "org.apache.zeppelin.shell.ShellInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "sh", + "editOnDblClick": false, + "completionSupport": false + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "cassandra": { + "id": "cassandra", + "name": "cassandra", + "group": "cassandra", + "properties": { + "cassandra.ssl.truststore.password": { + "name": "cassandra.ssl.truststore.password", + "value": "none", + "type": "password" + }, + "cassandra.pooling.new.connection.threshold.remote": { + "name": "cassandra.pooling.new.connection.threshold.remote", + "value": "100", + "type": "number" + }, + "cassandra.query.default.fetchSize": { + "name": "cassandra.query.default.fetchSize", + "value": "5000", + "type": "number" + }, + "cassandra.socket.tcp.no_delay": { + "name": "cassandra.socket.tcp.no_delay", + "value": true, + "type": "checkbox" + }, + "cassandra.ssl.enabled": { + "name": "cassandra.ssl.enabled", + "value": false, + "type": "checkbox" + }, + "cassandra.hosts": { + "name": "cassandra.hosts", + "value": "localhost", + "type": "textarea" + }, + "cassandra.credentials.username": { + "name": "cassandra.credentials.username", + "value": "none", + "type": "string" + }, + "cassandra.pooling.new.connection.threshold.local": { + "name": "cassandra.pooling.new.connection.threshold.local", + "value": "100", + "type": "number" + }, + "cassandra.socket.read.timeout.millisecs": { + "name": "cassandra.socket.read.timeout.millisecs", + "value": "12000", + "type": "number" + }, + "cassandra.load.balancing.policy": { + "name": "cassandra.load.balancing.policy", + "value": "DEFAULT", + "type": "string" + }, + "cassandra.pooling.max.request.per.connection.local": { + "name": "cassandra.pooling.max.request.per.connection.local", + "value": "1024", + "type": "number" + }, + "cassandra.cluster": { + "name": "cassandra.cluster", + "value": "Test Cluster", + "type": "string" + }, + "cassandra.pooling.heartbeat.interval.seconds": { + "name": "cassandra.pooling.heartbeat.interval.seconds", + "value": "30", + "type": "number" + }, + "cassandra.query.default.serial.consistency": { + "name": "cassandra.query.default.serial.consistency", + "value": "SERIAL", + "type": "string" + }, + "cassandra.retry.policy": { + "name": "cassandra.retry.policy", + "value": "DEFAULT", + "type": "string" + }, + "cassandra.native.port": { + "name": "cassandra.native.port", + "value": "9042", + "type": "number" + }, + "cassandra.interpreter.parallelism": { + "name": "cassandra.interpreter.parallelism", + "value": "10", + "type": "number" + }, + "cassandra.pooling.pool.timeout.millisecs": { + "name": "cassandra.pooling.pool.timeout.millisecs", + "value": "5000", + "type": "number" + }, + "cassandra.pooling.max.request.per.connection.remote": { + "name": "cassandra.pooling.max.request.per.connection.remote", + "value": "256", + "type": "number" + }, + "cassandra.compression.protocol": { + "name": "cassandra.compression.protocol", + "value": "NONE", + "type": "string" + }, + "cassandra.ssl.truststore.path": { + "name": "cassandra.ssl.truststore.path", + "value": "none", + "type": "string" + }, + "cassandra.socket.connection.timeout.millisecs": { + "name": "cassandra.socket.connection.timeout.millisecs", + "value": "5000", + "type": "number" + }, + "cassandra.query.default.consistency": { + "name": "cassandra.query.default.consistency", + "value": "ONE", + "type": "string" + }, + "cassandra.keyspace": { + "name": "cassandra.keyspace", + "value": "system", + "type": "string" + }, + "cassandra.reconnection.policy": { + "name": "cassandra.reconnection.policy", + "value": "DEFAULT", + "type": "string" + }, + "cassandra.pooling.max.connection.per.host.local": { + "name": "cassandra.pooling.max.connection.per.host.local", + "value": "8", + "type": "number" + }, + "cassandra.credentials.password": { + "name": "cassandra.credentials.password", + "value": "none", + "type": "password" + }, + "cassandra.protocol.version": { + "name": "cassandra.protocol.version", + "value": "4", + "type": "string" + }, + "cassandra.max.schema.agreement.wait.second": { + "name": "cassandra.max.schema.agreement.wait.second", + "value": "10", + "type": "number" + }, + "cassandra.pooling.core.connection.per.host.remote": { + "name": "cassandra.pooling.core.connection.per.host.remote", + "value": "1", + "type": "number" + }, + "cassandra.pooling.core.connection.per.host.local": { + "name": "cassandra.pooling.core.connection.per.host.local", + "value": "2", + "type": "number" + }, + "cassandra.pooling.max.connection.per.host.remote": { + "name": "cassandra.pooling.max.connection.per.host.remote", + "value": "2", + "type": "number" + }, + "cassandra.pooling.idle.timeout.seconds": { + "name": "cassandra.pooling.idle.timeout.seconds", + "value": "120", + "type": "number" + }, + "cassandra.speculative.execution.policy": { + "name": "cassandra.speculative.execution.policy", + "value": "DEFAULT", + "type": "string" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "cassandra", + "class": "org.apache.zeppelin.cassandra.CassandraInterpreter", + "defaultInterpreter": false, + "editor": { + "editOnDblClick": false + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "spark": { + "id": "spark", + "name": "spark", + "group": "spark", + "properties": { + "zeppelin.spark.concurrentSQL": { + "name": "zeppelin.spark.concurrentSQL", + "value": false, + "type": "checkbox" + }, + "zeppelin.R.knitr": { + "name": "zeppelin.R.knitr", + "value": true, + "type": "checkbox" + }, + "zeppelin.R.cmd": { + "name": "zeppelin.R.cmd", + "value": "R", + "type": "string" + }, + "zeppelin.R.image.width": { + "name": "zeppelin.R.image.width", + "value": "100%", + "type": "number" + }, + "zeppelin.spark.importImplicit": { + "name": "zeppelin.spark.importImplicit", + "value": true, + "type": "checkbox" + }, + "zeppelin.dep.additionalRemoteRepository": { + "name": "zeppelin.dep.additionalRemoteRepository", + "value": "spark-packages,http://dl.bintray.com/spark-packages/maven,false;", + "type": "textarea" + }, + "zeppelin.dep.localrepo": { + "name": "zeppelin.dep.localrepo", + "value": "local-repo", + "type": "string" + }, + "zeppelin.spark.sql.stacktrace": { + "name": "zeppelin.spark.sql.stacktrace", + "value": false, + "type": "checkbox" + }, + "zeppelin.spark.useHiveContext": { + "name": "zeppelin.spark.useHiveContext", + "value": true, + "type": "checkbox" + }, + "zeppelin.spark.printREPLOutput": { + "name": "zeppelin.spark.printREPLOutput", + "value": true, + "type": "checkbox" + }, + "spark.cores.max": { + "name": "spark.cores.max", + "value": "", + "type": "number" + }, + "spark.executor.memory": { + "name": "spark.executor.memory", + "value": "", + "type": "string" + }, + "zeppelin.spark.sql.interpolation": { + "name": "zeppelin.spark.sql.interpolation", + "value": false, + "type": "checkbox" + }, + "spark.neo4j.bolt.password": { + "name": "spark.neo4j.bolt.password", + "value": "zeppelin", + "type": "string" + }, + "spark.app.name": { + "name": "spark.app.name", + "value": "Zeppelin", + "type": "string" + }, + "spark.neo4j.bolt.user": { + "name": "spark.neo4j.bolt.user", + "value": "neo4j", + "type": "string" + }, + "zeppelin.spark.maxResult": { + "name": "zeppelin.spark.maxResult", + "value": "1000", + "type": "number" + }, + "master": { + "name": "master", + "value": "local[*]", + "type": "string" + }, + "zeppelin.pyspark.python": { + "name": "zeppelin.pyspark.python", + "value": "python", + "type": "string" + }, + "spark.neo4j.bolt.url": { + "name": "spark.neo4j.bolt.url", + "value": "bolt://neo4j:7687", + "type": "string" + }, + "args": { + "name": "args", + "value": "", + "type": "textarea" + }, + "zeppelin.spark.enableSupportedVersionCheck": { + "name": "zeppelin.spark.enableSupportedVersionCheck", + "value": true, + "type": "checkbox" + }, + "zeppelin.spark.useNew": { + "name": "zeppelin.spark.useNew", + "value": true, + "type": "checkbox" + }, + "zeppelin.pyspark.useIPython": { + "name": "zeppelin.pyspark.useIPython", + "value": true, + "type": "checkbox" + }, + "zeppelin.spark.uiWebUrl": { + "name": "zeppelin.spark.uiWebUrl", + "value": "", + "type": "string" + }, + "zeppelin.R.render.options": { + "name": "zeppelin.R.render.options", + "value": "out.format \u003d \u0027html\u0027, comment \u003d NA, echo \u003d FALSE, results \u003d \u0027asis\u0027, message \u003d F, warning \u003d F, fig.retina \u003d 2", + "type": "textarea" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "spark", + "class": "org.apache.zeppelin.spark.SparkInterpreter", + "defaultInterpreter": true, + "editor": { + "language": "scala", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + } + }, + { + "name": "sql", + "class": "org.apache.zeppelin.spark.SparkSqlInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "sql", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + } + }, + { + "name": "dep", + "class": "org.apache.zeppelin.spark.DepInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "scala", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + } + }, + { + "name": "pyspark", + "class": "org.apache.zeppelin.spark.PySparkInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "python", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + } + }, + { + "name": "ipyspark", + "class": "org.apache.zeppelin.spark.IPySparkInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "python", + "editOnDblClick": false, + "completionSupport": true + } + }, + { + "name": "r", + "class": "org.apache.zeppelin.spark.SparkRInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "r", + "editOnDblClick": false, + "completionSupport": false + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "md": { + "id": "md", + "name": "md", + "group": "md", + "properties": { + "markdown.parser.type": { + "name": "markdown.parser.type", + "value": "pegdown", + "type": "string" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "md", + "class": "org.apache.zeppelin.markdown.Markdown", + "defaultInterpreter": false, + "editor": { + "language": "markdown", + "editOnDblClick": true, + "completionSupport": false + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "alluxio": { + "id": "alluxio", + "name": "alluxio", + "group": "alluxio", + "properties": { + "alluxio.master.port": { + "name": "alluxio.master.port", + "value": "19998", + "type": "number" + }, + "alluxio.master.hostname": { + "name": "alluxio.master.hostname", + "value": "localhost", + "type": "string" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "alluxio", + "class": "org.apache.zeppelin.alluxio.AlluxioInterpreter", + "defaultInterpreter": false, + "editor": { + "editOnDblClick": false, + "completionSupport": true + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "bigquery": { + "id": "bigquery", + "name": "bigquery", + "group": "bigquery", + "properties": { + "zeppelin.bigquery.project_id": { + "name": "zeppelin.bigquery.project_id", + "value": " ", + "type": "string" + }, + "zeppelin.bigquery.sql_dialect": { + "name": "zeppelin.bigquery.sql_dialect", + "value": "", + "type": "string" + }, + "zeppelin.bigquery.max_no_of_rows": { + "name": "zeppelin.bigquery.max_no_of_rows", + "value": "100000", + "type": "number" + }, + "zeppelin.bigquery.wait_time": { + "name": "zeppelin.bigquery.wait_time", + "value": "5000", + "type": "number" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "sql", + "class": "org.apache.zeppelin.bigquery.BigQueryInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "sql", + "editOnDblClick": false, + "completionSupport": false + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "hbase": { + "id": "hbase", + "name": "hbase", + "group": "hbase", + "properties": { + "hbase.home": { + "name": "hbase.home", + "value": "/usr/lib/hbase/", + "type": "string" + }, + "zeppelin.hbase.test.mode": { + "name": "zeppelin.hbase.test.mode", + "value": false, + "type": "checkbox" + }, + "hbase.ruby.sources": { + "name": "hbase.ruby.sources", + "value": "lib/ruby", + "type": "string" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "hbase", + "class": "org.apache.zeppelin.hbase.HbaseInterpreter", + "defaultInterpreter": false, + "editor": { + "editOnDblClick": false, + "completionSupport": false + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + }, + "kylin": { + "id": "kylin", + "name": "kylin", + "group": "kylin", + "properties": { + "kylin.query.project": { + "name": "kylin.query.project", + "value": "learn_kylin", + "type": "textarea" + }, + "kylin.api.user": { + "name": "kylin.api.user", + "value": "ADMIN", + "type": "string" + }, + "kylin.query.limit": { + "name": "kylin.query.limit", + "value": "5000", + "type": "number" + }, + "kylin.api.url": { + "name": "kylin.api.url", + "value": "http://localhost:7070/kylin/api/query", + "type": "url" + }, + "kylin.api.password": { + "name": "kylin.api.password", + "value": "KYLIN", + "type": "password" + }, + "kylin.query.ispartial": { + "name": "kylin.query.ispartial", + "value": true, + "type": "checkbox" + }, + "kylin.query.offset": { + "name": "kylin.query.offset", + "value": "0", + "type": "number" + } + }, + "status": "READY", + "interpreterGroup": [ + { + "name": "kylin", + "class": "org.apache.zeppelin.kylin.KylinInterpreter", + "defaultInterpreter": false, + "editor": { + "language": "sql", + "editOnDblClick": false, + "completionSupport": true + } + } + ], + "dependencies": [], + "option": { + "remote": true, + "port": -1, + "isExistingProcess": false, + "setPermission": false, + "owners": [], + "isUserImpersonate": false + } + } + }, + "interpreterBindings": { + "2DHCVSHV5": [ + "spark", + "md", + "angular", + "sh", + "livy", + "alluxio", + "file", + "flink", + "python", + "ignite", + "lens", + "cassandra", + "kylin", + "elasticsearch", + "jdbc", + "hbase", + "bigquery", + "pig", + "groovy", + "neo4j", + "sap" + ] + }, + "interpreterRepositories": [ + { + "id": "central", + "type": "default", + "url": "http://repo1.maven.org/maven2/", + "releasePolicy": { + "enabled": true, + "updatePolicy": "daily", + "checksumPolicy": "warn" + }, + "snapshotPolicy": { + "enabled": true, + "updatePolicy": "daily", + "checksumPolicy": "warn" + }, + "mirroredRepositories": [], + "repositoryManager": false + }, + { + "id": "local", + "type": "default", + "url": "file:///root/.m2/repository", + "releasePolicy": { + "enabled": true, + "updatePolicy": "daily", + "checksumPolicy": "warn" + }, + "snapshotPolicy": { + "enabled": true, + "updatePolicy": "daily", + "checksumPolicy": "warn" + }, + "mirroredRepositories": [], + "repositoryManager": false + } + ] +} \ No newline at end of file diff --git a/zeppelin/notebook/2DHCVSHV5/note.json b/zeppelin/notebook/2DHCVSHV5/note.json new file mode 100644 index 0000000..b8f34e1 --- /dev/null +++ b/zeppelin/notebook/2DHCVSHV5/note.json @@ -0,0 +1,625 @@ +{ + "paragraphs": [ + { + "title": "Add Neo4j-Spark-Connector dependency", + "text": "%spark.dep\nz.reset()\nz.load(\"neo4j-contrib:neo4j-spark-connector:2.2.1-M5\")", + "user": "anonymous", + "dateUpdated": "2018-07-10 16:21:35.199", + "config": { + "colWidth": 12.0, + "fontSize": 9.0, + "enabled": true, + "results": {}, + "editorSetting": { + "language": "scala", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + }, + "editorMode": "ace/mode/scala", + "title": true + }, + "settings": { + "params": {}, + "forms": {} + }, + "results": { + "code": "ERROR", + "msg": [ + { + "type": "TEXT", + "data": "Must be used before SparkInterpreter (%spark) initialized\nHint: put this paragraph before any Spark code and restart Zeppelin/Interpreter" + } + ] + }, + "apps": [], + "jobName": "paragraph_1531155283581_-1568377055", + "id": "20180709-165443_726851579", + "dateCreated": "2018-07-09 16:54:43.581", + "dateStarted": "2018-07-10 14:20:03.684", + "dateFinished": "2018-07-10 14:20:03.701", + "status": "ERROR", + "progressUpdateIntervalMs": 500 + }, + { + "title": "Download the dataset into the file system", + "text": "import scala.collection.JavaConverters._\norg.apache.commons.io.FileUtils.writeLines(new java.io.File(\"/zeppelin/spark-warehouse/crimes.csv\"),\n scala.io.Source.fromURL(\"https://data.cityofchicago.org/resource/6zsd-86xi.csv\").getLines.toList.asJava)", + "user": "anonymous", + "dateUpdated": "2018-07-09 16:55:15.586", + "config": { + "editorSetting": { + "language": "scala", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + }, + "colWidth": 12.0, + "editorMode": "ace/mode/scala", + "fontSize": 9.0, + "results": {}, + "enabled": true, + "title": true + }, + "settings": { + "params": {}, + "forms": {} + }, + "results": { + "code": "SUCCESS", + "msg": [ + { + "type": "TEXT", + "data": "import scala.collection.JavaConverters._\n" + } + ] + }, + "apps": [], + "jobName": "paragraph_1531061286836_-103570195", + "id": "20180707-100041_373321372", + "dateCreated": "2018-07-08 14:48:06.836", + "dateStarted": "2018-07-09 16:55:15.660", + "dateFinished": "2018-07-09 16:55:49.825", + "status": "FINISHED", + "progressUpdateIntervalMs": 500 + }, + { + "title": "Read the dataset", + "text": "import org.apache.spark.sql.functions.{split, concat_ws, substring}\nval crimeDF \u003d spark.read.format(\"csv\").option(\"header\",\"true\").load(\"/zeppelin/spark-warehouse/crimes.csv\")", + "user": "anonymous", + "dateUpdated": "2018-07-09 16:55:53.163", + "config": { + "editorSetting": { + "language": "scala", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + }, + "colWidth": 12.0, + "editorMode": "ace/mode/scala", + "fontSize": 9.0, + "results": {}, + "enabled": true, + "title": true + }, + "settings": { + "params": {}, + "forms": {} + }, + "results": { + "code": "SUCCESS", + "msg": [ + { + "type": "TEXT", + "data": "import org.apache.spark.sql.functions.{split, concat_ws, substring}\ncrimeDF: org.apache.spark.sql.DataFrame \u003d [:@computed_region_43wa_7qmu: string, :@computed_region_6mkv_f3dw: string ... 32 more fields]\n" + } + ] + }, + "runtimeInfos": { + "jobUrl": { + "propertyName": "jobUrl", + "label": "SPARK JOB", + "tooltip": "View in Spark web UI", + "group": "spark", + "values": [ + "http://7aa22b367c6d:4040/jobs/job?id\u003d0" + ], + "interpreterSettingId": "spark" + } + }, + "apps": [], + "jobName": "paragraph_1531061286837_349701581", + "id": "20180707-100627_5456907", + "dateCreated": "2018-07-08 14:48:06.837", + "dateStarted": "2018-07-09 16:55:53.270", + "dateFinished": "2018-07-09 16:56:10.365", + "status": "FINISHED", + "progressUpdateIntervalMs": 500 + }, + { + "title": "Print the dataset\u0027s schema", + "text": "crimeDF.printSchema", + "user": "anonymous", + "dateUpdated": "2018-07-09 16:56:12.476", + "config": { + "editorSetting": { + "language": "scala", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + }, + "colWidth": 12.0, + "editorMode": "ace/mode/scala", + "fontSize": 9.0, + "results": {}, + "enabled": true, + "title": true + }, + "settings": { + "params": {}, + "forms": {} + }, + "results": { + "code": "SUCCESS", + "msg": [ + { + "type": "TEXT", + "data": "root\n |-- :@computed_region_43wa_7qmu: string (nullable \u003d true)\n |-- :@computed_region_6mkv_f3dw: string (nullable \u003d true)\n |-- :@computed_region_awaf_s7ux: string (nullable \u003d true)\n |-- :@computed_region_bdys_3d7i: string (nullable \u003d true)\n |-- :@computed_region_d3ds_rm58: string (nullable \u003d true)\n |-- :@computed_region_d9mm_jgwp: string (nullable \u003d true)\n |-- :@computed_region_rpca_8um6: string (nullable \u003d true)\n |-- :@computed_region_vrxf_vc4k: string (nullable \u003d true)\n |-- arrest: string (nullable \u003d true)\n |-- beat: string (nullable \u003d true)\n |-- block: string (nullable \u003d true)\n |-- case_number: string (nullable \u003d true)\n |-- community_area: string (nullable \u003d true)\n |-- date: string (nullable \u003d true)\n |-- description: string (nullable \u003d true)\n |-- district: string (nullable \u003d true)\n |-- domestic: string (nullable \u003d true)\n |-- fbi_code: string (nullable \u003d true)\n |-- id: string (nullable \u003d true)\n |-- iucr: string (nullable \u003d true)\n |-- latitude: string (nullable \u003d true)\n |-- location: string (nullable \u003d true)\n |-- location_address: string (nullable \u003d true)\n |-- location_city: string (nullable \u003d true)\n |-- location_description: string (nullable \u003d true)\n |-- location_state: string (nullable \u003d true)\n |-- location_zip: string (nullable \u003d true)\n |-- longitude: string (nullable \u003d true)\n |-- primary_type: string (nullable \u003d true)\n |-- updated_on: string (nullable \u003d true)\n |-- ward: string (nullable \u003d true)\n |-- x_coordinate: string (nullable \u003d true)\n |-- y_coordinate: string (nullable \u003d true)\n |-- year: string (nullable \u003d true)\n\n" + } + ] + }, + "apps": [], + "jobName": "paragraph_1531061286837_-1724462422", + "id": "20180707-121247_755957726", + "dateCreated": "2018-07-08 14:48:06.837", + "dateStarted": "2018-07-09 16:56:12.542", + "dateFinished": "2018-07-09 16:56:13.741", + "status": "FINISHED", + "progressUpdateIntervalMs": 500 + }, + { + "title": "Add new columns to the dataset", + "text": "val exendedCrimeDF \u003d crimeDF.withColumn(\"parsed_date\", concat_ws(\"\", split(substring(crimeDF(\"date\"), 0, 10), \"-\"))).withColumn(\"point\", concat_ws(\", \", crimeDF(\"latitude\"), crimeDF(\"longitude\")))", + "user": "anonymous", + "dateUpdated": "2018-07-09 16:56:15.972", + "config": { + "colWidth": 12.0, + "fontSize": 9.0, + "enabled": true, + "results": {}, + "editorSetting": { + "language": "scala", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + }, + "editorMode": "ace/mode/scala", + "title": true + }, + "settings": { + "params": {}, + "forms": {} + }, + "results": { + "code": "SUCCESS", + "msg": [ + { + "type": "TEXT", + "data": "exendedCrimeDF: org.apache.spark.sql.DataFrame \u003d [:@computed_region_43wa_7qmu: string, :@computed_region_6mkv_f3dw: string ... 34 more fields]\n" + } + ] + }, + "apps": [], + "jobName": "paragraph_1531062771823_1090620158", + "id": "20180708-151251_1184560545", + "dateCreated": "2018-07-08 15:12:51.823", + "dateStarted": "2018-07-09 16:56:16.032", + "dateFinished": "2018-07-09 16:56:17.388", + "status": "FINISHED", + "progressUpdateIntervalMs": 500 + }, + { + "title": "Simple data exploration of our dataset as tabular data", + "text": "z.show(exendedCrimeDF)", + "user": "anonymous", + "dateUpdated": "2018-07-08 15:36:30.697", + "config": { + "editorSetting": { + "language": "scala", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + }, + "colWidth": 12.0, + "editorMode": "ace/mode/scala", + "fontSize": 9.0, + "results": { + "0": { + "graph": { + "mode": "table", + "height": 300.0, + "optionOpen": false, + "setting": { + "table": { + "tableGridState": {}, + "tableColumnTypeState": { + "names": { + "latitude": "string", + "longitude": "string", + "location": "string", + "point": "string", + "id": "string" + }, + "updated": false + }, + "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]", + "tableOptionValue": { + "useFilter": false, + "showPagination": false, + "showAggregationFooter": false + }, + "updated": false, + "initialized": false + } + }, + "commonSetting": {} + } + } + }, + "enabled": true, + "title": true + }, + "settings": { + "params": {}, + "forms": {} + }, + "results": { + "code": "SUCCESS", + "msg": [ + { + "type": "TABLE", + "data": "latitude\tlongitude\tlocation\tpoint\tid\n41.890051295\t-87.628869691\tPOINT (-87.628869691 41.890051295)\t-87.628869691, 41.890051295\t11364289\n41.982161273\t-87.668500261\tPOINT (-87.668500261 41.982161273)\t-87.668500261, 41.982161273\t11364313\n41.779430952\t-87.665795537\tPOINT (-87.665795537 41.779430952)\t-87.665795537, 41.779430952\t11364381\n41.855777864\t-87.71758499\tPOINT (-87.71758499 41.855777864)\t-87.71758499, 41.855777864\t11364419\n41.751438412\t-87.552889084\tPOINT (-87.552889084 41.751438412)\t-87.552889084, 41.751438412\t11364357\n41.791169163\t-87.708394447\tPOINT (-87.708394447 41.791169163)\t-87.708394447, 41.791169163\t11364315\n41.940071499\t-87.833730307\tPOINT (-87.833730307 41.940071499)\t-87.833730307, 41.940071499\t11364310\n41.957243439\t-87.656211369\tPOINT (-87.656211369 41.957243439)\t-87.656211369, 41.957243439\t11364323\n41.909323054\t-87.769851744\tPOINT (-87.769851744 41.909323054)\t-87.769851744, 41.909323054\t11364339\n41.752613598\t-87.6052376\tPOINT (-87.6052376 41.752613598)\t-87.6052376, 41.752613598\t11364418\n41.896685066\t-87.627683859\tPOINT (-87.627683859 41.896685066)\t-87.627683859, 41.896685066\t11364288\n41.7943713\t-87.641290381\tPOINT (-87.641290381 41.7943713)\t-87.641290381, 41.7943713\t11364294\n41.675333811\t-87.635809917\tPOINT (-87.635809917 41.675333811)\t-87.635809917, 41.675333811\t11364305\n41.888045958\t-87.625413826\tPOINT (-87.625413826 41.888045958)\t-87.625413826, 41.888045958\t11364281\n41.874741802\t-87.763528016\tPOINT (-87.763528016 41.874741802)\t-87.763528016, 41.874741802\t11364410\nnull\tnull\tnull\t\t11370460\nnull\tnull\tnull\t\t11369165\n41.95788092\t-87.755802522\tPOINT (-87.755802522 41.95788092)\t-87.755802522, 41.95788092\t11367878\n41.805918599\t-87.670974742\tPOINT (-87.670974742 41.805918599)\t-87.670974742, 41.805918599\t11364338\n41.917685647\t-87.729016044\tPOINT (-87.729016044 41.917685647)\t-87.729016044, 41.917685647\t11364295\n41.92482034\t-87.761094645\tPOINT (-87.761094645 41.92482034)\t-87.761094645, 41.92482034\t11364324\n41.999311603\t-87.703878709\tPOINT (-87.703878709 41.999311603)\t-87.703878709, 41.999311603\t11364271\n41.751546874\t-87.580662868\tPOINT (-87.580662868 41.751546874)\t-87.580662868, 41.751546874\t11364266\n41.721159406\t-87.614123966\tPOINT (-87.614123966 41.721159406)\t-87.614123966, 41.721159406\t11364303\n41.980826277\t-87.883611316\tPOINT (-87.883611316 41.980826277)\t-87.883611316, 41.980826277\t11364292\n41.876748835\t-87.747900918\tPOINT (-87.747900918 41.876748835)\t-87.747900918, 41.876748835\t11364364\n41.721212351\t-87.66281599\tPOINT (-87.66281599 41.721212351)\t-87.66281599, 41.721212351\t11364284\n41.877237033\t-87.745160873\tPOINT (-87.745160873 41.877237033)\t-87.745160873, 41.877237033\t11364361\n41.895420644\t-87.720539406\tPOINT (-87.720539406 41.895420644)\t-87.720539406, 41.895420644\t11364309\n41.761086517\t-87.586199606\tPOINT (-87.586199606 41.761086517)\t-87.586199606, 41.761086517\t11364510\n42.019399237\t-87.675049485\tPOINT (-87.675049485 42.019399237)\t-87.675049485, 42.019399237\t11364253\n41.886024843\t-87.696420524\tPOINT (-87.696420524 41.886024843)\t-87.696420524, 41.886024843\t11365116\n42.022534793\t-87.673434623\tPOINT (-87.673434623 42.022534793)\t-87.673434623, 42.022534793\t11364270\n41.847599712\t-87.712440675\tPOINT (-87.712440675 41.847599712)\t-87.712440675, 41.847599712\t11364406\n41.847599712\t-87.712440675\tPOINT (-87.712440675 41.847599712)\t-87.712440675, 41.847599712\t11364402\n41.788787147\t-87.649157215\tPOINT (-87.649157215 41.788787147)\t-87.649157215, 41.788787147\t11364255\n41.879611835\t-87.709472306\tPOINT (-87.709472306 41.879611835)\t-87.709472306, 41.879611835\t11364356\n41.698712958\t-87.560751533\tPOINT (-87.560751533 41.698712958)\t-87.560751533, 41.698712958\t11364269\n41.839941401\t-87.735373884\tPOINT (-87.735373884 41.839941401)\t-87.735373884, 41.839941401\t11367251\n41.765843063\t-87.564261036\tPOINT (-87.564261036 41.765843063)\t-87.564261036, 41.765843063\t11364516\n41.862107289\t-87.721397241\tPOINT (-87.721397241 41.862107289)\t-87.721397241, 41.862107289\t11364265\n41.794621938\t-87.767245335\tPOINT (-87.767245335 41.794621938)\t-87.767245335, 41.794621938\t11364347\n41.841482234\t-87.732992461\tPOINT (-87.732992461 41.841482234)\t-87.732992461, 41.841482234\t11364565\n41.788736303\t-87.737569739\tPOINT (-87.737569739 41.788736303)\t-87.737569739, 41.788736303\t11364319\n41.802649709\t-87.656304744\tPOINT (-87.656304744 41.802649709)\t-87.656304744, 41.802649709\t11366331\n41.903245247\t-87.74750465\tPOINT (-87.74750465 41.903245247)\t-87.74750465, 41.903245247\t11365196\n41.909827612\t-87.638553156\tPOINT (-87.638553156 41.909827612)\t-87.638553156, 41.909827612\t11364397\n41.711624068\t-87.642951447\tPOINT (-87.642951447 41.711624068)\t-87.642951447, 41.711624068\t11364331\n41.924263835\t-87.744383732\tPOINT (-87.744383732 41.924263835)\t-87.744383732, 41.924263835\t11364263\n41.850341952\t-87.729562229\tPOINT (-87.729562229 41.850341952)\t-87.729562229, 41.850341952\t11364291\n41.821436543\t-87.612478298\tPOINT (-87.612478298 41.821436543)\t-87.612478298, 41.821436543\t11364260\n41.72632586\t-87.645776015\tPOINT (-87.645776015 41.72632586)\t-87.645776015, 41.72632586\t11364481\n41.880206849\t-87.745265835\tPOINT (-87.745265835 41.880206849)\t-87.745265835, 41.880206849\t11364274\n41.743199555\t-87.715133069\tPOINT (-87.715133069 41.743199555)\t-87.715133069, 41.743199555\t11364435\n41.866182462\t-87.724486326\tPOINT (-87.724486326 41.866182462)\t-87.724486326, 41.866182462\t11364307\n41.963299704\t-87.765497298\tPOINT (-87.765497298 41.963299704)\t-87.765497298, 41.963299704\t11365791\n41.851670836\t-87.714221857\tPOINT (-87.714221857 41.851670836)\t-87.714221857, 41.851670836\t11364248\n41.772972076\t-87.644610871\tPOINT (-87.644610871 41.772972076)\t-87.644610871, 41.772972076\t11364193\n41.880417645\t-87.751631349\tPOINT (-87.751631349 41.880417645)\t-87.751631349, 41.880417645\t11364426\n41.910676312\t-87.649187069\tPOINT (-87.649187069 41.910676312)\t-87.649187069, 41.910676312\t11364221\n41.862033369\t-87.609581242\tPOINT (-87.609581242 41.862033369)\t-87.609581242, 41.862033369\t11364282\n41.840734628\t-87.632948602\tPOINT (-87.632948602 41.840734628)\t-87.632948602, 41.840734628\t11364245\n41.828424055\t-87.620490345\tPOINT (-87.620490345 41.828424055)\t-87.620490345, 41.828424055\t11364393\n41.986036039\t-87.661423603\tPOINT (-87.661423603 41.986036039)\t-87.661423603, 41.986036039\t11366777\n41.965641712\t-87.76740693\tPOINT (-87.76740693 41.965641712)\t-87.76740693, 41.965641712\t11364299\n41.886327445\t-87.761754112\tPOINT (-87.761754112 41.886327445)\t-87.761754112, 41.886327445\t11364680\n41.719014328\t-87.559772176\tPOINT (-87.559772176 41.719014328)\t-87.559772176, 41.719014328\t11364285\n41.810346747\t-87.61288509\tPOINT (-87.61288509 41.810346747)\t-87.61288509, 41.810346747\t11364335\n41.941377735\t-87.644440897\tPOINT (-87.644440897 41.941377735)\t-87.644440897, 41.941377735\t11364243\n41.68272091\t-87.627610394\tPOINT (-87.627610394 41.68272091)\t-87.627610394, 41.68272091\t11364194\n41.757732168\t-87.606609135\tPOINT (-87.606609135 41.757732168)\t-87.606609135, 41.757732168\t11364275\n41.773633731\t-87.692562547\tPOINT (-87.692562547 41.773633731)\t-87.692562547, 41.773633731\t11364198\n41.714271207\t-87.637304642\tPOINT (-87.637304642 41.714271207)\t-87.637304642, 41.714271207\t11364208\n41.748458232\t-87.605159961\tPOINT (-87.605159961 41.748458232)\t-87.605159961, 41.748458232\t11364230\n41.884673627\t-87.711755011\tPOINT (-87.711755011 41.884673627)\t-87.711755011, 41.884673627\t11364360\n41.848494607\t-87.679359087\tPOINT (-87.679359087 41.848494607)\t-87.679359087, 41.848494607\t11364186\n41.925115297\t-87.752070675\tPOINT (-87.752070675 41.925115297)\t-87.752070675, 41.925115297\t11364227\n41.912032194\t-87.648305545\tPOINT (-87.648305545 41.912032194)\t-87.648305545, 41.912032194\t11364226\n41.803244589\t-87.603758748\tPOINT (-87.603758748 41.803244589)\t-87.603758748, 41.803244589\t11364262\n41.909227917\t-87.684749832\tPOINT (-87.684749832 41.909227917)\t-87.684749832, 41.909227917\t11364639\n41.784915102\t-87.618974182\tPOINT (-87.618974182 41.784915102)\t-87.618974182, 41.784915102\t11364409\n41.704153666\t-87.645180997\tPOINT (-87.645180997 41.704153666)\t-87.645180997, 41.704153666\t11365010\n41.795747543\t-87.601221687\tPOINT (-87.601221687 41.795747543)\t-87.601221687, 41.795747543\t11365118\n41.854654108\t-87.710210444\tPOINT (-87.710210444 41.854654108)\t-87.710210444, 41.854654108\t11364900\n41.912032194\t-87.648305545\tPOINT (-87.648305545 41.912032194)\t-87.648305545, 41.912032194\t11364222\n41.968871119\t-87.753552105\tPOINT (-87.753552105 41.968871119)\t-87.753552105, 41.968871119\t11365852\n41.894465726\t-87.624241063\tPOINT (-87.624241063 41.894465726)\t-87.624241063, 41.894465726\t11365699\n41.806209556\t-87.662473296\tPOINT (-87.662473296 41.806209556)\t-87.662473296, 41.806209556\t11364973\n41.936269321\t-87.735261409\tPOINT (-87.735261409 41.936269321)\t-87.735261409, 41.936269321\t11365160\n41.736377228\t-87.591769382\tPOINT (-87.591769382 41.736377228)\t-87.591769382, 41.736377228\t11364219\n41.750872743\t-87.561368735\tPOINT (-87.561368735 41.750872743)\t-87.561368735, 41.750872743\t11364154\n41.876919736\t-87.69007408\tPOINT (-87.69007408 41.876919736)\t-87.69007408, 41.876919736\t11364904\n41.805239693\t-87.619485678\tPOINT (-87.619485678 41.805239693)\t-87.619485678, 41.805239693\t11364188\n41.990615196\t-87.683188577\tPOINT (-87.683188577 41.990615196)\t-87.683188577, 41.990615196\t11364250\n41.807065099\t-87.740693749\tPOINT (-87.740693749 41.807065099)\t-87.740693749, 41.807065099\t11364206\n41.911745111\t-87.761854381\tPOINT (-87.761854381 41.911745111)\t-87.761854381, 41.911745111\t11366282\n41.760867844\t-87.6406462\tPOINT (-87.6406462 41.760867844)\t-87.6406462, 41.760867844\t11364350\n41.880219342\t-87.735461205\tPOINT (-87.735461205 41.880219342)\t-87.735461205, 41.880219342\t11364189\n41.800808546\t-87.729183903\tPOINT (-87.729183903 41.800808546)\t-87.729183903, 41.800808546\t11364293\nnull\tnull\tnull\t\t11369337\n41.772683728\t-87.615440298\tPOINT (-87.615440298 41.772683728)\t-87.615440298, 41.772683728\t11364272\n41.750179222\t-87.677187993\tPOINT (-87.677187993 41.750179222)\t-87.677187993, 41.750179222\t11364468\n41.891404732\t-87.628061509\tPOINT (-87.628061509 41.891404732)\t-87.628061509, 41.891404732\t11364480\n41.948867743\t-87.808730686\tPOINT (-87.808730686 41.948867743)\t-87.808730686, 41.948867743\t11364809\n41.751807048\t-87.651345794\tPOINT (-87.651345794 41.751807048)\t-87.651345794, 41.751807048\t11365190\n41.840073822\t-87.712234527\tPOINT (-87.712234527 41.840073822)\t-87.712234527, 41.840073822\t11368613\n41.805677666\t-87.620632516\tPOINT (-87.620632516 41.805677666)\t-87.620632516, 41.805677666\t11364192\n41.763433017\t-87.5753264\tPOINT (-87.5753264 41.763433017)\t-87.5753264, 41.763433017\t11365565\n41.893583624\t-87.720329249\tPOINT (-87.720329249 41.893583624)\t-87.720329249, 41.893583624\t11364156\n41.692880364\t-87.702144743\tPOINT (-87.702144743 41.692880364)\t-87.702144743, 41.692880364\t11364217\n41.909765589\t-87.676507749\tPOINT (-87.676507749 41.909765589)\t-87.676507749, 41.909765589\t11364671\n41.998956892\t-87.807337207\tPOINT (-87.807337207 41.998956892)\t-87.807337207, 41.998956892\t11365031\n41.955365785\t-87.683649901\tPOINT (-87.683649901 41.955365785)\t-87.683649901, 41.955365785\t11365469\n41.747609555\t-87.549179329\tPOINT (-87.549179329 41.747609555)\t-87.549179329, 41.747609555\t11365282\n41.858757103\t-87.732941042\tPOINT (-87.732941042 41.858757103)\t-87.732941042, 41.858757103\t11364182\n41.869992943\t-87.711441988\tPOINT (-87.711441988 41.869992943)\t-87.711441988, 41.869992943\t11365659\nnull\tnull\tnull\t\t11370457\n41.969211698\t-87.71827722\tPOINT (-87.71827722 41.969211698)\t-87.71827722, 41.969211698\t11364184\nnull\tnull\tnull\t\t11370062\n41.944168508\t-87.757528927\tPOINT (-87.757528927 41.944168508)\t-87.757528927, 41.944168508\t11364912\n41.981956417\t-87.711265796\tPOINT (-87.711265796 41.981956417)\t-87.711265796, 41.981956417\t11368346\n41.922786529\t-87.645045119\tPOINT (-87.645045119 41.922786529)\t-87.645045119, 41.922786529\t11364385\n41.778099133\t-87.633828531\tPOINT (-87.633828531 41.778099133)\t-87.633828531, 41.778099133\t11365090\n42.01926257\t-87.66516986\tPOINT (-87.66516986 42.01926257)\t-87.66516986, 42.01926257\t11364727\n41.733263922\t-87.547001745\tPOINT (-87.547001745 41.733263922)\t-87.547001745, 41.733263922\t11364110\n41.941547218\t-87.748190705\tPOINT (-87.748190705 41.941547218)\t-87.748190705, 41.941547218\t11364677\n41.756106295\t-87.642438283\tPOINT (-87.642438283 41.756106295)\t-87.642438283, 41.756106295\t11364567\n41.803857197\t-87.620469305\tPOINT (-87.620469305 41.803857197)\t-87.620469305, 41.803857197\t11364180\n41.78768456\t-87.64741987\tPOINT (-87.64741987 41.78768456)\t-87.64741987, 41.78768456\t11364145\n41.965576504\t-87.761447085\tPOINT (-87.761447085 41.965576504)\t-87.761447085, 41.965576504\t11364730\n41.692381091\t-87.640257433\tPOINT (-87.640257433 41.692381091)\t-87.640257433, 41.692381091\t11364092\n41.833491331\t-87.680256731\tPOINT (-87.680256731 41.833491331)\t-87.680256731, 41.833491331\t11364482\n41.886864574\t-87.736787449\tPOINT (-87.736787449 41.886864574)\t-87.736787449, 41.886864574\t11365892\n41.956541188\t-87.672266619\tPOINT (-87.672266619 41.956541188)\t-87.672266619, 41.956541188\t11367949\n41.917099024\t-87.731751521\tPOINT (-87.731751521 41.917099024)\t-87.731751521, 41.917099024\t11364368\n41.783432002\t-87.615701737\tPOINT (-87.615701737 41.783432002)\t-87.615701737, 41.783432002\t11364175\n42.007894034\t-87.666690704\tPOINT (-87.666690704 42.007894034)\t-87.666690704, 42.007894034\t11364068\n41.911367051\t-87.626401638\tPOINT (-87.626401638 41.911367051)\t-87.626401638, 41.911367051\t11364228\n41.794670403\t-87.631785431\tPOINT (-87.631785431 41.794670403)\t-87.631785431, 41.794670403\t11364125\n41.910890328\t-87.650103247\tPOINT (-87.650103247 41.910890328)\t-87.650103247, 41.910890328\t11364123\n41.775266233\t-87.664100992\tPOINT (-87.664100992 41.775266233)\t-87.664100992, 41.775266233\t11364111\n41.827373751\t-87.682568055\tPOINT (-87.682568055 41.827373751)\t-87.682568055, 41.827373751\t11364069\n41.778429923\t-87.690938301\tPOINT (-87.690938301 41.778429923)\t-87.690938301, 41.778429923\t11364220\n41.79136464\t-87.669371759\tPOINT (-87.669371759 41.79136464)\t-87.669371759, 41.79136464\t11364124\n41.802733403\t-87.616278617\tPOINT (-87.616278617 41.802733403)\t-87.616278617, 41.802733403\t11364134\n41.895445588\t-87.718019508\tPOINT (-87.718019508 41.895445588)\t-87.718019508, 41.895445588\t11364057\n41.967358549\t-87.714551757\tPOINT (-87.714551757 41.967358549)\t-87.714551757, 41.967358549\t11364903\n41.963318603\t-87.763772677\tPOINT (-87.763772677 41.963318603)\t-87.763772677, 41.963318603\t11366101\n41.966053837\t-87.656930702\tPOINT (-87.656930702 41.966053837)\t-87.656930702, 41.966053837\t11364234\nnull\tnull\tnull\t\t11370246\n41.774938043\t-87.673786534\tPOINT (-87.673786534 41.774938043)\t-87.673786534, 41.774938043\t11364106\n41.760249047\t-87.688018861\tPOINT (-87.688018861 41.760249047)\t-87.688018861, 41.760249047\t11366861\n41.998102226\t-87.668488871\tPOINT (-87.668488871 41.998102226)\t-87.668488871, 41.998102226\t11365007\n41.768056035\t-87.568945009\tPOINT (-87.568945009 41.768056035)\t-87.568945009, 41.768056035\t11364938\n41.720219714\t-87.682042268\tPOINT (-87.682042268 41.720219714)\t-87.682042268, 41.720219714\t11364568\n41.880932047\t-87.709514547\tPOINT (-87.709514547 41.880932047)\t-87.709514547, 41.880932047\t11364138\n41.843892459\t-87.622098627\tPOINT (-87.622098627 41.843892459)\t-87.622098627, 41.843892459\t11364386\n41.929743818\t-87.684273777\tPOINT (-87.684273777 41.929743818)\t-87.684273777, 41.929743818\t11364107\n41.675389567\t-87.630995854\tPOINT (-87.630995854 41.675389567)\t-87.630995854, 41.675389567\t11364152\n41.958463251\t-87.705714737\tPOINT (-87.705714737 41.958463251)\t-87.705714737, 41.958463251\t11364176\n41.771660345\t-87.6603626\tPOINT (-87.6603626 41.771660345)\t-87.6603626, 41.771660345\t11364196\n41.950320001\t-87.647002452\tPOINT (-87.647002452 41.950320001)\t-87.647002452, 41.950320001\t11364839\n41.757021568\t-87.645419158\tPOINT (-87.645419158 41.757021568)\t-87.645419158, 41.757021568\t11364149\n41.691791597\t-87.679692934\tPOINT (-87.679692934 41.691791597)\t-87.679692934, 41.691791597\t11366756\n41.859823972\t-87.715229815\tPOINT (-87.715229815 41.859823972)\t-87.715229815, 41.859823972\t11364199\n41.752154317\t-87.665143707\tPOINT (-87.665143707 41.752154317)\t-87.665143707, 41.752154317\t11364143\n41.783891154\t-87.615399623\tPOINT (-87.615399623 41.783891154)\t-87.615399623, 41.783891154\t11364164\n41.783890879\t-87.615355627\tPOINT (-87.615355627 41.783890879)\t-87.615355627, 41.783890879\t11364090\n41.831031141\t-87.624486621\tPOINT (-87.624486621 41.831031141)\t-87.624486621, 41.831031141\t11364171\n41.837489008\t-87.646264459\tPOINT (-87.646264459 41.837489008)\t-87.646264459, 41.837489008\t11368218\n41.962705368\t-87.653123833\tPOINT (-87.653123833 41.962705368)\t-87.653123833, 41.962705368\t11364822\n41.726048791\t-87.655494047\tPOINT (-87.655494047 41.726048791)\t-87.655494047, 41.726048791\t11364899\n41.691297123\t-87.718387258\tPOINT (-87.718387258 41.691297123)\t-87.718387258, 41.691297123\t11367020\n41.900354519\t-87.624186934\tPOINT (-87.624186934 41.900354519)\t-87.624186934, 41.900354519\t11364881\n41.866382921\t-87.774160943\tPOINT (-87.774160943 41.866382921)\t-87.774160943, 41.866382921\t11365172\n41.751625982\t-87.574332921\tPOINT (-87.574332921 41.751625982)\t-87.574332921, 41.751625982\t11364224\n41.728121719\t-87.657989027\tPOINT (-87.657989027 41.728121719)\t-87.657989027, 41.728121719\t11363998\n41.939716567\t-87.667070505\tPOINT (-87.667070505 41.939716567)\t-87.667070505, 41.939716567\t11364276\n41.884007198\t-87.759281286\tPOINT (-87.759281286 41.884007198)\t-87.759281286, 41.884007198\t11364155\n41.758001798\t-87.58956331\tPOINT (-87.58956331 41.758001798)\t-87.58956331, 41.758001798\t11364098\n41.795190552\t-87.588007653\tPOINT (-87.588007653 41.795190552)\t-87.588007653, 41.795190552\t11364079\n41.688654197\t-87.663381178\tPOINT (-87.663381178 41.688654197)\t-87.663381178, 41.688654197\t11364280\n41.95275537\t-87.805533541\tPOINT (-87.805533541 41.95275537)\t-87.805533541, 41.95275537\t11365059\n41.967096469\t-87.707211152\tPOINT (-87.707211152 41.967096469)\t-87.707211152, 41.967096469\t11364216\nnull\tnull\tnull\t\t11368622\n41.778047465\t-87.586387726\tPOINT (-87.586387726 41.778047465)\t-87.586387726, 41.778047465\t11364930\n41.949153843\t-87.717687073\tPOINT (-87.717687073 41.949153843)\t-87.717687073, 41.949153843\t11364543\n41.69196113\t-87.637519577\tPOINT (-87.637519577 41.69196113)\t-87.637519577, 41.69196113\t11364737\n41.837650931\t-87.646266397\tPOINT (-87.646266397 41.837650931)\t-87.646266397, 41.837650931\t11363997\n41.937524153\t-87.776888179\tPOINT (-87.776888179 41.937524153)\t-87.776888179, 41.937524153\t11364142\n41.951617169\t-87.649620689\tPOINT (-87.649620689 41.951617169)\t-87.649620689, 41.951617169\t11364955\n41.666059523\t-87.627082357\tPOINT (-87.627082357 41.666059523)\t-87.627082357, 41.666059523\t11365376\n41.757732168\t-87.606609135\tPOINT (-87.606609135 41.757732168)\t-87.606609135, 41.757732168\t11364085\n41.801560128\t-87.741771408\tPOINT (-87.741771408 41.801560128)\t-87.741771408, 41.801560128\t11367014\n41.744985103\t-87.718014469\tPOINT (-87.718014469 41.744985103)\t-87.718014469, 41.744985103\t11364249\n41.912149595\t-87.736181\tPOINT (-87.736181 41.912149595)\t-87.736181, 41.912149595\t11364264\n41.961125737\t-87.75986544\tPOINT (-87.75986544 41.961125737)\t-87.75986544, 41.961125737\t11364739\n41.932382476\t-87.735591729\tPOINT (-87.735591729 41.932382476)\t-87.735591729, 41.932382476\t11364195\n41.927002017\t-87.734197767\tPOINT (-87.734197767 41.927002017)\t-87.734197767, 41.927002017\t11364750\n41.756259091\t-87.624719943\tPOINT (-87.624719943 41.756259091)\t-87.624719943, 41.756259091\t11363969\n41.778365999\t-87.700683919\tPOINT (-87.700683919 41.778365999)\t-87.700683919, 41.778365999\t11363990\n41.735911767\t-87.72875195\tPOINT (-87.72875195 41.735911767)\t-87.72875195, 41.735911767\t11364173\n41.961106271\t-87.714880655\tPOINT (-87.714880655 41.961106271)\t-87.714880655, 41.961106271\t11364116\nnull\tnull\tnull\t\t11370133\n41.884474087\t-87.650065271\tPOINT (-87.650065271 41.884474087)\t-87.650065271, 41.884474087\t11364080\n41.725803425\t-87.662786572\tPOINT (-87.662786572 41.725803425)\t-87.662786572, 41.725803425\t11363988\n41.881883933\t-87.640060441\tPOINT (-87.640060441 41.881883933)\t-87.640060441, 41.881883933\t11364479\n41.772016903\t-87.64458443\tPOINT (-87.64458443 41.772016903)\t-87.64458443, 41.772016903\t11364051\n41.895791782\t-87.761640346\tPOINT (-87.761640346 41.895791782)\t-87.761640346, 41.895791782\t11366786\n41.880475282\t-87.725665283\tPOINT (-87.725665283 41.880475282)\t-87.725665283, 41.880475282\t11363916\n41.876941219\t-87.699863182\tPOINT (-87.699863182 41.876941219)\t-87.699863182, 41.876941219\t11364061\n41.914378059\t-87.695881521\tPOINT (-87.695881521 41.914378059)\t-87.695881521, 41.914378059\t11366934\n41.892802107\t-87.713791753\tPOINT (-87.713791753 41.892802107)\t-87.713791753, 41.892802107\t11363976\n41.756714109\t-87.586085395\tPOINT (-87.586085395 41.756714109)\t-87.586085395, 41.756714109\t11364121\n41.891062111\t-87.617043461\tPOINT (-87.617043461 41.891062111)\t-87.617043461, 41.891062111\t11363977\n41.846344781\t-87.704224304\tPOINT (-87.704224304 41.846344781)\t-87.704224304, 41.846344781\t11364109\n42.010996301\t-87.662680653\tPOINT (-87.662680653 42.010996301)\t-87.662680653, 42.010996301\t11364162\n42.010996301\t-87.662680653\tPOINT (-87.662680653 42.010996301)\t-87.662680653, 42.010996301\t11364157\n41.7990211\t-87.631950692\tPOINT (-87.631950692 41.7990211)\t-87.631950692, 41.7990211\t11364183\nnull\tnull\tnull\t\t11369198\n41.911703221\t-87.805860851\tPOINT (-87.805860851 41.911703221)\t-87.805860851, 41.911703221\t11363968\n41.880349054\t-87.757077713\tPOINT (-87.757077713 41.880349054)\t-87.757077713, 41.880349054\t11365174\n41.936838962\t-87.80914536\tPOINT (-87.80914536 41.936838962)\t-87.80914536, 41.936838962\t11364148\n41.869327309\t-87.738613708\tPOINT (-87.738613708 41.869327309)\t-87.738613708, 41.869327309\t11364083\n41.908962044\t-87.631597128\tPOINT (-87.631597128 41.908962044)\t-87.631597128, 41.908962044\t11364239\n41.878202369\t-87.686356186\tPOINT (-87.686356186 41.878202369)\t-87.686356186, 41.878202369\t11364197\n41.766910975\t-87.585941418\tPOINT (-87.585941418 41.766910975)\t-87.585941418, 41.766910975\t11364158\n41.840565492\t-87.626840187\tPOINT (-87.626840187 41.840565492)\t-87.626840187, 41.840565492\t11363986\n41.736259984\t-87.628068782\tPOINT (-87.628068782 41.736259984)\t-87.628068782, 41.736259984\t11363923\n41.800499625\t-87.58741434\tPOINT (-87.58741434 41.800499625)\t-87.58741434, 41.800499625\t11363972\n41.753123114\t-87.563830192\tPOINT (-87.563830192 41.753123114)\t-87.563830192, 41.753123114\t11363926\n41.871191211\t-87.625922932\tPOINT (-87.625922932 41.871191211)\t-87.625922932, 41.871191211\t11366784\n41.835633377\t-87.635257324\tPOINT (-87.635257324 41.835633377)\t-87.635257324, 41.835633377\t11367179\nnull\tnull\tnull\t\t11366564\n41.768202542\t-87.656626733\tPOINT (-87.656626733 41.768202542)\t-87.656626733, 41.768202542\t11368371\n41.835579687\t-87.645004211\tPOINT (-87.645004211 41.835579687)\t-87.645004211, 41.835579687\t11367652\n41.965351123\t-87.660633502\tPOINT (-87.660633502 41.965351123)\t-87.660633502, 41.965351123\t11364097\n41.767866727\t-87.648122217\tPOINT (-87.648122217 41.767866727)\t-87.648122217, 41.767866727\t11364089\n41.755289122\t-87.556195869\tPOINT (-87.556195869 41.755289122)\t-87.556195869, 41.755289122\t11364937\n41.896888586\t-87.628203192\tPOINT (-87.628203192 41.896888586)\t-87.628203192, 41.896888586\t11363973\n41.896888586\t-87.628203192\tPOINT (-87.628203192 41.896888586)\t-87.628203192, 41.896888586\t11363947\n41.992607923\t-87.67988335\tPOINT (-87.67988335 41.992607923)\t-87.67988335, 41.992607923\t11363872\n41.876046196\t-87.736153693\tPOINT (-87.736153693 41.876046196)\t-87.736153693, 41.876046196\t11364165\n41.756905945\t-87.590275988\tPOINT (-87.590275988 41.756905945)\t-87.590275988, 41.756905945\t11363981\n41.693568267\t-87.611106817\tPOINT (-87.611106817 41.693568267)\t-87.611106817, 41.693568267\t11363911\n41.940258375\t-87.702754375\tPOINT (-87.702754375 41.940258375)\t-87.702754375, 41.940258375\t11364698\nnull\tnull\tnull\t\t11366561\n41.765132826\t-87.610411078\tPOINT (-87.610411078 41.765132826)\t-87.610411078, 41.765132826\t11364112\n41.951277739\t-87.689154212\tPOINT (-87.689154212 41.951277739)\t-87.689154212, 41.951277739\t11363956\n41.80710661\t-87.616530622\tPOINT (-87.616530622 41.80710661)\t-87.616530622, 41.80710661\t11364223\n41.793856167\t-87.684693126\tPOINT (-87.684693126 41.793856167)\t-87.684693126, 41.793856167\t11364102\n41.905814038\t-87.670325236\tPOINT (-87.670325236 41.905814038)\t-87.670325236, 41.905814038\t11363915\n41.8903184\t-87.669559987\tPOINT (-87.669559987 41.8903184)\t-87.669559987, 41.8903184\t11363887\n41.99094269\t-87.689685077\tPOINT (-87.689685077 41.99094269)\t-87.689685077, 41.99094269\t11363950\n41.740054485\t-87.575766289\tPOINT (-87.575766289 41.740054485)\t-87.575766289, 41.740054485\t11363877\n41.764013407\t-87.686896165\tPOINT (-87.686896165 41.764013407)\t-87.686896165, 41.764013407\t11364104\nnull\tnull\tnull\t\t11370525\nnull\tnull\tnull\t\t11367232\n41.701262449\t-87.607911781\tPOINT (-87.607911781 41.701262449)\t-87.607911781, 41.701262449\t11364151\n41.871779847\t-87.686182302\tPOINT (-87.686182302 41.871779847)\t-87.686182302, 41.871779847\t11364408\n41.764816587\t-87.672746566\tPOINT (-87.672746566 41.764816587)\t-87.672746566, 41.764816587\t11363979\n41.865938393\t-87.699659752\tPOINT (-87.699659752 41.865938393)\t-87.699659752, 41.865938393\t11363932\n41.712720927\t-87.681813981\tPOINT (-87.681813981 41.712720927)\t-87.681813981, 41.712720927\t11363837\n41.884640562\t-87.629465296\tPOINT (-87.629465296 41.884640562)\t-87.629465296, 41.884640562\t11365635\n41.778565718\t-87.692157822\tPOINT (-87.692157822 41.778565718)\t-87.692157822, 41.778565718\t11363909\n41.939146812\t-87.723039275\tPOINT (-87.723039275 41.939146812)\t-87.723039275, 41.939146812\t11366615\n41.776583461\t-87.672629494\tPOINT (-87.672629494 41.776583461)\t-87.672629494, 41.776583461\t11364629\n41.9496119\t-87.67750311\tPOINT (-87.67750311 41.9496119)\t-87.67750311, 41.9496119\t11364785\n41.695221499\t-87.631219523\tPOINT (-87.631219523 41.695221499)\t-87.631219523, 41.695221499\t11364780\n41.742434778\t-87.581765964\tPOINT (-87.581765964 41.742434778)\t-87.581765964, 41.742434778\t11364553\n41.949341196\t-87.688331891\tPOINT (-87.688331891 41.949341196)\t-87.688331891, 41.949341196\t11364177\n41.901366327\t-87.62050978\tPOINT (-87.62050978 41.901366327)\t-87.62050978, 41.901366327\t11365062\n41.908201931\t-87.680454639\tPOINT (-87.680454639 41.908201931)\t-87.680454639, 41.908201931\t11364436\n41.792438971\t-87.732944259\tPOINT (-87.732944259 41.792438971)\t-87.732944259, 41.792438971\t11364119\n41.961867922\t-87.648430138\tPOINT (-87.648430138 41.961867922)\t-87.648430138, 41.961867922\t11365785\n41.721220015\t-87.627438388\tPOINT (-87.627438388 41.721220015)\t-87.627438388, 41.721220015\t11363943\n41.942036792\t-87.668726119\tPOINT (-87.668726119 41.942036792)\t-87.668726119, 41.942036792\t11363860\n41.898024408\t-87.748327398\tPOINT (-87.748327398 41.898024408)\t-87.748327398, 41.898024408\t11363858\n41.86821682\t-87.6304532\tPOINT (-87.6304532 41.86821682)\t-87.6304532, 41.86821682\t11364081\n41.778099133\t-87.633828531\tPOINT (-87.633828531 41.778099133)\t-87.633828531, 41.778099133\t11364513\n41.776778748\t-87.677496191\tPOINT (-87.677496191 41.776778748)\t-87.677496191, 41.776778748\t11364105\n41.765558228\t-87.622733535\tPOINT (-87.622733535 41.765558228)\t-87.622733535, 41.765558228\t11364502\n41.860003414\t-87.729878828\tPOINT (-87.729878828 41.860003414)\t-87.729878828, 41.860003414\t11363944\n41.894006661\t-87.75153377\tPOINT (-87.75153377 41.894006661)\t-87.75153377, 41.894006661\t11363904\n41.847154968\t-87.718530183\tPOINT (-87.718530183 41.847154968)\t-87.718530183, 41.847154968\t11363936\n41.886929974\t-87.631375562\tPOINT (-87.631375562 41.886929974)\t-87.631375562, 41.886929974\t11364756\n41.902474874\t-87.755780468\tPOINT (-87.755780468 41.902474874)\t-87.755780468, 41.902474874\t11364131\n41.884570549\t-87.768291872\tPOINT (-87.768291872 41.884570549)\t-87.768291872, 41.884570549\t11364041\nnull\tnull\tnull\t\t11370587\n41.768009206\t-87.573469016\tPOINT (-87.573469016 41.768009206)\t-87.573469016, 41.768009206\t11364086\n41.916123363\t-87.68315157\tPOINT (-87.68315157 41.916123363)\t-87.68315157, 41.916123363\t11364678\n41.722578383\t-87.662706548\tPOINT (-87.662706548 41.722578383)\t-87.662706548, 41.722578383\t11364229\n41.88946287\t-87.624222942\tPOINT (-87.624222942 41.88946287)\t-87.624222942, 41.88946287\t11364084\n41.762649738\t-87.650413609\tPOINT (-87.650413609 41.762649738)\t-87.650413609, 41.762649738\t11364600\n41.956678016\t-87.70443813\tPOINT (-87.70443813 41.956678016)\t-87.70443813, 41.956678016\t11366142\n41.924893729\t-87.688471629\tPOINT (-87.688471629 41.924893729)\t-87.688471629, 41.924893729\t11364130\n41.801538809\t-87.616145232\tPOINT (-87.616145232 41.801538809)\t-87.616145232, 41.801538809\t11363958\n41.853203765\t-87.724796627\tPOINT (-87.724796627 41.853203765)\t-87.724796627, 41.853203765\t11363830\n41.785695223\t-87.688695094\tPOINT (-87.688695094 41.785695223)\t-87.688695094, 41.785695223\t11363934\n41.954892271\t-87.650754774\tPOINT (-87.650754774 41.954892271)\t-87.650754774, 41.954892271\t11363890\n41.886909333\t-87.626667672\tPOINT (-87.626667672 41.886909333)\t-87.626667672, 41.886909333\t11364004\n42.005238416\t-87.678742313\tPOINT (-87.678742313 42.005238416)\t-87.678742313, 42.005238416\t11365114\n41.795991039\t-87.630542489\tPOINT (-87.630542489 41.795991039)\t-87.630542489, 41.795991039\t11363965\n41.890358524\t-87.722273552\tPOINT (-87.722273552 41.890358524)\t-87.722273552, 41.890358524\t11363886\n41.864070361\t-87.695838148\tPOINT (-87.695838148 41.864070361)\t-87.695838148, 41.864070361\t11363938\n41.845187094\t-87.639942947\tPOINT (-87.639942947 41.845187094)\t-87.639942947, 41.845187094\t11364246\n41.869718313\t-87.681224545\tPOINT (-87.681224545 41.869718313)\t-87.681224545, 41.869718313\t11368419\n41.883576472\t-87.709830347\tPOINT (-87.709830347 41.883576472)\t-87.709830347, 41.883576472\t11364099\n41.753085308\t-87.667149714\tPOINT (-87.667149714 41.753085308)\t-87.667149714, 41.753085308\t11364286\n41.889906681\t-87.624100509\tPOINT (-87.624100509 41.889906681)\t-87.624100509, 41.889906681\t11363999\n41.895996468\t-87.625487641\tPOINT (-87.625487641 41.895996468)\t-87.625487641, 41.895996468\t11363825\n41.936209474\t-87.736945262\tPOINT (-87.736945262 41.936209474)\t-87.736945262, 41.936209474\t11365570\n41.86157927\t-87.720157794\tPOINT (-87.720157794 41.86157927)\t-87.720157794, 41.86157927\t11366758\n41.783284963\t-87.590836801\tPOINT (-87.590836801 41.783284963)\t-87.590836801, 41.783284963\t11368791\n41.883210775\t-87.629906972\tPOINT (-87.629906972 41.883210775)\t-87.629906972, 41.883210775\t11364060\n41.826034055\t-87.694704001\tPOINT (-87.694704001 41.826034055)\t-87.694704001, 41.826034055\t11364831\n41.87650065\t-87.642490662\tPOINT (-87.642490662 41.87650065)\t-87.642490662, 41.87650065\t11366575\n41.736831465\t-87.551417201\tPOINT (-87.551417201 41.736831465)\t-87.551417201, 41.736831465\t11363819\n41.882334457\t-87.757886124\tPOINT (-87.757886124 41.882334457)\t-87.757886124, 41.882334457\t11363793\n42.020161826\t-87.673087465\tPOINT (-87.673087465 42.020161826)\t-87.673087465, 42.020161826\t11363831\n41.9531308\t-87.727600504\tPOINT (-87.727600504 41.9531308)\t-87.727600504, 41.9531308\t11363841\n41.813410154\t-87.685838464\tPOINT (-87.685838464 41.813410154)\t-87.685838464, 41.813410154\t11363879\n42.000745319\t-87.670462744\tPOINT (-87.670462744 42.000745319)\t-87.670462744, 42.000745319\t11363868\n41.991376844\t-87.656853941\tPOINT (-87.656853941 41.991376844)\t-87.656853941, 41.991376844\t11363875\n41.905629531\t-87.736227068\tPOINT (-87.736227068 41.905629531)\t-87.736227068, 41.905629531\t11364191\n41.787537331\t-87.702163149\tPOINT (-87.702163149 41.787537331)\t-87.702163149, 41.787537331\t11363967\n41.756094931\t-87.644659401\tPOINT (-87.644659401 41.756094931)\t-87.644659401, 41.756094931\t11363917\n41.947225886\t-87.655545441\tPOINT (-87.655545441 41.947225886)\t-87.655545441, 41.947225886\t11367207\n41.911367051\t-87.626401638\tPOINT (-87.626401638 41.911367051)\t-87.626401638, 41.911367051\t11364048\n41.774125258\t-87.609441256\tPOINT (-87.609441256 41.774125258)\t-87.609441256, 41.774125258\t11363853\n41.750471926\t-87.600314475\tPOINT (-87.600314475 41.750471926)\t-87.600314475, 41.750471926\t11363876\n41.700261772\t-87.665574993\tPOINT (-87.665574993 41.700261772)\t-87.665574993, 41.700261772\t11363897\n41.881652603\t-87.62776115\tPOINT (-87.62776115 41.881652603)\t-87.62776115, 41.881652603\t11363952\n41.766414839\t-87.64077348\tPOINT (-87.64077348 41.766414839)\t-87.64077348, 41.766414839\t11367834\n41.884047433\t-87.723949513\tPOINT (-87.723949513 41.884047433)\t-87.723949513, 41.884047433\t11364312\n41.877822179\t-87.655181405\tPOINT (-87.655181405 41.877822179)\t-87.655181405, 41.877822179\t11368449\n41.838215324\t-87.633387079\tPOINT (-87.633387079 41.838215324)\t-87.633387079, 41.838215324\t11364869\n41.708684732\t-87.623554316\tPOINT (-87.623554316 41.708684732)\t-87.623554316, 41.708684732\t11364256\n41.735857166\t-87.624152861\tPOINT (-87.624152861 41.735857166)\t-87.624152861, 41.735857166\t11363948\n41.970087316\t-87.726049877\tPOINT (-87.726049877 41.970087316)\t-87.726049877, 41.970087316\t11364700\n41.886569659\t-87.693227415\tPOINT (-87.693227415 41.886569659)\t-87.693227415, 41.886569659\t11364076\n41.883131624\t-87.677750082\tPOINT (-87.677750082 41.883131624)\t-87.677750082, 41.883131624\t11364695\n41.770788105\t-87.585012945\tPOINT (-87.585012945 41.770788105)\t-87.585012945, 41.770788105\t11366947\nnull\tnull\tnull\t\t11365773\n41.961828235\t-87.705821433\tPOINT (-87.705821433 41.961828235)\t-87.705821433, 41.961828235\t11368469\n41.94892374\t-87.661945817\tPOINT (-87.661945817 41.94892374)\t-87.661945817, 41.94892374\t11363945\nnull\tnull\tnull\t\t11365848\n41.88233367\t-87.627841791\tPOINT (-87.627841791 41.88233367)\t-87.627841791, 41.88233367\t11363919\n41.854619424\t-87.712420504\tPOINT (-87.712420504 41.854619424)\t-87.712420504, 41.854619424\t11363940\n41.885741029\t-87.631711749\tPOINT (-87.631711749 41.885741029)\t-87.631711749, 41.885741029\t11363769\n41.972334733\t-87.683433354\tPOINT (-87.683433354 41.972334733)\t-87.683433354, 41.972334733\t11363842\n41.925921947\t-87.649432101\tPOINT (-87.649432101 41.925921947)\t-87.649432101, 41.925921947\t11363774\n41.825143519\t-87.621634758\tPOINT (-87.621634758 41.825143519)\t-87.621634758, 41.825143519\t11363970\n41.671635509\t-87.629682385\tPOINT (-87.629682385 41.671635509)\t-87.629682385, 41.671635509\t11366084\n41.792002104\t-87.643882805\tPOINT (-87.643882805 41.792002104)\t-87.643882805, 41.792002104\t11363792\n41.867031006\t-87.654583224\tPOINT (-87.654583224 41.867031006)\t-87.654583224, 41.867031006\t11363760\n41.988136448\t-87.66020607\tPOINT (-87.66020607 41.988136448)\t-87.66020607, 41.988136448\t11363888\n41.884526106\t-87.680229348\tPOINT (-87.680229348 41.884526106)\t-87.680229348, 41.884526106\t11366619\n41.748565442\t-87.603890805\tPOINT (-87.603890805 41.748565442)\t-87.603890805, 41.748565442\t11364238\n41.899257407\t-87.699863063\tPOINT (-87.699863063 41.899257407)\t-87.699863063, 41.899257407\t11366750\n41.751446024\t-87.565011945\tPOINT (-87.565011945 41.751446024)\t-87.565011945, 41.751446024\t11363782\n41.922492535\t-87.648656656\tPOINT (-87.648656656 41.922492535)\t-87.648656656, 41.922492535\t11364517\n41.766025437\t-87.581028836\tPOINT (-87.581028836 41.766025437)\t-87.581028836, 41.766025437\t11364252\n41.861559271\t-87.65976218\tPOINT (-87.65976218 41.861559271)\t-87.65976218, 41.861559271\t11363962\n41.740895201\t-87.606069845\tPOINT (-87.606069845 41.740895201)\t-87.606069845, 41.740895201\t11364752\n41.88314073\t-87.76660788\tPOINT (-87.76660788 41.88314073)\t-87.76660788, 41.88314073\t11365176\n41.89965509\t-87.716454713\tPOINT (-87.716454713 41.89965509)\t-87.716454713, 41.89965509\t11364153\n41.707776242\t-87.623535011\tPOINT (-87.623535011 41.707776242)\t-87.623535011, 41.707776242\t11363974\n41.814162811\t-87.603994347\tPOINT (-87.603994347 41.814162811)\t-87.603994347, 41.814162811\t11366870\n41.938652904\t-87.760327789\tPOINT (-87.760327789 41.938652904)\t-87.760327789, 41.938652904\t11363906\n41.976851852\t-87.654999693\tPOINT (-87.654999693 41.976851852)\t-87.654999693, 41.976851852\t11363845\n41.694274574\t-87.634349417\tPOINT (-87.634349417 41.694274574)\t-87.634349417, 41.694274574\t11363856\n41.880713928\t-87.726683874\tPOINT (-87.726683874 41.880713928)\t-87.726683874, 41.880713928\t11363957\n41.722013357\t-87.575344529\tPOINT (-87.575344529 41.722013357)\t-87.575344529, 41.722013357\t11363824\n41.896442307\t-87.655722728\tPOINT (-87.655722728 41.896442307)\t-87.655722728, 41.896442307\t11366599\n41.816798304\t-87.689560854\tPOINT (-87.689560854 41.816798304)\t-87.689560854, 41.816798304\t11363801\n41.932630708\t-87.723307203\tPOINT (-87.723307203 41.932630708)\t-87.723307203, 41.932630708\t11364063\n41.723892277\t-87.682159034\tPOINT (-87.682159034 41.723892277)\t-87.682159034, 41.723892277\t11363939\n41.735931109\t-87.653642482\tPOINT (-87.653642482 41.735931109)\t-87.653642482, 41.735931109\t11363857\n41.85698892\t-87.661906149\tPOINT (-87.661906149 41.85698892)\t-87.661906149, 41.85698892\t11363770\n41.973927174\t-87.707784135\tPOINT (-87.707784135 41.973927174)\t-87.707784135, 41.973927174\t11363836\n41.904370109\t-87.631460067\tPOINT (-87.631460067 41.904370109)\t-87.631460067, 41.904370109\t11363864\n41.880511308\t-87.744165079\tPOINT (-87.744165079 41.880511308)\t-87.744165079, 41.880511308\t11363961\n41.702313641\t-87.563224189\tPOINT (-87.563224189 41.702313641)\t-87.563224189, 41.702313641\t11363778\n41.79449296\t-87.699960599\tPOINT (-87.699960599 41.79449296)\t-87.699960599, 41.79449296\t11366903\n41.878510943\t-87.657035826\tPOINT (-87.657035826 41.878510943)\t-87.657035826, 41.878510943\t11364344\n41.904763196\t-87.69555472\tPOINT (-87.69555472 41.904763196)\t-87.69555472, 41.904763196\t11364053\n41.76312992\t-87.661104189\tPOINT (-87.661104189 41.76312992)\t-87.661104189, 41.76312992\t11367310\n41.880717437\t-87.726309284\tPOINT (-87.726309284 41.880717437)\t-87.726309284, 41.880717437\t11363776\n41.777781608\t-87.655015546\tPOINT (-87.655015546 41.777781608)\t-87.655015546, 41.777781608\t11364838\n42.005578173\t-87.658278252\tPOINT (-87.658278252 42.005578173)\t-87.658278252, 42.005578173\t11364163\n41.924198765\t-87.74937447\tPOINT (-87.74937447 41.924198765)\t-87.74937447, 41.924198765\t11363918\n41.947295978\t-87.651162974\tPOINT (-87.651162974 41.947295978)\t-87.651162974, 41.947295978\t11363714\n41.707273314\t-87.559649263\tPOINT (-87.559649263 41.707273314)\t-87.559649263, 41.707273314\t11363855\n41.992297764\t-87.710477223\tPOINT (-87.710477223 41.992297764)\t-87.710477223, 41.992297764\t11363813\n41.892154434\t-87.754275788\tPOINT (-87.754275788 41.892154434)\t-87.754275788, 41.892154434\t11364296\n41.906725537\t-87.716695235\tPOINT (-87.716695235 41.906725537)\t-87.716695235, 41.906725537\t11364140\n41.922841872\t-87.645121689\tPOINT (-87.645121689 41.922841872)\t-87.645121689, 41.922841872\t11363807\n41.722476277\t-87.574796951\tPOINT (-87.574796951 41.722476277)\t-87.574796951, 41.722476277\t11363834\n41.886832476\t-87.627557257\tPOINT (-87.627557257 41.886832476)\t-87.627557257, 41.886832476\t11363874\n41.771361236\t-87.668852241\tPOINT (-87.668852241 41.771361236)\t-87.668852241, 41.771361236\t11363771\nnull\tnull\tnull\t\t11367674\n41.883576472\t-87.709830347\tPOINT (-87.709830347 41.883576472)\t-87.709830347, 41.883576472\t11363797\n41.903561493\t-87.653509519\tPOINT (-87.653509519 41.903561493)\t-87.653509519, 41.903561493\t11363723\n41.65580407\t-87.604254158\tPOINT (-87.604254158 41.65580407)\t-87.604254158, 41.65580407\t11363818\n41.899410159\t-87.624131266\tPOINT (-87.624131266 41.899410159)\t-87.624131266, 41.899410159\t11363840\n41.74899896\t-87.605175838\tPOINT (-87.605175838 41.74899896)\t-87.605175838, 41.74899896\t11363881\n41.741445676\t-87.710511036\tPOINT (-87.710511036 41.741445676)\t-87.710511036, 41.741445676\t11364708\n41.795364408\t-87.599238402\tPOINT (-87.599238402 41.795364408)\t-87.599238402, 41.795364408\t11363913\n41.745324922\t-87.601380733\tPOINT (-87.601380733 41.745324922)\t-87.601380733, 41.745324922\t11363772\n41.76101789\t-87.641865128\tPOINT (-87.641865128 41.76101789)\t-87.641865128, 41.76101789\t11364010\n41.75118652\t-87.610882749\tPOINT (-87.610882749 41.75118652)\t-87.610882749, 41.75118652\t11363901\n41.895140898\t-87.624255632\tPOINT (-87.624255632 41.895140898)\t-87.624255632, 41.895140898\t11363867\n41.896010197\t-87.63716028\tPOINT (-87.63716028 41.896010197)\t-87.63716028, 41.896010197\t11366795\nnull\tnull\tnull\t\t11370328\n41.75063458\t-87.616525242\tPOINT (-87.616525242 41.75063458)\t-87.616525242, 41.75063458\t11363815\n41.896714548\t-87.625340136\tPOINT (-87.625340136 41.896714548)\t-87.625340136, 41.896714548\t11363863\n41.890013524\t-87.631664996\tPOINT (-87.631664996 41.890013524)\t-87.631664996, 41.890013524\t11364760\n41.778092941\t-87.722746539\tPOINT (-87.722746539 41.778092941)\t-87.722746539, 41.778092941\t11363679\n41.728139219\t-87.656765261\tPOINT (-87.656765261 41.728139219)\t-87.656765261, 41.728139219\t11363739\n41.872866052\t-87.697388322\tPOINT (-87.697388322 41.872866052)\t-87.697388322, 41.872866052\t11363697\n41.77178664\t-87.628339611\tPOINT (-87.628339611 41.77178664)\t-87.628339611, 41.77178664\t11363835\n41.798636502\t-87.691495695\tPOINT (-87.691495695 41.798636502)\t-87.691495695, 41.798636502\t11364537\n41.871009338\t-87.673750791\tPOINT (-87.673750791 41.871009338)\t-87.673750791, 41.871009338\t11363802\n41.851632109\t-87.717738536\tPOINT (-87.717738536 41.851632109)\t-87.717738536, 41.851632109\t11364205\n41.884952818\t-87.750337933\tPOINT (-87.750337933 41.884952818)\t-87.750337933, 41.884952818\t11363710\n41.758759834\t-87.586695735\tPOINT (-87.586695735 41.758759834)\t-87.586695735, 41.758759834\t11364499\n41.906411523\t-87.712403816\tPOINT (-87.712403816 41.906411523)\t-87.712403816, 41.906411523\t11364721\n41.795728579\t-87.768500808\tPOINT (-87.768500808 41.795728579)\t-87.768500808, 41.795728579\t11363659\n41.946648338\t-87.702015041\tPOINT (-87.702015041 41.946648338)\t-87.702015041, 41.946648338\t11363677\n41.87268084\t-87.714217417\tPOINT (-87.714217417 41.87268084)\t-87.714217417, 41.87268084\t11363690\n41.805238294\t-87.611357832\tPOINT (-87.611357832 41.805238294)\t-87.611357832, 41.805238294\t11363719\n41.880653112\t-87.634396649\tPOINT (-87.634396649 41.880653112)\t-87.634396649, 41.880653112\t11363955\n41.852508778\t-87.730389741\tPOINT (-87.730389741 41.852508778)\t-87.730389741, 41.852508778\t11363711\n41.751165501\t-87.595483806\tPOINT (-87.595483806 41.751165501)\t-87.595483806, 41.751165501\t11363850\n41.802269309\t-87.661157371\tPOINT (-87.661157371 41.802269309)\t-87.661157371, 41.802269309\t11363701\n41.884497303\t-87.625801874\tPOINT (-87.625801874 41.884497303)\t-87.625801874, 41.884497303\t11363680\n41.773109884\t-87.586294711\tPOINT (-87.586294711 41.773109884)\t-87.586294711, 41.773109884\t11363668\nnull\tnull\tnull\t\t11369379\n41.736488616\t-87.545819278\tPOINT (-87.545819278 41.736488616)\t-87.545819278, 41.736488616\t11363698\n41.74041143\t-87.665617214\tPOINT (-87.665617214 41.74041143)\t-87.665617214, 41.74041143\t11364546\n41.874503125\t-87.764650028\tPOINT (-87.764650028 41.874503125)\t-87.764650028, 41.874503125\t11364204\nnull\tnull\tnull\t\t11365855\n41.908489189\t-87.677409873\tPOINT (-87.677409873 41.908489189)\t-87.677409873, 41.908489189\t11363653\n41.794439271\t-87.674316413\tPOINT (-87.674316413 41.794439271)\t-87.674316413, 41.794439271\t11364244\n41.786735319\t-87.665162422\tPOINT (-87.665162422 41.786735319)\t-87.665162422, 41.786735319\t11363692\n41.87926245\t-87.74412147\tPOINT (-87.74412147 41.87926245)\t-87.74412147, 41.87926245\t11363709\n41.844162699\t-87.695199039\tPOINT (-87.695199039 41.844162699)\t-87.695199039, 41.844162699\t11363775\n41.776964275\t-87.683583862\tPOINT (-87.683583862 41.776964275)\t-87.683583862, 41.776964275\t11363700\n41.777287069\t-87.68924858\tPOINT (-87.68924858 41.777287069)\t-87.68924858, 41.777287069\t11363699\n41.879266261\t-87.743794623\tPOINT (-87.743794623 41.879266261)\t-87.743794623, 41.879266261\t11364267\n41.766909392\t-87.62333445\tPOINT (-87.62333445 41.766909392)\t-87.62333445, 41.766909392\t11364498\n41.720099902\t-87.643179411\tPOINT (-87.643179411 41.720099902)\t-87.643179411, 41.720099902\t11364047\n41.754803107\t-87.55453419\tPOINT (-87.55453419 41.754803107)\t-87.55453419, 41.754803107\t11363742\n41.8030259\t-87.677632045\tPOINT (-87.677632045 41.8030259)\t-87.677632045, 41.8030259\t11363733\n41.909480406\t-87.676066146\tPOINT (-87.676066146 41.909480406)\t-87.676066146, 41.909480406\t11363688\n42.019371503\t-87.671181992\tPOINT (-87.671181992 42.019371503)\t-87.671181992, 42.019371503\t11366823\n41.720999927\t-87.677843896\tPOINT (-87.677843896 41.720999927)\t-87.677843896, 41.720999927\t11367796\n41.891694878\t-87.626155832\tPOINT (-87.626155832 41.891694878)\t-87.626155832, 41.891694878\t11364011\n41.886431663\t-87.625303112\tPOINT (-87.625303112 41.886431663)\t-87.625303112, 41.886431663\t11363791\n41.874343989\t-87.726582558\tPOINT (-87.726582558 41.874343989)\t-87.726582558, 41.874343989\t11363635\n41.737900558\t-87.61294427\tPOINT (-87.61294427 41.737900558)\t-87.61294427, 41.737900558\t11364054\n41.870395338\t-87.624136329\tPOINT (-87.624136329 41.870395338)\t-87.624136329, 41.870395338\t11363661\n41.791948002\t-87.627741024\tPOINT (-87.627741024 41.791948002)\t-87.627741024, 41.791948002\t11364854\n41.765497339\t-87.586313383\tPOINT (-87.586313383 41.765497339)\t-87.586313383, 41.765497339\t11363623\n41.749445381\t-87.605900054\tPOINT (-87.605900054 41.749445381)\t-87.605900054, 41.749445381\t11363735\n41.791586957\t-87.669376799\tPOINT (-87.669376799 41.791586957)\t-87.669376799, 41.791586957\t11364805\n41.771518515\t-87.665214054\tPOINT (-87.665214054 41.771518515)\t-87.665214054, 41.771518515\t11363779\n41.82634032\t-87.670294651\tPOINT (-87.670294651 41.82634032)\t-87.670294651, 41.82634032\t11364959\n41.781311691\t-87.725275189\tPOINT (-87.725275189 41.781311691)\t-87.725275189, 41.781311691\t11365926\n41.924874712\t-87.690463486\tPOINT (-87.690463486 41.924874712)\t-87.690463486, 41.924874712\t11365886\n41.786815326\t-87.726044542\tPOINT (-87.726044542 41.786815326)\t-87.726044542, 41.786815326\t11364174\n41.913861579\t-87.646298336\tPOINT (-87.646298336 41.913861579)\t-87.646298336, 41.913861579\t11364343\n41.720384131\t-87.538913442\tPOINT (-87.538913442 41.720384131)\t-87.538913442, 41.720384131\t11367301\n41.768310829\t-87.684921195\tPOINT (-87.684921195 41.768310829)\t-87.684921195, 41.768310829\t11365669\n41.769532019\t-87.670014841\tPOINT (-87.670014841 41.769532019)\t-87.670014841, 41.769532019\t11363935\n41.962032815\t-87.713169339\tPOINT (-87.713169339 41.962032815)\t-87.713169339, 41.962032815\t11366610\n41.922039747\t-87.697330182\tPOINT (-87.697330182 41.922039747)\t-87.697330182, 41.922039747\t11364218\nnull\tnull\tnull\t\t11369388\n41.871395715\t-87.72536577\tPOINT (-87.72536577 41.871395715)\t-87.72536577, 41.871395715\t11363631\n41.806797255\t-87.611391679\tPOINT (-87.611391679 41.806797255)\t-87.611391679, 41.806797255\t11364573\n41.885702079\t-87.642031644\tPOINT (-87.642031644 41.885702079)\t-87.642031644, 41.885702079\t11366680\n41.735119333\t-87.64726867\tPOINT (-87.64726867 41.735119333)\t-87.64726867, 41.735119333\t11363674\n41.892795542\t-87.712576112\tPOINT (-87.712576112 41.892795542)\t-87.712576112, 41.892795542\t11363656\n41.726584848\t-87.620719729\tPOINT (-87.620719729 41.726584848)\t-87.620719729, 41.726584848\t11363731\n41.767865445\t-87.587546902\tPOINT (-87.587546902 41.767865445)\t-87.587546902, 41.767865445\t11366617\n41.899410159\t-87.624131266\tPOINT (-87.624131266 41.899410159)\t-87.624131266, 41.899410159\t11365143\n41.769447819\t-87.566538409\tPOINT (-87.566538409 41.769447819)\t-87.566538409, 41.769447819\t11364129\n41.864062245\t-87.720049633\tPOINT (-87.720049633 41.864062245)\t-87.720049633, 41.864062245\t11363589\n41.880367915\t-87.755370011\tPOINT (-87.755370011 41.880367915)\t-87.755370011, 41.880367915\t11363667\n41.69145123\t-87.621034412\tPOINT (-87.621034412 41.69145123)\t-87.621034412, 41.69145123\t11363752\n41.731945687\t-87.547662622\tPOINT (-87.547662622 41.731945687)\t-87.547662622, 41.731945687\t11363628\n41.871051124\t-87.697211719\tPOINT (-87.697211719 41.871051124)\t-87.697211719, 41.871051124\t11363599\n41.724896462\t-87.632665879\tPOINT (-87.632665879 41.724896462)\t-87.632665879, 41.724896462\t11364905\n41.724018409\t-87.668244967\tPOINT (-87.668244967 41.724018409)\t-87.668244967, 41.724018409\t11363533\n41.724896462\t-87.632665879\tPOINT (-87.632665879 41.724896462)\t-87.632665879, 41.724896462\t11364918\n41.771364384\t-87.662781509\tPOINT (-87.662781509 41.771364384)\t-87.662781509, 41.771364384\t11363773\n41.779165877\t-87.690043705\tPOINT (-87.690043705 41.779165877)\t-87.690043705, 41.779165877\t11363600\n41.793876151\t-87.649341462\tPOINT (-87.649341462 41.793876151)\t-87.649341462, 41.793876151\t11363522\n41.894219819\t-87.706516723\tPOINT (-87.706516723 41.894219819)\t-87.706516723, 41.894219819\t11363569\n41.939905846\t-87.654410045\tPOINT (-87.654410045 41.939905846)\t-87.654410045, 41.939905846\t11363743\n41.736318121\t-87.561132703\tPOINT (-87.561132703 41.736318121)\t-87.561132703, 41.736318121\t11363601\n42.017902845\t-87.676823962\tPOINT (-87.676823962 42.017902845)\t-87.676823962, 42.017902845\t11363865\n41.874632814\t-87.685022614\tPOINT (-87.685022614 41.874632814)\t-87.685022614, 41.874632814\t11364377\n41.780217525\t-87.616874156\tPOINT (-87.616874156 41.780217525)\t-87.616874156, 41.780217525\t11363559\n41.768290786\t-87.68623372\tPOINT (-87.68623372 41.768290786)\t-87.68623372, 41.768290786\t11363546\n41.9105506\t-87.673185901\tPOINT (-87.673185901 41.9105506)\t-87.673185901, 41.9105506\t11363524\n41.872638842\t-87.688629981\tPOINT (-87.688629981 41.872638842)\t-87.688629981, 41.872638842\t11363568\n41.883000637\t-87.687078956\tPOINT (-87.687078956 41.883000637)\t-87.687078956, 41.883000637\t11363728\n41.878560677\t-87.687120021\tPOINT (-87.687120021 41.878560677)\t-87.687120021, 41.878560677\t11363463\n41.780166523\t-87.700732216\tPOINT (-87.700732216 41.780166523)\t-87.700732216, 41.780166523\t11363684\n41.877718933\t-87.767335098\tPOINT (-87.767335098 41.877718933)\t-87.767335098, 41.877718933\t11363707\n41.89540929\t-87.72149816\tPOINT (-87.72149816 41.89540929)\t-87.72149816, 41.89540929\t11363706\n41.938584005\t-87.765793802\tPOINT (-87.765793802 41.938584005)\t-87.765793802, 41.938584005\t11363764\nnull\tnull\tnull\t\t11367701\n41.894544296\t-87.622745318\tPOINT (-87.622745318 41.894544296)\t-87.622745318, 41.894544296\t11365126\n41.881857538\t-87.707621709\tPOINT (-87.707621709 41.881857538)\t-87.707621709, 41.881857538\t11363715\n41.74591509\t-87.649971695\tPOINT (-87.649971695 41.74591509)\t-87.649971695, 41.74591509\t11363529\n41.809693341\t-87.592138525\tPOINT (-87.592138525 41.809693341)\t-87.592138525, 41.809693341\t11364077\n41.867629489\t-87.703266703\tPOINT (-87.703266703 41.867629489)\t-87.703266703, 41.867629489\t11363736\n41.71252985\t-87.631650164\tPOINT (-87.631650164 41.71252985)\t-87.631650164, 41.71252985\t11363547\n41.895678688\t-87.655135777\tPOINT (-87.655135777 41.895678688)\t-87.655135777, 41.895678688\t11363572\n41.891869695\t-87.616288868\tPOINT (-87.616288868 41.891869695)\t-87.616288868, 41.891869695\t11363838\n41.873714953\t-87.66658514\tPOINT (-87.66658514 41.873714953)\t-87.66658514, 41.873714953\t11363682\n41.845233365\t-87.692806506\tPOINT (-87.692806506 41.845233365)\t-87.692806506, 41.845233365\t11364534\n41.770787673\t-87.60935781\tPOINT (-87.60935781 41.770787673)\t-87.60935781, 41.770787673\t11363564\n41.782988644\t-87.613264765\tPOINT (-87.613264765 41.782988644)\t-87.613264765, 41.782988644\t11364497\n41.935341514\t-87.654756152\tPOINT (-87.654756152 41.935341514)\t-87.654756152, 41.935341514\t11364663\n41.931668983\t-87.736120248\tPOINT (-87.736120248 41.931668983)\t-87.736120248, 41.931668983\t11365771\n41.963692465\t-87.700986414\tPOINT (-87.700986414 41.963692465)\t-87.700986414, 41.963692465\t11363537\n41.911387595\t-87.805852428\tPOINT (-87.805852428 41.911387595)\t-87.805852428, 41.911387595\t11364583\nnull\tnull\tnull\t\t11370128\n41.794172544\t-87.70357593\tPOINT (-87.70357593 41.794172544)\t-87.70357593, 41.794172544\t11363553\n41.723892277\t-87.682159034\tPOINT (-87.682159034 41.723892277)\t-87.682159034, 41.723892277\t11363476\n41.783970683\t-87.671604009\tPOINT (-87.671604009 41.783970683)\t-87.671604009, 41.783970683\t11364863\nnull\tnull\tnull\t\t11364028\n41.976290414\t-87.905227221\tPOINT (-87.905227221 41.976290414)\t-87.905227221, 41.976290414\t11363550\n41.779121068\t-87.656918917\tPOINT (-87.656918917 41.779121068)\t-87.656918917, 41.779121068\t11364687\n41.981737404\t-87.765925655\tPOINT (-87.765925655 41.981737404)\t-87.765925655, 41.981737404\t11364056\n41.880526602\t-87.644342108\tPOINT (-87.644342108 41.880526602)\t-87.644342108, 41.880526602\t11363821\n41.897822655\t-87.717611013\tPOINT (-87.717611013 41.897822655)\t-87.717611013, 41.897822655\t11363482\nnull\tnull\tnull\t\t11369392\n41.860046304\t-87.715238687\tPOINT (-87.715238687 41.860046304)\t-87.715238687, 41.860046304\t11363713\n41.780561491\t-87.669090909\tPOINT (-87.669090909 41.780561491)\t-87.669090909, 41.780561491\t11363438\n41.957415629\t-87.75169636\tPOINT (-87.75169636 41.957415629)\t-87.75169636, 41.957415629\t11363516\n41.913134333\t-87.757587507\tPOINT (-87.757587507 41.913134333)\t-87.757587507, 41.913134333\t11363458\n41.866862652\t-87.665184141\tPOINT (-87.665184141 41.866862652)\t-87.665184141, 41.866862652\t11363678\n41.976290414\t-87.905227221\tPOINT (-87.905227221 41.976290414)\t-87.905227221, 41.976290414\t11363528\n41.933428724\t-87.716015446\tPOINT (-87.716015446 41.933428724)\t-87.716015446, 41.933428724\t11367250\n41.745935334\t-87.648762217\tPOINT (-87.648762217 41.745935334)\t-87.648762217, 41.745935334\t11365037\n41.896650746\t-87.630141498\tPOINT (-87.630141498 41.896650746)\t-87.630141498, 41.896650746\t11363925\n41.722864628\t-87.617801037\tPOINT (-87.617801037 41.722864628)\t-87.617801037, 41.722864628\t11363663\n41.764565602\t-87.691406513\tPOINT (-87.691406513 41.764565602)\t-87.691406513, 41.764565602\t11363515\n41.876905693\t-87.680292255\tPOINT (-87.680292255 41.876905693)\t-87.680292255, 41.876905693\t11364919\n41.774818426\t-87.67016934\tPOINT (-87.67016934 41.774818426)\t-87.67016934, 41.774818426\t11363542\n41.862449155\t-87.640057502\tPOINT (-87.640057502 41.862449155)\t-87.640057502, 41.862449155\t11363486\n41.884494306\t-87.627098243\tPOINT (-87.627098243 41.884494306)\t-87.627098243, 41.884494306\t11363637\n41.741521522\t-87.581857226\tPOINT (-87.581857226 41.741521522)\t-87.581857226, 41.741521522\t11363499\n41.762040373\t-87.578047814\tPOINT (-87.578047814 41.762040373)\t-87.578047814, 41.762040373\t11363382\nnull\tnull\tnull\t\t11369386\n41.913134333\t-87.757587507\tPOINT (-87.757587507 41.913134333)\t-87.757587507, 41.913134333\t11363480\n41.702631165\t-87.650803711\tPOINT (-87.650803711 41.702631165)\t-87.650803711, 41.702631165\t11363423\n41.877970212\t-87.726265516\tPOINT (-87.726265516 41.877970212)\t-87.726265516, 41.877970212\t11363799\n41.723077999\t-87.659448489\tPOINT (-87.659448489 41.723077999)\t-87.659448489, 41.723077999\t11363442\n41.877660235\t-87.639555302\tPOINT (-87.639555302 41.877660235)\t-87.639555302, 41.877660235\t11363583\n41.894182815\t-87.723599747\tPOINT (-87.723599747 41.894182815)\t-87.723599747, 41.894182815\t11363416\n41.86678066\t-87.653550558\tPOINT (-87.653550558 41.86678066)\t-87.653550558, 41.86678066\t11363429\n41.705798142\t-87.658241009\tPOINT (-87.658241009 41.705798142)\t-87.658241009, 41.705798142\t11364580\n41.830917641\t-87.608064205\tPOINT (-87.608064205 41.830917641)\t-87.608064205, 41.830917641\t11363403\n41.962272637\t-87.720524309\tPOINT (-87.720524309 41.962272637)\t-87.720524309, 41.962272637\t11364187\n41.73665694\t-87.604172131\tPOINT (-87.604172131 41.73665694)\t-87.604172131, 41.73665694\t11364456\n41.781702742\t-87.597854334\tPOINT (-87.597854334 41.781702742)\t-87.597854334, 41.781702742\t11363467\n41.766552048\t-87.620138318\tPOINT (-87.620138318 41.766552048)\t-87.620138318, 41.766552048\t11363929\n41.862525435\t-87.704315351\tPOINT (-87.704315351 41.862525435)\t-87.704315351, 41.862525435\t11363942\n41.781544119\t-87.609607138\tPOINT (-87.609607138 41.781544119)\t-87.609607138, 41.781544119\t11363448\n41.883112032\t-87.706180958\tPOINT (-87.706180958 41.883112032)\t-87.706180958, 41.883112032\t11363418\n41.786079418\t-87.683821839\tPOINT (-87.683821839 41.786079418)\t-87.683821839, 41.786079418\t11363373\n41.890132638\t-87.621589582\tPOINT (-87.621589582 41.890132638)\t-87.621589582, 41.890132638\t11363425\n41.783160188\t-87.610864923\tPOINT (-87.610864923 41.783160188)\t-87.610864923, 41.783160188\t11363406\n41.765253769\t-87.615255549\tPOINT (-87.615255549 41.765253769)\t-87.615255549, 41.765253769\t11363726\n41.854141041\t-87.719916844\tPOINT (-87.719916844 41.854141041)\t-87.719916844, 41.854141041\t11363646\n41.886506397\t-87.743952084\tPOINT (-87.743952084 41.886506397)\t-87.743952084, 41.886506397\t11363900\n41.745615705\t-87.572219728\tPOINT (-87.572219728 41.745615705)\t-87.572219728, 41.745615705\t11363340\n41.97017647\t-87.717543518\tPOINT (-87.717543518 41.97017647)\t-87.717543518, 41.97017647\t11363575\n41.886202772\t-87.620685715\tPOINT (-87.620685715 41.886202772)\t-87.620685715, 41.886202772\t11363339\n41.884090949\t-87.659532917\tPOINT (-87.659532917 41.884090949)\t-87.659532917, 41.884090949\t11366520\n41.669665629\t-87.635625882\tPOINT (-87.635625882 41.669665629)\t-87.635625882, 41.669665629\t11363570\n41.748524164\t-87.705132639\tPOINT (-87.705132639 41.748524164)\t-87.705132639, 41.748524164\t11363334\n41.794348335\t-87.579637896\tPOINT (-87.579637896 41.794348335)\t-87.579637896, 41.794348335\t11363658\n41.925078599\t-87.754584486\tPOINT (-87.754584486 41.925078599)\t-87.754584486, 41.925078599\t11363492\n41.871678313\t-87.721221513\tPOINT (-87.721221513 41.871678313)\t-87.721221513, 41.871678313\t11363420\n41.880912779\t-87.737937109\tPOINT (-87.737937109 41.880912779)\t-87.737937109, 41.880912779\t11363419\n41.818576901\t-87.60810075\tPOINT (-87.60810075 41.818576901)\t-87.60810075, 41.818576901\t11363404\n41.740910762\t-87.619491428\tPOINT (-87.619491428 41.740910762)\t-87.619491428, 41.740910762\t11363360\nnull\tnull\tnull\t\t11370613\n42.002063283\t-87.678723352\tPOINT (-87.678723352 42.002063283)\t-87.678723352, 42.002063283\t11363882\n41.686449014\t-87.651926646\tPOINT (-87.651926646 41.686449014)\t-87.651926646, 41.686449014\t11363843\n41.785751501\t-87.687477185\tPOINT (-87.687477185 41.785751501)\t-87.687477185, 41.785751501\t11366860\n41.879635941\t-87.736204729\tPOINT (-87.736204729 41.879635941)\t-87.736204729, 41.879635941\t11363602\n41.867333282\t-87.770962243\tPOINT (-87.770962243 41.867333282)\t-87.770962243, 41.867333282\t11364358\n41.790857624\t-87.607771565\tPOINT (-87.607771565 41.790857624)\t-87.607771565, 41.790857624\t11363788\n41.756377398\t-87.584528002\tPOINT (-87.584528002 41.756377398)\t-87.584528002, 41.756377398\t11363336\n41.866611643\t-87.666379933\tPOINT (-87.666379933 41.866611643)\t-87.666379933, 41.866611643\t11363978\n41.889397898\t-87.653409977\tPOINT (-87.653409977 41.889397898)\t-87.653409977, 41.889397898\t11363430\n41.687719523\t-87.663577593\tPOINT (-87.663577593 41.687719523)\t-87.663577593, 41.687719523\t11363536\n41.769378793\t-87.663942241\tPOINT (-87.663942241 41.769378793)\t-87.663942241, 41.769378793\t11363441\n41.869201889\t-87.670589881\tPOINT (-87.670589881 41.869201889)\t-87.670589881, 41.869201889\t11363786\n41.771998797\t-87.680012048\tPOINT (-87.680012048 41.771998797)\t-87.680012048, 41.771998797\t11363924\n41.886370204\t-87.620691199\tPOINT (-87.620691199 41.886370204)\t-87.620691199, 41.886370204\t11363994\n41.756259091\t-87.624719943\tPOINT (-87.624719943 41.756259091)\t-87.624719943, 41.756259091\t11363532\n41.725871508\t-87.553150964\tPOINT (-87.553150964 41.725871508)\t-87.553150964, 41.725871508\t11363317\n41.791758466\t-87.64995437\tPOINT (-87.64995437 41.791758466)\t-87.64995437, 41.791758466\t11363337\n41.768700606\t-87.718891281\tPOINT (-87.718891281 41.768700606)\t-87.718891281, 41.768700606\t11363921\n41.677912511\t-87.632941471\tPOINT (-87.632941471 41.677912511)\t-87.632941471, 41.677912511\t11363319\n41.925118418\t-87.719450544\tPOINT (-87.719450544 41.925118418)\t-87.719450544, 41.925118418\t11363449\n41.963637299\t-87.711991883\tPOINT (-87.711991883 41.963637299)\t-87.711991883, 41.963637299\t11367091\n41.894181327\t-87.775112231\tPOINT (-87.775112231 41.894181327)\t-87.775112231, 41.894181327\t11363501\n41.795190552\t-87.588007653\tPOINT (-87.588007653 41.795190552)\t-87.588007653, 41.795190552\t11364297\n41.879320432\t-87.639089355\tPOINT (-87.639089355 41.879320432)\t-87.639089355, 41.879320432\t11363320\n41.729566588\t-87.639788268\tPOINT (-87.639788268 41.729566588)\t-87.639788268, 41.729566588\t11363531\n41.879778612\t-87.724181021\tPOINT (-87.724181021 41.879778612)\t-87.724181021, 41.879778612\t11363324\n41.814563821\t-87.604481355\tPOINT (-87.604481355 41.814563821)\t-87.604481355, 41.814563821\t11364078\n41.910436074\t-87.717780043\tPOINT (-87.717780043 41.910436074)\t-87.717780043, 41.910436074\t11364137\n41.982270338\t-87.806941262\tPOINT (-87.806941262 41.982270338)\t-87.806941262, 41.982270338\t11364203\n41.734829103\t-87.559670367\tPOINT (-87.559670367 41.734829103)\t-87.559670367, 41.734829103\t11363983\n41.982270338\t-87.806941262\tPOINT (-87.806941262 41.982270338)\t-87.806941262, 41.982270338\t11366958\n41.964258201\t-87.665208056\tPOINT (-87.665208056 41.964258201)\t-87.665208056, 41.964258201\t11363625\n41.768148205\t-87.659053996\tPOINT (-87.659053996 41.768148205)\t-87.659053996, 41.768148205\t11363309\n41.88060406\t-87.736089224\tPOINT (-87.736089224 41.88060406)\t-87.736089224, 41.88060406\t11364400\n41.721394792\t-87.648612493\tPOINT (-87.648612493 41.721394792)\t-87.648612493, 41.721394792\t11363444\n41.774196646\t-87.623965298\tPOINT (-87.623965298 41.774196646)\t-87.623965298, 41.774196646\t11363399\n41.785751501\t-87.687477185\tPOINT (-87.687477185 41.785751501)\t-87.687477185, 41.785751501\t11367898\n41.87489666\t-87.751178379\tPOINT (-87.751178379 41.87489666)\t-87.751178379, 41.87489666\t11363465\n41.709952456\t-87.646562136\tPOINT (-87.646562136 41.709952456)\t-87.646562136, 41.709952456\t11364645\n41.867843601\t-87.642209396\tPOINT (-87.642209396 41.867843601)\t-87.642209396, 41.867843601\t11363483\n41.764285183\t-87.580972191\tPOINT (-87.580972191 41.764285183)\t-87.580972191, 41.764285183\t11363303\n41.892299753\t-87.744001666\tPOINT (-87.744001666 41.892299753)\t-87.744001666, 41.892299753\t11364277\n41.747629731\t-87.657300893\tPOINT (-87.657300893 41.747629731)\t-87.657300893, 41.747629731\t11363359\n41.823263415\t-87.62158954\tPOINT (-87.62158954 41.823263415)\t-87.62158954, 41.823263415\t11363333\n41.964321246\t-87.66237249\tPOINT (-87.66237249 41.964321246)\t-87.66237249, 41.964321246\t11363461\n41.960778173\t-87.742731337\tPOINT (-87.742731337 41.960778173)\t-87.742731337, 41.960778173\t11363276\n41.860447446\t-87.706718175\tPOINT (-87.706718175 41.860447446)\t-87.706718175, 41.860447446\t11364879\n41.759573027\t-87.564772066\tPOINT (-87.564772066 41.759573027)\t-87.564772066, 41.759573027\t11363298\n41.933566453\t-87.668435522\tPOINT (-87.668435522 41.933566453)\t-87.668435522, 41.933566453\t11363307\n41.76471549\t-87.6334241\tPOINT (-87.6334241 41.76471549)\t-87.6334241, 41.76471549\t11363297\n41.749315877\t-87.568628671\tPOINT (-87.568628671 41.749315877)\t-87.568628671, 41.749315877\t11363741\n41.699967175\t-87.616667098\tPOINT (-87.616667098 41.699967175)\t-87.616667098, 41.699967175\t11363285\n41.89036711\t-87.626673634\tPOINT (-87.626673634 41.89036711)\t-87.626673634, 41.89036711\t11363374\n41.714306386\t-87.634509672\tPOINT (-87.634509672 41.714306386)\t-87.634509672, 41.714306386\t11363316\n41.678887433\t-87.637118655\tPOINT (-87.637118655 41.678887433)\t-87.637118655, 41.678887433\t11363244\n41.938533835\t-87.769535854\tPOINT (-87.769535854 41.938533835)\t-87.769535854, 41.938533835\t11363293\nnull\tnull\tnull\t\t11367592\n41.753523918\t-87.607715752\tPOINT (-87.607715752 41.753523918)\t-87.607715752, 41.753523918\t11363302\n41.866629335\t-87.684802433\tPOINT (-87.684802433 41.866629335)\t-87.684802433, 41.866629335\t11363267\n41.778677993\t-87.721296466\tPOINT (-87.721296466 41.778677993)\t-87.721296466, 41.778677993\t11363271\n41.728931483\t-87.565793167\tPOINT (-87.565793167 41.728931483)\t-87.565793167, 41.728931483\t11363299\nnull\tnull\tnull\t\t11368745\n41.946397319\t-87.725679264\tPOINT (-87.725679264 41.946397319)\t-87.725679264, 41.946397319\t11363228\n41.952741277\t-87.796574593\tPOINT (-87.796574593 41.952741277)\t-87.796574593, 41.952741277\t11363277\n41.67689358\t-87.641876847\tPOINT (-87.641876847 41.67689358)\t-87.641876847, 41.67689358\t11363596\n41.923005158\t-87.645351431\tPOINT (-87.645351431 41.923005158)\t-87.645351431, 41.923005158\t11364075\n41.8751369\t-87.735971224\tPOINT (-87.735971224 41.8751369)\t-87.735971224, 41.8751369\t11363265\n41.903851922\t-87.733719967\tPOINT (-87.733719967 41.903851922)\t-87.733719967, 41.903851922\t11363241\n41.73562814\t-87.727527219\tPOINT (-87.727527219 41.73562814)\t-87.727527219, 41.73562814\t11363240\n41.817706195\t-87.624684944\tPOINT (-87.624684944 41.817706195)\t-87.624684944, 41.817706195\t11366145\n41.735905313\t-87.731181156\tPOINT (-87.731181156 41.735905313)\t-87.731181156, 41.735905313\t11363238\n41.93991842\t-87.653288878\tPOINT (-87.653288878 41.93991842)\t-87.653288878, 41.93991842\t11364030\n41.820062323\t-87.613458566\tPOINT (-87.613458566 41.820062323)\t-87.613458566, 41.820062323\t11363622\n41.876005082\t-87.71084027\tPOINT (-87.71084027 41.876005082)\t-87.71084027, 41.876005082\t11363421\nnull\tnull\tnull\t\t11370886\n41.689117387\t-87.612485619\tPOINT (-87.612485619 41.689117387)\t-87.612485619, 41.689117387\t11363208\n41.764452305\t-87.637081449\tPOINT (-87.637081449 41.764452305)\t-87.637081449, 41.764452305\t11363243\n41.887812777\t-87.620546628\tPOINT (-87.620546628 41.887812777)\t-87.620546628, 41.887812777\t11363239\n41.874854078\t-87.719803273\tPOINT (-87.719803273 41.874854078)\t-87.719803273, 41.874854078\t11363205\n41.766079156\t-87.669922114\tPOINT (-87.669922114 41.766079156)\t-87.669922114, 41.766079156\t11363232\n41.825153165\t-87.619209479\tPOINT (-87.619209479 41.825153165)\t-87.619209479, 41.825153165\t11363214\n41.735752519\t-87.625429032\tPOINT (-87.625429032 41.735752519)\t-87.625429032, 41.735752519\t11363219\n41.892554483\t-87.753067492\tPOINT (-87.753067492 41.892554483)\t-87.753067492, 41.892554483\t11363225\n41.679615324\t-87.643139927\tPOINT (-87.643139927 41.679615324)\t-87.643139927, 41.679615324\t11363251\n41.923672617\t-87.786301606\tPOINT (-87.786301606 41.923672617)\t-87.786301606, 41.923672617\t11364064\n41.923672617\t-87.786301606\tPOINT (-87.786301606 41.923672617)\t-87.786301606, 41.923672617\t11364059\n41.778411621\t-87.675100136\tPOINT (-87.675100136 41.778411621)\t-87.675100136, 41.778411621\t11363236\n41.735138542\t-87.647268465\tPOINT (-87.647268465 41.735138542)\t-87.647268465, 41.735138542\t11363300\n41.705500186\t-87.562054566\tPOINT (-87.562054566 41.705500186)\t-87.562054566, 41.705500186\t11363206\n41.947932321\t-87.654350616\tPOINT (-87.654350616 41.947932321)\t-87.654350616, 41.947932321\t11363178\n41.704332488\t-87.631189989\tPOINT (-87.631189989 41.704332488)\t-87.631189989, 41.704332488\t11363160\n41.736128606\t-87.725119009\tPOINT (-87.725119009 41.736128606)\t-87.725119009, 41.736128606\t11363922\n41.9211998\t-87.792036506\tPOINT (-87.792036506 41.9211998)\t-87.792036506, 41.9211998\t11363246\n41.757697549\t-87.619913834\tPOINT (-87.619913834 41.757697549)\t-87.619913834, 41.757697549\t11365733\n41.937889643\t-87.645323782\tPOINT (-87.645323782 41.937889643)\t-87.645323782, 41.937889643\t11363472\n41.790520722\t-87.622358898\tPOINT (-87.622358898 41.790520722)\t-87.622358898, 41.790520722\t11363211\n41.809092623\t-87.632853216\tPOINT (-87.632853216 41.809092623)\t-87.632853216, 41.809092623\t11363204\n41.970762272\t-87.72447326\tPOINT (-87.72447326 41.970762272)\t-87.72447326, 41.970762272\t11364743\n41.871332581\t-87.725362697\tPOINT (-87.725362697 41.871332581)\t-87.725362697, 41.871332581\t11363329\n41.691636898\t-87.626659853\tPOINT (-87.626659853 41.691636898)\t-87.626659853, 41.691636898\t11364242\n41.793476021\t-87.643922017\tPOINT (-87.643922017 41.793476021)\t-87.643922017, 41.793476021\t11363257\n41.690547682\t-87.641591515\tPOINT (-87.641591515 41.690547682)\t-87.641591515, 41.690547682\t11363196\n41.705271529\t-87.629026445\tPOINT (-87.629026445 41.705271529)\t-87.629026445, 41.705271529\t11363170\n41.753682356\t-87.653821721\tPOINT (-87.653821721 41.753682356)\t-87.653821721, 41.753682356\t11363253\n41.746416644\t-87.647558826\tPOINT (-87.647558826 41.746416644)\t-87.647558826, 41.746416644\t11363194\n41.823156373\t-87.621587057\tPOINT (-87.621587057 41.823156373)\t-87.621587057, 41.823156373\t11363255\n41.797436747\t-87.770986959\tPOINT (-87.770986959 41.797436747)\t-87.770986959, 41.797436747\t11363375\nnull\tnull\tnull\t\t11366382\n41.823156373\t-87.621587057\tPOINT (-87.621587057 41.823156373)\t-87.621587057, 41.823156373\t11363248\n41.922786529\t-87.645045119\tPOINT (-87.645045119 41.922786529)\t-87.645045119, 41.922786529\t11363201\n41.918246532\t-87.733930615\tPOINT (-87.733930615 41.918246532)\t-87.733930615, 41.918246532\t11363187\n41.89565487\t-87.696012648\tPOINT (-87.696012648 41.89565487)\t-87.696012648, 41.89565487\t11363167\n41.740330646\t-87.562411038\tPOINT (-87.562411038 41.740330646)\t-87.562411038, 41.740330646\t11363221\n41.743355307\t-87.553529291\tPOINT (-87.553529291 41.743355307)\t-87.553529291, 41.743355307\t11363222\n41.811443713\t-87.598471599\tPOINT (-87.598471599 41.811443713)\t-87.598471599, 41.811443713\t11363258\n41.996622677\t-87.686180824\tPOINT (-87.686180824 41.996622677)\t-87.686180824, 41.996622677\t11363866\n41.758716607\t-87.591460936\tPOINT (-87.591460936 41.758716607)\t-87.591460936, 41.758716607\t11364133\n41.786144784\t-87.647381282\tPOINT (-87.647381282 41.786144784)\t-87.647381282, 41.786144784\t11367530\n41.922786529\t-87.645045119\tPOINT (-87.645045119 41.922786529)\t-87.645045119, 41.922786529\t11363705\nnull\tnull\tnull\t\t11370612\n41.884930978\t-87.716221792\tPOINT (-87.716221792 41.884930978)\t-87.716221792, 41.884930978\t11363308\n41.943445601\t-87.662297351\tPOINT (-87.662297351 41.943445601)\t-87.662297351, 41.943445601\t11364024\n41.840885439\t-87.659534989\tPOINT (-87.659534989 41.840885439)\t-87.659534989, 41.840885439\t11363149\n41.882231214\t-87.765815373\tPOINT (-87.765815373 41.882231214)\t-87.765815373, 41.882231214\t11363930\n41.827956146\t-87.674013131\tPOINT (-87.674013131 41.827956146)\t-87.674013131, 41.827956146\t11363226\n41.936521785\t-87.70998013\tPOINT (-87.70998013 41.936521785)\t-87.70998013, 41.936521785\t11363301\n41.750832464\t-87.605224746\tPOINT (-87.605224746 41.750832464)\t-87.605224746, 41.750832464\t11364465\n41.770752695\t-87.608163139\tPOINT (-87.608163139 41.770752695)\t-87.608163139, 41.770752695\t11363190\n41.751270235\t-87.605883115\tPOINT (-87.605883115 41.751270235)\t-87.605883115, 41.751270235\t11363259\n41.924813676\t-87.69674776\tPOINT (-87.69674776 41.924813676)\t-87.69674776, 41.924813676\t11363249\n41.787899478\t-87.68247241\tPOINT (-87.68247241 41.787899478)\t-87.68247241, 41.787899478\t11363274\n41.774549326\t-87.629101227\tPOINT (-87.629101227 41.774549326)\t-87.629101227, 41.774549326\t11363217\n41.917434785\t-87.702777031\tPOINT (-87.702777031 41.917434785)\t-87.702777031, 41.917434785\t11363168\n41.756765393\t-87.562690836\tPOINT (-87.562690836 41.756765393)\t-87.562690836, 41.756765393\t11363220\n41.999999972\t-87.68994331\tPOINT (-87.68994331 41.999999972)\t-87.68994331, 41.999999972\t11363156\n41.749046469\t-87.572278148\tPOINT (-87.572278148 41.749046469)\t-87.572278148, 41.749046469\t11363247\n41.884863602\t-87.757676139\tPOINT (-87.757676139 41.884863602)\t-87.757676139, 41.884863602\t11363223\nnull\tnull\tnull\t\t11366343\n41.968340082\t-87.718984265\tPOINT (-87.718984265 41.968340082)\t-87.718984265, 41.968340082\t11363260\n41.750665469\t-87.574747352\tPOINT (-87.574747352 41.750665469)\t-87.574747352, 41.750665469\t11363174\n41.742806937\t-87.683276101\tPOINT (-87.683276101 41.742806937)\t-87.683276101, 41.742806937\t11363809\n41.881849062\t-87.641559071\tPOINT (-87.641559071 41.881849062)\t-87.641559071, 41.881849062\t11363511\n41.973926873\t-87.707728975\tPOINT (-87.707728975 41.973926873)\t-87.707728975, 41.973926873\t11363207\n41.674407522\t-87.616397994\tPOINT (-87.616397994 41.674407522)\t-87.616397994, 41.674407522\t11363216\n41.697518057\t-87.614720645\tPOINT (-87.614720645 41.697518057)\t-87.614720645, 41.697518057\t11363200\n41.92189295\t-87.714153451\tPOINT (-87.714153451 41.92189295)\t-87.714153451, 41.92189295\t11363173\n41.781165519\t-87.614432757\tPOINT (-87.614432757 41.781165519)\t-87.614432757, 41.781165519\t11363133\n41.769326512\t-87.576386076\tPOINT (-87.576386076 41.769326512)\t-87.576386076, 41.769326512\t11363213\n41.899831808\t-87.71767987\tPOINT (-87.71767987 41.899831808)\t-87.71767987, 41.899831808\t11363182\n41.675972308\t-87.620451058\tPOINT (-87.620451058 41.675972308)\t-87.620451058, 41.675972308\t11363130\n41.749399709\t-87.671900537\tPOINT (-87.671900537 41.749399709)\t-87.671900537, 41.749399709\t11363176\n41.775484044\t-87.689244623\tPOINT (-87.689244623 41.775484044)\t-87.689244623, 41.775484044\t11363272\n41.731595697\t-87.649581272\tPOINT (-87.649581272 41.731595697)\t-87.649581272, 41.731595697\t11363800\n41.750690464\t-87.602741685\tPOINT (-87.602741685 41.750690464)\t-87.602741685, 41.750690464\t11363183\n41.699056124\t-87.626871575\tPOINT (-87.626871575 41.699056124)\t-87.626871575, 41.699056124\t11363751\nnull\tnull\tnull\t\t11368902\n41.837723084\t-87.648698613\tPOINT (-87.648698613 41.837723084)\t-87.648698613, 41.837723084\t11365057\n41.749390928\t-87.667055985\tPOINT (-87.667055985 41.749390928)\t-87.667055985, 41.749390928\t11363312\n41.95373485\t-87.72196634\tPOINT (-87.72196634 41.95373485)\t-87.72196634, 41.95373485\t11363408\n41.828030237\t-87.674012371\tPOINT (-87.674012371 41.828030237)\t-87.674012371, 41.828030237\t11363450\nnull\tnull\tnull\t\t11370600\n41.837723084\t-87.648698613\tPOINT (-87.648698613 41.837723084)\t-87.648698613, 41.837723084\t11365141\n41.968025707\t-87.688187568\tPOINT (-87.688187568 41.968025707)\t-87.688187568, 41.968025707\t11363652\n41.787449357\t-87.682462296\tPOINT (-87.682462296 41.787449357)\t-87.682462296, 41.787449357\t11363161\n41.653136209\t-87.549572471\tPOINT (-87.549572471 41.653136209)\t-87.549572471, 41.653136209\t11363351\n42.00659135\t-87.671572094\tPOINT (-87.671572094 42.00659135)\t-87.671572094, 42.00659135\t11363148\n41.929614416\t-87.754506738\tPOINT (-87.754506738 41.929614416)\t-87.754506738, 41.929614416\t11363195\n41.863697813\t-87.710464058\tPOINT (-87.710464058 41.863697813)\t-87.710464058, 41.863697813\t11363132\n41.852829615\t-87.633569125\tPOINT (-87.633569125 41.852829615)\t-87.633569125, 41.852829615\t11363202\n41.690461674\t-87.648768549\tPOINT (-87.648768549 41.690461674)\t-87.648768549, 41.690461674\t11363946\n42.018269376\t-87.690186065\tPOINT (-87.690186065 42.018269376)\t-87.690186065, 42.018269376\t11363144\n41.713205653\t-87.630866349\tPOINT (-87.630866349 41.713205653)\t-87.630866349, 41.713205653\t11363117\n41.874363279\t-87.643013039\tPOINT (-87.643013039 41.874363279)\t-87.643013039, 41.874363279\t11363584\n41.761393963\t-87.590869306\tPOINT (-87.590869306 41.761393963)\t-87.590869306, 41.761393963\t11363812\n41.911162274\t-87.633740611\tPOINT (-87.633740611 41.911162274)\t-87.633740611, 41.911162274\t11363250\n41.924118927\t-87.713720372\tPOINT (-87.713720372 41.924118927)\t-87.713720372, 41.924118927\t11363306\n41.927293281\t-87.704502658\tPOINT (-87.704502658 41.927293281)\t-87.704502658, 41.927293281\t11363895\n41.771494545\t-87.661574076\tPOINT (-87.661574076 41.771494545)\t-87.661574076, 41.771494545\t11363234\n41.777821031\t-87.741051061\tPOINT (-87.741051061 41.777821031)\t-87.741051061, 41.777821031\t11363693\n41.994016787\t-87.696187358\tPOINT (-87.696187358 41.994016787)\t-87.696187358, 41.994016787\t11363127\n41.758174759\t-87.549934016\tPOINT (-87.549934016 41.758174759)\t-87.549934016, 41.758174759\t11363291\nnull\tnull\tnull\t\t11368899\n41.817485592\t-87.686358696\tPOINT (-87.686358696 41.817485592)\t-87.686358696, 41.817485592\t11363165\n41.889519017\t-87.6266536\tPOINT (-87.6266536 41.889519017)\t-87.6266536, 41.889519017\t11363139\n41.881887475\t-87.721840162\tPOINT (-87.721840162 41.881887475)\t-87.721840162, 41.881887475\t11363153\n41.86187256\t-87.716505967\tPOINT (-87.716505967 41.86187256)\t-87.716505967, 41.86187256\t11363209\n41.72187776\t-87.614896187\tPOINT (-87.614896187 41.72187776)\t-87.614896187, 41.72187776\t11363180\n41.94541007\t-87.835236161\tPOINT (-87.835236161 41.94541007)\t-87.835236161, 41.94541007\t11363197\n41.752564662\t-87.637191609\tPOINT (-87.637191609 41.752564662)\t-87.637191609, 41.752564662\t11363179\n41.980442153\t-87.906633781\tPOINT (-87.906633781 41.980442153)\t-87.906633781, 41.980442153\t11364038\n41.881887475\t-87.721840162\tPOINT (-87.721840162 41.881887475)\t-87.721840162, 41.881887475\t11364478\n41.749330381\t-87.658562005\tPOINT (-87.658562005 41.749330381)\t-87.658562005, 41.749330381\t11363273\n41.95919624\t-87.722042821\tPOINT (-87.722042821 41.95919624)\t-87.722042821, 41.95919624\t11363577\n41.910486223\t-87.67727554\tPOINT (-87.67727554 41.910486223)\t-87.67727554, 41.910486223\t11363254\n41.985500167\t-87.657089031\tPOINT (-87.657089031 41.985500167)\t-87.657089031, 41.985500167\t11363288\n41.931520355\t-87.794264537\tPOINT (-87.794264537 41.931520355)\t-87.794264537, 41.931520355\t11363407\n41.96055619\t-87.71312483\tPOINT (-87.71312483 41.96055619)\t-87.71312483, 41.96055619\t11363411\n41.682629491\t-87.632403429\tPOINT (-87.632403429 41.682629491)\t-87.632403429, 41.682629491\t11363424\n41.798191304\t-87.709818865\tPOINT (-87.709818865 41.798191304)\t-87.709818865, 41.798191304\t11363361\n41.748327379\t-87.628178578\tPOINT (-87.628178578 41.748327379)\t-87.628178578, 41.748327379\t11364071\n41.75325385\t-87.647749921\tPOINT (-87.647749921 41.75325385)\t-87.647749921, 41.75325385\t11364741\nnull\tnull\tnull\t\t11366203\nnull\tnull\tnull\t\t11367668\n41.689942666\t-87.645954887\tPOINT (-87.645954887 41.689942666)\t-87.645954887, 41.689942666\t11363496\n41.929189918\t-87.707585653\tPOINT (-87.707585653 41.929189918)\t-87.707585653, 41.929189918\t11365240\n41.683434229\t-87.628023601\tPOINT (-87.628023601 41.683434229)\t-87.628023601, 41.683434229\t11364738\n41.808934381\t-87.641610504\tPOINT (-87.641610504 41.808934381)\t-87.641610504, 41.808934381\t11366549\n41.891020442\t-87.772958155\tPOINT (-87.772958155 41.891020442)\t-87.772958155, 41.891020442\t11363245\n41.933160806\t-87.805357004\tPOINT (-87.805357004 41.933160806)\t-87.805357004, 41.933160806\t11363335\n41.731299213\t-87.552667638\tPOINT (-87.552667638 41.731299213)\t-87.552667638, 41.731299213\t11363215\n41.973417905\t-87.756202766\tPOINT (-87.756202766 41.973417905)\t-87.756202766, 41.973417905\t11363996\n41.971031866\t-87.777059982\tPOINT (-87.777059982 41.971031866)\t-87.777059982, 41.971031866\t11363991\n41.880773563\t-87.721887504\tPOINT (-87.721887504 41.880773563)\t-87.721887504, 41.880773563\t11363106\n41.781646505\t-87.613235784\tPOINT (-87.613235784 41.781646505)\t-87.613235784, 41.781646505\t11363123\n41.966430564\t-87.651032417\tPOINT (-87.651032417 41.966430564)\t-87.651032417, 41.966430564\t11363172\n41.870827547\t-87.716596116\tPOINT (-87.716596116 41.870827547)\t-87.716596116, 41.870827547\t11363264\n41.794766069\t-87.618369729\tPOINT (-87.618369729 41.794766069)\t-87.618369729, 41.794766069\t11363077\n41.901224766\t-87.75821979\tPOINT (-87.75821979 41.901224766)\t-87.75821979, 41.901224766\t11363101\n41.920452718\t-87.756397354\tPOINT (-87.756397354 41.920452718)\t-87.756397354, 41.920452718\t11363118\n41.880082192\t-87.67238328\tPOINT (-87.67238328 41.880082192)\t-87.67238328, 41.880082192\t11363137\n41.810547404\t-87.609009318\tPOINT (-87.609009318 41.810547404)\t-87.609009318, 41.810547404\t11363624\n41.809140802\t-87.599257202\tPOINT (-87.599257202 41.809140802)\t-87.599257202, 41.809140802\t11363327\n41.778677993\t-87.721296466\tPOINT (-87.721296466 41.778677993)\t-87.721296466, 41.778677993\t11363073\n41.721055091\t-87.639561118\tPOINT (-87.639561118 41.721055091)\t-87.639561118, 41.721055091\t11363092\n41.916975644\t-87.742341751\tPOINT (-87.742341751 41.916975644)\t-87.742341751, 41.916975644\t11363415\n41.779183752\t-87.688826305\tPOINT (-87.688826305 41.779183752)\t-87.688826305, 41.779183752\t11363088\n41.875452995\t-87.620592186\tPOINT (-87.620592186 41.875452995)\t-87.620592186, 41.875452995\t11363094\nnull\tnull\tnull\t\t11368427\n41.88102981\t-87.758757113\tPOINT (-87.758757113 41.88102981)\t-87.758757113, 41.88102981\t11364005\n41.929526116\t-87.659815686\tPOINT (-87.659815686 41.929526116)\t-87.659815686, 41.929526116\t11363328\n41.81811276\t-87.60674129\tPOINT (-87.60674129 41.81811276)\t-87.60674129, 41.81811276\t11363054\n41.755293118\t-87.660324705\tPOINT (-87.660324705 41.755293118)\t-87.660324705, 41.755293118\t11363119\n41.889906681\t-87.624100509\tPOINT (-87.624100509 41.889906681)\t-87.624100509, 41.889906681\t11363230\n41.748382987\t-87.642755633\tPOINT (-87.642755633 41.748382987)\t-87.642755633, 41.748382987\t11363129\n41.892569522\t-87.622032647\tPOINT (-87.622032647 41.892569522)\t-87.622032647, 41.892569522\t11363143\n41.836230325\t-87.645503641\tPOINT (-87.645503641 41.836230325)\t-87.645503641, 41.836230325\t11363093\n41.721773858\t-87.578984755\tPOINT (-87.578984755 41.721773858)\t-87.578984755, 41.721773858\t11363112\n41.850500287\t-87.714963554\tPOINT (-87.714963554 41.850500287)\t-87.714963554, 41.850500287\t11363047\n41.892569522\t-87.622032647\tPOINT (-87.622032647 41.892569522)\t-87.622032647, 41.892569522\t11363138\n41.897895128\t-87.624096605\tPOINT (-87.624096605 41.897895128)\t-87.624096605, 41.897895128\t11363075\n41.816321863\t-87.631189677\tPOINT (-87.631189677 41.816321863)\t-87.631189677, 41.816321863\t11363058\n41.972101049\t-87.654899332\tPOINT (-87.654899332 41.972101049)\t-87.654899332, 41.972101049\t11363193\n41.750490827\t-87.654302474\tPOINT (-87.654302474 41.750490827)\t-87.654302474, 41.750490827\t11363313\n41.682060252\t-87.657874171\tPOINT (-87.657874171 41.682060252)\t-87.657874171, 41.682060252\t11363071\n41.682580677\t-87.659106091\tPOINT (-87.659106091 41.682580677)\t-87.659106091, 41.682580677\t11363070\nnull\tnull\tnull\t\t11370611\n41.83973726\t-87.658416741\tPOINT (-87.658416741 41.83973726)\t-87.658416741, 41.83973726\t11363549\n41.794299045\t-87.646168516\tPOINT (-87.646168516 41.794299045)\t-87.646168516, 41.794299045\t11363076\n41.879863169\t-87.715862954\tPOINT (-87.715862954 41.879863169)\t-87.715862954, 41.879863169\t11363044\n41.735441394\t-87.655758015\tPOINT (-87.655758015 41.735441394)\t-87.655758015, 41.735441394\t11363059\n41.774983017\t-87.66165499\tPOINT (-87.66165499 41.774983017)\t-87.66165499, 41.774983017\t11363535\n41.837885769\t-87.714615289\tPOINT (-87.714615289 41.837885769)\t-87.714615289, 41.837885769\t11363634\n41.795485577\t-87.789226654\tPOINT (-87.789226654 41.795485577)\t-87.789226654, 41.795485577\t11363086\n41.884429179\t-87.652669436\tPOINT (-87.652669436 41.884429179)\t-87.652669436, 41.884429179\t11364055\n41.783449861\t-87.640971514\tPOINT (-87.640971514 41.783449861)\t-87.640971514, 41.783449861\t11366815\n41.884429179\t-87.652669436\tPOINT (-87.652669436 41.884429179)\t-87.652669436, 41.884429179\t11364072\nnull\tnull\tnull\t\t11369275\n41.783020354\t-87.620549828\tPOINT (-87.620549828 41.783020354)\t-87.620549828, 41.783020354\t11363150\n41.890011834\t-87.63183763\tPOINT (-87.63183763 41.890011834)\t-87.63183763, 41.890011834\t11363049\n41.947816167\t-87.758194539\tPOINT (-87.758194539 41.947816167)\t-87.758194539, 41.947816167\t11363750\n41.763738384\t-87.622672976\tPOINT (-87.622672976 41.763738384)\t-87.622672976, 41.763738384\t11364181\n41.867595589\t-87.69959933\tPOINT (-87.69959933 41.867595589)\t-87.69959933, 41.867595589\t11363055\n41.95024738\t-87.782791674\tPOINT (-87.782791674 41.95024738)\t-87.782791674, 41.95024738\t11363749\n41.856592212\t-87.658834214\tPOINT (-87.658834214 41.856592212)\t-87.658834214, 41.856592212\t11363089\n41.769426591\t-87.680837286\tPOINT (-87.680837286 41.769426591)\t-87.680837286, 41.769426591\t11363012\n41.881852148\t-87.724488152\tPOINT (-87.724488152 41.881852148)\t-87.724488152, 41.881852148\t11363198\n41.810693516\t-87.683929054\tPOINT (-87.683929054 41.810693516)\t-87.683929054, 41.810693516\t11363090\n41.690675622\t-87.631012668\tPOINT (-87.631012668 41.690675622)\t-87.631012668, 41.690675622\t11363027\n41.80758587\t-87.615054434\tPOINT (-87.615054434 41.80758587)\t-87.615054434, 41.80758587\t11363033\n41.879494242\t-87.745977404\tPOINT (-87.745977404 41.879494242)\t-87.745977404, 41.879494242\t11363111\n41.931582515\t-87.742747165\tPOINT (-87.742747165 41.931582515)\t-87.742747165, 41.931582515\t11363057\n41.841825184\t-87.623292218\tPOINT (-87.623292218 41.841825184)\t-87.623292218, 41.841825184\t11363166\n41.931582515\t-87.742747165\tPOINT (-87.742747165 41.931582515)\t-87.742747165, 41.931582515\t11363067\n41.736422269\t-87.604815966\tPOINT (-87.604815966 41.736422269)\t-87.604815966, 41.736422269\t11364065\n41.690692777\t-87.684829876\tPOINT (-87.684829876 41.690692777)\t-87.684829876, 41.690692777\t11363061\n41.906377779\t-87.765807291\tPOINT (-87.765807291 41.906377779)\t-87.765807291, 41.906377779\t11363405\nnull\tnull\tnull\t\t11366465\n41.727590123\t-87.585023579\tPOINT (-87.585023579 41.727590123)\t-87.585023579, 41.727590123\t11363125\n41.751332503\t-87.60099732\tPOINT (-87.60099732 41.751332503)\t-87.60099732, 41.751332503\t11363108\n41.954840866\t-87.70070996\tPOINT (-87.70070996 41.954840866)\t-87.70070996, 41.954840866\t11363021\n41.958136502\t-87.681548173\tPOINT (-87.681548173 41.958136502)\t-87.681548173, 41.958136502\t11363065\n41.727345628\t-87.551195207\tPOINT (-87.551195207 41.727345628)\t-87.551195207, 41.727345628\t11363000\n41.96106725\t-87.718344521\tPOINT (-87.718344521 41.96106725)\t-87.718344521, 41.96106725\t11363019\n41.729085335\t-87.560904271\tPOINT (-87.560904271 41.729085335)\t-87.560904271, 41.729085335\t11363082\n41.7789191\t-87.706463927\tPOINT (-87.706463927 41.7789191)\t-87.706463927, 41.7789191\t11363042\n41.830106919\t-87.618383884\tPOINT (-87.618383884 41.830106919)\t-87.618383884, 41.830106919\t11363029\n41.721285041\t-87.65742325\tPOINT (-87.65742325 41.721285041)\t-87.65742325, 41.721285041\t11362995\n41.992820162\t-87.703118675\tPOINT (-87.703118675 41.992820162)\t-87.703118675, 41.992820162\t11363526\n41.898532573\t-87.76149836\tPOINT (-87.76149836 41.898532573)\t-87.76149836, 41.898532573\t11363074\n41.877851597\t-87.736092822\tPOINT (-87.736092822 41.877851597)\t-87.736092822, 41.877851597\t11363040\n41.805276681\t-87.727183312\tPOINT (-87.727183312 41.805276681)\t-87.727183312, 41.805276681\t11363364\n41.692182999\t-87.623095017\tPOINT (-87.623095017 41.692182999)\t-87.623095017, 41.692182999\t11363023\n41.930165407\t-87.66590572\tPOINT (-87.66590572 41.930165407)\t-87.66590572, 41.930165407\t11363356\n41.94269462\t-87.650355591\tPOINT (-87.650355591 41.94269462)\t-87.650355591, 41.94269462\t11364225\n41.720239947\t-87.548281413\tPOINT (-87.548281413 41.720239947)\t-87.548281413, 41.720239947\t11363006\n41.855195682\t-87.620710699\tPOINT (-87.620710699 41.855195682)\t-87.620710699, 41.855195682\t11363556\n41.894255755\t-87.704055526\tPOINT (-87.704055526 41.894255755)\t-87.704055526, 41.894255755\t11363084\n41.932782967\t-87.64583438\tPOINT (-87.64583438 41.932782967)\t-87.64583438, 41.932782967\t11363269\n41.76522681\t-87.609211395\tPOINT (-87.609211395 41.76522681)\t-87.609211395, 41.76522681\t11363014\n41.873843031\t-87.763245932\tPOINT (-87.763245932 41.873843031)\t-87.763245932, 41.873843031\t11363043\n41.657534615\t-87.6006228\tPOINT (-87.6006228 41.657534615)\t-87.6006228, 41.657534615\t11363808\n41.947183891\t-87.688269091\tPOINT (-87.688269091 41.947183891)\t-87.688269091, 41.947183891\t11363134\n41.870028132\t-87.708823855\tPOINT (-87.708823855 41.870028132)\t-87.708823855, 41.870028132\t11363037\n41.856006631\t-87.648914766\tPOINT (-87.648914766 41.856006631)\t-87.648914766, 41.856006631\t11363091\n41.771068348\t-87.583799955\tPOINT (-87.583799955 41.771068348)\t-87.583799955, 41.771068348\t11362993\n41.84629372\t-87.617686199\tPOINT (-87.617686199 41.84629372)\t-87.617686199, 41.84629372\t11363154\n41.803671998\t-87.703846021\tPOINT (-87.703846021 41.803671998)\t-87.703846021, 41.803671998\t11363002\n41.949118538\t-87.733832642\tPOINT (-87.733832642 41.949118538)\t-87.733832642, 41.949118538\t11363898\n41.953087341\t-87.725090015\tPOINT (-87.725090015 41.953087341)\t-87.725090015, 41.953087341\t11364015\n41.756007259\t-87.587533939\tPOINT (-87.587533939 41.756007259)\t-87.587533939, 41.756007259\t11362939\n41.801845606\t-87.711136792\tPOINT (-87.711136792 41.801845606)\t-87.711136792, 41.801845606\t11363593\n42.016240157\t-87.687516494\tPOINT (-87.687516494 42.016240157)\t-87.687516494, 42.016240157\t11363015\n41.779671225\t-87.65018171\tPOINT (-87.65018171 41.779671225)\t-87.65018171, 41.779671225\t11362911\n41.917217521\t-87.721973302\tPOINT (-87.721973302 41.917217521)\t-87.721973302, 41.917217521\t11362994\n41.718870398\t-87.656085956\tPOINT (-87.656085956 41.718870398)\t-87.656085956, 41.718870398\t11362996\n41.735164608\t-87.703584808\tPOINT (-87.703584808 41.735164608)\t-87.703584808, 41.735164608\t11363009\nnull\tnull\tnull\t\t11366652\n41.735371192\t-87.660624323\tPOINT (-87.660624323 41.735371192)\t-87.660624323, 41.735371192\t11362990\n41.845701147\t-87.619480151\tPOINT (-87.619480151 41.845701147)\t-87.619480151, 41.845701147\t11363158\n41.727902888\t-87.650679156\tPOINT (-87.650679156 41.727902888)\t-87.650679156, 41.727902888\t11363104\n41.908339268\t-87.730151211\tPOINT (-87.730151211 41.908339268)\t-87.730151211, 41.908339268\t11362999\n41.903881631\t-87.695434922\tPOINT (-87.695434922 41.903881631)\t-87.695434922, 41.903881631\t11363103\n41.968202874\t-87.731418031\tPOINT (-87.731418031 41.968202874)\t-87.731418031, 41.968202874\t11363022\n41.741941718\t-87.562435738\tPOINT (-87.562435738 41.741941718)\t-87.562435738, 41.741941718\t11364034\n41.880932326\t-87.709565954\tPOINT (-87.709565954 41.880932326)\t-87.709565954, 41.880932326\t11362992\n41.737473519\t-87.604844389\tPOINT (-87.604844389 41.737473519)\t-87.604844389, 41.737473519\t11363008\n41.996326697\t-87.702020916\tPOINT (-87.702020916 41.996326697)\t-87.702020916, 41.996326697\t11362944\n41.803335167\t-87.603761388\tPOINT (-87.603761388 41.803335167)\t-87.603761388, 41.803335167\t11363083\n41.799639692\t-87.742948\tPOINT (-87.742948 41.799639692)\t-87.742948, 41.799639692\t11364321\n41.754127526\t-87.623064867\tPOINT (-87.623064867 41.754127526)\t-87.623064867, 41.754127526\t11363703\n41.70541635\t-87.536493961\tPOINT (-87.536493961 41.70541635)\t-87.536493961, 41.70541635\t11364940\n41.793079034\t-87.737283828\tPOINT (-87.737283828 41.793079034)\t-87.737283828, 41.793079034\t11365180\n41.865526383\t-87.723930848\tPOINT (-87.723930848 41.865526383)\t-87.723930848, 41.865526383\t11363128\n41.781021542\t-87.72282875\tPOINT (-87.72282875 41.781021542)\t-87.72282875, 41.781021542\t11363545\n41.673802169\t-87.635760568\tPOINT (-87.635760568 41.673802169)\t-87.635760568, 41.673802169\t11363787\n41.880700568\t-87.63048165\tPOINT (-87.63048165 41.880700568)\t-87.63048165, 41.880700568\t11363642\n41.879872586\t-87.62435836\tPOINT (-87.62435836 41.879872586)\t-87.62435836, 41.879872586\t11362921\n41.749979185\t-87.686923382\tPOINT (-87.686923382 41.749979185)\t-87.686923382, 41.749979185\t11363069\n41.689923234\t-87.64959804\tPOINT (-87.64959804 41.689923234)\t-87.64959804, 41.689923234\t11362853\n41.807422809\t-87.723572168\tPOINT (-87.723572168 41.807422809)\t-87.723572168, 41.807422809\t11362983\n41.847512401\t-87.710000816\tPOINT (-87.710000816 41.847512401)\t-87.710000816, 41.847512401\t11363024\n41.980358766\t-87.76961207\tPOINT (-87.76961207 41.980358766)\t-87.76961207, 41.980358766\t11362882\n41.825399599\t-87.700558637\tPOINT (-87.700558637 41.825399599)\t-87.700558637, 41.825399599\t11363003\n41.920452939\t-87.756441445\tPOINT (-87.756441445 41.920452939)\t-87.756441445, 41.920452939\t11363056\n41.778602928\t-87.688509487\tPOINT (-87.688509487 41.778602928)\t-87.688509487, 41.778602928\t11362892\n41.778680464\t-87.721245115\tPOINT (-87.721245115 41.778680464)\t-87.721245115, 41.778680464\t11363087\n41.731430609\t-87.667736206\tPOINT (-87.667736206 41.731430609)\t-87.667736206, 41.731430609\t11362906\n41.657281003\t-87.604328985\tPOINT (-87.604328985 41.657281003)\t-87.604328985, 41.657281003\t11362891\n41.721260034\t-87.562349651\tPOINT (-87.562349651 41.721260034)\t-87.562349651, 41.721260034\t11363078\n41.850955166\t-87.63354918\tPOINT (-87.63354918 41.850955166)\t-87.63354918, 41.850955166\t11362929\n41.753737656\t-87.650189245\tPOINT (-87.650189245 41.753737656)\t-87.650189245, 41.753737656\t11364167\n41.832288917\t-87.669649836\tPOINT (-87.669649836 41.832288917)\t-87.669649836, 41.832288917\t11363095\n41.736930377\t-87.584391221\tPOINT (-87.584391221 41.736930377)\t-87.584391221, 41.736930377\t11363498\n41.975142145\t-87.764627183\tPOINT (-87.764627183 41.975142145)\t-87.764627183, 41.975142145\t11363474\n41.847512401\t-87.710000816\tPOINT (-87.710000816 41.847512401)\t-87.710000816, 41.847512401\t11363110\n41.755797128\t-87.634426259\tPOINT (-87.634426259 41.755797128)\t-87.634426259, 41.755797128\t11362991\n41.768777764\t-87.648570738\tPOINT (-87.648570738 41.768777764)\t-87.648570738, 41.768777764\t11362907\n41.765425172\t-87.583660372\tPOINT (-87.583660372 41.765425172)\t-87.583660372, 41.765425172\t11362859\n41.759885725\t-87.566392026\tPOINT (-87.566392026 41.759885725)\t-87.566392026, 41.759885725\t11362862\n41.749876545\t-87.682838316\tPOINT (-87.682838316 41.749876545)\t-87.682838316, 41.749876545\t11362878\n41.884650262\t-87.627915459\tPOINT (-87.627915459 41.884650262)\t-87.627915459, 41.884650262\t11362937\n41.693113913\t-87.716857779\tPOINT (-87.716857779 41.693113913)\t-87.716857779, 41.693113913\t11363321\n41.965488685\t-87.65092848\tPOINT (-87.65092848 41.965488685)\t-87.65092848, 41.965488685\t11362981\n41.875225828\t-87.628694718\tPOINT (-87.628694718 41.875225828)\t-87.628694718, 41.875225828\t11363007\n41.758524827\t-87.608711316\tPOINT (-87.608711316 41.758524827)\t-87.608711316, 41.758524827\t11362913\n41.81647342\t-87.594536554\tPOINT (-87.594536554 41.81647342)\t-87.594536554, 41.81647342\t11362900\n41.785815436\t-87.698454663\tPOINT (-87.698454663 41.785815436)\t-87.698454663, 41.785815436\t11363332\n41.894824927\t-87.631788635\tPOINT (-87.631788635 41.894824927)\t-87.631788635, 41.894824927\t11363591\n41.893847005\t-87.770711352\tPOINT (-87.770711352 41.893847005)\t-87.770711352, 41.893847005\t11363466\n41.885740958\t-87.624994912\tPOINT (-87.624994912 41.885740958)\t-87.624994912, 41.885740958\t11362920\n41.769560615\t-87.660303899\tPOINT (-87.660303899 41.769560615)\t-87.660303899, 41.769560615\t11364606\n41.938928362\t-87.756697633\tPOINT (-87.756697633 41.938928362)\t-87.756697633, 41.938928362\t11362925\n41.976268561\t-87.709908948\tPOINT (-87.709908948 41.976268561)\t-87.709908948, 41.976268561\t11363896\n41.901437054\t-87.673195296\tPOINT (-87.673195296 41.901437054)\t-87.673195296, 41.901437054\t11365616\n41.722013357\t-87.575344529\tPOINT (-87.575344529 41.722013357)\t-87.575344529, 41.722013357\t11363338\n41.785630688\t-87.620190913\tPOINT (-87.620190913 41.785630688)\t-87.620190913, 41.785630688\t11363505\n41.690506418\t-87.610364875\tPOINT (-87.610364875 41.690506418)\t-87.610364875, 41.690506418\t11366869\n41.931525797\t-87.747209193\tPOINT (-87.747209193 41.931525797)\t-87.747209193, 41.931525797\t11362998\n41.987870213\t-87.66019784\tPOINT (-87.66019784 41.987870213)\t-87.66019784, 41.987870213\t11362934\n41.962167943\t-87.680617302\tPOINT (-87.680617302 41.962167943)\t-87.680617302, 41.962167943\t11362818\n41.937227668\t-87.644305471\tPOINT (-87.644305471 41.937227668)\t-87.644305471, 41.937227668\t11362855\n41.769599032\t-87.660303497\tPOINT (-87.660303497 41.769599032)\t-87.660303497, 41.769599032\t11362843\n41.894420579\t-87.722381751\tPOINT (-87.722381751 41.894420579)\t-87.722381751, 41.894420579\t11362801\n41.808564273\t-87.669106152\tPOINT (-87.669106152 41.808564273)\t-87.669106152, 41.808564273\t11364002\n41.803357453\t-87.648848187\tPOINT (-87.648848187 41.803357453)\t-87.648848187, 41.803357453\t11363085\n41.779494697\t-87.613190198\tPOINT (-87.613190198 41.779494697)\t-87.613190198, 41.779494697\t11362942\n41.837954218\t-87.608109527\tPOINT (-87.608109527 41.837954218)\t-87.608109527, 41.837954218\t11362791\n41.773163723\t-87.674959497\tPOINT (-87.674959497 41.773163723)\t-87.674959497, 41.773163723\t11362914\n41.759157324\t-87.576146407\tPOINT (-87.576146407 41.759157324)\t-87.576146407, 41.759157324\t11362868\n41.766552048\t-87.620138318\tPOINT (-87.620138318 41.766552048)\t-87.620138318, 41.766552048\t11362860\n41.895856986\t-87.680213088\tPOINT (-87.680213088 41.895856986)\t-87.680213088, 41.895856986\t11363001\n41.884570549\t-87.768291872\tPOINT (-87.768291872 41.884570549)\t-87.768291872, 41.884570549\t11363712\n41.852882701\t-87.635528609\tPOINT (-87.635528609 41.852882701)\t-87.635528609, 41.852882701\t11362936\n41.749595797\t-87.711942097\tPOINT (-87.711942097 41.749595797)\t-87.711942097, 41.749595797\t11362888\n41.867426666\t-87.626460071\tPOINT (-87.626460071 41.867426666)\t-87.626460071, 41.867426666\t11362912\n41.885740958\t-87.624994912\tPOINT (-87.624994912 41.885740958)\t-87.624994912, 41.885740958\t11362908\n41.947666351\t-87.770043548\tPOINT (-87.770043548 41.947666351)\t-87.770043548, 41.947666351\t11363745\nnull\tnull\tnull\t\t11370735\n41.868165405\t-87.62743954\tPOINT (-87.62743954 41.868165405)\t-87.62743954, 41.868165405\t11363081\n41.895140898\t-87.624255632\tPOINT (-87.624255632 41.895140898)\t-87.624255632, 41.895140898\t11362985\n41.774419127\t-87.700579731\tPOINT (-87.700579731 41.774419127)\t-87.700579731, 41.774419127\t11362894\n42.015819702\t-87.813910412\tPOINT (-87.813910412 42.015819702)\t-87.813910412, 42.015819702\t11362885\n42.018498254\t-87.672983233\tPOINT (-87.672983233 42.018498254)\t-87.672983233, 42.018498254\t11365243\n41.884156374\t-87.672682817\tPOINT (-87.672682817 41.884156374)\t-87.672682817, 41.884156374\t11362902\n41.896701901\t-87.626405457\tPOINT (-87.626405457 41.896701901)\t-87.626405457, 41.896701901\t11362897\n" + } + ] + }, + "apps": [], + "jobName": "paragraph_1531061286838_-215958779", + "id": "20180707-121512_253138728", + "dateCreated": "2018-07-08 14:48:06.838", + "status": "READY", + "errorMessage": "", + "progressUpdateIntervalMs": 500 + }, + { + "title": "Let\u0027s import the Data as Graph into Neo4j by using the Neo4j-Spark-Connetor", + "text": "import org.neo4j.spark._\nval neo \u003d Neo4j(sc) // Neo4j Context\n\nval beat \u003d (\"Beat\", Seq(\"beat\")) // Beat node, with beat property\nval on_beat \u003d (\"ON_BEAT\", Seq.empty) // ON_BEAT relationship starting from a Beat and ending in a Crime\nval crime \u003d (\"Crime\", Seq(\"id\", \"description\", \"case_number\", \"point\")) // Crime node with id, description, case_number, point properties\nval crimeType \u003d (\"CrimeType\", Seq(\"primary_type\")) // CrimeType node with primary_type property\nval is_type \u003d (\"IS_TYPE\", Seq.empty) // IS_TYPE relationship starting from a Crime and ending in a CrimeType\nval crimesDates \u003d (\"CrimeDate\", Seq(\"parsed_date\", \"date\")) // CrimeDate node with parsed_date and date properties\nval on_date \u003d (\"ON_DATE\", Seq.empty) // ON_DATE relationship starting from a Crime and ending in a CrimeDate\n\n/*\n * Neo4jDataFrame provides `mergeEdgeList(sc: SparkContext, dataFrame: DataFrame, source: (label,Seq[prop]), relationship: (type,Seq[prop]), target: (label,Seq[prop]))` to merge a DataFrame back into a Neo4j graph\n * - both nodes are merged by first propery in sequence, all the others will be set on the entity, relat\n * - relationships are merged between the two nodes and all properties from sequence will be set on the relationship\n * - property names from the sequence are used as column names for the data-frame, currently there is no name translation\n * - the result are sent in batches of 10000 to the graph \n */\nNeo4jDataFrame.mergeEdgeList(sc, exendedCrimeDF, beat, on_beat, crime)\nNeo4jDataFrame.mergeEdgeList(sc, exendedCrimeDF, crime, is_type, crimeType)\nNeo4jDataFrame.mergeEdgeList(sc, exendedCrimeDF, crime, on_date, crimesDates)", + "user": "anonymous", + "dateUpdated": "2018-07-09 17:08:07.598", + "config": { + "editorSetting": { + "language": "scala", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + }, + "colWidth": 12.0, + "editorMode": "ace/mode/scala", + "fontSize": 9.0, + "results": {}, + "enabled": true, + "title": true + }, + "settings": { + "params": {}, + "forms": {} + }, + "results": { + "code": "SUCCESS", + "msg": [ + { + "type": "TEXT", + "data": "import org.neo4j.spark._\nneo: org.neo4j.spark.Neo4j \u003d org.neo4j.spark.Neo4j@1fa8cbc7\nbeat: (String, Seq[String]) \u003d (Beat,List(beat))\non_beat: (String, Seq[Nothing]) \u003d (ON_BEAT,List())\ncrime: (String, Seq[String]) \u003d (Crime,List(id, description, case_number, point))\ncrimeType: (String, Seq[String]) \u003d (CrimeType,List(primary_type))\nis_type: (String, Seq[Nothing]) \u003d (IS_TYPE,List())\ncrimesDates: (String, Seq[String]) \u003d (CrimeDate,List(parsed_date, date))\non_date: (String, Seq[Nothing]) \u003d (ON_DATE,List())\n" + } + ] + }, + "runtimeInfos": { + "jobUrl": { + "propertyName": "jobUrl", + "label": "SPARK JOB", + "tooltip": "View in Spark web UI", + "group": "spark", + "values": [ + "http://7aa22b367c6d:4040/jobs/job?id\u003d1", + "http://7aa22b367c6d:4040/jobs/job?id\u003d2", + "http://7aa22b367c6d:4040/jobs/job?id\u003d3", + "http://7aa22b367c6d:4040/jobs/job?id\u003d4", + "http://7aa22b367c6d:4040/jobs/job?id\u003d5", + "http://7aa22b367c6d:4040/jobs/job?id\u003d6" + ], + "interpreterSettingId": "spark" + } + }, + "apps": [], + "jobName": "paragraph_1531061286839_-1155358193", + "id": "20180707-104902_1291015604", + "dateCreated": "2018-07-08 14:48:06.839", + "dateStarted": "2018-07-09 16:56:24.457", + "dateFinished": "2018-07-09 16:56:52.201", + "status": "FINISHED", + "progressUpdateIntervalMs": 500 + }, + { + "title": "Let\u0027s query the graph directly from Neo4j!", + "text": "%neo4j\nMATCH (crime:Crime)-[is:IS_TYPE]-\u003e(type:CrimeType),\n (crime)-[on:ON_DATE]-\u003e(date:CrimeDate)\nRETURN crime, is, type, on, date\nlimit 10", + "user": "anonymous", + "dateUpdated": "2018-07-10 14:19:51.673", + "config": { + "editorSetting": { + "language": "scala", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + }, + "colWidth": 12.0, + "editorMode": "ace/mode/undefined", + "fontSize": 9.0, + "results": { + "0": { + "graph": { + "mode": "network", + "height": 408.0, + "optionOpen": true, + "setting": { + "table": { + "tableGridState": {}, + "tableColumnTypeState": { + "names": { + "id": "string", + "label": "string", + "primary_type": "string", + "latitude": "string", + "description": "string", + "case_number": "string", + "longitude": "string", + "date": "string", + "parsed_date": "string" + }, + "updated": false + }, + "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]", + "tableOptionValue": { + "useFilter": false, + "showPagination": false, + "showAggregationFooter": false + }, + "updated": false, + "initialized": false + }, + "pieChart": {}, + "network": { + "properties": { + "CrimeType": { + "selected": "primary_type", + "keys": [ + "primary_type", + "id", + "label" + ] + }, + "Crime": { + "selected": "case_number", + "keys": [ + "description", + "case_number", + "id", + "label" + ] + }, + "CrimeDate": { + "selected": "parsed_date", + "keys": [ + "parsed_date", + "id", + "label" + ] + } + }, + "d3Graph": { + "forceLayout": { + "timeout": 10000.0, + "charge": -120.0, + "linkDistance": 80.0 + }, + "zoom": { + "minScale": 1.3 + } + } + }, + "volume-leaflet": { + "coordinates": { + "name": "point", + "index": 4.0, + "aggr": "sum" + }, + "tooltip": { + "name": "primary_type", + "index": 5.0, + "aggr": "sum" + }, + "popup": { + "name": "description", + "index": 2.0, + "aggr": "sum" + } + } + }, + "keys": [ + { + "name": "label", + "index": 1.0, + "aggr": "sum" + } + ], + "groups": [], + "values": [ + { + "name": "label", + "index": 1.0, + "aggr": "count" + } + ] + }, + "helium": {} + } + }, + "enabled": true, + "title": true + }, + "settings": { + "params": {}, + "forms": {} + }, + "results": { + "code": "SUCCESS", + "msg": [ + { + "type": "NETWORK", + "data": "{\"nodes\":[{\"id\":257,\"data\":{\"description\":\"$500 AND UNDER\",\"case_number\":\"JB331543\",\"id\":\"11366568\",\"point\":\"41.78049123, -87.659383004\"},\"label\":\"Crime\"},{\"id\":258,\"data\":{\"description\":\"OVER $500\",\"case_number\":\"JB332014\",\"id\":\"11366878\",\"point\":\"41.741277854, -87.72893246\"},\"label\":\"Crime\"},{\"id\":1253,\"data\":{\"date\":\"2018-07-01T23:55:00.000\",\"parsed_date\":\"20180701\"},\"label\":\"CrimeDate\"},{\"id\":261,\"data\":{\"description\":\"PRO EMP HANDS NO/MIN INJURY\",\"case_number\":\"JB331356\",\"id\":\"11366414\",\"point\":\"41.871489164, -87.627516791\"},\"label\":\"Crime\"},{\"id\":262,\"data\":{\"description\":\"HARASSMENT BY ELECTRONIC MEANS\",\"case_number\":\"JB331345\",\"id\":\"11366311\",\"point\":\"42.002275046, -87.694883509\"},\"label\":\"Crime\"},{\"id\":263,\"data\":{\"description\":\"TO VEHICLE\",\"case_number\":\"JB334256\",\"id\":\"11368512\",\"point\":\"41.790872026, -87.606143261\"},\"label\":\"Crime\"},{\"id\":264,\"data\":{\"description\":\"FROM BUILDING\",\"case_number\":\"JB336353\",\"id\":\"11370610\",\"point\":\"41.883224344, -87.624971297\"},\"label\":\"Crime\"},{\"id\":265,\"data\":{\"description\":\"TO STATE SUP LAND\",\"case_number\":\"JB331343\",\"id\":\"11366321\",\"point\":\"41.654842326, -87.596745225\"},\"label\":\"Crime\"},{\"id\":266,\"data\":{\"description\":\"UNLAWFUL POSS OTHER FIREARM\",\"case_number\":\"JB331354\",\"id\":\"11366328\",\"point\":\"41.899561138, -87.749396969\"},\"label\":\"Crime\"},{\"id\":267,\"data\":{\"description\":\"STRONGARM - NO WEAPON\",\"case_number\":\"JB331321\",\"id\":\"11366395\",\"point\":\"41.970150868, -87.719937663\"},\"label\":\"Crime\"},{\"id\":268,\"data\":{\"description\":\"AGGRAVATED DOMESTIC BATTERY: OTHER DANG WEAPON\",\"case_number\":\"JB331346\",\"id\":\"11366429\",\"point\":\"41.891774905, -87.757933618\"},\"label\":\"Crime\"},{\"id\":1260,\"data\":{\"primary_type\":\"BATTERY\"},\"label\":\"CrimeType\"},{\"id\":1261,\"data\":{\"primary_type\":\"CRIMINAL DAMAGE\"},\"label\":\"CrimeType\"},{\"id\":1263,\"data\":{\"primary_type\":\"WEAPONS VIOLATION\"},\"label\":\"CrimeType\"},{\"id\":1264,\"data\":{\"primary_type\":\"THEFT\"},\"label\":\"CrimeType\"},{\"id\":1265,\"data\":{\"primary_type\":\"ASSAULT\"},\"label\":\"CrimeType\"},{\"id\":1266,\"data\":{\"primary_type\":\"OTHER OFFENSE\"},\"label\":\"CrimeType\"},{\"id\":1267,\"data\":{\"primary_type\":\"CRIMINAL TRESPASS\"},\"label\":\"CrimeType\"},{\"id\":1268,\"data\":{\"primary_type\":\"ROBBERY\"},\"label\":\"CrimeType\"}],\"edges\":[{\"source\":257,\"target\":1264,\"id\":1004,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":258,\"target\":1264,\"id\":1005,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":261,\"target\":1265,\"id\":1008,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":262,\"target\":1266,\"id\":1009,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":263,\"target\":1261,\"id\":1010,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":264,\"target\":1264,\"id\":1011,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":265,\"target\":1267,\"id\":1012,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":257,\"target\":1253,\"id\":2004,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":266,\"target\":1263,\"id\":1013,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":258,\"target\":1253,\"id\":2005,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":267,\"target\":1268,\"id\":1014,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":268,\"target\":1260,\"id\":1015,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":261,\"target\":1253,\"id\":2008,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":262,\"target\":1253,\"id\":2009,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":263,\"target\":1253,\"id\":2010,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":264,\"target\":1253,\"id\":2011,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":265,\"target\":1253,\"id\":2012,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":266,\"target\":1253,\"id\":2013,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":267,\"target\":1253,\"id\":2014,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":268,\"target\":1253,\"id\":2015,\"data\":{},\"label\":\"ON_DATE\"}],\"labels\":{\"Beat\":\"#380D1A\",\"Crime\":\"#07863A\",\"CrimeType\":\"#B0444A\",\"CrimeDate\":\"#3F519B\"},\"types\":[\"IS_TYPE\",\"ON_BEAT\",\"ON_DATE\"],\"directed\":true}" + } + ] + }, + "apps": [], + "jobName": "paragraph_1531061286840_1114642955", + "id": "20180707-123200_2053990595", + "dateCreated": "2018-07-08 14:48:06.840", + "dateStarted": "2018-07-09 16:57:13.744", + "dateFinished": "2018-07-09 16:57:14.070", + "status": "FINISHED", + "progressUpdateIntervalMs": 500 + }, + { + "title": "The Neo4j Interpreter can leverage Zeppelin\u0027s Dynamic Forms in order to built parametrized queries!", + "text": "%neo4j\nMATCH (crime:Crime)-[is:IS_TYPE]-\u003e(type:CrimeType{primary_type: \u0027${Crime Type}\u0027}),\n (crime)-[on:ON_DATE]-\u003e(date:CrimeDate)\nRETURN crime, is, type, on, date", + "user": "anonymous", + "dateUpdated": "2018-07-10 14:19:42.508", + "config": { + "editorSetting": { + "language": "scala", + "editOnDblClick": false, + "completionKey": "TAB", + "completionSupport": true + }, + "colWidth": 12.0, + "editorMode": "ace/mode/undefined", + "fontSize": 9.0, + "results": { + "0": { + "graph": { + "mode": "volume-leaflet", + "height": 287.0, + "optionOpen": false, + "setting": { + "table": { + "tableGridState": {}, + "tableColumnTypeState": { + "names": { + "id": "string", + "label": "string", + "description": "string", + "case_number": "string", + "point": "string", + "primary_type": "string", + "date": "string", + "parsed_date": "string" + }, + "updated": false + }, + "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]", + "tableOptionValue": { + "useFilter": false, + "showPagination": false, + "showAggregationFooter": false + }, + "updated": false, + "initialized": false + }, + "volume-leaflet": { + "coordinates": { + "name": "point", + "index": 4.0, + "aggr": "sum" + }, + "tooltip": { + "name": "description", + "index": 2.0, + "aggr": "sum" + } + } + } + }, + "helium": {} + } + }, + "enabled": true, + "title": true, + "editorHide": false + }, + "settings": { + "params": { + "Crime Type": "WEAPONS VIOLATION" + }, + "forms": { + "Crime Type": { + "type": "TextBox", + "name": "Crime Type", + "defaultValue": "", + "hidden": false + } + } + }, + "results": { + "code": "SUCCESS", + "msg": [ + { + "type": "NETWORK", + "data": "{\"nodes\":[{\"id\":5893,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB327903\",\"id\":\"11363772\",\"point\":\"41.745324922, -87.601380733\"},\"label\":\"Crime\"},{\"id\":6344,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB327009\",\"id\":\"11363198\",\"point\":\"41.881852148, -87.724488152\"},\"label\":\"Crime\"},{\"id\":6154,\"data\":{\"description\":\"UNLAWFUL USE HANDGUN\",\"case_number\":\"JB327186\",\"id\":\"11363208\",\"point\":\"41.689117387, -87.612485619\"},\"label\":\"Crime\"},{\"id\":6222,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB327112\",\"id\":\"11363216\",\"point\":\"41.674407522, -87.616397994\"},\"label\":\"Crime\"},{\"id\":5646,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB328383\",\"id\":\"11364149\",\"point\":\"41.757021568, -87.645419158\"},\"label\":\"Crime\"},{\"id\":5967,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB327671\",\"id\":\"11363656\",\"point\":\"41.892795542, -87.712576112\"},\"label\":\"Crime\"},{\"id\":5458,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB328662\",\"id\":\"11364339\",\"point\":\"41.909323054, -87.769851744\"},\"label\":\"Crime\"},{\"id\":5524,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB328587\",\"id\":\"11364265\",\"point\":\"41.862107289, -87.721397241\"},\"label\":\"Crime\"},{\"id\":6357,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB326949\",\"id\":\"11363108\",\"point\":\"41.751332503, -87.60099732\"},\"label\":\"Crime\"},{\"id\":5974,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB327558\",\"id\":\"11363752\",\"point\":\"41.69145123, -87.621034412\"},\"label\":\"Crime\"},{\"id\":6487,\"data\":{\"primary_type\":\"WEAPONS VIOLATION\"},\"label\":\"CrimeType\"},{\"id\":5720,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB328269\",\"id\":\"11364097\",\"point\":\"41.965351123, -87.660633502\"},\"label\":\"Crime\"},{\"id\":6169,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB327149\",\"id\":\"11363160\",\"point\":\"41.704332488, -87.631189989\"},\"label\":\"Crime\"},{\"id\":5466,\"data\":{\"date\":\"2018-06-29T23:59:00.000\",\"parsed_date\":\"20180629\"},\"label\":\"CrimeDate\"},{\"id\":6362,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB326917\",\"id\":\"11363082\",\"point\":\"41.729085335, -87.560904271\"},\"label\":\"Crime\"},{\"id\":5467,\"data\":{\"date\":\"2018-06-28T23:56:00.000\",\"parsed_date\":\"20180628\"},\"label\":\"CrimeDate\"},{\"id\":5533,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB328576\",\"id\":\"11364291\",\"point\":\"41.850341952, -87.729562229\"},\"label\":\"Crime\"},{\"id\":6177,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB327180\",\"id\":\"11363329\",\"point\":\"41.871332581, -87.725362697\"},\"label\":\"Crime\"},{\"id\":5985,\"data\":{\"description\":\"UNLAWFUL USE OTHER FIREARM\",\"case_number\":\"JB327603\",\"id\":\"11363601\",\"point\":\"41.736318121, -87.561132703\"},\"label\":\"Crime\"},{\"id\":5859,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB327885\",\"id\":\"11363801\",\"point\":\"41.816798304, -87.689560854\"},\"label\":\"Crime\"},{\"id\":5989,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB327613\",\"id\":\"11363546\",\"point\":\"41.768290786, -87.68623372\"},\"label\":\"Crime\"},{\"id\":6058,\"data\":{\"description\":\"UNLAWFUL POSS AMMUNITION\",\"case_number\":\"JB327393\",\"id\":\"11363448\",\"point\":\"41.781544119, -87.609607138\"},\"label\":\"Crime\"},{\"id\":6250,\"data\":{\"description\":\"UNLAWFUL USE HANDGUN\",\"case_number\":\"JB327070\",\"id\":\"11363117\",\"point\":\"41.713205653, -87.630866349\"},\"label\":\"Crime\"},{\"id\":6378,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB326907\",\"id\":\"11363043\",\"point\":\"41.873843031, -87.763245932\"},\"label\":\"Crime\"},{\"id\":6443,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB326788\",\"id\":\"11362913\",\"point\":\"41.758524827, -87.608711316\"},\"label\":\"Crime\"},{\"id\":5612,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB328464\",\"id\":\"11364145\",\"point\":\"41.78768456, -87.64741987\"},\"label\":\"Crime\"},{\"id\":6062,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB327309\",\"id\":\"11363406\",\"point\":\"41.783160188, -87.610864923\"},\"label\":\"Crime\"},{\"id\":6194,\"data\":{\"description\":\"RECKLESS FIREARM DISCHARGE\",\"case_number\":\"JB327658\",\"id\":\"11363866\",\"point\":\"41.996622677, -87.686180824\"},\"label\":\"Crime\"},{\"id\":6322,\"data\":{\"description\":\"UNLAWFUL USE HANDGUN\",\"case_number\":\"JB327027\",\"id\":\"11363071\",\"point\":\"41.682060252, -87.657874171\"},\"label\":\"Crime\"},{\"id\":6003,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB327487\",\"id\":\"11363736\",\"point\":\"41.867629489, -87.703266703\"},\"label\":\"Crime\"},{\"id\":6323,\"data\":{\"description\":\"UNLAWFUL USE HANDGUN\",\"case_number\":\"JB327025\",\"id\":\"11363070\",\"point\":\"41.682580677, -87.659106091\"},\"label\":\"Crime\"},{\"id\":6004,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB327438\",\"id\":\"11363547\",\"point\":\"41.71252985, -87.631650164\"},\"label\":\"Crime\"},{\"id\":5559,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB328535\",\"id\":\"11364186\",\"point\":\"41.848494607, -87.679359087\"},\"label\":\"Crime\"},{\"id\":6264,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB327019\",\"id\":\"11363209\",\"point\":\"41.86187256, -87.716505967\"},\"label\":\"Crime\"},{\"id\":6392,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB326859\",\"id\":\"11362994\",\"point\":\"41.917217521, -87.721973302\"},\"label\":\"Crime\"},{\"id\":6009,\"data\":{\"description\":\"UNLAWFUL POSS AMMUNITION\",\"case_number\":\"JB327459\",\"id\":\"11363564\",\"point\":\"41.770787673, -87.60935781\"},\"label\":\"Crime\"},{\"id\":6139,\"data\":{\"description\":\"UNLAWFUL USE OTHER FIREARM\",\"case_number\":\"JB327231\",\"id\":\"11363299\",\"point\":\"41.728931483, -87.565793167\"},\"label\":\"Crime\"},{\"id\":6398,\"data\":{\"description\":\"UNLAWFUL POSS OF HANDGUN\",\"case_number\":\"JB326805\",\"id\":\"11363104\",\"point\":\"41.727902888, -87.650679156\"},\"label\":\"Crime\"}],\"edges\":[{\"source\":6264,\"target\":5467,\"id\":8960,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6392,\"target\":5467,\"id\":9088,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":5612,\"target\":6487,\"id\":7296,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6009,\"target\":5466,\"id\":8705,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6139,\"target\":5466,\"id\":8835,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6398,\"target\":5467,\"id\":9094,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6003,\"target\":6487,\"id\":7687,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6004,\"target\":6487,\"id\":7688,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":5458,\"target\":6487,\"id\":7176,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6264,\"target\":6487,\"id\":7948,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6392,\"target\":6487,\"id\":8076,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6009,\"target\":6487,\"id\":7693,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":5893,\"target\":5466,\"id\":8589,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6139,\"target\":6487,\"id\":7823,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6154,\"target\":5466,\"id\":8850,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6398,\"target\":6487,\"id\":8082,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":5646,\"target\":5466,\"id\":8342,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":5893,\"target\":6487,\"id\":7577,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":5524,\"target\":5466,\"id\":8220,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6154,\"target\":6487,\"id\":7838,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6169,\"target\":5466,\"id\":8865,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":5646,\"target\":6487,\"id\":7330,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":5533,\"target\":5466,\"id\":8229,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":5524,\"target\":6487,\"id\":7208,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6177,\"target\":5466,\"id\":8873,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6169,\"target\":6487,\"id\":7853,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":5533,\"target\":6487,\"id\":7217,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6058,\"target\":5466,\"id\":8754,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6443,\"target\":5467,\"id\":9139,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6177,\"target\":6487,\"id\":7861,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6062,\"target\":5466,\"id\":8758,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6194,\"target\":5466,\"id\":8890,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6322,\"target\":5467,\"id\":9018,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6323,\"target\":5467,\"id\":9019,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6058,\"target\":6487,\"id\":7742,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6443,\"target\":6487,\"id\":8127,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":5559,\"target\":5466,\"id\":8255,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6062,\"target\":6487,\"id\":7746,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6194,\"target\":6487,\"id\":7878,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6322,\"target\":6487,\"id\":8006,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6323,\"target\":6487,\"id\":8007,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":5559,\"target\":6487,\"id\":7243,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6344,\"target\":5467,\"id\":9040,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6222,\"target\":5467,\"id\":8918,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":5967,\"target\":5466,\"id\":8663,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6344,\"target\":6487,\"id\":8028,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6357,\"target\":5467,\"id\":9053,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":5974,\"target\":5466,\"id\":8670,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":5720,\"target\":5466,\"id\":8416,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6222,\"target\":6487,\"id\":7906,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6362,\"target\":5467,\"id\":9058,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":5967,\"target\":6487,\"id\":7651,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6357,\"target\":6487,\"id\":8041,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":5985,\"target\":5466,\"id\":8681,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":5974,\"target\":6487,\"id\":7658,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":5859,\"target\":5466,\"id\":8555,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":5720,\"target\":6487,\"id\":7404,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":5989,\"target\":5466,\"id\":8685,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6362,\"target\":6487,\"id\":8046,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6250,\"target\":5467,\"id\":8946,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6378,\"target\":5467,\"id\":9074,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":5612,\"target\":5466,\"id\":8308,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":5985,\"target\":6487,\"id\":7669,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":5859,\"target\":6487,\"id\":7543,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":5989,\"target\":6487,\"id\":7673,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6003,\"target\":5466,\"id\":8699,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6004,\"target\":5466,\"id\":8700,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":5458,\"target\":5466,\"id\":8188,\"data\":{},\"label\":\"ON_DATE\"},{\"source\":6250,\"target\":6487,\"id\":7934,\"data\":{},\"label\":\"IS_TYPE\"},{\"source\":6378,\"target\":6487,\"id\":8062,\"data\":{},\"label\":\"IS_TYPE\"}],\"labels\":{\"Beat\":\"#1DA405\",\"Crime\":\"#78012A\",\"CrimeType\":\"#B11CCD\",\"CrimeDate\":\"#49CDE0\"},\"types\":[\"IS_TYPE\",\"ON_BEAT\",\"ON_DATE\"],\"directed\":true}" + } + ] + }, + "apps": [], + "jobName": "paragraph_1531061286841_274308145", + "id": "20180707-123430_1872711974", + "dateCreated": "2018-07-08 14:48:06.841", + "status": "READY", + "errorMessage": "", + "progressUpdateIntervalMs": 500 + }, + { + "text": "%neo4j\n", + "user": "anonymous", + "dateUpdated": "2018-07-09 16:38:07.996", + "config": {}, + "settings": { + "params": {}, + "forms": {} + }, + "apps": [], + "jobName": "paragraph_1531154287989_-1212711150", + "id": "20180709-163807_900340418", + "dateCreated": "2018-07-09 16:38:07.990", + "status": "READY", + "progressUpdateIntervalMs": 500 + } + ], + "name": "Zeppelin Tutorial/Neo4j", + "id": "2DHCVSHV5", + "noteParams": {}, + "noteForms": {}, + "angularObjects": { + "neo4j:shared_process": [], + "spark:shared_process": [] + }, + "config": { + "isZeppelinNotebookCronEnable": false + }, + "info": {} +} \ No newline at end of file