etincidunt 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.prettierignore +2 -0
- package/.travis.yml +29 -0
- package/.vscode/launch.json +24 -0
- package/.vscode/settings.json +3 -0
- package/demos/ago-node-cli/README.md +29 -0
- package/demos/ago-node-cli/ago.js +32 -0
- package/demos/ago-node-cli/index.js +11 -0
- package/demos/ago-node-cli/lib/item-export-command.js +48 -0
- package/demos/ago-node-cli/lib/item-search-command.js +35 -0
- package/demos/ago-node-cli/package-lock.json +172 -0
- package/demos/ago-node-cli/package.json +30 -0
- package/demos/attachments/README.md +5 -0
- package/demos/attachments/index.html +164 -0
- package/demos/attachments/package-lock.json +182 -0
- package/demos/attachments/package.json +18 -0
- package/demos/batch-geocoder-node/NYC_Restaurant_Inspection_Results.csv +100 -0
- package/demos/batch-geocoder-node/README.md +14 -0
- package/demos/batch-geocoder-node/batch-geocode.js +112 -0
- package/demos/batch-geocoder-node/config-template.js +18 -0
- package/demos/batch-geocoder-node/package-lock.json +109 -0
- package/demos/batch-geocoder-node/package.json +37 -0
- package/demos/express/README.md +10 -0
- package/demos/express/config.json.template +3 -0
- package/demos/express/package-lock.json +388 -0
- package/demos/express/package.json +18 -0
- package/demos/express/server.js +28 -0
- package/demos/feature-service-browser/README.md +6 -0
- package/demos/feature-service-browser/index.html +122 -0
- package/demos/feature-service-browser/package-lock.json +182 -0
- package/demos/feature-service-browser/package.json +18 -0
- package/demos/geocoder-browser/README.md +10 -0
- package/demos/geocoder-browser/config.js.template +1 -0
- package/demos/geocoder-browser/index.html +131 -0
- package/demos/geocoder-browser/package-lock.json +163 -0
- package/demos/geocoder-browser/package.json +19 -0
- package/demos/geocoder-browser/post-sign-in.html +25 -0
- package/demos/jsapi-integration/README.md +8 -0
- package/demos/jsapi-integration/config.js +6 -0
- package/demos/jsapi-integration/index.html +79 -0
- package/demos/jsapi-integration/package-lock.json +184 -0
- package/demos/jsapi-integration/package.json +19 -0
- package/demos/oauth2-browser/README.md +12 -0
- package/demos/oauth2-browser/authenticate.html +32 -0
- package/demos/oauth2-browser/config.js.template +6 -0
- package/demos/oauth2-browser/index.html +202 -0
- package/demos/oauth2-browser/logo.svg +4 -0
- package/demos/oauth2-browser/package-lock.json +163 -0
- package/demos/oauth2-browser/package.json +18 -0
- package/demos/oauth2-browser/style.css +36 -0
- package/demos/vue/.babelrc +6 -0
- package/demos/vue/.env.example +8 -0
- package/demos/vue/README.md +17 -0
- package/demos/vue/index.html +21 -0
- package/demos/vue/package-lock.json +7236 -0
- package/demos/vue/package.json +39 -0
- package/demos/vue/src/assets/logo.svg +29 -0
- package/demos/vue/src/components/App.vue +302 -0
- package/demos/vue/src/components/Authenticate.vue +68 -0
- package/demos/vue/src/components/Loader.vue +216 -0
- package/demos/vue/src/main.js +75 -0
- package/demos/vue/webpack.config.js +84 -0
- package/docs/FAQ.md +28 -0
- package/docs/HISTORY.md +62 -0
- package/docs/acetate.config.js +214 -0
- package/docs/build-typedoc.js +301 -0
- package/docs/src/_layout.html +82 -0
- package/docs/src/api/_declaration.html +496 -0
- package/docs/src/api/_layout.html +127 -0
- package/docs/src/api/_package.html +13 -0
- package/docs/src/api/index.html +23 -0
- package/docs/src/guides/_layout.html +24 -0
- package/docs/src/guides/amd-requirejs-dojo.md +40 -0
- package/docs/src/guides/babel-and-rollup.md +30 -0
- package/docs/src/guides/babel-and-webpack.md +30 -0
- package/docs/src/guides/browser-authentication.md +9 -0
- package/docs/src/guides/browserify.md +9 -0
- package/docs/src/guides/cli-authentication.md +9 -0
- package/docs/src/guides/client-server-authentication.md +9 -0
- package/docs/src/guides/from-a-cdn.md +36 -0
- package/docs/src/guides/index.md +52 -0
- package/docs/src/guides/node.md +30 -0
- package/docs/src/guides/package-overview.md +8 -0
- package/docs/src/guides/server-authentication.md +9 -0
- package/docs/src/guides/typescript-and-webpack.md +9 -0
- package/docs/src/img/icons.png +0 -0
- package/docs/src/img/icons@2x.png +0 -0
- package/docs/src/index.html +12 -0
- package/docs/src/js/api-search.js +113 -0
- package/docs/src/js/index.js +1 -0
- package/docs/src/js/nav-toggle.js +41 -0
- package/docs/src/sass/_highlight.scss +96 -0
- package/docs/src/sass/_icons.scss +157 -0
- package/docs/src/sass/style.scss +169 -0
- package/jasmine.json +7 -0
- package/karma.conf.js +100 -0
- package/lerna.json +8 -0
- package/notes/README.md +88 -0
- package/package.json +91 -0
- package/packages/arcgis-rest-auth/README.md +64 -0
- package/packages/arcgis-rest-auth/package-lock.json +11 -0
- package/packages/arcgis-rest-auth/package.json +51 -0
- package/packages/arcgis-rest-auth/src/ApplicationSession.ts +91 -0
- package/packages/arcgis-rest-auth/src/UserSession.ts +829 -0
- package/packages/arcgis-rest-auth/src/authenticated-request-options.ts +21 -0
- package/packages/arcgis-rest-auth/src/fetch-token.ts +55 -0
- package/packages/arcgis-rest-auth/src/generate-token.ts +36 -0
- package/packages/arcgis-rest-auth/src/index.ts +5 -0
- package/packages/arcgis-rest-auth/test/ApplicationSession.test.ts +121 -0
- package/packages/arcgis-rest-auth/test/UserSession.test.ts +883 -0
- package/packages/arcgis-rest-auth/test/fetchToken.test.ts +76 -0
- package/packages/arcgis-rest-auth/test/generateToken.test.ts +36 -0
- package/packages/arcgis-rest-auth/test/utils.ts +11 -0
- package/packages/arcgis-rest-auth/tsconfig.json +6 -0
- package/packages/arcgis-rest-common-types/README.md +61 -0
- package/packages/arcgis-rest-common-types/package.json +38 -0
- package/packages/arcgis-rest-common-types/src/group.ts +51 -0
- package/packages/arcgis-rest-common-types/src/index.ts +467 -0
- package/packages/arcgis-rest-common-types/src/item.ts +45 -0
- package/packages/arcgis-rest-common-types/src/webmap.ts +1225 -0
- package/packages/arcgis-rest-common-types/tsconfig.json +11 -0
- package/packages/arcgis-rest-feature-service/README.md +70 -0
- package/packages/arcgis-rest-feature-service/package-lock.json +11 -0
- package/packages/arcgis-rest-feature-service/package.json +50 -0
- package/packages/arcgis-rest-feature-service/src/add.ts +82 -0
- package/packages/arcgis-rest-feature-service/src/addAttachment.ts +65 -0
- package/packages/arcgis-rest-feature-service/src/delete.ts +85 -0
- package/packages/arcgis-rest-feature-service/src/deleteAttachments.ts +68 -0
- package/packages/arcgis-rest-feature-service/src/getAttachments.ts +64 -0
- package/packages/arcgis-rest-feature-service/src/helpers.ts +77 -0
- package/packages/arcgis-rest-feature-service/src/index.ts +8 -0
- package/packages/arcgis-rest-feature-service/src/query.ts +174 -0
- package/packages/arcgis-rest-feature-service/src/update.ts +81 -0
- package/packages/arcgis-rest-feature-service/src/updateAttachment.ts +74 -0
- package/packages/arcgis-rest-feature-service/test/attachments.test.ts +179 -0
- package/packages/arcgis-rest-feature-service/test/features.test.ts +172 -0
- package/packages/arcgis-rest-feature-service/test/mocks/feature.ts +220 -0
- package/packages/arcgis-rest-feature-service/test/mocks/foo.txt +1 -0
- package/packages/arcgis-rest-feature-service/tsconfig.json +6 -0
- package/packages/arcgis-rest-geocoder/README.md +73 -0
- package/packages/arcgis-rest-geocoder/package-lock.json +11 -0
- package/packages/arcgis-rest-geocoder/package.json +52 -0
- package/packages/arcgis-rest-geocoder/src/bulk.ts +102 -0
- package/packages/arcgis-rest-geocoder/src/geocode.ts +117 -0
- package/packages/arcgis-rest-geocoder/src/helpers.ts +81 -0
- package/packages/arcgis-rest-geocoder/src/index.ts +4 -0
- package/packages/arcgis-rest-geocoder/src/reverse.ts +84 -0
- package/packages/arcgis-rest-geocoder/src/suggest.ts +72 -0
- package/packages/arcgis-rest-geocoder/test/geocoder.test.ts +510 -0
- package/packages/arcgis-rest-geocoder/test/mocks/responses.ts +588 -0
- package/packages/arcgis-rest-geocoder/tsconfig.json +6 -0
- package/packages/arcgis-rest-groups/README.md +64 -0
- package/packages/arcgis-rest-groups/package-lock.json +11 -0
- package/packages/arcgis-rest-groups/package.json +52 -0
- package/packages/arcgis-rest-groups/src/groups.ts +272 -0
- package/packages/arcgis-rest-groups/src/index.ts +1 -0
- package/packages/arcgis-rest-groups/test/groups.test.ts +280 -0
- package/packages/arcgis-rest-groups/test/mocks/responses.ts +137 -0
- package/packages/arcgis-rest-groups/tsconfig.json +6 -0
- package/packages/arcgis-rest-items/README.md +66 -0
- package/packages/arcgis-rest-items/package-lock.json +11 -0
- package/packages/arcgis-rest-items/package.json +52 -0
- package/packages/arcgis-rest-items/src/index.ts +1 -0
- package/packages/arcgis-rest-items/src/items.ts +498 -0
- package/packages/arcgis-rest-items/test/items.test.ts +1153 -0
- package/packages/arcgis-rest-items/test/mocks/foo.zip +0 -0
- package/packages/arcgis-rest-items/test/mocks/item.ts +30 -0
- package/packages/arcgis-rest-items/test/mocks/resources.ts +28 -0
- package/packages/arcgis-rest-items/test/mocks/search.ts +60 -0
- package/packages/arcgis-rest-items/tsconfig.json +6 -0
- package/packages/arcgis-rest-request/README.md +65 -0
- package/packages/arcgis-rest-request/package-lock.json +11 -0
- package/packages/arcgis-rest-request/package.json +42 -0
- package/packages/arcgis-rest-request/src/index.ts +10 -0
- package/packages/arcgis-rest-request/src/request.ts +259 -0
- package/packages/arcgis-rest-request/src/utils/ArcGISAuthError.ts +67 -0
- package/packages/arcgis-rest-request/src/utils/ArcGISRequestError.ts +73 -0
- package/packages/arcgis-rest-request/src/utils/ErrorTypes.ts +29 -0
- package/packages/arcgis-rest-request/src/utils/check-for-errors.ts +65 -0
- package/packages/arcgis-rest-request/src/utils/encode-form-data.ts +29 -0
- package/packages/arcgis-rest-request/src/utils/encode-query-string.ts +23 -0
- package/packages/arcgis-rest-request/src/utils/get-portal-url.ts +25 -0
- package/packages/arcgis-rest-request/src/utils/get-portal.ts +45 -0
- package/packages/arcgis-rest-request/src/utils/process-params.ts +99 -0
- package/packages/arcgis-rest-request/test/mocks/errors.ts +59 -0
- package/packages/arcgis-rest-request/test/mocks/geojson-feature-collection.ts +10 -0
- package/packages/arcgis-rest-request/test/mocks/portal.ts +109 -0
- package/packages/arcgis-rest-request/test/mocks/sharing-rest-info.ts +38 -0
- package/packages/arcgis-rest-request/test/mocks/webmap.ts +38 -0
- package/packages/arcgis-rest-request/test/request.test.ts +296 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISAuthError.test.ts +167 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISRequestError.test.ts +40 -0
- package/packages/arcgis-rest-request/test/utils/check-for-errors.test.ts +101 -0
- package/packages/arcgis-rest-request/test/utils/encode-form-data.test.ts +112 -0
- package/packages/arcgis-rest-request/test/utils/get-portal-url.test.ts +34 -0
- package/packages/arcgis-rest-request/test/utils/portal.test.ts +94 -0
- package/packages/arcgis-rest-request/test/utils/process-params.test.ts +190 -0
- package/packages/arcgis-rest-request/tsconfig.json +6 -0
- package/packages/arcgis-rest-sharing/README.md +67 -0
- package/packages/arcgis-rest-sharing/package-lock.json +11 -0
- package/packages/arcgis-rest-sharing/package.json +55 -0
- package/packages/arcgis-rest-sharing/src/access.ts +91 -0
- package/packages/arcgis-rest-sharing/src/group-sharing.ts +212 -0
- package/packages/arcgis-rest-sharing/src/helpers.ts +92 -0
- package/packages/arcgis-rest-sharing/src/index.ts +2 -0
- package/packages/arcgis-rest-sharing/test/access.test.ts +153 -0
- package/packages/arcgis-rest-sharing/test/group-sharing.test.ts +436 -0
- package/packages/arcgis-rest-sharing/test/mocks/sharing.ts +15 -0
- package/packages/arcgis-rest-sharing/tsconfig.json +6 -0
- package/packages/arcgis-rest-users/README.md +71 -0
- package/packages/arcgis-rest-users/package-lock.json +11 -0
- package/packages/arcgis-rest-users/package.json +51 -0
- package/packages/arcgis-rest-users/src/index.ts +1 -0
- package/packages/arcgis-rest-users/src/users.ts +70 -0
- package/packages/arcgis-rest-users/test/mocks/responses.ts +170 -0
- package/packages/arcgis-rest-users/test/users.test.ts +97 -0
- package/packages/arcgis-rest-users/tsconfig.json +6 -0
- package/support/FormData.d.ts +1 -0
- package/support/changelog.js +388 -0
- package/support/commit-template.txt +19 -0
- package/support/deploy-doc-site.js +16 -0
- package/support/publish.sh +40 -0
- package/support/test-helpers.js +8 -0
- package/tsconfig.json +69 -0
- package/tslint.json +14 -0
- package/umd-base-profile.js +82 -0
- package/umd-production-profile.js +13 -0
@@ -0,0 +1,182 @@
|
|
1
|
+
{
|
2
|
+
"requires": true,
|
3
|
+
"lockfileVersion": 1,
|
4
|
+
"dependencies": {
|
5
|
+
"async": {
|
6
|
+
"version": "1.5.2",
|
7
|
+
"resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
|
8
|
+
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo="
|
9
|
+
},
|
10
|
+
"colors": {
|
11
|
+
"version": "1.0.3",
|
12
|
+
"resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz",
|
13
|
+
"integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs="
|
14
|
+
},
|
15
|
+
"corser": {
|
16
|
+
"version": "2.0.1",
|
17
|
+
"resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz",
|
18
|
+
"integrity": "sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c="
|
19
|
+
},
|
20
|
+
"debug": {
|
21
|
+
"version": "3.1.0",
|
22
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
|
23
|
+
"integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
|
24
|
+
"requires": {
|
25
|
+
"ms": "2.0.0"
|
26
|
+
}
|
27
|
+
},
|
28
|
+
"ecstatic": {
|
29
|
+
"version": "3.2.1",
|
30
|
+
"resolved": "https://registry.npmjs.org/ecstatic/-/ecstatic-3.2.1.tgz",
|
31
|
+
"integrity": "sha512-BAdHx9LOCG1fwxY8MIydUBskl8UUQrYeC3WE14FA1DPlBzqoG1aOgEkypcSpmiiel8RAj8gW1s40RrclfrpGUg==",
|
32
|
+
"requires": {
|
33
|
+
"he": "^1.1.1",
|
34
|
+
"mime": "^1.6.0",
|
35
|
+
"minimist": "^1.1.0",
|
36
|
+
"url-join": "^2.0.5"
|
37
|
+
}
|
38
|
+
},
|
39
|
+
"eventemitter3": {
|
40
|
+
"version": "3.1.0",
|
41
|
+
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.0.tgz",
|
42
|
+
"integrity": "sha512-ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA=="
|
43
|
+
},
|
44
|
+
"follow-redirects": {
|
45
|
+
"version": "1.5.1",
|
46
|
+
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.1.tgz",
|
47
|
+
"integrity": "sha512-v9GI1hpaqq1ZZR6pBD1+kI7O24PhDvNGNodjS3MdcEqyrahCp8zbtpv+2B/krUnSmUH80lbAS7MrdeK5IylgKg==",
|
48
|
+
"requires": {
|
49
|
+
"debug": "^3.1.0"
|
50
|
+
}
|
51
|
+
},
|
52
|
+
"he": {
|
53
|
+
"version": "1.1.1",
|
54
|
+
"resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz",
|
55
|
+
"integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0="
|
56
|
+
},
|
57
|
+
"http-proxy": {
|
58
|
+
"version": "1.17.0",
|
59
|
+
"resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz",
|
60
|
+
"integrity": "sha512-Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g==",
|
61
|
+
"requires": {
|
62
|
+
"eventemitter3": "^3.0.0",
|
63
|
+
"follow-redirects": "^1.0.0",
|
64
|
+
"requires-port": "^1.0.0"
|
65
|
+
}
|
66
|
+
},
|
67
|
+
"http-server": {
|
68
|
+
"version": "0.11.1",
|
69
|
+
"resolved": "https://registry.npmjs.org/http-server/-/http-server-0.11.1.tgz",
|
70
|
+
"integrity": "sha512-6JeGDGoujJLmhjiRGlt8yK8Z9Kl0vnl/dQoQZlc4oeqaUoAKQg94NILLfrY3oWzSyFaQCVNTcKE5PZ3cH8VP9w==",
|
71
|
+
"requires": {
|
72
|
+
"colors": "1.0.3",
|
73
|
+
"corser": "~2.0.0",
|
74
|
+
"ecstatic": "^3.0.0",
|
75
|
+
"http-proxy": "^1.8.1",
|
76
|
+
"opener": "~1.4.0",
|
77
|
+
"optimist": "0.6.x",
|
78
|
+
"portfinder": "^1.0.13",
|
79
|
+
"union": "~0.4.3"
|
80
|
+
}
|
81
|
+
},
|
82
|
+
"mime": {
|
83
|
+
"version": "1.6.0",
|
84
|
+
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
|
85
|
+
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
|
86
|
+
},
|
87
|
+
"minimist": {
|
88
|
+
"version": "1.2.0",
|
89
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
|
90
|
+
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
|
91
|
+
},
|
92
|
+
"mkdirp": {
|
93
|
+
"version": "0.5.1",
|
94
|
+
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
|
95
|
+
"integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
|
96
|
+
"requires": {
|
97
|
+
"minimist": "0.0.8"
|
98
|
+
},
|
99
|
+
"dependencies": {
|
100
|
+
"minimist": {
|
101
|
+
"version": "0.0.8",
|
102
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
|
103
|
+
"integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
|
104
|
+
}
|
105
|
+
}
|
106
|
+
},
|
107
|
+
"ms": {
|
108
|
+
"version": "2.0.0",
|
109
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
110
|
+
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
|
111
|
+
},
|
112
|
+
"opener": {
|
113
|
+
"version": "1.4.3",
|
114
|
+
"resolved": "https://registry.npmjs.org/opener/-/opener-1.4.3.tgz",
|
115
|
+
"integrity": "sha1-XG2ixdflgx6P+jlklQ+NZnSskLg="
|
116
|
+
},
|
117
|
+
"optimist": {
|
118
|
+
"version": "0.6.1",
|
119
|
+
"resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz",
|
120
|
+
"integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=",
|
121
|
+
"requires": {
|
122
|
+
"minimist": "~0.0.1",
|
123
|
+
"wordwrap": "~0.0.2"
|
124
|
+
},
|
125
|
+
"dependencies": {
|
126
|
+
"minimist": {
|
127
|
+
"version": "0.0.10",
|
128
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz",
|
129
|
+
"integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8="
|
130
|
+
}
|
131
|
+
}
|
132
|
+
},
|
133
|
+
"portfinder": {
|
134
|
+
"version": "1.0.13",
|
135
|
+
"resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.13.tgz",
|
136
|
+
"integrity": "sha1-uzLs2HwnEErm7kS1o8y/Drsa7ek=",
|
137
|
+
"requires": {
|
138
|
+
"async": "^1.5.2",
|
139
|
+
"debug": "^2.2.0",
|
140
|
+
"mkdirp": "0.5.x"
|
141
|
+
},
|
142
|
+
"dependencies": {
|
143
|
+
"debug": {
|
144
|
+
"version": "2.6.9",
|
145
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
146
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
147
|
+
"requires": {
|
148
|
+
"ms": "2.0.0"
|
149
|
+
}
|
150
|
+
}
|
151
|
+
}
|
152
|
+
},
|
153
|
+
"qs": {
|
154
|
+
"version": "2.3.3",
|
155
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-2.3.3.tgz",
|
156
|
+
"integrity": "sha1-6eha2+ddoLvkyOBHaghikPhjtAQ="
|
157
|
+
},
|
158
|
+
"requires-port": {
|
159
|
+
"version": "1.0.0",
|
160
|
+
"resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
|
161
|
+
"integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8="
|
162
|
+
},
|
163
|
+
"union": {
|
164
|
+
"version": "0.4.6",
|
165
|
+
"resolved": "https://registry.npmjs.org/union/-/union-0.4.6.tgz",
|
166
|
+
"integrity": "sha1-GY+9rrolTniLDvy2MLwR8kopWeA=",
|
167
|
+
"requires": {
|
168
|
+
"qs": "~2.3.3"
|
169
|
+
}
|
170
|
+
},
|
171
|
+
"url-join": {
|
172
|
+
"version": "2.0.5",
|
173
|
+
"resolved": "https://registry.npmjs.org/url-join/-/url-join-2.0.5.tgz",
|
174
|
+
"integrity": "sha1-WvIvGMBSoACkjXuCxenC4v7tpyg="
|
175
|
+
},
|
176
|
+
"wordwrap": {
|
177
|
+
"version": "0.0.3",
|
178
|
+
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz",
|
179
|
+
"integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc="
|
180
|
+
}
|
181
|
+
}
|
182
|
+
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
{
|
2
|
+
"name": "attachments",
|
3
|
+
"version": "1.6.0",
|
4
|
+
"private": true,
|
5
|
+
"description": "Vanilla JavaScript demo of attachment methods of @esri/arcgis-rest-feature-service",
|
6
|
+
"author": "",
|
7
|
+
"license": "Apache-2.0",
|
8
|
+
"dependencies": {
|
9
|
+
"@esri/arcgis-rest-feature-service": "^1.6.0",
|
10
|
+
"@esri/arcgis-rest-request": "^1.6.0"
|
11
|
+
},
|
12
|
+
"devDependencies": {
|
13
|
+
"http-server": "*"
|
14
|
+
},
|
15
|
+
"scripts": {
|
16
|
+
"start": "http-server ."
|
17
|
+
}
|
18
|
+
}
|
@@ -0,0 +1,100 @@
|
|
1
|
+
CAMIS,DBA,BORO,BUILDING,STREET,ADDRESS,ZIPCODE,PHONE,CUISINE DESCRIPTION,INSPECTION DATE,ACTION,VIOLATION CODE,VIOLATION DESCRIPTION,CRITICAL FLAG,SCORE,GRADE,GRADE DATE,RECORD DATE,INSPECTION TYPE
|
2
|
+
50015075,NEW YORK FRIED CHICKEN,BROOKLYN,102,SARATOGA AVE,102 SARATOGA AVE,11233,7185522345,Chicken,4/28/15,Violations were cited in the following area(s).,02G,Cold food item held above 41º F (smoked fish and reduced oxygen packaged foods above 38 ºF) except during necessary preparation.,Critical,16,B,4/28/15,3/1/18,Cycle Inspection / Re-inspection
|
3
|
+
40364529,BEN-BEST DELI & RESTAURANT,QUEENS,9640,QUEENS BOULEVARD,9640 QUEENS BOULEVARD,11374,7188971700,Jewish/Kosher,3/24/16,Violations were cited in the following area(s).,05B,"Harmful, noxious gas or vapor detected. CO ~1 3 ppm.",Critical,42,C,3/24/16,3/1/18,Cycle Inspection / Re-inspection
|
4
|
+
41580756,ROTI ON THE RUN,BROOKLYN,189,NORWOOD AVENUE,189 NORWOOD AVENUE,11208,7182354414,Caribbean,1/25/18,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,9,A,1/25/18,3/1/18,Cycle Inspection / Re-inspection
|
5
|
+
50001255,THE MILLING ROOM,MANHATTAN,446,COLUMBUS AVE,446 COLUMBUS AVE,10024,2125952624,Italian,7/30/15,Violations were cited in the following area(s).,06E,"Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.",Critical,28,,,3/1/18,Cycle Inspection / Initial Inspection
|
6
|
+
50016437,CHANG'S FAMILY RESTAURANT,QUEENS,15428,NORTHERN BLVD,15428 NORTHERN BLVD,11354,7189392255,Korean,5/27/15,Violations were cited in the following area(s).,06B,"Tobacco use, eating, or drinking from open container in food preparation, food storage or dishwashing area observed.",Critical,5,A,5/27/15,3/1/18,Cycle Inspection / Re-inspection
|
7
|
+
50000786,DUNKIN' DONUTS,BROOKLYN,873,FLATBUSH AVENUE,873 FLATBUSH AVENUE,11226,7189400080,Donuts,12/10/15,Violations were cited in the following area(s).,09C,Food contact surface not properly maintained.,Not Critical,11,A,12/10/15,3/1/18,Cycle Inspection / Initial Inspection
|
8
|
+
41319308,EUROPA CAFE,MANHATTAN,2,PARK AVENUE,2 PARK AVENUE,10016,2127255425,Sandwiches/Salads/Mixed Buffet,2/20/15,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,7,A,2/20/15,3/1/18,Cycle Inspection / Initial Inspection
|
9
|
+
50018079,ESPACE,MANHATTAN,635,W 42ND ST,635 W 42ND ST,10036,2129677003,American,1/10/18,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,13,A,1/10/18,3/1/18,Cycle Inspection / Initial Inspection
|
10
|
+
50000768,"BUFFALO WILD WINGS, PEETS COFFEE & TEA, BENTO SUSHI",QUEENS,NKA,JFK INTERNATIONAL AIRPORT,NKA JFK INTERNATIONAL AIRPORT,11430,7187514769,American,5/14/15,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,40,,,3/1/18,Cycle Inspection / Initial Inspection
|
11
|
+
50008684,LIZZMONADE,BROOKLYN,1,BROOKLYN BRIDGE PARK,1 BROOKLYN BRIDGE PARK,11201,9179308234,"Juice, Smoothies, Fruit Salads",10/7/15,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,11,A,10/7/15,3/1/18,Cycle Inspection / Initial Inspection
|
12
|
+
50015315,MY PIZZERIA,STATEN ISLAND,755,TARGEE ST,755 TARGEE ST,10304,7187207777,Pizza/Italian,1/19/17,Violations were cited in the following area(s).,08C,Pesticide use not in accordance with label or applicable laws. Prohibited chemical used/stored. Open bait station used.,Not Critical,39,C,1/19/17,3/1/18,Cycle Inspection / Re-inspection
|
13
|
+
41720838,ROTI MEDITERRANEAN GRILL,MANHATTAN,100,MAIDEN LANE,100 MAIDEN LANE,10038,6464943359,Mediterranean,5/14/14,Violations were cited in the following area(s).,02B,Hot food item not held at or above 140º F.,Critical,11,A,5/14/14,3/1/18,Cycle Inspection / Re-inspection
|
14
|
+
40370507,THE PLAYERS CLUB,MANHATTAN,16,GRAMERCY PARK SOUTH,16 GRAMERCY PARK SOUTH,10003,2124756116,American,11/9/16,Violations were cited in the following area(s).,04L,Evidence of mice or live mice present in facility's food and/or non-food areas.,Critical,19,,,3/1/18,Cycle Inspection / Initial Inspection
|
15
|
+
41089834,MURRAY HILL DINER,MANHATTAN,222,LEXINGTON AVENUE,222 LEXINGTON AVENUE,10016,2126866667,American,3/21/17,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,7,A,3/21/17,3/1/18,Cycle Inspection / Initial Inspection
|
16
|
+
50012832,NATIONAL DINER,BRONX,135,WESTCHESTER SQ,135 WESTCHESTER SQ,10461,7188241126,American,1/20/15,Violations were cited in the following area(s).,15L,"Smoke free workplace smoking policy inadequate, not posted, not provided to employees.",Not Critical,,,,3/1/18,Smoke-Free Air Act / Re-inspection
|
17
|
+
41675589,AJI SUSHI HOUSE,QUEENS,3606,DITMARS BLVD,3606 DITMARS BLVD,11105,7187778885,Japanese,5/21/15,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,13,A,5/21/15,3/1/18,Cycle Inspection / Re-inspection
|
18
|
+
50001526,EVERYDAY CHINESE RESTAURANT,BROOKLYN,890,WYCKOFF AVE,890 WYCKOFF AVE,11237,7183818899,Chinese,8/4/14,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,10,A,8/4/14,3/1/18,Cycle Inspection / Re-inspection
|
19
|
+
50008170,SOUTH SHORE HOT BAGELS,STATEN ISLAND,4882,ARTHUR KILL RD,4882 ARTHUR KILL RD,10309,7182278600,Delicatessen,4/17/14,Violations were cited in the following area(s).,06D,"Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.",Critical,36,,,3/1/18,Pre-permit (Operational) / Initial Inspection
|
20
|
+
41236893,NEPTUNE PIZZA,BROOKLYN,3033,CONEY ISLAND AVENUE,3033 CONEY ISLAND AVENUE,11235,7189754472,Pizza,6/8/15,Violations were cited in the following area(s).,09C,Food contact surface not properly maintained.,Not Critical,29,,,3/1/18,Cycle Inspection / Initial Inspection
|
21
|
+
50041083,TENZAN 89,MANHATTAN,1714,2ND AVE,1714 2ND AVE,10128,2123693600,Japanese,10/19/16,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,11,A,10/19/16,3/1/18,Cycle Inspection / Initial Inspection
|
22
|
+
41547596,FUJI SUSHI BEDFORD,BROOKLYN,1185,BEDFORD AVENUE,1185 BEDFORD AVENUE,11216,3479851198,Japanese,10/1/14,Violations were cited in the following area(s).,06E,"Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.",Critical,55,C,10/1/14,3/1/18,Cycle Inspection / Re-inspection
|
23
|
+
41633054,TASTE OF TACO/YUMMY CHINA,QUEENS,6841,MYRTLE AVE,6841 MYRTLE AVE,11385,7184564062,Tex-Mex,3/29/17,Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.,08C,Pesticide use not in accordance with label or applicable laws. Prohibited chemical used/stored. Open bait station used.,Not Critical,52,,,3/1/18,Cycle Inspection / Initial Inspection
|
24
|
+
40829164,BUNGALOW BAR & RESTAURANT,QUEENS,377,BEACH 92 STREET,377 BEACH 92 STREET,11693,7189452100,American,8/11/15,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,28,,,3/1/18,Cycle Inspection / Initial Inspection
|
25
|
+
40810784,BARRAGE,MANHATTAN,401,WEST 47 STREET,401 WEST 47 STREET,10036,2125869390,American,1/6/15,Violations were cited in the following area(s).,15L,"Smoke free workplace smoking policy inadequate, not posted, not provided to employees.",Not Critical,,,,3/1/18,Smoke-Free Air Act / Re-inspection
|
26
|
+
50044393,RYUJIN RAMEN,BROOKLYN,513,GRAND ST,513 GRAND ST,11211,7187099888,Japanese,11/21/16,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,11,A,11/21/16,3/1/18,Cycle Inspection / Re-inspection
|
27
|
+
50033769,NATIVIDAD RESTAURANT,QUEENS,3766,103RD ST,3766 103RD ST,11368,3472040733,"Latin (Cuban, Dominican, Puerto Rican, South & Central American)",12/1/15,Violations were cited in the following area(s).,06A,Personal cleanliness inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn in an area where food is prepared.,Critical,8,A,12/1/15,3/1/18,Cycle Inspection / Initial Inspection
|
28
|
+
40786301,EL RANCHITO DE DAISY,QUEENS,4149,150 STREET,4149 150 STREET,11355,7186613307,"Latin (Cuban, Dominican, Puerto Rican, South & Central American)",2/6/18,No violations were recorded at the time of this inspection.,,,Not Applicable,,,,3/1/18,Administrative Miscellaneous / Initial Inspection
|
29
|
+
41643816,ROCCO'S BRICK OVEN PIZZERIA,QUEENS,79-16,21 AVENUE,79-16 21 AVENUE,11370,7187213535,Pizza,6/2/16,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,13,A,6/2/16,3/1/18,Cycle Inspection / Initial Inspection
|
30
|
+
41611664,SERVICE BAR 6,QUEENS,11000,ROCKAWAY BOULEVARD,11000 ROCKAWAY BOULEVARD,11420,7182152828,American,12/7/16,Violations were cited in the following area(s).,06D,"Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.",Critical,7,A,12/7/16,3/1/18,Cycle Inspection / Initial Inspection
|
31
|
+
41410071,RIMINI PASTRY SHOPPE,BROOKLYN,6822,BAY PARKWAY,6822 BAY PARKWAY,11204,7182360644,Bakery,1/5/15,Violations were cited in the following area(s).,06F,Wiping cloths soiled or not stored in sanitizing solution.,Critical,14,,,3/1/18,Cycle Inspection / Initial Inspection
|
32
|
+
41282827,HAPPY GARDEN,QUEENS,2926,30 AVENUE,2926 30 AVENUE,11102,7182741195,Chinese,11/16/16,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,19,,,3/1/18,Cycle Inspection / Initial Inspection
|
33
|
+
50000045,BURGER JOINT,MANHATTAN,33,W. 8TH ST,33 W. 8TH ST,10011,2124321400,Hamburgers,11/28/16,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,19,B,11/28/16,3/1/18,Cycle Inspection / Re-inspection
|
34
|
+
41627867,DAVIDSTEA,MANHATTAN,275,BLEECKER STREET,275 BLEECKER STREET,10014,2124148599,Café/Coffee/Tea,4/5/16,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,21,,,3/1/18,Cycle Inspection / Initial Inspection
|
35
|
+
50032822,RED LION INN & SUITES,BROOKLYN,279,BUTLER ST,279 BUTLER ST,11217,7188559600,American,8/25/15,Violations were cited in the following area(s).,10H,Proper sanitization not provided for utensil ware washing operation.,Not Critical,26,B,8/25/15,3/1/18,Pre-permit (Operational) / Re-inspection
|
36
|
+
40390902,SCOTTY'S DINER,MANHATTAN,336,LEXINGTON AVENUE,336 LEXINGTON AVENUE,10016,2129861520,American,3/2/16,Violations were cited in the following area(s).,08C,Pesticide use not in accordance with label or applicable laws. Prohibited chemical used/stored. Open bait station used.,Not Critical,14,B,3/2/16,3/1/18,Cycle Inspection / Re-inspection
|
37
|
+
50058366,CAFE86,MANHATTAN,2350,BROADWAY,2350 BROADWAY,10024,2124964004,Delicatessen,2/6/17,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,22,,,3/1/18,Pre-permit (Operational) / Initial Inspection
|
38
|
+
41701052,GREEN CAFE,MANHATTAN,1324,LEXINGTON AVENUE,1324 LEXINGTON AVENUE,10128,2122899100,American,5/18/17,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,12,A,5/18/17,3/1/18,Cycle Inspection / Initial Inspection
|
39
|
+
41304245,MANNA'S RESTAURANT,MANHATTAN,54,EAST 125 STREET,54 EAST 125 STREET,10035,2123604975,Soul Food,4/6/15,Violations were cited in the following area(s).,16B,"The original nutritional fact labels and/or ingredient label for a cooking oil, shortening or margarine or food item sold in bulk, or acceptable manufacturers documentation not maintained on site.",Not Critical,,,,3/1/18,Trans Fat / Initial Inspection
|
40
|
+
50018772,LINDA ASIAN KITCHEN,BROOKLYN,882,DEKALB AVE,882 DEKALB AVE,11221,7185741686,Chinese,3/16/15,Violations were cited in the following area(s).,06D,"Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.",Critical,12,A,3/16/15,3/1/18,Pre-permit (Operational) / Re-inspection
|
41
|
+
41414279,JUST SALAD,MANHATTAN,600,3 AVENUE,600 3 AVENUE,10016,2126823832,Salads,2/11/15,Violations were cited in the following area(s).,04L,Evidence of mice or live mice present in facility's food and/or non-food areas.,Critical,10,A,2/11/15,3/1/18,Cycle Inspection / Initial Inspection
|
42
|
+
50038733,HERO SHOP,BROOKLYN,1211,MCDONALD AVE,1211 MCDONALD AVE,11230,7183385472,American,9/15/15,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,37,,,3/1/18,Pre-permit (Operational) / Initial Inspection
|
43
|
+
41109419,THEATER ROW DINER,MANHATTAN,424,WEST 42 STREET,424 WEST 42 STREET,10036,2124266000,American,9/14/16,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,20,B,9/14/16,3/1/18,Cycle Inspection / Re-inspection
|
44
|
+
40705931,BLUE HILL RESTAURANT,MANHATTAN,75,WASHINGTON PLACE,75 WASHINGTON PLACE,10011,2125391776,American,3/1/16,Violations were cited in the following area(s).,05D,Hand washing facility not provided in or near food preparation area and toilet room. Hot and cold running water at adequate pressure to enable cleanliness of employees not provided at facility. Soap and an acceptable hand-drying device not provided.,Critical,13,A,3/1/16,3/1/18,Cycle Inspection / Re-inspection
|
45
|
+
41276395,SAM'S PIZZA,BRONX,232,WEST 231 STREET,232 WEST 231 STREET,10463,7185489070,Pizza,2/8/17,Violations were cited in the following area(s).,02G,Cold food item held above 41º F (smoked fish and reduced oxygen packaged foods above 38 ºF) except during necessary preparation.,Critical,11,A,2/8/17,3/1/18,Cycle Inspection / Initial Inspection
|
46
|
+
41182288,MCDONALD'S,QUEENS,9801,METROPOLITAN AVENUE,9801 METROPOLITAN AVENUE,11375,7182637281,Hamburgers,4/18/17,Violations were cited in the following area(s).,10I,"Single service item reused, improperly stored, dispensed; not used when required.",Not Critical,12,A,4/18/17,3/1/18,Cycle Inspection / Initial Inspection
|
47
|
+
50047279,CARBONE,MANHATTAN,331,W 38TH ST,331 W 38TH ST,10018,2122902625,Italian,5/9/17,Violations were cited in the following area(s).,04L,Evidence of mice or live mice present in facility's food and/or non-food areas.,Critical,18,B,5/9/17,3/1/18,Cycle Inspection / Re-inspection
|
48
|
+
50033727,PAPA JOHN'S,BROOKLYN,1009,BROADWAY,1009 BROADWAY,11221,7184437272,Pizza,8/16/16,Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,37,,,3/1/18,Cycle Inspection / Initial Inspection
|
49
|
+
41422787,GREAT WALL,QUEENS,25903,HILLSIDE AVENUE,25903 HILLSIDE AVENUE,11004,7189621111,Chinese,12/14/16,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,9,A,12/14/16,3/1/18,Cycle Inspection / Initial Inspection
|
50
|
+
50009127,BAGEL CAFE,BROOKLYN,200,CLINTON ST,200 CLINTON ST,11201,7188586358,Bagels/Pretzels,1/12/16,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,12,,,3/1/18,Cycle Inspection / Initial Inspection
|
51
|
+
50017825,NEW JW GOLDEN BAKERY,BROOKLYN,6017,4TH AVE,6017 4TH AVE,11220,7187659199,Bakery,2/22/17,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,39,,,3/1/18,Cycle Inspection / Initial Inspection
|
52
|
+
40530630,NACIONAL BAKERY #1,BRONX,1484,WESTCHESTER AVENUE,1484 WESTCHESTER AVENUE,10472,7188930168,Bakery,5/9/16,Violations were cited in the following area(s).,02B,Hot food item not held at or above 140º F.,Critical,13,A,5/9/16,3/1/18,Cycle Inspection / Initial Inspection
|
53
|
+
41142394,TAZA CAFE AND DELI,MANHATTAN,350,PARK AVENUE SOUTH,350 PARK AVENUE SOUTH,10010,2127791200,American,12/21/16,Violations were cited in the following area(s).,06F,Wiping cloths soiled or not stored in sanitizing solution.,Critical,22,,,3/1/18,Cycle Inspection / Initial Inspection
|
54
|
+
41176438,LAS CAMELIAS BAR & RESTAURANT,BRONX,1802,WESTCHESTER AVENUE,1802 WESTCHESTER AVENUE,10472,7187941827,"Latin (Cuban, Dominican, Puerto Rican, South & Central American)",8/13/15,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,12,,,3/1/18,Cycle Inspection / Initial Inspection
|
55
|
+
41339622,DUNKIN' DONUTS,QUEENS,24501,FRANCIS LEWIS BOULEVARD,24501 FRANCIS LEWIS BOULEVARD,11422,7183412894,Donuts,5/13/16,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,9,A,5/13/16,3/1/18,Cycle Inspection / Re-inspection
|
56
|
+
50051701,JUICE PRESS,MANHATTAN,100,10TH AVE,100 10TH AVE,10011,2123889539,"Juice, Smoothies, Fruit Salads",9/19/16,Violations were cited in the following area(s).,06D,"Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.",Critical,5,A,9/19/16,3/1/18,Pre-permit (Operational) / Re-inspection
|
57
|
+
40810032,AL-MEHRAN RESTAURANT,QUEENS,8746,PARSONS BOULEVARD,8746 PARSONS BOULEVARD,11432,7185235533,Indian,2/18/15,Violations were cited in the following area(s).,04L,Evidence of mice or live mice present in facility's food and/or non-food areas.,Critical,12,A,2/18/15,3/1/18,Cycle Inspection / Re-inspection
|
58
|
+
41374876,CEMI CAFE,BROOKLYN,61,CHURCH AVENUE,61 CHURCH AVENUE,11218,3477506960,Russian,6/2/16,Violations were cited in the following area(s).,09C,Food contact surface not properly maintained.,Not Critical,36,,,3/1/18,Cycle Inspection / Initial Inspection
|
59
|
+
40936347,SMITH TAVERN,BROOKLYN,440,5 AVENUE,440 5 AVENUE,11215,7187885218,American,12/11/15,Violations were cited in the following area(s).,06D,"Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.",Critical,26,,,3/1/18,Cycle Inspection / Initial Inspection
|
60
|
+
41142578,GRAPE AND GRAIN,MANHATTAN,620,EAST 6 STREET,620 EAST 6 STREET,10009,2124200002,Café/Coffee/Tea,10/18/16,Violations were cited in the following area(s).,04L,Evidence of mice or live mice present in facility's food and/or non-food areas.,Critical,12,A,10/18/16,3/1/18,Cycle Inspection / Initial Inspection
|
61
|
+
41681367,JUMBO CHINESE KITCHEN,QUEENS,11304,JAMAICA AVENUE,11304 JAMAICA AVENUE,11418,7184415946,Chinese,1/25/16,Violations were cited in the following area(s).,16B,"The original nutritional fact labels and/or ingredient label for a cooking oil, shortening or margarine or food item sold in bulk, or acceptable manufacturers documentation not maintained on site.",Not Critical,,,,3/1/18,Trans Fat / Re-inspection
|
62
|
+
50000341,MAMAJUANA CAFE / FIESTA CLUB,QUEENS,3315,56 STREET,3315 56 STREET,11377,7185656454,Seafood,6/24/14,Violations were cited in the following area(s).,10B,Plumbing not properly installed or maintained; anti-siphonage or backflow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly.,Not Critical,28,,,3/1/18,Cycle Inspection / Initial Inspection
|
63
|
+
50074590,,QUEENS,803,CYPRESS AVE,803 CYPRESS AVE,11385,7182246030,Other,1/1/00,,,,Not Applicable,,,,3/1/18,
|
64
|
+
41395881,THE VIG BAR,MANHATTAN,12,SPRING STREET,12 SPRING STREET,10012,2126250011,American,7/27/17,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,18,,,3/1/18,Cycle Inspection / Initial Inspection
|
65
|
+
50043895,CREATE,QUEENS,2921,DITMARS BLVD,2921 DITMARS BLVD,11105,3477398424,American,6/21/17,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,19,B,6/21/17,3/1/18,Cycle Inspection / Re-inspection
|
66
|
+
41362438,NEW YORK SPORTS GRILL,QUEENS,0,JFK INTERNATIONAL AIRPORT,0 JFK INTERNATIONAL AIRPORT,11430,6464835087,American,11/2/17,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,13,A,11/2/17,3/1/18,Cycle Inspection / Initial Inspection
|
67
|
+
41372258,EDDIE'S HERO PLACE,BROOKLYN,6917,4 AVENUE,6917 4 AVENUE,11209,7187451350,American,4/6/15,Violations were cited in the following area(s).,09C,Food contact surface not properly maintained.,Not Critical,11,A,4/6/15,3/1/18,Cycle Inspection / Initial Inspection
|
68
|
+
50012117,ROBERTA'S PIZZA & BAKERY,BROOKLYN,261,MOORE ST,261 MOORE ST,11206,7184171118,Pizza,3/9/16,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,45,,,3/1/18,Cycle Inspection / Initial Inspection
|
69
|
+
41611347,ANDY'S TERIYAKI & TACO,BRONX,171,EINSTEIN LOOP,171 EINSTEIN LOOP,10475,7188620191,Tex-Mex,4/4/15,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,12,A,4/4/15,3/1/18,Cycle Inspection / Re-inspection
|
70
|
+
50063942,FLETCHER'S (DEKALB MARKET),BROOKLYN,445,ALBEE SQUARE WEST,445 ALBEE SQUARE WEST,11201,9176220931,Barbecue,8/30/17,Violations were cited in the following area(s).,02B,Hot food item not held at or above 140º F.,Critical,9,A,8/30/17,3/1/18,Pre-permit (Operational) / Re-inspection
|
71
|
+
41439729,MAGGIE BAKERY,BROOKLYN,6802,BAY PARKWAY,6802 BAY PARKWAY,11204,7183314372,Bakery,3/9/15,Violations were cited in the following area(s).,04M,Live roaches present in facility's food and/or non-food areas.,Critical,9,A,3/9/15,3/1/18,Cycle Inspection / Re-inspection
|
72
|
+
41069969,ANGELO'S PIZZA,QUEENS,3903,103 STREET,3903 103 STREET,11368,7183358637,Pizza,9/6/17,Violations were cited in the following area(s).,10B,Plumbing not properly installed or maintained; anti-siphonage or backflow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly.,Not Critical,12,A,9/6/17,3/1/18,Cycle Inspection / Initial Inspection
|
73
|
+
41696881,NUMERO 28 PIZZERIA,MANHATTAN,658660,AMSTERDAM AVENUE,658660 AMSTERDAM AVENUE,10025,2127067282,Pizza/Italian,6/17/17,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,10,A,6/17/17,3/1/18,Cycle Inspection / Re-inspection
|
74
|
+
41392668,KENNY'S BAKERY,MANHATTAN,126,DYCKMAN STREET,126 DYCKMAN STREET,10040,2125698414,Bakery,4/10/15,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,36,,,3/1/18,Cycle Inspection / Initial Inspection
|
75
|
+
40368223,OYSTER BAR,MANHATTAN,0,GRAND CENTRAL TERMINAL,0 GRAND CENTRAL TERMINAL,10017,2124906650,Seafood,4/20/15,Violations were cited in the following area(s).,04M,Live roaches present in facility's food and/or non-food areas.,Critical,5,A,4/20/15,3/1/18,Cycle Inspection / Re-inspection
|
76
|
+
41198297,HEARST GOOD HOUSEKEEPING INSTITUTE,MANHATTAN,300,WEST 57 STREET,300 WEST 57 STREET,10019,2126492724,American,4/2/15,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,2,A,4/2/15,3/1/18,Cycle Inspection / Initial Inspection
|
77
|
+
50055649,JAMAICA BREEZE RESTAURANT,QUEENS,2136,MOTT AVE,2136 MOTT AVE,11691,7184716030,Caribbean,2/1/17,Violations were cited in the following area(s).,02B,Hot food item not held at or above 140º F.,Critical,18,,,3/1/18,Pre-permit (Operational) / Initial Inspection
|
78
|
+
41581674,SHELLCOVE & CHINGER,QUEENS,8302,BROADWAY,8302 BROADWAY,11373,7185026668,Asian,8/2/16,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,11,A,8/2/16,3/1/18,Cycle Inspection / Re-inspection
|
79
|
+
50043999,Cresent Kitchen,QUEENS,2342,30TH AVE,2342 30TH AVE,11102,6465330110,Greek,5/9/16,Violations were cited in the following area(s).,05D,Hand washing facility not provided in or near food preparation area and toilet room. Hot and cold running water at adequate pressure to enable cleanliness of employees not provided at facility. Soap and an acceptable hand-drying device not provided.,Critical,22,,,3/1/18,Pre-permit (Operational) / Initial Inspection
|
80
|
+
41384329,ICHI SUSHI I,BROOKLYN,2040,86 STREET,2040 86 STREET,11214,7183732929,Japanese,6/14/14,Violations were cited in the following area(s).,06D,"Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.",Critical,28,,,3/1/18,Cycle Inspection / Initial Inspection
|
81
|
+
50041617,ITTADI GARDEN & GRILL,QUEENS,7307,37TH RD,7307 37TH RD,11372,3478662923,Bangladeshi,7/21/16,Violations were cited in the following area(s).,08B,"Covered garbage receptacle not provided or inadequate, except that garbage receptacle may be uncovered during active use. Garbage storage area not properly constructed or maintained; grinder or compactor dirty.",Not Critical,28,C,7/21/16,3/1/18,Cycle Inspection / Re-inspection
|
82
|
+
41167453,EL MANGU SABROSO RESTAURANT,BRONX,80,WEST KINGSBRIDGE ROAD,80 WEST KINGSBRIDGE ROAD,10468,7185636499,"Latin (Cuban, Dominican, Puerto Rican, South & Central American)",2/2/18,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,25,,,3/1/18,Cycle Inspection / Initial Inspection
|
83
|
+
50039368,GOOD NIGHT SONNY,MANHATTAN,134,1ST AVE,134 1ST AVE,10009,9173328432,American,1/3/18,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,17,,,3/1/18,Cycle Inspection / Initial Inspection
|
84
|
+
50000635,ESTRELLITA POBLANA,BRONX,240,W 231 ST,240 W 231 ST,10463,7188843827,Mexican,1/29/16,Violations were cited in the following area(s).,02B,Hot food item not held at or above 140º F.,Critical,22,,,3/1/18,Cycle Inspection / Initial Inspection
|
85
|
+
40576812,BEL-AIRE DINER,QUEENS,3191,21 STREET,3191 21 STREET,11106,7187213160,American,8/5/15,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,26,,,3/1/18,Cycle Inspection / Initial Inspection
|
86
|
+
40362715,THE COUNTRY CAFE,MANHATTAN,60,WALL STREET,60 WALL STREET,10005,3474279132,Sandwiches/Salads/Mixed Buffet,9/6/16,Violations were cited in the following area(s).,06A,Personal cleanliness inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn in an area where food is prepared.,Critical,33,,,3/1/18,Cycle Inspection / Initial Inspection
|
87
|
+
41433220,SILVER KRUST WEST INDIAN RESTAURANT,BROOKLYN,747,NOSTRAND AVENUE,747 NOSTRAND AVENUE,11216,7186042076,Caribbean,2/10/16,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,12,A,2/10/16,3/1/18,Cycle Inspection / Re-inspection
|
88
|
+
41144262,BURGER KING,BROOKLYN,6421,14 AVENUE,6421 14 AVENUE,11219,7182368074,Hamburgers,6/15/17,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,15,,,3/1/18,Cycle Inspection / Initial Inspection
|
89
|
+
50001193,EL NUEVO YAUCO RESTAURANT,BROOKLYN,465A,BUSHWICK AVE,465A BUSHWICK AVE,11206,7183865913,"Latin (Cuban, Dominican, Puerto Rican, South & Central American)",9/8/16,Violations were cited in the following area(s).,02G,Cold food item held above 41º F (smoked fish and reduced oxygen packaged foods above 38 ºF) except during necessary preparation.,Critical,17,,,3/1/18,Cycle Inspection / Initial Inspection
|
90
|
+
50001855,MANGIA,MANHATTAN,422,MADISON AVE,422 MADISON AVE,10017,2126449144,American,12/4/17,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,12,A,12/4/17,3/1/18,Cycle Inspection / Initial Inspection
|
91
|
+
41643108,KAI FENG FU DUMPLING HOUSE,BROOKLYN,4801,8 AVENUE,4801 8 AVENUE,11220,7184373542,Chinese,8/3/15,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,12,A,8/3/15,3/1/18,Cycle Inspection / Re-inspection
|
92
|
+
41097273,NEW UNIVERSITY DELI,MANHATTAN,603,WEST 168 STREET,603 WEST 168 STREET,10032,2125683838,Delicatessen,3/17/16,Violations were cited in the following area(s).,02B,Hot food item not held at or above 140º F.,Critical,25,,,3/1/18,Cycle Inspection / Initial Inspection
|
93
|
+
50014905,LUPITA'S RESTAURANT,BRONX,904,MELROSE AVE,904 MELROSE AVE,10451,3473678773,Mexican,8/25/15,Violations were cited in the following area(s).,10A,"Toilet facility not maintained and provided with toilet paper, waste receptacle and self-closing door.",Not Critical,16,,,3/1/18,Pre-permit (Non-operational) / Initial Inspection
|
94
|
+
50001655,EL RICO TINTO BAKERY,QUEENS,76-07,37TH AVENUE,76-07 37TH AVENUE,11372,7184241324,Spanish,1/23/18,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,26,,,3/1/18,Cycle Inspection / Initial Inspection
|
95
|
+
50061134,CHILLHOUSE,MANHATTAN,149,ESSEX ST,149 ESSEX ST,10002,6466783501,Café/Coffee/Tea,6/2/17,Establishment re-opened by DOHMH,,,Not Applicable,0,P,6/2/17,3/1/18,Pre-permit (Operational) / Reopening Inspection
|
96
|
+
41167580,POCO LOCO BAR,STATEN ISLAND,8,VANDUZER STREET,8 VANDUZER STREET,10301,3478258858,"Latin (Cuban, Dominican, Puerto Rican, South & Central American)",6/21/14,Violations were cited in the following area(s).,15L,"Smoke free workplace smoking policy inadequate, not posted, not provided to employees.",Not Critical,,,,3/1/18,Smoke-Free Air Act / Initial Inspection
|
97
|
+
40856837,BURRITO BOX,MANHATTAN,885,9 AVENUE,885 9 AVENUE,10019,2124896889,Tex-Mex,7/18/16,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,22,,,3/1/18,Cycle Inspection / Initial Inspection
|
98
|
+
50007410,CHALK POINT KITCHEN,MANHATTAN,525,BROOME ST,525 BROOME ST,10013,2123900327,American,5/7/15,Violations were cited in the following area(s).,10B,Plumbing not properly installed or maintained; anti-siphonage or backflow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly.,Not Critical,12,A,5/7/15,3/1/18,Cycle Inspection / Initial Inspection
|
99
|
+
50035381,WENDY'S,BROOKLYN,621,BRIGHTON BEACH AVE,621 BRIGHTON BEACH AVE,11235,7188097780,Hamburgers,8/18/15,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,12,,,3/1/18,Pre-permit (Non-operational) / Initial Inspection
|
100
|
+
41506337,POPEYES LOUISIANA KITCHEN,QUEENS,14202,ROCKAWAY BOULEVARD,14202 ROCKAWAY BOULEVARD,11436,7183233500,Chicken,9/14/16,Violations were cited in the following area(s).,02B,Hot food item not held at or above 140º F.,Critical,7,A,9/14/16,3/1/18,Cycle Inspection / Initial Inspection
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Running this demo
|
2
|
+
|
3
|
+
:loudspeaker: Node.js 8.6 or higher is [required](http://node.green/), this demo uses a couple shiny new JS features like `{... }`
|
4
|
+
|
5
|
+
1. Make sure you run `npm run bootstrap` in the root folder to setup the dependencies
|
6
|
+
2. Replace values in [config-template.js](/demos/batch-geocoder/config-template.js) and rename to `config.js`
|
7
|
+
1. `"un"`: ArcGIS username
|
8
|
+
2. `"pw"`: ArcGIS password
|
9
|
+
3. `"csv"`: csv path
|
10
|
+
4. `"output"`: output csv path
|
11
|
+
5. `"fieldmap"`: `object` that maps CSV fields to [address fields](https://esri.github.io/arcgis-rest-js/api/geocoder/IAddressBulk/) __or__ `string` that points to a CSV field with single-line addresses
|
12
|
+
3. `node batch-geocode.js`
|
13
|
+
|
14
|
+
Sample Restaurant Inspections adapted from a DOHMH dataset available [online](https://data.cityofnewyork.us/Health/DOHMH-New-York-City-Restaurant-Inspection-Results/xx67-kt59/data)
|
@@ -0,0 +1,112 @@
|
|
1
|
+
require('isomorphic-fetch');
|
2
|
+
require('isomorphic-form-data');
|
3
|
+
const fs = require('fs');
|
4
|
+
const Papa = require('papaparse');
|
5
|
+
const { UserSession } = require('@esri/arcgis-rest-auth');
|
6
|
+
const { bulkGeocode } = require('@esri/arcgis-rest-geocoder');
|
7
|
+
const config = require('./config');
|
8
|
+
|
9
|
+
// FUNCTIONS!
|
10
|
+
|
11
|
+
// Reads a csv file to an array of dictionary rows
|
12
|
+
const parseCsv = csvPath => {
|
13
|
+
const readStream = fs.createReadStream(csvPath);
|
14
|
+
return new Promise((res, rej) => {
|
15
|
+
Papa.parse(readStream, {
|
16
|
+
header: true,
|
17
|
+
complete: (data, file) => res(data.data),
|
18
|
+
error: (er, file) => rej(er)
|
19
|
+
});
|
20
|
+
});
|
21
|
+
};
|
22
|
+
|
23
|
+
//Writes a csv-style object to filepath
|
24
|
+
const exportCsv = (output, filePath) => {
|
25
|
+
return new Promise((res, rej) => {
|
26
|
+
const str = Papa.unparse(output);
|
27
|
+
fs.writeFile(filePath, str, er => {
|
28
|
+
if(er) rej(er);
|
29
|
+
res("SUCCESS!");
|
30
|
+
});
|
31
|
+
});
|
32
|
+
}
|
33
|
+
|
34
|
+
// Format objects in data to conform to request params
|
35
|
+
// `fields` can be a `string` for address field or an `object` mapping request fields to csv fields
|
36
|
+
// https://esri.github.io/arcgis-rest-js/api/geocoder/IAddressBulk/
|
37
|
+
const getAddresses = (data, fields) => {
|
38
|
+
if(typeof fields === 'string'){
|
39
|
+
return data.map((row, i) => ({
|
40
|
+
OBJECTID: i,
|
41
|
+
address: row[fields]
|
42
|
+
}));
|
43
|
+
}
|
44
|
+
return data.map((row,i) => {
|
45
|
+
let addressObj = {OBJECTID: i};
|
46
|
+
for(let key in fields){
|
47
|
+
addressObj[key] = row[fields[key]];
|
48
|
+
}
|
49
|
+
return addressObj;
|
50
|
+
});
|
51
|
+
};
|
52
|
+
|
53
|
+
// Chunks an array to max batch geocode limit of 1000
|
54
|
+
// Copied from https://github.com/Chalarangelo/30-seconds-of-code#chunk
|
55
|
+
const chunkGeocode = arr =>
|
56
|
+
Array.from({ length: Math.ceil(arr.length / 1000) }, (v, i) =>
|
57
|
+
arr.slice(i * 1000, i * 1000 + 1000)
|
58
|
+
);
|
59
|
+
|
60
|
+
// Translates array of batch geocode request results to IDs mapped to geocode locations
|
61
|
+
const mapResults = results =>
|
62
|
+
results.reduce((resMap, res) => {
|
63
|
+
const locations = res.locations;
|
64
|
+
return locations.reduce((locMap, loc) => {
|
65
|
+
const locFields = {};
|
66
|
+
locFields['x'] = loc.location.x;
|
67
|
+
locFields['y'] = loc.location.y;
|
68
|
+
// ref: https://developers.arcgis.com/rest/geocode/api-reference/geocoding-service-output.htm#ESRI_SECTION1_42D7D3D0231241E9B656C01438209440
|
69
|
+
locFields['geocode_score'] = loc.score;
|
70
|
+
locFields['match_type'] = loc.attributes.Addr_type;
|
71
|
+
locMap[loc.attributes.ResultID] = locFields;
|
72
|
+
return locMap;
|
73
|
+
}, resMap);
|
74
|
+
}, {});
|
75
|
+
|
76
|
+
// IMPLEMENTATION!
|
77
|
+
|
78
|
+
// Instantiate a user session to run Geocoding service
|
79
|
+
const session = new UserSession({
|
80
|
+
username: config.un,
|
81
|
+
password: config.pw
|
82
|
+
});
|
83
|
+
|
84
|
+
// Parse and geocode
|
85
|
+
parseCsv(config.csv)
|
86
|
+
.then(data => {
|
87
|
+
// Build address requests
|
88
|
+
const addrs = getAddresses(data, config.fieldmap);
|
89
|
+
const chunks = chunkGeocode(addrs, 1000);
|
90
|
+
|
91
|
+
// Geocode
|
92
|
+
const promises = chunks.map(chunk =>
|
93
|
+
bulkGeocode({addresses: chunk, authentication: session})
|
94
|
+
);
|
95
|
+
|
96
|
+
// Resolve results and combine with CSV data
|
97
|
+
return Promise.all(promises).then(res => {
|
98
|
+
resultMap = mapResults(res);
|
99
|
+
output = data.map((row, i) => {
|
100
|
+
id = row[config.fieldmap.OBJECTID] || i;
|
101
|
+
return {...row, ...resultMap[id]};
|
102
|
+
});
|
103
|
+
return output;
|
104
|
+
});
|
105
|
+
})
|
106
|
+
.then(output => {
|
107
|
+
// Write the new CSV
|
108
|
+
return exportCsv(output, config.output);
|
109
|
+
})
|
110
|
+
.then(success => console.log(success))
|
111
|
+
.catch(er => console.log(er))
|
112
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module.exports = {
|
2
|
+
"un": "<USERNAME>",
|
3
|
+
"pw": "<PASSWORD>",
|
4
|
+
"csv": "NYC_Restaurant_Inspection_Results.csv",
|
5
|
+
"output": "NYC_Inspections_Geocoded.csv",
|
6
|
+
"fieldmap": {
|
7
|
+
"address": "ADDRESS",
|
8
|
+
// "address2": "<csv field>",
|
9
|
+
// "address3": "<csv field>",
|
10
|
+
"city": "BORO",
|
11
|
+
// "countryCode": "<csv field>",
|
12
|
+
// "neighborhood": "<csv field>",
|
13
|
+
"postal": "ZIPCODE",
|
14
|
+
// "postal Ext": "<csv field>",
|
15
|
+
// "region": "STATE",
|
16
|
+
// "subregion": "<csv field>"
|
17
|
+
}
|
18
|
+
}
|
@@ -0,0 +1,109 @@
|
|
1
|
+
{
|
2
|
+
"requires": true,
|
3
|
+
"lockfileVersion": 1,
|
4
|
+
"dependencies": {
|
5
|
+
"async": {
|
6
|
+
"version": "2.6.0",
|
7
|
+
"resolved": "https://registry.npmjs.org/async/-/async-2.6.0.tgz",
|
8
|
+
"integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==",
|
9
|
+
"requires": {
|
10
|
+
"lodash": "^4.14.0"
|
11
|
+
}
|
12
|
+
},
|
13
|
+
"combined-stream": {
|
14
|
+
"version": "1.0.5",
|
15
|
+
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz",
|
16
|
+
"integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=",
|
17
|
+
"requires": {
|
18
|
+
"delayed-stream": "~1.0.0"
|
19
|
+
}
|
20
|
+
},
|
21
|
+
"delayed-stream": {
|
22
|
+
"version": "1.0.0",
|
23
|
+
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
24
|
+
"integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
|
25
|
+
},
|
26
|
+
"encoding": {
|
27
|
+
"version": "0.1.12",
|
28
|
+
"resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz",
|
29
|
+
"integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=",
|
30
|
+
"requires": {
|
31
|
+
"iconv-lite": "~0.4.13"
|
32
|
+
}
|
33
|
+
},
|
34
|
+
"form-data": {
|
35
|
+
"version": "1.0.1",
|
36
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-1.0.1.tgz",
|
37
|
+
"integrity": "sha1-rjFduaSQf6BlUCMEpm13M0de43w=",
|
38
|
+
"requires": {
|
39
|
+
"async": "^2.0.1",
|
40
|
+
"combined-stream": "^1.0.5",
|
41
|
+
"mime-types": "^2.1.11"
|
42
|
+
}
|
43
|
+
},
|
44
|
+
"iconv-lite": {
|
45
|
+
"version": "0.4.19",
|
46
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz",
|
47
|
+
"integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ=="
|
48
|
+
},
|
49
|
+
"is-stream": {
|
50
|
+
"version": "1.1.0",
|
51
|
+
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
|
52
|
+
"integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
|
53
|
+
},
|
54
|
+
"isomorphic-fetch": {
|
55
|
+
"version": "2.2.1",
|
56
|
+
"resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz",
|
57
|
+
"integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=",
|
58
|
+
"requires": {
|
59
|
+
"node-fetch": "^1.0.1",
|
60
|
+
"whatwg-fetch": ">=0.10.0"
|
61
|
+
}
|
62
|
+
},
|
63
|
+
"isomorphic-form-data": {
|
64
|
+
"version": "1.0.0",
|
65
|
+
"resolved": "https://registry.npmjs.org/isomorphic-form-data/-/isomorphic-form-data-1.0.0.tgz",
|
66
|
+
"integrity": "sha1-BEe+fg9rht7z05MDbPdmSpiRkQA=",
|
67
|
+
"requires": {
|
68
|
+
"form-data": "^1.0.0-rc3"
|
69
|
+
}
|
70
|
+
},
|
71
|
+
"lodash": {
|
72
|
+
"version": "4.17.4",
|
73
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
|
74
|
+
"integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4="
|
75
|
+
},
|
76
|
+
"mime-db": {
|
77
|
+
"version": "1.30.0",
|
78
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz",
|
79
|
+
"integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE="
|
80
|
+
},
|
81
|
+
"mime-types": {
|
82
|
+
"version": "2.1.17",
|
83
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz",
|
84
|
+
"integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=",
|
85
|
+
"requires": {
|
86
|
+
"mime-db": "~1.30.0"
|
87
|
+
}
|
88
|
+
},
|
89
|
+
"node-fetch": {
|
90
|
+
"version": "1.7.3",
|
91
|
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz",
|
92
|
+
"integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==",
|
93
|
+
"requires": {
|
94
|
+
"encoding": "^0.1.11",
|
95
|
+
"is-stream": "^1.0.1"
|
96
|
+
}
|
97
|
+
},
|
98
|
+
"papaparse": {
|
99
|
+
"version": "4.3.6",
|
100
|
+
"resolved": "https://registry.npmjs.org/papaparse/-/papaparse-4.3.6.tgz",
|
101
|
+
"integrity": "sha1-lWbtoOyrE6/LdApiOBxpn0hssUU="
|
102
|
+
},
|
103
|
+
"whatwg-fetch": {
|
104
|
+
"version": "2.0.3",
|
105
|
+
"resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz",
|
106
|
+
"integrity": "sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ="
|
107
|
+
}
|
108
|
+
}
|
109
|
+
}
|