code
stringlengths
2
1.05M
import Server from 'socket.io'; export default function startServer(store) { const io = new Server().attach(8090); store.subscribe( () => io.emit('state', store.getState().toJS()) ); io.on('connection', (socket) => { socket.emit('state', store.getState().toJS()); socket.on('action', store.dispatch.bind(store)); }); }
"use strict"; var gulp = require('gulp'); var connect = require('gulp-connect'); // runs local dev server var open = require('gulp-open'); // open url in web browser var browserify = require('browserify'); var reactify = require('reactify'); var source = require('vinyl-source-stream'); var concat = require('gulp-concat'); var lint = require('gulp-eslint'); var config = { port: 9005, devBaseUrl: 'http://localhost', paths:{ html: './src/*.html', js: './src/**/*.js', css: [ 'node_modules/bootstrap/dist/css/bootstrap.min.css', 'node_modules/bootstrap/dist/css/bootstrap-theme.min.css' ], mainJs: './src/app.js', dist: './dist' } } //Start a local server gulp.task('connect',function(){ connect.server({ root: ['dist'], port: config.port, base: config.devBaseUrl, livereload: true }); }); //Connect to local server gulp.task('open',['connect'], function(){ gulp.src('dist/index.html') .pipe(open({uri: config.devBaseUrl + ':' + config.port + '/'})); }); gulp.task('html',function(){ gulp.src(config.paths.html) .pipe(gulp.dest(config.paths.dist)) .pipe(connect.reload()); }); gulp.task('watch', function(){ gulp.watch(config.paths.html, ['html']); gulp.watch(config.paths.js, ['js','lint']); }); gulp.task('js',function(){ browserify(config.paths.mainJs) .transform(reactify) .bundle() .on('error', console.error.bind(console)) .pipe(source('bundle.js')) .pipe(gulp.dest(config.paths.dist + '/scripts')) .pipe(connect.reload()); }) gulp.task('css',function(){ gulp.src(config.paths.css) .pipe(concat('bundle.css')) .pipe(gulp.dest(config.paths.dist + '/css')) }) gulp.task('lint', function(){ return gulp.src(config.paths.js) .pipe(lint({ config: 'eslint.config.json' })) .pipe(lint.format()); }) gulp.task('default', ['html','js','css','lint','open','watch']);
import React, { Component } from 'react'; import { Text, Modal } from 'react-native'; import Menu, { MenuProvider, MenuOptions, MenuOption, MenuTrigger, } from 'react-native-popup-menu'; class ModalExample extends Component { constructor(props, ctx) { super(props, ctx); this.state = { visible: false }; } render() { return ( <MenuProvider style={{flexDirection: 'column', padding: 30}}> <Text>Main window:</Text> <Menu> <MenuTrigger text='Select option' /> <MenuOptions> <MenuOption onSelect={() => this.setState({ visible: true })} text='Open modal' /> </MenuOptions> </Menu> <Modal visible={this.state.visible} onRequestClose={() => this.setState({ visible: false })}> <MenuProvider skipInstanceCheck style={{flexDirection: 'column', padding: 30, backgroundColor: 'white'}}> <Text>Modal window:</Text> <Menu onSelect={value => alert(`Selected number: ${value}`)}> <MenuTrigger text='Select option' /> <MenuOptions> <MenuOption value={1} text='One' /> <MenuOption value={2} text='Two' /> <MenuOption onSelect={() => this.setState({ visible: false })} text='Close modal' /> </MenuOptions> </Menu> </MenuProvider> </Modal> </MenuProvider> ); } } export default ModalExample;
var spec = require("washington") var assert = require("assert") var Mediador = require("mediador") var clone = function (object) { var clone = {} Object.keys(object).forEach(function (key) { clone[key] = object[key] }) return clone } var isQuoted = function (position, source) { //! Double quotes! if ( //! Is there at least one double quote before this character? source.substring(0, position).indexOf('"') != -1 && //! Are there an odd amount of double quotes before this character? source.substring(0, position).match(/"/g).length % 2 == 1 && //! Is there at least one double quote after this character? source.substring(position).indexOf('"') != -1) //! Then it is quoted! return true //! Single quotes! if ( //! Is there at least one single quote before this character? source.substring(0, position).indexOf("'") != -1 && //! Are there an odd amount of single quotes before this character? source.substring(0, position).match(/'/g).length % 2 == 1 && //! Is there at least one single quote after this character? source.substring(position).indexOf("'") != -1) //! Then it is quoted! return true //! Otherwise it is not quoted return false } var Parser = function (options) { if (options) { this.commentStart = options.commentStart this.escapeSequence = options.escapeSequence } } Parser.prototype = Object.create(Mediador.prototype) Parser.prototype.line = function (options) { var argument = {} var position = null var quoted = true var substring = options.line var newPosition = null if (!this.commentStart) { argument = clone(options) argument.code = options.line return this.emit("code", [argument]) } do { newPosition = substring.indexOf(this.commentStart) quoted = isQuoted(newPosition, substring) substring = substring.substring(newPosition + this.commentStart.length) position = position + newPosition + this.commentStart.length } while (quoted && newPosition !== -1 && substring) position = newPosition === -1 ? newPosition : position - this.commentStart.length if (position === -1) { argument = clone(options) argument.code = options.line return this.emit("code", [argument]) } if (this.escapeSequence && options.line .substring( position + this.commentStart.length, position + this.commentStart.length + this.escapeSequence.length) === this.escapeSequence) { argument = clone(options) argument.code = options.line return this.emit("code", [argument]) } if (position > 0 && options.line.substring(0, position).trim() !== "") { argument.code = clone(options) argument.code.code = options.line .substring(0, position) argument.comment = clone(options) argument.comment.comment = options.line .substring(position + this.commentStart.length + 1) return this .emit("code", [argument.code]) .emit("comment", [argument.comment]) } argument = clone(options) argument.comment = options.line .substring(position + this.commentStart.length + 1) this.emit("comment", [argument]) } spec("should emit as 'code' by default and forward extras", function () { //! given var options = { line: "Some content", extra: "Some extra" } var listener = { code: function (code) { (this.code.calls = this.code.calls || []) .push(code) } } var emitter = new Mediador emitter.on( new Parser() .on(listener) ) //! when emitter.emit("line", [options]) //! then assert.equal(listener.code.calls[0].code, options.line) assert.equal(listener.code.calls[0].line, options.line) assert.equal(listener.code.calls[0].extra, options.extra) }) spec("should emit as 'comment' when starts with comment token", function () { //! given var options = { line: "// comment" } var listener = { comment: function (comment) { (this.comment.calls = this.comment.calls || []) .push(comment) } } var emitter = new Mediador emitter.on( new Parser({ commentStart: "//"}) .on(listener) ) //! when emitter.emit("line", [options]) //! then assert.equal(listener.comment.calls[0].comment, "comment") }) spec("should emit 'code' and 'comment' if comment starts in the middle", function () { //! given var options = { line: "some code # comment" } var listener = { comment: function (comment) { (this.comment.calls = this.comment.calls || []) .push(comment) }, code: function (code) { (this.code.calls = this.code.calls || []) .push(code) } } var emitter = new Mediador emitter.on( new Parser({ commentStart: "#"}) .on(listener) ) //! when emitter.emit("line", [options]) //! then assert.equal(listener.code.calls[0].code, "some code ") assert.equal(listener.comment.calls[0].comment, "comment") }) spec("should not emit 'code' if empty", function () { //! given var options = { line: " # comment" } var listener = { comment: function (comment) { (this.comment.calls = this.comment.calls || []) .push(comment) }, code: function (code) { (this.code.calls = this.code.calls || []) .push(code) } } var emitter = new Mediador emitter.on( new Parser({ commentStart: "#"}) .on(listener) ) //! when emitter.emit("line", [options]) //! then assert.equal(listener.code.calls, undefined) assert.equal(listener.comment.calls[0].comment, "comment") }) spec("should ignore comment when escaped", function () { //! given var options = { line: "some code #! comment" } var listener = { comment: function (comment) { (this.comment.calls = this.comment.calls || []) .push(comment) }, code: function (code) { (this.code.calls = this.code.calls || []) .push(code) } } var emitter = new Mediador emitter.on( new Parser({ commentStart: "#", escapeSequence: "!" }) .on(listener) ) //! when emitter.emit("line", [options]) //! then assert.equal(listener.code.calls[0].code, "some code #! comment") assert.equal(listener.comment.calls, undefined) }) spec("should ignore comment sign when quoted with ''", function () { //! given var options = { line: "some code '#' comment" } var listener = { comment: function (comment) { (this.comment.calls = this.comment.calls || []) .push(comment) }, code: function (code) { (this.code.calls = this.code.calls || []) .push(code) } } var emitter = new Mediador emitter.on( new Parser({ commentStart: "#", escapeSequence: "!" }) .on(listener) ) //! when emitter.emit("line", [options]) //! then assert.equal(listener.code.calls[0].code, "some code '#' comment") assert.equal(listener.comment.calls, undefined) }) spec("should ignore comment sign when quoted with \"\"", function () { //! given var options = { line: "some code \"#\" comment" } var listener = { comment: function (comment) { (this.comment.calls = this.comment.calls || []) .push(comment) }, code: function (code) { (this.code.calls = this.code.calls || []) .push(code) } } var emitter = new Mediador emitter.on( new Parser({ commentStart: "#", escapeSequence: "!" }) .on(listener) ) //! when emitter.emit("line", [options]) //! then assert.equal(listener.code.calls[0].code, "some code \"#\" comment") assert.equal(listener.comment.calls, undefined) }) spec("should use comment sign when quoted only once", function () { //! given var options = { line: "some code \"#\" # comment" } var listener = { comment: function (comment) { (this.comment.calls = this.comment.calls || []) .push(comment) }, code: function (code) { (this.code.calls = this.code.calls || []) .push(code) } } var emitter = new Mediador emitter.on( new Parser({ commentStart: "#", escapeSequence: "!" }) .on(listener) ) //! when emitter.emit("line", [options]) //! then assert.equal(listener.code.calls[0].code, "some code \"#\" ") assert.equal(listener.comment.calls[0].comment, "comment") }) module.exports = Parser
/** * Invalid Request Error * Missing parameters or invalid parameters */ function InvalidRequestError(message) { this.message = message; } InvalidRequestError.prototype = new Error; InvalidRequestError.prototype.name = 'InvalidRequestError'; InvalidRequestError.prototype.error = 'restINVALID_PARAMETER'; /** * Network Error * Timeout, disconnects and too busy */ function NetworkError(message) { this.message = message; } NetworkError.prototype = new Error; NetworkError.prototype.name = 'NetworkError'; /** * Rippled NetworkError * Failed transactions, no paths found, not enough balance, etc. */ function RippledNetworkError(message) { this.message = message !== void(0) ? message : 'Cannot connect to rippled'; } RippledNetworkError.prototype = new NetworkError; RippledNetworkError.prototype.error = 'restRIPPLED_NETWORK_ERR'; /** * Transaction Error * Failed transactions, no paths found, not enough balance, etc. */ function TransactionError(message) { this.message = message; } TransactionError.prototype = new Error; TransactionError.prototype.name = 'TransactionError'; /** * Not Found Error * Asset could not be found */ function NotFoundError(message) { this.message = message; } NotFoundError.prototype = new Error; NotFoundError.prototype.name = 'NotFoundError'; NotFoundError.prototype.error = 'restNOT_FOUND'; /** * Time Out Error * Request timed out */ function TimeOutError(message) { this.message = message; } TimeOutError.prototype = new Error; TimeOutError.prototype.name = 'TimeOutError'; /** * API Error * API logic failed to do what it intended */ function ApiError(message) { this.message = message; } ApiError.prototype = new Error; ApiError.prototype.name = 'ApiError'; /** * DuplicateTransaction Error * Another transaction already exists with the same key */ function DuplicateTransactionError(message) { this.message = message; } DuplicateTransactionError.prototype = new ApiError; DuplicateTransactionError.prototype.error = 'restDUPLICATE_TRANSACTION'; /** * Database Error * An error occurred while reading or writing to permanent storage */ function DatabaseError(message) { this.message = message; } DatabaseError.prototype = new Error; DatabaseError.prototype.name = 'DatabaseError'; module.exports = { InvalidRequestError: InvalidRequestError, NetworkError: NetworkError, TransactionError: TransactionError, RippledNetworkError: RippledNetworkError, NotFoundError: NotFoundError, TimeOutError: TimeOutError, ApiError: ApiError, DuplicateTransactionError: DuplicateTransactionError, DatabaseError: DatabaseError };
#!/usr/bin/env node polyfill(); var findwords = require('./findwords'); var { EOL } = require('os'); var results = findwords(process.argv[2]); var longest = 0; if (process.stdout.isTTY) { for (var i = 0; i < results.length; i++) { var len = results[i].length + 1; if (len > longest) { longest = len; } } var columns = Math.floor(process.stdout.columns / longest); var columns_exact = process.stdout.columns % longest === 0; for (i = 0; i < results.length; i++) { process.stdout.write(padd(results[i], longest)); if (!columns_exact) if (i % columns === 0 && i !== 0) { process.stdout.write(EOL); } } console.log('\n' + results.length); } else { for (const word of results) { process.stdout.write(word); process.stdout.write(EOL); } } function padd(word, size) { return ' '.repeat(longest - word.length) + word; } function polyfill() { if (!String.prototype.repeat) { String.prototype.repeat = function(count) { 'use strict'; if (this == null) { throw new TypeError("can't convert " + this + ' to object'); } var str = '' + this; count = +count; if (count != count) { count = 0; } if (count < 0) { throw new RangeError('repeat count must be non-negative'); } if (count == Infinity) { throw new RangeError('repeat count must be less than infinity'); } count = Math.floor(count); if (str.length == 0 || count == 0) { return ''; } // Ensuring count is a 31-bit integer allows us to heavily optimize the // main part. But anyway, most current (August 2014) browsers can't handle // strings 1 << 28 chars or longer, so: if (str.length * count >= 1 << 28) { throw new RangeError('repeat count must not overflow maximum string size'); } var rpt = ''; for (;;) { if ((count & 1) == 1) { rpt += str; } count >>>= 1; if (count == 0) { break; } str += str; } return rpt; }; } }
'use strict'; var logger = Loggers.create(__filename, 'info'); //# sourceMappingURL=Arrays.js.map
/* eslint camelcase: "off" */ import markdownFormatter from 'nightingale-markdown-formatter/src'; import rawFormatter from 'nightingale-raw-formatter/src'; import levels from 'nightingale-levels'; const levelToSlackColor = { [levels.TRACE]: '#808080', [levels.DEBUG]: '#808080', [levels.INFO]: '#808080', [levels.WARN]: 'warning', [levels.ERROR]: 'danger', [levels.CRITICAL]: 'danger', [levels.FATAL]: 'danger', [levels.EMERGENCY]: 'danger', }; export default (record, slackConfig) => { const markdown = markdownFormatter(record); const raw = rawFormatter(record); return { channel: slackConfig.channel, username: slackConfig.username, icon_url: slackConfig.iconUrl, icon_emoji: slackConfig.iconEmoji, attachments: [ { fallback: raw, title: record.message, color: levelToSlackColor[record.level], text: markdown, mrkdwn_in: ['text'], }, ], }; };
var Lab = require('lab'), lab = exports.lab = Lab.script(), describe = lab.experiment, before = lab.before, after = lab.after, it = lab.test, expect = Lab.expect, sinon = require('sinon'), elasticsearch = require('elasticsearch'); var fakeSearch = require('../fixtures/fake-search.json'), server; before(function (done) { server = require('../fixtures/setupServer')(done); }); sinon.stub(elasticsearch, 'Client', function(){ return { search: function(query, cb){ cb(null, fakeSearch) } }; }); describe('Rendering the view', function () { var source; it('Should use the index template to render the view', function (done) { var options = { url: '/search?q=express', method: 'GET' }; server.ext('onPreResponse', function (request, next){ source = request.response.source; next(); }); server.inject(options, function (resp) { expect(resp.statusCode).to.equal(200); expect(source.template).to.equal('registry/search'); done(); }); }); it('redirects /search/foo to /search?q=foo', function (done) { var options = { url: '/search/food-trucks', method: 'GET' }; server.ext('onPreResponse', function (request, next){ source = request.response.source; next(); }); server.inject(options, function (resp) { expect(resp.statusCode).to.equal(302); expect(resp.headers.location).to.include("/search?q=food-trucks"); done(); }); }); });
'use strict'; var gulp = require('gulp'); var util = require('util'); var browserSync = require('browser-sync'); var middleware = require('./proxy'); function browserSyncInit(baseDir, files, browser) { browser = browser === undefined ? 'default' : browser; var routes = null; if(baseDir === 'app' || (util.isArray(baseDir) && baseDir.indexOf('app') !== -1)) { routes = { // Should be '/bower_components': '../bower_components' // Waiting for https://github.com/shakyShane/browser-sync/issues/308 '/bower_components': 'bower_components' }; } browserSync.instance = browserSync.init(files, { startPath: '/index.html', server: { baseDir: baseDir, middleware: middleware, routes: routes }, browser: browser }); } gulp.task('serve', ['watch'], function () { browserSyncInit([ 'app', '.tmp' ], [ '.tmp/{app,components}/**/*.css', 'app/assets/images/**/*', 'app/*.html', 'app/views/**/*.html', 'app/{config,components,controllers}/**/*.js' ]); }); gulp.task('serve:dist', ['build'], function () { browserSyncInit('dist'); });
var _rand = function(items) { return items[ Math.floor(Math.random() * items.length) ]; }; var _randBool = function() { return _rand([true, false]); }; module.exports = function(app) { app .all('/api/v1/test/form', function(req, res) { res.status(200).json({ 'valid' : true, 'message' : 'form processed' }); }) .all('/api/v1/test/simple', function(req, res) { res.status(200).json({ 'valid' : true }); }) .all('/api/v1/test/list', function(req, res) { res.status(200).json({ 'valid' : true }); }) .all('/api/v1/test/upload', function(req, res) { res.status(200).json({ 'valid' : true }); }) .all('/api/v1/test/error', function(req, res) { res.status(400).json({ 'invalid' : true }); }) ; };
version https://git-lfs.github.com/spec/v1 oid sha256:bf3708d5ecf40de1f2c9a19aa26d6ec52dfec97a2129587d469d379c24e4fbe1 size 54440
const Kapow = require('kapow'); module.exports = function(model) { if (model) { throw Kapow(409, 'Model with this ID already exists'); } return model; };
module.exports = function (nestedMeans) { return function (splits) { var lg = Math.log(splits) / Math.log(2); if (lg !== Math.round(lg)) { throw new Error("splits should be a power of two"); } var ranges = []; var range; function scale(x) { var category = ranges.length; while (category > 0) { if (x < ranges[category] && x >= ranges[category - 1]) { return range[category - 1]; } category -= 1; } return range[category]; } scale.range = function (x) { if (!arguments.length) { return range; } if (x.length !== splits) { throw new Error("The number of elements in the range should equal the number of splits"); } range = x; return scale; }; scale.domain = function (x) { if (!arguments.length) { return ranges; } ranges = nestedMeans(x, splits); return scale; }; return scale; }; };
/** * @fileOverview A module for window-form alignment. * * @author Masami Yonehara * @version 0.1 */ (function(exp){ var aligner; /** * @namespace aligner */ aligner = (function(core, util){ /** @private */ var callback; /** * @private * @param $ow */ function getZindex($ow) { return $ow .css("z-index"); } /** * 与えられたDOMオブジェクトが持つz-indexについて、指定された条件のものを返す。 * @private * @param formObj * @returns {object} max 最大のz-indexを返す。 * @returns {object} min 最小のz-indexを返す。 */ function getMaxZindex(formObj) { var zIndexArray = [], all$ow = core.get$ow("all"); for (var i = 0, l = all$ow.length; i < l; i++) { zIndexArray.push(getZindex(all$ow.eq(i))); } return { "max" : Math.max.apply(null, zIndexArray), "min" : Math.min.apply(null, zIndexArray) } } /** * z-indexを設定する。 * @private * @param $ow 整列させるラッパー要素 * @param val 加算もしくは代入する値 * @param method addの場合は加算、setの場合はその数値の代入とする。 */ function setZindex($ow, val, method) { var current = $ow.css("z-index")-0; switch (method) { case "add": $ow.css({ "z-index": current + val }); break; case "set": $ow.css({ "z-index": val }); break; }; } return { /** * 重なり順を判定し、クリックされたものを最前面に表示する。 * また、終了時に指定のコールバック処理を行う。 * @param formId * @param callback * @returns {object} this */ setFocus : function(formId, callback) { var i, l, $ow_rest, prevZindex, zIndex = {}; var focused = this.focusedFormId, clicked = formId, $ow = core.form[formId].get$ow(); // if selected window's id differs with previous active window... if (clicked !== focused) { zIndex = getMaxZindex.bind(this)(core.form); prevZindex = getZindex.bind(this)($ow); setZindex.bind(this)($ow, zIndex.max + 1, "set"); for (var restId in core.form) { $ow_rest = core.form[restId-0].get$ow(); if (getZindex.bind(this)($ow_rest) > prevZindex) { setZindex.bind(this)($ow_rest, -1, "add"); } } this.focusedFormId = clicked; callback.focusChanged(); core.callback.focusChanged(); } else { this.focusedFormId = clicked; core.callback.focusKeeped(); } return this; } } }(exp.core, exp.eutil)); exp.aligner = aligner; })(exp);
var McFly = require('mcfly'); var ol = require('openlayers'); var FeaturesFlux = require('./features.flux'); var Flux = new McFly(); var _map = new ol.Map({ view: new ol.View({ center: [0, 0], zoom: 4 }) }); var _source = {}, _draw; function getSource(){ return _source; } function addSource(sourceName,source){ if(!_source.hasOwnProperty(sourceName)){ _source[sourceName] = source; _map.addLayer = new ol.layer.Vector({ source: _source[sourceName] }); } } function setTarget (target){ _map.setTarget(target); } function stopDrawing() { if(_draw){ _map.removeInteraction(_draw); } } function startDrawing(drawType, sourceName){ console.log(drawType); stopDrawing(); if(drawType){ _draw = new ol.interaction.Draw({ source: _source[sourceName], type: drawType }); _draw.on('drawend', function (evt) { this.addFeatures({_id: Math.floor(Math.random()*1000000), coord: evt.feature.getGeometry().getCoordinates()}); }, FeaturesFlux.FeaturesActions); _map.addInteraction(_draw); } } MapStore = Flux.createStore({ getSource: function () { return _source; }, getMap: function (){ return _map; }, getDraw: function () { return _draw; } }, function (payload){ switch (payload.actionType) { case "ADD_SOURCE": addSource(payload.sourceName,payload.source); MapStore.emitChange(); break; case "SET_TARGET": setTarget(payload.target); MapStore.emitChange(); break; case "STARTDRAWING": startDrawing(payload.drawType, payload.sourceName); MapStore.emitChange(); break; case "STOPDRAWING": stopDrawing(); MapStore.emitChange(); break; } } ); exports.MapStore = MapStore; var MapActions = Flux.createActions({ addSource: function(sourceName, source){ // creates payload return { actionType: "ADD_SOURCE", sourceName: sourceName, source: source }; }, setTarget: function (target) { return { actionType: "SET_TARGET", target: target }; }, startDrawing: function (drawType,sourceName) { return { actionType: "STARTDRAWING", drawType: drawType, sourceName: sourceName }; }, stopDrawing: function () { return { actionType: "STOPDRAWING" }; } }); exports.MapActions = MapActions;
var BaseButton = require('./base'); /** Generic Backbone View for a button for removing an existing item */ module.exports = BaseButton.extend({ setClasses: function() { this.$el.addClass('btn-danger'); }, icon: 'remove' });
Crafty.c("TweenPromise", { init() { this.requires("Tween"); }, tweenPromise(...args) { return new Promise(resolve => { this.one("TweenEnd", () => resolve(this)); this.tween(...args); }); } });
var gulp = require('gulp'); var livereload = require('gulp-livereload') var uglify = require('gulp-uglifyjs'); var sass = require('gulp-sass'); var autoprefixer = require('gulp-autoprefixer'); var sourcemaps = require('gulp-sourcemaps'); var imagemin = require('gulp-imagemin'); var pngquant = require('imagemin-pngquant'); gulp.task('imagemin', function () { return gulp.src('./images/*') .pipe(imagemin({ progressive: true, svgoPlugins: [{removeViewBox: false}], use: [pngquant()] })) .pipe(gulp.dest('./images')); }); gulp.task('sass', function () { gulp.src('./sass/**/*.scss') .pipe(sourcemaps.init()) .pipe(sass({outputStyle: 'compressed'}).on('error', sass.logError)) .pipe(autoprefixer('last 2 version', 'safari 5', 'ie 7', 'ie 8', 'ie 9', 'opera 12.1', 'ios 6', 'android 4')) .pipe(sourcemaps.write('./')) .pipe(gulp.dest('./css')); }); gulp.task('uglify', function() { gulp.src('./lib/*.js') .pipe(uglify('main.js')) .pipe(gulp.dest('./js')) }); gulp.task('watch', function(){ livereload.listen(); gulp.watch('./sass/**/*.scss', ['sass']); gulp.watch('./lib/*.js', ['uglify']); gulp.watch(['./css/style.css', './**/*.php', './js/*.js'], function (files){ livereload.changed(files) }); });
"use strict"; let datafire = require('datafire'); let openapi = require('./openapi.json'); module.exports = datafire.Integration.fromOpenAPI(openapi, "mercedes_benz_configurator");
'use strict' module.exports = Graph var vtx = require('./vertex') var NIL = vtx.NIL var NUM_LANDMARKS = vtx.NUM_LANDMARKS var LANDMARK_DIST = vtx.LANDMARK_DIST function heuristic(tdist, tx, ty, node) { var nx = +node.x var ny = +node.y var pi = Math.abs(nx-tx) + Math.abs(ny-ty) var ndist = node.landmark for(var i=0; i<NUM_LANDMARKS; ++i) { pi = Math.max(pi, tdist[i]-ndist[i]) } return 1.0000009536743164 * pi } function Graph() { this.target = vtx.create(0,0) this.verts = [] this.freeList = this.target this.toVisit = NIL this.lastS = null this.lastT = null this.srcX = 0 this.srcY = 0 this.dstX = 0 this.dstY = 0 this.landmarks = [] this.landmarkDist = LANDMARK_DIST.slice() } var proto = Graph.prototype proto.vertex = function(x, y) { var v = vtx.create(x, y) this.verts.push(v) return v } proto.link = function(u, v) { vtx.link(u, v) } proto.setSourceAndTarget = function(sx, sy, tx, ty) { this.srcX = sx|0 this.srcY = sy|0 this.dstX = tx|0 this.dstY = ty|0 } //Mark vertex connected to source proto.addS = function(v) { if((v.state & 2) === 0) { v.heuristic = heuristic(this.landmarkDist, this.dstX, this.dstY, v) v.weight = Math.abs(this.srcX - v.x) + Math.abs(this.srcY - v.y) + v.heuristic v.state |= 2 v.pred = null this.toVisit = vtx.push(this.toVisit, v) this.freeList = vtx.insert(this.freeList, v) this.lastS = v } } //Mark vertex connected to target proto.addT = function(v) { if((v.state & 1) === 0) { v.state |= 1 this.freeList = vtx.insert(this.freeList, v) this.lastT = v //Update heuristic var d = Math.abs(v.x-this.dstX) + Math.abs(v.y-this.dstY) var vdist = v.landmark var tdist = this.landmarkDist for(var i=0; i<NUM_LANDMARKS; ++i) { tdist[i] = Math.min(tdist[i], vdist[i]+d) } } } //Retrieves the path from dst->src proto.getPath = function(out) { var prevX = this.dstX var prevY = this.dstY out.push(prevX, prevY) var head = this.target.pred while(head) { if(prevX !== head.x && prevY !== head.y) { out.push(head.x, prevY) } if(prevX !== head.x || prevY !== head.y) { out.push(head.x, head.y) } prevX = head.x prevY = head.y head = head.pred } if(prevX !== this.srcX && prevY !== this.srcY) { out.push(this.srcX, prevY) } if(prevX !== this.srcX || prevY !== this.srcY) { out.push(this.srcX, this.srcY) } return out } proto.findComponents = function() { var verts = this.verts var n = verts.length for(var i=0; i<n; ++i) { verts[i].component = -1 } var components = [] for(var i=0; i<n; ++i) { var root = verts[i] if(root.component >= 0) { continue } var label = components.length root.component = label var toVisit = [root] var ptr = 0 while(ptr < toVisit.length) { var v = toVisit[ptr++] var adj = v.edges for(var j=0; j<adj.length; ++j) { var u = adj[j] if(u.component >= 0) { continue } u.component = label toVisit.push(u) } } components.push(toVisit) } return components } //Find all landmarks function compareVert(a, b) { var d = a.x - b.x if(d) { return d } return a.y - b.y } //For each connected component compute a set of landmarks proto.findLandmarks = function(component) { component.sort(compareVert) var v = component[component.length>>>1] for(var k=0; k<NUM_LANDMARKS; ++k) { v.weight = 0.0 this.landmarks.push(v) for(var toVisit = v; toVisit !== NIL; ) { v = toVisit v.state = 2 toVisit = vtx.pop(toVisit) var w = v.weight var adj = v.edges for(var i=0; i<adj.length; ++i) { var u = adj[i] if(u.state === 2) { continue } var d = w + Math.abs(v.x-u.x) + Math.abs(v.y-u.y) if(u.state === 0) { u.state = 1 u.weight = d toVisit = vtx.push(toVisit, u) } else if(d < u.weight) { u.weight = d toVisit = vtx.decreaseKey(toVisit, u) } } } var farthestD = 0 for(var i=0; i<component.length; ++i) { var u = component[i] u.state = 0 u.landmark[k] = u.weight var s = Infinity for(var j=0; j<=k; ++j) { s = Math.min(s, u.landmark[j]) } if(s > farthestD) { v = u farthestD = s } } } } proto.init = function() { var components = this.findComponents() for(var i=0; i<components.length; ++i) { this.findLandmarks(components[i]) } } //Runs a* on the graph proto.search = function() { var target = this.target var freeList = this.freeList var tdist = this.landmarkDist //Initialize target properties var dist = Infinity //Test for case where S and T are disconnected if( this.lastS && this.lastT && this.lastS.component === this.lastT.component ) { var sx = +this.srcX var sy = +this.srcY var tx = +this.dstX var ty = +this.dstY for(var toVisit=this.toVisit; toVisit!==NIL; ) { var node = toVisit var nx = +node.x var ny = +node.y var d = Math.floor(node.weight - node.heuristic) if(node.state === 3) { //If node is connected to target, exit dist = d + Math.abs(tx-nx) + Math.abs(ty-ny) target.pred = node break } //Mark node closed node.state = 4 //Pop node from toVisit queue toVisit = vtx.pop(toVisit) var adj = node.edges var n = adj.length for(var i=0; i<n; ++i) { var v = adj[i] var state = v.state if(state === 4) { continue } var vd = d + Math.abs(nx-v.x) + Math.abs(ny-v.y) if(state < 2) { var vh = heuristic(tdist, tx, ty, v) v.state |= 2 v.heuristic = vh v.weight = vh + vd v.pred = node toVisit = vtx.push(toVisit, v) freeList = vtx.insert(freeList, v) } else { var vw = vd + v.heuristic if(vw < v.weight) { v.weight = vw v.pred = node toVisit = vtx.decreaseKey(toVisit, v) } } } } } //Clear the free list & priority queue vtx.clear(freeList) //Reset pointers this.freeList = target this.toVisit = NIL this.lastS = this.lastT = null //Reset landmark distance for(var i=0; i<NUM_LANDMARKS; ++i) { tdist[i] = Infinity } //Return target distance return dist }
angular .module('app') .factory('AuthService', ['User','$q', '$rootScope','$cookies', function(User, $q, $rootScope,$cookies) { function login(email, password) { return User .login({email: email, password: password}) .$promise .then(function(response) { console.log(response); $rootScope.currentUser = response.user; $cookies.put('accessToken',response.id); $cookies.put('user',JSON.stringify($rootScope.currentUser)); },function(reason){ console.log(reason); return $q.reject(reason); }); } function logout() { return User .logout() .$promise .then(function() { $rootScope.currentUser = null; $cookies.remove('user'); $cookies.remove('accessToken'); }); } function register(email, password,name,city) { return User .create({ email: email, password: password, name : name, city : city }) .$promise .then(function(response){ }, function(reason){ return $q.reject(reason); }); } function update(currentUser){ return User .updateAttributes(currentUser) .$promise .then(function(response){ console.log(response); },function(reason){ console.log(reason); return $q.reject(reason); }); } return { login: login, logout: logout, register: register, update : update }; }]);
/** * Module for interacting with and managing user defined apps. * @module kbox.app */ 'use strict'; // Intrinsic modules. var assert = require('assert'); var path = require('path'); // Npm modules. var _ = require('lodash'); var async = require('async'); var VError = require('verror'); // Kbox modules. var Promise = require('./promise.js'); var core = require('./core.js'); var engine = require('./engine.js'); var util = require('./util.js'); var helpers = util.helpers; var share = require('./share.js'); var disco = require('./app/discovery.js'); var kbox = require('./kbox.js'); var rmdir = require('rimraf'); /* * Some promisified globals. */ var fs = Promise.promisifyAll(require('fs')); // @todo: bcauldwell - Services should support promises. var services = require('./services.js'); /* * Pretty print an object. */ var pp = function(obj) { return JSON.stringify(obj, null, ' '); }; /* * Create an app component from an app component spec. */ var createComponent = function(app, name, componentSpec) { // Init component with component spec. var component = _.extend({}, componentSpec); // Name. component.name = name; // Hostname. component.hostname = [name, app.domain].join('.'); // App domain. component.appDomain = app.domain; // Url. component.url = 'http://' + component.hostname; // Data container name. component.dataContainerName = app.dataContainerName; // Container name. component.containerName = ['kb', app.name, name].join('_'); // Container ID file. var cName = component.containerName; component.containerIdFile = path.join(app.config.appCidsRoot, cName); // Container ID. component.containerId = component.containerName; // @todo: bcauldwell - I think container ID files can be done away with, but // if we keep them we should probably not use fs.exists. if (fs.existsSync(component.containerIdFile)) { component.containerId = fs.readFileSync(component.containerIdFile, 'utf8'); } // @todo: bcauldwell - @AUDIT if (component.image.build) { var pathsToSearch = [ app.config.appRoot, app.config.srcRoot ].map(function(dir) { return path.join(dir, 'dockerfiles', component.image.name, 'Dockerfile'); }); var rootPath = util.searchForPath(pathsToSearch); if (!rootPath) { component.image.build = false; } else { component.image.srcRoot = rootPath; } } return component; }; /* * Setup the app components for an app. */ var setupComponents = function(app) { // Make sure container ID directory exists. if (!fs.existsSync(app.config.appCidsRoot)) { fs.mkdirSync(app.config.appCidsRoot); } // Map config app components to app components. app.components = _.map(app.config.appComponents, function(component, name) { return createComponent(app, name, component); }); // Update the config app components. app.config.appComponents = app.components; }; /* * Load a plugin's apps. */ var loadPlugins = exports.loadPlugins = function(app, callback) { // Init plugins with plugin info from app config. if (!app.config.appPlugins) { app.plugins = []; } else { app.plugins = app.config.appPlugins; } // Map plugins with kbox require. return Promise.map(app.plugins, _.ary(kbox.require, 1)) // Return. .nodeify(callback); }; /** * Creates an app. * @static * @method * @arg {string} name - The name of the app. * @arg {object} config - An app config object. * @arg {function} callback - Callback function called when the app is created * @arg {error} callback.error - An error if any. * @arg {object} callback.app - The instantiated app object. * @prop {string} name - String name of the application. * @prop {string} domain - The domain name. -> appName.kbox * @prop {string} url - URL of the app. * @prop {string} dataContainerName - Name of the data component for the app. * @prop {string} appRoot - Root directory for the app. * @prop {object} config - The app's config object. * @prop {object<array>} plugins - List of the app's plugins. * @prop {object<array>} components - List of the app's components. * @example * kbox.app.create(config.appName, config, function(err, app) { * callback(err, app); * }); */ var create = exports.create = function(name, config, callback) { // Get provider. return engine.provider() // Create app. .then(function(provider) { // Init. var app = {}; // Name. app.name = name; // Domain. app.domain = [name, config.domain].join('.'); // Url. app.url = 'http://' + app.domain; // Data container name. app.dataContainerName = ['kb', app.name, 'data'].join('_'); // Root. app.root = config.appRoot; // Root bind. app.rootBind = provider.path2Bind4U(app.root); // Config. app.config = config; // Config home bind. app.config.homeBind = provider.path2Bind4U(app.config.home); // Setup app components. setupComponents(app); return app; }) // Return. .nodeify(callback); }; /** * Lists all the users apps known to Kalabox. * @static * @method * @arg {function} callback - Callback called when query for apps is complete. * @arg {error} callback.error * @arg {app<array>} callback.apps - Array of apps. * @example * kbox.app.list(function(err, apps) { * if (err) { * throw err; * } else { * apps.forEach(function(app) { * console.log(app.name); * }); * } * }); */ var list = exports.list = function(callback) { // Get list of app names. return disco.list() // Map list of app names to list of apps. .then(function(appNames) { return Promise.map(appNames, function(appName) { return disco.getAppDir(appName) .then(function(dir) { var config = core.config.getAppConfig(appName, dir); return create(appName, config); }); }) .all(); }) // Validate list of apps, look for duplicates. .tap(function(apps) { // Group apps by app names. var groups = _.groupBy(apps, function(app) { return app.name; }); // Find a set of duplicates. var duplicates = _.find(groups, function(group) { return group.length !== 1; }); // If a set of duplicates were found throw an error. if (duplicates) { throw new Error('Duplicate app names exist: ' + pp(duplicates)); } }) // Return. .nodeify(callback); }; /** * Get an app object from an app's name. * @static * @method * @arg {string} appName - App name for the app you want to get. * @arg {function} callback - Callback function called when the app is got. * @arg {error} callback.error - Error from getting the app. * @arg {app} callback.app - App object. * @example * kbox.app.get('myapp', function(err, app) { * if (err) { * throw err; * } else { * console.log(app.config); * } * }); */ var get = exports.get = function(appName, callback) { // Get list of apps. return list() // Find an app that matches the given app name. .then(function(apps) { var app = _.find(apps, function(app) { return app.name === appName; }); if (!app) { throw new Error('App "' + appName + '" does not exist.'); } return app; }) // Return. .nodeify(callback); }; /* * Get a list of an app's components. */ var getComponents = function(app) { // Get list of components. var components = _.toArray(app.components); // Remove data component. var data = _.remove(components, function(component) { if (component.name === 'data') { return component; } }); if (data.length === 1) { // Put data component at the head of the list. components.unshift(data[0]); } else if (data.length > 1) { // This should never happen. assert(data.length <= 1, 'Should never happen!'); } return components; }; /* * Returns true if any of the app's containers are running. */ var isRunning = exports.isRunning = function(app, callback) { return engine.listContainers(app.name) .reduce(function(acc, container) { return acc || engine.isRunning(container.id); }, false) .nodeify(callback); }; /* * Returns true if any of the app's containers are installed. */ var isInstalled = exports.isInstalled = function(app, callback) { return engine.listContainers(app.name) .then(function(containers) { return !!containers.length; }); }; /* * Uninstall a component. */ var uninstallComponent = function(component, callback) { // Emit pre event. return core.events.emit('pre-uninstall-component', component) // Uninstall container. .then(function() { return engine.remove(component.containerName); }) // Remove the container id file. .then(function() { return fs.unlinkAsync(component.containerIdFile) // Ignore ENOENT errors (file doesn't exist). .catch(function(err) { if (err.code !== 'ENOENT') { throw err; } }); }) // Emit post event. .then(function() { return core.events.emit('post-uninstall-component', component); }) // Return. .nodeify(callback); }; /** * Uninstalls an app's components except for the data container. * @static * @method * @arg {object} app - App object you want to uninstall. * @arg {function} callback - Callback called when the app has been uninstalled. * @arg {array} callback.errors - Array of errors from uninstalling components. * @example * kbox.app.uninstall(app, function(err) { * if (err) { * throw err; * } else { * console.log('App uninstalled.'); * } * }); */ var uninstall = exports.uninstall = function(app, callback) { // Report to metrics. return Promise.try(function() { return kbox.metrics.reportAction('uninstall'); }) // Emit pre event. .then(function() { return core.events.emit('pre-uninstall', app); }) // Stop components. .then(function() { return Promise.resolve(getComponents(app)) // Filter out components that don't exist. .filter(function(component) { return engine.containerExists(component.containerName); }) .map(_.ary(uninstallComponent, 1), {concurrency: 1}) .all(); }) // Emit post event. .then(function() { return core.events.emit('post-uninstall', app); }) // Return. .nodeify(callback); }; /* * Returns an array of orphaned container components */ var getOrphanedContainers = function(appName) { // Get CID directory var cidDir = path.join(core.deps.get('globalConfig').sysConfRoot, 'appcids'); // Get cid files for the given appName return Promise.filter(fs.readdirSync(cidDir), function(cid) { return _.includes(cid, appName); }) // Return array of orphaned components for this app .map(function(container) { return { containerName: container, containerIdFile: path.join(cidDir, container), containerId: fs.readFileSync(path.join(cidDir, container), 'utf8') }; }); }; /** * Attempts to clean up corrupted apps. This will compare the appRegistry * with kbox.list to determine apps that may have orphaned containers. If * those apps do have orphaned containers then we remove those containers * and finally the corrupted app from the appRegisty. * @static * @method * @arg {function} callback - Callback called when the app has been rebuilt. * @arg {array} callback.errors - Error from cleaning app. * @example * kbox.app.clean(function(errs) { * if (err) { * throw err; * } else { * console.log('PURIFICATION COMPLETE!'); * } * }); */ var cleanup = exports.cleanup = function(callback) { /* * Get appnames from appRegistry */ var appNamesFromAppReg = function() { return Promise.map(disco.getDirsAppRegistry(), function(appDir) { return _.last(appDir.split(path.sep)); }); }; /* * Get appnames from kbox.app.list */ var appNamesFromAppList = function() { return Promise.map(list(), function(app) { return app.name; }); }; core.log.debug('APP CLEANUP => STARTING'); // Grab apps from the app registry and also from kbox.app.list so // we can compare them return Promise.all([ appNamesFromAppReg(), appNamesFromAppList() ]) // Determine what apps might be orphaned .spread(function(a, b) { return _.difference(a, b); }) // Do the cleanup on each app .each(function(appName) { // See if our app has orphaned containers return getOrphanedContainers(appName) // If it does do the cleanup .each(function(component) { core.log.debug('WARNING! ORPHANED CONTAINER DETECTED => REMOVING...'); // Check if our container actually exists, we might have a stale cidfile return engine.containerExists(component.containerId) // If it exists remove the container, if it doesnt just // delete the stale cidfile .then(function(exists) { if (exists) { // Check if container is running return engine.isRunning(component.containerId) // Stop the container if it is running .then(function(isRunning) { if (isRunning) { return engine.stop(component.containerId); } }) // Uninstall the orphaned component .then(function() { return uninstallComponent(component); }); } else { return fs.unlinkAsync(component.containerIdFile); } }); }) // Get the appRegistry .then(function() { return disco.getDirsAppRegistry(); }) // Filter out the correct dir for this app .filter(function(dir) { return _.last(dir.split(path.sep)) === appName; }) // Remove the directory from teh appRegistry .then(function(dir) { return disco.removeAppDir(dir[0]); }); }) // Inform the user .then(function() { core.log.debug('APP CLEANUP => COMPLETE'); }) // Return. .nodeify(callback); }; /* * Get install options object for a given app component. */ var getInstallOptions = function(app, component) { // Default options. // @todo: bcauldwell - This should be made generic, and not docker specific. var opts = { Hostname: component.hostname, name: component.containerName, Image: component.image.name }; // If app has a data container, add a volume mount. if (component.dataContainerName) { opts.HostConfig = {VolumesFrom:[component.dataContainerName]}; } // Extend default options with component's install options. return _.extend(opts, component.installOptions); }; /* * Install a component. */ var installComponent = function(app, component, callback) { // Get component install options. component.installOptions = getInstallOptions(app, component); // Emit pre event. return core.events.emit('pre-install-component', component) // Build image. .then(function() { return engine.build(component.image) .catch(function(err) { throw new VError(err, 'Build failure.'); }); }) // Create container. .then(function() { return engine.create(component.installOptions) .catch(function(err) { throw new VError(err, 'Create failure.'); }); }) // Write cid file. .then(function(container) { if (container) { component.containerId = container.cid; var filepath = path.resolve(component.containerIdFile); return fs.writeFileAsync(filepath, container.cid); } }) // Emit post event. .then(function() { return core.events.emit('post-install-component', component); }) .catch(function(err) { throw new VError(err, 'Error while installing component: %s', component.containerName ); }) // Return. .nodeify(callback); }; /** * Installs an app's components. * @static * @method * @arg {object} app - App object you want to install. * @arg {function} callback - Callback called when the app has been installed. * @arg {array} callback.errors - Array of errors from installing components. * @example * kbox.app.install(app, function(errs) { * if (errs) { * throw errs; * } else { * console.log('App installed.'); * } * }); */ var install = exports.install = function(app, callback) { // Verify services are in a good state. return services.verify() // Report to metrics. .then(function() { return kbox.metrics.reportAction('install'); }) // Make sure we are in a clean place before we get dirty .then(function() { return cleanup(); }) // Emit pre event. .then(function() { return core.events.emit('pre-install', app); }) // Add app to app registry. .then(function() { return disco.registerAppDir(app.config.appRoot); }) // Install components. // @todo: bcauldwell - Need to revisit what happens when a component install // throws and error. .then(function() { // Get components. return Promise.resolve(getComponents(app)) // Filter out data if it exists, throw error if non data component exists. .filter(function(component) { // Find out if container exists. return engine.containerExists(component.containerId) .then(function(containerExists) { if (!containerExists) { // Container does not exist, so install it. return true; } else if (component.name === 'data') { // Data container already exists so don't install it again. return false; } else { // A non data container already exists, throw an error. throw new Error('Container already exists: ' + component.containerName); } }); }) // Install components one at a time. .map(function(component) { return installComponent(app, component); }, {concurrency: 1}); }) // Emit post event. .then(function() { return core.events.emit('post-install', app); }) // Wrap errors. .catch(function(err) { throw new VError(err, 'Error while installing app: ' + pp(app.name)); }) // Return. .nodeify(callback); }; /* * Get start options object for a given component. */ var getStartOptions = function(app, component, opts) { // Default options. var defaults = { PublishAllPorts: true, Binds: [app.rootBind + ':/src:rw'] }; return _.extend(defaults, opts); }; /* * Start a component. */ var startComponent = function(app, component, callback) { // Get component's start options. component.opts = getStartOptions(app, component); // Emit pre event. return core.events.emit('pre-start-component', component) // Start component. .then(function() { return engine.start(component.containerId, component.opts); }) // Emit post event. .then(function() { return core.events.emit('post-start-component', component); }) // Return. .nodeify(callback); }; /** * Starts an app's components. * @static * @method * @arg {object} app - App object you want to start. * @arg {function} callback - Callback called when the app has been started. * @arg {array} callback.errors - Array of errors from starting components. * @example * kbox.app.start(app, function(errs) { * if (errs) { * throw errs; * } else { * console.log('App started.'); * } * }); */ var start = exports.start = function(app, callback) { // Verify services are in a good state. return services.verify() // Report to metrics. .then(function() { return kbox.metrics.reportAction('start'); }) // Make sure we are in a clean place before we get dirty .then(function() { return cleanup(); }) // Emit pre event. .then(function() { return core.events.emit('pre-start', app); }) // Start components. // @todo: bcauldwell - We need to revisit what should happen if starting a // component results in an error. .then(function() { return getComponents(app); }) .map(function(component) { return startComponent(app, component); }, {concurrency: 1}) // Emit post event. .then(function() { return core.events.emit('post-start', app); }) // Return. .nodeify(callback); }; /* * Stop a component. */ var stopComponent = function(component, callback) { // Emit pre event. return core.events.emit('pre-stop-component', component) // Stop container. .then(function() { return engine.stop(component.containerId); }) // Emit post event. .then(function() { return core.events.emit('post-stop-component', component); }) // Return. .nodeify(callback); }; /** * Stops an app's components and turn off the engine if there aren't * any other apps running. * @static * @method * @arg {object} app - App object you want to stop. * @arg {function} callback - Callback called when the app has been stopped. * @arg {array} callback.errors - Array of errors from stopping components. * @example * kbox.app.stop(app, function(errs) { * if (errs) { * throw errs; * } else { * console.log('App stopped.'); * } * }); */ var stop = exports.stop = function(app, callback) { // Verify services are in a good state. return services.verify() // Report to metrics. .then(function() { return kbox.metrics.reportAction('stop'); }) // Make sure we are in a clean place before we get dirty .then(function() { return cleanup(); }) // Emit pre event. .then(function() { return core.events.emit('pre-stop', app); }) // Stop components. // @todo: bcauldwell - We need to revisit what happens when stopping a // container throws an error. .then(function() { return Promise.resolve(getComponents(app)) // Filter out components that don't exist. .filter(function(component) { return engine.containerExists(component.containerId); }) .map(_.ary(stopComponent, 1), {concurrency: 1}) .all(); }) // Emit post event. .then(function() { return core.events.emit('post-stop', app); }) // Return. .nodeify(callback); }; /** * Stops and then starts an app's components. * @static * @method * @arg {object} app - App object you want to restart. * @arg {function} callback - Callback called when the app has been restarted. * @arg {array} callback.errors - Array of errors from restarting components. * @example * kbox.app.restart(app, function(errs) { * if (errs) { * throw errs; * } else { * console.log('App Restarted.'); * } * }); */ var restart = exports.restart = function(app, callback) { // Stop app. return stop(app) // Start app. .then(function() { return start(app); }) // Return. .nodeify(callback); }; /** * Uninstalls an app's components including the data container, and removes * the app's code directory. * @static * @method * @arg {object} app - App object you want to uninstall. * @arg {function} callback - Callback called when the app has been uninstalled. * @arg {array} callback.errors - Array of errors from uninstalling components. * @example * kbox.app.destroy(app, function(err) { * if (err) { * throw err; * } else { * console.log('App destroyed.'); * } * }); */ var destroy = exports.destroy = function(app, callback) { // Report to metrics. return Promise.try(function() { return kbox.metrics.reportAction('destroy'); }) // Emit pre event. .then(function() { return core.events.emit('pre-destroy', app); }) // Make sure app is stopped. .then(function() { return isRunning(app) .then(function(isRunning) { if (isRunning) { return stop(app); } }); }) // Remove the data container. .then(function() { var dataName = ['kb', app.name, 'data'].join('_'); var dataContainerIdFile = path.join(app.config.appCidsRoot, dataName); // Try to read file. return Promise.fromNode(function(cb) { fs.readFile(dataContainerIdFile, 'utf8', cb); }) // Return null if file doesn't exist. .catch(function(err) { if (err.code === 'ENOENT') { return null; } else { throw err; } }) // If the container id was read successfully, remove the container. .then(function(containerId) { if (containerId) { return Promise.fromNode(function(cb) { fs.unlink(dataContainerIdFile, cb); }) .then(function() { return engine.remove(containerId); }); } }); }) // Uninstall app. .then(function() { return uninstall(app); }) // Remove the app directory. .then(function() { return Promise.fromNode(function(cb) { rmdir(app.root, cb); }); }) // Remove from appRegistry .then(function() { return disco.removeAppDir(app.root); }) // Emit post event. .then(function() { return core.events.emit('post-destroy', app); }) // DESTRUCTION COMPLETE .then(function() { console.log(kbox.art.postDestroy()); }) // Return. .nodeify(callback); }; /** * Rebuilds an apps containers. This will stop an app's containers, remove all * of them except the data container, pull down the latest versions of the * containers as specified in the app's kalabox.json. You will need to run * `kbox start` when done to restart your app. * @static * @method * @arg {object} app - App object you want to rebuild. * @arg {function} callback - Callback called when the app has been rebuilt. * @arg {array} callback.errors - Error from rebuilding components. * @example * kbox.app.rebuild(app, function(errs) { * if (err) { * throw err; * } else { * console.log('App rebuilt!.'); * } * }); */ var rebuild = exports.rebuild = function(app, callback) { // Stop app. return stop(app) // Uninstall app. .then(function() { return uninstall(app); }) // Install app. .then(function() { return install(app); }) // Return. .nodeify(callback); };
import React from 'react'; import { shallow } from 'enzyme'; import IcelandSelect from '../src/components/IcelandSelect'; import en from '../src/i18n/en'; describe('DenmarkSelect', () => { let wrapper; const onChange = jest.fn(); const context = { language: en }; describe('showProvince prop is false', () => { beforeEach(() => { wrapper = shallow(<IcelandSelect showProvince={false} onChange={onChange} />, { context }, ); }); it('should be defined', () => { expect(wrapper).toBeDefined(); }); it('should render nothing', () => { expect(wrapper.find('select').length).toBe(0); }); }); describe('showProvince prop is true', () => { beforeEach(() => { wrapper = shallow(<IcelandSelect onChange={onChange} showProvince />, { context }, ); }); it('should render', () => { expect(wrapper.find('select').length).toBe(1); }); it('should have options', () => { expect(wrapper.find('option').length).toBeGreaterThan(0); }); describe('user change option', () => { wrapper = shallow(<IcelandSelect onChange={onChange} showProvince />, { context }, ); const input = wrapper.find('select').first(); const value = 'arnessysla'; beforeEach(() => { input.simulate('change', { target: { value }, }); }); it('prop onChange should be called', () => { const calls = onChange.mock.calls.length; expect(calls).toBe(1); }); }); }); });
// @flow import React from 'react'; import { FormLabel, FormControl, FormControlLabel } from 'material-ui/Form'; import Radio, { RadioGroup } from 'material-ui/Radio'; export default function RadioGroupWithLabelRequired() { return ( <FormControl style={{ width: 100 }} required> <FormLabel>Location</FormLabel> <RadioGroup selectedValue="home"> <FormControlLabel value="home" control={<Radio />} label="Home" /> <FormControlLabel value="work" control={<Radio />} label="Work" /> </RadioGroup> </FormControl> ); }
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _jsx2 = _interopRequireDefault(require("@babel/runtime/helpers/builtin/jsx")); var _react = _interopRequireDefault(require("react")); var _propTypes = _interopRequireDefault(require("prop-types")); var _withProps = _interopRequireDefault(require("recompose/withProps")); var _reactI18next = require("react-i18next"); var _Table = _interopRequireDefault(require("@material-ui/core/Table")); var _TableBody = _interopRequireDefault(require("@material-ui/core/TableBody")); var _TableHead = _interopRequireDefault(require("@material-ui/core/TableHead")); var _TableRow = _interopRequireDefault(require("@material-ui/core/TableRow")); var _TableCell = _interopRequireDefault(require("@material-ui/core/TableCell")); var _Row = _interopRequireDefault(require("./Row")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var enhance = (0, _reactI18next.translate)(); var Header = (0, _withProps.default)({ style: { background: '#9d2053', padding: '12px 24px', lineHeight: '35px' } })('div'); var Filter = (0, _withProps.default)({ style: { background: '#631032', color: '#ffffff', border: 0, marginLeft: 12, paddingLeft: 12, height: 35 }, type: 'text' })('input'); var _ref2 = /*#__PURE__*/ (0, _jsx2.default)("span", {}, void 0, "Managing Bans:"); var _ref3 = /*#__PURE__*/ (0, _jsx2.default)(Filter, {}); var _ref4 = /*#__PURE__*/ (0, _jsx2.default)(_TableCell.default, {}); var BansList = function BansList(_ref) { var t = _ref.t, bans = _ref.bans, _onUnbanUser = _ref.onUnbanUser; return (0, _jsx2.default)(_react.default.Fragment, {}, void 0, (0, _jsx2.default)(Header, {}, void 0, _ref2, (0, _jsx2.default)("span", { style: { float: 'right' } }, void 0, "Filter User:", _ref3)), (0, _jsx2.default)(_Table.default, {}, void 0, (0, _jsx2.default)(_TableHead.default, {}, void 0, (0, _jsx2.default)(_TableRow.default, {}, void 0, _ref4, (0, _jsx2.default)(_TableCell.default, {}, void 0, t('admin.bans.user')), (0, _jsx2.default)(_TableCell.default, {}, void 0, t('admin.bans.duration')), (0, _jsx2.default)(_TableCell.default, {}, void 0, t('admin.bans.reason')), (0, _jsx2.default)(_TableCell.default, {}, void 0, t('admin.bans.bannedBy')), (0, _jsx2.default)(_TableCell.default, {}, void 0, t('admin.bans.actions')))), (0, _jsx2.default)(_TableBody.default, {}, void 0, bans.map(function (ban) { return (0, _jsx2.default)(_Row.default, { ban: ban, onUnbanUser: function onUnbanUser() { return _onUnbanUser(ban.user); } }, ban.user._id); })))); }; BansList.propTypes = process.env.NODE_ENV !== "production" ? { t: _propTypes.default.func.isRequired, bans: _propTypes.default.array.isRequired, onUnbanUser: _propTypes.default.func.isRequired } : {}; var _default = enhance(BansList); exports.default = _default; //# sourceMappingURL=index.js.map
/** * Home app controller */ 'use strict'; angular.module('uql.home') .controller('HomeMainCtrl', ['$rootScope', '$scope', '$log', '$state', 'UQL_CONFIG_HOME', 'accountPromise', 'HomeService', function ($rootScope, $scope, $log, $state, UQL_CONFIG_LIAISON, accountPromise, HomeService) { $scope.$state = $state; $scope.homeService = HomeService; $scope.user = accountPromise; $scope.computerAvailability = []; $scope.facilitiesAvailability = []; $scope.facilitiesSearchResult = []; $scope.recommended = [1, 2, 3, 4, 5, 6, 7, 8]; $scope.hotArticles = [1, 2, 3, 4, 5, 6, 7, 8]; $scope.recentlyAdded = [1, 2, 3, 4, 5, 6, 7, 8]; $scope.recentlyAddedDisciplines = []; $scope.form = { type: 'Group', location: '' }; $scope.filter = { hot_articles_subjects: 'LibraryNInformationScience', recently_added_disciplines: 'library & information science' }; $scope.facilitiesSearch = function () { $scope.facilitiesSearchResult = $scope.facilitiesAvailability.filter(function (a) { if ($scope.form.type) { a.resources = a.resources.filter(function (b) { return (b.schedule.title.indexOf($scope.form.type) === 0); }); } if ($scope.form.location) { return (a.title.indexOf($scope.form.location) === 0); } return true; }); }; $scope.$watch('filter.hot_articles_subjects', function (newValue, oldValue) { if (newValue !== null && typeof newValue !== 'undefined' && newValue !== oldValue) { $scope.hotArticles.loading = true; $scope.homeService.getHotArticles(newValue) .then(function (data) { $scope.hotArticles = data; }); } }); $scope.$watch('filter.recently_added_disciplines', function (newValue, oldValue) { if (newValue !== null && typeof newValue !== 'undefined' && newValue !== oldValue) { $scope.recentlyAdded.loading = true; $scope.homeService.getRecentlyAdded(newValue) .then(function (data) { $scope.recentlyAdded = data; }); } }); $scope.init = function () { $scope.homeService.getComputerAvailability() .then(function (data) { $scope.computerAvailability = data; }); $scope.homeService.getFacilitiesAvailability($scope.user) .then(function (data) { $scope.facilitiesAvailability = data; }); $scope.hotArticles.loading = true; $scope.homeService.getHotArticles($scope.filter.hot_articles_subjects) .then(function (data) { $scope.hotArticles = data; }); $scope.recentlyAdded.loading = true; $scope.homeService.getRecentlyAdded($scope.filter.recently_added_disciplines) .then(function (data) { $scope.recentlyAdded = data; }); $scope.homeService.getRecentlyAddedDisciplines() .then(function (data) { $scope.recentlyAddedDisciplines = data; }); }; $scope.init(); }]);
CRMWebAPI.prototype.GetOptionSetByName = function (optionSetName) { var self = this; return new Promise(function (resolve, reject) { self.GetList('GlobalOptionSetDefinitions', {Select:['Name']}).then( function (r) { r.List.forEach(function(set) { if (set.Name == optionSetName) { self.Get('GlobalOptionSetDefinitions',set.MetadataId).then( function(res){ resolve(res); },function(err){console.log(err)} ) } } ) }, function(e){ console.log(e) reject(e) }) }); }; CRMWebAPI.prototype.GetOptionSetUserLabels = function (optionSetName) { var self = this; return new Promise(function (resolve, reject) { self.GetOptionSetByName(optionSetName).then( function (result) { var displayList = new Array(); result.Options.forEach(function (option) { var displayOption = new Object; displayOption.Value = option.Value; displayOption.Label = option.Label.UserLocalizedLabel.Label; displayList.push(displayOption); }); resolve(displayList); } , function (err) { console.log(err) reject(err); } ); }); } CRMWebAPI.prototype.GetEntityDisplayNameList = function (LCID) { var self = this; return new Promise(function (resolve, reject) { self.GetList('EntityDefinitions', {Filter:'IsPrivate eq false',Select:['MetadataId','EntitySetName','DisplayName', 'DisplayCollectionName','LogicalName','LogicalCollectionName','PrimaryIdAttribute']}).then( function (r) { var list = new Array(); r.List.forEach(function(entity) { var edm = new Object(); edm.MetadataId = entity.MetadataId; edm.EntitySetName = entity.EntitySetName; edm.LogicalName = entity.LogicalName; edm.LogicalCollectionName = entity.LogicalCollectionName; edm.PrimaryIdAttribute = entity.PrimaryIdAttribute; if ((entity.DisplayName.LocalizedLabels != null) && (entity.DisplayName.LocalizedLabels.length > 0)) { edm.DisplayName = entity.DisplayName.LocalizedLabels[0].Label; if (LCID != null) entity.DisplayName.LocalizedLabels.forEach(function (label) { if (label.LanguageCode == LCID) edm.DisplayName = label.Label}); } else edm.DisplayName = edm.LogicalName; if ((entity.DisplayCollectionName.LocalizedLabels != null) && (entity.DisplayCollectionName.LocalizedLabels.length > 0)) { edm.DisplayCollectionName = entity.DisplayCollectionName.LocalizedLabels[0].Label; if (LCID != null) entity.DisplayCollectionName.LocalizedLabels.forEach(function (label) { if (label.LanguageCode == LCID) edm.DisplayCollectionName = label.Label}); } else edm.DisplayCollectionName = entity.LogicalCollectionName; edm.LogicalDisplayName = edm.DisplayName +'(' + edm.LogicalName + ')' edm.LogicalDisplayCollectionName = edm.DisplayCollectionName +'(' + edm.LogicalCollectionName + ')' list.push(edm); } ) resolve(list); }, function(e){ console.log(e) reject(e) }) }); }; CRMWebAPI.prototype.GetAttributeDisplayNameList = function (entityID,LCID) { var self = this; return new Promise(function (resolve, reject) { self.GetList('EntityDefinitions('+ entityID.toString() + ')/Attributes', {Select:['MetadataId','DisplayName','LogicalName','AttributeType','IsPrimaryId']}).then( function (r) { var list = new Array(); r.List.forEach(function(attrib) { var edm = new Object(); edm.MetadataId = attrib.MetadataId; edm.LogicalName = attrib.LogicalName; edm.IsPrimaryId = attrib.IsPrimaryId; if ((attrib.DisplayName.LocalizedLabels != null) && (attrib.DisplayName.LocalizedLabels.length > 0)) { edm.DisplayName = attrib.DisplayName.LocalizedLabels[0].Label; if (LCID != null) attrib.DisplayName.LocalizedLabels.forEach(function (label) { if (label.LanguageCode == LCID) edm.DisplayName = label.Label}); } else edm.DisplayName = edm.LogicalName; edm.LogicalDisplayName = edm.DisplayName +'(' + edm.LogicalName + ')' list.push(edm); } ) resolve(list); }, function(e){ console.log(e) reject(e) }) }); };
var createContext = require('./util/create-context') var createREGL = require('../../regl') var tape = require('tape') tape('framebuffer - ref counting', function (t) { var gl = createContext(16, 16) var regl = createREGL(gl) var simpleFBO = regl.framebuffer(5, 5) t.equals(regl.stats.textureCount, 1, 'texture count ok') t.equals(regl.stats.renderbufferCount, 1, 'renderbuffer count ok') t.equals(regl.stats.framebufferCount, 1, 'framebuffer count ok') simpleFBO.destroy() t.equals(regl.stats.textureCount, 0, 'destroy texture ok') t.equals(regl.stats.renderbufferCount, 0, 'destroy renderbuffer ok') t.equals(regl.stats.framebufferCount, 0, 'destroy framebuffer ok') t.throws(function () { simpleFBO.destroy() }, null, 'double destroying an fbo throws') // now reuse a renderbuffer var rb = regl.renderbuffer(5) t.equals(regl.stats.renderbufferCount, 1, 'renderbuffer count ok') var fbo = regl.framebuffer({ color: rb }) t.equals(regl.stats.textureCount, 0, 'no new textures created') t.equals(regl.stats.renderbufferCount, 2, 'exactly one depth buffer created') t.equals(regl.stats.framebufferCount, 1, 'framebuffer count ok') fbo.destroy() t.equals(regl.stats.textureCount, 0, 'texture count ok') t.equals(regl.stats.renderbufferCount, 1, 'renderbuffer count ok') t.equals(regl.stats.framebufferCount, 0, 'framebuffer count ok') rb.destroy() t.equals(regl.stats.renderbufferCount, 0, 'destroy success') // try reinitializing a framebuffer var fbo2 = regl.framebuffer(5) t.equals(regl.stats.textureCount, 1, 'texture count ok') t.equals(regl.stats.renderbufferCount, 1, 'renderbuffer count ok') t.equals(regl.stats.framebufferCount, 1, 'framebuffer count ok') fbo2({ color: regl.renderbuffer(5) }) t.equals(regl.stats.textureCount, 0, 'texture count ok') t.equals(regl.stats.renderbufferCount, 2, 'renderbuffer count ok') t.equals(regl.stats.framebufferCount, 1, 'framebuffer count ok') fbo2.destroy() t.equals(regl.stats.textureCount, 0, 'texture count ok') t.equals(regl.stats.renderbufferCount, 1, 'renderbuffer count ok') t.equals(regl.stats.framebufferCount, 0, 'framebuffer count ok') // TODO: test for cubic FBOs. regl.destroy() t.equals(gl.getError(), 0, 'error ok') createContext.destroy(gl) t.end() })
/* Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ CKEDITOR.plugins.setLang( 'forms', 'nl', { button: { title: 'Eigenschappen knop', text: 'Tekst (waarde)', type: 'Soort', typeBtn: 'Knop', typeSbm: 'Versturen', typeRst: 'Leegmaken' }, checkboxAndRadio: { checkboxTitle: 'Eigenschappen aanvinkvakje', radioTitle: 'Eigenschappen selectievakje', value: 'Waarde', selected: 'Geselecteerd', required: 'Vereist' }, form: { title: 'Eigenschappen formulier', menu: 'Eigenschappen formulier', action: 'Actie', method: 'Methode', encoding: 'Codering' }, hidden: { title: 'Eigenschappen verborgen veld', name: 'Naam', value: 'Waarde' }, select: { title: 'Eigenschappen selectieveld', selectInfo: 'Informatie', opAvail: 'Beschikbare opties', value: 'Waarde', size: 'Grootte', lines: 'Regels', chkMulti: 'Gecombineerde selecties toestaan', required: 'Vereist', opText: 'Tekst', opValue: 'Waarde', btnAdd: 'Toevoegen', btnModify: 'Wijzigen', btnUp: 'Omhoog', btnDown: 'Omlaag', btnSetValue: 'Als geselecteerde waarde instellen', btnDelete: 'Verwijderen' }, textarea: { title: 'Eigenschappen tekstvak', cols: 'Kolommen', rows: 'Rijen' }, textfield: { title: 'Eigenschappen tekstveld', name: 'Naam', value: 'Waarde', charWidth: 'Breedte (tekens)', maxChars: 'Maximum aantal tekens', required: 'Vereist', type: 'Soort', typeText: 'Tekst', typePass: 'Wachtwoord', typeEmail: 'E-mail', typeSearch: 'Zoeken', typeTel: 'Telefoonnummer', typeUrl: 'URL' } } );
/** * Currencies Methods */ Meteor.methods({ "currency/create": function(currency){ console.log(`Currency details: ${JSON.stringify(currency)}`) if (!this.userId) { throw new Meteor.Error(401, "Unauthorized"); } try { check(currency, Core.Schemas.Currency); } catch (e) { console.log(e); throw new Meteor.Error(401, "There's invalid data in the currency. Please correct and retry"); } this.unblock(); let numberOfCurrencyWithSameCode = Currencies.find({code: currency.code, period: currency.period}).count(); if(numberOfCurrencyWithSameCode > 0) { let errMsg = "Sorry, that currency can't be created because it already exists for that period."; throw new Meteor.Error(409, errMsg); } else { console.log("About to insert"); let newCurrencyId = Currencies.insert(currency); return {_id: newCurrencyId}; } }, "currency/delete": function(id){ if(!this.userId){ throw new Meteor.Error(401, "Unauthorized"); } Currencies.remove({_id: id}); }, "currency/deleteCurrencyForPeriod": function(currencyCode, period, businessId){ if(!this.userId){ throw new Meteor.Error(401, "Unauthorized"); } Currencies.remove({code: currencyCode, period: period, businessId: businessId}); return true; }, "currency/update": function(id, details){ if(!this.userId){ throw new Meteor.Error(401, "Unauthorized"); } //update can only be done by authorized user. so check permission check(id, String); const selector = { _id: id }; const result = Currencies.update(selector, {$set: details} ); return result; } });
var request = new XMLHttpRequest(), countAction = (typeof(countEverything) !== "undefined" ? countEverything.countAction : aliqtisadi.countAction), postID = (typeof(countEverything) !== "undefined" ? countEverything.postID : aliqtisadi.postID), ajaxurl = (typeof(countEverything) !== "undefined" ? countEverything.ajaxurl : aliqtisadi.ajaxurl); var data = "action=" + countAction + "&post_id=" + postID; request.open('POST', ajaxurl, true); request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8', true); request.send(data);
export { default } from 'ember-fountainhead/components/fountainhead-pages/api';
exports.init = function(app) { console.log("AP mode (sloppy quorum)"); var quorum = require('./quorum_api.js'); app.post("/quorum/propose", quorum.propose); app.post("/quorum/commit/:id", quorum.commit); app.post("/quorum/rollback/:id", quorum.rollback); app.get("/quorum/read/:key", quorum.read); app.post("/quorum/repair", quorum.repair); } exports.store = function(app) { return require('./store.js'); }
import React from 'react'; import addons from '@storybook/addons'; import WithIntl from './containers/WithIntl'; import { EVENT_SET_CONFIG_ID } from '../shared'; import { omit } from '../utils'; export let _config = null; export const setIntlConfig = (config) => { _config = config; const channel = addons.getChannel(); channel.emit(EVENT_SET_CONFIG_ID, { locales: config.locales, defaultLocale: config.defaultLocale }); }; export const withIntl = (story) => { const channel = addons.getChannel(); const intlConfig = omit(_config, ['locales', 'getMessages', 'getFormats']); return ( <WithIntl intlConfig={intlConfig} locales={_config.locales} getMessages={_config.getMessages} getFormats={_config.getFormats} channel={channel}> {story()} </WithIntl> ); };
var path = require('path'); var webpack = require('webpack'); module.exports = { devtool: 'eval', entry: [ 'webpack-dev-server/client?http://localhost:3000/', 'webpack/hot/only-dev-server', './app/index' ], output: { path: path.join(__dirname, 'static'), filename: 'bundle.js', publicPath: '/static/' }, plugins: [ new webpack.HotModuleReplacementPlugin(), new webpack.NoErrorsPlugin() ], resolve: { extensions: ['', '.js'] }, module: { loaders: [{ test: /\.js$/, loaders: ['react-hot', 'babel'], exclude: /node_modules/ }, { test: /\.sass$/, loader: 'style!css!sass?indentedSyntax&sourceMap' }] } };
import {Button} from 'widget/button' import {ColorElement} from 'widget/colorElement' import {DraggableList} from 'widget/draggableList' import {Layout} from 'widget/layout' import {NoData} from 'widget/noData' import {PalettePreSets} from './palettePreSets' import {Textarea} from 'widget/input' import {Widget} from 'widget/widget' import {msg} from 'translate' import Color from 'color' import PropTypes from 'prop-types' import React from 'react' import guid from 'guid' import styles from './palette.module.css' export class Palette extends React.Component { ref = React.createRef() state = { text: null, edit: null, showTextInput: false } constructor(props) { super(props) this.applyPreset = this.applyPreset.bind(this) } render() { const {showTextInput} = this.state return ( <Layout type='vertical'> <Widget label={msg('map.visParams.form.palette.label')} tooltip={msg('map.visParams.form.palette.tooltip')} labelButtons={[ this.renderInputModeButton() ]} spacing='compact' > {this.renderPalette()} {showTextInput ? this.renderTextInput() : null} <PalettePreSets onSelect={this.applyPreset} count={20} /> </Widget> </Layout> ) } renderTextInput() { const {text} = this.state return ( <Textarea value={text} placeholder={msg('map.visParams.form.palette.text.placeholder')} minRows={3} maxRows={3} onChange={({target: {value}}) => this.updateText(value)} /> ) } renderPalette() { const {input} = this.props const colors = input.value || [] return ( <Layout ref={this.ref} type='horizontal' spacing='tight' alignment='left' framed> <DraggableList items={colors} itemId={item => item.id} containerElement={this.ref.current} itemRenderer={(item, {original}) => this.renderPaletteItem(item, original)} onDragStart={() => this.setState({edit: null})} onChange={items => this.updatePalette(items)} onReleaseOutside={id => this.removeColor(id)} /> {this.renderAddPaletteColorButton()} </Layout> ) } renderPaletteItem({color, id}, original) { const {edit} = this.state return original ? ( <ColorElement className={styles.element} color={color} edit={edit === id} onClick={() => this.onClick(id)} onChange={color => this.updateColor(color, id)} /> ) : ( <ColorElement className={styles.element} color={color} size='tall' /> ) } onClick(id) { this.setState(({edit}) => ({edit: edit === id ? null : id})) } renderNoData() { return ( <NoData message={msg('map.visParams.form.palette.empty')}/> ) } renderAddPaletteColorButton() { const {showTextInput} = this.state return ( <Button key={'add'} chromeless additionalClassName={styles.element} icon='plus' disabled={showTextInput} tooltip={msg('map.visParams.form.palette.add.tooltip')} onClick={() => this.addColor()} /> ) } renderInputModeButton() { const {showTextInput} = this.state return ( <Button key={'showHexColorCode'} look={showTextInput ? 'selected' : 'default'} size='small' shape='pill' air='less' label={'HEX'} tooltip={msg(showTextInput ? 'map.visParams.form.palette.tooltip' : 'map.visParams.form.palette.text.tooltip')} onClick={() => showTextInput ? this.showPalette() : this.showTextInput()} /> ) } isPaletteEmpty() { const {input} = this.props const colors = input.value || [] return colors.length === 0 } showTextInput() { const {input} = this.props this.setText(input.value || []) this.setState({showTextInput: true}) } showPalette() { this.setState({showTextInput: false}) } createColor(color = '#000000', edit) { return { id: guid(), color, edit, } } updatePalette(palette) { this.setColors(palette) } addColor() { const {input} = this.props const palette = input.value || [] const color = this.createColor() this.setColors([...palette, color]) this.setState({edit: color.id}) } removeColor(idToRemove) { const {input} = this.props const palette = input.value || [] this.setColors(palette.filter(({id}) => id !== idToRemove)) } updateColor(color, id) { const {input} = this.props const palette = input.value || [] this.setColors( palette.map(colorEntry => ({ ...colorEntry, color: colorEntry.id === id ? color : colorEntry.color })) ) } setColors(colors) { const {input} = this.props input.set(colors) this.setText(colors) } setText(colors) { const text = colors .map(({color}) => color) .join(', ') this.setState({text, edit: null}) } applyPreset(colors) { this.setColors(colors.map(color => this.createColor(color))) } updateText(value) { const {input} = this.props this.setState({text: value}) if (value) { const colors = value .replace(/[^\w,#]/g, '') .split(',') .map(color => { try { return this.createColor(Color(color.trim()).hex()) } catch(_error) { return null // Malformatted color } }) .filter(color => color) input.set(colors) } else { input.set([]) } } } Palette.propTypes = { input: PropTypes.object.isRequired }
(function($){ rocket.pageview.notes = rocket.pageview.extend({ el: '#notes_page' ,init: function(options){ var me = this, spm, subView; me.setup(new rocket.subview.notes_header( $.extend({}, me.options) ,me )); spm = me.getSubpageManager({ subpageClass: rocket.subpageview.notes_lines ,maxSubpages: 2 }); subView = new rocket.subpageview.notes_lines( $.extend({}, me.options) ,me ); me.append(subView); spm.registerSubpage(me.featureString, subView); me.showLoading(me.$el); } ,registerEvents: function(){ var me = this, ec = me.ec, keydownLocking = false; $(document).on('keydown', function(e){ // @note: only response in active page if(ec.isActivePage() // @note: omit form keydown && $(e.target).closest('form').length == 0 && !keydownLocking){ keydownLocking = true; ec.trigger('keydown', { event: e // @note: 用于定向派发和响应 ,targetSubpage: me.subpageManager._currentSubpage }); setTimeout(function(){ keydownLocking = false; }, 100); } }); } }); })(Zepto);
/* * Problem 1: Multiples of 3 and 5 * If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. * Find the sum of all the multiples of 3 or 5 below 1000. * A: 233168 */ var total = 0; for(var pos=0; pos<1000; pos++){ if(pos%3 == 0 || pos%5 == 0){ total += pos; } } console.log(total);
// THIS TEST WAS GENERATED AUTOMATICALLY ON Wed Dec 07 2016 14:07:23 GMT+0200 (EET) 'use strict'; import chai from 'chai'; import Handler from '../../../../../backend/src/account/delete/Handler'; import Kernel from '../../../node_modules/deep-framework/node_modules/deep-kernel'; import KernelFactory from '../../common/KernelFactory'; // @todo: Add more advanced tests suite('Handlers', () => { let handler, kernelInstance; test('Class Handler exists in deep-account-adapter-accounts-delete module', () => { chai.expect(Handler).to.be.an('function'); }); test('Load Kernel by using Kernel.load()', (done) => { let callback = (backendKernel) => { kernelInstance = backendKernel; chai.assert.instanceOf( backendKernel, Kernel, 'backendKernel is an instance of Kernel' ); // complete the async done(); }; KernelFactory.create(callback); }); test('Check Handler constructor', () => { handler = new Handler(kernelInstance); chai.expect(handler).to.be.an.instanceof(Handler); }); test('Check handle method exists', () => { chai.expect(handler.handle).to.be.an('function'); }); });
const { describe, it } = require('mocha') const assert = require('assert') const u = require('./payments.utils') ;['embed', 'p2ms', 'p2pk', 'p2pkh', 'p2sh', 'p2wpkh', 'p2wsh'].forEach(function (p) { describe(p, function () { const fn = require('../src/payments/' + p) const fixtures = require('./fixtures/' + p) fixtures.valid.forEach(function (f, i) { it(f.description + ' as expected', function () { const args = u.preform(f.arguments) const actual = fn(args, f.options) u.equate(actual, f.expected, f.arguments) }) it(f.description + ' as expected (no validation)', function () { const args = u.preform(f.arguments) const actual = fn(args, Object.assign({}, f.options, { validate: false })) u.equate(actual, f.expected, f.arguments) }) }) fixtures.invalid.forEach(function (f) { it('throws ' + f.exception + (f.description ? ('for ' + f.description) : ''), function () { const args = u.preform(f.arguments) assert.throws(function () { fn(args, f.options) }, new RegExp(f.exception)) }) }) // cross-verify dynamically too if (!fixtures.dynamic) return const { depends, details } = fixtures.dynamic details.forEach(function (f) { const detail = u.preform(f) const disabled = {} if (f.disabled) f.disabled.forEach(function (k) { disabled[k] = true }) for (let key in depends) { if (key in disabled) continue const dependencies = depends[key] dependencies.forEach(function (dependency) { if (!Array.isArray(dependency)) dependency = [dependency] const args = {} dependency.forEach(function (d) { u.from(d, detail, args) }) const expected = u.from(key, detail) it(f.description + ', ' + key + ' derives from ' + JSON.stringify(dependency), function () { u.equate(fn(args), expected) }) }) } }) }) })
const request = require('supertest') const expect = require('chai').expect const app = require('../app.js') describe('user-api', () => { it('getUser', done => { request(app.listen()) .get('/api/users/getUser?id=1') .expect(200) .end((err, res) => { console.log(res.body) //断言data属性是一个对象 expect(res.body.data).to.be.an('object') done() }) }) it('registerUser', done => { const user = { username: 'zhin', age: 20 } request(app.listen()) .post('/api/users/registerUser') .send(user) .set('Content-Type', 'application/json') .expect(200) .end((err, res) => { console.log(res.body) // 断言返回的code是0 expect(res.body.code).to.be.equal(0) done() }) }) })
/* globals $ */ window.openGitMD = function(target) { window.open('https://github.com/Altinn/DesignSystem/edit/dev/source' + $(target).closest('.sg-pattern').find('.patternLink') .attr('href') .replace('DesignSystem/', '') .replace(/\.\.\//g, '') .replace('patterns', '/_patterns') .replace(/(?:[^//*]*)$/, '/') .replace('//', '.md') .replace(/-([0-9]{2})/g, '/$1'), '_blank' ); };
var Pond = {}; Pond.GAME_WIDTH = 900; Pond.GAME_HEIGHT = 600; Pond.START_FROG_TYPES = ['frog-female','frog-male','frog-male']; Pond.FROG_WIDTH = 100; Pond.FROG_HEIGHT = 100; Pond.BABYFROG_WIDTH = 80; Pond.BABYFROG_HEIGHT = 46; // animation ms Pond.EGG_ROTATE_SPEED = 25000; Pond.FROGLET_SPEED = 20000; Pond.TADPOLE_SPEED = 15000; Pond.EGG_TTL = 6000; Pond.TADPOLE_TTL = 7000; Pond.FROGLET_TTL = 7000; Pond.BABYFROG_TTL = 7000; Pond.BOUNDS = new Phaser.Rectangle(Pond.FROG_WIDTH/2, Pond.FROG_HEIGHT/2, Pond.GAME_WIDTH, Pond.GAME_HEIGHT-(Pond.FROG_HEIGHT/2));
let testObj = new ( //Judge solution is that IIFE (function () { let count = (function () { let counter = -1; return () => { return ++counter; }; })(); class Extensible { constructor() { this.id = count(); } extend(template) { for (let prop in template) { if (typeof template[prop] !== 'function') { this[prop] = template[prop]; } else { Extensible.prototype[prop] = template[prop]; } } } } Extensible.id = 0; return Extensible; })() )(); //for testing - exacted tests form Judge var template = { extensionData: 5, extensionMethod: function (value) { return value + 1; } }; console.log(testObj.id); testObj.extend(template); console.log(testObj.hasOwnProperty('extensionData')); console.log(testObj.extensionData === 5); console.log(Object.getPrototypeOf(testObj).hasOwnProperty('extensionMethod')); console.log(testObj.extensionMethod(1) === 2); console.log(testObj);
// // test/unit/controllers/controllersSpec.js // var sinon = require('sinon'); // Replace saveAs plugin saveAs = function(blob, filename) { saveAsLastCall = { blob: blob, filename: filename }; }; describe("Unit: Controllers", function() { config.plugins.LocalStorage = true; config.plugins.GoogleDrive = null; config.plugins.InsightStorage = null; config.plugins.EncryptedInsightStorage = null; var anAddr = 'mkfTyEk7tfgV611Z4ESwDDSZwhsZdbMpVy'; var anAmount = 1000; var aComment = 'hola'; var invalidForm = { $invalid: true }; var scope; var server; beforeEach(module('copayApp')); beforeEach(module('copayApp.controllers')); beforeEach(module(function($provide) { $provide.value('request', { 'get': function(_, cb) { cb(null, null, [{ name: 'USD Dollars', code: 'USD', rate: 2 }]); } }); })); beforeEach(inject(function($controller, $rootScope) { scope = $rootScope.$new(); $rootScope.safeUnspentCount = 1; // // TODO Use the REAL wallet, and stub only networking and DB components! // var w = {}; w.id = 1234; w.isComplete = sinon.stub().returns(true); w.isShared = sinon.stub().returns(true); w.privateKey = {}; w.settings = { unitToSatoshi: 100, unitDecimals: 2, alternativeName: 'US Dollar', alternativeIsoCode: 'USD', }; w.addressBook = { 'juan': '1', }; w.totalCopayers = 2; w.getMyCopayerNickname = sinon.stub().returns('nickname'); w.getMyCopayerId = sinon.stub().returns('id'); w.privateKey.toObj = sinon.stub().returns({ wallet: 'mock' }); w.getSecret = sinon.stub().returns('secret'); w.getName = sinon.stub().returns('fakeWallet'); w.exportEncrypted = sinon.stub().returns('1234567'); w.getTransactionHistory = sinon.stub().yields(null); w.getNetworkName = sinon.stub().returns('testnet'); w.spend = sinon.stub().yields(null); w.sendTxProposal = sinon.stub(); w.broadcastTx = sinon.stub().yields(null); w.requiresMultipleSignatures = sinon.stub().returns(true); w.getTxProposals = sinon.stub().returns([1, 2, 3]); w.getPendingTxProposals = sinon.stub().returns( [{ isPending: true }] ); w.getId = sinon.stub().returns(1234); w.on = sinon.stub().yields({ 'e': 'errmsg', 'loading': false }); w.sizes = sinon.stub().returns({ tota: 1234 }); w.getBalance = sinon.stub().returns(10000); w.publicKeyRing = sinon.stub().yields(null); w.publicKeyRing.nicknameForCopayer = sinon.stub().returns('nickcopayer'); w.updateFocusedTimestamp = sinon.stub().returns(1415804323); w.getAddressesInfo = sinon.stub().returns([{ addressStr: "2MxvwvfshZxw4SkkaJZ8NDKLyepa9HLMKtu", isChange: false }]); var iden = {}; iden.getLastFocusedWallet = sinon.stub().returns(null); iden.getWallets = sinon.stub().returns([w]); iden.getWalletById = sinon.stub().returns(w); iden.getName = sinon.stub().returns('name'); iden.deleteWallet = sinon.stub(); iden.close = sinon.stub().returns(null); $rootScope.wallet = w; $rootScope.iden = iden; })); describe('Create Controller', function() { var c; beforeEach(inject(function($controller, $rootScope) { scope = $rootScope.$new(); c = $controller('CreateController', { $scope: scope, }); })); describe('#getNumber', function() { it('should return an array of n undefined elements', function() { var n = 5; var array = scope.getNumber(n); expect(array.length).equal(n); }); }); describe('#create', function() { it('should work with invalid form', function() { scope.create(invalidForm); }); }); }); describe('Create Profile Controller', function() { var c, confService, idenService; beforeEach(inject(function($controller, $rootScope, configService, identityService) { scope = $rootScope.$new(); confService = configService; idenService = identityService; c = $controller('CreateProfileController', { $scope: scope, }); })); it('should exist', function() { should.exist(c); }); it('#init', function() { scope.init(); }); it('#clear', function() { scope.clear(); }); it('#saveSettings', function() { var old = confService.set; confService.set = sinon.stub().returns(null); scope.saveSettings(); confService.set.calledOnce.should.be.true; confService.set = old; }); it('#createProfile', function() { var old = scope.saveSettings; scope.saveSettings = sinon.stub().returns(null); scope.createProfile(); scope.saveSettings.calledOnce.should.be.true; scope.saveSettings = old; }); it('#_doCreateProfile', function() { var old = idenService.create; idenService.create = sinon.stub().returns(null); scope._doCreateProfile('myemail@domain.com', 'password'); idenService.create.calledOnce.should.be.true; idenService.create = old; }); it('#createDefaultWallet', function() { var old = idenService.createDefaultWallet; idenService.createDefaultWallet = sinon.stub().returns(null); scope.createDefaultWallet(); idenService.createDefaultWallet.calledOnce.should.be.true; idenService.createDefaultWallet = old; }); }); describe('Receive Controller', function() { var c; var rootScope; beforeEach(inject(function($controller, $rootScope) { rootScope = $rootScope; scope = $rootScope.$new(); c = $controller('ReceiveController', { $scope: scope, }); var createW = function(N, conf) { var c = JSON.parse(JSON.stringify(conf || walletConfig)); if (!N) N = c.totalCopayers; var mainPrivateKey = new digibytego.PrivateKey({ networkName: walletConfig.networkName }); var mainCopayerEPK = mainPrivateKey.deriveBIP45Branch().extendedPublicKeyString(); c.privateKey = mainPrivateKey; c.publicKeyRing = new digibytego.PublicKeyRing({ networkName: c.networkName, requiredCopayers: Math.min(N, c.requiredCopayers), totalCopayers: N, }); c.publicKeyRing.addCopayer(mainCopayerEPK); c.publicKeyRing.getAddressesOrdered = sinon.stub().returns(null); c.txProposals = new digibytego.TxProposals({ networkName: c.networkName, }); c.blockchain = new Blockchain(walletConfig.blockchain); c.network = sinon.stub(); c.network.setHexNonce = sinon.stub(); c.network.setHexNonces = sinon.stub(); c.network.getHexNonce = sinon.stub(); c.network.getHexNonces = sinon.stub(); c.network.peerFromCopayer = sinon.stub().returns('xxxx'); c.network.send = sinon.stub(); c.addressBook = { '2NFR2kzH9NUdp8vsXTB4wWQtTtzhpKxsyoJ': { label: 'John', copayerId: '026a55261b7c898fff760ebe14fd22a71892295f3b49e0ca66727bc0a0d7f94d03', createdTs: 1403102115, hidden: false }, '2MtP8WyiwG7ZdVWM96CVsk2M1N8zyfiVQsY': { label: 'Jennifer', copayerId: '032991f836543a492bd6d0bb112552bfc7c5f3b7d5388fcbcbf2fbb893b44770d7', createdTs: 1403103115, hidden: false } }; c.networkName = walletConfig.networkName; c.version = '0.0.1'; c.generateAddress = sinon.stub().returns({}); c.balanceInfo = {}; return new Wallet(c); }; $rootScope.wallet = createW(); $rootScope.wallet.balanceInfo = {}; })); it('should exist', function() { should.exist(c); }); it('#init', function() { scope.init(); rootScope.title.should.be.equal('Receive'); }); it('should call setAddressList', function() { scope.setAddressList(); expect(scope.addresses).to.be.empty; scope.toggleShowAll(); scope.setAddressList(); expect(scope.addresses).to.be.empty; }); it('#newAddr', function() { rootScope.wallet.generateAddress = sinon.stub().returns({}); scope.newAddr(); rootScope.wallet.generateAddress.calledOnce.should.be.true; }); }); describe('History Controller', function() { var ctrl; beforeEach(inject(function($controller, $rootScope) { scope = $rootScope.$new(); scope.wallet = null; scope.getTransactions = sinon.stub(); ctrl = $controller('HistoryController', { $scope: scope, }); })); it('should exist', function() { should.exist(ctrl); }); it('should have a HistoryController controller', function() { expect(scope.loading).equal(false); }); // this tests has no sense: getTransaction is async it.skip('should return an empty array of tx from insight', function() { scope.getTransactions(); expect(scope.blockchain_txs).to.be.empty; }); }); describe('Profile Controller', function() { var ctrl, bkpService, idenService; beforeEach(inject(function($controller, $rootScope, backupService, identityService) { scope = $rootScope.$new(); bkpService = backupService; idenService = identityService; ctrl = $controller('ProfileController', { $scope: scope, }); })); it('should exist', function() { should.exist(ctrl); }); it('#downloadProfileBackup', function() { var old = bkpService.profileDownload; bkpService.profileDownload = sinon.stub().returns(null); scope.downloadProfileBackup(); bkpService.profileDownload.calledOnce.should.be.true; bkpService.profileDownload = old; }); it('#viewProfileBackup', function() { var old = bkpService.profileEncrypted; bkpService.profileEncrypted = sinon.stub().returns(null); scope.viewProfileBackup(); //bkpService.profileEncrypted.calledOnce.should.be.true; bkpService.profileEncrypted = old; }); it('#copyProfileBackup', function() { var old = bkpService.profileEncrypted; bkpService.profileEncrypted = sinon.stub().returns(null); window.cordova = { plugins: { clipboard: { copy: function(e) { return e; } } } }; window.plugins = { toast: { showShortCenter: function(e) { return e; } } }; scope.copyProfileBackup(); bkpService.profileEncrypted.calledOnce.should.be.true; bkpService.profileEncrypted = old; }); it('#sendProfileBackup', function() { var old = bkpService.profileEncrypted; bkpService.profileEncrypted = sinon.stub().returns(null); window.plugin = { email: { open: function(e) { return e; } } }; window.plugins = { toast: { showShortCenter: function(e) { return e; } } }; scope.sendProfileBackup(); bkpService.profileEncrypted.calledOnce.should.be.true; bkpService.profileEncrypted = old; }); it('#deleteProfile', function() { var old = idenService.deleteProfile; idenService.deleteProfile = sinon.stub().returns(null); scope.deleteProfile(); idenService.deleteProfile.calledOnce.should.be.true; idenService.deleteProfile = old; }); }); describe('Send Controller', function() { var scope, form, sendForm, sendCtrl, rootScope; beforeEach(angular.mock.inject(function($compile, $rootScope, $controller, rateService, notification) { scope = $rootScope.$new(); rootScope = $rootScope; scope.rateService = rateService; var element = angular.element( '<form name="form">' + '<input type="text" id="newaddress" name="newaddress" ng-disabled="loading" placeholder="Address" ng-model="newaddress" valid-address required>' + '<input type="text" id="newlabel" name="newlabel" ng-disabled="loading" placeholder="Label" ng-model="newlabel" required>' + '</form>' ); scope.model = { newaddress: null, newlabel: null, _address: null, _amount: null }; $compile(element)(scope); var element2 = angular.element( '<form name="form2">' + '<input type="text" id="address" name="address" ng-model="_address" valid-address required>' + '<input type="number" id="amount" name="amount" ng-model="_amount" min="0.00000001" max="10000000000" valid-amount required>' + '<input type="number" id="alternative" name="alternative" ng-model="_alternative">' + '<textarea id="comment" name="comment" ng-model="commentText" ng-maxlength="100"></textarea>' + '</form>' ); $compile(element2)(scope); sendCtrl = $controller('SendController', { $scope: scope, $modal: {}, }); scope.init(); scope.$digest(); form = scope.form; sendForm = scope.form2; scope.sendForm = sendForm; })); it('should have a SendController controller', function() { should.exist(scope.submitForm); }); it('should have a title', function() { expect(scope.title); }); it('#setError', function() { scope.setError('my error'); expect(scope.error); }); it('#setFromPayPro', function() { var old = rootScope.wallet.fetchPaymentRequest rootScope.wallet.fetchPaymentRequest = sinon.stub().returns(null); scope.setFromPayPro('newURL'); rootScope.wallet.fetchPaymentRequest.calledOnce.should.be.true; rootScope.wallet.fetchPaymentRequest = old; }); it('should validate address with network', function() { form.newaddress.$setViewValue('mkfTyEk7tfgV611Z4ESwDDSZwhsZdbMpVy'); expect(form.newaddress.$invalid).to.equal(false); }); it('should not validate address with other network', function() { form.newaddress.$setViewValue('1JqniWpWNA6Yvdivg3y9izLidETnurxRQm'); expect(form.newaddress.$invalid).to.equal(true); }); it('should not validate random address', function() { form.newaddress.$setViewValue('thisisaninvalidaddress'); expect(form.newaddress.$invalid).to.equal(true); }); it('should validate label', function() { form.newlabel.$setViewValue('John'); expect(form.newlabel.$invalid).to.equal(false); }); it('should not validate label', function() { expect(form.newlabel.$invalid).to.equal(true); }); it('should create a transaction proposal with given values', inject(function($timeout) { sendForm.address.$setViewValue(anAddr); sendForm.amount.$setViewValue(anAmount); sendForm.comment.$setViewValue(aComment); var w = scope.wallet; scope.submitForm(sendForm); $timeout.flush(); sinon.assert.callCount(w.spend, 1); sinon.assert.callCount(w.broadcastTx, 0); var spendArgs = w.spend.getCall(0).args[0]; spendArgs.toAddress.should.equal(anAddr); spendArgs.amountSat.should.equal(anAmount * scope.wallet.settings.unitToSatoshi); spendArgs.comment.should.equal(aComment); })); it('should handle big values in 100 BTC', inject(function($timeout) { var old = scope.wallet.settings.unitToSatoshi; scope.wallet.settings.unitToSatoshi = 100000000; sendForm.address.$setViewValue(anAddr); sendForm.amount.$setViewValue(100); sendForm.address.$setViewValue(anAddr); scope.updateTxs = sinon.spy(); scope.submitForm(sendForm); var w = scope.wallet; $timeout.flush(); w.spend.getCall(0).args[0].amountSat.should.equal(100 * scope.wallet.settings.unitToSatoshi); scope.wallet.settings.unitToSatoshi = old; })); it('should handle big values in 5000 BTC', inject(function($rootScope, $timeout) { var w = scope.wallet; w.requiresMultipleSignatures = sinon.stub().returns(true); var old = $rootScope.wallet.settings.unitToSatoshi; $rootScope.wallet.settings.unitToSatoshi = 100000000; sendForm.address.$setViewValue(anAddr); sendForm.amount.$setViewValue(5000); scope.submitForm(sendForm); $timeout.flush(); w.spend.getCall(0).args[0].amountSat.should.equal(5000 * $rootScope.wallet.settings.unitToSatoshi); $rootScope.wallet.settings.unitToSatoshi = old; })); it('should convert bits amount to fiat', function(done) { scope.rateService.whenAvailable(function() { sendForm.amount.$setViewValue(1e6); scope.$digest(); expect(scope._amount).to.equal(1e6); expect(scope.__alternative).to.equal(2); done(); }); }); it('should convert fiat to bits amount', function(done) { scope.rateService.whenAvailable(function() { sendForm.alternative.$setViewValue(2); scope.$digest(); expect(scope.__alternative).to.equal(2); expect(scope._amount).to.equal(1e6); done(); }); }); it('receive from uri using bits', inject(function() { sendForm.address.$setViewValue('digibyte:mxf5psDyA8EQVzb2MZ7MkDWiXuAuWWCRMB?amount=1.018085'); expect(sendForm.amount.$modelValue).to.equal(1018085); sendForm.address.$setViewValue('digibyte:mxf5psDyA8EQVzb2MZ7MkDWiXuAuWWCRMB?amount=1.01808500'); expect(sendForm.amount.$modelValue).to.equal(1018085); sendForm.address.$setViewValue('digibyte:mxf5psDyA8EQVzb2MZ7MkDWiXuAuWWCRMB?amount=0.29133585'); expect(sendForm.amount.$modelValue).to.equal(291335.85); })); it('receive from uri using BTC', inject(function($rootScope) { var old = $rootScope.wallet.settings.unitToSatoshi; var old_decimals = $rootScope.wallet.settings.unitDecimals; $rootScope.wallet.settings.unitToSatoshi = 100000000; $rootScope.wallet.settings.unitDecimals = 8; sendForm.address.$setViewValue('digibyte:mxf5psDyA8EQVzb2MZ7MkDWiXuAuWWCRMB?amount=1.018085'); expect(sendForm.amount.$modelValue).to.equal(1.018085); sendForm.address.$setViewValue('digibyte:mxf5psDyA8EQVzb2MZ7MkDWiXuAuWWCRMB?amount=1.01808500'); expect(sendForm.amount.$modelValue).to.equal(1.018085); sendForm.address.$setViewValue('digibyte:mxf5psDyA8EQVzb2MZ7MkDWiXuAuWWCRMB?amount=0.29133585'); expect(sendForm.amount.$modelValue).to.equal(0.29133585); sendForm.address.$setViewValue('digibyte:mxf5psDyA8EQVzb2MZ7MkDWiXuAuWWCRMB?amount=0.1'); expect(sendForm.amount.$modelValue).to.equal(0.1); $rootScope.wallet.settings.unitToSatoshi = old; $rootScope.wallet.settings.unitDecimals = old_decimals; })); }); describe("Unit: Version Controller", function() { var scope, $httpBackendOut; var GH = 'https://api.github.com/repos/bitpay/digibytego/tags'; beforeEach(inject(function($controller, $injector) { $httpBackend = $injector.get('$httpBackend'); $httpBackend.when('GET', GH) .respond([{ name: "v100.1.6", zipball_url: "https://api.github.com/repos/bitpay/digibytego/zipball/v0.0.6", tarball_url: "https://api.github.com/repos/bitpay/digibytego/tarball/v0.0.6", commit: { sha: "ead7352bf2eca705de58d8b2f46650691f2bc2c7", url: "https://api.github.com/repos/bitpay/digibytego/commits/ead7352bf2eca705de58d8b2f46650691f2bc2c7" } }]); })); var rootScope; beforeEach(inject(function($controller, $rootScope) { rootScope = $rootScope; scope = $rootScope.$new(); headerCtrl = $controller('VersionController', { $scope: scope, }); })); afterEach(function() { $httpBackend.verifyNoOutstandingExpectation(); $httpBackend.verifyNoOutstandingRequest(); }); it('should hit github for version', function() { $httpBackend.expectGET(GH); scope.$apply(); $httpBackend.flush(); }); it('should check version ', inject(function($injector) { notification = $injector.get('notification'); var spy = sinon.spy(notification, 'version'); $httpBackend.expectGET(GH); scope.$apply(); $httpBackend.flush(); spy.calledOnce.should.equal(true); })); it('should check blockChainStatus', function() { $httpBackend.expectGET(GH); $httpBackend.flush(); rootScope.insightError = 1; scope.$apply(); expect(rootScope.insightError).equal(1); scope.$apply(); expect(rootScope.insightError).equal(1); scope.$apply(); }); }); describe("Unit: Sidebar Controller", function() { beforeEach(inject(function($controller, $rootScope) { rootScope = $rootScope; scope = $rootScope.$new(); headerCtrl = $controller('SidebarController', { $scope: scope, }); })); it('should call sign out', function() { scope.signout(); rootScope.iden.close.calledOnce.should.be.true; }); }); describe("Head Controller", function() { var scope, ctrl, rootScope, idenService, balService; beforeEach(inject(function($controller, $rootScope, identityService, balanceService) { rootScope = $rootScope; idenService = identityService; balService = balanceService; scope = $rootScope.$new(); ctrl = $controller('HeadController', { $scope: scope, }); })); it('should exist', function() { should.exist(ctrl); }); it('should call sign out', function() { var old = idenService.signout; idenService.signout = sinon.stub().returns(null); scope.signout(); idenService.signout.calledOnce.should.be.true; idenService.signout = old; }); it('should call refresh', function() { var old = rootScope.wallet.sendWalletReady; rootScope.wallet.sendWalletReady = sinon.stub().returns(null); balService.clearBalanceCache = sinon.stub().returns(null); scope.refresh(); rootScope.wallet.sendWalletReady.calledOnce.should.be.true; rootScope.wallet.sendWalletReady = old; }); }); describe('Send Controller', function() { var sendCtrl, form; beforeEach(inject(function($compile, $rootScope, $controller) { scope = $rootScope.$new(); $rootScope.availableBalance = 123456; var element = angular.element( '<form name="form">' + '<input type="number" id="amount" name="amount" placeholder="Amount" ng-model="amount" min="0.0001" max="10000000" enough-amount required>' + '</form>' ); scope.model = { amount: null }; $compile(element)(scope); scope.$digest(); form = scope.form; sendCtrl = $controller('SendController', { $scope: scope, $modal: {}, }); })); it('should have a SendController', function() { expect(scope.isMobile).not.to.equal(null); }); it('should autotop balance correctly', function() { scope.setTopAmount(form); form.amount.$setViewValue(123356); expect(scope.amount).to.equal(123356); expect(form.amount.$invalid).to.equal(false); expect(form.amount.$pristine).to.equal(false); }); }); describe('Import Controller', function() { var ctrl; beforeEach(inject(function($controller, $rootScope) { scope = $rootScope.$new(); ctrl = $controller('ImportController', { $scope: scope, }); })); it('should exist', function() { should.exist(ctrl); }); it('import status', function() { expect(scope.importStatus).equal('Importing wallet - Reading backup...'); }); }); // TODO: fix this test describe.skip('Home Controller', function() { var ctrl; beforeEach(inject(function($controller, $rootScope) { scope = $rootScope.$new(); ctrl = $controller('HomeController', { $scope: scope, }); })); it('should exist', function() { should.exist(ctrl); }); describe('#open', function() { it('should work with invalid form', function() { scope.open(invalidForm); }); }); }); describe('SignOut Controller', function() { var ctrl; beforeEach(inject(function($controller, $rootScope) { scope = $rootScope.$new(); ctrl = $controller('signOutController', { $scope: scope, }); })); it('should exist', function() { should.exist(ctrl); }); }); describe('Settings Controller', function() { var what; beforeEach(inject(function($controller, $rootScope) { scope = $rootScope.$new(); what = $controller('SettingsController', { $scope: scope, }); })); it('should exist', function() { should.exist(what); }); }); describe('Copayers Controller', function() { var saveDownload = null; var ctrl, rootScope, idenService; beforeEach(inject(function($controller, $rootScope, identityService) { scope = $rootScope.$new(); rootScope = $rootScope; idenService = identityService; ctrl = $controller('CopayersController', { $scope: scope, $modal: {}, }); })); it('should exist', function() { should.exist(ctrl); }); it('#init', function() { var old = scope.updateList; scope.updateList = sinon.stub().returns(null); scope.init(); scope.updateList.callCount.should.be.equal(3); //why 3 ?????? scope.updateList = old; }); it('#updateList', function() { var old = rootScope.wallet.getRegisteredPeerIds; rootScope.wallet.getRegisteredPeerIds = sinon.stub().returns(null); rootScope.wallet.removeListener = sinon.stub().returns(null); scope.updateList(); rootScope.wallet.getRegisteredPeerIds.callCount.should.be.equal(1); rootScope.wallet.getRegisteredPeerIds = old; }); it('#deleteWallet', inject(function($timeout) { var old = idenService.deleteWallet; idenService.deleteWallet = sinon.stub().returns(null); scope.deleteWallet(); $timeout.flush(); idenService.deleteWallet.callCount.should.be.equal(1); idenService.deleteWallet = old; })); }); describe('Join Controller', function() { var ctrl; beforeEach(inject(function($controller, $rootScope) { scope = $rootScope.$new(); ctrl = $controller('JoinController', { $scope: scope, }); })); it('should exist', function() { should.exist(ctrl); }); describe('#join', function() { it('should work with invalid form', function() { scope.join(invalidForm); }); }); }); describe('paymentUriController Controller', function() { var what; beforeEach(inject(function($controller, $rootScope, $location) { scope = $rootScope.$new(); var routeParams = { data: 'digibyte:19mP9FKrXqL46Si58pHdhGKow88SUPy1V8' }; var query = { amount: 0.1, message: "a digibyte donation" }; what = $controller('paymentUriController', { $scope: scope, $routeParams: routeParams, $location: { search: function() { return query; } } }); })); it('should exist', function() { should.exist(what); }); it('should parse url correctly', function() { should.exist(what); should.exist(scope.pendingPayment); scope.pendingPayment.should.equal('digibyte:19mP9FKrXqL46Si58pHdhGKow88SUPy1V8?amount=0.1&message=a digibyte donation'); }); }); describe('Warning Controller', function() { var ctrl, idenService; beforeEach(inject(function($controller, $rootScope, identityService) { scope = $rootScope.$new(); idenService = identityService; ctrl = $controller('WarningController', { $scope: scope, }); })); it('should exist', function() { should.exist(ctrl); }); it('#signout', function() { var old = idenService.signout; idenService.signout = sinon.stub().returns(null); scope.signout(); idenService.signout.calledOnce.should.be.true; idenService.signout = old; }); }); describe('More Controller', function() { var ctrl, modalCtrl, rootScope, idenService, bkpService; beforeEach(inject(function($controller, $rootScope, backupService, identityService) { scope = $rootScope.$new(); rootScope = $rootScope; idenService = identityService; bkpService = backupService; ctrl = $controller('MoreController', { $scope: scope }); saveAsLastCall = null; })); it('Backup Wallet controller #download', function() { var w = scope.wallet; expect(saveAsLastCall).equal(null); scope.downloadWalletBackup(); expect(saveAsLastCall.blob.size).equal(7); expect(saveAsLastCall.blob.type).equal('text/plain;charset=utf-8'); }); it('Backup Wallet controller should name backup correctly for multiple copayers', function() { var w = scope.wallet; expect(saveAsLastCall).equal(null); scope.downloadWalletBackup(); expect(saveAsLastCall.filename).equal('nickname-fakeWallet-keybackup.json.aes'); }); it('Backup Wallet controller should name backup correctly for 1-1 wallet', function() { var w = scope.wallet; expect(saveAsLastCall).equal(null); scope.wallet.totalCopayers = 1; scope.downloadWalletBackup(); expect(saveAsLastCall.filename).equal('fakeWallet-keybackup.json.aes'); }); it('Delete a wallet', inject(function($timeout) { var w = scope.wallet; scope.deleteWallet(); $timeout.flush(); scope.$digest(); scope.iden.deleteWallet.calledOnce.should.equal(true); scope.iden.deleteWallet.getCall(0).args[0].should.equal(w.getId()); })); it('#save', function() { var old = rootScope.wallet.changeSettings; rootScope.wallet.changeSettings = sinon.stub().returns(null); scope.selectedUnit = {}; scope.save(); rootScope.wallet.changeSettings.calledOnce.should.equal.true; rootScope.wallet.changeSettings = old; }); it('#purge checking balance', function() { var old = rootScope.wallet.purgeTxProposals; rootScope.wallet.purgeTxProposals = sinon.stub().returns(true); scope.purge(); rootScope.wallet.purgeTxProposals.calledOnce.should.equal.true; rootScope.wallet.purgeTxProposals = old; }); it('#purge without checking balance', function() { var old = rootScope.wallet.purgeTxProposals; rootScope.wallet.purgeTxProposals = sinon.stub().returns(false); scope.purge(); rootScope.wallet.purgeTxProposals.calledOnce.should.equal.true; rootScope.wallet.purgeTxProposals = old; }); it('#updateIndexes', function() { var old = rootScope.wallet.purgeTxProposals; rootScope.wallet.updateIndexes = sinon.stub().yields(); scope.updateIndexes(); rootScope.wallet.updateIndexes.calledOnce.should.equal.true; rootScope.wallet.updateIndexes = old; }); it('#updateIndexes return error', function() { var old = rootScope.wallet.purgeTxProposals; rootScope.wallet.updateIndexes = sinon.stub().yields('error'); scope.updateIndexes(); rootScope.wallet.updateIndexes.calledOnce.should.equal.true; rootScope.wallet.updateIndexes = old; }); it('#deleteWallet', inject(function($timeout) { var old = idenService.deleteWallet; idenService.deleteWallet = sinon.stub().yields(null); scope.deleteWallet(); $timeout.flush(); idenService.deleteWallet.calledOnce.should.equal.true; scope.loading.should.be.false; idenService.deleteWallet = old; })); it('#deleteWallet with error', inject(function($timeout) { var old = idenService.deleteWallet; idenService.deleteWallet = sinon.stub().yields('error'); scope.deleteWallet(); $timeout.flush(); idenService.deleteWallet.calledOnce.should.equal.true; scope.error.should.be.equal('error'); idenService.deleteWallet = old; })); it('#viewWalletBackup', function() { var old = bkpService.walletEncrypted; bkpService.walletEncrypted = sinon.stub().returns('backup0001'); scope.viewWalletBackup(); bkpService.walletEncrypted.calledOnce.should.equal.true; bkpService.walletEncrypted = old; }); it('#copyWalletBackup', function() { var old = bkpService.walletEncrypted; bkpService.walletEncrypted = sinon.stub().returns('backup0001'); window.cordova = { plugins: { clipboard: { copy: function(e) { return e; } } } }; window.plugins = { toast: { showShortCenter: function(e) { return e; } } }; scope.copyWalletBackup(); bkpService.walletEncrypted.calledOnce.should.equal.true; bkpService.walletEncrypted = old; }); it('#sendWalletBackup', function() { var old = bkpService.walletEncrypted; bkpService.walletEncrypted = sinon.stub().returns('backup0001'); window.plugins = { toast: { showShortCenter: function(e) { return e; } } }; window.plugin = { email: { open: function(e) { return e; } } }; scope.sendWalletBackup(); bkpService.walletEncrypted.calledOnce.should.equal.true; bkpService.walletEncrypted = old; }); }); });
/** * Javascript for the Butler popup. * When the 'invoke_butler' button is pressed, * it reads the text to stuff into a reply from the * 'reply_text' text box, then sends a message * to the active tab. The script running in that window * will then receive this and do its thing. */ document.addEventListener('DOMContentLoaded', function() { var button = document.getElementById('invoke_butler'); button.addEventListener('click', function() { var txt = document.getElementById('reply_text').value; /* * There are many ways to talk to the content script * documented on the web, most of which don't work. * The one that works I found at * https://developer.chrome.com/extensions/tabs#method-sendMessage, * as the doc says that you have to use tabs.sendMessage, * not runtime.sendMessage, to talk to an extension * * This code will send the message to the active tab, * which it assumes is the Quora tab. * Comment by Akshat: Added a string search for Quora in the URL. */ chrome.tabs.query({ active: true }, function(tabs) { // this is overly-general, there should never be // more than one... for (var i = 0; i < tabs.length; i++) { if (tabs[i].url.indexOf("quora.com") !== -1) { // only operates on a URL containing quora.com var tab = tabs[i]; console.log('tab.id = ' + tab.id); chrome.tabs.sendMessage(tab.id, { type: "Butler Popup", replyText: txt }, {}, function(response) { console.log('sendMessage, response = ' + response); if (!response) { console.log('runtime err = ' + chrome.runtime.lastError); console.log('runtime err.msg = ' + chrome.runtime.lastError.message); } }); } } }); }); });
module.exports = { description: "Greenwood PG Values (default)", value: { type: { value: "", description: "", required : false }, StockingDensity: { value: 3587, units: "Trees/hectar", description: "Number of trees planted per hectar" }, SeedlingMass: { value: 0.0004, units: "kG", description: "Mass of the seedling" }, pS: { value: 0.1, units: "unitless", description: "Proportion of seedling mass going into stem" }, pF: { value: 0, units: "unitless", description: "Proportion of seedling mass going into foliage" }, pR: { value: 0.9, units: "unitless", description: "Proportion of seedling mass going into root" } } };
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', '--Tracking ID--', 'auto'); ga('send', 'pageview');
//Problem 6. Most frequent number //Write a script that finds the most frequent number in an array. var arr = [4, 1, 1, 4, 2, 3, 4, 4, 1, 2, 4, 9, 3], currentSeq = 0, maxSeq = 0, arrValue = 0, len, i, j; for (i = 0, len = arr.length; i < len - 1; i+=1) { for (j = 0; j <= len - 1; j+=1) { if (arr[i] === arr[j]) { currentSeq += 1; if (currentSeq > maxSeq) { maxSeq = currentSeq; arrValue = arr[i]; } } } currentSeq = 0; } console.log(arrValue + '(' + maxSeq + ' times)');
'use strict'; angular.module('comentario').run(['Menus', function(Menus) { // Set top bar menu items Menus.addMenuItem('sidebar', 'Comentario', 'comentario', 'dropdown', '/comentario(/.*)?', false, null, 20); Menus.addSubMenuItem('sidebar', 'comentario', 'Lista de Comentario', 'comentario'); Menus.addSubMenuItem('sidebar', 'comentario', 'Crear Comentario', 'comentario/create'); } ]);
if( typeof module !== 'undefined' ) require( '../staging/abase/wTools.s' ); var _ = wTools; //returns '{ routine add }' console.log( 'toStrMethods',_.toStrMethods( ( function add(){} ),{} ) ); //returns '{ routine add }' console.log( 'toStr( onlyRoutines : 0 )',_.toStr( ( function add(){} ),{ onlyRoutines : 0 } ) ); //returns '{ routine add }' console.log( 'toStr( onlyRoutines : 1 )',_.toStr( ( function add(){} ),{ onlyRoutines : 1 } ) ); //returns '{ a : 1, b : 2 }' console.log( _.toStr( { a : 1, b : 2 } ) ); //returns '{ a : 1, b : 2 }' console.log( _.toStr( { a : 1, b : 2 },{ wrap : 0 } ) ); //returns '{ a : 1, b : 2 }' console.log( _.toStr( { a : 1, b : 2, c : { subd : 'some test', sube : true, subf : { x : 1 } } },{ levels : 3 } ) ); console.log( _.toStr( { a : 1, b : 2, c : { subd : 'some test', sube : true, subf : { x : 1 } } },{ levels : 3, dtab : '-' } ) );
/* globals $ */ /* Create a function that takes a selector and COUNT, then generates inside a UL with COUNT LIs: * The UL must have a class `items-list` * Each of the LIs must: * have a class `list-item` * content "List item #INDEX" * The indices are zero-based * If the provided selector does not selects anything, do nothing * Throws if * COUNT is a `Number`, but is less than 1 * COUNT is **missing**, or **not convertible** to `Number` * _Example:_ * Valid COUNT values: * 1, 2, 3, '1', '4', '1123' * Invalid COUNT values: * '123px' 'John', {}, [] */ function solve() { return function (selector, count) { if (selector == null || !selector || typeof(selector) !== 'string') { throw ""; } if (count < 1 || typeof(count) !== 'number' || !count || isNaN(count)) { throw ""; } var element = $(selector), ul = $('<ul />').addClass('items-list'), li, i; for (i = 0; i < count; i += 1) { li = $('<li />').addClass('list-item').text('List item #' + i); li.appendTo(ul); } ul.appendTo(element); }; }; module.exports = solve;
/*! * KBPOnline * Author: Arun Chaganty, Ashwin Paranjape * Licensed under the MIT license */ define(['fast-levenshtein/levenshtein'], function(Levenshtein) { String.prototype.replaceAll = function(search, replace) { if (replace === undefined) { return this.toString(); } return this.split(search).join(replace); }; var _RELATIONS = [ { "name": "no_relation", "short": "unrelated", "template": "{subject} and {object} are otherwise related or not related.", "image" : "", "examples": [ "{Tony Blair} informed the [British] public on Thursday.", "{Binney} as accosted by an [FBI] agent.", ], "icon": "fa-times", "subject-types": ["PER", "ORG", "GPE"], "object-types": ["PER", "ORG", "GPE", "DATE", "NUM", "TITLE"] },{ // // "name": "per:age", // "short": "age", // "image": "age.svg", // "icon" : "fa-clock-o", // "examples": [], // "template": "{subject} is {object} old.", // "subject-types": ["PER"], // "object-types": ["NUM"] // },{ // "name": "per:alternate_names", // "short": "alias", // "image": "alternate_names.svg", // "icon": "fa-address-book", // "examples": [ // "{Dwayne Johnson}, popularly known as [The Rock], ...", // "{Cardozar} ([Snoop Dog]) announced his new song...", // ], // "template": "{subject} is also known as {object}.", // "subject-types": ["PER"], // "object-types": ["PER"] //},{ "name": "per:place_of_birth", "short": "born at", "image": "born.svg", "icon": "fa-birthday-cake", "examples": ["{Julia} is a [Hawaiian] native.", "Julia is NOT born in Hawaii if she is a Hawaiian congresswoman." ], "template": "{subject} was born at {object}.", "subject-types": ["PER"], "object-types": ["GPE"] },{ "name": "per:place_of_residence", "short": "lived at", "image": "", "icon": "fa-home", "template": "{subject} lives/lived at {object}.", "examples": ["{Mike} lived in [Hawaii] because he grew up or studied there.", "{Mia} lived in [Hawaii] because she is a Hawaiian senator.", "{Mike} does NOT live in [Hawaii] because he visited for a business trip." ], "subject-types": ["PER"], "object-types": ["GPE"] },{ "name": "per:place_of_death", "short": "died at", "image": "Tombstone.svg", "icon": "fa-bolt", "examples": [ "{Mike} was mourned in [Philadelphia] where he died last weekend.", "{Mike} did not necessarily die in [Kansas City] if that is where he was laid to rest.", ], "template": "{subject} died at {object}.", "subject-types": ["PER"], "object-types": ["GPE"] },{ "name": "per:date_of_birth", "short": "born on", "image": "born.svg", "icon": "fa-birthday-cake", "examples": [ "{Mike} was born on [December 31st, 1975].", ], "template": "{subject} was born on {object}.", "subject-types": ["PER"], "object-types": ["DATE"] },{ "name": "per:date_of_death", "short": "died on", "template": "{subject} died on {object}.", "image": "Tombstone.svg", "icon": "fa-bolt", "examples": [ "{Mike} was died on [December 31st, 2015].", ], "subject-types": ["PER"], "object-types": ["DATE"] },{ "name": "per:organizations_founded", "short": "founded by", "template": "{subject} founded {object}.", "examples": [ "{Steve Jobs} founded [Apple Inc.] in 1976.", "{Abu al-Zarqawi} is widely regarded to be the founder of [ISIS].", ], "image": "founder.svg", "icon": "fa-building", "subject-types": ["PER"], "object-types": ["ORG"] },{ "name": "per:holds_shares_in", "short": "holds shares in", "template": "{subject} holds/held shares in {object}.", "image": "shareholders.png", "examples": [ "{Eric Schmidt} a the leading shareholder in [Google].", ], "icon": "fa-line-chart", "subject-types": ["PER"], "object-types": ["ORG"] },{ "name": "per:schools_attended", "short": "studied at", "template": "{subject} is studying/studied at {object}.", "examples": [ "{Eric Schmidt}, an [UC Berkeley]-graduate ...", ], "image": "school.svg", "icon": "fa-graduation-cap", "subject-types": ["PER"], "object-types": ["ORG"] },{ "name": "per:employee_or_member_of", "short": "works for", "image": "employee.svg", "icon": "fa-black-tie", "template": "{subject} works/worked for {object}.", "examples": ["{Mike} is for [Shell] if he is Shell's spokesperson.", "{Mia} works for [America] if she is an American ambassador.", "{Mia} does NOT work for the [Fox News] if she was interviewed on Fox News.", ], "subject-types": ["PER"], "object-types": ["ORG", "GPE"] },{ "name": "per:parents", "short": "child of", "template": "{subject} is the child of {object}.", "examples": [ "{Fisher}'s mother, [Debbie Reynolds].", ], "image": "parents.png", "icon": "fa-child", "subject-types": ["PER"], "object-types": ["PER"] },{ "name": "per:children", "short": "parent of", "template": "{subject} is the parent of {object}.", "examples": [ "{Debbie Reynolds} said [her daughter] was in a better place now.", ], "image": "parents.png", "icon": "fa-child", "subject-types": ["PER"], "object-types": ["PER"] },{ "name": "per:spouse", "short": "spouse", "template": "{subject} is/was the spouse of {object}.", "image": "spouse.svg", "examples": [ "{Barack Obama} thanked his wife, [Michelle].", ], "icon": "fa-diamond", "subject-types": ["PER"], "object-types": ["PER"] },{ "name": "per:siblings", "short": "sibling of", "template": "{subject} is the sibling of {object}.", "image": "sibling.png", "examples": [ "Obama said he was proud of his daughters {Malia} and [Sasha].", ], "icon": "fa-child", "subject-types": ["PER"], "object-types": ["PER"] },{ "name": "per:other_family", "short": "other family", "template": "{subject} and {object} are otherwise family.", "examples": ["Grandparents, cousins and uncles would be considered as other family."], "image": "other_family.png", "icon": "fa-child", "subject-types": ["PER"], "object-types": ["PER"] },{ "name": "per:title", "short": "professional title", "image": "", "icon": "fa-id-card-o", "examples": [ "Official [spokesperson] {Shayne Williams}", "[Wife] is NOT a title." ], "template": "{subject} is/was a {object}.", "subject-types": ["PER"], "object-types": ["TITLE"] // },{ // "name": "org:alternate_names", // "short": "alias", // "image": "alternate_names.svg", // "icon": "fa-address-book", // "template": "{subject} is also known as {object}.", // "examples": ["{Quantum Computer Services} was renamed [Americal Online]"], // "subject-types": ["ORG"], // "object-types": ["ORG"] },{ "name": "org:place_of_headquarters", "short": "headquartered at", "template": "{subject} is/was headquartered at {object}.", "examples": [ "[Singapore]-based {Flextronics}...", "A company is NOT headquartered in a city if it only has an office there.", ], "image": "", "icon": "fa-building-o", "subject-types": ["ORG"], "object-types": ["GPE"] },{ "name": "org:date_founded", "short": "founded on", "template": "{subject} was founded on {object}.", "examples": [ "Steve Jobs founded {Apple Inc.} in [1976].", ], "image": "founder.svg", "icon": "fa-building", "subject-types": ["ORG"], "object-types": ["DATE"] },{ "name": "org:date_dissolved", "short": "dissolved on", "template": "{subject} was closed/dissolved on {object}.", "image": "", "examples": [ "{Lehman Brothers} was sold to Nomura and Barclays in [2008].", ], "icon": "fa-trash-o", "subject-types": ["ORG"], "object-types": ["DATE"] },{ "name": "org:founded_by", "short": "founded by", "template": "{subject} was founded by {object}.", "examples": [ "{The association} was started by [Walmart].", ], "image": "founder.svg", "icon": "fa-black-tie", "subject-types": ["ORG"], "object-types": ["ORG", "GPE"] },{ "name": "org:member_of", "short": "member of", "template": "{subject} is/was a member of {object}, though {subject} can operate independently of {object}.", "image": "members.jpg", "examples": ["{Golden State Warriors} is a member of the [NBA]."], "icon": "fa-users", "subject-types": ["ORG"], "object-types": ["ORG", "GPE"] },{ "name": "org:members", "short": "has member", "template": "{subject} has/had {object} as a member, though {object} can operate independently of {subject}.", "image": "members.jpg", "examples": ["The {United Nations} has the [United States] as a member", "The {American Humane Society} has [Clover Farms] as a member"], "icon": "fa-users", "subject-types": ["ORG"], "object-types": ["ORG", "GPE"] },{ "name": "org:subsidiaries", "short": "parent of", "template": "{subject} owns/owned {object} and {object} can not exist without {subject}.", "image": "", "examples": [ "{Fox Entertainment Group} is the parent of [Fox News].", "{Google} is the parent of Google's [Board of Directors]."], "icon": "fa-sitemap", "subject-types": ["ORG"], "object-types": ["ORG"] },{ "name": "org:parents", "short": "subsidiary of", "template": "{subject} is/was a subsidiary of {object} and {subject} can not exist without {object}.", "image": "", "examples": ["The {Department of Homeland Security} is a subsidiary of the [U.S.]."], "icon": "fa-sitemap", "subject-types": ["ORG"], "object-types": ["ORG", "GPE"] },{ "name": "org:shareholders", "short": "shareholder", "template": "{object} is/was a shareholder of {subject}.", "image": "shareholders.png", "examples": [], "icon": "fa-line-chart", "subject-types": ["ORG"], "object-types": ["ORG", "GPE"] },{ "name": "org:holds_shares_in", "short": "holds shares in", "template": "{subject} holds/held shares in {object}.", "image": "shareholders.png", "examples": [], "icon": "fa-line-chart", "subject-types": ["ORG"], "object-types": ["ORG"] // ignoring org:employees_or_members -- we have per:employee_or_member_of // ignoring org:students -- we have per:schools_attended }]; var RelationLabel = function(r) { this.name = r.name; this.short = r.short; this.icon = r.icon; this.image = r.image; this.examples = r.examples; this.template = r.template; this.subjectTypes = r["subject-types"]; this.objectTypes = r["object-types"]; }; RelationLabel.prototype.renderTemplate = function(mentionPair, useLink) { if (useLink === undefined){ useLink = false; } var subject = (useLink && mentionPair.subject.entity.gloss) ? mentionPair.subject.entity.gloss : mentionPair.subject.gloss; var object = (useLink && mentionPair.object.entity.gloss) ? mentionPair.object.entity.gloss : mentionPair.object.gloss; return this.template .replaceAll("{subject}", "<span class='subject'>" + subject + "</span>") .replaceAll("{object}", "<span class='object'>" + object + "</span>"); }; RelationLabel.prototype.isApplicable = function(mentionPair) { return this.subjectTypes.indexOf(mentionPair.subject.type.name) >= 0 && this.objectTypes.indexOf(mentionPair.object.type.name) >= 0; }; var RELATIONS = []; var RELATION_MAP = []; _RELATIONS.forEach(function(r) {RELATIONS.push(new RelationLabel(r));}); _RELATIONS.forEach(function(r) {RELATION_MAP[r.name] = new RelationLabel(r);}); var _TYPES = [ { "idx": 0, "name": "PER", "gloss": "Person", "icon": "fa-user", "linking": "wiki-search", },{ "idx": 1, "name": "ORG", "gloss": "Organization", "icon": "fa-building", "linking": "wiki-search", },{ "idx": 2, "name": "GPE", "gloss": "City/State/Country", "icon": "fa-globe", "linking": "wiki-search", },{ "idx": 3, "name": "DATE", "gloss": "Date", "icon": "fa-calendar", "linking": "date-picker", },{ "idx": 4, "name": "TITLE", "gloss": "Title", "icon": "fa-id-card-o", "linking": "", } ]; var EntityType = function(t) { this.name = t.name; this.gloss = t.gloss; this.icon = t.icon; }; var TYPES = {}; _TYPES.forEach(function(t) {TYPES[t.name] = t;}); // var Mention = function(m) { this.id = Mention.count++; if (typeof m.type == "string") { this.type = m.type && TYPES[m.type]; } else { this.type = m.type && m.type.name && TYPES[m.type.name]; } this.gloss = m.gloss; this.span = m.span; this.entity = m.entity; // can be undefined. // this.tokens = m.tokens; // this.sentenceIdx = m.sentenceIdx || m.tokens[0].sentenceIdx; }; Mention.count = 0; Mention.fromTokens = function(tokens) { let m = new Mention({ "type": undefined, "gloss": Mention.textFromTokens(tokens), "span": tokens[0].token.span, }); m.setTokens(tokens); m.setSentenceIdx(tokens[0].sentenceIdx); return m; }; Mention.fromJSON = function(m, doc) { let mention = new Mention(m); doc.addMention(mention); if (m.entity !== undefined) { // uh, create a new canonical mention and make it an entity. let canonicalMention = new Mention(m.entity); doc.addMention(canonicalMention); canonicalMention.link = m.entity.link; mention.entity = new Entity(canonicalMention); } return mention; }; Mention.textFromTokens = function(tokens) { text = ""; for (i = 0; i < tokens.length; i++){ if (tokens[i].classList.contains("with-space")) { text += " "; } text += tokens[i].textContent; } return text; }; Mention.prototype.setTokens = function(tokens) { this.tokens = tokens; } Mention.prototype.setSentenceIdx = function(sentenceIdx) { this.sentenceIdx = sentenceIdx; } Mention.prototype.setElem = function(elem) { this.elem = elem; } // Compute levenshtein distance from input @string Mention.prototype.levenshtein = function(string){ temp = this; var first_words = this.gloss.trim().toLowerCase().split(/\s+/); var second_words = string.trim().split(/\s+/); var min_distance = 1000; for(var i=0;i<first_words.length; i++){ for(var j=0;j<second_words.length; j++){ var distance = Levenshtein.get($.trim(first_words[i]), $.trim(second_words[j])); if(distance < min_distance){ min_distance = distance; } } } return min_distance; }; Mention.prototype.toJSON = function() { var val = { "gloss": this.gloss, "type": this.type.name, "span": this.span, "entity": (this.entity) ? { "gloss": this.entity.gloss, "type": this.type.name, "link": this.entity.link, "span": this.entity.span, "canonicalCorrect": this.canonicalCorrect, "linkGold": this.linkGold, } : null }; if (this.entity.canonicalCorrect !== undefined){ val.entity.canonicalCorrect = this.entity.canonicalCorrect; } if (this.entity.linkGold !== undefined){ val.entity.linkGold = this.entity.linkGold; } return val; }; // Creates a new entity from a @canonical_mention and @type. function Entity(canonicalMention) { this.idx = 1 + Entity.count++; this.id = "e-" + this.idx; this.gloss = canonicalMention.gloss; this.type = canonicalMention.type; this.span = canonicalMention.span; this.mentions = []; this.link = canonicalMention.link; this.addMention(canonicalMention); } Entity.count = 0; Entity.map = {}; Entity.prototype.addMention = function(mention) { console.info("Adding mention", mention.gloss, "to", this.gloss); // Set the type of the mention if it hasn't already been set. if (mention.type === null) { mention.type = this.type; } mention.entity = this; this.mentions.push(mention); Entity.map[mention.id] = this; }; // Returns "true" if the mention has > 0 mentions. Entity.prototype.removeMention = function(mention) { console.info("Removing mention ", mention); var index = this.mentions.indexOf(mention); console.assert(index > -1); if (index > -1) { this.mentions.splice(index, 1); } delete Entity.map[mention.id]; return (this.mentions.length > 0); }; // returns the minimum levenshtein distance from all the mentions in the // entity. Entity.prototype.levenshtein = function(mentionText) { var lowerMentionText = mentionText.toLowerCase(); var bestMatch = null; var bestScore = 1000; for (var i = 0; i < this.mentions.length; i++) { var score = this.mentions[i].levenshtein(lowerMentionText); if (bestScore > score && this.mentions[i].tokens[0].token.pos_tag != "PRP") { bestScore = score; bestMatch = this.mentions[i]; } } return bestScore; }; return { 'RELATIONS': RELATIONS, 'RELATION_MAP': RELATION_MAP, 'TYPES': TYPES, 'Mention': Mention, 'Entity': Entity, }; });
const wd = require('selenium-webdriver'); const Driver = require('selenium-webdriver/chrome').Driver; const format = v=>typeof v == 'string' ? "'" + v + "'" : v; const result = v=>`<span style="font-size:20px;color:#${v ? '0a0' : 'a00'}">${v}</span>`; const DRIVER = Symbol(); module.exports = class{ constructor(url){ this[DRIVER] = new Driver(); this[DRIVER].get(url); Object.freeze(this); } report(value){ this[DRIVER].executeScript( `document.getElementById('report').innerHTML += "<li>${value}</li>";` ); } assert(title, value, expect){ const v = [ '<li>', `<h3>${title}</h3>`, `<div>value:${format(value)} == expect:${format(expect)}</div>`, `<div>${result(value === expect)}`, '</li>' ].join(''); this[DRIVER].executeScript(`document.getElementById('report').innerHTML += "${v.replace(/["]/g,'\\"')}";`); } quit(){ this[DRIVER].quit(); } };
/*-------------------------------------------------*/ /* = App config /*-------------------------------------------------*/ window.duyetdevConfig = window.duyetdevConfig || {}; window.duyetdevConfig.instagramClientId = '8b9b2f3dfbaf403497ea3379c424b9ed'; /*-------------------------------------------------*/ /* = Full-window section /*-------------------------------------------------*/ var windowHeight = $(window).height(), topSection = $('.section'); topSection.css('height', windowHeight); $(window).resize(function() { var windowHeight = $(window).height(); topSection.css('height', windowHeight); }); /* ============================================== Preloader =============================================== */ $(window).load(function() { $('.status').fadeOut(); $('#preloader').delay(350).fadeOut('slow'); }); /* ============================================== Github project =============================================== */ function render_project_datatable(table_id, github) { if (!github) return false; $(table_id || '#github').DataTable({ "data": github.data, "columns": [ {"data": "name"}, {"data": "description"}, {"data": "language"}, {"data": "clone_url"}, {"data": "statuses_url"} ], "fnRowCallback": function( nRow, aData, iDisplayIndex ) { $('td:eq(0)', nRow).html('<a href="' + aData.html_url + '"><strong>' + aData.name + '</strong></a>'); $('td:eq(3)', nRow).html('<a href="' + aData.html_url + '">' + aData.git_url + '</a>'); $('td:eq(4)', nRow).html('<iframe src="https://ghbtns.com/github-btn.html?user='+ aData.owner.login +'&repo='+ aData.name +'&type=star&count=true" frameborder="0" scrolling="0" width="160px" height="30px"></iframe>'); return nRow; }, "info": false, "paging": false, "bFilter": false }); } function render_project_datatable_1(github) { return render_project_datatable('#github_1', github); } function render_project_datatable_2(github) { return render_project_datatable('#github_2', github); } function render_project_datatable_3(github) { return render_project_datatable('#github_3', github); } function render_project_datatable_4(github) { return render_project_datatable('#github_4', github); } function render_project_datatable_5(github) { return render_project_datatable('#github_5', github); } function render_project_datatable_6(github) { return render_project_datatable('#github_6', github); } function render_project_datatable_7(github) { return render_project_datatable('#github_7', github); } function render_project_datatable_8(github) { return render_project_datatable('#github_8', github); } /* Lasted blogs */ function duyetdevRelatedPost(xml) { var limit = -1; var utm_query = 'utm_source=duyetdev-me-site&utm_medium=link&utm_campaign=from-me-site-tracker'; var _ul = $('<ul></ul>'); var _i = 0; $(xml).find('entry').each(function(){ if (_i >= limit && limit > 0) return; var _a = $('<a></a>'); var title = $(this).find('title').eq(0).text(); var link = $(this).find('link[rel=\'alternate\']').attr('href'); if (link && link != undefined) { _a.html(title); _a.attr('href', link + '?' + utm_query); _a.attr('title', title); _ul.append($('<li></li>').html(_a)); _i++; } }); $("#lasted").html(_ul); }
var indexed_data_color = "#ff7256"; var changed_data_color = "SkyBlue"; function create_1d2d_array(id, data) { "use strict"; var width = 65; var height = 50; var svg = d3.select(id) .append("svg") .attr("width", d3.max(data, function (d) {return (d.x+1)*width;})) .attr("height", d3.max(data, function (d) {return (d.y+1)*height;})) .style("background-color", "white"); var rects = svg.selectAll("rect") .data(data) .enter() .append("rect"); rects.style("fill", "white") .style("stroke", "black") .attr("height", function(d) {return height;}) .attr("width", function(d) {return width;}) .attr("x", function(d) {return d.x*width;}) .attr("y", function(d) {return d.y*height;}); var labels = svg.selectAll("text") .data(data) .enter() .append("text"); labels.attr("x", function(d) {return d.x*width+(width/2);}) .attr("y", function(d) {return d.y*height+(height/2);}) .attr("text-anchor", "middle") .attr("alignment-baseline", "central") .text(function(d){return d.value;}); } function cria_array_indexes(id, data, svg_widget, svg_height) { "use strict"; // svg_widget e svg_height são opcionais e se não forem fornecidos eles // serão calculados automaticamente var w = 80; var h = 50; var svg = d3.select(id) .attr("stroke", "#000") .attr("font-size", "20pt"); if (svg_widget === undefined || svg_height === undefined) { var svg_w = d3.max(data, function (d) {return (d.j+1)*w;}); var svg_h = d3.max(data, function (d) {return (d.i+1)*h;}); svg.attr("width", svg_w).attr("height", svg_h); } else { svg.attr("width", svg_widget).attr("height", svg_height); } var groups = svg.selectAll("g.elemento").data(data); groups.exit().remove(); groups = groups .enter() .append("g") .attr("class", "elemento") // Seto essa classe para facilitar o selectAll (não pegar 'g's sem a classe .each(function() { d3.select(this).append("rect").attr("width", w).attr("height", h); d3.select(this).append("text").attr("x", w/2 ).attr("y", h/2 ).attr("text-anchor", "middle").attr("alignment-baseline", "central"); }) .merge(groups); // Atualiza a localização dos elementos (retângulos e textos) groups.transition() .duration(1000) .delay(function(d) {return d.delay || null;}) .attr("transform", function(d) {return "translate({x},{y})".replace("{x}", d.j * w).replace("{y}", d.i * h);}) .attr("opacity", function(d) {return d.opacity || null;}); // select não cria um novo grupo e nós mantemos os dados do parent (os "g"s no SVG) var rects = groups.select("rect"); rects.transition().duration(1000) .attr("fill", function(d) {return d.fill;}); var texts = groups.select("text"); texts.text(function(d) {return d.value;}); } function update_indexa_array() { "use strict"; var currentSlideId = Reveal.getCurrentSlide().id; if (currentSlideId === "indexando_arrays") { var currentFragment = Reveal.getIndices().f; var index_data = [ {i:0, j:0, value: 0, fill: "white"}, {i:0, j:1, value: 1, fill: "white"}, {i:0, j:2, value: 8, fill: "white"}, {i:0, j:3, value: 27, fill: "white"}, {i:0, j:4, value: 64, fill: "white"}, {i:0, j:5, value: 125, fill: "white"}, {i:0, j:6, value: 216, fill: "white"}, {i:0, j:7, value: 343, fill: "white"}, {i:0, j:8, value: 512, fill: "white"}, {i:0, j:9, value: 729, fill: "white"}, ]; switch (currentFragment) { case 0: index_data[2].fill = indexed_data_color; break; case 1: index_data[2].fill = indexed_data_color; index_data[3].fill = indexed_data_color; index_data[4].fill = indexed_data_color; break; case 2: index_data[0].value = -1000; index_data[0].fill = changed_data_color; index_data[2].value = -1000; index_data[2].fill = changed_data_color; index_data[4].value = -1000; index_data[4].fill = changed_data_color; break; case 3: index_data = [ {i:0, j:9, value: -1000, fill: indexed_data_color}, {i:0, j:8, value: 1, fill: indexed_data_color}, {i:0, j:7, value: -1000, fill: indexed_data_color}, {i:0, j:6, value: 27, fill: indexed_data_color}, {i:0, j:5, value: -1000, fill: indexed_data_color}, {i:0, j:4, value: 125, fill: indexed_data_color}, {i:0, j:3, value: 216, fill: indexed_data_color}, {i:0, j:2, value: 343, fill: indexed_data_color}, {i:0, j:1, value: 512, fill: indexed_data_color}, {i:0, j:0, value: 729, fill: indexed_data_color}, ]; break; } cria_array_indexes("#indexando-arrays-placeholder", index_data); } } function update_indexa_array2() { "use strict"; var currentSlideId = Reveal.getCurrentSlide().id; if (currentSlideId === "indexando_arrays2") { var currentFragment = Reveal.getIndices().f; var index_data = [ {i:0, j:0, value: 0, fill: "white"}, {i:0, j:1, value: 1, fill: "white"}, {i:0, j:2, value: 2, fill: "white"}, {i:0, j:3, value: 3, fill: "white"}, {i:1, j:0, value: 10, fill: "white"}, {i:1, j:1, value: 11, fill: "white"}, {i:1, j:2, value: 12, fill: "white"}, {i:1, j:3, value: 13, fill: "white"}, {i:2, j:0, value: 20, fill: "white"}, {i:2, j:1, value: 21, fill: "white"}, {i:2, j:2, value: 22, fill: "white"}, {i:2, j:3, value: 23, fill: "white"}, {i:3, j:0, value: 30, fill: "white"}, {i:3, j:1, value: 31, fill: "white"}, {i:3, j:2, value: 32, fill: "white"}, {i:3, j:3, value: 33, fill: "white"}, {i:4, j:0, value: 40, fill: "white"}, {i:4, j:1, value: 41, fill: "white"}, {i:4, j:2, value: 42, fill: "white"}, {i:4, j:3, value: 43, fill: "white"} ]; function get_linear_idx(i, j) { return i*4 + j; } switch (currentFragment) { case 0: index_data[get_linear_idx(2, 3)].fill = indexed_data_color; break; case 1: // Case 1 é igual ao case 2 case 2: index_data[get_linear_idx(0,1)].fill = indexed_data_color; index_data[get_linear_idx(1,1)].fill = indexed_data_color; index_data[get_linear_idx(2,1)].fill = indexed_data_color; index_data[get_linear_idx(3,1)].fill = indexed_data_color; index_data[get_linear_idx(4,1)].fill = indexed_data_color; break; case 3: index_data[get_linear_idx(1,0)].fill = indexed_data_color; index_data[get_linear_idx(1,1)].fill = indexed_data_color; index_data[get_linear_idx(1,2)].fill = indexed_data_color; index_data[get_linear_idx(1,3)].fill = indexed_data_color; index_data[get_linear_idx(2,0)].fill = indexed_data_color; index_data[get_linear_idx(2,1)].fill = indexed_data_color; index_data[get_linear_idx(2,2)].fill = indexed_data_color; index_data[get_linear_idx(2,3)].fill = indexed_data_color; break; case 4: index_data[get_linear_idx(0,0)].fill = indexed_data_color; index_data[get_linear_idx(0,1)].fill = indexed_data_color; index_data[get_linear_idx(0,2)].fill = indexed_data_color; index_data[get_linear_idx(0,3)].fill = indexed_data_color; break; case 5: index_data[get_linear_idx(4,0)].fill = indexed_data_color; index_data[get_linear_idx(4,1)].fill = indexed_data_color; index_data[get_linear_idx(4,2)].fill = indexed_data_color; index_data[get_linear_idx(4,3)].fill = indexed_data_color; break; case 6: index_data[get_linear_idx(2,0)].fill = indexed_data_color; index_data[get_linear_idx(3,0)].fill = indexed_data_color; index_data[get_linear_idx(2,2)].fill = indexed_data_color; index_data[get_linear_idx(3,2)].fill = indexed_data_color; } cria_array_indexes("#indexando-arrays-placeholder2", index_data); } } function update_indexa_array3() { "use strict"; var currentSlideId = Reveal.getCurrentSlide().id; if (currentSlideId === "indexando_arrays3") { var currentFragment = Reveal.getIndices().f; var index_data = [ {i:0, j:0, value: 39, fill: "white"}, {i:0, j:1, value: 87, fill: "white"}, {i:0, j:2, value: 96, fill: "white"}, {i:0, j:3, value: 97, fill: "white"}, {i:0, j:4, value: 72, fill: "white"}, {i:1, j:0, value: 20, fill: "white"}, {i:1, j:1, value: 5, fill: "white"}, {i:1, j:2, value: 68, fill: "white"}, {i:1, j:3, value: 48, fill: "white"}, {i:1, j:4, value: 23, fill: "white"}, {i:2, j:0, value: 83, fill: "white"}, {i:2, j:1, value: 70, fill: "white"}, {i:2, j:2, value: 12, fill: "white"}, {i:2, j:3, value: 73, fill: "white"}, {i:2, j:4, value: 31, fill: "white"}, {i:3, j:0, value: 0, fill: "white"}, {i:3, j:1, value: 46, fill: "white"}, {i:3, j:2, value: 94, fill: "white"}, {i:3, j:3, value: 30, fill: "white"}, {i:3, j:4, value: 87, fill: "white"} ]; function get_linear_idx(i, j) { return i*5 + j; } var i, j; switch (currentFragment) { case 0: for(i = 0; i < 5; i++) { index_data[get_linear_idx(1, i)].fill = indexed_data_color; index_data[get_linear_idx(2, i)].fill = indexed_data_color; } break; case 1: for(i = 0; i < 4; i++) { for(j = 0; j < 5; j++) { if (index_data[get_linear_idx(i, j)].value < 30) { (index_data[get_linear_idx(i, j)]).fill = indexed_data_color; } } } break; // Case 1 é igual ao case 2 case 2: for(i = 0; i < 4; i++) { for(j = 0; j < 5; j++) { if (index_data[get_linear_idx(i, j)].value >= 30) { (index_data[get_linear_idx(i, j)]).fill = indexed_data_color; } } } break; case 3: for(i = 0; i < 4; i++) { index_data[get_linear_idx(i, 3)].fill = indexed_data_color; } break; } cria_array_indexes("#indexando-arrays-placeholder3", index_data); } } function update_manipulando_o_shape() { "use strict"; var currentSlideId = Reveal.getCurrentSlide().id; if (currentSlideId === "manipulando_o_shape") { var currentFragment = Reveal.getIndices().f; function get_linear_idx(i, j) { return i*3 + j; } var shape_changed_color1 = "#ffffff"; var shape_changed_color2 = "#eeeeee"; var shape_changed_color3 = "#dddddd"; var shape_changed_color4 = "#cccccc"; var shape_changed_color5 = "#bbbbbb"; var shape_changed_color6 = "#aaaaaa"; var shape_changed_color7 = "#999999"; var shape_changed_color8 = "#888888"; var shape_changed_color9 = "#777777"; var shape_changed_color10 = "#666666"; var shape_changed_color11 = "#555555"; var shape_changed_color12 = "#444444"; var index_data = [ {i:0, j:0, value: "2.", fill:shape_changed_color1}, {i:0, j:1, value: "8.", fill:shape_changed_color2}, {i:0, j:2, value: "0.", fill:shape_changed_color3}, {i:0, j:3, value: "6.", fill:shape_changed_color4}, {i:1, j:0, value: "4.", fill:shape_changed_color5}, {i:1, j:1, value: "5.", fill:shape_changed_color6}, {i:1, j:2, value: "1.", fill:shape_changed_color7}, {i:1, j:3, value: "1.", fill:shape_changed_color8}, {i:2, j:0, value: "8.", fill:shape_changed_color9}, {i:2, j:1, value: "9.", fill:shape_changed_color10}, {i:2, j:2, value: "3.", fill:shape_changed_color11}, {i:2, j:3, value: "6.", fill:shape_changed_color12}]; switch (currentFragment) { case 2: case 3: index_data = [ {i:0, j:0, value: "2.", fill:shape_changed_color1}, {i:0, j:1, value: "8.", fill:shape_changed_color2}, {i:1, j:0, value: "0.", fill:shape_changed_color3}, {i:1, j:1, value: "6.", fill:shape_changed_color4}, {i:2, j:0, value: "4.", fill:shape_changed_color5}, {i:2, j:1, value: "5.", fill:shape_changed_color6}, {i:3, j:0, value: "1.", fill:shape_changed_color7}, {i:3, j:1, value: "1.", fill:shape_changed_color8}, {i:4, j:0, value: "8.", fill:shape_changed_color9}, {i:4, j:1, value: "9.", fill:shape_changed_color10}, {i:5, j:0, value: "3.", fill:shape_changed_color11}, {i:5, j:1, value: "6.", fill:shape_changed_color12}]; break; case 4: index_data = [ {i:0, j:0, value: "2.", fill:shape_changed_color1}, {i:0, j:1, value: "8.", fill:shape_changed_color2}, {i:0, j:2, value: "0.", fill:shape_changed_color3}, {i:0, j:3, value: "6.", fill:shape_changed_color4}, {i:0, j:4, value: "4.", fill:shape_changed_color5}, {i:0, j:5, value: "5.", fill:shape_changed_color6}, {i:1, j:0, value: "1.", fill:shape_changed_color7}, {i:1, j:1, value: "1.", fill:shape_changed_color8}, {i:1, j:2, value: "8.", fill:shape_changed_color9}, {i:1, j:3, value: "9.", fill:shape_changed_color10}, {i:1, j:4, value: "3.", fill:shape_changed_color11}, {i:1, j:5, value: "6.", fill:shape_changed_color12}]; } // 270.72x166.38 // 135.36x293.28 //320x150 //160x300 //480x100 cria_array_indexes("#manipulando_o_shape_placeholder", index_data, 480, 300); } } function update_C_order() { "use strict"; var currentSlideId = Reveal.getCurrentSlide().id; if (currentSlideId === "memory_order") { var currentFragment = Reveal.getIndices().f; var data_c_order = [ {i:0, j:0, value: "1", fill: "DimGray"}, {i:0, j:1, value: "2", fill: "DimGray"}, {i:0, j:2, value: "3", fill: "DimGray"}, {i:1, j:0, value: "4", fill: "gainsboro"}, {i:1, j:1, value: "5", fill: "gainsboro"}, {i:1, j:2, value: "6", fill: "gainsboro"}, // Metade que vai shiftar para a memória {i:0, j:0, value: "1", fill: "DimGray"}, {i:0, j:1, value: "2", fill: "DimGray"}, {i:0, j:2, value: "3", fill: "DimGray"}, {i:1, j:0, value: "4", fill: "gainsboro"}, {i:1, j:1, value: "5", fill: "gainsboro"}, {i:1, j:2, value: "6", fill: "gainsboro"}, ]; switch (currentFragment) { case 2: case 3: data_c_order = [ {i:0, j:0, value: "1", fill: "DimGray"}, {i:0, j:1, value: "2", fill: "DimGray"}, {i:0, j:2, value: "3", fill: "DimGray"}, {i:1, j:0, value: "4", fill: "gainsboro"}, {i:1, j:1, value: "5", fill: "gainsboro"}, {i:1, j:2, value: "6", fill: "gainsboro"}, // Metade que vai shiftar para a memória {i:0.5, j:5, value: "1", fill: "DimGray", delay:0}, {i:0.5, j:6, value: "2", fill: "DimGray", delay:200}, {i:0.5, j:7, value: "3", fill: "DimGray", delay:400}, {i:0.5, j:8, value: "4", fill: "gainsboro", delay:600}, {i:0.5, j:9, value: "5", fill: "gainsboro", delay:800}, {i:0.5, j:10, value: "6", fill: "gainsboro", delay:1000}, ]; break; } cria_array_indexes("#c_order", data_c_order, 880, 100); } } function update_fortran_order() { "use strict"; var currentSlideId = Reveal.getCurrentSlide().id; if (currentSlideId === "memory_order") { var currentFragment = Reveal.getIndices().f; var data_fortran_order = [ {i:0, j:0, value: "1", fill: "DimGray"}, {i:0, j:1, value: "2", fill: "LightGray"}, {i:0, j:2, value: "3", fill: "WhiteSmoke"}, {i:1, j:0, value: "4", fill: "DimGray"}, {i:1, j:1, value: "5", fill: "LightGray"}, {i:1, j:2, value: "6", fill: "WhiteSmoke"}, // Metade que vai shiftar para memória {i:0, j:0, value: "1", fill: "DimGray"}, {i:0, j:1, value: "2", fill: "LightGray"}, {i:0, j:2, value: "3", fill: "WhiteSmoke"}, {i:1, j:0, value: "4", fill: "DimGray"}, {i:1, j:1, value: "5", fill: "LightGray"}, {i:1, j:2, value: "6", fill: "WhiteSmoke"}, ]; switch (currentFragment) { case 3: data_fortran_order = [ {i:0, j:0, value: "1", fill: "DimGray"}, {i:0, j:1, value: "3", fill: "LightGray"}, {i:0, j:2, value: "5", fill: "WhiteSmoke"}, {i:1, j:0, value: "2", fill: "DimGray"}, {i:1, j:1, value: "4", fill: "LightGray"}, {i:1, j:2, value: "6", fill: "WhiteSmoke"}, // Metade que vai shiftar para memória {i:0.5, j:5, value: "1", fill: "DimGray", delay:0}, {i:0.5, j:7, value: "3", fill: "LightGray", delay:600}, {i:0.5, j:9, value: "5", fill: "WhiteSmoke", delay:1200}, {i:0.5, j:6, value: "2", fill: "DimGray", delay:300}, {i:0.5, j:8, value: "4", fill: "LightGray", delay:900}, {i:0.5, j:10, value: "6", fill: "WhiteSmoke", delay:1500}, ]; break; } cria_array_indexes("#fortran_order", data_fortran_order, 880, 100); } } function update_broadcast() { "use strict"; var currentSlideId = Reveal.getCurrentSlide().id; if (currentSlideId === "broadcast") { var currentFragment = Reveal.getIndices().f; var data_matrix = [ {i:0, j:0, value: "0", fill: "white"}, {i:0, j:1, value: "0", fill: "white"}, {i:0, j:2, value: "0", fill: "white"}, {i:1, j:0, value: "10", fill: "white"}, {i:1, j:1, value: "10", fill: "white"}, {i:1, j:2, value: "10", fill: "white"}, {i:2, j:0, value: "20", fill: "white"}, {i:2, j:1, value: "20", fill: "white"}, {i:2, j:2, value: "20", fill: "white"}, {i:3, j:0, value: "30", fill: "white"}, {i:3, j:1, value: "30", fill: "white"}, {i:3, j:2, value: "30", fill: "white"}, // {i:0, j:4.5, value: "0", fill: "white"}, {i:0, j:5.5, value: "1", fill: "white"}, {i:0, j:6.5, value: "2", fill: "white"}, {i:0, j:4.5, value: "0", fill: "white", opacity: 0}, {i:0, j:5.5, value: "1", fill: "white", opacity: 0}, {i:0, j:6.5, value: "2", fill: "white", opacity: 0}, {i:0, j:4.5, value: "0", fill: "white", opacity: 0}, {i:0, j:5.5, value: "1", fill: "white", opacity: 0}, {i:0, j:6.5, value: "2", fill: "white", opacity: 0}, {i:0, j:4.5, value: "0", fill: "white", opacity: 0}, {i:0, j:5.5, value: "1", fill: "white", opacity: 0}, {i:0, j:6.5, value: "2", fill: "white", opacity: 0}, {i:0, j:9, value: "0", fill: "white", opacity: 0}, {i:0, j:10, value: "1", fill: "white", opacity: 0}, {i:0, j:11, value: "2", fill: "white", opacity: 0}, {i:1, j:9, value: "10", fill: "white", opacity: 0}, {i:1, j:10, value: "11", fill: "white", opacity: 0}, {i:1, j:11, value: "12", fill: "white", opacity: 0}, {i:2, j:9, value: "20", fill: "white", opacity: 0}, {i:2, j:10, value: "21", fill: "white", opacity: 0}, {i:2, j:11, value: "22", fill: "white", opacity: 0}, {i:3, j:9, value: "30", fill: "white", opacity: 0}, {i:3, j:10, value: "31", fill: "white", opacity: 0}, {i:3, j:11, value: "32", fill: "white", opacity: 0} ]; switch (currentFragment) { case 3: case 4: data_matrix = [ {i:0, j:0, value: "0", fill: "white"}, {i:0, j:1, value: "0", fill: "white"}, {i:0, j:2, value: "0", fill: "white"}, {i:1, j:0, value: "10", fill: "white"}, {i:1, j:1, value: "10", fill: "white"}, {i:1, j:2, value: "10", fill: "white"}, {i:2, j:0, value: "20", fill: "white"}, {i:2, j:1, value: "20", fill: "white"}, {i:2, j:2, value: "20", fill: "white"}, {i:3, j:0, value: "30", fill: "white"}, {i:3, j:1, value: "30", fill: "white"}, {i:3, j:2, value: "30", fill: "white"}, // {i:0, j:4.5, value: "0", fill: "white"}, {i:0, j:5.5, value: "1", fill: "white"}, {i:0, j:6.5, value: "2", fill: "white"}, {i:1, j:4.5, value: "0", fill: "LightGray", opacity: 1}, {i:1, j:5.5, value: "1", fill: "LightGray", opacity: 1}, {i:1, j:6.5, value: "2", fill: "LightGray", opacity: 1}, {i:2, j:4.5, value: "0", fill: "LightGray", opacity: 1}, {i:2, j:5.5, value: "1", fill: "LightGray", opacity: 1}, {i:2, j:6.5, value: "2", fill: "LightGray", opacity: 1}, {i:3, j:4.5, value: "0", fill: "LightGray", opacity: 1}, {i:3, j:5.5, value: "1", fill: "LightGray", opacity: 1}, {i:3, j:6.5, value: "2", fill: "LightGray", opacity: 1}, // {i:0, j:9, value: "0", fill: "white", opacity: 1}, {i:0, j:10, value: "1", fill: "white", opacity: 1}, {i:0, j:11, value: "2", fill: "white", opacity: 1}, {i:1, j:9, value: "10", fill: "white", opacity: 1}, {i:1, j:10, value: "11", fill: "white", opacity: 1}, {i:1, j:11, value: "12", fill: "white", opacity: 1}, {i:2, j:9, value: "20", fill: "white", opacity: 1}, {i:2, j:10, value: "21", fill: "white", opacity: 1}, {i:2, j:11, value: "22", fill: "white", opacity: 1}, {i:3, j:9, value: "30", fill: "white", opacity: 1}, {i:3, j:10, value: "31", fill: "white", opacity: 1}, {i:3, j:11, value: "32", fill: "white", opacity: 1} ]; break; } cria_array_indexes("#broadcast-placeholder", data_matrix, 960, 200); // Adiciona o operador de soma var svg = d3.select("#broadcast-placeholder"); var operators_g = svg.select("g.operators"); if (operators_g.empty() === true) { var w = 80; var h = 50; operators_g = svg.append("g").attr("class", ".operators"); operators_g .attr("stroke", "white") .attr("fill", "white") .attr("font-size", 50) .attr("text-anchor", "middle") .attr("alignment-baseline", "central") .attr("transform", `translate(${3.75*w}, ${2*h})`); operators_g.append("text") .text("+") .attr("alignment-baseline", "central"); operators_g.append("text") .text("=") .attr("x", 4.5*w) .attr("alignment-baseline", "central"); } } } function update_axis_params() { "use strict"; var currentSlideId = Reveal.getCurrentSlide().id; if (currentSlideId === "axis-params") { var currentFragment = Reveal.getIndices().f; var data = [ {i:0, j:0, value: "31", fill: "white", opacity:"1"}, {i:0, j:1, value: "11", fill: "white", opacity:"1"}, {i:0, j:2, value: "15", fill: "white", opacity:"1"}, {i:0, j:3, value: "69", fill: "white", opacity:"1"}, {i:1, j:0, value: "8 ", fill: "white", opacity:"1"}, {i:1, j:1, value: "75", fill: "white", opacity:"1"}, {i:1, j:2, value: "68", fill: "white", opacity:"1"}, {i:1, j:3, value: "54", fill: "white", opacity:"1"}, {i:2, j:0, value: "31", fill: "white", opacity:"1"}, {i:2, j:1, value: "47", fill: "white", opacity:"1"}, {i:2, j:2, value: "86", fill: "white", opacity:"1"}, {i:2, j:3, value: "23", fill: "white", opacity:"1"}, {i:1, j:1.5, value: "518", fill: "white", opacity:"0"}, {i:1, j:0, value: "70", fill: "white", opacity:"0"}, {i:1, j:1, value: "133", fill: "white", opacity:"0"}, {i:1, j:2, value: "169", fill: "white", opacity:"0"}, {i:1, j:3, value: "146", fill: "white", opacity:"0"}, {i:0, j:1.5, value: "126", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "205", fill: "white", opacity:"0"}, {i:2, j:1.5, value: "187", fill: "white", opacity:"0"}, ]; switch (currentFragment) { case 0: data = [ {i:1, j:1.5, value: "31", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "11", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "15", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "69", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "8", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "75", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "68", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "54", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "31", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "47", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "86", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "23", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "518", fill: "white", opacity:"1"}, ]; break; case 2: data = [ {i:1, j:0, value: "31", fill: "white", opacity:"0"}, {i:1, j:1, value: "11", fill: "white", opacity:"0"}, {i:1, j:2, value: "15", fill: "white", opacity:"0"}, {i:1, j:3, value: "69", fill: "white", opacity:"0"}, {i:1, j:0, value: "8", fill: "white", opacity:"0"}, {i:1, j:1, value: "75", fill: "white", opacity:"0"}, {i:1, j:2, value: "68", fill: "white", opacity:"0"}, {i:1, j:3, value: "54", fill: "white", opacity:"0"}, {i:1, j:0, value: "31", fill: "white", opacity:"0"}, {i:1, j:1, value: "47", fill: "white", opacity:"0"}, {i:1, j:2, value: "86", fill: "white", opacity:"0"}, {i:1, j:3, value: "23", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "518", fill: "white", opacity:"0"}, {i:1, j:0, value: "70", fill: "white", opacity:"1"}, {i:1, j:1, value: "133", fill: "white", opacity:"1"}, {i:1, j:2, value: "169", fill: "white", opacity:"1"}, {i:1, j:3, value: "146", fill: "white", opacity:"1"}, ]; break; case 4: data = [ {i:0, j:1.5, value: "31", fill: "white", opacity:"0"}, {i:0, j:1.5, value: "11", fill: "white", opacity:"0"}, {i:0, j:1.5, value: "15", fill: "white", opacity:"0"}, {i:0, j:1.5, value: "69", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "8", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "75", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "68", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "54", fill: "white", opacity:"0"}, {i:2, j:1.5, value: "31", fill: "white", opacity:"0"}, {i:2, j:1.5, value: "47", fill: "white", opacity:"0"}, {i:2, j:1.5, value: "86", fill: "white", opacity:"0"}, {i:2, j:1.5, value: "23", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "518", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "70", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "133", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "169", fill: "white", opacity:"0"}, {i:1, j:1.5, value: "146", fill: "white", opacity:"0"}, {i:0, j:1.5, value: "126", fill: "white", opacity:"1"}, {i:1, j:1.5, value: "205", fill: "white", opacity:"1"}, {i:2, j:1.5, value: "187", fill: "white", opacity:"1"}, ]; } cria_array_indexes("#axis-param-placeholder", data, 320, 150); } } function update_baterias() { "use strict"; var currentSlideId = Reveal.getCurrentSlide().id; if (currentSlideId === "baterias") { var svg = d3.select(document.getElementById("scientific_stack").contentDocument).select("svg"); var currentFragment = Reveal.getIndices().f; svg.selectAll(".numpy").classed("hidden", true); svg.selectAll(".scipy").classed("hidden", true); svg.selectAll(".plots").classed("hidden", true); svg.selectAll(".ipython").classed("hidden", true); svg.selectAll(".ides").classed("hidden", true); switch (currentFragment) { case 0: svg.selectAll(".numpy").classed("hidden", false); svg.selectAll(".scipy").classed("hidden", true); svg.selectAll(".plots").classed("hidden", true); svg.selectAll(".ipython").classed("hidden", true); svg.selectAll(".ides").classed("hidden", true); break; case 1: svg.selectAll(".numpy").classed("hidden", false); svg.selectAll(".scipy").classed("hidden", false); svg.selectAll(".plots").classed("hidden", true); svg.selectAll(".ipython").classed("hidden", true); svg.selectAll(".ides").classed("hidden", true); break; case 2: svg.selectAll(".numpy").classed("hidden", false); svg.selectAll(".scipy").classed("hidden", false); svg.selectAll(".plots").classed("hidden", false); svg.selectAll(".ipython").classed("hidden", true); svg.selectAll(".ides").classed("hidden", true); break; case 3: svg.selectAll(".numpy").classed("hidden", false); svg.selectAll(".scipy").classed("hidden", false); svg.selectAll(".plots").classed("hidden", false); svg.selectAll(".ipython").classed("hidden", false); svg.selectAll(".ides").classed("hidden", true); break; case 4: svg.selectAll(".numpy").classed("hidden", false); svg.selectAll(".scipy").classed("hidden", false); svg.selectAll(".plots").classed("hidden", false); svg.selectAll(".ipython").classed("hidden", false); svg.selectAll(".ides").classed("hidden", false); break; } } } function update_ipython_magic() { "use strict"; var currentSlideId = Reveal.getCurrentSlide().id; if (currentSlideId === "ipython_magic") { var svg = d3.select(document.getElementById("scientific_stack").contentDocument).select("svg"); var currentFragment = Reveal.getIndices().f; var t = d3.select("#code_terminal_whos").style("display","none"); var t2 = d3.select("#code_terminal_edit").style("display","none"); var t3 = d3.select("#code_terminal_run").style("display","none"); var t4 = d3.select("#code_terminal_run_profile").style("display","none"); var t5 = d3.select("#code_terminal_timeit").style("display","none"); var t6 = d3.select("#code_terminal_autocall").style("display","none"); switch (currentFragment) { case 0: t.style("display","block"); break; case 1: t2.style("display","block"); break; case 2: t3.style("display","block"); break; case 3: t4.style("display","block"); break; case 5: t5.style("display","block"); break; case 6: t6.style("display","block"); break; } } }
import FacebookLoading from './FacebookLoading'; module.exports = FacebookLoading;
exports = module.exports = require('./lib/tuiter.js');
'use strict'; angular.module('mean.family-admin').controller('FamilyAdminController', ['$scope', '$location', 'Global', 'FamilyAdmin', 'Members', function($scope, $location, Global, FamilyAdmin, Members) { $scope.global = Global; $scope.hasAuthorization = function(member) { if (!member || !member.createdByUser) return false; return $scope.global.isAdmin || member.createdByUser._id === $scope.global.user._id; }; $scope.package = { name: 'family-admin' }; $scope.find = function() { Members.query(function(members) { $scope.members = members; }); }; $scope.remove = function(member) { if (member) { member.$remove(); for (var i in $scope.members) { if ($scope.members[i] === member) { $scope.members.splice(i, 1); } } } else { $scope.member.$remove(function(response) { $location.path('members'); }); } }; } ]);
let metadata = { urls: { github: 'https://github.com/bradyhouse/house/tree/master/fiddles/three/fiddle-0007-Stars' } };
/** * @author Ed Caspersen */ var Ripley = { VERSION: '0.0.0' }; Ripley.signals = { createCamera: new signals.Signal(), activeCamera: new signals.Signal(), registerCamera: new signals.Signal(), camera: new signals.Signal(), cameras: new signals.Signal() };
'use strict'; // MODULES // var pinf = require( 'const-pinf-float64' ); var ninf = require( 'const-ninf-float64' ); var pow = require( 'math-power' ); var toDouble = require( './todouble.js' ); // VARIABLES // var BIAS = 1023; // FROM BITS // /** * FUNCTION: fromBits( bstr ) * Creates a double-precision floating-point number from a literal bit representation. * * @param {String} bstr - string which is a literal bit representation * @returns {Number} double */ function fromBits( bstr ) { var sign; var frac; var exp; // Sign bit: sign = ( bstr[0] === '1' ) ? -1 : 1; // Exponent bits: exp = parseInt( bstr.substring(1,12), 2 ) - BIAS; // Fraction bits: frac = toDouble( bstr.substring( 12 ) ); // Detect `0` (all 0s) and subnormals (exponent bits are all 0, but fraction bits are not all 0s)... if ( exp === -BIAS ) { if ( frac === 0 ) { return ( sign === 1 ) ? 0 : -0; } exp = -1022; // subnormals are special } // Detect `+-inf` (exponent bits are all 1 and fraction is 0) and `NaN` (exponent bits are all 1 and fraction is not 0)... else if ( exp === BIAS+1 ) { if ( frac === 0 ) { return ( sign === 1 ) ? pinf : ninf; } return NaN; } // Normal numbers... else { // Account for hidden/implicit bit (2^0): frac += 1; } return sign * frac * pow( 2, exp ); } // end FUNCTION fromBits() // EXPORTS // module.exports = fromBits;
'use strict'; var S = require('..'); var eq = require('./internal/eq'); test('product', function() { eq(typeof S.product, 'function'); eq(S.product.length, 1); eq(S.product.toString(), 'product :: Foldable f => f FiniteNumber -> FiniteNumber'); eq(S.product([]), 1); eq(S.product([0, 1, 2, 3]), 0); eq(S.product([-0, 1, 2, 3]), -0); eq(S.product([1, 2, 3, 4, 5]), 120); eq(S.product([1, 2, 3, 4, -5]), -120); eq(S.product(S.Nothing), 1); eq(S.product(S.Just(42)), 42); eq(S.product(S.Left('xxx')), 1); eq(S.product(S.Right(42)), 42); });
import React, { Component } from 'react' import Tooltip from 'rc-tooltip' import FormDialog from '../FormDialog' import DataTable from '../Table' import SegmentItemButton from './itemButton' import { fromJS } from 'immutable' import Dropdown from '../Dropdown' import Button, { ButtonIndigo } from '../Button' // import ClickAwayListener from '@material-ui/core/ClickAwayListener' import defaultFields from '../../shared/defaultFields' import styled from '@emotion/styled' import { withRouter } from 'react-router-dom' import { connect } from 'react-redux' import { SaveIcon, DeleteIcon, PlusIcon } from '../icons' const ButtonGroup = styled.div` //display: inline-flex; //display: -webkit-box; margin-bottom: 2em; display: inline-flex; flex-wrap: wrap; align-items: center; button { margin-right: 5px !important; margin: 2px; } ` function Spinner () { return <p>run run run...</p> } export class SaveSegmentModal extends Component { state = { isOpen: false, action: 'update', loading: false, input: null }; open = () => this.setState({ isOpen: true }); close = () => this.setState({ isOpen: false }); input_ref = null; secondaryAction = ({ _target }) => { this.props.savePredicates( { action: this.state.action, input: this.input_ref ? this.input_ref.value : null }, () => { this.close() if (this.props.predicateCallback) this.props.predicateCallback() } ) }; deleteAction = ({ _target }) => { this.props.deleteSegment(this.props.segment.id, this.close) }; handleChange = ({ target }) => { this.setState({ action: target.value }) }; equalPredicates = () => { return fromJS(this.props.segment.predicates).equals( fromJS(this.props.segment.initialPredicates) ) }; incompletePredicates = () => { return this.props.segment.predicates.find((o) => !o.comparison || !o.value) }; render () { const { isOpen, loading } = this.state return ( <React.Fragment> <div className="flex items-center"> <Tooltip placement="bottom" overlay={I18n.t('segment_manager.save_segment')}> <ButtonIndigo isLoading={false} arial-label={I18n.t('segment_manager.save_segment')} variant={'icon'} onClick={this.open} size={'small'} disabled={this.equalPredicates() || this.incompletePredicates()} > <SaveIcon variant="small" />{' '} </ButtonIndigo> </Tooltip> <Tooltip placement="bottom" overlay={I18n.t('segment_manager.delete_segment')}> <ButtonIndigo isLoading={false} variant={'icon'} arial-label={I18n.t('segment_manager.delete_segment')} appearance={'link danger'} onClick={this.deleteAction.bind(this)} > <DeleteIcon /> </ButtonIndigo> </Tooltip> </div> {isOpen && ( <FormDialog open={isOpen} handleClose={this.close} // contentText={"lipsum"} titleContent={I18n.t('segment_manager.save_segment')} formComponent={ !loading ? ( <div> <p className="text-sm leading-5 text-gray-500"> {I18n.t('segment_manager.changes_notice')} </p> <label className="inline-flex items-center"> <input type="radio" className="form-radio h-4 w-4 text-indigo-600 transition duration-150 ease-in-out" name="options" value={'update'} onChange={this.handleChange.bind(this)} /> <span className="ml-2"> {I18n.t('segment_manager.save_changes_to', {name: this.props.segment.name})} </span> </label> <label className="inline-flex items-center"> <input type="radio" className="form-radio h-4 w-4 text-indigo-600 transition duration-150 ease-in-out" name="options" value={'new'} onChange={this.handleChange.bind(this)} /> <span className="ml-2"> {I18n.t('segment_manager.create_segment')} </span> </label> {this.state.action === 'new' && ( <input className="mt-1 form-input block w-full py-2 px-3 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:shadow-outline-blue focus:border-blue-300 transition duration-150 ease-in-out sm:text-sm sm:leading-5" autoFocus margin="dense" id="name" name="name" label="name" type="email" ref={(input) => (this.input_ref = input)} /> )} </div> ) : ( <Spinner /> ) } dialogButtons={ <React.Fragment> <Button size="xs" // className="inline-flex justify-center w-full rounded-md border border-transparent px-4 py-2 bg-red-600 text-base leading-6 font-medium text-white shadow-sm hover:bg-red-500 focus:outline-none focus:border-red-700 focus:shadow-outline-red transition ease-in-out duration-150 sm:text-sm sm:leading-5" onClick={this.secondaryAction.bind(this)} variant={'success'} > {this.state.action === 'update' ? 'Save' : 'Save New'} </Button> <Button size="xs" onClick={this.close} // className="inline-flex justify-center w-full rounded-md border border-gray-300 px-4 py-2 bg-white text-base leading-6 font-medium text-gray-700 shadow-sm hover:text-gray-500 focus:outline-none focus:border-blue-300 focus:shadow-outline transition ease-in-out duration-150 sm:text-sm sm:leading-5" variant={'outlined'} > {I18n.t('common.cancel')} </Button> </React.Fragment> } // actions={actions} // onClose={this.close} // heading={this.props.title} ></FormDialog> )} </React.Fragment> ) } } export function InlineFilterDialog ({ addPredicate, app, fields }) { const [dialogOpen, setDialogOpen] = React.useState(false) const handleClick = (e, o) => { addPredicate(o, (_token) => { // this.props.handleClick(token) setDialogOpen(false) }) } const availableFields = () => { if (fields) return fields if (!app.customFields) return defaultFields return app.customFields.concat(defaultFields) } const f = availableFields() const content = ( <div className="p-2--"> <div className="p-2"> <h2 className="text-sm leading-5 text-gray-900 dark:text-gray-100 font-bold"> {I18n.t('segment_manager.select_fields')} </h2> </div> <div className="overflow-scroll h-48"> <ul className="divide-y divide-gray-200"> {f.map((o, i) => ( <li key={`select-fields-${i}`}> <a key={o.name} onClick={(e) => handleClick(e, o)} className="cursor-pointer block hover:bg-gray-100 dark:hover:bg-gray-800 focus:outline-none focus:bg-gray-100 dark:focus:text-gray-800 transition duration-150 ease-in-out"> <div className="flex items-center px-4 py-4 sm:px-6"> <span className="flex items-center text-sm leading-5 text-gray-700 dark:text-gray-100"> {o.name} </span> </div> </a> </li> ))} </ul> </div> </div> ) return ( <div> <Dropdown isOpen={dialogOpen} onOpen={(v) => setDialogOpen(v) } triggerButton={(cb) => ( <Button isLoading={false} variant="success" className="flex flex-wrap" color="primary" size="sm" onClick={cb} > <PlusIcon variant="small" /> {I18n.t('segment_manager.add_filters')} </Button> )} > {content} </Dropdown> </div> ) } class SegmentManager extends Component { constructor (props) { super(props) } handleClickOnSelectedFilter = (jwtToken) => { const url = `/apps/${this.props.app.key}/segments/${this.props.store.segment.id}/${jwtToken}` this.props.history.push(url) }; getTextForPredicate = (o) => { if (o.type === 'match') { return `${I18n.t('segment_manager.match')} ${o.value === 'and' ? I18n.t('segment_manager.all') : I18n.t('segment_manager.any') } ${I18n.t('segment_manager.criteria')}` } else { return `Match: ${o.attribute} ${o.comparison ? o.comparison : ''} ${ o.value ? o.value : '' }` } }; render () { // this.props.actions.getPredicates() return ( <div mt={2}> <ButtonGroup> {this.props.predicates.map((o, i) => { return ( <SegmentItemButton key={i} index={i} predicates={this.props.predicates} predicate={o} open={!o.comparison} appearance={o.comparison ? 'primary' : 'default'} text={this.getTextForPredicate(o)} updatePredicate={this.props.updatePredicate} deletePredicate={this.props.deletePredicate} /> ) })} <InlineFilterDialog {...this.props} app={this.props.app} addPredicate={this.props.addPredicate} handleClick={this.handleClickOnSelectedFilter.bind(this)} /> {this.props.children} </ButtonGroup> { <DataTable title={'segment'} meta={this.props.meta} data={this.props.collection} search={this.props.search} loading={this.props.loading} columns={this.props.columns} defaultHiddenColumnNames={this.props.defaultHiddenColumnNames} tableColumnExtensions={this.props.tableColumnExtensions} leftColumns={this.props.leftColumns} rightColumns={this.props.rightColumns} toggleMapView={this.props.toggleMapView} map_view={this.props.map_view} enableMapView={this.props.enableMapView} /> } </div> ) } } function mapStateToProps (state) { const { app } = state return { app } } export default withRouter(connect(mapStateToProps)(SegmentManager))
'use strict'; const _ = require('lodash'); const url = require('url'); const {promiseSeries} = require('../lib/utils.js'); const zlib = require('zlib'); module.exports = function(router, filestore, logger, debug) { const VERBOSE = !! logger; const DEBUG = !! debug; // Parse url query if it's not presented in request object. router.use((req, res, next) => { if (req.query) { next(); return; } req._url = req.url; req.parsedUrl = url.parse(req.url, true); req.query = req.parsedUrl.query; req.url = req.parsedUrl.pathname; next(); }); // Get file router.get('/files/:id', (req, res, next) => { const id = req.params.id; filestore.has(id) .then((status) => { if (! status) { next(); return; } return filestore.getStream(id) .then(([meta, stream]) => { if (meta.isDeleted) { res.writeHead(403, 'Deleted'); res.end(); return; } res.setHeader('content-type', meta.contentType); res.setHeader('content-length', meta.contentLength); res.setHeader('content-md5', meta.md5); if (meta.tags.length) { res.setHeader('x-tags', meta.tags.join(', ')); } if (req.query.download) { res.setHeader( 'content-disposition', `attachment; filename="${meta.name || id}"` ); } VERBOSE && logger.log('Sent', id); stream.pipe(res); filestore.setAccessDate(id, new Date()) .catch((error) => DEBUG && console.error(error)); }); }) .catch(next); }); // Get file status router.head('/files/:id', (req, res, next) => { const id = req.params.id; filestore.has(id) .then((status) => { if (! status) { next(); return; } return filestore.getMeta(id) .then((meta) => { if (meta.isDeleted) { res.writeHead(413, 'Deleted'); res.end(); return; } res.setHeader('content-type', meta.contentType); res.setHeader('content-length', meta.contentLength); res.setHeader('content-md5', meta.md5); if (meta.tags.length) { res.setHeader('x-tags', meta.tags.join(', ')); } res.end(); VERBOSE && logger.log('Check', id); }); }) .catch(next); }); // Put file router.post('/files/:id', (req, res, next) => { const id = req.params.id; filestore.has(id) .then((status) => { if (status) { // Item exists... res.statusCode = 409; res.statusText = 'File already exists'; res.end('File exists'); return; } var contentType = req.headers['content-type']; var contentLength = req.headers['content-length']; var filename = req.headers['content-disposition']; var tags = req.headers['x-tags']; if (filename) { let match = filename.match(/^attachment;\s+filename=(.+)/); if (match) { filename = match[1]; if (filename.charAt(0) === '"') { filename = filename.slice(1, -1); } if (! filename.length) { filename = undefined; } } else { filename = undefined; } } if (tags) { tags = tags.split(/\s*,\s*/); } var meta = { name: filename || '', contentType, contentLength, tags, }; return filestore.put(id, meta, req) .then(() => { VERBOSE && logger.log('Added', id); res.end('OK'); }); }) .catch(next); }); // Delete file router.delete('/files/:id', (req, res, next) => { const id = req.params.id; filestore.has(id) .then((exists) => { if (! exists) { next(); return; } return storage.getMeta(id) .then((meta) => { if (meta.isDeleted) { res.statusCode = 410; res.statusText = 'File deleted'; res.end('Deleted'); return; } return storage.setDeleted(id) .then(() => { VERBOSE && logger.log('Deleted', id); res.end('OK'); }); }); }) .catch(next); }); // Info routes router.get('/storage/updates', (req, res, next) => { var date = req.query.after || 0; filestore.listUpdated(date) .then((updates) => { var result = JSON.stringify(updates.map( (item) => _.pick(item, [ '_id', 'isDeleted', 'updateDate', 'createDate', 'accessDate', 'contentType', 'contentLength', 'name', ]) )); res.setHeader('content-type', 'application/json'); res.setHeader('content-length', result.length); res.end(result); }) .catch(next); }); router.get('/storage/updates/count', (req, res, next) => { var date = req.query.after || 0; filestore.countUpdated(date) .then((count) => { var result = JSON.stringify(count); res.setHeader('content-type', 'application/json'); res.setHeader('content-length', result.length); res.end(result); }) .catch(next); }); router.get('/storage/dump', (req, res, next) => { filestore.countMeta() .then((count) => { if (! count) { res.end('[]'); return; } var skip = 0; var limit = 1000; var output = res; res.setHeader('content-type', 'application/json'); // If accept gzipped. if ('accept-encoding' in req.headers) { let accept = req.headers['accept-encoding']; if (accept.includes('gzip')) { res.setHeader('content-encoding', 'gzip'); let gzip = zlib.createGzip(); gzip.pipe(res); output = gzip; } } // Start sending an array output.write('[\n'); return promiseSeries( () => skip < count, () => filestore.listMeta(skip, limit) .then((items) => { skip += Math.min(limit, items.length); // Convert items to JSON strings var result = items.map((item) => JSON.stringify(_.pick(item, [ '_id', 'isDeleted', 'updateDate', 'createDate', 'accessDate', 'contentType', 'contentLength', 'name', ])) ).join(',\n'); // Append final comma if not a last chunk if (skip < count) { result += ','; } // Write gzip data output.write(result + '\n'); }) ) .then(() => { output.write(']'); output.end(); }); }) .catch(next); }); return router; };
import test from 'tape'; import proc from '../../src/internal/proc' import * as io from '../../src/effects' const DELAY = 50 test('processor handles call effects and resume with the resolved values', assert => { assert.plan(1); let actual = []; class C { constructor(val) { this.val = val } method() { return Promise.resolve(this.val) } } const inst1 = new C(1) const inst2 = new C(2) const inst3 = new C(3) const inst4 = new C(4) function* subGen(io, arg) { yield Promise.resolve(null) return arg } function* genFn() { actual.push( yield io.call([inst1, inst1.method]) ) actual.push( yield io.call([inst2, 'method']) ) actual.push( yield io.apply(inst3, inst3.method) ) actual.push( yield io.apply(inst4, 'method') ) actual.push( yield io.call(subGen, io, 5) ) } proc(genFn()).done.catch(err => assert.fail(err)) const expected = [1, 2, 3, 4, 5]; setTimeout(() => { assert.deepEqual(actual, expected, "processor must fullfill declarative call effects" ); assert.end(); }, DELAY) }); test('processor handles call effects and throw the rejected values inside the generator', assert => { assert.plan(1); let actual = [] const dispatch = v => actual.push(v) function fail(msg) { return Promise.reject(msg) } function* genFnParent() { try { yield io.put("start") yield io.call(fail, 'failure') yield io.put("success") } catch (e) { yield io.put(e) } } proc(genFnParent(),undefined,dispatch).done.catch(err => assert.fail(err)) const expected = ['start', 'failure'] setTimeout(() => { assert.deepEqual(actual, expected,"processor dispatches appropriate actions") assert.end() }, DELAY) }); test('processor handles call\'s synchronous failures and throws in the calling generator (1)', assert => { assert.plan(1); let actual = [] const dispatch = v => actual.push(v) function fail(message) { throw new Error(message) } function* genFnChild() { try { yield io.put("startChild") yield io.call(fail,"child error") yield io.put("success child") } catch (e) { yield io.put("failure child") } } function* genFnParent() { try { yield io.put("start parent") yield io.call(genFnChild) yield io.put("success parent") } catch (e) { yield io.put("failure parent") } } proc(genFnParent(),undefined,dispatch).done.catch(err => assert.fail(err)) const expected = ['start parent','startChild','failure child','success parent'] setTimeout(() => { assert.deepEqual(actual, expected,"processor dispatches appropriate actions") assert.end() }, DELAY) }); test('processor handles call\'s synchronous failures and throws in the calling generator (2)', assert => { assert.plan(1); let actual = [] const dispatch = v => actual.push(v) function fail(message) { throw new Error(message) } function* genFnChild() { try { yield io.put("startChild") yield io.call(fail,"child error") yield io.put("success child") } catch (e) { yield io.put("failure child") throw e; } } function* genFnParent() { try { yield io.put("start parent") yield io.call(genFnChild) yield io.put("success parent") } catch (e) { yield io.put("failure parent") } } proc(genFnParent(),undefined,dispatch).done.catch(err => assert.fail(err)) const expected = ['start parent','startChild','failure child','failure parent'] setTimeout(() => { assert.deepEqual(actual, expected,"processor dispatches appropriate actions") assert.end() }, DELAY) }); test('processor handles call\'s synchronous failures and throws in the calling generator (2)', assert => { assert.plan(1); let actual = [] const dispatch = v => (actual.push(v), v) function* genFnChild() { throw "child error" } function* genFnParent() { try { yield io.put("start parent") yield io.call(genFnChild); yield io.put("success parent") } catch (e) { yield io.put(e) yield io.put("failure parent") } } proc(genFnParent(),undefined,dispatch).done.catch(err => assert.fail(err)) const expected = ['start parent','child error','failure parent']; setTimeout(() => { assert.deepEqual(actual, expected,"processor should bubble synchronous call errors parent") assert.end() }, DELAY) });
$(document).ready(function(){ $('table tbody').sortable({ update: function( event, ui ) { var data = $(this).sortable('serialize'); $.ajax({ type:'POST', url:ajax_position_url, dataType:'json', data:data+'&'+'_token='+_token, success:function(dataJson){ if(dataJson.status=='success') { $.growl.notice({title:'',message:dataJson.msg}); } else { $.growl.error({title:'',message:dataJson.msg}); } } }) } }); // unregister module $(document).on('click','.unregister',function(e){ e.preventDefault(); var id = $(this).closest('tr').attr('id'); var element = $(this); $.ajax({ type:'POST', url:ajax_position_unregister, dataType:'json', data:{'_token':_token,'data':id}, success:function(dataJson){ if(dataJson.status=='success') { $.growl.notice({title:'',message:dataJson.msg}); element.closest('tr').remove(); } else { $.growl.error({title:'',message:dataJson.msg}); } } }); }); });
"use strict"; var fs = require('fs'); var path = require('path'); var walk = require('walk'); var UPYUN = require('upyun'); var mime = require('mime'); var argv = require('minimist')(process.argv.slice(2)); var config = {}; if (typeof argv.config == 'string') { config = JSON.parse(fs.readFileSync(argv.config)) } if (argv.localPath) { config.localPath = argv.local; } if (argv.base) { config.baseDir = argv.base; } if (argv.bucket) { config.bucket = argv.bucket; } if (argv.operator) { config.operator = argv.operator; } if (argv.password) { config.password = argv.password; } var walker = walk.walk(config.localPath); var _now = new Date().getTime(); var upyun = new UPYUN(config.bucket, config.operator, config.password, 'ctcc', 'legacy'); walker.on("file", function (root, fileStats, next) { var filePath = path.resolve(root, fileStats.name); if (_now - new Date(fileStats.mtime).getTime() < 10 * 60 * 1000) { upyun.uploadFile(filePath.split(config.baseDir)[1], filePath, mime.lookup(filePath), true, function(err, res) { if (err) { console.error(filePath); }; next(); }) } else { next(); }; }); walker.on("errors", function (root, nodeStatsArray, next) { next(); }); walker.on("end", function () { console.log("all done"); });
const net = require('net') const Buffer = require('buffer').Buffer const PORT = Number(process.env.PORT) const client = net.createConnection({ port: PORT, host: '127.0.0.1' }) // If any errors are emitted, log them client.on('error', function (err) { console.error(err.stack) }) client.on('data', function (data) { if (data.toString() === 'boop') { client.write('pass') } else { client.write('fail') } }) client.write(Buffer.from('|beep|').slice(1, 5)) // TODO: // - test bytesWritten // - test bytesRead // streaming // var through = require('through') // client.pipe(through(function (data) { // console.log(bops.to(data)) // }))
// flow-typed signature: 382e301e723d9b36384be44829fe148b // flow-typed version: <<STUB>>/hard-source-webpack-plugin_v^0.3.9/flow_v0.38.0 /** * This is an autogenerated libdef stub for: * * 'hard-source-webpack-plugin' * * Fill this stub out by replacing all the `any` types. * * Once filled out, we encourage you to share your work with the * community by sending a pull request to: * https://github.com/flowtype/flow-typed */ declare module 'hard-source-webpack-plugin' { declare module.exports: any; } /** * We include stubs for each file inside this npm package in case you need to * require those files directly. Feel free to delete any files that aren't * needed. */ declare module 'hard-source-webpack-plugin/lib/cache-serializers' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/lib/dependencies' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/lib/deserialize-dependencies' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/lib/devtool-options' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/lib/env-hash' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/lib/hard-context-module-factory' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/lib/hard-context-module' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/lib/hard-module' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/lib/hard-source' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/lib/util' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/base-webpack-1' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/base-webpack-2' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/1' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/2' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/3' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/4' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/5' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/10' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/6' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/7' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/8' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/9' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-1dep/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-1dep/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-1dep/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-1dep/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-1dep/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-1dep/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-code-split/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-code-split/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-code-split/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/1' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/2' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/3' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/4' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/5' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/10' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/6' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/7' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/8' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/9' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-1dep/fib/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-1dep/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-1dep/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-all-module/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-all-module/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-all-module/obj' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-all-module/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-commonjs-module/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-commonjs-module/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-commonjs-module/obj' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-commonjs-module/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-default-module/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-default-module/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-default-module/obj' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-default-module/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-module/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-module/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-module/obj' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-module/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-order-module/a' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-order-module/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-order-module/obj' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-order-module/other' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-order-module/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-module/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-module/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-module/obj' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-module/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-rename-module/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-rename-module/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-rename-module/obj' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-rename-module/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split-nest/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split-nest/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split-nest/sq' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split-nest/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split-process/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split-process/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split-process/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/a' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/10' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/6' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/7' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/8' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/9' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/web_modules/a/1' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/web_modules/a/2' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/web_modules/a/3' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/web_modules/a/4' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/web_modules/a/5' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/a/1' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/a/2' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/a/3' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/a/4' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/a/5' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/a/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/b/10' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/b/6' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/b/7' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/b/8' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/b/9' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/b/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/1' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/2' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/3' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/4' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/5' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/10' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/11-2' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/6' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/7' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/8' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/9' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-cheap-source-map/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-cheap-source-map/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-cheap-source-map/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval-source-map/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval-source-map/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval-source-map/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-source-map/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-source-map/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-source-map/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-error-resolve/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-error-resolve/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-compatibility/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-compatibility/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-compatibility/obj' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-compatibility/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-export-before-import/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-export-before-import/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-export-before-import/obj' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-export-before-import/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-use-before-import/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-use-before-import/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-use-before-import/obj' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-use-before-import/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module/obj' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/fact' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/key' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/obj' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/1' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/2' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/3' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/4' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/5' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/10' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/6' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/7' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/8' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/9' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-module/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-module/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-module/obj' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-module/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-external/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-external/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/1' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/2' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/3' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/4' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/5' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/10' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/6/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/7/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/8' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/9' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-1dep/fib/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-1dep/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-1dep/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-process-env/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-process-env/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-process-env/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-query-request/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-query-request/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-query-request/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-target-node-1dep/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-target-node-1dep/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-target-node-1dep/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-warning-context/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-warning-context/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-warning-context/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-warning-es2015/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-warning-es2015/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-warning-es2015/obj' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-warning-es2015/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash-dir/fib/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash-dir/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash-dir/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash/fib/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/fib/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/hard-source-config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/loader' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/vendor/lib1' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/vendor/lib2' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-md5/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-md5/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-md5/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-css/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-css/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-context-dep/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-context-dep/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-context-dep/loader' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-context-dep/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-deep-context-dep/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-deep-context-dep/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-deep-context-dep/loader' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-deep-context-dep/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep-added/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep-added/loader' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep-added/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep/loader' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep-moved/fib/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep-moved/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep-moved/loader' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep-moved/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep/loader' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-prepend-helper/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-prepend-helper/loader-helper' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-prepend-helper/loader' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-prepend-helper/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-user-loader/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-user-loader/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-user-loader/loader' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-user-loader/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-file/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-file/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-warning/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-warning/loader' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-warning/module' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-warning/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference-scope/dll' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference-scope/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference-scope/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference-scope/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference/dll' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-html-uglify/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-html-uglify/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-loader-file/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-loader-file/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify-eval-source-map/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify-eval-source-map/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify-source-map/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify-source-map/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept-dep/fib/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept-dep/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept-dep/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept/fib/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-es2015/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-es2015/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-es2015/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-process-env/fib/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-process-env/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-process-env/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr/fib/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-html-lodash/fact' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-html-lodash/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-html-lodash/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-html-lodash/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-1dep/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-1dep/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-1dep/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/1' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/2' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/3' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/4' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/5' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/10' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/6' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/7' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/8' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/9' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/1' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/2' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/3' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/4' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/5' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/10' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/6' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/7' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/8' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/9' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-isomorphic-tools/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-isomorphic-tools/webpack-isomorphic-tools' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-isomorphic-tools/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep-es2015/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep-es2015/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep-es2015/obj' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep-es2015/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep/fib' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep/index' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep/webpack.config' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/hard-source' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/loaders' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/plugins-webpack-2' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/plugins' { declare module.exports: any; } declare module 'hard-source-webpack-plugin/tests/util/index' { declare module.exports: any; } // Filename aliases declare module 'hard-source-webpack-plugin/index' { declare module.exports: $Exports<'hard-source-webpack-plugin'>; } declare module 'hard-source-webpack-plugin/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin'>; } declare module 'hard-source-webpack-plugin/lib/cache-serializers.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/lib/cache-serializers'>; } declare module 'hard-source-webpack-plugin/lib/dependencies.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/lib/dependencies'>; } declare module 'hard-source-webpack-plugin/lib/deserialize-dependencies.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/lib/deserialize-dependencies'>; } declare module 'hard-source-webpack-plugin/lib/devtool-options.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/lib/devtool-options'>; } declare module 'hard-source-webpack-plugin/lib/env-hash.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/lib/env-hash'>; } declare module 'hard-source-webpack-plugin/lib/hard-context-module-factory.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/lib/hard-context-module-factory'>; } declare module 'hard-source-webpack-plugin/lib/hard-context-module.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/lib/hard-context-module'>; } declare module 'hard-source-webpack-plugin/lib/hard-module.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/lib/hard-module'>; } declare module 'hard-source-webpack-plugin/lib/hard-source.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/lib/hard-source'>; } declare module 'hard-source-webpack-plugin/lib/util.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/lib/util'>; } declare module 'hard-source-webpack-plugin/tests/base-webpack-1.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/base-webpack-1'>; } declare module 'hard-source-webpack-plugin/tests/base-webpack-2.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/base-webpack-2'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/1.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/1'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/2.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/2'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/3.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/3'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/4.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/4'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/5.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/5'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/a/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/10.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/10'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/6.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/6'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/7.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/7'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/8.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/8'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/9.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/9'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/b/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-10deps-1nest/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-1dep/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-1dep/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-1dep/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-1dep/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-1dep/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-1dep/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-1dep/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-1dep/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-1dep/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-1dep/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-1dep/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-1dep/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-code-split/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-code-split/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-code-split/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-code-split/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-code-split/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-code-split/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/1.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/1'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/2.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/2'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/3.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/3'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/4.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/4'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/5.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/5'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-context/a/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/10.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/10'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/6.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/6'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/7.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/7'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/8.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/8'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/9.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/9'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-context/b/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-context/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-amd-context/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-amd-context/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-1dep/fib/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-1dep/fib/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-1dep/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-1dep/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-1dep/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-1dep/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-all-module/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-all-module/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-all-module/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-all-module/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-all-module/obj.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-all-module/obj'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-all-module/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-all-module/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-commonjs-module/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-commonjs-module/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-commonjs-module/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-commonjs-module/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-commonjs-module/obj.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-commonjs-module/obj'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-commonjs-module/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-commonjs-module/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-default-module/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-default-module/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-default-module/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-default-module/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-default-module/obj.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-default-module/obj'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-default-module/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-default-module/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-module/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-module/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-module/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-module/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-module/obj.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-module/obj'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-module/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-module/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-order-module/a.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-order-module/a'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-order-module/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-order-module/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-order-module/obj.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-order-module/obj'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-order-module/other.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-order-module/other'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-order-module/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-export-order-module/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-module/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-module/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-module/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-module/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-module/obj.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-module/obj'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-module/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-module/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-rename-module/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-rename-module/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-rename-module/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-rename-module/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-rename-module/obj.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-rename-module/obj'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-rename-module/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-change-es2015-rename-module/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split-nest/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-code-split-nest/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split-nest/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-code-split-nest/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split-nest/sq.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-code-split-nest/sq'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split-nest/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-code-split-nest/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split-process/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-code-split-process/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split-process/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-code-split-process/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split-process/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-code-split-process/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-code-split/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-code-split/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-code-split/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-code-split/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/a.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context-move/a'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/10.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/10'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/6.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/6'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/7.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/7'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/8.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/8'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/9.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/9'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context-move/b/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context-move/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/web_modules/a/1.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context-move/web_modules/a/1'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/web_modules/a/2.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context-move/web_modules/a/2'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/web_modules/a/3.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context-move/web_modules/a/3'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/web_modules/a/4.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context-move/web_modules/a/4'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/web_modules/a/5.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context-move/web_modules/a/5'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context-move/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context-move/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/a/1.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context/a/1'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/a/2.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context/a/2'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/a/3.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context/a/3'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/a/4.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context/a/4'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/a/5.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context/a/5'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/a/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context/a/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/b/10.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context/b/10'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/b/6.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context/b/6'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/b/7.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context/b/7'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/b/8.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context/b/8'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/b/9.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context/b/9'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/b/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context/b/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-context/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-context/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/1.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/1'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/2.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/2'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/3.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/3'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/4.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/4'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/5.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/5'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/10.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/10'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/11-2.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/11-2'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/6.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/6'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/7.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/7'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/8.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/8'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/9.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/b/9'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-deep-context/a/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-deep-context/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-deep-context/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-deep-context/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-cheap-source-map/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-devtool-cheap-source-map/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-cheap-source-map/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-devtool-cheap-source-map/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-cheap-source-map/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-devtool-cheap-source-map/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval-source-map/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval-source-map/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval-source-map/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval-source-map/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval-source-map/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval-source-map/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-devtool-eval/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-source-map/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-devtool-source-map/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-source-map/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-devtool-source-map/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-devtool-source-map/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-devtool-source-map/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-error-resolve/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-error-resolve/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-error-resolve/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-error-resolve/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-compatibility/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-compatibility/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-compatibility/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-compatibility/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-compatibility/obj.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-compatibility/obj'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-compatibility/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-compatibility/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-export-before-import/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-export-before-import/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-export-before-import/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-export-before-import/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-export-before-import/obj.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-export-before-import/obj'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-export-before-import/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-export-before-import/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-use-before-import/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-use-before-import/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-use-before-import/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-use-before-import/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-use-before-import/obj.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-use-before-import/obj'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-use-before-import/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module-use-before-import/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module/obj.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module/obj'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-module/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-module/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/fact.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/fact'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/key.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/key'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/obj.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/obj'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-rename-module/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/1.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/1'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/2.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/2'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/3.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/3'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/4.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/4'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/5.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/5'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/a/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/10.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/10'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/6.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/6'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/7.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/7'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/8.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/8'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/9.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/9'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/b/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-context/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-module/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-module/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-module/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-module/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-module/obj.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-module/obj'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-module/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-es2015-system-module/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-external/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-external/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-external/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-external/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/1.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/1'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/2.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/2'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/3.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/3'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/4.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/4'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/5.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/5'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/a/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/10.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/10'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/6/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/6/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/7/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/7/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/8.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/8'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/9.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/9'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/b/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-10deps-1nest/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-1dep/fib/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-1dep/fib/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-1dep/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-1dep/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-move-1dep/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-move-1dep/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-process-env/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-process-env/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-process-env/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-process-env/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-process-env/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-process-env/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-query-request/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-query-request/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-query-request/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-query-request/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-query-request/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-query-request/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-target-node-1dep/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-target-node-1dep/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-target-node-1dep/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-target-node-1dep/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-target-node-1dep/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-target-node-1dep/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-warning-context/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-warning-context/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-warning-context/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-warning-context/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-warning-context/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-warning-context/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-warning-es2015/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-warning-es2015/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-warning-es2015/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-warning-es2015/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-warning-es2015/obj.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-warning-es2015/obj'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/base-warning-es2015/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/base-warning-es2015/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash-dir/fib/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash-dir/fib/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash-dir/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash-dir/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash-dir/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash-dir/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash/fib/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash/fib/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-confighash/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/fib/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/fib/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/hard-source-config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/hard-source-config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/loader.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/loader'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/vendor/lib1.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/vendor/lib1'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/vendor/lib2.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/vendor/lib2'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-environmenthash/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-md5/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-md5/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-md5/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-md5/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/hard-source-md5/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/hard-source-md5/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-css/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-css/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-css/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-css/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-context-dep/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-context-dep/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-context-dep/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-context-dep/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-context-dep/loader.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-context-dep/loader'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-context-dep/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-context-dep/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-deep-context-dep/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-deep-context-dep/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-deep-context-dep/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-deep-context-dep/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-deep-context-dep/loader.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-deep-context-dep/loader'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-deep-context-dep/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-deep-context-dep/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep-added/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep-added/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep-added/loader.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep-added/loader'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep-added/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep-added/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep/loader.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep/loader'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-missing-dep/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep-moved/fib/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep-moved/fib/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep-moved/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep-moved/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep-moved/loader.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep-moved/loader'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep-moved/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep-moved/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep/loader.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep/loader'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-no-dep/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-prepend-helper/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-prepend-helper/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-prepend-helper/loader-helper.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-prepend-helper/loader-helper'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-prepend-helper/loader.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-prepend-helper/loader'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-prepend-helper/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-prepend-helper/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-user-loader/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-user-loader/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-user-loader/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-user-loader/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-user-loader/loader.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-user-loader/loader'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-custom-user-loader/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-custom-user-loader/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-file/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-file/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-file/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-file/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-warning/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-warning/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-warning/loader.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-warning/loader'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-warning/module.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-warning/module'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/loader-warning/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/loader-warning/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference-scope/dll.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference-scope/dll'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference-scope/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference-scope/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference-scope/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference-scope/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference-scope/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference-scope/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference/dll.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference/dll'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-dll-reference/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-dll/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-dll/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-dll/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-dll/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-html-uglify/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-html-uglify/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-html-uglify/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-html-uglify/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-loader-file/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-loader-file/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-loader-file/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-loader-file/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify-eval-source-map/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify-eval-source-map/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify-eval-source-map/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify-eval-source-map/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify-source-map/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify-source-map/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify-source-map/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify-source-map/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text-uglify/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-extract-text/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept-dep/fib/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept-dep/fib/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept-dep/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept-dep/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept-dep/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept-dep/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept/fib/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept/fib/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-accept/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-es2015/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-es2015/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-es2015/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-es2015/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-es2015/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-es2015/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-process-env/fib/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-process-env/fib/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-process-env/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-process-env/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-process-env/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-hmr-process-env/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr/fib/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-hmr/fib/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-hmr/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-hmr/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-hmr/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-html-lodash/fact.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-html-lodash/fact'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-html-lodash/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-html-lodash/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-html-lodash/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-html-lodash/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-html-lodash/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-html-lodash/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-1dep/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-1dep/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-1dep/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-1dep/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-1dep/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-1dep/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/1.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/1'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/2.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/2'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/3.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/3'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/4.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/4'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/5.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/5'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/a/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/10.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/10'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/6.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/6'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/7.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/7'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/8.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/8'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/9.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/9'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/b/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context-members/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/1.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/1'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/2.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/2'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/3.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/3'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/4.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/4'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/5.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/5'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/a/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/10.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/10'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/6.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/6'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/7.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/7'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/8.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/8'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/9.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/9'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/b/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-ignore-context/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-isomorphic-tools/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-isomorphic-tools/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-isomorphic-tools/webpack-isomorphic-tools.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-isomorphic-tools/webpack-isomorphic-tools'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-isomorphic-tools/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-isomorphic-tools/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep-es2015/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep-es2015/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep-es2015/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep-es2015/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep-es2015/obj.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep-es2015/obj'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep-es2015/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep-es2015/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep/fib.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep/fib'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep/index'>; } declare module 'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep/webpack.config.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/fixtures/plugin-uglify-1dep/webpack.config'>; } declare module 'hard-source-webpack-plugin/tests/hard-source.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/hard-source'>; } declare module 'hard-source-webpack-plugin/tests/loaders.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/loaders'>; } declare module 'hard-source-webpack-plugin/tests/plugins-webpack-2.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/plugins-webpack-2'>; } declare module 'hard-source-webpack-plugin/tests/plugins.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/plugins'>; } declare module 'hard-source-webpack-plugin/tests/util/index.js' { declare module.exports: $Exports<'hard-source-webpack-plugin/tests/util/index'>; }
'use strict'; module.exports = function(grunt) { // Show elapsed time at the end require('time-grunt')(grunt); // Load all grunt tasks require('load-grunt-tasks')(grunt); grunt.initConfig({ jshint: { options: { jshintrc: '.jshintrc', reporter: require('jshint-stylish') }, gruntfile: { src: ['Gruntfile.js'] }, js: { src: ['*.js'] }, test: { src: ['test/**/*.js'] } }, mochacli: { options: { reporter: 'nyan', bail: true }, all: ['test/*.js'] }, watch: { gruntfile: { files: '<%= jshint.gruntfile.src %>', tasks: ['jshint:gruntfile'] }, js: { files: '<%= jshint.js.src %>', tasks: ['jshint:js', 'mochacli'] }, test: { files: '<%= jshint.test.src %>', tasks: ['jshint:test', 'mochacli'] } }, jsbeautifier: { files: '<%= jshint.js.src %>', options: { js: { braceStyle: 'collapse', breakChainedMethods: false, e4x: false, evalCode: false, indentChar: ' ', indentLevel: 0, indentSize: 4, indentWithTabs: false, jslintHappy: false, keepArrayIndentation: false, keepFunctionIndentation: false, maxPreserveNewlines: 10, preserveNewlines: true, spaceBeforeConditional: true, spaceInParen: false, unescapeStrings: false, wrapLineLength: 0 } } } }); grunt.registerTask('default', ['jshint', 'mochacli', 'jsbeautifier']); };
var https = require('https'); var fs = require('fs'); var args = process.argv.slice(2); var email = args[0], password = args[1], data = { branch: 'haskell', modules: { main: fs.readFileSync('.stack-work/dist/x86_64-linux/Cabal-1.24.2.0_ghcjs/build/screeps-exe/screeps-exe.jsexe/all.js', 'utf8') } }; var req = https.request({ hostname: 'screeps.com', port: 443, path: '/api/user/code', method: 'POST', auth: email + ':' + password, headers: { 'Content-Type': 'application/json; charset=utf-8' }}, function(res){ console.log("!"); res.setEncoding('utf8'); res.on('data', function(chunk){ console.log(chunk); }); res.on('end', function(){ }); } ); req.on('error', function(e){ console.log(e); }); req.write(JSON.stringify(data)); req.end();
{ "type": "FeatureCollection", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ { "type": "Feature", "properties": { "Unnamed: 0": 0, "Incident Number": 60890185, "Date": "03\/30\/2006", "Time": "09:14 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.109577, -87.966568 ], "Address": "5075 N SHERMAN BL", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.966568164895818, 43.109576528449423 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 1, "Incident Number": 60880102, "Date": "03\/29\/2006", "Time": "01:43 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.114888, -87.961221 ], "Address": "5351 N 39TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.961220599255356, 43.114888173466454 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 2, "Incident Number": 60880134, "Date": "03\/29\/2006", "Time": "05:28 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.106417, -87.956521 ], "Address": "3500 W MOTHER DANIELS WA", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.956521236857483, 43.106416519331489 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 3, "Incident Number": 60890010, "Date": "03\/29\/2006", "Time": "11:53 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.094219, -87.942587 ], "Address": "2430 W ATKINSON ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 2, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.942586674418735, 43.094219457412343 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 4, "Incident Number": 60870039, "Date": "03\/28\/2006", "Time": "09:00 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.111927, -87.956883 ], "Address": "3510 W VILLARD AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.956882580904832, 43.111926511541185 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 5, "Incident Number": 60860015, "Date": "03\/27\/2006", "Time": "05:04 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.095619, -87.928138 ], "Address": "4329 N 14TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.92813757372015, 43.095618534277804 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 6, "Incident Number": 60860051, "Date": "03\/27\/2006", "Time": "10:17 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.109631, -87.952764 ], "Address": "5064 N 32ND ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.95276386799604, 43.10963122009349 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 7, "Incident Number": 60840069, "Date": "03\/25\/2006", "Time": "08:38 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.127500, -87.964851 ], "Address": "6047 N 42ND ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.964850674342927, 43.127499749288226 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 8, "Incident Number": 60840091, "Date": "03\/25\/2006", "Time": "10:14 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.121709, -87.963374 ], "Address": "5710 N 41ST ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.963374328034092, 43.121709220093493 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 9, "Incident Number": 60840123, "Date": "03\/25\/2006", "Time": "02:36 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.107352, -87.950350 ], "Address": "3000 W CAMERON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.95034980360326, 43.107352212334206 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 10, "Incident Number": 60810045, "Date": "03\/22\/2006", "Time": "09:08 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.092674, -87.930605 ], "Address": "4152 N 16TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.930605411853136, 43.09267382653357 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 11, "Incident Number": 60790177, "Date": "03\/20\/2006", "Time": "07:21 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.115641, -87.960048 ], "Address": "3800 W CUSTER AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.960047682191927, 43.115640868179597 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 12, "Incident Number": 60780063, "Date": "03\/19\/2006", "Time": "11:46 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.107586, -87.946605 ], "Address": "4971 N 27TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.946605147909239, 43.107585559987079 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 13, "Incident Number": 60780110, "Date": "03\/19\/2006", "Time": "03:38 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.089811, -87.940301 ], "Address": "2222 W CAPITOL DR", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.940301108579774, 43.08981144753335 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 14, "Incident Number": 60770096, "Date": "03\/18\/2006", "Time": "01:16 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.089806, -87.942213 ], "Address": "2400 W CAPITOL DR", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 3, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.942213220093493, 43.089806460470761 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 15, "Incident Number": 60770099, "Date": "03\/18\/2006", "Time": "11:01 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.126584, -87.955083 ], "Address": "3410 W FLORIST AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.955082554523997, 43.126584293318423 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 16, "Incident Number": 60760046, "Date": "03\/17\/2006", "Time": "09:44 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.125524, -87.958516 ], "Address": "5932 N 37TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.958516360782696, 43.125524413266788 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 17, "Incident Number": 60760114, "Date": "03\/17\/2006", "Time": "04:27 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.091836, -87.924353 ], "Address": "4107 N GREEN BAY AV", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.924352947169197, 43.091835853165293 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 18, "Incident Number": 60750133, "Date": "03\/16\/2006", "Time": "06:23 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.091746, -87.928184 ], "Address": "4116 N 14TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.928184411853124, 43.091746491257425 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 19, "Incident Number": 60750194, "Date": "03\/16\/2006", "Time": "09:31 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.095174, -87.941873 ], "Address": "4295 N TEUTONIA AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 2, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.941873281464368, 43.095173658607024 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 20, "Incident Number": 60740095, "Date": "03\/15\/2006", "Time": "11:33 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.146245, -87.964349 ], "Address": "7061 N 42ND ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 4, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.964348555398274, 43.146244760199664 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 21, "Incident Number": 60720134, "Date": "03\/13\/2006", "Time": "02:52 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.111463, -87.963145 ], "Address": "5175 N HOPKINS ST #206", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.963145111056349, 43.111462663050439 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 22, "Incident Number": 60710080, "Date": "03\/12\/2006", "Time": "01:56 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.110181, -87.963777 ], "Address": "5114 N 41ST ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.963777473743633, 43.1101808484621 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 23, "Incident Number": 60710114, "Date": "03\/12\/2006", "Time": "06:47 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.115723, -87.961126 ], "Address": "5402 N 39TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.961126360782686, 43.115723245628715 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 24, "Incident Number": 60690021, "Date": "03\/10\/2006", "Time": "05:00 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.116219, -87.962392 ], "Address": "5427 N 40TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.962391657539172, 43.116219031363613 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 25, "Incident Number": 60690039, "Date": "03\/10\/2006", "Time": "08:16 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.149460, -87.959192 ], "Address": "7233 N 38TH ST #13", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 4, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.959191774646669, 43.149459516242658 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 26, "Incident Number": 60680142, "Date": "03\/09\/2006", "Time": "05:36 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.091802, -87.930622 ], "Address": "4116 N 16TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.930622437388351, 43.091801717179294 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 27, "Incident Number": 60670082, "Date": "03\/08\/2006", "Time": "02:19 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.129495, -87.955985 ], "Address": "6152 N 35TH ST #1", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.955985414594437, 43.129494859282154 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 28, "Incident Number": 60660123, "Date": "03\/07\/2006", "Time": "06:22 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.109577, -87.966568 ], "Address": "5075 N SHERMAN BL", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.966568164895818, 43.109576528449423 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 29, "Incident Number": 60650031, "Date": "03\/06\/2006", "Time": "08:24 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.109693, -87.966316 ], "Address": "5066 N SHERMAN BL", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.966316375209416, 43.109693329447737 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 30, "Incident Number": 60650033, "Date": "03\/06\/2006", "Time": "07:23 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.117073, -87.957495 ], "Address": "5470 N 36TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.957494860782688, 43.11707341326678 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 31, "Incident Number": 60650133, "Date": "03\/06\/2006", "Time": "05:22 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.109895, -87.961383 ], "Address": "5100 N 39TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.96138341048983, 43.109894600035538 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 32, "Incident Number": 60640015, "Date": "03\/05\/2006", "Time": "03:00 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.106705, -87.967754 ], "Address": "4906 N 44TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.967753886317922, 43.106705245628717 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 33, "Incident Number": 60640050, "Date": "03\/05\/2006", "Time": "09:05 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.110191, -87.962426 ], "Address": "5112 N 40TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.962426488458803, 43.110190634745244 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 34, "Incident Number": 60640073, "Date": "03\/05\/2006", "Time": "10:33 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.119253, -87.956991 ], "Address": "3518 W SILVER SPRING DR", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.956990580904844, 43.119252511541191 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 35, "Incident Number": 60640092, "Date": "03\/05\/2006", "Time": "12:16 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.137503, -87.954002 ], "Address": "6601 N TEUTONIA AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 1, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.954002015595762, 43.137503016097114 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 36, "Incident Number": 60630100, "Date": "03\/04\/2006", "Time": "04:20 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.105420, -87.962739 ], "Address": "4835 N 40TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.962739132003946, 43.105419586733234 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 37, "Incident Number": 60610058, "Date": "03\/02\/2006", "Time": "09:04 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.109711, -87.940293 ], "Address": "5064 N 23RD ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.94029293738835, 43.109710826533558 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 38, "Incident Number": 60600017, "Date": "03\/01\/2006", "Time": "03:15 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.114328, -87.961162 ], "Address": "5320 N 39TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.961162360782694, 43.114327826533554 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 39, "Incident Number": 60600147, "Date": "03\/01\/2006", "Time": "07:03 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.111932, -87.952975 ], "Address": "3200 W VILLARD AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.95297475, 43.111932274639251 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 40, "Incident Number": 60900108, "Date": "03\/31\/2006", "Time": "01:54 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.069682, -87.986450 ], "Address": "5905 W APPLETON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.986450056783255, 43.069682473483823 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 41, "Incident Number": 60900140, "Date": "03\/31\/2006", "Time": "06:50 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.050834, -87.979998 ], "Address": "1523 N 53RD ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.979997606468729, 43.050834251457104 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 42, "Incident Number": 60890089, "Date": "03\/30\/2006", "Time": "11:03 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.048557, -87.971324 ], "Address": "1352 N 46TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.971323900744636, 43.048557 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 43, "Incident Number": 60880067, "Date": "03\/29\/2006", "Time": "11:33 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.034984, -87.962744 ], "Address": "404 N 39TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 2, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.962743915171359, 43.034984360811364 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 44, "Incident Number": 60860031, "Date": "03\/27\/2006", "Time": "07:51 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.082474, -87.994611 ], "Address": "6535 W KEEFE AVENUE PK #APT1", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -87.994611, 43.082474481245463 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 45, "Incident Number": 60860037, "Date": "03\/27\/2006", "Time": "07:38 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.068726, -87.983266 ], "Address": "2730 N 56TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.983266444601725, 43.068725884817354 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 46, "Incident Number": 60850028, "Date": "03\/26\/2006", "Time": "05:43 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.045842, -87.967226 ], "Address": "4202 W MARTIN DR", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.967226089791637, 43.045841605920451 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 47, "Incident Number": 60850070, "Date": "03\/26\/2006", "Time": "11:38 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.067657, -87.984968 ], "Address": "5758 W APPLETON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.984967705782338, 43.067656675832367 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 48, "Incident Number": 60860001, "Date": "03\/26\/2006", "Time": "10:53 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.067178, -87.979903 ], "Address": "2657 N 53RD ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.979903243983088, 43.067177797501294 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 49, "Incident Number": 60840137, "Date": "03\/25\/2006", "Time": "04:11 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.050078, -87.981139 ], "Address": "1433 N 54TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.981138617000312, 43.050078 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 50, "Incident Number": 60830063, "Date": "03\/24\/2006", "Time": "09:34 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.064636, -87.980748 ], "Address": "5330 W LISBON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.98074843865777, 43.064635784667026 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 51, "Incident Number": 60820130, "Date": "03\/23\/2006", "Time": "04:02 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.027012, -88.025271 ], "Address": "419 S 91ST ST", "e_clusterK2": 0, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 3, "g_clusterK4": 2, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 3, "g_clusterK6": 3, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -88.025270613682082, 43.027011555369626 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 52, "Incident Number": 60810047, "Date": "03\/22\/2006", "Time": "08:07 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.068907, -87.978668 ], "Address": "2747 N 52ND ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.978667577038365, 43.06890658673322 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 53, "Incident Number": 60810052, "Date": "03\/22\/2006", "Time": "10:27 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.080826, -87.996636 ], "Address": "6780 W APPLETON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -87.996636218247147, 43.080826335853033 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 54, "Incident Number": 60800020, "Date": "03\/21\/2006", "Time": "07:31 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.087250, -87.998322 ], "Address": "3845 N 69TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 6, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -87.998321606468721, 43.087250200386656 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 55, "Incident Number": 60790152, "Date": "03\/20\/2006", "Time": "02:07 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.068010, -87.978352 ], "Address": "5124 W CENTER ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.9783525, 43.068009518754543 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 56, "Incident Number": 60780107, "Date": "03\/19\/2006", "Time": "05:00 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.064520, -87.979830 ], "Address": "2510 N 53RD ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.97982958538752, 43.064519938109768 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 57, "Incident Number": 60760023, "Date": "03\/17\/2006", "Time": "07:17 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.081504, -87.997185 ], "Address": "6798 W APPLETON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -87.997185174967001, 43.08150436470649 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 58, "Incident Number": 60760045, "Date": "03\/17\/2006", "Time": "07:53 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.088378, -88.001348 ], "Address": "7139 W BECKETT AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.00134838331681, 43.088377726325895 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 59, "Incident Number": 60760115, "Date": "03\/17\/2006", "Time": "04:02 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.070156, -87.980896 ], "Address": "2812 N 54TH ST #LOWER", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.980896437388353, 43.070156245628709 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 60, "Incident Number": 60760144, "Date": "03\/17\/2006", "Time": "07:24 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.087105, -87.998254 ], "Address": "3838 N 69TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 6, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -87.998253911853126, 43.087104723007684 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 61, "Incident Number": 60740145, "Date": "03\/15\/2006", "Time": "04:37 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.036234, -87.990507 ], "Address": "6251 W BLUE MOUND RD", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 3, "g_clusterK6": 3, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.990507304523788, 43.036234036214118 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 62, "Incident Number": 60730068, "Date": "03\/14\/2006", "Time": "09:23 AM", "Police District": 3.0, "Offense 1": "THEFT FROM MOTOR VEHICLE", "Offense 2": "MOTOR VEHICLE THEFT", "Location": [ 43.062634, -87.983078 ], "Address": "2403 N 56TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.983077639217299, 43.062633586733227 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 63, "Incident Number": 60710013, "Date": "03\/12\/2006", "Time": "12:02 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.089836, -88.003153 ], "Address": "7311 W CAPITOL DR", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.003153278377297, 43.089835550060833 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 64, "Incident Number": 60710060, "Date": "03\/12\/2006", "Time": "10:45 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.050024, -87.973623 ], "Address": "1409 N 48TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.973622764272491, 43.050023672896856 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 65, "Incident Number": 60710074, "Date": "03\/12\/2006", "Time": "01:26 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.048750, -87.967264 ], "Address": "4203 W VLIET ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.967263860811357, 43.04874953231591 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 66, "Incident Number": 60700112, "Date": "03\/11\/2006", "Time": "12:14 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.079042, -87.983139 ], "Address": "5557 W BROOKLYN PL", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -87.98313862057833, 43.079041897570654 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 67, "Incident Number": 60700122, "Date": "03\/11\/2006", "Time": "01:05 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.065514, -87.979899 ], "Address": "2557 N 53RD ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.979898606468723, 43.065513754371295 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 68, "Incident Number": 60680006, "Date": "03\/09\/2006", "Time": "12:06 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.064747, -87.979843 ], "Address": "2518 N 53RD ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.979842919066499, 43.064747245628723 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 69, "Incident Number": 60680011, "Date": "03\/09\/2006", "Time": "12:55 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.051680, -87.972451 ], "Address": "1603 N 47TH ST #LWR", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.972451106468725, 43.051679748542909 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 70, "Incident Number": 60650054, "Date": "03\/06\/2006", "Time": "08:30 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.083640, -87.989649 ], "Address": "3601 N 62ND ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -87.989649132003947, 43.083639838190322 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 71, "Incident Number": 60650180, "Date": "03\/06\/2006", "Time": "07:38 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.068057, -87.976244 ], "Address": "5000 W CENTER ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.97624425, 43.068057218789086 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 72, "Incident Number": 60650186, "Date": "03\/06\/2006", "Time": "08:45 PM", "Police District": 3.0, "Offense 1": "THEFT FROM MOTOR VEHICLE", "Offense 2": "MOTOR VEHICLE THEFT", "Location": [ 43.036253, -87.991270 ], "Address": "6301 W BLUE MOUND RD", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 3, "g_clusterK6": 3, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.991270239800329, 43.036252535634127 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 73, "Incident Number": 60610184, "Date": "03\/02\/2006", "Time": "09:45 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.087699, -88.002140 ], "Address": "7236 W APPLETON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.002139522787473, 43.08769912980943 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 74, "Incident Number": 60900092, "Date": "03\/31\/2006", "Time": "02:14 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.974034, -87.950104 ], "Address": "2818 W HOWARD AV #3", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.950104048779636, 42.974034099526492 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 75, "Incident Number": 60850146, "Date": "03\/26\/2006", "Time": "10:09 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.975291, -87.953505 ], "Address": "3838 S MINER ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.953505145226629, 42.975291296992438 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 76, "Incident Number": 60850159, "Date": "03\/26\/2006", "Time": "11:18 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.984535, -87.952299 ], "Address": "3330 S 30TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.952298651361332, 42.984534995994537 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 77, "Incident Number": 60840200, "Date": "03\/25\/2006", "Time": "11:09 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.986419, -87.974055 ], "Address": "3208 S 48TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 3, "g_clusterK6": 3, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.974054809846322, 42.986418799717633 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 78, "Incident Number": 60830024, "Date": "03\/24\/2006", "Time": "03:19 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.987748, -88.003386 ], "Address": "7259 W LAKEFIELD DR", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 3, "g_clusterK6": 3, "e_clusterK7": 0, "g_clusterK7": 2, "e_clusterK8": 0, "g_clusterK8": 1, "e_clusterK9": 2, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -88.003385536528157, 42.987748096860777 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 79, "Incident Number": 60760096, "Date": "03\/17\/2006", "Time": "01:34 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.988267, -87.997270 ], "Address": "6733 W OKLAHOMA AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 3, "g_clusterK6": 3, "e_clusterK7": 0, "g_clusterK7": 2, "e_clusterK8": 0, "g_clusterK8": 1, "e_clusterK9": 2, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.9972705, 42.988266546742608 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 80, "Incident Number": 60750017, "Date": "03\/16\/2006", "Time": "03:45 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.974034, -87.950067 ], "Address": "2806 W HOWARD AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.950066712823372, 42.974034099526492 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 81, "Incident Number": 60750024, "Date": "03\/16\/2006", "Time": "07:08 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.974034, -87.950085 ], "Address": "2812 W HOWARD AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.950085380801497, 42.974034099526492 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 82, "Incident Number": 60730031, "Date": "03\/14\/2006", "Time": "06:54 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.975574, -87.954239 ], "Address": "3801 S MINER ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.954238573316104, 42.975573906717251 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 83, "Incident Number": 60730038, "Date": "03\/14\/2006", "Time": "07:57 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.981787, -87.945842 ], "Address": "3457 S 25TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.945841548184916, 42.981786586733222 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 84, "Incident Number": 60730164, "Date": "03\/14\/2006", "Time": "03:13 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.975868, -87.953850 ], "Address": "3200 W FARDALE AV #4", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.953849993219336, 42.975868315309484 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 85, "Incident Number": 60720048, "Date": "03\/13\/2006", "Time": "08:41 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.999913, -87.955530 ], "Address": "2459 S 33RD ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.955530048184912, 42.99991275437128 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 86, "Incident Number": 60690117, "Date": "03\/10\/2006", "Time": "01:22 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.976305, -87.997874 ], "Address": "3728 S 68TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 3, "g_clusterK6": 3, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.997874440706568, 42.976304717179289 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 87, "Incident Number": 60660131, "Date": "03\/07\/2006", "Time": "05:37 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.984891, -87.948438 ], "Address": "3355 S 27TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.948437518897848, 42.984890912488318 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 88, "Incident Number": 60620150, "Date": "03\/03\/2006", "Time": "06:03 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.988134, -88.006402 ], "Address": "7505 W OKLAHOMA AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 3, "g_clusterK6": 3, "e_clusterK7": 0, "g_clusterK7": 2, "e_clusterK8": 0, "g_clusterK8": 1, "e_clusterK9": 2, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -88.006402458457217, 42.988134431739006 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 89, "Incident Number": 60620155, "Date": "03\/03\/2006", "Time": "06:47 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.997293, -87.993363 ], "Address": "2602 S 65TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 3, "g_clusterK6": 3, "e_clusterK7": 0, "g_clusterK7": 2, "e_clusterK8": 0, "g_clusterK8": 1, "e_clusterK9": 2, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.993362930174996, 42.99729283236195 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 90, "Incident Number": 60900037, "Date": "03\/31\/2006", "Time": "09:14 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.010251, -87.931580 ], "Address": "1500 W BURNHAM ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.931579989361637, 43.010251270527931 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 91, "Incident Number": 60880203, "Date": "03\/30\/2006", "Time": "01:50 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.009138, -87.933506 ], "Address": "1605 W FOREST HOME AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.933506386058113, 43.009137693288864 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 92, "Incident Number": 60890113, "Date": "03\/30\/2006", "Time": "02:24 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.006518, -87.933473 ], "Address": "1609 W BECHER ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.933473276992316, 43.006517510098909 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 93, "Incident Number": 60870053, "Date": "03\/28\/2006", "Time": "11:22 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.025345, -87.912880 ], "Address": "214 W BRUCE ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.912880122333249, 43.025344799605854 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 94, "Incident Number": 60860297, "Date": "03\/27\/2006", "Time": "03:57 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.999400, -87.927308 ], "Address": "2487 S 12TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.927307540971555, 42.999400341104518 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 95, "Incident Number": 60850037, "Date": "03\/26\/2006", "Time": "09:13 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.017691, -87.924026 ], "Address": "1313 S 10TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.924026316566241, 43.017690860443857 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 96, "Incident Number": 60850108, "Date": "03\/26\/2006", "Time": "05:39 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.997579, -87.931803 ], "Address": "1521 W HARRISON AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.931802714137163, 42.997578718996373 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 97, "Incident Number": 60860020, "Date": "03\/26\/2006", "Time": "10:05 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.023206, -87.921990 ], "Address": "827 W NATIONAL AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.921990419095152, 43.023206495672163 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 98, "Incident Number": 60840161, "Date": "03\/25\/2006", "Time": "07:13 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.001313, -87.926132 ], "Address": "1100 W HAYES AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.926131634069009, 43.001313134069022 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 99, "Incident Number": 60850008, "Date": "03\/25\/2006", "Time": "11:45 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.014300, -87.922712 ], "Address": "900 W LAPHAM BL", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.922711650531042, 43.014300150531035 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 100, "Incident Number": 60830013, "Date": "03\/24\/2006", "Time": "12:34 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.997905, -87.927350 ], "Address": "2557 S 12TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.927350073720149, 42.997905031363615 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 101, "Incident Number": 60830102, "Date": "03\/24\/2006", "Time": "02:20 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.023206, -87.922012 ], "Address": "833 W NATIONAL AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.922012028449416, 43.023205542847478 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 102, "Incident Number": 60830150, "Date": "03\/24\/2006", "Time": "04:59 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.015982, -87.930180 ], "Address": "1425 W ORCHARD ST #A", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.930179832361929, 43.015982481245452 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 103, "Incident Number": 60820054, "Date": "03\/23\/2006", "Time": "09:45 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.018036, -87.926130 ], "Address": "1123 W MADISON ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.926130335276127, 43.018036492353964 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 104, "Incident Number": 60820067, "Date": "03\/23\/2006", "Time": "11:58 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.007812, -87.928223 ], "Address": "2018 S 13TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.928222528420761, 43.007812155981298 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 105, "Incident Number": 60820088, "Date": "03\/23\/2006", "Time": "01:57 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.026388, -87.914111 ], "Address": "300 W VIRGINIA ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.914111148670855, 43.026388159059664 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 106, "Incident Number": 60810020, "Date": "03\/22\/2006", "Time": "04:34 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.999678, -87.921203 ], "Address": "2468 S 8TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.921203440706577, 42.999678052455437 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 107, "Incident Number": 60810030, "Date": "03\/22\/2006", "Time": "06:44 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.016020, -87.938622 ], "Address": "2012 W ORCHARD ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.938622335276122, 43.016020478792619 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 108, "Incident Number": 60810037, "Date": "03\/22\/2006", "Time": "07:29 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.996186, -87.927381 ], "Address": "2665 S 12TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.927380599255358, 42.996186167638058 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 109, "Incident Number": 60810176, "Date": "03\/22\/2006", "Time": "08:17 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.020091, -87.929483 ], "Address": "1401 W WASHINGTON ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.92948291909515, 43.020090546742608 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 110, "Incident Number": 60800047, "Date": "03\/21\/2006", "Time": "10:19 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.015652, -87.923934 ], "Address": "1510 S 10TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.923933987881895, 43.015652214265117 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 111, "Incident Number": 60800162, "Date": "03\/21\/2006", "Time": "05:28 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.016290, -87.932905 ], "Address": "1428 S CESAR E CHAVEZ DR", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.932904539529261, 43.016290239800327 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 112, "Incident Number": 60790017, "Date": "03\/20\/2006", "Time": "06:09 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.012990, -87.932050 ], "Address": "1653 S 15TH PL", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.932049504327836, 43.012989953372966 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 113, "Incident Number": 60780128, "Date": "03\/19\/2006", "Time": "09:56 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.016051, -87.924564 ], "Address": "1016 W ORCHARD ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.924564, 43.016050507646064 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 114, "Incident Number": 60760076, "Date": "03\/17\/2006", "Time": "10:44 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.013366, -87.921205 ], "Address": "1634 S 8TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.921204933493215, 43.013366245628731 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 115, "Incident Number": 60760110, "Date": "03\/17\/2006", "Time": "03:49 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.016083, -87.912672 ], "Address": "200 W ORCHARD ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.912671638914162, 43.01608266047883 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 116, "Incident Number": 60770003, "Date": "03\/17\/2006", "Time": "11:51 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.019585, -87.934243 ], "Address": "1122 S 17TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.934243444601719, 43.019584994171623 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 117, "Incident Number": 60750100, "Date": "03\/16\/2006", "Time": "01:16 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.007888, -87.935859 ], "Address": "1801 W FOREST HOME AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.935858902418076, 43.007888390761309 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 118, "Incident Number": 60750173, "Date": "03\/16\/2006", "Time": "08:39 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.010999, -87.917220 ], "Address": "511 W MAPLE ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.917219748542905, 43.010998513994025 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 119, "Incident Number": 60750174, "Date": "03\/16\/2006", "Time": "08:47 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.997634, -87.929203 ], "Address": "1316 W HARRISON AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.929202745628714, 42.997634453257376 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 120, "Incident Number": 60750190, "Date": "03\/16\/2006", "Time": "10:44 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.015092, -87.926880 ], "Address": "1553 S 12TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.926879754217509, 43.015091981966243 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 121, "Incident Number": 60740070, "Date": "03\/15\/2006", "Time": "10:58 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.012281, -87.934545 ], "Address": "1713 W MITCHELL ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.934544528449408, 43.012281470136948 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 122, "Incident Number": 60740188, "Date": "03\/15\/2006", "Time": "09:20 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.002946, -87.926612 ], "Address": "1150 W LINCOLN AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.926612083407633, 43.002946349781602 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 123, "Incident Number": 60730017, "Date": "03\/14\/2006", "Time": "02:15 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.016511, -87.929227 ], "Address": "1450 S 14TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.929227319478827, 43.016511277795253 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 124, "Incident Number": 60730119, "Date": "03\/14\/2006", "Time": "01:26 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.014816, -87.926871 ], "Address": "1555 S 12TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.926870522649693, 43.014816366639735 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 125, "Incident Number": 60730202, "Date": "03\/14\/2006", "Time": "07:29 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.009031, -87.923123 ], "Address": "971 W WINDLAKE AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.923122504472062, 43.009030719805963 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 126, "Incident Number": 60720033, "Date": "03\/13\/2006", "Time": "08:06 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.995602, -87.928903 ], "Address": "1316 W CLEVELAND AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.928902636451056, 42.995601787192882 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 127, "Incident Number": 60720041, "Date": "03\/13\/2006", "Time": "08:33 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.005538, -87.928410 ], "Address": "2137 S 13TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.928409544289764, 43.005538424923543 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 128, "Incident Number": 60710093, "Date": "03\/12\/2006", "Time": "03:45 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.013178, -87.913914 ], "Address": "1648 S 3RD ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.913913959028449, 43.013178419095169 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 129, "Incident Number": 60710119, "Date": "03\/12\/2006", "Time": "06:48 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.016131, -87.935361 ], "Address": "1450 S UNION ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.93536095793192, 43.016131404928245 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 130, "Incident Number": 60700111, "Date": "03\/11\/2006", "Time": "12:24 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.013750, -87.937901 ], "Address": "1630 S UNION ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.937901158866836, 43.013750376882861 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 131, "Incident Number": 60700012, "Date": "03\/10\/2006", "Time": "11:45 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.023384, -87.916824 ], "Address": "734 S 5TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.916823944601717, 43.023384 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 132, "Incident Number": 60680019, "Date": "03\/09\/2006", "Time": "04:58 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.007266, -87.934399 ], "Address": "2049 S 17TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.934398504327831, 43.007265701915856 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 133, "Incident Number": 60680021, "Date": "03\/09\/2006", "Time": "06:05 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.015447, -87.931931 ], "Address": "1523 S 15TH PL", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.931930555398267, 43.015446838190314 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 134, "Incident Number": 60670016, "Date": "03\/08\/2006", "Time": "05:26 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.007669, -87.919953 ], "Address": "2024 S 7TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.91995295902845, 43.007669245628705 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 135, "Incident Number": 60670027, "Date": "03\/08\/2006", "Time": "07:29 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.020702, -87.938024 ], "Address": "1016 S 20TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.938024419066494, 43.020702335276127 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 136, "Incident Number": 60670056, "Date": "03\/08\/2006", "Time": "11:14 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.015573, -87.921211 ], "Address": "1515 S 8TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.921211037076418, 43.015573089647404 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 137, "Incident Number": 60670103, "Date": "03\/08\/2006", "Time": "04:29 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.008754, -87.934417 ], "Address": "1700 W FOREST HOME AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.934416905783706, 43.008754082987224 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 138, "Incident Number": 60660033, "Date": "03\/07\/2006", "Time": "08:15 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.015808, -87.921108 ], "Address": "1504 S 8TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.921108209232145, 43.015807889414944 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 139, "Incident Number": 60660171, "Date": "03\/07\/2006", "Time": "11:26 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.022106, -87.939403 ], "Address": "820 S 21ST ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 0, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.939402933493227, 43.022106 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 140, "Incident Number": 60650011, "Date": "03\/06\/2006", "Time": "01:17 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.999488, -87.923626 ], "Address": "2480 S 9TH PL", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.923625911853136, 42.999488329447757 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 141, "Incident Number": 60650092, "Date": "03\/06\/2006", "Time": "01:42 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.020208, -87.935895 ], "Address": "1826 W WASHINGTON ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.935894511813032, 43.020207837711482 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 142, "Incident Number": 60700056, "Date": "03\/06\/2006", "Time": "11:42 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.019532, -87.914071 ], "Address": "1123 S 3RD ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.914071051503143, 43.019532335276125 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 143, "Incident Number": 60640035, "Date": "03\/05\/2006", "Time": "07:06 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.017777, -87.933055 ], "Address": "1306 S CESAR E CHAVEZ DR", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.933055404062856, 43.017777 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 144, "Incident Number": 60640145, "Date": "03\/05\/2006", "Time": "10:18 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.020160, -87.934122 ], "Address": "1632 W WASHINGTON ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.934121832361939, 43.020159525967912 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 145, "Incident Number": 60630082, "Date": "03\/04\/2006", "Time": "01:00 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.019370, -87.921150 ], "Address": "1127 S 8TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.921149551503134, 43.019370335276136 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 146, "Incident Number": 60620036, "Date": "03\/03\/2006", "Time": "07:57 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.006867, -87.933215 ], "Address": "2068 S 16TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.933215474032082, 43.006867407438392 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 147, "Incident Number": 60620062, "Date": "03\/03\/2006", "Time": "10:04 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.010333, -87.925534 ], "Address": "1828 S 11TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.925533933493227, 43.010332742714525 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 148, "Incident Number": 60610039, "Date": "03\/02\/2006", "Time": "08:04 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.015238, -87.919733 ], "Address": "1532 S 7TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.919733433493221, 43.015237742714532 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 149, "Incident Number": 60610194, "Date": "03\/02\/2006", "Time": "11:13 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.082596, -87.913722 ], "Address": "735 N 3RD ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 2, "e_clusterK9": 0, "g_clusterK9": 5, "e_clusterK10": 5, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.913722302575167, 43.082596490985615 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 150, "Incident Number": 60600048, "Date": "03\/01\/2006", "Time": "09:31 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.995635, -87.932862 ], "Address": "1554 W CLEVELAND AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.932862471550578, 42.99563452596793 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 151, "Incident Number": 60900114, "Date": "03\/31\/2006", "Time": "03:43 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.985627, -87.933841 ], "Address": "3237 S 16TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.933840596080444, 42.985626579519867 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 152, "Incident Number": 60890066, "Date": "03\/30\/2006", "Time": "09:36 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.002907, -87.934212 ], "Address": "1625 W LINCOLN AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.934212419095161, 43.00290653952927 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 153, "Incident Number": 60890174, "Date": "03\/30\/2006", "Time": "07:40 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.002940, -87.938330 ], "Address": "2303 S 20TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.938330011698469, 43.002940317124875 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 154, "Incident Number": 60890198, "Date": "03\/30\/2006", "Time": "09:41 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.996680, -87.937943 ], "Address": "1923 W WINDLAKE AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.937943338190308, 42.996679513994025 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 155, "Incident Number": 60870152, "Date": "03\/28\/2006", "Time": "03:07 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.980152, -87.926193 ], "Address": "1031 W EDEN PL", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.926192916180966, 42.980151532315901 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 156, "Incident Number": 60840079, "Date": "03\/25\/2006", "Time": "09:33 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.999553, -87.937138 ], "Address": "2475 S 19TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.93713757372015, 42.999552838190311 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 157, "Incident Number": 60840086, "Date": "03\/25\/2006", "Time": "11:22 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.929096, -87.930328 ], "Address": "6331 S 13TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 9, "g_clusterK10": 9 }, "geometry": { "type": "Point", "coordinates": [ -87.930327627906323, 42.9290959550464 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 158, "Incident Number": 60840147, "Date": "03\/25\/2006", "Time": "03:19 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.004773, -87.937240 ], "Address": "1910 W GRANT ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.937239997085811, 43.004772511541205 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 159, "Incident Number": 60830151, "Date": "03\/24\/2006", "Time": "03:15 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.930519, -87.909805 ], "Address": "6280 S HOWELL AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 9, "g_clusterK10": 9 }, "geometry": { "type": "Point", "coordinates": [ -87.909804804432113, 42.93051922370018 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 160, "Incident Number": 60820179, "Date": "03\/23\/2006", "Time": "06:56 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.987042, -87.944495 ], "Address": "3162 S 24TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.944494962923585, 42.987042136274454 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 161, "Incident Number": 60800091, "Date": "03\/21\/2006", "Time": "01:53 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.005375, -87.936735 ], "Address": "2150 S 19TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.936734973455174, 43.005375136274466 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 162, "Incident Number": 60790051, "Date": "03\/20\/2006", "Time": "10:31 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.934806, -87.910071 ], "Address": "6039 S HOWELL AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 9, "g_clusterK10": 9 }, "geometry": { "type": "Point", "coordinates": [ -87.910071023803525, 42.934806282820716 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 163, "Incident Number": 60770010, "Date": "03\/18\/2006", "Time": "01:23 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.002997, -87.933429 ], "Address": "1600 W LINCOLN AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.933429346849422, 43.00299738724113 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 164, "Incident Number": 60700013, "Date": "03\/11\/2006", "Time": "12:20 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.957314, -87.909819 ], "Address": "4747 S HOWELL AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 9, "g_clusterK10": 9 }, "geometry": { "type": "Point", "coordinates": [ -87.909818540537927, 42.957313805441736 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 165, "Incident Number": 60700065, "Date": "03\/11\/2006", "Time": "08:14 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.952517, -87.909870 ], "Address": "5037 S HOWELL AV #233", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 9, "g_clusterK10": 9 }, "geometry": { "type": "Point", "coordinates": [ -87.909870078769117, 42.952517276992324 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 166, "Incident Number": 60660072, "Date": "03\/07\/2006", "Time": "12:33 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.960384, -87.911129 ], "Address": "4601 S 1ST ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 9, "g_clusterK10": 9 }, "geometry": { "type": "Point", "coordinates": [ -87.911129063765472, 42.960384 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 167, "Incident Number": 60650018, "Date": "03\/06\/2006", "Time": "06:34 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.943801, -87.930914 ], "Address": "1401 W DENIS AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 9, "g_clusterK10": 9 }, "geometry": { "type": "Point", "coordinates": [ -87.930913751457098, 42.943800532315905 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 168, "Incident Number": 60640120, "Date": "03\/05\/2006", "Time": "06:57 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.995930, -87.937223 ], "Address": "2677 S 19TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.93722342212412, 42.995930408950777 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 169, "Incident Number": 60630043, "Date": "03\/04\/2006", "Time": "07:28 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.959109, -87.918471 ], "Address": "545 W LAYTON AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 9, "g_clusterK10": 9 }, "geometry": { "type": "Point", "coordinates": [ -87.918471, 42.959109475619563 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 170, "Incident Number": 60630122, "Date": "03\/04\/2006", "Time": "07:08 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.960384, -87.911129 ], "Address": "4601 S 1ST ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 9, "g_clusterK10": 9 }, "geometry": { "type": "Point", "coordinates": [ -87.911129063765472, 42.960384 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 171, "Incident Number": 60640025, "Date": "03\/04\/2006", "Time": "11:48 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.933188, -87.919681 ], "Address": "6160 S 6TH ST #E29", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 9, "g_clusterK10": 9 }, "geometry": { "type": "Point", "coordinates": [ -87.919681035083656, 42.933188455177742 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 172, "Incident Number": 60610067, "Date": "03\/02\/2006", "Time": "10:44 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.930430, -87.940031 ], "Address": "2000 W COLLEGE AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 9, "g_clusterK10": 9 }, "geometry": { "type": "Point", "coordinates": [ -87.940031055369616, 42.930429525967909 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 173, "Incident Number": 60610126, "Date": "03\/02\/2006", "Time": "03:26 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.003648, -87.933372 ], "Address": "2247 S 16TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.933371529863052, 43.003647670552255 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 174, "Incident Number": 60890123, "Date": "03\/30\/2006", "Time": "03:08 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.989536, -87.923921 ], "Address": "3023 S 9TH PL", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.923921073720138, 42.989535754371275 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 175, "Incident Number": 60890200, "Date": "03\/30\/2006", "Time": "10:39 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.989651, -87.928732 ], "Address": "3020 S 13TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.928732480668529, 42.989651245628721 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 176, "Incident Number": 60880169, "Date": "03\/29\/2006", "Time": "08:39 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.986374, -87.925112 ], "Address": "3204 S 10TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.925112164425627, 42.986373637069278 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 177, "Incident Number": 60830066, "Date": "03\/24\/2006", "Time": "10:03 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.997426, -87.922466 ], "Address": "2606 S 9TH ST #A", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.922466053955986, 42.997425653067125 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 178, "Incident Number": 60810022, "Date": "03\/22\/2006", "Time": "06:10 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.994881, -87.932545 ], "Address": "2730 S 15TH PL", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.932544911853128, 42.994881136274472 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 179, "Incident Number": 60760009, "Date": "03\/17\/2006", "Time": "01:44 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.997294, -87.894957 ], "Address": "2616 S CLEMENT AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.894956772260457, 42.997294340556252 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 180, "Incident Number": 60760064, "Date": "03\/17\/2006", "Time": "10:06 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.987195, -87.931465 ], "Address": "3144 S 15TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.931465451815072, 42.987194832361951 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 181, "Incident Number": 60730088, "Date": "03\/14\/2006", "Time": "11:16 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.985386, -87.914314 ], "Address": "3200 S 3RD ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.914314418489582, 42.985385580904847 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 182, "Incident Number": 60710030, "Date": "03\/12\/2006", "Time": "06:15 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.996442, -87.897807 ], "Address": "2605 S LENOX ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.89780703187617, 42.996441940396025 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 183, "Incident Number": 60700106, "Date": "03\/11\/2006", "Time": "12:19 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.971440, -87.894052 ], "Address": "4017 S CLEMENT AV #202", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 9, "g_clusterK10": 9 }, "geometry": { "type": "Point", "coordinates": [ -87.894051585405563, 42.971440233135247 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 184, "Incident Number": 60680052, "Date": "03\/09\/2006", "Time": "09:16 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.978195, -87.909111 ], "Address": "3650 S HOWELL AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 9, "g_clusterK10": 9 }, "geometry": { "type": "Point", "coordinates": [ -87.909110750735948, 42.978194874545586 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 185, "Incident Number": 60670018, "Date": "03\/08\/2006", "Time": "06:31 AM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.993643, -87.927424 ], "Address": "1160 W MONTANA ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.92742370038664, 42.993642518754548 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 186, "Incident Number": 60620003, "Date": "03\/02\/2006", "Time": "05:14 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.985422, -87.927543 ], "Address": "3246 S 12TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.92754346292358, 42.985421664723873 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 187, "Incident Number": 60620004, "Date": "03\/02\/2006", "Time": "05:14 PM", "Police District": 2.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 42.985422, -87.927543 ], "Address": "3246 S 12TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 2, "g_clusterK6": 2, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.92754346292358, 42.985421664723873 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 188, "Incident Number": 60900087, "Date": "03\/31\/2006", "Time": "01:52 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.065980, -87.938253 ], "Address": "2026 W CLARKE ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.93825283236194, 43.065979522072787 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 189, "Incident Number": 60890007, "Date": "03\/30\/2006", "Time": "12:59 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.050943, -87.963583 ], "Address": "1538 N 40TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.96358288574099, 43.050942723007694 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 190, "Incident Number": 60890019, "Date": "03\/30\/2006", "Time": "06:39 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.051833, -87.958829 ], "Address": "1615 N 36TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.958828591465078, 43.051832832361953 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 191, "Incident Number": 60890068, "Date": "03\/30\/2006", "Time": "10:14 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.044453, -87.956564 ], "Address": "3345 W HIGHLAND BL", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.9565635, 43.044452531738969 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 192, "Incident Number": 60890105, "Date": "03\/30\/2006", "Time": "02:32 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.056267, -87.938712 ], "Address": "2033 W BROWN ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 0, "e_clusterK8": 2, "g_clusterK8": 0, "e_clusterK9": 5, "g_clusterK9": 2, "e_clusterK10": 7, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.938712167638059, 43.056266543424414 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 193, "Incident Number": 60870008, "Date": "03\/28\/2006", "Time": "12:49 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.063264, -87.924092 ], "Address": "2455 10TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 7, "e_clusterK9": 5, "g_clusterK9": 0, "e_clusterK10": 7, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.924091555398277, 43.063263754371292 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 194, "Incident Number": 60870014, "Date": "03\/28\/2006", "Time": "02:50 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.050915, -87.959599 ], "Address": "1535 N 37TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.95959910646873, 43.050915251457099 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 195, "Incident Number": 60870030, "Date": "03\/28\/2006", "Time": "07:49 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.065307, -87.937506 ], "Address": "2552 N 20TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.937506400744638, 43.065306974464789 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 196, "Incident Number": 60870050, "Date": "03\/28\/2006", "Time": "10:06 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.057980, -87.962276 ], "Address": "2124 N 39TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 0, "e_clusterK8": 6, "g_clusterK8": 0, "e_clusterK9": 4, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.962275915171361, 43.057979580904856 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 197, "Incident Number": 60870071, "Date": "03\/28\/2006", "Time": "12:42 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.051432, -87.942951 ], "Address": "2402 W GALENA ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.942951167638057, 43.05143249321933 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 198, "Incident Number": 60870133, "Date": "03\/28\/2006", "Time": "01:56 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.061984, -87.931398 ], "Address": "2371 N 15TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.931398124790576, 43.061984444630383 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 199, "Incident Number": 60870179, "Date": "03\/28\/2006", "Time": "06:52 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.060588, -87.938081 ], "Address": "2014 W NORTH AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.938081040490331, 43.060588399314213 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 200, "Incident Number": 60870185, "Date": "03\/28\/2006", "Time": "06:49 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.062974, -87.935059 ], "Address": "2431 N 18TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.935059092041996, 43.062974444630385 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 201, "Incident Number": 60860277, "Date": "03\/27\/2006", "Time": "03:56 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.038871, -87.957788 ], "Address": "3500 W WISCONSIN AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.957788205570594, 43.038871135709854 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 202, "Incident Number": 60860317, "Date": "03\/27\/2006", "Time": "06:37 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.063993, -87.963428 ], "Address": "2471 N 40TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.963427632003956, 43.063992754371299 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 203, "Incident Number": 60850045, "Date": "03\/26\/2006", "Time": "09:16 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.055576, -87.938834 ], "Address": "1936 N 21ST ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 0, "e_clusterK8": 2, "g_clusterK8": 0, "e_clusterK9": 5, "g_clusterK9": 2, "e_clusterK10": 7, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.93883435688754, 43.055576497085809 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 204, "Incident Number": 60850087, "Date": "03\/26\/2006", "Time": "04:36 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.070508, -87.941116 ], "Address": "2838 N 23RD ST #A", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.941115919066505, 43.070508 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 205, "Incident Number": 60840015, "Date": "03\/25\/2006", "Time": "01:36 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.044643, -87.959084 ], "Address": "3602 W HIGHLAND BL", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.959083667638055, 43.044643486005981 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 206, "Incident Number": 60840105, "Date": "03\/25\/2006", "Time": "09:48 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.065000, -87.958604 ], "Address": "2536 N 36TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.958603915171366, 43.064999832361934 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 207, "Incident Number": 60830067, "Date": "03\/24\/2006", "Time": "09:53 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.066285, -87.932483 ], "Address": "2620-A N 16TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.932483151057596, 43.066285029288139 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 208, "Incident Number": 60830068, "Date": "03\/24\/2006", "Time": "09:48 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.065153, -87.963334 ], "Address": "2540 N 40TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.963333911853127, 43.065152664723882 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 209, "Incident Number": 60820020, "Date": "03\/23\/2006", "Time": "03:30 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.065207, -87.936213 ], "Address": "2546 N 19TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.936213386317917, 43.06520730391253 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 210, "Incident Number": 60820110, "Date": "03\/23\/2006", "Time": "07:47 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.058322, -87.955105 ], "Address": "2114 N 33RD ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.955105360782696, 43.058321748542909 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 211, "Incident Number": 60820111, "Date": "03\/23\/2006", "Time": "02:00 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.055578, -87.946349 ], "Address": "1933 N 26TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 2, "g_clusterK8": 0, "e_clusterK9": 5, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.946349095360219, 43.05557750291419 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 212, "Incident Number": 60820168, "Date": "03\/23\/2006", "Time": "07:30 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.066826, -87.935031 ], "Address": "2639 N 18TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.935030599255356, 43.066826276992316 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 213, "Incident Number": 60810010, "Date": "03\/22\/2006", "Time": "01:25 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.056251, -87.963473 ], "Address": "1956 N 40TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.963473082809429, 43.056251015263435 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 214, "Incident Number": 60770067, "Date": "03\/18\/2006", "Time": "11:15 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.059188, -87.942542 ], "Address": "2200 N 24TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 0, "e_clusterK8": 2, "g_clusterK8": 0, "e_clusterK9": 5, "g_clusterK9": 2, "e_clusterK10": 7, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.942541793281123, 43.059188482075363 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 215, "Incident Number": 60770101, "Date": "03\/18\/2006", "Time": "02:11 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.068475, -87.963380 ], "Address": "2723 N 40TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.963380080933504, 43.068474586733231 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 216, "Incident Number": 60780001, "Date": "03\/18\/2006", "Time": "10:15 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.055639, -87.954028 ], "Address": "1921 N 32ND ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.954028106468726, 43.055639360811369 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 217, "Incident Number": 60760090, "Date": "03\/17\/2006", "Time": "01:48 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.070401, -87.963338 ], "Address": "2831 N 40TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.963337632003956, 43.070401005828387 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 218, "Incident Number": 60750096, "Date": "03\/16\/2006", "Time": "01:37 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.068012, -87.959882 ], "Address": "3700 W CENTER ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.95988171873185, 43.068012218731866 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 219, "Incident Number": 60750172, "Date": "03\/16\/2006", "Time": "08:43 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.063461, -87.941313 ], "Address": "2450 N 23RD ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.941312882422764, 43.063461052455438 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 220, "Incident Number": 60750186, "Date": "03\/16\/2006", "Time": "09:56 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.067862, -87.942932 ], "Address": "2419 W CENTER ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.942932444630387, 43.067861510098901 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 221, "Incident Number": 60730107, "Date": "03\/14\/2006", "Time": "12:20 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.068898, -87.935566 ], "Address": "2754 N 18TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.935566382422763, 43.068897555369631 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 222, "Incident Number": 60730203, "Date": "03\/14\/2006", "Time": "08:02 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.051490, -87.960442 ], "Address": "3727 W GALENA ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.9604425, 43.051490488458825 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 223, "Incident Number": 60730211, "Date": "03\/14\/2006", "Time": "09:03 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.060440, -87.929254 ], "Address": "1350 W NORTH AV #1", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 7, "e_clusterK9": 5, "g_clusterK9": 0, "e_clusterK10": 7, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.929253723007676, 43.0604395199084 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 224, "Incident Number": 60720061, "Date": "03\/13\/2006", "Time": "09:53 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.052475, -87.932005 ], "Address": "1543 W WALNUT ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 0, "e_clusterK8": 2, "g_clusterK8": 7, "e_clusterK9": 5, "g_clusterK9": 0, "e_clusterK10": 7, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.932004671311788, 43.052474800817407 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 225, "Incident Number": 60720138, "Date": "03\/13\/2006", "Time": "03:20 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.054387, -87.954968 ], "Address": "3230 W LISBON AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.954968456979628, 43.054387416613665 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 226, "Incident Number": 60710105, "Date": "03\/12\/2006", "Time": "05:41 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.052976, -87.954055 ], "Address": "1700 N 32ND ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.954055430175003, 43.052976387731547 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 227, "Incident Number": 60710012, "Date": "03\/11\/2006", "Time": "10:45 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.066764, -87.962208 ], "Address": "2629 N 39TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.962208132003951, 43.066764335276133 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 228, "Incident Number": 60690125, "Date": "03\/10\/2006", "Time": "02:21 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.069433, -87.924433 ], "Address": "1009 W HADLEY ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.924432693173287, 43.069432506780679 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 229, "Incident Number": 60690139, "Date": "03\/10\/2006", "Time": "02:30 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.053481, -87.947211 ], "Address": "2624 W LISBON AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.947210708436728, 43.053481402186947 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 230, "Incident Number": 60690148, "Date": "03\/10\/2006", "Time": "05:18 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.057810, -87.945462 ], "Address": "2508 W LLOYD ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 0, "e_clusterK8": 2, "g_clusterK8": 0, "e_clusterK9": 5, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.945461832361929, 43.057810486005963 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 231, "Incident Number": 60670012, "Date": "03\/08\/2006", "Time": "02:54 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.064487, -87.961013 ], "Address": "2510 N 38TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.961013364100907, 43.064486664723887 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 232, "Incident Number": 60670017, "Date": "03\/08\/2006", "Time": "05:56 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.063037, -87.921528 ], "Address": "2439 N 8TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.921528132003942, 43.063037444630396 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 233, "Incident Number": 60660010, "Date": "03\/07\/2006", "Time": "01:39 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.068403, -87.959832 ], "Address": "2725 N 37TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.959831551503143, 43.068403005828372 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 234, "Incident Number": 60660051, "Date": "03\/07\/2006", "Time": "09:29 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.068239, -87.936815 ], "Address": "2716 N 19TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.936814977350309, 43.068238575076464 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 235, "Incident Number": 60670006, "Date": "03\/07\/2006", "Time": "11:38 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.064184, -87.975051 ], "Address": "4901 W WRIGHT ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.975051214063342, 43.06418378593667 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 236, "Incident Number": 60640094, "Date": "03\/05\/2006", "Time": "02:04 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.062039, -87.969976 ], "Address": "2362 N 45TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.969975911853126, 43.06203913627445 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 237, "Incident Number": 60640154, "Date": "03\/05\/2006", "Time": "10:10 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.067709, -87.949882 ], "Address": "2673 N 29TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 4, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.949881573720148, 43.067709335276135 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 238, "Incident Number": 60620048, "Date": "03\/03\/2006", "Time": "08:32 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.055637, -87.938930 ], "Address": "1955 N 21ST ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 0, "e_clusterK8": 2, "g_clusterK8": 0, "e_clusterK9": 5, "g_clusterK9": 2, "e_clusterK10": 7, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.938930499449484, 43.055637244135895 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 239, "Incident Number": 60610026, "Date": "03\/02\/2006", "Time": "06:27 AM", "Police District": 3.0, "Offense 1": "THEFT FROM MOTOR VEHICLE", "Offense 2": "MOTOR VEHICLE THEFT", "Location": [ 43.050420, -87.961960 ], "Address": "1515 N 39TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.961959617000318, 43.050419748542907 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 240, "Incident Number": 60610028, "Date": "03\/02\/2006", "Time": "06:51 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.061652, -87.964640 ], "Address": "2357 N 41ST ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.964639584251714, 43.061652419095168 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 241, "Incident Number": 60610080, "Date": "03\/02\/2006", "Time": "11:43 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.065958, -87.941673 ], "Address": "2309 W CLARKE ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.94167269608748, 43.065957532315892 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 242, "Incident Number": 60600175, "Date": "03\/01\/2006", "Time": "09:10 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.053767, -87.956372 ], "Address": "1738 N 34TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.956372411853124, 43.053766658895483 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 243, "Incident Number": 60890175, "Date": "03\/30\/2006", "Time": "05:56 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.119625, -87.998733 ], "Address": "7000 W SILVER SPRING DR", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.998733, 43.119624518754541 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 244, "Incident Number": 60870024, "Date": "03\/28\/2006", "Time": "06:36 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.094360, -88.004302 ], "Address": "4234 N 74TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.004302451815079, 43.094359592561602 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 245, "Incident Number": 60870069, "Date": "03\/28\/2006", "Time": "11:46 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.114715, -87.989802 ], "Address": "5325 N 63RD ST #5", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 3, "e_clusterK8": 3, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.989801675861031, 43.114715444630377 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 246, "Incident Number": 60870124, "Date": "03\/28\/2006", "Time": "11:47 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.087667, -87.980975 ], "Address": "3865 N 54TH BL", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.980975389981907, 43.087667281147269 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 247, "Incident Number": 60870184, "Date": "03\/28\/2006", "Time": "05:09 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.093466, -87.985053 ], "Address": "5825 W HOPE ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -87.985053251457089, 43.093465513994033 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 248, "Incident Number": 60870211, "Date": "03\/28\/2006", "Time": "09:04 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.095160, -88.003013 ], "Address": "4272 N 73RD ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.003013419066491, 43.095160005828376 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 249, "Incident Number": 60860291, "Date": "03\/27\/2006", "Time": "04:41 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.113978, -87.982404 ], "Address": "5300 N 56TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.982404393531269, 43.113977664723876 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 250, "Incident Number": 60860346, "Date": "03\/27\/2006", "Time": "09:28 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.111540, -87.993659 ], "Address": "5175 N 66TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.993658632003942, 43.111540005828374 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 251, "Incident Number": 60850127, "Date": "03\/26\/2006", "Time": "07:38 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.095563, -87.975686 ], "Address": "4308 N 50TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.975686411853133, 43.095563245628711 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 252, "Incident Number": 60840014, "Date": "03\/25\/2006", "Time": "01:45 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.114669, -88.028344 ], "Address": "9316 W APPLETON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.028344421432436, 43.114668735789614 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 253, "Incident Number": 60840016, "Date": "03\/25\/2006", "Time": "01:30 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.100496, -88.000613 ], "Address": "4562 N 71ST ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.000612886317924, 43.100496167638056 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 254, "Incident Number": 60840117, "Date": "03\/25\/2006", "Time": "11:30 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.103260, -87.996821 ], "Address": "4713 N 68TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -87.996820533758196, 43.103259701915874 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 255, "Incident Number": 60840191, "Date": "03\/25\/2006", "Time": "09:36 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.113068, -87.997620 ], "Address": "6901 W TALLMADGE PL", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.99762046335627, 43.113067513994025 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 256, "Incident Number": 60820015, "Date": "03\/23\/2006", "Time": "02:29 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.123066, -87.992640 ], "Address": "6506 W CARMEN AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 5, "g_clusterK7": 3, "e_clusterK8": 3, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.992640303912523, 43.123065504327819 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 257, "Incident Number": 60810023, "Date": "03\/22\/2006", "Time": "06:23 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.113265, -88.025814 ], "Address": "5230 N 91ST ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.025813841883902, 43.113265029430352 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 258, "Incident Number": 60810165, "Date": "03\/22\/2006", "Time": "07:29 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.091142, -87.978072 ], "Address": "5209 W FOND DU LAC AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.97807246629911, 43.091142078250456 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 259, "Incident Number": 60800057, "Date": "03\/21\/2006", "Time": "11:21 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.092783, -88.002975 ], "Address": "4142 N 73RD ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.002975386317914, 43.092783167638061 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 260, "Incident Number": 60800115, "Date": "03\/21\/2006", "Time": "03:21 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.128616, -88.019910 ], "Address": "8648 W KAUL AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -88.019910083819028, 43.128616471579235 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 261, "Incident Number": 60790027, "Date": "03\/20\/2006", "Time": "07:51 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.091163, -87.977700 ], "Address": "5204 W FOND DU LAC AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.977700144728843, 43.091162627790418 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 262, "Incident Number": 60790136, "Date": "03\/20\/2006", "Time": "02:27 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.123120, -88.001344 ], "Address": "7209 W CARMEN AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -88.00134392200934, 43.123119539529249 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 263, "Incident Number": 60770043, "Date": "03\/18\/2006", "Time": "07:42 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.102089, -87.993615 ], "Address": "6539 W MEDFORD AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -87.993614764761787, 43.102088924565287 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 264, "Incident Number": 60770055, "Date": "03\/18\/2006", "Time": "09:52 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.087778, -87.978295 ], "Address": "3872 N 52ND ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.978295353569322, 43.087778245628726 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 265, "Incident Number": 60770059, "Date": "03\/18\/2006", "Time": "06:57 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.124869, -88.004595 ], "Address": "5874 N 75TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -88.004595386317916, 43.124868723007694 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 266, "Incident Number": 60760019, "Date": "03\/17\/2006", "Time": "06:09 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.104233, -87.996767 ], "Address": "4761 N 68TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -87.996767309221298, 43.104233252293817 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 267, "Incident Number": 60760025, "Date": "03\/17\/2006", "Time": "06:36 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.124356, -87.998404 ], "Address": "5852 N 70TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 5, "g_clusterK7": 3, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.998404360782686, 43.124355723007682 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 268, "Incident Number": 60750028, "Date": "03\/16\/2006", "Time": "07:05 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.121944, -88.005865 ], "Address": "5718 N 76TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -88.005864842460824, 43.121943555369626 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 269, "Incident Number": 60750147, "Date": "03\/16\/2006", "Time": "06:03 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.093952, -87.976903 ], "Address": "4200 N 51ST BL", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.976903425702929, 43.093952245628714 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 270, "Incident Number": 60730032, "Date": "03\/14\/2006", "Time": "07:16 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.104977, -87.994333 ], "Address": "6616 W HAMPTON AV #4", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -87.99433255536961, 43.104976500432699 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 271, "Incident Number": 60710107, "Date": "03\/12\/2006", "Time": "06:21 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.112222, -88.006851 ], "Address": "7613 W VILLARD AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.006851251457093, 43.112222488458826 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 272, "Incident Number": 60700121, "Date": "03\/11\/2006", "Time": "01:36 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.105079, -88.009110 ], "Address": "7734 W HAMPTON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.009109916180961, 43.105079482110824 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 273, "Incident Number": 60700146, "Date": "03\/11\/2006", "Time": "04:35 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.099558, -87.988361 ], "Address": "6132 W FOND DU LAC AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -87.988361282243787, 43.099557903427687 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 274, "Incident Number": 60680057, "Date": "03\/09\/2006", "Time": "09:31 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.104834, -88.003727 ], "Address": "7331 W HAMPTON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.003726533435028, 43.104833672221822 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 275, "Incident Number": 60670099, "Date": "03\/08\/2006", "Time": "01:54 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.113160, -88.026482 ], "Address": "9130 W APPLETON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.026481772116227, 43.113159659183964 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 276, "Incident Number": 60640117, "Date": "03\/05\/2006", "Time": "06:58 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.094491, -88.004381 ], "Address": "4241 N 74TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.00438107372014, 43.094491407438397 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 277, "Incident Number": 60640135, "Date": "03\/05\/2006", "Time": "08:03 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.093080, -87.999392 ], "Address": "4154 N 70TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -87.999392328034091, 43.093080167638078 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 278, "Incident Number": 60620069, "Date": "03\/03\/2006", "Time": "11:23 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.112222, -88.006851 ], "Address": "7613 W VILLARD AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.006851251457093, 43.112222488458826 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 279, "Incident Number": 60610106, "Date": "03\/02\/2006", "Time": "03:16 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.133826, -88.021420 ], "Address": "8811 W MILL RD", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 8, "g_clusterK9": 6, "e_clusterK10": 3, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -88.021420299693872, 43.133825697244866 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 280, "Incident Number": 60610122, "Date": "03\/02\/2006", "Time": "02:35 PM", "Police District": 4.0, "Offense 1": "THEFT FROM MOTOR VEHICLE", "Offense 2": "MOTOR VEHICLE THEFT", "Location": [ 43.116290, -87.991119 ], "Address": "6400 W CUSTER AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 3, "e_clusterK8": 3, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.991119135825514, 43.116289862597114 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 281, "Incident Number": 60600146, "Date": "03\/01\/2006", "Time": "07:16 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.115490, -87.981162 ], "Address": "5376 N 55TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.981162393531278, 43.115489748542899 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 282, "Incident Number": 60890072, "Date": "03\/30\/2006", "Time": "10:09 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.049432, -87.906703 ], "Address": "414 E LYON ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.906703332361928, 43.049432482110831 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 283, "Incident Number": 60890073, "Date": "03\/30\/2006", "Time": "11:15 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.075835, -87.902675 ], "Address": "3150 N PIERCE ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.902675426279856, 43.075834994171629 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 284, "Incident Number": 60880099, "Date": "03\/29\/2006", "Time": "12:57 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.069270, -87.901164 ], "Address": "811 E HADLEY ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.901164, 43.069269532315886 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 285, "Incident Number": 60860214, "Date": "03\/27\/2006", "Time": "10:56 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.078330, -87.887809 ], "Address": "3329 N OAKLAND AV #LWR", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.88780857372015, 43.078329922009345 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 286, "Incident Number": 60850066, "Date": "03\/26\/2006", "Time": "12:37 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.068946, -87.886783 ], "Address": "2787 N CRAMER ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.886783477006304, 43.0689455483936 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 287, "Incident Number": 60890064, "Date": "03\/26\/2006", "Time": "10:26 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.063263, -87.886839 ], "Address": "2485 N CRAMER ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.886838628108805, 43.063263031363618 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 288, "Incident Number": 60840199, "Date": "03\/25\/2006", "Time": "10:27 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.065715, -87.901697 ], "Address": "2601 N FRATNEY ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.901697488494733, 43.065715200267313 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 289, "Incident Number": 60830104, "Date": "03\/24\/2006", "Time": "02:07 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.048514, -87.914304 ], "Address": "1400 N MLK DR", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.914304054972419, 43.048514239554848 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 290, "Incident Number": 60810063, "Date": "03\/22\/2006", "Time": "10:52 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.045794, -87.901968 ], "Address": "818 E JUNEAU AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.901968412208547, 43.045794126197954 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 291, "Incident Number": 60810151, "Date": "03\/22\/2006", "Time": "06:52 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.059251, -87.884587 ], "Address": "2228 N PROSPECT AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.884587469848498, 43.059250951122593 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 292, "Incident Number": 60800010, "Date": "03\/21\/2006", "Time": "03:37 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.069823, -87.904014 ], "Address": "2820 N BOOTH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.90401439353127, 43.069822826533567 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 293, "Incident Number": 60800191, "Date": "03\/21\/2006", "Time": "10:00 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.053884, -87.896879 ], "Address": "1745 N FRANKLIN PL", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.896879102573592, 43.053884497085818 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 294, "Incident Number": 60790157, "Date": "03\/20\/2006", "Time": "05:43 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.047038, -87.908553 ], "Address": "1300 N BROADWAY", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.90855329954114, 43.047038488680663 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 295, "Incident Number": 60770015, "Date": "03\/18\/2006", "Time": "01:52 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.056046, -87.894270 ], "Address": "1317 E KANE PL", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.894269664723865, 43.056045525102526 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 296, "Incident Number": 60750118, "Date": "03\/16\/2006", "Time": "03:33 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.078852, -87.901386 ], "Address": "3318 N FRATNEY ST #2", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.901385959028445, 43.078851607825051 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 297, "Incident Number": 60740094, "Date": "03\/15\/2006", "Time": "01:08 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.067288, -87.884087 ], "Address": "2109 E PARK PL", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.884086668712044, 43.067287555686512 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 298, "Incident Number": 60740100, "Date": "03\/15\/2006", "Time": "11:29 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.055926, -87.889460 ], "Address": "1936 N FARWELL AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.8894596384675, 43.055926115442432 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 299, "Incident Number": 60720104, "Date": "03\/13\/2006", "Time": "01:12 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.064838, -87.896594 ], "Address": "2546 N DOUSMAN ST #LOWER", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.896593893531275, 43.064837664723882 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 300, "Incident Number": 60690018, "Date": "03\/10\/2006", "Time": "03:18 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.045943, -87.911200 ], "Address": "1209 N WATER ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.91119957372014, 43.04594308050082 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 301, "Incident Number": 60690161, "Date": "03\/10\/2006", "Time": "07:01 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.070934, -87.882871 ], "Address": "2203 E LOCUST ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.882871041543766, 43.070933777354142 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 302, "Incident Number": 60660112, "Date": "03\/07\/2006", "Time": "03:51 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.065324, -87.904095 ], "Address": "2570 N BOOTH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.904094896849486, 43.065324167638067 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 303, "Incident Number": 60650009, "Date": "03\/06\/2006", "Time": "01:23 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.069379, -87.903924 ], "Address": "606 E HADLEY ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.903924112155352, 43.069379178982551 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 304, "Incident Number": 60650093, "Date": "03\/06\/2006", "Time": "01:57 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.072336, -87.890326 ], "Address": "2964 N NEWHALL ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.890325871314261, 43.072335555369619 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 305, "Incident Number": 60640153, "Date": "03\/05\/2006", "Time": "10:38 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.061335, -87.899283 ], "Address": "2363 N WEIL ST #208", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.899282987705121, 43.061335490750928 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 306, "Incident Number": 60600069, "Date": "03\/01\/2006", "Time": "11:10 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.067979, -87.904121 ], "Address": "2725 N BOOTH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.904120577038356, 43.067979335276135 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 307, "Incident Number": 60900164, "Date": "03\/31\/2006", "Time": "10:32 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.034463, -87.956558 ], "Address": "333 N 34TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 2, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.956558102573595, 43.034463335276143 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 308, "Incident Number": 60880010, "Date": "03\/29\/2006", "Time": "02:17 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.040325, -87.953554 ], "Address": "3110 W WELLS ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.953554225921863, 43.040325475474383 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 309, "Incident Number": 60880013, "Date": "03\/29\/2006", "Time": "04:13 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.040210, -87.951433 ], "Address": "2955 W WELLS ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.95143290921466, 43.040210399477679 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 310, "Incident Number": 60860010, "Date": "03\/27\/2006", "Time": "02:39 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.036578, -87.947695 ], "Address": "530 N 27TH ST #15", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.94769515188294, 43.036578022313229 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 311, "Incident Number": 60850042, "Date": "03\/26\/2006", "Time": "09:04 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.038615, -87.944504 ], "Address": "2455 W WISCONSIN AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.944503751457091, 43.038614517312254 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 312, "Incident Number": 60850053, "Date": "03\/26\/2006", "Time": "10:38 AM", "Police District": 1.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.038775, -87.919402 ], "Address": "611 W WISCONSIN AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 4, "g_clusterK7": 0, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.91940194463038, 43.038774549483918 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 313, "Incident Number": 60840192, "Date": "03\/25\/2006", "Time": "09:22 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.040316, -87.951564 ], "Address": "2928 W WELLS ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.951563916180973, 43.040316475474377 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 314, "Incident Number": 60830021, "Date": "03\/24\/2006", "Time": "02:06 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.039102, -87.950656 ], "Address": "720 N 29TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.950656151913535, 43.039102185602196 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 315, "Incident Number": 60820053, "Date": "03\/23\/2006", "Time": "09:59 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.036226, -87.951641 ], "Address": "3002 W CLYBOURN ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.951641070852276, 43.036225601929445 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 316, "Incident Number": 60810066, "Date": "03\/22\/2006", "Time": "11:33 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.050357, -87.948881 ], "Address": "1517 N 28TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.948880500432679, 43.050357314184303 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 317, "Incident Number": 60810081, "Date": "03\/22\/2006", "Time": "12:12 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.044457, -87.934744 ], "Address": "1706 W HIGHLAND AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.934743974464766, 43.04445746883794 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 318, "Incident Number": 60790025, "Date": "03\/20\/2006", "Time": "08:16 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.045845, -87.947401 ], "Address": "2635 W JUNEAU AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.947401332361935, 43.045845477350312 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 319, "Incident Number": 60790039, "Date": "03\/20\/2006", "Time": "09:15 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.043757, -87.950549 ], "Address": "1040 N 29TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.950548901872054, 43.043756703326899 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 320, "Incident Number": 60790040, "Date": "03\/20\/2006", "Time": "09:29 AM", "Police District": 1.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.038846, -87.912405 ], "Address": "176 W WISCONSIN AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 5, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.912405191790981, 43.038845925027161 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 321, "Incident Number": 60790041, "Date": "03\/20\/2006", "Time": "09:19 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.040377, -87.944988 ], "Address": "805 N 25TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.944988348071973, 43.040377238025279 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 322, "Incident Number": 60770011, "Date": "03\/18\/2006", "Time": "01:33 AM", "Police District": 1.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.038780, -87.918461 ], "Address": "509 W WISCONSIN AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 4, "g_clusterK7": 0, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.918460922817403, 43.038780480091603 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 323, "Incident Number": 60770084, "Date": "03\/18\/2006", "Time": "12:47 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.044260, -87.935980 ], "Address": "1819 W HIGHLAND AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.9359805, 43.044259528420767 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 324, "Incident Number": 60750086, "Date": "03\/16\/2006", "Time": "01:00 PM", "Police District": 1.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.037834, -87.916006 ], "Address": "630 N 4TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 4, "g_clusterK7": 0, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.916006151899097, 43.037833788039137 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 325, "Incident Number": 60750136, "Date": "03\/16\/2006", "Time": "05:18 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.044437, -87.949004 ], "Address": "2743 W HIGHLAND BL #204", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.9490035, 43.044436542847478 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 326, "Incident Number": 60740157, "Date": "03\/15\/2006", "Time": "07:17 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.040303, -87.945723 ], "Address": "2522 W WELLS ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.945722832361938, 43.040303453257394 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 327, "Incident Number": 60720035, "Date": "03\/13\/2006", "Time": "07:41 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.035300, -87.956561 ], "Address": "419 N 34TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 2, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.95656108814687, 43.0353 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 328, "Incident Number": 60700114, "Date": "03\/11\/2006", "Time": "02:07 PM", "Police District": 1.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.044796, -87.909640 ], "Address": "200 E HIGHLAND AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.909640175773262, 43.044796142449464 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 329, "Incident Number": 60700187, "Date": "03\/11\/2006", "Time": "07:08 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.037480, -87.945723 ], "Address": "2521 W MICHIGAN ST #A", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.945722664723874, 43.037480495672163 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 330, "Incident Number": 60690008, "Date": "03\/10\/2006", "Time": "02:09 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.040467, -87.957666 ], "Address": "800 N 35TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.957666379104552, 43.040466723007683 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 331, "Incident Number": 60690014, "Date": "03\/10\/2006", "Time": "01:51 AM", "Police District": 1.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.040674, -87.912999 ], "Address": "823 N 2ND ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.912998577615284, 43.040673754371284 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 332, "Incident Number": 60690020, "Date": "03\/10\/2006", "Time": "04:24 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.050358, -87.948878 ], "Address": "1511 N 28TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.94887844604402, 43.050358288649079 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 333, "Incident Number": 60670154, "Date": "03\/08\/2006", "Time": "09:40 PM", "Police District": 1.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.038780, -87.921423 ], "Address": "735 W WISCONSIN AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 4, "g_clusterK7": 0, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.921423, 43.038779505626835 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 334, "Incident Number": 60660071, "Date": "03\/07\/2006", "Time": "11:57 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.041671, -87.940580 ], "Address": "2200 W KILBOURN AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.940580269778948, 43.041671491054942 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 335, "Incident Number": 60650042, "Date": "03\/06\/2006", "Time": "08:15 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.037575, -87.946408 ], "Address": "2600 W MICHIGAN ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.946408177565687, 43.037574676634051 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 336, "Incident Number": 60620190, "Date": "03\/03\/2006", "Time": "10:28 PM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.048770, -87.956094 ], "Address": "3320 W VLIET ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.956094473079801, 43.048770442148893 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 337, "Incident Number": 60600036, "Date": "03\/01\/2006", "Time": "07:18 AM", "Police District": 3.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.048770, -87.956094 ], "Address": "3320 W VLIET ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.956094473079801, 43.048770442148893 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 338, "Incident Number": 60890049, "Date": "03\/31\/2006", "Time": "07:26 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.128065, -88.058172 ], "Address": "11711 W KAUL AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.058171854982973, 43.128064521207399 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 339, "Incident Number": 60900004, "Date": "03\/31\/2006", "Time": "12:34 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.078228, -88.007806 ], "Address": "7630 W LISBON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 6, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.007806492560817, 43.078228151814052 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 340, "Incident Number": 60900083, "Date": "03\/31\/2006", "Time": "01:12 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.104913, -88.051364 ], "Address": "11010 W HAMPTON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.051363758670448, 43.104913478792604 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 341, "Incident Number": 60910002, "Date": "03\/31\/2006", "Time": "10:21 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.086744, -88.027800 ], "Address": "3825 N 92ND ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.027800132003946, 43.086743748542915 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 342, "Incident Number": 60870203, "Date": "03\/28\/2006", "Time": "08:54 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.101903, -88.017279 ], "Address": "4601 N 84TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.017279083241178, 43.101903035835655 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 343, "Incident Number": 60860208, "Date": "03\/27\/2006", "Time": "10:11 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.104314, -88.015771 ], "Address": "8333 W APPLETON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.015771264622529, 43.104313743353281 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 344, "Incident Number": 60850012, "Date": "03\/26\/2006", "Time": "12:51 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.089832, -88.007940 ], "Address": "7609 W CAPITOL DR", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.00794, 43.08983154674263 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 345, "Incident Number": 60850048, "Date": "03\/26\/2006", "Time": "09:36 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.093435, -88.014401 ], "Address": "8121 W HOPE AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.014400857897158, 43.093434513417115 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 346, "Incident Number": 60840180, "Date": "03\/25\/2006", "Time": "08:39 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.101903, -88.017279 ], "Address": "4601 N 84TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.017279083241178, 43.101903035835655 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 347, "Incident Number": 60830059, "Date": "03\/24\/2006", "Time": "08:37 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.137046, -88.036443 ], "Address": "9988 W FOND DU LAC AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.03644260932559, 43.137046224277078 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 348, "Incident Number": 60830137, "Date": "03\/24\/2006", "Time": "04:51 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.133802, -88.049313 ], "Address": "11011 W MILL RD", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.049313130590306, 43.133801508368137 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 349, "Incident Number": 60790150, "Date": "03\/20\/2006", "Time": "06:03 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.105806, -88.026061 ], "Address": "4835 N 91ST ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.026061099255358, 43.10580641909516 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 350, "Incident Number": 60780068, "Date": "03\/19\/2006", "Time": "11:57 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.104771, -88.046811 ], "Address": "10739 W HAMPTON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.046810832361928, 43.104771484563678 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 351, "Incident Number": 60780077, "Date": "03\/19\/2006", "Time": "02:10 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.086018, -88.022674 ], "Address": "3801 N 88TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.022673710554201, 43.086018078916815 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 352, "Incident Number": 60770057, "Date": "03\/18\/2006", "Time": "10:05 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.098808, -88.018707 ], "Address": "4475 N 85TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.018707418431333, 43.098808002769957 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 353, "Incident Number": 60750037, "Date": "03\/16\/2006", "Time": "07:14 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.128127, -88.060563 ], "Address": "11900 W KAUL AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.060562664723875, 43.12812748600598 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 354, "Incident Number": 60750166, "Date": "03\/16\/2006", "Time": "08:11 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.160923, -88.051925 ], "Address": "11200 W PARKLAND AV #1", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.051924891539784, 43.160922843527757 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 355, "Incident Number": 60760017, "Date": "03\/16\/2006", "Time": "11:33 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.136111, -88.035378 ], "Address": "9909 W FOND DU LAC AV #APT12", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.035378470771178, 43.136111077673533 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 356, "Incident Number": 60660110, "Date": "03\/07\/2006", "Time": "04:01 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.087545, -88.007399 ], "Address": "3859 N 76TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.007399080933496, 43.087545167638069 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 357, "Incident Number": 60650078, "Date": "03\/06\/2006", "Time": "12:08 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.088463, -88.013901 ], "Address": "3919 N 81ST ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 5, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 7, "g_clusterK9": 7, "e_clusterK10": 6, "g_clusterK10": 6 }, "geometry": { "type": "Point", "coordinates": [ -88.013901124790578, 43.088463419095149 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 358, "Incident Number": 60600009, "Date": "03\/01\/2006", "Time": "01:06 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.134966, -88.042712 ], "Address": "6434 N 105TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 3, "g_clusterK8": 3, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.042712335247472, 43.134965832361928 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 359, "Incident Number": 60900150, "Date": "03\/31\/2006", "Time": "08:59 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.086851, -87.915956 ], "Address": "3852 N 5TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.915956356887548, 43.086851077990644 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 360, "Incident Number": 60890183, "Date": "03\/30\/2006", "Time": "08:06 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.067745, -87.912570 ], "Address": "2705 N 2ND ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.912570146430667, 43.067745167638066 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 361, "Incident Number": 60880046, "Date": "03\/29\/2006", "Time": "11:03 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.057801, -87.904061 ], "Address": "2100 N BOOTH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.904060985070103, 43.057801135904967 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 362, "Incident Number": 60860048, "Date": "03\/27\/2006", "Time": "09:49 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.080219, -87.939728 ], "Address": "3361 N 22ND ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.939728143112447, 43.08021894754458 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 363, "Incident Number": 60860281, "Date": "03\/27\/2006", "Time": "04:09 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.070247, -87.909520 ], "Address": "2847 N PALMER ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.90952009925536, 43.070247167638058 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 364, "Incident Number": 60850059, "Date": "03\/26\/2006", "Time": "12:10 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.079977, -87.909356 ], "Address": "3372 N PALMER ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 2, "e_clusterK9": 0, "g_clusterK9": 5, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.909356433493215, 43.079977005828397 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 365, "Incident Number": 60850124, "Date": "03\/26\/2006", "Time": "07:01 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.089572, -87.941384 ], "Address": "2345 W CAPITOL DR", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 3, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.941384183986983, 43.089571988533557 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 366, "Incident Number": 60850150, "Date": "03\/26\/2006", "Time": "08:42 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.081137, -87.932196 ], "Address": "3444 N 17TH ST #5", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.932195860782699, 43.081137387731559 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 367, "Incident Number": 60840070, "Date": "03\/25\/2006", "Time": "09:12 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.061697, -87.906572 ], "Address": "2373 N BUFFUM ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.906571646430677, 43.061697 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 368, "Incident Number": 60840083, "Date": "03\/25\/2006", "Time": "10:36 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.060950, -87.907745 ], "Address": "2330 N RICHARDS ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.907745411853128, 43.060949580904833 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 369, "Incident Number": 60840110, "Date": "03\/25\/2006", "Time": "12:59 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.068592, -87.916904 ], "Address": "2742 N 5TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.916903526672584, 43.068591721534808 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 370, "Incident Number": 60830005, "Date": "03\/24\/2006", "Time": "12:05 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.078258, -87.928641 ], "Address": "3265 N 14TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.928640515436328, 43.078257869553937 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 371, "Incident Number": 60830160, "Date": "03\/24\/2006", "Time": "03:47 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.065788, -87.914247 ], "Address": "310 W CLARKE ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.914247340473182, 43.06578791524656 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 372, "Incident Number": 60830194, "Date": "03\/24\/2006", "Time": "11:07 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.069440, -87.913963 ], "Address": "2800 N MARTIN L KING JR DR", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.913962850821278, 43.069440045522406 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 373, "Incident Number": 60820109, "Date": "03\/23\/2006", "Time": "01:23 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.088353, -87.898984 ], "Address": "3885 N HUMBOLDT BL", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 2, "e_clusterK9": 0, "g_clusterK9": 5, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.898983729008947, 43.088353251716896 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 374, "Incident Number": 60810031, "Date": "03\/22\/2006", "Time": "07:00 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.076736, -87.912631 ], "Address": "3223 N 2ND ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 2, "e_clusterK9": 0, "g_clusterK9": 5, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.912631135322172, 43.076736251457106 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 375, "Incident Number": 60810078, "Date": "03\/22\/2006", "Time": "11:30 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.089396, -87.905903 ], "Address": "370 E CAPITOL DR", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 2, "e_clusterK9": 0, "g_clusterK9": 5, "e_clusterK10": 5, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.905903421713205, 43.089396245936584 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 376, "Incident Number": 60810138, "Date": "03\/22\/2006", "Time": "05:56 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.077033, -87.907616 ], "Address": "3214 N RICHARDS ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.907616426279859, 43.077032664723873 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 377, "Incident Number": 60820009, "Date": "03\/22\/2006", "Time": "11:29 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.081281, -87.922282 ], "Address": "3456 N 9TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.922282382422765, 43.081280884817374 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 378, "Incident Number": 60800041, "Date": "03\/21\/2006", "Time": "09:35 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.077698, -87.921531 ], "Address": "820 W RING ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.921531153890953, 43.07769841435023 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 379, "Incident Number": 60800090, "Date": "03\/21\/2006", "Time": "12:43 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.078853, -87.914692 ], "Address": "326 W CONCORDIA AV", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 2, "e_clusterK9": 0, "g_clusterK9": 5, "e_clusterK10": 5, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.914691723007678, 43.078853460470761 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 380, "Incident Number": 60790098, "Date": "03\/20\/2006", "Time": "01:18 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.059790, -87.908309 ], "Address": "2229 N HUBBARD ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.908308562611637, 43.059789586733217 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 381, "Incident Number": 60780012, "Date": "03\/19\/2006", "Time": "02:11 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.061437, -87.917080 ], "Address": "2351 N 5TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.917079559293427, 43.061436838190332 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 382, "Incident Number": 60780015, "Date": "03\/19\/2006", "Time": "02:33 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.083540, -87.912200 ], "Address": "3621 N 2ND ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 2, "e_clusterK9": 0, "g_clusterK9": 5, "e_clusterK10": 5, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.912199569824992, 43.083540282820707 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 383, "Incident Number": 60780123, "Date": "03\/19\/2006", "Time": "08:43 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.087183, -87.918531 ], "Address": "600 W ABERT PL", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.918530650744458, 43.087182827270894 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 384, "Incident Number": 60780129, "Date": "03\/19\/2006", "Time": "09:34 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.071750, -87.916958 ], "Address": "2919 N 5TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 2, "e_clusterK9": 0, "g_clusterK9": 5, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.916958143112453, 43.071749832361945 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 385, "Incident Number": 60770025, "Date": "03\/18\/2006", "Time": "03:12 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.060089, -87.895346 ], "Address": "1321 E NORTH AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.895346119463696, 43.060088791141936 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 386, "Incident Number": 60770130, "Date": "03\/18\/2006", "Time": "06:13 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.059664, -87.904033 ], "Address": "2224 N BOOTH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.904032849674195, 43.059663974464769 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 387, "Incident Number": 60750067, "Date": "03\/16\/2006", "Time": "12:26 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.081066, -87.905092 ], "Address": "3437 N HOLTON ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 2, "e_clusterK9": 0, "g_clusterK9": 5, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.905091580933501, 43.081066424923534 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 388, "Incident Number": 60750112, "Date": "03\/16\/2006", "Time": "02:14 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.089396, -87.905927 ], "Address": "362 E CAPITOL DR", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 2, "e_clusterK9": 0, "g_clusterK9": 5, "e_clusterK10": 5, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.905927146972076, 43.089396245936584 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 389, "Incident Number": 60750142, "Date": "03\/16\/2006", "Time": "05:55 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.076916, -87.931102 ], "Address": "3203 N 16TH ST #UPPER", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.931101643112456, 43.076915528449433 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 390, "Incident Number": 60740091, "Date": "03\/15\/2006", "Time": "01:17 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.069664, -87.936746 ], "Address": "2800 N 19TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.936745511556865, 43.06966419477871 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 391, "Incident Number": 60740192, "Date": "03\/15\/2006", "Time": "09:53 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.077114, -87.910101 ], "Address": "3235 N ACHILLES ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 2, "e_clusterK9": 0, "g_clusterK9": 5, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.910101077038362, 43.077113612268448 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 392, "Incident Number": 60730025, "Date": "03\/14\/2006", "Time": "04:51 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.083088, -87.921262 ], "Address": "808 W ATKINSON AV", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.921262302098114, 43.08308792332695 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 393, "Incident Number": 60720010, "Date": "03\/13\/2006", "Time": "04:11 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.082081, -87.922266 ], "Address": "3518 N 9TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.92226593738836, 43.082081245628729 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 394, "Incident Number": 60720102, "Date": "03\/13\/2006", "Time": "12:32 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.073567, -87.910991 ], "Address": "3025 N 1ST ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.910990603150509, 43.073567444630385 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 395, "Incident Number": 60720140, "Date": "03\/13\/2006", "Time": "04:53 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.059510, -87.905266 ], "Address": "2216 N HOLTON ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.905266367996049, 43.059509580904859 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 396, "Incident Number": 60720183, "Date": "03\/13\/2006", "Time": "07:13 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.060735, -87.914152 ], "Address": "2323 N MARTIN L KING JR DR", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.914152304349074, 43.060734507565698 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 397, "Incident Number": 60710088, "Date": "03\/12\/2006", "Time": "02:35 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.082596, -87.926042 ], "Address": "3547 N 12TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.92604165364402, 43.08259558673322 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 398, "Incident Number": 60710094, "Date": "03\/12\/2006", "Time": "03:49 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.049901, -87.918955 ], "Address": "611 W CHERRY ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.918955415081015, 43.049900804087443 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 399, "Incident Number": 60700022, "Date": "03\/11\/2006", "Time": "01:57 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.055430, -87.908402 ], "Address": "1921 N HUBBARD ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.908401633878881, 43.055430278268481 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 400, "Incident Number": 60700069, "Date": "03\/11\/2006", "Time": "09:06 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.078500, -87.932310 ], "Address": "3273 N 17TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.932309613682079, 43.078499779906508 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 401, "Incident Number": 60690126, "Date": "03\/10\/2006", "Time": "02:21 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.073577, -87.935590 ], "Address": "3013 N 18TH ST #LOWER", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.935589573720137, 43.073577031363612 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 402, "Incident Number": 60690200, "Date": "03\/10\/2006", "Time": "09:32 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.086430, -87.934511 ], "Address": "3819 N 19TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.934511066506772, 43.08643000582839 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 403, "Incident Number": 60680112, "Date": "03\/09\/2006", "Time": "02:52 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.060249, -87.910820 ], "Address": "101 E NORTH AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.91082002553523, 43.060248546742628 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 404, "Incident Number": 60680137, "Date": "03\/09\/2006", "Time": "05:58 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.089199, -87.908483 ], "Address": "225 E CAPITOL DR #1LOBB", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 2, "e_clusterK9": 0, "g_clusterK9": 5, "e_clusterK10": 5, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.908483222026732, 43.089198520630475 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 405, "Incident Number": 60680148, "Date": "03\/09\/2006", "Time": "06:50 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.071380, -87.926818 ], "Address": "1200 W LOCUST ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.926818376424819, 43.071379991876888 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 406, "Incident Number": 60660116, "Date": "03\/07\/2006", "Time": "04:00 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.062957, -87.906561 ], "Address": "2463 N BUFFUM ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.906560610940772, 43.06295741909517 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 407, "Incident Number": 60650040, "Date": "03\/06\/2006", "Time": "09:26 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.048400, -87.920270 ], "Address": "705 W VLIET ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.920270021934599, 43.048400343503616 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 408, "Incident Number": 60650063, "Date": "03\/06\/2006", "Time": "11:15 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.074971, -87.929032 ], "Address": "1406 W BURLEIGH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.929031913266769, 43.074970500432684 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 409, "Incident Number": 60650152, "Date": "03\/06\/2006", "Time": "05:10 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.067464, -87.914354 ], "Address": "319 W CENTER ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.914353886658887, 43.067463705926691 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 410, "Incident Number": 60650200, "Date": "03\/06\/2006", "Time": "11:16 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.086635, -87.937084 ], "Address": "3824 N 20TH ST #4", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.937084375209409, 43.086635329447745 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 411, "Incident Number": 60640127, "Date": "03\/05\/2006", "Time": "07:29 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.074992, -87.930103 ], "Address": "1500 W BURLEIGH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.930102661809684, 43.07499150764604 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 412, "Incident Number": 60650003, "Date": "03\/05\/2006", "Time": "11:50 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.058340, -87.917138 ], "Address": "2121 N 5TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.917138059293421, 43.058340031363599 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 413, "Incident Number": 60610105, "Date": "03\/02\/2006", "Time": "01:28 PM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.074197, -87.910992 ], "Address": "3055 N 1ST ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.910991577615277, 43.074197444630386 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 414, "Incident Number": 60600045, "Date": "03\/01\/2006", "Time": "09:10 AM", "Police District": 5.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.047722, -87.915905 ], "Address": "1347 N 4TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 2, "g_clusterK5": 2, "e_clusterK6": 1, "g_clusterK6": 1, "e_clusterK7": 4, "g_clusterK7": 4, "e_clusterK8": 7, "g_clusterK8": 7, "e_clusterK9": 0, "g_clusterK9": 0, "e_clusterK10": 5, "g_clusterK10": 5 }, "geometry": { "type": "Point", "coordinates": [ -87.915905100219788, 43.047721676964308 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 415, "Incident Number": 60900067, "Date": "03\/31\/2006", "Time": "11:42 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.072299, -87.973563 ], "Address": "2928 N 48TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.97356338631792, 43.072298832361952 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 416, "Incident Number": 60900144, "Date": "03\/31\/2006", "Time": "07:42 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.075954, -87.965561 ], "Address": "3133 N 42ND ST #LWR", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.965560632003942, 43.07595358673322 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 417, "Incident Number": 60900165, "Date": "03\/31\/2006", "Time": "11:36 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.088824, -87.948279 ], "Address": "3961 N 28TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.94827859925536, 43.08882392200934 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 418, "Incident Number": 60890004, "Date": "03\/30\/2006", "Time": "12:13 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.084401, -87.959711 ], "Address": "3700 W NASH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 0, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.95971132808728, 43.084400642702526 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 419, "Incident Number": 60880034, "Date": "03\/29\/2006", "Time": "09:56 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.075208, -87.972612 ], "Address": "4705 W BURLEIGH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.97261205496558, 43.07520752120741 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 420, "Incident Number": 60880071, "Date": "03\/29\/2006", "Time": "12:26 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.080067, -87.964400 ], "Address": "3343 N 41ST ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.96440008814686, 43.080066502914207 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 421, "Incident Number": 60880158, "Date": "03\/29\/2006", "Time": "06:29 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.076303, -87.962013 ], "Address": "3148 N 39TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.962012860782693, 43.076303413266771 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 422, "Incident Number": 60870012, "Date": "03\/28\/2006", "Time": "03:30 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.080354, -87.947132 ], "Address": "3354 N 27TH ST #A", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.947132419066492, 43.080354220093483 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 423, "Incident Number": 60870149, "Date": "03\/28\/2006", "Time": "11:51 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.074747, -87.962121 ], "Address": "3069 N 39TH ST #UPPER", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.962121077038361, 43.074747335276129 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 424, "Incident Number": 60850100, "Date": "03\/26\/2006", "Time": "05:43 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.075290, -87.958297 ], "Address": "3572 W BURLEIGH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.958297085007473, 43.075290288782767 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 425, "Incident Number": 60840155, "Date": "03\/25\/2006", "Time": "06:48 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.095906, -87.968704 ], "Address": "4301 N 44TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.968703936753187, 43.095906485111939 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 426, "Incident Number": 60830020, "Date": "03\/24\/2006", "Time": "02:07 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.074684, -87.969900 ], "Address": "3057 N 45TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.969899606468729, 43.074684335276118 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 427, "Incident Number": 60830031, "Date": "03\/24\/2006", "Time": "06:54 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.073685, -87.948578 ], "Address": "3011 N 28TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.948577632003946, 43.073685167638075 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 428, "Incident Number": 60840004, "Date": "03\/24\/2006", "Time": "10:29 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.075954, -87.965561 ], "Address": "3133 N 42ND ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.965560632003942, 43.07595358673322 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 429, "Incident Number": 60820105, "Date": "03\/23\/2006", "Time": "12:24 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.072362, -87.943621 ], "Address": "2939 N 24TH PL", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.943621099255353, 43.072362 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 430, "Incident Number": 60820153, "Date": "03\/23\/2006", "Time": "05:34 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.086038, -87.962241 ], "Address": "3900 W VIENNA AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.962241261888309, 43.086037664339258 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 431, "Incident Number": 60810007, "Date": "03\/21\/2006", "Time": "11:23 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.101918, -87.976808 ], "Address": "4655 N 51ST BL", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.976807624790581, 43.101917863725532 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 432, "Incident Number": 60770155, "Date": "03\/18\/2006", "Time": "08:43 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.096764, -87.967863 ], "Address": "4341 W CONGRESS ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.967863322441659, 43.096763744484271 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 433, "Incident Number": 60760121, "Date": "03\/17\/2006", "Time": "03:58 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.086242, -87.946992 ], "Address": "3800 N 27TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 2, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.94699158242841, 43.08624175421204 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 434, "Incident Number": 60750050, "Date": "03\/16\/2006", "Time": "09:58 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.072596, -87.949820 ], "Address": "2945 N 29TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.949819632003951, 43.072596419095163 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 435, "Incident Number": 60750189, "Date": "03\/16\/2006", "Time": "10:52 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.071192, -87.946013 ], "Address": "2868 N 26TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.94601341185313, 43.07119166472387 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 436, "Incident Number": 60730029, "Date": "03\/14\/2006", "Time": "06:35 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.098032, -87.959318 ], "Address": "4441 N 37TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.959318446044009, 43.098032430751914 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 437, "Incident Number": 60730178, "Date": "03\/14\/2006", "Time": "04:51 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.087051, -87.963633 ], "Address": "4019 W ROOSEVELT DR", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.963632844278493, 43.087050767384362 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 438, "Incident Number": 60730217, "Date": "03\/14\/2006", "Time": "07:50 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.089758, -87.962742 ], "Address": "3917 W CAPITOL DR", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.962742, 43.089757513994044 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 439, "Incident Number": 60710016, "Date": "03\/12\/2006", "Time": "12:03 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.104563, -87.965834 ], "Address": "4223 W HAMPTON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.9658335, 43.10456251399404 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 440, "Incident Number": 60700071, "Date": "03\/11\/2006", "Time": "08:52 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.071581, -87.945993 ], "Address": "2900 N 26TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.945993308156091, 43.071581496935835 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 441, "Incident Number": 60700178, "Date": "03\/11\/2006", "Time": "06:39 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.101126, -87.963928 ], "Address": "4619 N 41ST ST #UPR", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.963928128108805, 43.10112633527612 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 442, "Incident Number": 60810003, "Date": "03\/11\/2006", "Time": "11:36 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.089913, -87.967580 ], "Address": "4302 W CAPITOL DR", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.967580474464768, 43.089913486005969 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 443, "Incident Number": 60690190, "Date": "03\/10\/2006", "Time": "08:43 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.089768, -87.971291 ], "Address": "4609 W CAPITOL DR", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.971291276992318, 43.08976848456367 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 444, "Incident Number": 60690207, "Date": "03\/10\/2006", "Time": "10:18 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.079509, -87.948469 ], "Address": "3313 N 28TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.948468573720149, 43.079508502914194 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 445, "Incident Number": 60700025, "Date": "03\/10\/2006", "Time": "11:16 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.100156, -87.960410 ], "Address": "4561 N 38TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.96041010257359, 43.100155812655089 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 446, "Incident Number": 60680023, "Date": "03\/09\/2006", "Time": "06:11 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.091387, -87.971108 ], "Address": "4069 N 46TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.971108157539177, 43.091387413266773 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 447, "Incident Number": 60680123, "Date": "03\/09\/2006", "Time": "04:01 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.093828, -87.962942 ], "Address": "4213 N 40TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.962941632003947, 43.093828005828385 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 448, "Incident Number": 60670146, "Date": "03\/08\/2006", "Time": "08:24 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.073424, -87.967243 ], "Address": "3000 N SHERMAN BL", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.967243152254568, 43.073424 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 449, "Incident Number": 60660136, "Date": "03\/07\/2006", "Time": "07:10 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.077557, -87.976040 ], "Address": "3225 N 50TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 4 }, "geometry": { "type": "Point", "coordinates": [ -87.976039577038364, 43.07755650874256 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 450, "Incident Number": 60650126, "Date": "03\/06\/2006", "Time": "04:59 PM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.104778, -87.982821 ], "Address": "5600 W HAMPTON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.982820832361938, 43.104777525967918 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 451, "Incident Number": 60630046, "Date": "03\/04\/2006", "Time": "08:38 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.102647, -87.959100 ], "Address": "4702 N HOPKINS ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 1, "g_clusterK9": 1, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.959100328726592, 43.102647010271788 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 452, "Incident Number": 60610009, "Date": "03\/02\/2006", "Time": "01:51 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.087877, -87.975442 ], "Address": "4970 W MEDFORD AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 0, "g_clusterK10": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.975442216746615, 43.087876794073424 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 453, "Incident Number": 60610029, "Date": "03\/02\/2006", "Time": "06:43 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.076485, -87.948550 ], "Address": "3161 N 28TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.948550135322165, 43.076484586733216 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 454, "Incident Number": 60600005, "Date": "03\/01\/2006", "Time": "01:05 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.081011, -87.947114 ], "Address": "3388 N 27TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.947114419066494, 43.081011220093501 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 455, "Incident Number": 60600028, "Date": "03\/01\/2006", "Time": "06:15 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.078689, -87.964336 ], "Address": "3278 N 41ST ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 3, "g_clusterK4": 3, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 0, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 6, "g_clusterK8": 6, "e_clusterK9": 4, "g_clusterK9": 4, "e_clusterK10": 4, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.9643359190665, 43.078688832361934 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 456, "Incident Number": 60600052, "Date": "03\/01\/2006", "Time": "09:38 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.074711, -87.947216 ], "Address": "3058 N 27TH ST", "e_clusterK2": 1, "g_clusterK2": 0, "e_clusterK3": 2, "g_clusterK3": 2, "e_clusterK4": 0, "g_clusterK4": 0, "e_clusterK5": 1, "g_clusterK5": 1, "e_clusterK6": 0, "g_clusterK6": 1, "e_clusterK7": 1, "g_clusterK7": 1, "e_clusterK8": 2, "g_clusterK8": 2, "e_clusterK9": 5, "g_clusterK9": 5, "e_clusterK10": 7, "g_clusterK10": 7 }, "geometry": { "type": "Point", "coordinates": [ -87.94721588631792, 43.074711387731554 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 457, "Incident Number": 60870140, "Date": "03\/28\/2006", "Time": "01:57 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.011257, -87.953968 ], "Address": "1800 S 32ND ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.953968210663504, 43.011256711802424 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 458, "Incident Number": 60860042, "Date": "03\/27\/2006", "Time": "09:35 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.004768, -87.940593 ], "Address": "2125 W GRANT ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.940593419095151, 43.004768481245456 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 459, "Incident Number": 60850060, "Date": "03\/26\/2006", "Time": "11:08 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.018850, -87.957645 ], "Address": "1204 S 35TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.957644651704342, 43.018849591022601 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 460, "Incident Number": 60840060, "Date": "03\/25\/2006", "Time": "08:22 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.006734, -87.954544 ], "Address": "3230 W BECHER ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.954544371451803, 43.006734186440518 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 461, "Incident Number": 60840065, "Date": "03\/25\/2006", "Time": "08:59 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.006578, -87.954542 ], "Address": "3231 W BECHER ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.954542155101592, 43.006577933750201 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 462, "Incident Number": 60840112, "Date": "03\/25\/2006", "Time": "11:49 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.010412, -87.952862 ], "Address": "3100 W BURNHAM ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.95286220005093, 43.010411583738154 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 463, "Incident Number": 60840116, "Date": "03\/25\/2006", "Time": "12:57 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.002062, -87.949245 ], "Address": "2348 S 28TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.949245470136944, 43.002062413266771 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 464, "Incident Number": 60840121, "Date": "03\/25\/2006", "Time": "12:42 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.023824, -87.952964 ], "Address": "3110 W PIERCE ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.95296433250617, 43.023824431617307 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 465, "Incident Number": 60840173, "Date": "03\/25\/2006", "Time": "07:57 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.023963, -87.951660 ], "Address": "3010 W PIERCE ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.951660349494304, 43.02396336474456 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 466, "Incident Number": 60830030, "Date": "03\/24\/2006", "Time": "06:21 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.006087, -87.956719 ], "Address": "2123 S 34TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.95671858814687, 43.006087142102842 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 467, "Incident Number": 60830172, "Date": "03\/24\/2006", "Time": "07:37 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.021551, -87.958459 ], "Address": "3531 W NATIONAL AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.95845939301168, 43.021550517312249 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 468, "Incident Number": 60830191, "Date": "03\/24\/2006", "Time": "09:30 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.017019, -87.941331 ], "Address": "2212 W GREENFIELD AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.941331, 43.017019478792598 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 469, "Incident Number": 60810006, "Date": "03\/22\/2006", "Time": "12:16 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.020992, -87.941013 ], "Address": "2209 W MINERAL ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.941012555179825, 43.020991679000211 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 470, "Incident Number": 60790155, "Date": "03\/20\/2006", "Time": "04:58 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.019792, -87.940774 ], "Address": "1126 S 22ND ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.940774151718102, 43.019792276812318 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 471, "Incident Number": 60790196, "Date": "03\/20\/2006", "Time": "09:42 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.009724, -87.952828 ], "Address": "1923 S 31ST ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.952828099255356, 43.009723812655096 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 472, "Incident Number": 60780026, "Date": "03\/19\/2006", "Time": "05:08 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.021878, -87.952820 ], "Address": "3109 W NATIONAL AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.952819772548906, 43.021878498990397 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 473, "Incident Number": 60750069, "Date": "03\/16\/2006", "Time": "11:34 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.012514, -87.949891 ], "Address": "2816 W MITCHELL ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.949890974464765, 43.012514460470761 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 474, "Incident Number": 60740036, "Date": "03\/15\/2006", "Time": "07:18 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.009003, -87.952852 ], "Address": "1959 S 31ST ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.952851573720139, 43.009002754371295 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 475, "Incident Number": 60740140, "Date": "03\/15\/2006", "Time": "03:41 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.004836, -87.941950 ], "Address": "2210 W GRANT ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.941950267608405, 43.004835683933351 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 476, "Incident Number": 60750002, "Date": "03\/15\/2006", "Time": "11:25 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.018902, -87.943629 ], "Address": "1205 S 24TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.943629062611635, 43.018902 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 477, "Incident Number": 60730018, "Date": "03\/14\/2006", "Time": "03:11 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.017709, -87.953800 ], "Address": "3139 W MADISON ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 2, "e_clusterK8": 0, "g_clusterK8": 1, "e_clusterK9": 2, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.953800164723873, 43.017708532315893 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 478, "Incident Number": 60730212, "Date": "03\/14\/2006", "Time": "07:08 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.022144, -87.958902 ], "Address": "819 S 36TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.958901606468729, 43.022143948929546 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 479, "Incident Number": 60710045, "Date": "03\/12\/2006", "Time": "07:54 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.023366, -87.951508 ], "Address": "721 S 30TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.951508106468722, 43.023365664723883 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 480, "Incident Number": 60700035, "Date": "03\/11\/2006", "Time": "03:47 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.022699, -87.939654 ], "Address": "2100 W NATIONAL AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 3, "g_clusterK9": 2, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.939653589647406, 43.022699453257388 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 481, "Incident Number": 60700051, "Date": "03\/11\/2006", "Time": "06:22 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.020540, -87.958826 ], "Address": "1002 S 36TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.958825886317925, 43.02054 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 482, "Incident Number": 60700158, "Date": "03\/11\/2006", "Time": "04:59 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.012187, -87.960262 ], "Address": "1708 S 37TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 2, "e_clusterK8": 0, "g_clusterK8": 1, "e_clusterK9": 2, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.960262471133476, 43.012187188073987 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 483, "Incident Number": 60680005, "Date": "03\/09\/2006", "Time": "12:01 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.019352, -87.960068 ], "Address": "1119 S 37TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.960068080933496, 43.019352419095156 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 484, "Incident Number": 60680108, "Date": "03\/09\/2006", "Time": "01:53 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.005942, -87.952846 ], "Address": "2130 S 31ST ST #A", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.952846444601718, 43.005941832361941 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 485, "Incident Number": 60680001, "Date": "03\/08\/2006", "Time": "10:12 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.011839, -87.937025 ], "Address": "1719 S PEARL ST #LWR", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.937024618673746, 43.011839471290799 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 486, "Incident Number": 60660041, "Date": "03\/07\/2006", "Time": "07:59 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.015087, -87.961212 ], "Address": "3730 W BRANTING LA", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 2, "e_clusterK8": 0, "g_clusterK8": 1, "e_clusterK9": 2, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.961212083819035, 43.015087486005967 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 487, "Incident Number": 60660166, "Date": "03\/07\/2006", "Time": "10:19 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.008503, -87.942753 ], "Address": "2315 W ROGERS ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 1, "g_clusterK10": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.94275261226845, 43.008502528420749 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 488, "Incident Number": 60650173, "Date": "03\/06\/2006", "Time": "05:26 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.006357, -87.946550 ], "Address": "2115 S 26TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.946549584251713, 43.006356586733233 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 489, "Incident Number": 60640138, "Date": "03\/05\/2006", "Time": "08:05 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.002062, -87.949245 ], "Address": "2348 S 28TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.949245470136944, 43.002062413266771 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 490, "Incident Number": 60610033, "Date": "03\/02\/2006", "Time": "08:01 AM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.016882, -87.953373 ], "Address": "3121 W GREENFIELD AV", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 2, "e_clusterK8": 0, "g_clusterK8": 1, "e_clusterK9": 2, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.953372832361936, 43.016882481245453 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 491, "Incident Number": 60600091, "Date": "03\/01\/2006", "Time": "01:42 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.019928, -87.956419 ], "Address": "1103 S 34TH ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 0, "g_clusterK7": 0, "e_clusterK8": 0, "g_clusterK8": 0, "e_clusterK9": 2, "g_clusterK9": 2, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.956419099255356, 43.019928083819025 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 492, "Incident Number": 60600137, "Date": "03\/01\/2006", "Time": "04:59 PM", "Police District": 6.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.012466, -87.946650 ], "Address": "2601 W MITCHELL ST", "e_clusterK2": 1, "g_clusterK2": 1, "e_clusterK3": 1, "g_clusterK3": 1, "e_clusterK4": 2, "g_clusterK4": 2, "e_clusterK5": 0, "g_clusterK5": 0, "e_clusterK6": 5, "g_clusterK6": 5, "e_clusterK7": 2, "g_clusterK7": 2, "e_clusterK8": 1, "g_clusterK8": 1, "e_clusterK9": 3, "g_clusterK9": 3, "e_clusterK10": 2, "g_clusterK10": 2 }, "geometry": { "type": "Point", "coordinates": [ -87.94665, 43.012466488458813 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 493, "Incident Number": 60880060, "Date": "03\/29\/2006", "Time": "09:11 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.177909, -88.022559 ], "Address": "8920 W BROWN DEER RD", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.022559442230673, 43.177909407267265 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 494, "Incident Number": 60860235, "Date": "03\/27\/2006", "Time": "08:17 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.177620, -87.995689 ], "Address": "6841 W BROWN DEER RD", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -87.995688834123513, 43.177620146505738 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 495, "Incident Number": 60860255, "Date": "03\/27\/2006", "Time": "03:04 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.170586, -88.000448 ], "Address": "7300 W DEAN RD", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.000448317117204, 43.170586357146703 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 496, "Incident Number": 60860003, "Date": "03\/26\/2006", "Time": "11:45 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.177909, -88.022559 ], "Address": "8920 W BROWN DEER RD", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.022559442230673, 43.177909407267265 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 497, "Incident Number": 60840156, "Date": "03\/25\/2006", "Time": "06:13 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.121907, -87.986140 ], "Address": "5733 N 60TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.986140106468724, 43.121907199001669 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 498, "Incident Number": 60830004, "Date": "03\/24\/2006", "Time": "12:29 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.184050, -88.002890 ], "Address": "9091 N 75TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.002889846632755, 43.184050111086833 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 499, "Incident Number": 60830130, "Date": "03\/24\/2006", "Time": "12:44 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.120674, -87.991033 ], "Address": "5658 N 64TH ST #3", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 5, "g_clusterK7": 3, "e_clusterK8": 3, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.991033341883906, 43.120674 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 500, "Incident Number": 60830144, "Date": "03\/24\/2006", "Time": "05:08 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.141890, -87.978046 ], "Address": "6850 N 53RD ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 4, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.97804582001416, 43.141889531716018 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 501, "Incident Number": 60820126, "Date": "03\/23\/2006", "Time": "03:50 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.122545, -87.986390 ], "Address": "6000 W CARMEN AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.986389778233061, 43.12254536943837 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 502, "Incident Number": 60820134, "Date": "03\/23\/2006", "Time": "01:36 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.163096, -88.029032 ], "Address": "9415 W BRADLEY RD", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.029031720093485, 43.163095550060838 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 503, "Incident Number": 60810130, "Date": "03\/22\/2006", "Time": "04:39 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.173257, -88.042811 ], "Address": "8559 N 106TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.042811424403936, 43.173256924231055 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 504, "Incident Number": 60810184, "Date": "03\/22\/2006", "Time": "10:02 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.177609, -88.023573 ], "Address": "9005 W BROWN DEER RD", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.023572748542904, 43.177608546742619 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 505, "Incident Number": 60770125, "Date": "03\/18\/2006", "Time": "05:26 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.121176, -87.989382 ], "Address": "6235 W THURSTON AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.989382335276119, 43.121175539529268 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 506, "Incident Number": 60760059, "Date": "03\/17\/2006", "Time": "10:08 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.146029, -87.978812 ], "Address": "7060 N PRESIDIO DR", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 4, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.978811549110333, 43.14602905397247 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 507, "Incident Number": 60760131, "Date": "03\/17\/2006", "Time": "05:50 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.177591, -88.025320 ], "Address": "9201 W BROWN DEER RD", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.025319723007684, 43.177590549483909 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 508, "Incident Number": 60760132, "Date": "03\/17\/2006", "Time": "05:50 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.177591, -88.025320 ], "Address": "9201 W BROWN DEER RD", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.025319723007684, 43.177590549483909 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 509, "Incident Number": 60760133, "Date": "03\/17\/2006", "Time": "05:50 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.177591, -88.025320 ], "Address": "9201 W BROWN DEER RD", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.025319723007684, 43.177590549483909 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 510, "Incident Number": 60740142, "Date": "03\/15\/2006", "Time": "06:11 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.183093, -88.027332 ], "Address": "9096 N 95TH ST #H", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.027331831380991, 43.183092991949906 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 511, "Incident Number": 60730116, "Date": "03\/14\/2006", "Time": "01:46 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.142679, -87.985628 ], "Address": "6861 N 60TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 4, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.98562814311245, 43.142679 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 512, "Incident Number": 60730124, "Date": "03\/14\/2006", "Time": "02:08 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.122096, -87.985955 ], "Address": "5728 N 60TH ST", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 3, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 0, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.985954893531272, 43.122095800998324 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 513, "Incident Number": 60730150, "Date": "03\/14\/2006", "Time": "03:22 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.158424, -87.988284 ], "Address": "6244 W PORT AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 6, "g_clusterK9": 8, "e_clusterK10": 8, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -87.988284199549923, 43.158424011945215 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 514, "Incident Number": 60710135, "Date": "03\/12\/2006", "Time": "11:19 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.179382, -88.032188 ], "Address": "9727 W BEATRICE ST #3", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.032188393501059, 43.179382227216301 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 515, "Incident Number": 60700081, "Date": "03\/11\/2006", "Time": "09:57 AM", "Police District": 4.0, "Offense 1": "BURGLARY\/BREAKING AND ENTERING", "Offense 2": "MOTOR VEHICLE THEFT", "Location": [ 43.153537, -88.018676 ], "Address": "7480 N 86TH ST #H", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.018675654534775, 43.153537274098788 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 516, "Incident Number": 60670089, "Date": "03\/08\/2006", "Time": "02:27 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.148425, -87.983561 ], "Address": "5701 W GOOD HOPE RD", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 3, "g_clusterK7": 6, "e_clusterK8": 4, "g_clusterK8": 5, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.983561383432388, 43.148424537798505 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 517, "Incident Number": 60670157, "Date": "03\/08\/2006", "Time": "10:16 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.128097, -87.989571 ], "Address": "6300 W KAUL AV", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 3, "g_clusterK7": 3, "e_clusterK8": 4, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.989570664723871, 43.128097478792618 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 518, "Incident Number": 60640087, "Date": "03\/05\/2006", "Time": "11:27 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.123055, -87.992082 ], "Address": "6434 W CARMEN AV #LOWER", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 4, "g_clusterK5": 4, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 5, "g_clusterK7": 3, "e_clusterK8": 3, "g_clusterK8": 4, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.992082303912511, 43.123055446044013 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 519, "Incident Number": 60650153, "Date": "03\/04\/2006", "Time": "06:46 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.156160, -87.980920 ], "Address": "5520 W CALUMET RD", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 3, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 6, "g_clusterK9": 6, "e_clusterK10": 8, "g_clusterK10": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.980919947804367, 43.15616008661766 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 520, "Incident Number": 60600049, "Date": "03\/01\/2006", "Time": "09:56 AM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.170522, -88.002863 ], "Address": "7415 W DEAN RD", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.002862904668433, 43.170521516592039 ] } }, { "type": "Feature", "properties": { "Unnamed: 0": 521, "Incident Number": 60600117, "Date": "03\/01\/2006", "Time": "04:29 PM", "Police District": 4.0, "Offense 1": "MOTOR VEHICLE THEFT", "Location": [ 43.148836, -88.008524 ], "Address": "7830 W GOOD HOPE RD", "e_clusterK2": 0, "g_clusterK2": 0, "e_clusterK3": 0, "g_clusterK3": 0, "e_clusterK4": 1, "g_clusterK4": 1, "e_clusterK5": 3, "g_clusterK5": 3, "e_clusterK6": 4, "g_clusterK6": 4, "e_clusterK7": 6, "g_clusterK7": 6, "e_clusterK8": 5, "g_clusterK8": 5, "e_clusterK9": 8, "g_clusterK9": 8, "e_clusterK10": 3, "g_clusterK10": 3 }, "geometry": { "type": "Point", "coordinates": [ -88.008524025535223, 43.148836456141979 ] } } ] }
var express = require('express'); var bodyParser = require('body-parser'); var favicon = require('serve-favicon'); var logger = require('morgan'); var methodOverride = require('method-override'); var errorHandler = require('errorhandler'); var routes = require('./routes'); var http = require('http'); var path = require('path'); var app = express(); // all environments app.set('port', process.env.PORT || 8000); app.set('views', path.join(__dirname, 'views')); app.set('view engine', 'jade'); app.use(logger('dev')); app.use(bodyParser.json()); app.use(bodyParser.urlencoded({ extended: true })); app.use(methodOverride()); app.use(express.static(path.join(__dirname, 'public'))); // development only if ('development' == app.get('env')) { app.use(errorHandler()); } app.get('/', routes.index); app.post('/new', routes.create_short); app.get('/:slug', routes.find_redirect); http.createServer(app).listen(app.get('port'), function(){ console.log('Express server listening on port ' + app.get('port')); });
var opEditor; $(document).ready(function () { InitTextArea(); // load codemirror to options editor // Select/Delete trigger for table $("#opcontainer").on("click", "input", function () { var row = $(this).parents("tr"); if ($(this).val() == "select") { $("#op_id").val(row.find("td:eq(2)").html()); $("#op_type").val(row.find("td:eq(3)").html()); $("#op_name").val(row.find("td:eq(4)").html()); $("#op_url").val(row.find("td:eq(5)").html()); opEditor.setValue(row.find("textarea").text()); } else if ($(this).val() == "delete") { if (confirm("Realy delete option ?") == true) { DeleteOption(row.find("td:eq(2)").html()); } } }); // Clear editable textbox and text areas $("#btcleanop").click(function () { if (confirm("Clear textbox ?")) { $("#op_id").val(""); $("#op_type").val(""); $("#op_name").val(""); $("#op_url").val(""); $("#op_url").val(""); opEditor.setValue(""); } }); LoadOptionSelector(); // Load list of available options }); // Get list of available options from server side function LoadOptionSelector() { $.ajax({ type: "POST", contentType: "application/json; charset=utf-8", url: "../bo_cmds.asmx/ListAvailableOptions", data: "{'ctrl': '" + $("#webServiceKey").val() + "'}", success: function (data) { var jsonData = $.parseJSON(data.d); $('#opcontainer > table').html(""); if (jsonData.length > 0) { var theader = ""; theader += "<tr>"; theader += " <th></th>"; theader += " <th></th>"; theader += " <th>Id</th>"; theader += " <th>Type</th>"; theader += " <th>Name</th>"; theader += " <th>Url</th>"; theader += " <th>Options</th>"; theader += "</tr>"; $('#opcontainer > table').append(theader); for (var i = 0; i < jsonData.length; i++) { var tbody = ""; tbody += "<tr>"; tbody += " <td><input type='button' value='select'/></td>"; tbody += " <td><input type='button' value='delete'/></td>"; tbody += " <td>" + jsonData[i].ID + "</td>"; tbody += " <td>" + jsonData[i].OBJType + "</td>"; tbody += " <td>" + jsonData[i].Name + "</td>"; tbody += " <td>" + jsonData[i].URL + "</td>"; tbody += " <td><textarea id='optextarea_" + i + "'>" + jsonData[i].Options1 + "</textarea></td>"; tbody += "</tr>"; $('#opcontainer > table').append(tbody); } for (var i = 0; i < jsonData.length; i++) { LoadCodeMirror('optextarea_' + i, 'text/x-ntec', 'vibrant-ink', false); } } }, error: function (e) { alert("Error: Something went wrong " + e.status); } }); } // Send option id throw ajax to server side to drop option function DeleteOption(opId) { $.ajax({ type: "POST", contentType: "application/json; charset=utf-8", url: "../bo_cmds.asmx/DeleteAvailableOption", data: "{'opId': '" + opId + "','ctrl': '" + $("#webServiceKey").val() + "'}", success: function (data) { alert(data.d); LoadOptionSelector(); // reload available options }, error: function (e) { alert("Error: Something went wrong " + e.status); } }); } // load codemirror to options editor function InitTextArea() { opEditor = LoadCodeMirror('op_options', 'text/x-ntec', 'vibrant-ink', true); opEditor.setSize('100%', (getDocHeight() - 300) + "px"); }
__d("text.t",function(t,i,s){s.exports="Here is brisk demo!"});
import fs from 'fs-extra' import Promise from 'bluebird' import nestOmit from './nest-omit' const debug = require('debug')('nest-omit:core') const writeFile = Promise.promisify(fs.writeFile) export default function omitPropsInFile(filePath:String, omittedProps:Array<String>):Promise { debug('File Path', filePath) const result = nestOmit(require(filePath), omittedProps) return writeFile(filePath, JSON.stringify(result, null, 2)) }
// import PropTypes from "prop-types"; import React from "react"; import pureNoFunc from "../../utils/pureNoFunc"; function AASliver(props) { const { forward, aminoAcidIndex, showAAColors = true, onClick, onContextMenu, width, height, isFiller, isTruncatedStart, isTruncatedEnd, relativeAAPositionInTranslation, title, color, showAminoAcidNumbers, letter } = props; if (letter === "-") { return null; } return ( <g onClick={onClick} onContextMenu={onContextMenu} transform={ "scale(" + (width / 100) * 1.25 + ", " + height / 100 + ") translate(" + ((forward ? -20 : -50) + ((relativeAAPositionInTranslation - 1) * 100) / 1.25) + ",0)" } > <title>{title}</title> {showAAColors && ( <polyline className={letter} transform={forward ? "scale(3,1)" : "translate(300,0) scale(-3,1) "} points={ isFiller ? "25,0 49,0 60,50 49,100 25,100 38,50 25,0" : isTruncatedStart ? "0,0 50,0 60,50 50,100 00,100 16,50 0,0" : isTruncatedEnd ? "24,0 74,0 84,50 74,100 24,100 40,50 24,0" : "0,0 74,0 85,50 74,100 0,100 16,50 0,0" } strokeWidth="5" fill={color || "gray"} /> )} {!isFiller && ( <text fontSize={25} stroke="black" strokeWidth={2} transform={`scale(3,3) translate(${forward ? 45 : 55},21)`} x="0" y="4" style={{ textAnchor: "middle" }} > {letter} </text> )} {showAminoAcidNumbers && (aminoAcidIndex + 1) % 5 === 0 && ( <text fontSize={25} stroke="black" strokeWidth={2} transform={`scale(3,3) translate(${forward ? 45 : 55},51)`} x="0" y="4" style={{ textAnchor: "middle" }} > {aminoAcidIndex + 1} </text> )} </g> ); } export default pureNoFunc(AASliver);
import Router from './router.js'; import RouteStore from './stores/RouteStore.js'; import LinkTo from './components/LinkTo.js'; export { Router, RouteStore, LinkTo };
/** * @license RequireJS domReady 2.0.0 Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved. * Available via the MIT or new BSD license. * see: http://github.com/requirejs/domReady for details */ define([],function(){"use strict";function n(n){var e;for(e=0;e<n.length;e++)n[e](l)}function e(){var e=u;r&&e.length&&(u=[],n(e))}function t(){r||(r=!0,a&&clearInterval(a),e())}function o(n){return r?n(l):u.push(n),o}var d,i,a,c="undefined"!=typeof window&&window.document,r=!c,l=c?document:null,u=[];if(c){if(document.addEventListener)document.addEventListener("DOMContentLoaded",t,!1),window.addEventListener("load",t,!1);else if(window.attachEvent){window.attachEvent("onload",t),i=document.createElement("div");try{d=null===window.frameElement}catch(n){}i.doScroll&&d&&window.external&&(a=setInterval(function(){try{i.doScroll(),t()}catch(n){}},30))}"complete"!==document.readyState&&"interactive"!==document.readyState||t()}return o.version="2.0.0",o.load=function(n,e,t,d){d.isBuild?t(null):o(t)},o});
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); exports['default'] = function () { return function (next) { return function (action) { var promise = action.promise; var type = action.type; var payload = action.payload; if (!promise) { return next(action); } // CREATE_RESOURCE // TODO: Use ...rest next({ type: type, meta: action.meta, id: action.id, payload: payload, readyState: 'request' }); return promise.then(function (res) { //CREATE_RESOURCE_SUCCESS next({ type: type + '_SUCCESS', meta: action.meta, payload: payload, result: res.data, readyState: 'success' }); })['catch'](function (err) { //CREATE_RESOURCE_FAILURE next({ type: type + '_FAILURE', meta: action.meta, payload: payload, result: err, readyState: 'failure' }); }); }; }; }; module.exports = exports['default'];
import React from 'react'; import ReactDOM from 'react-dom'; import { Provider } from 'react-redux'; import { createStore, applyMiddleware } from 'redux'; import thunk from 'redux-thunk'; import { composeWithDevTools } from 'redux-devtools-extension'; import rootReducer from './reducers'; import App from './App'; import './index.css'; import Container from './components'; const store = createStore( rootReducer, composeWithDevTools(applyMiddleware(thunk)) ); ReactDOM.render( <Provider store={store}> <Container /> </Provider>, document.getElementById('root') );
import React, { Component } from 'react'; export default class addItem extends Component{ constructor(){ super(); this.state = { newPrice:'', newItem:'' }; } handleNameChange = (e) => { this.setState({ newItem: e.target.value }); } handlePriceChange = (e) => { this.setState({ newPrice: e.target.value }); } handleSubmit = () => { let itemName = this.state.newItem; let itemPrice = this.state.newPrice; if(!itemName || !itemPrice){ alert('Fields empty'); return; } this.props.onAddItem({itemName:itemName, itemPrice:itemPrice}); this.setState({ newPrice:'', newItem:'' }); } render(){ return( <div className="form-group col-md-6"> <input type="text" className="form-control" autoFocus="true" placeholder="Product Name" onChange={this.handleNameChange} value={this.state.newItem}/> <input type='number' className="form-control" placeholder="Product Price" onChange={this.handlePriceChange} value={this.state.newPrice}/> <button className="btn btn-primary" onClick={this.handleSubmit}>Add Item</button> </div> ); } }
/* global d3 */ /* jslint browser: true, devel: true, indent: 4, multistr: true */ d3.layout.forceInABox = function () { "use strict"; var force = d3.layout.force(), tree, foci = {}, oldStart = force.start, oldLinkStrength = force.linkStrength(), oldGravity = force.gravity(), treeMapNodes = [], groupBy = function (d) {return d["cluster"]}, enableGrouping = true, gravityToFoci = 0.1, gravityOverall = 0.01, linkStrengthInterCluster = 0.05; // force.gravity = function(x) { // if (!arguments.length) return oldGravity; // oldGravity = +x; // return force; // }; force.groupBy = function (x) { if (!arguments.length) return groupBy; if (typeof x === "string") { x = function (d) {return d[x]; }; return force; } groupBy = x; return force; }; var update = function () { if (enableGrouping) { force.gravity(gravityOverall); } else { force.gravity(oldGravity); } }; force.enableGrouping = function (x) { if (!arguments.length) return enableGrouping; enableGrouping = x; update(); return force; }; force.gravityToFoci = function (x) { if (!arguments.length) return gravityToFoci; gravityToFoci = x; return force; }; force.gravityOverall = function (x) { if (!arguments.length) return gravityOverall; gravityOverall = x; return force; }; force.linkStrengthInterCluster = function (x) { if (!arguments.length) return linkStrengthInterCluster; linkStrengthInterCluster = x; return force; }; force.linkStrength(function (e) { if (!enableGrouping || groupBy(e.source) === groupBy(e.target)) { if (typeof(oldLinkStrength)==="function") { return oldLinkStrength(e); } else { return oldLinkStrength; } } else { if (typeof(linkStrengthInterCluster)==="function") { return linkStrengthInterCluster(e); } else { return linkStrengthInterCluster; } } }); function computeClustersCounts(nodes) { var clustersCounts = d3.map(); nodes.forEach(function (d) { if (!clustersCounts.has(groupBy(d))) { clustersCounts.set(groupBy(d), 0); } }); nodes.forEach(function (d) { // if (!d.show) { return; } clustersCounts.set(groupBy(d), clustersCounts.get(groupBy(d)) + 1); }); return clustersCounts; } function getGroupsTree() { var children = [], totalSize = 0, clustersList, c, i, size, clustersCounts; clustersCounts=computeClustersCounts(force.nodes()); //map.keys() is really slow, it's crucial to have it outside the loop clustersList = clustersCounts.keys(); for (i = 0; i< clustersList.length ; i+=1) { c = clustersList[i]; size = clustersCounts.get(c); children.push({id : c, size :size }); totalSize += size; } return {id: "clustersTree", size: totalSize, children : children}; } force.recompute = function () { var treemap = d3.layout.treemap() .size(force.size()) .sort(function (p, q) { return d3.ascending(p.size, q.size); }) .value(function (d) { return d.size; }); tree = getGroupsTree(); treeMapNodes = treemap.nodes(tree); //compute foci foci.none = {x : 0, y : 0}; treeMapNodes.forEach(function (d) { foci[d.id] = { x : (d.x + d.dx / 2), y : (d.y + d.dy / 2) }; }); // Draw the treemap return force; }; force.drawTreemap = function (container) { container.selectAll("rect.cell").remove(); container.selectAll("rect.cell") .data(treeMapNodes) .enter().append("svg:rect") .attr("class", "cell") .attr("x", function (d) { return d.x; }) .attr("y", function (d) { return d.y; }) .attr("width", function (d) { return d.dx; }) .attr("height", function (d) { return d.dy; }); return force; }; force.deleteTreemap = function (container) { container.selectAll("rect.cell").remove(); return force; }; force.onTick = function (e) { if (!enableGrouping) { return force; } var k; k = force.gravityToFoci() * e.alpha; force.nodes().forEach(function (o) { if (!foci.hasOwnProperty(groupBy(o))) { return; } o.y += (foci[groupBy(o)].y - o.y) * k; o.x += (foci[groupBy(o)].x - o.x) * k; }); return force; }; force.start = function () { update(); oldStart(); if (enableGrouping) { force.recompute(); } return force; }; return force; };
div.mycolor = "red"; alert(div.getAttribute("mycolor")); // null (except in Internet Explorer)
/** * DevExtreme (viz/core/tooltip.js) * Version: 16.2.6 * Build date: Tue Mar 28 2017 * * Copyright (c) 2012 - 2017 Developer Express Inc. ALL RIGHTS RESERVED * EULA: https://www.devexpress.com/Support/EULAs/DevExtreme.xml */ "use strict"; var doc = document, win = window, $ = require("jquery"), rendererModule = require("./renderers/renderer"), commonUtils = require("../../core/utils/common"), HALF_ARROW_WIDTH = 10, vizUtils = require("./utils"), _format = require("./format"), mathCeil = Math.ceil; function hideElement($element) { $element.css({ left: "-9999px" }).detach() } function getSpecialFormatOptions(options, specialFormat) { var result = options; switch (specialFormat) { case "argument": result = { format: options.argumentFormat, precision: options.argumentPrecision }; break; case "percent": result = { format: { type: "percent", precision: options.format && options.format.percentPrecision || options.percentPrecision } } } return result } function Tooltip(params) { var renderer, root, that = this; that._eventTrigger = params.eventTrigger; that._wrapper = $("<div>").css({ position: "absolute", overflow: "visible", height: "1px", "pointer-events": "none" }).addClass(params.cssClass); that._renderer = renderer = new rendererModule.Renderer({ pathModified: params.pathModified, container: that._wrapper[0] }); root = renderer.root; root.attr({ "pointer-events": "none" }); that._cloud = renderer.path([], "area").sharp().append(root); that._shadow = renderer.shadowFilter(); that._textGroup = renderer.g().attr({ align: "center" }).append(root); that._text = renderer.text(void 0, 0, 0).append(that._textGroup); that._textGroupHtml = $("<div>").css({ position: "absolute", width: 0, padding: 0, margin: 0, border: "0px solid transparent" }).appendTo(that._wrapper); that._textHtml = $("<div>").css({ position: "relative", display: "inline-block", padding: 0, margin: 0, border: "0px solid transparent" }).appendTo(that._textGroupHtml) } Tooltip.prototype = { constructor: Tooltip, dispose: function() { this._wrapper.remove(); this._renderer.dispose(); this._options = null }, _getContainer: function() { var container = $(this._options.container); return (container.length ? container : $("body")).get(0) }, setOptions: function(options) { options = options || {}; var that = this, cloudSettings = that._cloudSettings = { opacity: options.opacity, filter: that._shadow.id, "stroke-width": null, stroke: null }, borderOptions = options.border || {}; that._shadowSettings = $.extend({ x: "-50%", y: "-50%", width: "200%", height: "200%" }, options.shadow); that._options = options; if (borderOptions.visible) { $.extend(cloudSettings, { "stroke-width": borderOptions.width, stroke: borderOptions.color, "stroke-opacity": borderOptions.opacity, dashStyle: borderOptions.dashStyle }) } that._textFontStyles = vizUtils.patchFontOptions(options.font); that._textFontStyles.color = options.font.color; that._wrapper.css({ "z-index": options.zIndex }); that._customizeTooltip = $.isFunction(options.customizeTooltip) ? options.customizeTooltip : null; return that }, setRendererOptions: function(options) { this._renderer.setOptions(options); this._textGroupHtml.css({ direction: options.rtl ? "rtl" : "ltr" }); return this }, render: function() { var that = this; hideElement(that._wrapper); that._cloud.attr(that._cloudSettings); that._shadow.attr(that._shadowSettings); that._textGroupHtml.css(that._textFontStyles); that._textGroup.css(that._textFontStyles); that._text.css(that._textFontStyles); that._eventData = null; return that }, update: function(options) { return this.setOptions(options).render() }, _prepare: function(formatObject, state) { var options = this._options, customize = {}; if (this._customizeTooltip) { customize = this._customizeTooltip.call(formatObject, formatObject); customize = $.isPlainObject(customize) ? customize : {}; if ("text" in customize) { state.text = commonUtils.isDefined(customize.text) ? String(customize.text) : "" } if ("html" in customize) { state.html = commonUtils.isDefined(customize.html) ? String(customize.html) : "" } } if (!("text" in state) && !("html" in state)) { state.text = formatObject.valueText || "" } state.color = customize.color || options.color; state.borderColor = customize.borderColor || (options.border || {}).color; state.textColor = customize.fontColor || (options.font || {}).color; return !!state.text || !!state.html }, show: function(formatObject, params, eventData) { var bBox, contentSize, that = this, state = {}, options = that._options, paddingLeftRight = options.paddingLeftRight, paddingTopBottom = options.paddingTopBottom, textGroupHtml = that._textGroupHtml, textHtml = that._textHtml, ss = that._shadowSettings, xOff = ss.offsetX, yOff = ss.offsetY, blur = 2 * ss.blur + 1, getComputedStyle = win.getComputedStyle; if (!that._prepare(formatObject, state)) { return false } that._state = state; state.tc = {}; that._wrapper.appendTo(that._getContainer()); that._cloud.attr({ fill: state.color, stroke: state.borderColor }); if (state.html) { that._text.attr({ text: "" }); textGroupHtml.css({ color: state.textColor, width: that._getCanvas().width }); textHtml.html(state.html); if (getComputedStyle) { bBox = getComputedStyle(textHtml.get(0)); bBox = { x: 0, y: 0, width: mathCeil(parseFloat(bBox.width)), height: mathCeil(parseFloat(bBox.height)) } } else { bBox = textHtml.get(0).getBoundingClientRect(); bBox = { x: 0, y: 0, width: mathCeil(bBox.width ? bBox.width : bBox.right - bBox.left), height: mathCeil(bBox.height ? bBox.height : bBox.bottom - bBox.top) } } textGroupHtml.width(bBox.width); textGroupHtml.height(bBox.height) } else { textHtml.html(""); that._text.css({ fill: state.textColor }).attr({ text: state.text }); bBox = that._textGroup.css({ fill: state.textColor }).getBBox() } contentSize = state.contentSize = { x: bBox.x - paddingLeftRight, y: bBox.y - paddingTopBottom, width: bBox.width + 2 * paddingLeftRight, height: bBox.height + 2 * paddingTopBottom, lm: blur - xOff > 0 ? blur - xOff : 0, rm: blur + xOff > 0 ? blur + xOff : 0, tm: blur - yOff > 0 ? blur - yOff : 0, bm: blur + yOff > 0 ? blur + yOff : 0 }; contentSize.fullWidth = contentSize.width + contentSize.lm + contentSize.rm; contentSize.fullHeight = contentSize.height + contentSize.tm + contentSize.bm + options.arrowLength; that.move(params.x, params.y, params.offset); that._eventData && that._eventTrigger("tooltipHidden", that._eventData); that._eventData = eventData; that._eventTrigger("tooltipShown", that._eventData); return true }, hide: function() { var that = this; hideElement(that._wrapper); that._eventData && that._eventTrigger("tooltipHidden", that._eventData); that._eventData = null }, move: function(x, y, offset) { offset = offset || 0; var that = this, canvas = that._getCanvas(), state = that._state, coords = state.tc, contentSize = state.contentSize; if (that._calculatePosition(x, y, offset, canvas)) { that._cloud.attr({ points: coords.cloudPoints }).move(contentSize.lm, contentSize.tm); if (state.html) { that._textGroupHtml.css({ left: -contentSize.x + contentSize.lm, top: -contentSize.y + contentSize.tm + coords.correction }) } else { that._textGroup.move(-contentSize.x + contentSize.lm, -contentSize.y + contentSize.tm + coords.correction) } that._renderer.resize("out" === coords.hp ? canvas.fullWidth - canvas.left : contentSize.fullWidth, "out" === coords.vp ? canvas.fullHeight - canvas.top : contentSize.fullHeight) } offset = that._wrapper.css({ left: 0, top: 0 }).offset(); that._wrapper.css({ left: coords.x - offset.left, top: coords.y - offset.top, width: contentSize.fullWidth }) }, formatValue: function(value, _specialFormat) { var options = _specialFormat ? getSpecialFormatOptions(this._options, _specialFormat) : this._options; return _format(value, options) }, getLocation: function() { return vizUtils.normalizeEnum(this._options.location) }, isEnabled: function() { return !!this._options.enabled }, isShared: function() { return !!this._options.shared }, _calculatePosition: function(x, y, offset, canvas) { var cloudPoints, y1, y3, hasDeprecatedPosition, that = this, options = that._options, arrowLength = options.arrowLength, state = that._state, coords = state.tc, contentSize = state.contentSize, contentWidth = contentSize.width, halfContentWidth = contentWidth / 2, contentHeight = contentSize.height, cTop = y - canvas.top, cBottom = canvas.top + canvas.height - y, cLeft = x - canvas.left, cRight = canvas.width + canvas.left - x, tTop = contentHeight + arrowLength + offset + contentSize.tm, tBottom = contentHeight + arrowLength + offset + contentSize.bm, tLeft = contentWidth + contentSize.lm, tRight = contentWidth + contentSize.rm, tHalfLeft = halfContentWidth + contentSize.lm, tHalfRight = halfContentWidth + contentSize.rm, correction = 0, arrowPoints = [6, 0], x1 = halfContentWidth + HALF_ARROW_WIDTH, x2 = halfContentWidth, x3 = halfContentWidth - HALF_ARROW_WIDTH, y2 = contentHeight + arrowLength, hp = "center", vp = "bottom"; y1 = y3 = contentHeight; switch (options.verticalAlignment) { case "top": vp = "bottom"; hasDeprecatedPosition = true; break; case "bottom": vp = "top"; hasDeprecatedPosition = true } if (!hasDeprecatedPosition) { if (tTop > cTop && tBottom > cBottom) { vp = "out" } else { if (tTop > cTop) { vp = "top" } } } hasDeprecatedPosition = false; switch (options.horizontalAlignment) { case "left": hp = "right"; hasDeprecatedPosition = true; break; case "center": hp = "center"; hasDeprecatedPosition = true; break; case "right": hp = "left"; hasDeprecatedPosition = true } if (!hasDeprecatedPosition) { if (tLeft > cLeft && tRight > cRight) { hp = "out" } else { if (tHalfLeft > cLeft && tRight < cRight) { hp = "left" } else { if (tHalfRight > cRight && tLeft < cLeft) { hp = "right" } } } } if ("out" === hp) { x = canvas.left } else { if ("left" === hp) { x1 = HALF_ARROW_WIDTH; x2 = x3 = 0 } else { if ("right" === hp) { x1 = x2 = contentWidth; x3 = contentWidth - HALF_ARROW_WIDTH; x -= contentWidth } else { if ("center" === hp) { x -= halfContentWidth } } } } if ("out" === vp) { y = canvas.top } else { if ("top" === vp) { "out" !== hp && (correction = arrowLength); arrowPoints[0] = 2; y1 = y3 = arrowLength; y2 = x1; x1 = x3; x3 = y2; y2 = 0; y += offset } else { y -= contentHeight + arrowLength + offset } } coords.x = x - contentSize.lm; coords.y = y - contentSize.tm; coords.correction = correction; if (hp === coords.hp && vp === coords.vp) { return false } coords.hp = hp; coords.vp = vp; cloudPoints = [0, 0 + correction, contentWidth, 0 + correction, contentWidth, contentHeight + correction, 0, contentHeight + correction]; if ("out" !== hp && "out" !== vp) { arrowPoints.splice(2, 0, x1, y1, x2, y2, x3, y3); cloudPoints.splice.apply(cloudPoints, arrowPoints) } coords.cloudPoints = cloudPoints; return true }, _getCanvas: function() { var html = doc.documentElement, body = doc.body; return { left: win.pageXOffset || html.scrollLeft || 0, top: win.pageYOffset || html.scrollTop || 0, width: html.clientWidth || 0, height: html.clientHeight || 0, fullWidth: Math.max(body.scrollWidth, html.scrollWidth, body.offsetWidth, html.offsetWidth, body.clientWidth, html.clientWidth), fullHeight: Math.max(body.scrollHeight, html.scrollHeight, body.offsetHeight, html.offsetHeight, body.clientHeight, html.clientHeight) } } }; exports.Tooltip = Tooltip; exports.plugin = { name: "tooltip", init: function() { this._initTooltip() }, dispose: function() { this._disposeTooltip() }, members: { _initTooltip: function() { this._tooltip = new exports.Tooltip({ cssClass: this._rootClassPrefix + "-tooltip", eventTrigger: this._eventTrigger, pathModified: this.option("pathModified") }) }, _disposeTooltip: function() { this._tooltip.dispose(); this._tooltip = null }, _hideTooltip: function() { this._tooltip.hide() }, _onRender: function() { if (!this._$element.is(":visible")) { this._hideTooltip() } }, _setTooltipRendererOptions: function() { this._tooltip.setRendererOptions(this._getRendererOptions()) }, _setTooltipOptions: function() { this._tooltip.update(this._getOption("tooltip")) } }, customize: function(constructor) { var proto = constructor.prototype; proto._eventsMap.onTooltipShown = { name: "tooltipShown" }; proto._eventsMap.onTooltipHidden = { name: "tooltipHidden" }; constructor.addChange({ code: "TOOLTIP_RENDERER", handler: function() { this._setTooltipRendererOptions() }, isThemeDependent: true, isOptionChange: true }); constructor.addChange({ code: "TOOLTIP", handler: function() { this._setTooltipOptions() }, isThemeDependent: true, isOptionChange: true, option: "tooltip" }) } };
const Actions = { helpers: {}, 'SMARTFORM_FORM_MOUNTED': function ({id}) { FormState.set('form.activeId', id); }, 'SMARTFORM_INPUT_MOUNTED': function ({formId, id, valid, value}) { const camelCaseFormId = CaseConv.convert(formId, 'aB'); const camelCaseId = CaseConv.convert(id, 'aB'); FormState.set(`form.${camelCaseFormId}`, { [camelCaseId]: { errorReason: SmartForm.ERROR_NONE, valid, value } }); }, 'SMARTFORM_INPUT_CHANGED': function ({callback, props, validations, value}) { const camelCaseFormId = CaseConv.convert(props.formId, 'aB'); const camelCaseId = CaseConv.convert(props.id, 'aB'); let valid = true, errorReason = SmartForm.ERROR_NONE; // Is the form input valid? if (props.required && value === '') { // Required field is blank valid = false; errorReason = SmartForm.ERROR_REQUIRED; } else if (props.validateAs && value !== '') { let regexMatch; if (typeof props.validateAs === 'string') { regexMatch = value.match(validations[props.validateAs]); } else { regexMatch = value.match(props.validateAs); } if (!regexMatch) { /* Field doesn't pass regex validation. If it's weak validation, don't be a hard error - set valid to true */ if (props.weakValidation) { valid = true; errorReason = SmartForm.ERROR_SUSPECT; } else { valid = false; errorReason = SmartForm.ERROR_INVALID; } } } FormState.set(`form.${camelCaseFormId}`, { [camelCaseId]: {valid, value} }); callback({errorReason, valid}); }, 'SMARTFORM_SELECT_CHANGED': function ({callback, props, validations, value}) { const camelCaseFormId = CaseConv.convert(props.formId, 'aB'); const camelCaseId = CaseConv.convert(props.id, 'aB'); let valid = true, errorReason = SmartForm.ERROR_NONE; if (props.required && value === '') { valid = false; errorReason = SmartForm.ERROR_REQUIRED; } FormState.set(`form.${camelCaseFormId}`, { [camelCaseId]: {errorReason, valid, value} }); callback({errorReason, valid}); }, 'SMARTFORM_INPUT_BLURORFOCUS': function ({errorReason, event, formId, id}) { const camelCaseFormId = CaseConv.convert(formId, 'aB'); const camelCaseId = CaseConv.convert(id, 'aB'); const formError = `form.${camelCaseFormId}.${camelCaseId}.errorReason`; FormState.set(formError, event === 'focus' ? SmartForm.ERROR_NONE : errorReason); }, 'SMARTFORM_SUBMITTED': function ({formData, submitFunction}) { if (_.findWhere(formData, {valid: false})) { submitFunction( new Meteor.Error('form-error', 'There are invalid fields in this form'), formData ); } else { submitFunction(undefined, formData); } } }; FormDispatcher.register(function (action) { Actions[action.type] && Actions[action.type](_.omit(action, 'type')); });
/* jshint indent: 2 */ module.exports = function(sequelize, DataTypes) { return sequelize.define('phpbb_groups', { group_id: { type: DataTypes.INTEGER(8), allowNull: false, primaryKey: true, autoIncrement: true }, group_type: { type: DataTypes.INTEGER(4), allowNull: false, defaultValue: "1" }, group_founder_manage: { type: DataTypes.INTEGER(1), allowNull: false, defaultValue: "0" }, group_skip_auth: { type: DataTypes.INTEGER(1), allowNull: false, defaultValue: "0" }, group_name: { type: DataTypes.STRING, allowNull: false, defaultValue: "" }, group_desc: { type: DataTypes.TEXT, allowNull: false }, group_desc_bitfield: { type: DataTypes.STRING, allowNull: false, defaultValue: "" }, group_desc_options: { type: DataTypes.INTEGER(11), allowNull: false, defaultValue: "7" }, group_desc_uid: { type: DataTypes.STRING, allowNull: false, defaultValue: "" }, group_display: { type: DataTypes.INTEGER(1), allowNull: false, defaultValue: "0" }, group_avatar: { type: DataTypes.STRING, allowNull: false, defaultValue: "" }, group_avatar_type: { type: DataTypes.INTEGER(2), allowNull: false, defaultValue: "0" }, group_avatar_width: { type: DataTypes.INTEGER(4), allowNull: false, defaultValue: "0" }, group_avatar_height: { type: DataTypes.INTEGER(4), allowNull: false, defaultValue: "0" }, group_rank: { type: DataTypes.INTEGER(8), allowNull: false, defaultValue: "0" }, group_colour: { type: DataTypes.STRING, allowNull: false, defaultValue: "" }, group_sig_chars: { type: DataTypes.INTEGER(8), allowNull: false, defaultValue: "0" }, group_receive_pm: { type: DataTypes.INTEGER(1), allowNull: false, defaultValue: "0" }, group_message_limit: { type: DataTypes.INTEGER(8), allowNull: false, defaultValue: "0" }, group_max_recipients: { type: DataTypes.INTEGER(8), allowNull: false, defaultValue: "0" }, group_legend: { type: DataTypes.INTEGER(1), allowNull: false, defaultValue: "1" } }, { tableName: 'phpbb_groups' }); };
"use strict"; var _inherits = function (subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) subClass.__proto__ = superClass; }; var _createClass = (function () { function defineProperties(target, props) { for (var key in props) { var prop = props[key]; prop.configurable = true; if (prop.value) prop.writable = true; } Object.defineProperties(target, props); } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; Object.defineProperty(exports, "__esModule", { value: true }); // // TODO: this isn't idiomatically javascript (could probably use slice/splice to good effect) // function acopy(src, srcStart, dest, destStart, length) { for (var i = 0; i < length; i += 1) { dest[i + destStart] = src[i + srcStart]; } } // -------------------------------------------------------------------------- var RingBuffer = (function () { function RingBuffer(s) { _classCallCheck(this, RingBuffer); var size = typeof s === "number" ? Math.max(1, s) : 1; this._tail = 0; this._head = 0; this._length = 0; this._values = new Array(size); } _createClass(RingBuffer, { pop: { value: function pop() { var result = undefined; if (this.length) { // Get the item out of the set of values result = this._values[this._tail] !== null ? this._values[this._tail] : null; // Remove the item from the set of values, update indicies this._values[this._tail] = null; this._tail = (this._tail + 1) % this._values.length; this._length -= 1; } else { result = null; } return result; } }, unshift: { value: function unshift(val) { this._values[this._head] = val; this._head = (this._head + 1) % this._values.length; this._length += 1; } }, resizingUnshift: { value: function resizingUnshift(val) { if (this.length + 1 === this._values.length) { this.resize(); } this.unshift(val); } }, resize: { value: function resize() { var newArry = new Array(this._values.length * 2); if (this._tail < this._head) { acopy(this._values, this._tail, newArry, 0, this._head); this._tail = 0; this._head = this.length; this._values = newArry; } else if (this._head < this._tail) { acopy(this._values, 0, newArry, this._values.length - this._tail, this._head); this._tail = 0; this._head = this.length; this._values = newArry; } else { this._tail = 0; this._head = 0; this._values = newArry; } } }, cleanup: { value: function cleanup(keep) { for (var i = 0, l = this.length; i < l; i += 1) { var item = this.pop(); if (keep(item)) { this.unshift(item); } } } }, length: { get: function () { return this._length; } } }); return RingBuffer; })(); // -------------------------------------------------------------------------- var FixedBuffer = (function () { function FixedBuffer(n) { _classCallCheck(this, FixedBuffer); this._buf = new RingBuffer(n); this._size = n; } _createClass(FixedBuffer, { remove: { value: function remove() { return this._buf.pop(); } }, add: { value: function add(v) { if (this.full) { throw new Error("Cannot add to a full buffer."); } this._buf.resizingUnshift(v); return this; } }, length: { get: function () { return this._buf.length; } }, full: { get: function () { return this._buf.length === this._size; } } }); return FixedBuffer; })(); // -------------------------------------------------------------------------- var DroppingBuffer = (function (_FixedBuffer) { function DroppingBuffer() { _classCallCheck(this, DroppingBuffer); if (_FixedBuffer != null) { _FixedBuffer.apply(this, arguments); } } _inherits(DroppingBuffer, _FixedBuffer); _createClass(DroppingBuffer, { add: { value: function add(v) { if (this._buf.length < this._size) { this._buf.unshift(v); } return this; } }, full: { get: function () { return false; } } }); return DroppingBuffer; })(FixedBuffer); // -------------------------------------------------------------------------- var SlidingBuffer = (function (_FixedBuffer2) { function SlidingBuffer() { _classCallCheck(this, SlidingBuffer); if (_FixedBuffer2 != null) { _FixedBuffer2.apply(this, arguments); } } _inherits(SlidingBuffer, _FixedBuffer2); _createClass(SlidingBuffer, { add: { value: function add(v) { if (this._buf.length === this._size) { this.remove(); } this._buf.unshift(v); return this; } }, full: { get: function () { return false; } } }); return SlidingBuffer; })(FixedBuffer); exports.DroppingBuffer = DroppingBuffer; exports.SlidingBuffer = SlidingBuffer; exports.FixedBuffer = FixedBuffer; exports.RingBuffer = RingBuffer; //# sourceMappingURL=buffers.js.map
var $ = require('jquery'); var HERO_ELEMENT_SELECTOR = '.hero' function init() { $(window).on('load', fillViewportHeight); }; function fillViewportHeight() { // detect browser dimensions onload, and resize hero image section to fit $(HERO_ELEMENT_SELECTOR).css({ height: $(window).height() }); }; exports.init = init;
define(['altair/facades/declare', 'altair/plugins/node!less', 'altair/plugins/node!fs', 'altair/plugins/node!path', 'altair/plugins/node!mkdirp', 'altair/Deferred', './_Base' ], function (declare, less, fs, pathUtil, mkdirp, Deferred, _Base) { return declare(_Base, { _extensions: ['less', 'css'], renderItem: function (item) { var d, path, _item = item; //compile less for now if(_item.search('.less') > 0) { path = this._basePath + _item; d = new Deferred(); fs.readFile(path, function (err, contents) { if(err) { d.reject(err); } else { less.render(contents.toString(), { paths: [ pathUtil.dirname(path) ] }, function (err, results) { if(err) { d.reject(err); } else { path = path.replace('/less/', '/_compiled/').replace('.less', '.css'); _item = _item.replace('/less/', '/_compiled/').replace('.less', '.css'); mkdirp(pathUtil.dirname(path), function (err) { fs.writeFile(path, results, function (err) { if(err) { d.reject(err); } else { d.resolve('<link rel="stylesheet" href="' + _item + '">'); } }); }); } }); } }); } else { d = '<link rel="stylesheet" href="' + _item + '">'; } return d; } }); });
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _IconBase = require('./../components/IconBase/IconBase'); var _IconBase2 = _interopRequireDefault(_IconBase); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var IosMedical = function (_React$Component) { _inherits(IosMedical, _React$Component); function IosMedical() { _classCallCheck(this, IosMedical); return _possibleConstructorReturn(this, Object.getPrototypeOf(IosMedical).apply(this, arguments)); } _createClass(IosMedical, [{ key: 'render', value: function render() { if (this.props.bare) { return _react2.default.createElement( 'g', null, _react2.default.createElement('path', { d: 'M438,187.713l-31.927-55.426L288,200.574V64h-64v136.574l-118.073-68.287l-31.938,55.426L192.092,256L73.998,324.287 l31.928,55.426L224,311.426V448h64V311.426l118.072,68.287l31.939-55.426L319.908,256L438,187.713z' }) ); }return _react2.default.createElement( _IconBase2.default, null, _react2.default.createElement('path', { d: 'M438,187.713l-31.927-55.426L288,200.574V64h-64v136.574l-118.073-68.287l-31.938,55.426L192.092,256L73.998,324.287 l31.928,55.426L224,311.426V448h64V311.426l118.072,68.287l31.939-55.426L319.908,256L438,187.713z' }) ); } }]); return IosMedical; }(_react2.default.Component); exports.default = IosMedical; ;IosMedical.defaultProps = { bare: false };
function restActions() { /* * Převedeme odkazy na smazání účastníka konference na formuláře aby se poslalo DESTROY */ var $status = ""; $('[data-method]').append(function () { if ($(this).attr('data-value')) { $status = " <input type='hidden' name='qstatus' value='" + $(this).attr('data-value') + "'>\n"; } return "\n" + "<form action='" + $(this).attr('href') + "' class='" + $(this).attr('data-method') + "-form' method='POST' style='display:none'>\n" + " <input type='hidden' name='_method' value='" + $(this).attr('data-method') + "'>\n" + $status + "</form>\n"; }) .removeAttr('href') .attr('style', 'cursor:pointer;') .attr('onclick', '$(this).find("form").submit();'); /* * Potvrzení vymazání účastníka */ $(document).on('submit', '.delete-form', function () { return confirm('Opravdu chcete odstranit účastníka?'); }); /* * Aktivujeme tlačítko pro vypnutí alertu */ $(".alert").alert(); }
this.NesDb = this.NesDb || {}; NesDb[ '35E99338DBD988F90D5636688C34C6B181FFEFF0' ] = { "$": { "name": "Back to the Future", "class": "Licensed", "catalog": "NES-FU-USA", "publisher": "LJN", "developer": "Beam Software", "region": "USA", "players": "1", "date": "1989-09" }, "cartridge": [ { "$": { "system": "NES-NTSC", "crc": "A55FA397", "sha1": "35E99338DBD988F90D5636688C34C6B181FFEFF0", "dump": "ok", "dumper": "bootgod", "datedumped": "2005-10-14" }, "board": [ { "$": { "type": "NES-CNROM", "pcb": "NES-CNROM-06", "mapper": "3" }, "prg": [ { "$": { "name": "NES-FU-0 PRG", "size": "32k", "crc": "7A424C07", "sha1": "C8606B016D5479E383D3AA5420086DDFF59D61B1" } } ], "chr": [ { "$": { "name": "NES-FU-0 CHR", "size": "32k", "crc": "4C2F0483", "sha1": "D19C45708BE24A9518BB565F9AE8FE383B82D5F3" } } ], "chip": [ { "$": { "type": "74xx161" } } ], "cic": [ { "$": { "type": "6113B1" } } ], "pad": [ { "$": { "h": "0", "v": "1" } } ] } ] } ], "gameGenieCodes": [ { "name": "Start with 1 life", "codes": [ [ "PEXEGAGA" ] ] }, { "name": "Start with 8 lives", "codes": [ [ "AEXEGAGE" ] ] }, { "name": "Never lose a life in Hill Valley game", "codes": [ [ "SZKEGOVK" ] ] }, { "name": "Never lose a life in Cafe game", "codes": [ [ "SXOELOVK" ] ] }, { "name": "Never lose a life in School game", "codes": [ [ "SXKALOVK" ] ] }, { "name": "Never lose a life in Dancing Hall game", "codes": [ [ "SXVELOVK" ] ] }, { "name": "Disable all timers", "codes": [ [ "AVVOUZSZ" ] ] } ] };
var EDITING_KEY = 'editingList'; Session.setDefault(EDITING_KEY, false); // Track if this is the first time the list template is rendered var firstRender = true; var listRenderHold = LaunchScreen.hold(); listFadeInHold = null; Template.listsShow.rendered = function() { if (firstRender) { // Released in app-body.js listFadeInHold = LaunchScreen.hold(); // Handle for launch screen defined in app-body.js listRenderHold.release(); firstRender = false; } this.find('.js-title-nav')._uihooks = { insertElement: function(node, next) { $(node) .hide() .insertBefore(next) .fadeIn(); }, removeElement: function(node) { $(node).fadeOut(function() { this.remove(); }); } }; }; Template.listsShow.helpers({ editing: function() { return Session.get(EDITING_KEY); }, todosReady: function() { return Router.current().todosHandle.ready(); }, todos: function(listId) { return Todos.find({listId: listId}, {sort: {createdAt : -1}}); } }); var editList = function(list, template) { Session.set(EDITING_KEY, true); // force the template to redraw based on the reactive change Tracker.flush(); template.$('.js-edit-form input[type=text]').focus(); }; var saveList = function(list, template) { Session.set(EDITING_KEY, false); Lists.update(list._id, {$set: {name: template.$('[name=name]').val()}}); } var deleteList = function(list) { // ensure the last public list cannot be deleted. if (! list.userId && Lists.find({userId: {$exists: false}}).count() === 1) { return alert("这是最后一个账户了, 别删了吧, -_- /``` "); } var message = "确认删除这个账户吗?" + list.name + "?"; if (confirm(message)) { // we must remove each item individually from the client Todos.find({listId: list._id}).forEach(function(todo) { Todos.remove(todo._id); }); Lists.remove(list._id); Router.go('home'); return true; } else { return false; } }; var toggleListPrivacy = function(list) { if (! Meteor.user()) { return alert("Please sign in or create an account to make private lists."); } if (list.userId) { Lists.update(list._id, {$unset: {userId: true}}); } else { // ensure the last public list cannot be made private if (Lists.find({userId: {$exists: false}}).count() === 1) { return alert("Sorry, you cannot make the final public list private!"); } Lists.update(list._id, {$set: {userId: Meteor.userId()}}); } }; Template.listsShow.events({ 'click .js-cancel': function() { Session.set(EDITING_KEY, false); }, 'keydown input[type=text]': function(event) { // ESC if (27 === event.which) { event.preventDefault(); $(event.target).blur(); } }, 'blur input[type=text]': function(event, template) { // if we are still editing (we haven't just clicked the cancel button) if (Session.get(EDITING_KEY)) saveList(this, template); }, 'submit .js-edit-form': function(event, template) { event.preventDefault(); saveList(this, template); }, // handle mousedown otherwise the blur handler above will swallow the click // on iOS, we still require the click event so handle both 'mousedown .js-cancel, click .js-cancel': function(event) { event.preventDefault(); Session.set(EDITING_KEY, false); }, 'change .list-edit': function(event, template) { if ($(event.target).val() === 'edit') { editList(this, template); } else if ($(event.target).val() === 'delete') { deleteList(this, template); } else { toggleListPrivacy(this, template); } event.target.selectedIndex = 0; }, 'click .js-edit-list': function(event, template) { editList(this, template); }, 'click .js-toggle-list-privacy': function(event, template) { toggleListPrivacy(this, template); }, 'click .js-delete-list': function(event, template) { deleteList(this, template); }, 'click .js-todo-add': function(event, template) { template.$('.js-todo-new input').focus(); }, 'submit .js-todo-new': function(event) { event.preventDefault(); var $input = $(event.target).find('[type=text]'); if (! $input.val()) return; Todos.insert({ listId: this._id, text: $input.val(), checked: false, createdAt: new Date() }); Lists.update(this._id, {$inc: {incompleteCount: 1}}); $input.val(''); } });
import {observable, computed, action} from 'mobx'; import {Fb} from 'firebase-store'; import {toJS} from 'mobx'; import {Propertyhk} from 'propertyhk' import {Property} from 'property' import MobxStore from 'mobxStore'; //import firebase from 'firebase'; //import moment from 'moment' // List of user properties, to be .on // propertyViewModel // May change a name of UserPropertysViewModel class UserModelView { // @observable propertys = observable.map({}); // Use while handling user's property @observable propertys = observable.map({}); // @observable propertys = new Map(); //@observable agentPropertys = new Map(); //@observable matchedPropertys = observable.map({}); //@observable propertys = map({}); //@observable propertys = new Map(); constructor() { var that = this; } @computed get json() { console.log('json', this.propertys) return toJS(this.propertys); } // init userModelView, for mobx, // can't be used inside constructor, otherwise error // when app start will call an empty constructor @action init = () => { const that = this; // Handle Child_added //if ( Fb.app.propertysRef !== undefined ) { Fb.app.usersRef.on('child_added', (snapshot) => { //console.log( "fire", snapshot.val() ) // var p = new Propertyhk(); // // // restore can be imppletemt deserialize // p.restore( snapshot.val() ) //console.log( 'p', p) var p = Propertyhk.deserialize( snapshot.val() ) console.log( 'p', p) p.buildInDirectCall(); // p.buildMatchProperty( snapshot.key, p.typeFor, p.location); //p.buildMatchProperty( snapshot.key, p.typeFor, p.nameOfBuilding); p.buildMatchUserPropertyByRunTime( snapshot.key, p.typeFor, p.addressLocation); // Matching agent's response only p.buildResponseProperty( snapshot.key, p.typeFor, p.location ); // p.realTime = moment().format('YYYY-MM-DD HH:mm:ss'); console.log( 'child_add - psvm.matchedPropertys.size', p.matchedPropertys.size ); that.propertys.set( snapshot.key, p ); }); Fb.app.usersRef.on('child_changed', (snapshot) => { // Get an element with all functions, propertys // Recreate a new properts { ... } // otherwise propertys.responsedPropertys = undefined error // Get the current copy of property var p = that.propertys.get( snapshot.key ) // keep all the mobx computed function into p, copy the value only p.restore( snapshot.val() ); that.propertys.set( snapshot.key, p ) // console.log( 'property.nameOfBuilding', that.propertys.get( snapshot.key ) ); //console.log('child_changed snapshot.val() ', }); // Handle child_removed Fb.app.usersRef.on('child_removed', (snapshot) => { that.propertys.delete( snapshot.key ); // console.log('that.propertys.size', that.propertys.size) }); /** * allocate agent's property public for display */ // Fb.agentPropertys.on('child_added', (snapshot) => { // // //console.log( "fire", snapshot.val() ) // var p = new Propertyhk(); // // // restore can be imppletemt deserialize // p.restore( snapshot.val() ) // //console.log( 'p', p) // // p.buildResponseProperty( snapshot.key, p.typeFor, p.location); // // console.log( 'child_add - psvm.matchedPropertys.size', p.responsedPropertys.size ); // that.agentPropertys.set( snapshot.key, p ); // }); // // // Handle child_removed // Fb.agentPropertys.on('child_removed', (snapshot) => { // that.agentPropertys.delete( snapshot.key ); // // console.log('that.propertys.size', that.propertys.size) // }); } // End of if null //} add = (name) => { const id = Fb.app.usersRef.push().key; this.update(id, name ); }; /** * @compareTo is name of variable e.g. name, price, location * @valueTo is value equal to. e.g. 'shatin' * return */ // getMatchProperty = (id, compareTo, valueTo ) => { // var that = this; // console.log('match') // // //this.writeNewPost( 1233, 'gordon', 'picture', 'title', 'body') // // // Handle match propertys // Fb.app.usersRef.orderByChild(compareTo).equalTo(valueTo).on("child_added", function(snap) { // // Fb.app.matchedPropertysRef.child( snap.key ).set( snap.val() ) // // Fb.app.propertysRef.update( { snap.key : { } }) // that.matchedPropertys.set( snap.key, snap.val() ); // console.log('matchProperty.size', that.matchedPropertys.size) // }); // // Fb.app.usersRef.orderByChild(compareTo).equalTo(valueTo).on("child_removed", function(snap) { // // that.matchedPropertys.delete( snap.key ); // console.log('matchProperty.size', that.matchedPropertys.size) // }); // // // } update = (id, name) => { Fb.app.usersRef.update({[id]: { name } } ) }; del = (id) => { Fb.app.usersRef.child(id).remove(); Fb.propertys.child(id).remove(); //this.propertys.delete( id ); }; @action clear = () => { this.propertys.clear(); // May not need //this.agentPropertys.clear(); }; } const propertys = new UserModelView(); export {propertys};
'use strict'; angular.module('mean.articles') .controller('SearchCountryController', ['$scope', 'Global', '$stateParams', '$state', function($scope, Global, $stateParams, $state){ $scope.global = Global; $scope.profileId = $stateParams.profileId; $scope.product = $stateParams.productDetailID; //$scope.product = [{}]; // $scope.searchResult = function() { // GetProductResult.query({ // productDetailID: $scope.productDetailID // }, function (result) { // $scope.product = result; // }); // }; }]);
'use strict' var XMPP = require('../../..') , Server = XMPP.C2S.TCPServer , Element = require('node-xmpp-core').Stanza.Element , net = require('net') , rack = require('hat').rack , Client = require('node-xmpp-client') , Plain = XMPP.auth.Plain , XOAuth2 = XMPP.auth.XOAuth2 , DigestMD5 = XMPP.auth.DigestMD5 , Anonymous = XMPP.auth.Anonymous require('should') var user = { jid: 'me@localhost', password: 'secret' } function startServer(mechanism) { // Sets up the server. var c2s = new Server({ port: 5222, domain: 'localhost' }) if (mechanism) { // remove plain c2s.availableSaslMechanisms = [] c2s.registerSaslMechanism(mechanism) } // Allows the developer to register the jid against anything they want c2s.on('register', function(opts, cb) { cb(true) }) // On Connect event. When a client connects. c2s.on('connect', function(stream) { // That's the way you add mods to a given server. // Allows the developer to authenticate users against anything they want. stream.on('authenticate', function(opts, cb) { /*jshint camelcase: false */ if ((opts.saslmech === Plain.id) && (opts.jid.toString() === user.jid) && (opts.password === user.password)) { // PLAIN OKAY cb(null, opts) } else if ((opts.saslmech === XOAuth2.id) && (opts.jid.toString() === 'me@gmail.com') && (opts.oauth_token === 'xxxx.xxxxxxxxxxx')) { // OAUTH2 OKAY cb(null, opts) } else if ((opts.saslmech === DigestMD5.id) && (opts.jid.toString() === user.jid)) { // DIGEST-MD5 OKAY opts.password = 'secret' cb(null, opts) } else if (opts.saslmech === Anonymous.id) { cb(null, opts) } else { cb(new Error('Authentication failure'), null) } }) stream.on('online', function() { stream.send(new Element('message', { type: 'chat' }) .c('body') .t('Hello there, little client.') ) }) // Stanza handling stream.on('stanza', function() { // got stanza }) // On Disconnect event. When a client disconnects stream.on('disconnect', function() { // client disconnect }) }) return c2s } function createClient(opts) { var cl = new Client(opts) cl.on('stanza', function(stanza) { if (stanza.is('message') && // Important: never reply to errors! (stanza.attrs.type !== 'error')) { // Swap addresses... stanza.attrs.to = stanza.attrs.from delete stanza.attrs.from // and send back. cl.send(stanza) } else { console.log('INCLIENT STANZA PRE', stanza.toString()) } } ) return cl } describe('SASL', function() { describe('PLAIN', function() { var c2s = null before(function(done) { c2s = startServer(Plain) done() }) after(function(done) { c2s.end(done) }) it('should accept plain authentication', function(done) { var cl = createClient({ jid: user.jid, password: user.password, preferred: Plain.id }) cl.on('online', function() { done() }) cl.on('error', function(e) { console.log(e) done(e) }) }) it('should not accept plain authentication', function(done) { var cl = createClient({ jid: user.jid, password: 'secretsecret' }) cl.on('online', function() { done('user is not valid') }) cl.on('error', function() { // this should happen done() }) }) }) describe('XOAUTH-2', function() { var c2s = null before(function(done) { c2s = startServer(XOAuth2) done() }) after(function(done) { c2s.end(done) }) /* * google talk is replaced by google hangout, * but we can support the protocol anyway */ it('should accept google authentication', function(done) { /*jshint camelcase: false */ var gtalk = createClient({ jid: 'me@gmail.com', /* eslint-disable camelcase */ oauth2_token: 'xxxx.xxxxxxxxxxx', // from OAuth2 oauth2_auth: 'http://www.google.com/talk/protocol/auth', /* eslint-enable camelcase */ host: 'localhost' }) gtalk.on('online', function() { done() }) gtalk.on('error', function(e) { console.log(e) done(e) }) }) }) describe('DIGEST MD5', function() { var c2s = null before(function (done) { c2s = startServer(DigestMD5) done() }) after(function(done) { c2s.end(done) }) it('should accept digest md5 authentication', function(done) { var cl = createClient({ jid: user.jid, password: user.password, preferred: 'DIGEST-MD5' }) cl.on('online', function() { done() }) cl.on('error', function(e) { console.log(e) done(e) }) }) it('should not allow to skip digest md5 challenges', function(done) { // preparing a sequence of stanzas to send var handshakeStanza = '<?xml version="1.0" encoding="UTF-8"?>' + '<stream:stream to="localhost" xmlns="jabber:client" ' + 'xmlns:stream="http://etherx.jabber.org/streams" ' + 'xml:l="en" version="1.0">' var authStanza = '<auth xmlns="urn:ietf:params:xml:ns:xmpp-sasl" ' + 'mechanism="DIGEST-MD5"/>' var earlyAccessStanza = '<response ' + 'xmlns="urn:ietf:params:xml:ns:xmpp-sasl"/>' /* * we cannot use existing client realization * because we need to skip challenge response */ var client = net.connect({port: c2s.options.port}, function() { client.write(handshakeStanza, function() { client.write(authStanza, function() { client.write(earlyAccessStanza, function() { // send earlyAccessStanza to receive 'success' client.write(earlyAccessStanza) }) }) }) }) var receivedData = '' client.on('data', function(data) { receivedData += data }) client.setTimeout(500, function () { if (/<\/failure>$/.test(receivedData.toString())) { client.end() done() } else { client.end() done('wrong server response') } }) }) }) describe('ANONYMOUS', function() { var c2s = null before(function(done) { c2s = startServer(Anonymous) done() }) after(function(done) { c2s.end(done) }) it('should accept anonymous authentication', function(done) { var cl = createClient({ jid: '@localhost', preferred: Anonymous.id }) var defaultHatRackHashLength = rack()().length cl.on('online', function(online) { online.jid.local.length.should.equal(defaultHatRackHashLength) online.jid.resource.length.should.equal(defaultHatRackHashLength) done() }) cl.on('error', function(e) { console.log(e) done(e) }) }) }) })
(function(){ angular .module('everycent.account-balances', ['everycent.common']) .config(RouteConfiguration); RouteConfiguration.$inject = ['$stateProvider']; function RouteConfiguration($stateProvider){ $stateProvider .state('account-balances', { url: '/account-balances', templateUrl: 'app/account-balances/account-balances-list.html', controller: 'AccountBalancesCtrl as vm', resolve:{ auth: ['$auth', function($auth){ return $auth.validateUser(); }] } }) ; } })();