From 94e9070651633496cef6f9f275cbc1b96d4e38b6 Mon Sep 17 00:00:00 2001 From: Matthew Thornton <44626690+ThorntonMatthewD@users.noreply.github.com> Date: Sat, 7 Oct 2023 19:28:34 -0400 Subject: [PATCH] Add Talkback to Vitest suite This will allow for capturing realistic test fixtures for API responses from external services and set tests to consume those in place of making live calls. --- .prettierignore | 5 + README.md | 9 + package-lock.json | 246 +- package.json | 8 +- src/stores/map.ts | 4 +- src/tests/components/.gitkeep | 0 src/tests/router/.gitkeep | 0 .../__tests__ => tests/stores}/map.spec.ts | 4 +- src/tests/support/talkback-server.ts | 44 + src/tests/tapes/map/geojson/breweries/2.json5 | 817 + .../tapes/rest/maps?_format=json/1.json5 | 13468 ++++++++++++++++ src/tests/views/.gitkeep | 0 src/tests/vitest.global.ts | 3 + tsconfig.app.json | 2 +- vite.config.ts | 26 +- 15 files changed, 14609 insertions(+), 27 deletions(-) create mode 100644 .prettierignore create mode 100644 src/tests/components/.gitkeep create mode 100644 src/tests/router/.gitkeep rename src/{stores/__tests__ => tests/stores}/map.spec.ts (96%) create mode 100644 src/tests/support/talkback-server.ts create mode 100644 src/tests/tapes/map/geojson/breweries/2.json5 create mode 100644 src/tests/tapes/rest/maps?_format=json/1.json5 create mode 100644 src/tests/views/.gitkeep create mode 100644 src/tests/vitest.global.ts diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..192a40c --- /dev/null +++ b/.prettierignore @@ -0,0 +1,5 @@ +// Talkback Tapes +*.json5 + +// Ignore bundle files +dist/* diff --git a/README.md b/README.md index e0bff65..01da48a 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,15 @@ npm run build npm run test:unit:dev ``` +**Reset Cached API Responses (Called Tapes) Used by Vitest** +This project utilizes the [talkback](https://github.com/ijpiantanida/talkback) package to save responses received from external dependencies into fixtures (called tapes) that can be used in subsequent set suite executions. + +If the upstream data source's response schema is altered you can run the following command to "freshen things up" and overwrite any previously recorded responses: + +```sh +OVERWRITE_TAPES=1 npm run test:unit:dev +``` + ### Run End-to-End Tests with [Cypress](https://www.cypress.io/) ```sh diff --git a/package-lock.json b/package-lock.json index 7ffbf25..50803cf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -27,6 +27,7 @@ "@vue/test-utils": "^2.1.0", "@vue/tsconfig": "^0.1.3", "autoprefixer": "^10.4.13", + "cross-env": "^7.0.3", "cypress": "^10.10.0", "eslint": "^8.22.0", "eslint-plugin-cypress": "^2.12.1", @@ -38,6 +39,7 @@ "prettier": "^2.7.1", "start-server-and-test": "^1.14.0", "tailwindcss": "^3.2.4", + "talkback": "^3.0.2", "typescript": "~4.7.4", "vite": "^3.1.8", "vitest": "^0.26.2", @@ -1544,6 +1546,12 @@ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, + "node_modules/buffer-shims": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz", + "integrity": "sha512-Zy8ZXMyxIT6RMTeY7OP/bDndfj6bwCan7SS98CEndS6deHwWPpseeHlwarNcBim+etXnF9HBc1non5JgDaJU1g==", + "dev": true + }, "node_modules/cachedir": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", @@ -1856,12 +1864,39 @@ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", "dev": true }, + "node_modules/cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "bin": { + "cross-env": "src/bin/cross-env.js", + "cross-env-shell": "src/bin/cross-env-shell.js" + }, + "engines": { + "node": ">=10.14", + "npm": ">=6", + "yarn": ">=1" + } + }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -3429,9 +3464,9 @@ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" }, "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "hasInstallScript": true, "optional": true, "os": [ @@ -4470,6 +4505,18 @@ "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", "dev": true }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/jsonc-parser": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", @@ -4836,6 +4883,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/mlly": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.2.0.tgz", @@ -4905,6 +4964,48 @@ "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", "dev": true }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "node_modules/node-releases": { "version": "2.0.10", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", @@ -6034,9 +6135,9 @@ } }, "node_modules/rxjs": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.0.tgz", - "integrity": "sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==", + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", "dev": true, "dependencies": { "tslib": "^2.1.0" @@ -6635,6 +6736,37 @@ "postcss": "^8.0.9" } }, + "node_modules/talkback": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/talkback/-/talkback-3.0.2.tgz", + "integrity": "sha512-xyy2c+ZNiHzhPgyhPldpg2LbTKb9y+ZMPpcJlA/rfRNEXStTL3GNnU2BDSREkZH1FOMEGAUZX2qHqFTFf2Y0dQ==", + "dev": true, + "dependencies": { + "ansi-regex": "6.0.1", + "buffer-shims": "^1.0.0", + "content-type": "^1.0.4", + "json5": "^2.2.0", + "lodash": "^4.17.21", + "mkdirp": "^1.0.3", + "node-fetch": "^2.6.1", + "uuid": "^8.3.2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/talkback/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", @@ -8524,6 +8656,12 @@ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, + "buffer-shims": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz", + "integrity": "sha512-Zy8ZXMyxIT6RMTeY7OP/bDndfj6bwCan7SS98CEndS6deHwWPpseeHlwarNcBim+etXnF9HBc1non5JgDaJU1g==", + "dev": true + }, "cachedir": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", @@ -8746,12 +8884,27 @@ } } }, + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true + }, "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", "dev": true }, + "cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.1" + } + }, "cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -9859,9 +10012,9 @@ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" }, "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "optional": true }, "function-bind": { @@ -10599,6 +10752,12 @@ "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", "dev": true }, + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true + }, "jsonc-parser": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", @@ -10878,6 +11037,12 @@ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, "mlly": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.2.0.tgz", @@ -10943,6 +11108,39 @@ "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", "dev": true }, + "node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dev": true, + "requires": { + "whatwg-url": "^5.0.0" + }, + "dependencies": { + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + } + } + }, "node-releases": { "version": "2.0.10", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", @@ -11703,9 +11901,9 @@ } }, "rxjs": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.0.tgz", - "integrity": "sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==", + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", "dev": true, "requires": { "tslib": "^2.1.0" @@ -12145,6 +12343,30 @@ "sucrase": "^3.29.0" } }, + "talkback": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/talkback/-/talkback-3.0.2.tgz", + "integrity": "sha512-xyy2c+ZNiHzhPgyhPldpg2LbTKb9y+ZMPpcJlA/rfRNEXStTL3GNnU2BDSREkZH1FOMEGAUZX2qHqFTFf2Y0dQ==", + "dev": true, + "requires": { + "ansi-regex": "6.0.1", + "buffer-shims": "^1.0.0", + "content-type": "^1.0.4", + "json5": "^2.2.0", + "lodash": "^4.17.21", + "mkdirp": "^1.0.3", + "node-fetch": "^2.6.1", + "uuid": "^8.3.2" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + } + } + }, "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", diff --git a/package.json b/package.json index 80f90f2..60acef5 100644 --- a/package.json +++ b/package.json @@ -6,14 +6,14 @@ "build": "run-p type-check build-only", "preview": "vite preview", "test:unit": "vitest --environment jsdom --root src/ --watch=false", - "test:unit:dev": "vitest --environment jsdom --root src/", + "test:unit:dev": "cross-env-shell OVERWRITE_TAPES=$OVERWRITE_TAPES \"vitest --environment jsdom --root src/\"", "test:e2e": "start-server-and-test 'vite dev --port 4173' :4173 'cypress run'", "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' :4173 'cypress open'", "test:all": "run-p build test:unit test:e2e type-check lint-check", "build-only": "vite build", "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false", - "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore; prettier --write . --ignore-path .gitignore", - "lint-check": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix-dry-run --ignore-path .gitignore && prettier --check . --ignore-path .gitignore" + "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore; prettier --write . --ignore-path .gitignore --ignore-path .prettierignore", + "lint-check": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix-dry-run --ignore-path .gitignore && prettier --check . --ignore-path .gitignore --ignore-path .prettierignore" }, "dependencies": { "@types/geojson": "^7946.0.10", @@ -35,6 +35,7 @@ "@vue/test-utils": "^2.1.0", "@vue/tsconfig": "^0.1.3", "autoprefixer": "^10.4.13", + "cross-env": "^7.0.3", "cypress": "^10.10.0", "eslint": "^8.22.0", "eslint-plugin-cypress": "^2.12.1", @@ -46,6 +47,7 @@ "prettier": "^2.7.1", "start-server-and-test": "^1.14.0", "tailwindcss": "^3.2.4", + "talkback": "^3.0.2", "typescript": "~4.7.4", "vite": "^3.1.8", "vitest": "^0.26.2", diff --git a/src/stores/map.ts b/src/stores/map.ts index aa4c9b6..5ec2249 100644 --- a/src/stores/map.ts +++ b/src/stores/map.ts @@ -49,7 +49,7 @@ export const useMapStore = defineStore("map", { }, async fetchAvailableMaps() { if (Object.keys(this.availableMaps).length == 0) { - await fetch("https://data.openupstate.org/rest/maps?_format=json") + await fetch(`${process.env.DATA_API_BASE_URL}/rest/maps?_format=json`) .then((response) => response.json()) .then((data) => { data @@ -63,7 +63,7 @@ export const useMapStore = defineStore("map", { const geoJsonUrl = new URL( mapDataJson.field_geojson_link[0].uri .toString() - .replace("internal:", "https://data.openupstate.org") + .replace("internal:", process.env.DATA_API_BASE_URL) ); const mapData = { diff --git a/src/tests/components/.gitkeep b/src/tests/components/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/tests/router/.gitkeep b/src/tests/router/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/stores/__tests__/map.spec.ts b/src/tests/stores/map.spec.ts similarity index 96% rename from src/stores/__tests__/map.spec.ts rename to src/tests/stores/map.spec.ts index f50e9f9..b7b613b 100644 --- a/src/stores/__tests__/map.spec.ts +++ b/src/tests/stores/map.spec.ts @@ -1,6 +1,6 @@ import { describe, it, expect, beforeEach, expectTypeOf } from "vitest"; import { setActivePinia, createPinia } from "pinia"; -import { useMapStore } from "../map"; +import { useMapStore } from "../../stores/map"; import L from "leaflet"; import type { GeoJSON } from "geojson"; import type { MapData, LayerData } from "../../types"; @@ -58,7 +58,7 @@ describe("mapStore", () => { expect(fetchResult["Breweries"].mapTitle).toBe("Breweries"); expect(fetchResult["Breweries"].mapSlug).toBe("breweries"); expect(fetchResult["Breweries"].geoJsonUrl.toString()).toBe( - "https://data.openupstate.org/map/geojson/breweries/" + `${process.env.DATA_API_BASE_URL}/map/geojson/breweries/` ); }); diff --git a/src/tests/support/talkback-server.ts b/src/tests/support/talkback-server.ts new file mode 100644 index 0000000..e42f87b --- /dev/null +++ b/src/tests/support/talkback-server.ts @@ -0,0 +1,44 @@ +/* + * Creates a Talkback server for use as a proxy server during tests. + * + * Responses to external services are initially recorded for use as test fixtures + * to prevent the need for reaching back out each time the test suite is run. + */ +import talkback from "talkback"; +import type Tape from "talkback/tape"; + +const record_mode = () => { + if (process.env.OVERWRITE_TAPES) { + console.log("Overwriting existing tapes."); + return talkback.Options.RecordMode.OVERWRITE; + } + + console.log( + "Attempting to reuse existing tapes and will save anything new that I come across." + ); + return talkback.Options.RecordMode.NEW; +}; + +const create_talkback_server = async () => { + console.log(process.env.OVERWRITE_TAPES); + + const opts = { + host: "https://data.openupstate.org", + record: record_mode(), + port: 9090, + path: "./src/tests/tapes", + http: true, + tapeNameGenerator(tapeNumber: number, tape: Tape) { + return `${tape.req.url}/${tapeNumber}`; + }, + }; + + const server = talkback(opts); + server.start(() => console.log("Talkback Server Started")); + + return async () => { + server.close(() => console.log("Talkback Server Closed")); + }; +}; + +export default create_talkback_server; diff --git a/src/tests/tapes/map/geojson/breweries/2.json5 b/src/tests/tapes/map/geojson/breweries/2.json5 new file mode 100644 index 0000000..0f29853 --- /dev/null +++ b/src/tests/tapes/map/geojson/breweries/2.json5 @@ -0,0 +1,817 @@ +{ + meta: { + createdAt: '2023-10-07T22:22:03.998Z', + host: 'https://data.openupstate.org', + resHumanReadable: true, + }, + req: { + headers: { + connection: 'keep-alive', + accept: '*/*', + 'accept-language': '*', + 'sec-fetch-mode': 'cors', + 'user-agent': 'undici', + 'accept-encoding': 'gzip, deflate', + }, + url: '/map/geojson/breweries/', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Sat, 07 Oct 2023 22:22:04 GMT', + ], + server: [ + 'Apache', + ], + 'cache-control': [ + 'no-cache, must-revalidate', + ], + expires: [ + 'Mon, 26 Jul 1997 05:00:00 GMT', + ], + 'strict-transport-security': [ + 'max-age=31536000;', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'access-control-allow-origin': [ + '*', + ], + 'access-control-allow-headers': [ + 'origin, x-requested-with, content-type', + ], + 'access-control-allow-methods': [ + 'GET', + ], + 'keep-alive': [ + 'timeout=5, max=100', + ], + connection: [ + 'Keep-Alive', + ], + 'transfer-encoding': [ + 'chunked', + ], + 'content-type': [ + 'application/json; charset=utf-8', + ], + }, + body: { + type: 'FeatureCollection', + features: [ + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.284568, + 34.919719, + ], + }, + properties: { + title: '13 Stripes Brewery', + dog_friendly: 'Yes', + food_on_site: 'No', + srt_accessible: 'No', + website: 'https://www.13stripesbrewery.com', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.345203, + 34.846558, + ], + }, + properties: { + title: 'Quest Brewing Co. (CLOSED - 2021)', + dog_friendly: 'CLOSED', + food_on_site: 'CLOSED', + srt_accessible: 'CLOSED', + website: '', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.423357, + 34.796685, + ], + }, + properties: { + title: 'Thomas Creek Brewery', + dog_friendly: 'Yes', + food_on_site: 'No', + srt_accessible: 'No', + website: 'https://thomascreekbeer.com', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.415818, + 34.866038, + ], + }, + properties: { + title: 'Birds Fly South Ale Project (CLOSED - 2023)', + dog_friendly: 'CLOSED', + food_on_site: 'CLOSED', + srt_accessible: 'CLOSED', + website: 'https://www.wyff4.com/article/birds-fly-south-taproom-greenville-closing/45373722', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.348843, + 34.803261, + ], + }, + properties: { + title: 'Brewery 85 (CLOSED - 2023)', + dog_friendly: 'CLOSED', + food_on_site: 'CLOSED', + srt_accessible: 'CLOSED', + website: 'https://www.wyff4.com/article/south-carolina-brewery-85-closing/44054139', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.406642, + 34.838535, + ], + }, + properties: { + title: 'The Eighth State Brewing Company', + dog_friendly: 'Yes', + food_on_site: 'Yes', + srt_accessible: 'Yes', + website: 'https://www.eighthstatebrewing.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.442547, + 34.967306, + ], + }, + properties: { + title: 'Swamp Rabbit Brewery', + dog_friendly: 'Yes', + food_on_site: 'No', + srt_accessible: 'Yes', + website: 'https://www.theswamprabbitbrewery.com', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.226396, + 34.936969, + ], + }, + properties: { + title: 'The Blue Ridge Brewing Co.', + dog_friendly: 'No', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://www.blueridgebrewing.com', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.396042, + 34.850377, + ], + }, + properties: { + title: 'Fireforge Crafted Beer', + dog_friendly: 'Outside', + food_on_site: 'Yes', + srt_accessible: 'Yes', + website: 'https://www.fireforge.beer', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.378499, + 34.805939, + ], + }, + properties: { + title: 'Shoeless Brewing Co.', + dog_friendly: 'No', + food_on_site: 'No', + srt_accessible: 'No', + website: 'https://grapeandgrains.com/brewery/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.3396796, + 34.8510738, + ], + }, + properties: { + title: 'Iron Hill Brewery and Restaurant', + dog_friendly: 'No', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://www.ironhillbrewery.com', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.3978892, + 34.861524, + ], + }, + properties: { + title: 'Liability Brewing Co.', + dog_friendly: 'Yes', + food_on_site: 'Yes', + srt_accessible: 'Yes', + website: 'https://liabilitybrewing.co', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.3967362, + 34.848915, + ], + }, + properties: { + title: 'Yee-Haw Brewing Company', + dog_friendly: 'Yes', + food_on_site: 'Yes', + srt_accessible: 'Yes', + website: 'https://yeehawbrewing.com', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.2583474, + 34.7404822, + ], + }, + properties: { + title: 'Rail Line Brewing - (CLOSED - 2019)', + dog_friendly: 'CLOSED', + food_on_site: 'CLOSED', + srt_accessible: 'CLOSED', + website: '', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.385111, + 34.8585551, + ], + }, + properties: { + title: 'Tetrad Brewing Co.', + dog_friendly: 'Yes', + food_on_site: 'No', + srt_accessible: 'Yes', + website: 'https://www.tetradbrewingco.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.359223, + 34.845147, + ], + }, + properties: { + title: 'Think Tank Brew Lab', + dog_friendly: 'TBD', + food_on_site: 'TBD', + srt_accessible: 'Yes', + website: 'https://thinktankbrewlab.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.9518613, + 34.6854826, + ], + }, + properties: { + title: 'Keowee Brewing Company', + dog_friendly: 'Outside', + food_on_site: 'Limited', + srt_accessible: 'No', + website: 'https://www.facebook.com/KeoweeBrewing/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.517034, + 34.683379, + ], + }, + properties: { + title: 'Golden Grove Farm & Brew', + dog_friendly: 'Yes', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://farmandbrew.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -81.9296417, + 34.9524592, + ], + }, + properties: { + title: 'Ciclops Cyderi & Brewery', + dog_friendly: 'Yes', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://www.ciclopscyderiandbrewery.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -81.9086743, + 34.9708248, + ], + }, + properties: { + title: 'Holliday Brewing', + dog_friendly: 'TBD', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://www.facebook.com/hollidaybrewing/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -81.9362542, + 34.948626, + ], + }, + properties: { + title: 'RJ Rockers Brewing', + dog_friendly: 'Yes', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://www.rjrockers.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -81.9907209, + 35.0524497, + ], + }, + properties: { + title: 'New Groove Artisan Brewery', + dog_friendly: 'Yes', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://newgroovebrew.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.224941, + 34.807307, + ], + }, + properties: { + title: 'The Beer Den @ Lowes Foods', + dog_friendly: 'No', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://www.lowesfoods.com/the-beer-den/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.3718886, + 34.8492837, + ], + }, + properties: { + title: 'Double Stamp', + dog_friendly: 'Yes', + food_on_site: 'Outside Food Allowed', + srt_accessible: 'Yes', + website: 'https://www.facebook.com/doublestampbrewery/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.4279379, + 34.8483776, + ], + }, + properties: { + title: 'Carolina Bauernhaus Brewery & Winery', + dog_friendly: 'Yes', + food_on_site: 'Limited', + srt_accessible: 'Yes', + website: 'https://carolinabauernhaus.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.65196772, + 34.50567791, + ], + }, + properties: { + title: 'Carolina Bauernhaus', + dog_friendly: 'No', + food_on_site: 'Limited', + srt_accessible: 'No', + website: 'https://carolinabauernhaus.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -81.956098, + 35.011571, + ], + }, + properties: { + title: 'Plankowner Brewing', + dog_friendly: 'TBD', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://plankownerbrewing.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.408198, + 34.852709, + ], + }, + properties: { + title: 'Nautic Brewing - (CLOSED - 2019)', + dog_friendly: 'CLOSED', + food_on_site: 'CLOSED', + srt_accessible: 'CLOSED', + website: 'https://www.greenvilleonline.com/story/news/2019/04/29/nautic-brewing-open-across-miracle-hill-rescue-mission-homeless-shelter-greenville-sc/3549112002/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.260706, + 34.944813, + ], + }, + properties: { + title: 'Southern Growl', + dog_friendly: 'TBD', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://thesoutherngrowl.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.6122259, + 34.8282768, + ], + }, + properties: { + title: 'Silos Brewing', + dog_friendly: 'TBD', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://www.silosbrewing.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.2288132, + 34.8065073, + ], + }, + properties: { + title: 'Five Forks Brewing - (CLOSED - 2022)', + dog_friendly: 'CLOSED', + food_on_site: 'CLOSED', + srt_accessible: 'CLOSED', + website: 'https://upstatebusinessjournal.com/eat-drink/five-forks-brewing-to-close-permanently-friday/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.7859353, + 34.6842157, + ], + }, + properties: { + title: 'Kite Hill Brewing', + dog_friendly: 'Yes', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://www.kitehillbrewing.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.6529382, + 34.5080901, + ], + }, + properties: { + title: 'Magnetic South - Anderson', + dog_friendly: 'Yes', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://magneticsouthbeer.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.7826158, + 34.6498049, + ], + }, + properties: { + title: 'Pendleton Brewing Company (CLOSED - 2023)', + dog_friendly: 'CLOSED', + food_on_site: 'CLOSED', + srt_accessible: 'CLOSED', + website: 'https://www.postandcourier.com/greenville/tapped-out-pendleton-brewery-closes-as-more-businesses-move-to-town/article_439e47fe-1f41-11ee-bd91-a79b407c2111.html', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.6528116, + 34.5088144, + ], + }, + properties: { + title: 'Electric City Brewing Company - (CLOSED - 2022)', + dog_friendly: 'CLOSED', + food_on_site: 'CLOSED', + srt_accessible: 'CLOSED', + website: 'https://www.facebook.com/electriccitybrewing/posts/799620921362593', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.4170734, + 34.8528115, + ], + }, + properties: { + title: 'Southernside Brewing', + dog_friendly: 'Yes', + food_on_site: 'Yes', + srt_accessible: 'Yes', + website: 'https://southernsidebrewing.com', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.411848, + 34.874643, + ], + }, + properties: { + title: 'Black Irish Brewing Company (PLANNED)', + dog_friendly: 'TBD', + food_on_site: 'TBD', + srt_accessible: 'Yes', + website: 'https://www.facebook.com/blackirishbrewingco/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.41294358, + 34.85236594, + ], + }, + properties: { + title: 'Pangaea Brewing', + dog_friendly: 'Yes', + food_on_site: 'Yes', + srt_accessible: 'Yes', + website: 'https://pangaeabrewing.com', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.2776318, + 34.79372198, + ], + }, + properties: { + title: 'BridgeWay Brewing Co. - (PLANNED)', + dog_friendly: 'TBD', + food_on_site: 'TBD', + srt_accessible: 'No', + website: 'https://upstatebusinessjournal.com/eat-drink/mauldins-bridgeway-station-to-welcome-bridgeway-brewing-co/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.42907589, + 34.83553023, + ], + }, + properties: { + title: 'Magnetic South - Greenville - Judson Mill', + dog_friendly: 'TBD', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://magneticsouthbeer.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.84754933, + 34.69187896, + ], + }, + properties: { + title: 'Magnetic South - Clemson Dockside', + dog_friendly: 'TBD', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://magneticsouthbeer.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.38913175, + 34.88023562, + ], + }, + properties: { + title: 'Other Lands Brewing - (PLANNED)', + dog_friendly: 'TBD', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://upstatebusinessjournal.com/square-feet/new-dining-bar-concept-other-lands-to-open-near-downtown-greenville-this-summer/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -81.64771491, + 35.07430924, + ], + }, + properties: { + title: 'Peach City Brewing', + dog_friendly: 'TBD', + food_on_site: 'Yes', + srt_accessible: 'No', + website: 'https://www.peachcitybrewing.com/', + }, + }, + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [ + -82.20090971, + 34.6929663, + ], + }, + properties: { + title: 'Flour Mill Brewing Company (PLANNED)', + dog_friendly: 'TBD', + food_on_site: 'TBD', + srt_accessible: 'TBD', + website: 'https://scbiznews.com/news/hospitality-and-tourism/83270/', + }, + }, + ], + }, + }, +} \ No newline at end of file diff --git a/src/tests/tapes/rest/maps?_format=json/1.json5 b/src/tests/tapes/rest/maps?_format=json/1.json5 new file mode 100644 index 0000000..ccc67d5 --- /dev/null +++ b/src/tests/tapes/rest/maps?_format=json/1.json5 @@ -0,0 +1,13468 @@ +{ + meta: { + createdAt: '2023-10-07T22:22:03.363Z', + host: 'https://data.openupstate.org', + resHumanReadable: true, + }, + req: { + headers: { + connection: 'keep-alive', + accept: '*/*', + 'accept-language': '*', + 'sec-fetch-mode': 'cors', + 'user-agent': 'undici', + 'accept-encoding': 'gzip, deflate', + }, + url: '/rest/maps?_format=json', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Sun, 24 Sep 2023 13:46:37 GMT', + ], + server: [ + 'Apache', + ], + 'cache-control': [ + 'max-age=86400, public', + ], + 'x-drupal-dynamic-cache': [ + 'MISS', + ], + 'x-ua-compatible': [ + 'IE=edge', + ], + 'content-language': [ + 'en', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'x-frame-options': [ + 'SAMEORIGIN', + ], + expires: [ + 'Sun, 19 Nov 1978 05:00:00 GMT', + ], + vary: [ + 'Cookie', + ], + 'x-generator': [ + 'Drupal 9 (https://www.drupal.org)', + ], + 'x-drupal-cache': [ + 'HIT', + ], + 'strict-transport-security': [ + 'max-age=31536000;', + ], + 'last-modified': [ + 'Sun, 24 Sep 2023 13:46:37 GMT', + ], + etag: [ + '"1695563197"', + ], + 'access-control-allow-origin': [ + '*', + ], + 'access-control-allow-headers': [ + 'origin, x-requested-with, content-type', + ], + 'access-control-allow-methods': [ + 'GET', + ], + 'keep-alive': [ + 'timeout=5, max=100', + ], + connection: [ + 'Keep-Alive', + ], + 'transfer-encoding': [ + 'chunked', + ], + 'content-type': [ + 'application/json', + ], + }, + body: [ + { + nid: [ + { + value: 56, + }, + ], + uuid: [ + { + value: 'f3241935-2d10-4f11-b21c-344a96eaa0fa', + }, + ], + vid: [ + { + value: 59, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-25T22:21:21+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + title: [ + { + value: 'Art Galleries', + }, + ], + created: [ + { + value: '2017-07-25T22:19:35+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:51:32+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Art Galleries | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Art Galleries.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/art-galleries', + pid: 273, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1I_T4Pgx6HgPo2NDP41e_k5eny8bnE29hHrZzl92VY1M/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/art-galleries/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/walkreed', + title: 'Walker Reed', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/art-galleries', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vTKrkaLfv4Ka30CDW0_Fu1DH1NGOWT7eWAbdQHETVqy2n7Kdv9jFKDXq-DptwHqbP65ljnPNLQMv4lr/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'art-galleries', + }, + ], + field_zoom_level: [ + { + value: 14, + }, + ], + }, + { + nid: [ + { + value: 57, + }, + ], + uuid: [ + { + value: '57de3af5-bbf9-4eb1-b63f-99f3ca316e39', + }, + ], + vid: [ + { + value: 60, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:16:26+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Bike Racks', + }, + ], + created: [ + { + value: '2017-07-26T16:16:26+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:52:12+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Bike Racks | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Bike Racks.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/bike-racks', + pid: 274, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1mKUI91zlyjv0R21x31npeMHIhTS10KLgjZe08g6qLDI/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/bike-racks/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/ahmeloc/gville-map-layer-bike-racks', + title: 'Amy Lochridge', + options: [], + }, + { + uri: 'https://github.com/MarkHetu/', + title: 'Mark Hetu', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/bike-racks', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vSpXqV48UWCKsogvCa951UhA5Bix97grIjBZOL94GAIof8xvDfrk-QJT2KTnK9BELr0jvMjXbsFCvGO/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'bike-racks', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 58, + }, + ], + uuid: [ + { + value: '3b37d05d-1523-42ba-ae60-cc0cda391bee', + }, + ], + vid: [ + { + value: 61, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:20:02+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Cemeteries', + }, + ], + created: [ + { + value: '2017-07-26T16:20:02+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:54:24+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Cemeteries | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Cemeteries.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/cemeteries', + pid: 276, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8571, + }, + ], + field_center_point_longitude: [ + { + value: -82.4021, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1vwLrBo6Fa34Iizj26JYOZLrPzPw5FIsAqUuGXRzgELI/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/cemeteries/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/ealdthryth', + title: 'Christine Grewcock', + options: [], + }, + { + uri: 'https://github.com/Olga-Pakhotina', + title: 'Olga Pakhotina', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/cemeteries/', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vSPD7aCIxjyBdM8MHkWfoDfcr4fue4AyTGXHRVj7VyLEZjScFPx6Ei-4MfALMhYmh6amF7oGl4pT9wz/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'cemeteries', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 60, + }, + ], + uuid: [ + { + value: '934a5b66-c358-4056-a040-33b1a097b99a', + }, + ], + vid: [ + { + value: 63, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:23:47+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'City Halls', + }, + ], + created: [ + { + value: '2017-07-26T16:23:47+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:53:45+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'City Halls | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of City Halls.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/city-halls', + pid: 61, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1LnJK0H_A1cSST5LZOzdtQ5e7JBmrzIpdf9jsX27TSkk/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/city-halls/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/Ofrazzle', + title: 'Octavia Frazile', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/city-halls', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vTJMwdt1oo-2AKqK_d8DZmpPvYxXPdmUB_J0x2GECQm6cTEdXopZE9mZmAds-GlswaltogoRzNYp3YR/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'city-halls', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 61, + }, + ], + uuid: [ + { + value: '8c00b8fe-d096-4371-8f8a-9f91ff803aa3', + }, + ], + vid: [ + { + value: 64, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:24:51+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'City Parks - Greenville', + }, + ], + created: [ + { + value: '2017-07-26T16:24:51+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:55:50+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'City Parks - Greenville | Open Data in Greenville SC', + description: 'A community-curated map layer of city parks in Greenville, SC.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/city-parks-greenville', + pid: 277, + langcode: 'en', + }, + ], + body: [ + { + value: '

City of Greenville parks polygon shape data is also available.

\r\n', + format: 'basic_html', + processed: '

City of Greenville parks polygon shape data is also available.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1951efVrvM3QLYgFIVAwoDCm51ckoh68pvCiHq8lI4P8/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/city-parks-greenville/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/Jaaron0606', + title: 'James Aaron', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/city-parks-greenville', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: { + description: 'A community-curated map layer of city parks in Greenville, SC.', + }, + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vQ-hYlKBjoMXCKPOO3g6bJJIiOsOL3Qr0Q3OmKQH_Cv6v-g3P6_gp8ltIThYNtgwW6pzYIOveFOT1vR/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'city-parks-greenville', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 63, + }, + ], + uuid: [ + { + value: 'b28d0c0b-c026-4a34-9b88-0f7505e0ee52', + }, + ], + vid: [ + { + value: 66, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:27:42+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Community Gardens', + }, + ], + created: [ + { + value: '2017-07-26T16:27:42+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:56:14+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Community Gardens | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Community Gardens.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/community-gardens', + pid: 279, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1tkuJ219nwbgEqDzgMTBPxz49Va_natnKYUgiZhpEfwE/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/community-gardens/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/leojnewman', + title: 'Leo Newman', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/community-gardens', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vR-l37P7cL0bwRpIBML7vmwxKyE-zp3k9peCR7t0mXKQ9iF92DFiO7pmT8dwqGKR2XMc2zxx7_olyeH/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'community-gardens', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 64, + }, + ], + uuid: [ + { + value: '3be62b02-4285-458b-8bc9-67abf0821855', + }, + ], + vid: [ + { + value: 67, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:28:43+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Co-working Spaces', + }, + ], + created: [ + { + value: '2017-07-26T16:28:43+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:56:05+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Co-working Spaces | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Co-working Spaces.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/co-working-spaces', + pid: 278, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1DaFbYMFFjldWLinzJJDr1URwF-5bP-JGJVPxpn_pRZo/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/coworking-spaces/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/bbrading', + title: 'Brett Brading', + options: [], + }, + { + uri: 'https://github.com/allella', + title: 'Jim Ciallella', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/coworking-spaces', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vQoc3Mwbltb3EqVRiY8LVEOlZt4826EeeUd97UVy4zZbdOB_uWLlobeY4W96ffYcxwysTUCAv6-jwqA/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'coworking-spaces', + }, + ], + field_zoom_level: [ + { + value: 12, + }, + ], + }, + { + nid: [ + { + value: 65, + }, + ], + uuid: [ + { + value: 'c8837836-e1cb-4d8f-9339-61502557337a', + }, + ], + vid: [ + { + value: 68, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:29:40+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Dog Parks', + }, + ], + created: [ + { + value: '2017-07-26T16:29:40+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:58:53+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Dog Parks | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Dog Parks.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/dog-parks', + pid: 281, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1erYwUIJAkpzlYrWmVP3VMyJH1zvcqkzUJNoyjcmjFi8/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/dog-parks/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/sparklebunny', + title: 'JeriBeth', + options: [], + }, + { + uri: 'https://github.com/schemmelsc/dog-parks', + title: 'Sarah Bonner', + options: [], + }, + { + uri: 'https://github.com/bonvisuals/dog-parks', + title: 'David Bonner', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/dog-parks', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vSRuCeQU27JewUljD1McwCo5WKRLVxCSe1OWkjYW8khCca_j-y5DeEl07DUvNj7xY4Tn8mb3zOz-6yG/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'dog-parks', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 67, + }, + ], + uuid: [ + { + value: '8dc70c6f-7758-4a91-bb0c-bd91b2be95a3', + }, + ], + vid: [ + { + value: 70, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:31:58+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Breweries', + }, + ], + created: [ + { + value: '2017-07-26T16:31:58+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-04-19T20:23:05+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Map of Greenville, SC Area Breweries', + description: 'A community-curated map of Greenville, SC breweries, including notes for dog-friendly, food on-premises, and proximity to the Swamp Rabbit Trail.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/breweries', + pid: 68, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1t9Repy2rFBKdXIRVgt-6JtPZeo8TO8TrsAK7qSV9MvU/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/breweries/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/allella', + title: 'Jim Ciallella', + options: [], + }, + { + uri: 'https://data.openupstate.org/map/breweries', + title: 'Ray Breneman', + options: [], + }, + { + uri: 'https://github.com/sparklebunny', + title: 'JeriBeth', + options: [], + }, + { + uri: 'https://github.com/terrhorn', + title: 'Terry Horner', + options: [], + }, + { + uri: 'https://github.com/Unicorned/', + title: 'Lauren DeLisle', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/breweries', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: { + description: 'A community-curated map of Greenville, SC breweries, including notes for dog-friendly, food on-premises, and proximity to the Swamp Rabbit Trail.', + title: 'Map of Greenville, SC Area Breweries', + }, + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vST-ldMZkKY6xaeRj8XfLrUUy0qNyMPI6aGvsgToEPJMsusmT8o_7pNg9WctnIENvdXUrFBTiPRVdJP/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'breweries', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 68, + }, + ], + uuid: [ + { + value: '66809259-31ee-4c98-8085-9ef4b5ef0b2e', + }, + ], + vid: [ + { + value: 71, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:32:45+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Dog-friendly Restaurants and Bars', + }, + ], + created: [ + { + value: '2017-07-26T16:32:45+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:58:57+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Dog-friendly Restaurants and Bars | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Dog-friendly Restaurants and Bars.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/dog-friendly-restaurants-and-bars', + pid: 283, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1erYwUIJAkpzlYrWmVP3VMyJH1zvcqkzUJNoyjcmjFi8/edit#gid=421615217', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/dog-friendly-restaurants-and-bars/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/carusova', + title: 'Veronica Caruso', + options: [], + }, + { + uri: 'https://github.com/sparklebunny', + title: 'JeriBeth', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/dog-friendly-restaurants-and-bars', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vSRuCeQU27JewUljD1McwCo5WKRLVxCSe1OWkjYW8khCca_j-y5DeEl07DUvNj7xY4Tn8mb3zOz-6yG/pub?gid=421615217&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'dog-friendly-restaurants-and-bars', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 69, + }, + ], + uuid: [ + { + value: '8944cc06-3d00-4a3f-b7b2-78c3854678a7', + }, + ], + vid: [ + { + value: 72, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:34:27+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Dog-friendly Retail Stores', + }, + ], + created: [ + { + value: '2017-07-26T16:34:27+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:58:59+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Dog-friendly Retail Stores | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Dog-friendly Retail Stores.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/dog-friendly-retail-stores', + pid: 284, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1erYwUIJAkpzlYrWmVP3VMyJH1zvcqkzUJNoyjcmjFi8/edit#gid=630384392', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/dog-friendly-retail-stores/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/sparklebunny', + title: 'JeriBeth', + options: [], + }, + { + uri: 'https://github.com/cacoding/', + title: 'Cassandra Aiken', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/dog-friendly-retail-stores', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vSRuCeQU27JewUljD1McwCo5WKRLVxCSe1OWkjYW8khCca_j-y5DeEl07DUvNj7xY4Tn8mb3zOz-6yG/pub?gid=630384392&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'dog-friendly-retail-stores', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 70, + }, + ], + uuid: [ + { + value: '2bc338da-f731-4fa9-86b0-017a7f08d04e', + }, + ], + vid: [ + { + value: 73, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:35:56+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Electric Vehicle Charging Stations', + }, + ], + created: [ + { + value: '2017-07-26T16:35:56+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:59:01+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Electric Vehicle Charging Stations | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Electric Vehicle Charging Stations.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/electric-vehicle-charging-stations', + pid: 285, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/13I5AzQt3L_QlFz4w8Z286OczId5IKBk6Bm56MpBAWO0/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/electric-vehicle-charging-stations/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/ses29680', + title: 'Stephen Silkowski', + options: [], + }, + { + uri: 'https://github.com/nine6era', + title: 'Bob Greene', + options: [], + }, + { + uri: 'http://codeforgreenville.org', + title: 'Code For Greenville', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/electric-vehicle-charging-stations', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vRZq5Fhtp7HJI9AKzaX9gZHGpfL3x4jyABYh94CP-4_0l3aJhLuPuTlYpkHdVUxCSRWgZGD7PrB6eGe/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'electric-vehicle-charging-stations', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 71, + }, + ], + uuid: [ + { + value: '20700192-b65d-422e-bddb-04da8083368f', + }, + ], + vid: [ + { + value: 74, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:36:45+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Farmers Markets', + }, + ], + created: [ + { + value: '2017-07-26T16:36:45+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:59:04+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Farmers Markets | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Farmers Markets.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/farmers-markets', + pid: 286, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1ab-CYPb7XbvAw_QXmxOLSyc8iM2jinheuZpqC_jfXpw/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/farmers-markets/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/vzambrano98', + title: 'Victoria Zambrano', + options: [], + }, + { + uri: 'https://github.com/cplklegg/', + title: 'Eugene McGrath', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/farmers-markets', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vReyGh7f77-BWo40hMH-xvfXy1nVXCCtsVnc0zQqecj3AMy-rjMEjL0FLmkNL9lkY94i3v3--QQrtYg/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'farmers-markets', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 72, + }, + ], + uuid: [ + { + value: 'd52df64e-da54-4a6d-846e-05f7348b0cb1', + }, + ], + vid: [ + { + value: 75, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:37:15+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Fishing Access Sites', + }, + ], + created: [ + { + value: '2017-07-26T16:37:15+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:59:06+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Fishing Access Sites | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Fishing Access Sites.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/fishing-access-sites', + pid: 287, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1-IM5QWsYCHv7Lm2y4yEHUbo3BfBKVPEpFor6g7t1V4M/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/fishing-access-sites/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/sweenz', + title: 'Chris Sweeney', + options: [], + }, + { + uri: 'https://github.com/Sln218/', + title: 'Samantha Ng', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/fishing-access-sites', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vT0cYu9iDFj0VCVlRcl1L8oqGjKyYF-WOtxzkdi8Y0a5UWgSNJBicnRriEPoJPTSoww_4m-kQmapO_5/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'fishing-access-sites', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 73, + }, + ], + uuid: [ + { + value: '885bb73e-71dc-48fc-88c7-5ff4e309904b', + }, + ], + vid: [ + { + value: 76, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:38:41+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Free Job Training Resources', + }, + ], + created: [ + { + value: '2017-07-26T16:38:41+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:59:10+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Free Job Training Resources | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Free Job Training Resources.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/free-job-training-resources', + pid: 74, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/14EGsgKzfnp4pJ4BBGgBrwWkt8dyTHhdOtvD4KanhOG8/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/free-job-training-resources/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/lizziemeeker', + title: 'Liz Meeker Murphy', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/free-job-training-resources', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vRuK2MSpV7GOGDHNO8VQolPATv0iP52JVBnGwm8A5MHtyq2lGb14V89ax1Gstk6k9EZhbwL9dU36hMM/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'free-job-training-resources', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 74, + }, + ], + uuid: [ + { + value: '760068a7-9271-4e18-8c63-0458a37b72f3', + }, + ], + vid: [ + { + value: 77, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:48:39+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Free Wi-Fi Hotspots', + }, + ], + created: [ + { + value: '2017-07-26T16:48:39+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2022-12-31T21:30:26+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Free Wi-Fi Hotspots | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Free Wi-Fi Hotspots.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/free-wi-fi-hotspots', + pid: 271, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://joinopenworks.com/r/wifi', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'https://joinopenworks.com/wifi/guest-wi-fi-google-spreadsheet-to-geojson.php', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/allella', + title: 'OpenWorks / Jim Ciallella', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'https://joinopenworks.com/wifi/', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vT4s0ss1d8wIgvge2C47n150yCa73gclQJaP4DUCyDaFCj1WNabX3Pb76Vc8kZLtvngWux4c8iyM7Ql/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'free-wi-fi-hotspots', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 76, + }, + ], + uuid: [ + { + value: '6fc5f3a3-1825-45f4-b004-72427583b887', + }, + ], + vid: [ + { + value: 79, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:55:34+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Greer Public Parking', + }, + ], + created: [ + { + value: '2017-07-26T16:55:34+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:01:37+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Greer Public Parking | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Greer Public Parking.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/greer-public-parking', + pid: 290, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1dyXOqN3Lx29eMIXTHcN0rnRgQLR-uSOuZ6TXUUPsCtM/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/greer-public-parking/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/ktmensing', + title: 'Kyle Mensing', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/greer-public-parking', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vQfiXdP11XZjgsOAYbl3I3fq81AcKbNQ12Wqt5aYIO5FkZNG0SyLP8-MYKvHGKUAKoSPbkbaAXQ3QBt/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'greer-public-parking', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 77, + }, + ], + uuid: [ + { + value: 'cdb43743-4cd2-477d-be85-9a5f351375c4', + }, + ], + vid: [ + { + value: 80, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:56:07+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Schools - Greenville County', + }, + ], + created: [ + { + value: '2017-07-26T16:56:07+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-04-04T02:28:00+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Schools - Greenville County | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Schools - Greenville County.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/schools-greenville-county', + pid: 234, + langcode: 'en', + }, + ], + body: [ + { + value: '

Kudos to Lauren Hickey and Ingram Jones for past contributions.

\r\n', + format: 'basic_html', + processed: '

Kudos to Lauren Hickey and Ingram Jones for past contributions.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/schools-greenville-county/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/schools-greenville-county', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/15', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'schools-greenville-county', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 78, + }, + ], + uuid: [ + { + value: '631bae93-c82d-41ff-91f9-7b2d8de011d6', + }, + ], + vid: [ + { + value: 81, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:56:46+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Historic Sites (excluding Mills) ', + }, + ], + created: [ + { + value: '2017-07-26T16:56:46+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:01:38+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Historic Sites (excluding Mills) | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Historic Sites (excluding Mills) .', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/historic-sites', + pid: 79, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/13MXqtFxOpuRAuXp5yBFgezarV0S8eQ01Kbs2Ed_rtjE/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/historic-sites/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/sfunk3', + title: 'Sarah Funk', + options: [], + }, + { + uri: 'https://github.com/everydaynerd', + title: 'Daniel Burgess', + options: [], + }, + { + uri: 'http://www.codeforgreenville.org', + title: 'Code For Greenville', + options: [], + }, + { + uri: 'https://github.com/sraines', + title: 'Shanna Raines', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/historic-sites', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vQ3USDKomUZ8eTvIAE88UauZLuIIden2SvOOx2OiZNy0qCFCe29El7p6ElXp9H_ZfxhsoLDutziM1bv/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'historic-sites', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 79, + }, + ], + uuid: [ + { + value: '30b53bfb-8927-4028-9acb-bb9ba2d36021', + }, + ], + vid: [ + { + value: 82, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:57:31+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Historical African-American Churches', + }, + ], + created: [ + { + value: '2017-07-26T16:57:31+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:01:40+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Historical African-American Churches | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Historical African-American Churches.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/historical-african-american-churches', + pid: 291, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1EBFOV7jx0iHirLFERo84nX3D4FQeG5_xcvx6yjvAWug/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/historical-african-american-churches/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/jlew1914', + title: 'Justin Lewis', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/historical-african-american-churches', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vQjfeINfoDjUsQjiXuEOXPctuwbj_yKMn08gbti8KxmlMEBFquIMH3aiFwNM8rl1N5cMmgNb3FNyNhp/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'historical-african-american-churches', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 80, + }, + ], + uuid: [ + { + value: '61783bd2-8db0-4f0f-b7f5-fa60daf0cb23', + }, + ], + vid: [ + { + value: 83, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:57:57+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Libraries', + }, + ], + created: [ + { + value: '2017-07-26T16:57:57+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:01:44+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Libraries | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Libraries.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/libraries', + pid: 292, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1iy0ObdJWiJZl1CzII_9nXL_7YyRtz0mIxiOvKUKxJ-E/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/libraries/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/Brenascia', + title: 'Bridgette Jefferson', + options: [], + }, + { + uri: 'https://github.com/ealdthryth', + title: 'Christine Grewcock', + options: [], + }, + { + uri: 'https://github.com/melodyjng/', + title: 'Melody Ng', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/libraries', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vQKmOXURwyZ8dCdRYMix8h3PItdjwDSDfSI__9uxAMQXXt0uIakY3GWmRNqDj7uNHdLAoY7DBLTtiyK/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'libraries', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 81, + }, + ], + uuid: [ + { + value: 'e9189d69-97e3-42d7-b58f-4163888f6462', + }, + ], + vid: [ + { + value: 84, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T16:58:24+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Live Theatres', + }, + ], + created: [ + { + value: '2017-07-26T16:58:24+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:01:46+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Live Theatres | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Live Theatres.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/live-theatres', + pid: 293, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1Ta34foucT758H2YxjgQrmvLh5GycqfPhyAVVztObO-o/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/live-theatres/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/thathillboy', + title: 'Stephen Hill', + options: [], + }, + { + uri: 'https://github.com/theklopex', + title: 'Eric Gosnell', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/live-theatres', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vT3UCXb_AWBzugzsiDROwLx5fMfGZOAc9b-3crH6PsVd86cOaEJg_QTD1-skkg4Oy83A8CD5SFwdTvc/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'live-theatres', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 84, + }, + ], + uuid: [ + { + value: '01922e5c-bf4b-48f8-a514-13a1389342e4', + }, + ], + vid: [ + { + value: 87, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T23:52:09+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Mice on Main', + }, + ], + created: [ + { + value: '2017-07-26T23:52:09+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:01:50+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Mice on Main | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Mice on Main.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/mice-on-main', + pid: 85, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1tPNBu79UyIv-MablYqt5y1sBv-x8Fg-3i3zH_BUJQz8/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/mice-on-main/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/magoun', + title: 'Creighton Magoun', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/mice-on-main', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vT32YJ7MwtDvSOPfPUordCxPA89Gej3rOL6QIiyBDotcNlSAztBFgoSjib0a4QylfDJ0AChirtvHtUB/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'mice-on-main', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 85, + }, + ], + uuid: [ + { + value: '3ddb9867-f37e-46f3-87bc-bbf687849f5e', + }, + ], + vid: [ + { + value: 88, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T23:53:05+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Music Venues', + }, + ], + created: [ + { + value: '2017-07-26T23:53:05+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:01:52+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Music Venues | Open Data in Greenville SC', + description: 'View and Contribute to the real-time, community-curated map layer of music venues in Greenville South Carolina.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/music-venues', + pid: 86, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/17PUucZ1jPej4WGSlVzsLtvTJ1e8hz3KliAuQx84bdqc/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/music-venues/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/Juicysmo', + title: 'Julie Brett', + options: [], + }, + { + uri: 'https://github.com/jeremiahadkins/', + title: 'Jeremiah Adkins', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/music-venues', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: { + description: 'View and Contribute to the real-time, community-curated map layer of music venues in Greenville South Carolina.', + }, + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vTMJ8himJKPyyM00Vvhdp8na3kFgIrjS3qVhWcUCQNPMFqOTZJKjSiBP3K2pw3qnBn7_Lh42NaaiyCF/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'music-venues', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 87, + }, + ], + uuid: [ + { + value: '477e10ea-b087-4089-8bbf-909d7021b6dc', + }, + ], + vid: [ + { + value: 90, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T23:54:38+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Organic Farms', + }, + ], + created: [ + { + value: '2017-07-26T23:54:38+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:01:55+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Organic Farms | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Organic Farms.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/organic-farms', + pid: 88, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1lFl4bfBdm7BrTMaGlpDab3OSILXw2MJhgqAhEVrNwpY/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/organic-farms/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/shelbymcohen', + title: 'Shelby Cohen', + options: [], + }, + { + uri: 'https://github.com/GBClemson/', + title: 'Greg Bopp', + options: [], + }, + { + uri: 'https://github.com/artshra/', + title: 'Shradha Gupta', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/organic-farms', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vRc_qf5ZlCcEKOPJW7x72TUaaYBIepGJQKPCb44CuqYTlzaLjVKpYjoBrsWqFkgOr1FzX2ZFxEQgjMu/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'organic-farms', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 88, + }, + ], + uuid: [ + { + value: '050d1e0f-5cf3-48c0-b661-fb4afa3fe599', + }, + ], + vid: [ + { + value: 91, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T23:55:07+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Parking Decks', + }, + ], + created: [ + { + value: '2017-07-26T23:55:07+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:08:33+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Parking Decks | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Parking Decks.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/parking-decks', + pid: 297, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1NGeKFnA7QilhqoILsbXAZL5r_cGoRWUmAUh4cudrCLk/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/parking-decks/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/BethanyWinston', + title: 'Bethany Winston', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/parking-decks', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vR6uddn7ajALJF5gCTZgfjXor1tJzHco9_dEhR1D9w5kpaj9oAe_yQaQtWcyaKm1Asrim2XNzWsF-jf/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'parking-decks', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 90, + }, + ], + uuid: [ + { + value: '98a8ab41-5907-45c0-b2ed-c33738b37f87', + }, + ], + vid: [ + { + value: 93, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T23:57:06+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Playgrounds', + }, + ], + created: [ + { + value: '2017-07-26T23:57:06+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:08:24+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Playgrounds | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Playgrounds.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/playgrounds', + pid: 91, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1RzZv0V3E-FZ9zcNLJUdQOvy3MJ54iFPLG1G1ThIFIgA/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/playgrounds/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/jishaaa', + title: 'Jisha Govindan', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/playgrounds', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vRqa_Q3-vPOosnRdTAp031dspfdDDayptTwWuYPoeTxG5UGJYv0DCsOotsMk9_m47GVeR6HxFeGFJvS/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'playgrounds', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 91, + }, + ], + uuid: [ + { + value: '24bf9a58-9579-4371-ad37-13262b53878d', + }, + ], + vid: [ + { + value: 94, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T23:57:51+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Recreation Baseball Fields', + }, + ], + created: [ + { + value: '2017-07-26T23:57:51+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:08:00+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Recreation Baseball Fields | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Recreation Baseball Fields.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/recreation-baseball-fields', + pid: 294, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1fymQgEOv3wL97wavbUDRiTBJcN7smUl95KZmSw_D4oE/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/recreation-baseball-fields/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/ksiwod', + title: 'Katie Dowis', + options: [], + }, + { + uri: 'https://github.com/mercergirl1', + title: 'Jami Mercer', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/recreation-baseball-fields', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vSxdswfBgwRrjF_3QZKWtdBlwaaXSq-qfI-grVXh8ueVGquaFVbWy94AbQzAbZVMonKwzYBcnZGABmG/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'recreation-baseball-fields', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 92, + }, + ], + uuid: [ + { + value: '36484319-9f25-456d-b059-ef1f35c3e666', + }, + ], + vid: [ + { + value: 95, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-26T23:58:57+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Schools - Public International Baccalaureate Schools K-12', + }, + ], + created: [ + { + value: '2017-07-26T23:58:57+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:12:06+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Schools - Public International Baccalaureate Schools K-12 | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Schools - Public International Baccalaureate Schools K-12.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/schools-k12', + pid: 93, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1AMQRta_QrSBpDFVoBxbiQNMAWOr_BuNEOmvic2RTzwo/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/schools-ib-k12/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/meenasrik', + title: 'Meenakshi Radhakrishnan', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/schools-ib-k12', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vTI_TZ46FEZ5VRNwgz6LKCs8M6UCUpx9R9qDD9GryKfKVcBTPjdS0ABcqYGYzU96Af0rnHJ8RdEUdhh/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'schools-ib-k12', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 93, + }, + ], + uuid: [ + { + value: 'bef74444-9e85-47f0-ad28-95a83ae46fc5', + }, + ], + vid: [ + { + value: 96, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-27T00:00:10+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Recycling Locations', + }, + ], + created: [ + { + value: '2017-07-27T00:00:10+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-04-22T19:07:51+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Recycling Locations | Open Data in Greenville SC', + description: 'A community-curated map layer of recycling locations in downtown Greenville and Greenville County, SC.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/recycling-locations', + pid: 320, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above

\r\n\r\n

Previously, this map layer was built and maintained by the following SC Codes students but we found the county had more complete and informative data in their GIS system and we\'re able to automatically pull that data every day and re-syndicate it at our "GeoJSON Link".

\r\n\r\n

Kudos to Past Maintainers

\r\n\r\n

Maria Taborda

\r\n\r\n

Ina Grozeva

\r\n\r\n

Loren McClaflin

\r\n\r\n

Evan Beyerle

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above

\n\n

Previously, this map layer was built and maintained by the following SC Codes students but we found the county had more complete and informative data in their GIS system and we\'re able to automatically pull that data every day and re-syndicate it at our "GeoJSON Link".

\n\n

Kudos to Past Maintainers

\n\n

Maria Taborda

\n\n

Ina Grozeva

\n\n

Loren McClaflin

\n\n

Evan Beyerle

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/recycling-locations/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/recycling-locations', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 3, + target_type: 'taxonomy_term', + target_uuid: '206dafa4-c73e-4ae9-a68c-9f499d5bb7d3', + url: '/map-layers/sustainability', + }, + ], + field_meta_tags: [ + { + value: { + description: 'A community-curated map layer of recycling locations in downtown Greenville and Greenville County, SC.', + }, + }, + ], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/72', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'recycling-locations', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 94, + }, + ], + uuid: [ + { + value: '1a0b03f0-98a5-4afa-a954-087a9d768085', + }, + ], + vid: [ + { + value: 97, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-27T00:00:40+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Swamp Rabbit Trail - Parking', + }, + ], + created: [ + { + value: '2017-07-27T00:00:40+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:11:54+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Swamp Rabbit Trail - Parking | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Swamp Rabbit Trail - Parking.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/swamp-rabbit-trail-parking', + pid: 95, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1a8HHDBMiA7YNIKkCbaIYFMpWCuC1RxiI6uNxvS8uwc0/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/swamp-rabbit-trail-parking/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/FeroSoldato', + title: 'Leland James', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/swamp-rabbit-trail-parking', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vQ9QGNxIXubcItoY5CWakoD0IrFO1p2SuXztSLcvoTT1xMiKivQl321vMEn8OD4xoDfnTzNABVu92ZY/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'swamp-rabbit-trail-parking', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 95, + }, + ], + uuid: [ + { + value: 'b982d099-19ff-4f05-a5ad-3ca87834c454', + }, + ], + vid: [ + { + value: 98, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-27T00:01:21+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Swamp Rabbit Trail - Entrances', + }, + ], + created: [ + { + value: '2017-07-27T00:01:21+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:11:59+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Swamp Rabbit Trail - Entrances | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Swamp Rabbit Trail - Entrances.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/swamp-rabbit-trail-entrances', + pid: 299, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1TMAJJ9cwGPWWu66UN463_f-qYFudPJTjhd8LA6AMZro/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/swamp-rabbit-trail-entrances/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/levimonday', + title: 'Levi Monday', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/swamp-rabbit-trail-entrances', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vQ683u_VN6s1pAXFn_f6To_nGM2fFZyqts4Vcr0eqxteO6oYEs82P8xQPzB9tPUEfhldwN-G92Am6hz/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'swamp-rabbit-trail-entrances', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 96, + }, + ], + uuid: [ + { + value: '8964f477-fe7d-4997-b48f-20ef379c9096', + }, + ], + vid: [ + { + value: 99, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-27T00:01:49+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Swamp Rabbit Trail - Mile Markers', + }, + ], + created: [ + { + value: '2017-07-27T00:01:49+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:11:56+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Swamp Rabbit Trail - Mile Markers | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Swamp Rabbit Trail - Mile Markers.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/swamp-rabbit-trail-mile-markers', + pid: 298, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/11JO7kbN0IDqjBtjE_flH9_T1sknzhUxwLgNXrBk-qEI/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/swamp-rabbit-trail-mile-markers/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/cdhorn515', + title: 'Christina Cornell', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/swamp-rabbit-trail-mile-markers', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vQdPyKu69tItHHsmA-M4kcNzLTdnFJhzV4LFw-PEetmbbMEvVvHfFiwVzTT45t7-DrQxswrd9ktIUxF/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'swamp-rabbit-trail-mile-markers', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 97, + }, + ], + uuid: [ + { + value: 'c8588687-b63f-4313-abfc-546bf8c76d60', + }, + ], + vid: [ + { + value: 100, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-27T00:04:10+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Swamp Rabbit Trail - Path', + }, + ], + created: [ + { + value: '2017-07-27T00:04:10+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-07-09T05:18:09+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Swamp Rabbit Trail - Path | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Swamp Rabbit Trail - Path.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/swamp-rabbit-trail-path', + pid: 98, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/swamp-rabbit-trail-path/trail.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'http://greenvilleopenmap.info', + title: 'Mike Nice', + options: [], + }, + { + uri: 'https://www.openstreetmap.org', + title: 'OpenStreetMap Contributors', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/swamp-rabbit-trail-path', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'internal:/map/geojson/swamp-rabbit-trail-path/trail.geojson', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'swamp-rabbit-trail-path', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 98, + }, + ], + uuid: [ + { + value: 'd1408d27-0911-4025-9b83-e19e3bdedd6c', + }, + ], + vid: [ + { + value: 101, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-27T00:04:40+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Swamp Rabbit Trail - Water Fountains', + }, + ], + created: [ + { + value: '2017-07-27T00:04:40+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:12:19+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Swamp Rabbit Trail - Water Fountains | Open Data in Greenville SC', + description: 'A community-curated map layer of water fountains along the Swamp Rabbit Trail in Greenville, SC.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/swamp-rabbit-trail-water-fountains', + pid: 301, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1AiJo2DCtXnq9DlbgECUBuLFo3k2C7jIknzJSAD6w7Ds/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/swamp-rabbit-trail-water-fountains/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/calebmcquaid', + title: 'Caleb McQuaid', + options: [], + }, + { + uri: 'https://github.com/Andr3wB/', + title: 'Andrew Bieber', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/swamp-rabbit-trail-water-fountains', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: { + description: 'A community-curated map layer of water fountains along the Swamp Rabbit Trail in Greenville, SC. ', + }, + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vTaUgIjHCaEvsKai8xzUN3WdRn1AHNKkwiIsPhUOLfbxuj60o-x1n5_QSV6ZiDn7N2z469ICUET5PFr/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'swamp-rabbit-trail-water-fountains', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 99, + }, + ], + uuid: [ + { + value: 'd420f304-595a-46d1-a3e7-e19721913d44', + }, + ], + vid: [ + { + value: 102, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-27T00:06:01+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Swinging Benches/Benches in Falls Park', + }, + ], + created: [ + { + value: '2017-07-27T00:06:01+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:15:05+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Swinging Benches/Benches in Falls Park | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Swinging Benches/Benches in Falls Park.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/falls-park-benches', + pid: 100, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1Ip0bS8vgE4S91YSVJ_8zyxprU9JJjckTomyNl1fjJiI/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/falls-park-benches/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/EdensLamb', + title: 'Stephen Bennett', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/falls-park-benches', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vRf-qRQW7JsYSme6KNzBcDzbjsOvHu-C07YrBw8QAiS2hGPAmUPIF8NYEYwlcAkbYbrPyHcSE1SKhEZ/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'falls-park-benches', + }, + ], + field_zoom_level: [ + { + value: 15, + }, + ], + }, + { + nid: [ + { + value: 100, + }, + ], + uuid: [ + { + value: '942a8bc8-bcf3-4309-991f-992f22633afc', + }, + ], + vid: [ + { + value: 103, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-27T00:08:23+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Textile Mills, Past and Present', + }, + ], + created: [ + { + value: '2017-07-27T00:08:23+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:24:11+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Textile Mills, Past and Present | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Textile Mills, Past and Present.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/historic-textile-mills', + pid: 101, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1iJNAcWyBYDKaNIb9Xla0z3jVSP7syAVeNgISGyIv6bo/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/historic-textile-mills/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/davidgalloway', + title: 'David Galloway', + options: [], + }, + { + uri: 'https://github.com/allella', + title: 'Jim Ciallella', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/historic-textile-mills', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vQDtQgs5j5xOSqCFhpgO8TFNrRt3nBMs2BBhZ2-iR75OpnSOSB2TTnq7LGVzJMTF96w2TajYKpEp12I/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'historic-textile-mills', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 101, + }, + ], + uuid: [ + { + value: 'b033cd95-1959-44db-95b7-c0f03c79ea6e', + }, + ], + vid: [ + { + value: 104, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-27T00:09:02+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Tree Planting Sites', + }, + ], + created: [ + { + value: '2017-07-27T00:09:02+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:24:15+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Tree Planting Sites | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Tree Planting Sites.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/tree-planting-sites', + pid: 302, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1NfD6eZNs_tPJ3C69Eh9UaPSCebJ_n392ncDDf6U84e4/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/tree-planting-sites/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'http://www.treesupstate.org', + title: 'TreesUpstate', + options: [], + }, + { + uri: 'https://github.com/allella', + title: 'Jim Ciallella', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/tree-planting-sites', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1NfD6eZNs_tPJ3C69Eh9UaPSCebJ_n392ncDDf6U84e4/pub?output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'tree-planting-sites', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 102, + }, + ], + uuid: [ + { + value: '52e439c8-84ce-40b7-beb9-0999cf67d4d1', + }, + ], + vid: [ + { + value: 105, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-27T00:09:33+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Tent Campsites', + }, + ], + created: [ + { + value: '2017-07-27T00:09:33+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:25:29+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Tent Campsites | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Tent Campsites.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/tent-camping', + pid: 103, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1rhpHqZwYDJnc9gmluM-D_He4lPgLSLfXKE2dWSO86qM/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/tent-camping/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/hollyv04', + title: 'Holly Vanderwal', + options: [], + }, + { + uri: 'https://github.com/garrison44/', + title: 'Taylor Garrison', + options: [], + }, + { + uri: 'https://github.com/MattAHarvey/', + title: 'Matt Harvey', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/tent-camping', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vR5m7nqVqzj5GIECDEk6o0CaokxIMFTdQRe0JJj9-UpgjOWvpmODEW8IyZLZciINoTIQR4gH49wb50c/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'tent-camping', + }, + ], + field_zoom_level: [ + { + value: 7, + }, + ], + }, + { + nid: [ + { + value: 103, + }, + ], + uuid: [ + { + value: '1a19a5f6-33a0-4193-8fa9-609fcc1389b2', + }, + ], + vid: [ + { + value: 106, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-27T00:11:41+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Walking Trails', + }, + ], + created: [ + { + value: '2017-07-27T00:11:41+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:24:21+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Walking Trails | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Walking Trails.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/walking-trails', + pid: 104, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1AgMhG8WcG6owi3_4Hyy0IsxYtzKeqnPtZeaMx4ZMQS4/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/walking-trails/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/jenrobert', + title: 'Jen Robert', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/walking-trails', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vR3pRuBnTdMvKXa2VR9F75To3hsRwdA_Cx3TW83iSpBYGfA_b0U9acmymfJt9SNKyJWnDRtoNCh7LwB/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'walking-trails', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 104, + }, + ], + uuid: [ + { + value: '28136096-c1cb-4ad0-9d9e-3e0cb32a043e', + }, + ], + vid: [ + { + value: 107, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-27T00:12:06+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Wall Murals', + }, + ], + created: [ + { + value: '2017-07-27T00:12:06+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:24:26+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Wall Murals | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Wall Murals.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/wall-murals', + pid: 303, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1qId9FbjK5gQ71QVbLO705EBAigJn6rrg61i6Ho3GnJg/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/wall-murals/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/kbarbs', + title: 'Kristen Barbour', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/wall-murals', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vSIjT2SDpW4RHbG4eGWp0HGoAhhQQzQDyMNXMBSGFfSJG4WUCqi7JzgRY3mRKQB4rAduv7rKBZW3QsE/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'wall-murals', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 105, + }, + ], + uuid: [ + { + value: '9bd19699-1cd5-47d1-8f2d-76ce81e7572d', + }, + ], + vid: [ + { + value: 108, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-27T00:12:56+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 649, + target_type: 'user', + target_uuid: 'a9cd1191-97fe-4eba-82ea-a25d4653efeb', + url: '/yall/649', + }, + ], + title: [ + { + value: 'Waterfalls', + }, + ], + created: [ + { + value: '2017-07-27T00:12:56+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:24:30+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Waterfalls | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Waterfalls.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/waterfalls', + pid: 304, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1AZZeCh1tFc5-Lr80h60MuHqQ9uNmz5nKjWyiooEl7ik/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/waterfalls/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/tlgohs', + title: 'Tracy Gohs', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/waterfalls', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vSJK9CEVdHXUe5Y-efjZkwT1PLUMJSFkcL8I9EdiE7qTULxY2-fGECa3fBKwtabIcl2oPz5SgmJqIls/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'waterfalls', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 106, + }, + ], + uuid: [ + { + value: '9524828e-91be-483a-9226-1fd325fd5baa', + }, + ], + vid: [ + { + value: 109, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-07-31T22:04:19+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + title: [ + { + value: 'Solid Waste', + }, + ], + created: [ + { + value: '2017-07-31T22:01:51+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:12:03+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Solid Waste | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Solid Waste.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/solid-waste', + pid: 300, + langcode: 'en', + }, + ], + body: [ + { + value: '

Source: https://www.greenvillecounty.org/solid_waste/pdf/recycling_brochure.pdf

\r\n', + format: 'basic_html', + processed: '

Source: https://www.greenvillecounty.org/solid_waste/pdf/recycling_brochure.pdf

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1I4K4lQqYG6-0DZmPRzhTXVW3UkK0TY9u5SuhdSsOEuk/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/solid-waste/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/valkyrie1317', + title: 'Brittany Kay', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/solid-waste', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vSeizKfJH19G9ERDD3dSwMYdGu-0opP7iBYZ4w-exk5p619SMslBSZU9RUjX4vYjunu2RUn6dR0cye6/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'solid-waste', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 110, + }, + ], + uuid: [ + { + value: '956fb65d-1d1c-43e9-9a91-ad7308960960', + }, + ], + vid: [ + { + value: 113, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-11-14T23:36:59+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + title: [ + { + value: 'Public Running Tracks', + }, + ], + created: [ + { + value: '2017-11-14T23:35:17+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:08:13+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Public Running Tracks | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Public Running Tracks.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/public-running-tracks', + pid: 296, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1rjmfAovhgQf0TTjIkQYTAGCHevH3HmkZ-jhEzdcK2UE/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/public-running-tracks/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/johnchristmas/', + title: 'John Christmas', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/public-running-tracks', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vQzIlbDRng8EkU5q9E-KgRyHjI4NPS8r2a6rICi9OoRLq_hdFHOsrCAP-FjMnAGpsL58lTvWeR_wLvp/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'public-running-tracks', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 111, + }, + ], + uuid: [ + { + value: '8d995400-570d-4ad6-a9df-f3c11ebe6279', + }, + ], + vid: [ + { + value: 114, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-11-14T23:42:46+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + title: [ + { + value: 'Quilting Quilds', + }, + ], + created: [ + { + value: '2017-11-14T23:41:28+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:08:07+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Quilting Quilds | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Quilting Quilds.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/quilting-quilds', + pid: 295, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1KwzIKQAU9U_8jWFar3lTr3UXI-5sMk8RxHQzwX0m0ik/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/quilting-guilds/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/embee3/', + title: 'Michele Blake', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/quilting-guilds', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vSF5lA-LjJk8za4vH4HOdIZD8tSwey7GcXjl6mgxRxP5ikFY77ZE44g2XdFU0aWodxeBC_8c4e-VvUS/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'quilting-guilds', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 112, + }, + ], + uuid: [ + { + value: '1d6498e1-b5e6-4f7f-8bb0-a31d5857cc54', + }, + ], + vid: [ + { + value: 115, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-11-15T00:52:05+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + title: [ + { + value: 'Go Karts, Mini Golf, and Arcades', + }, + ], + created: [ + { + value: '2017-11-15T00:50:14+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T02:01:35+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Go Karts, Mini Golf, and Arcades | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Go Karts, Mini Golf, and Arcades in the Greenville and Spartanburg, SC area.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/go-karts-mini-golf-and-arcades', + pid: 289, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/147t1ogz8GpSclepZcNvtbKYspVmeSDTDUolmjj7JIQg/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/go-karts-mini-golf-arcades/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/BamBno', + title: 'Brendon Norris', + options: [], + }, + { + uri: 'https://github.com/Tylercarissa/', + title: 'Tyler Kipp', + options: [], + }, + { + uri: 'https://github.com/nathanmeade', + title: 'Nathan Meade', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/go-karts-mini-golf-arcades', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: { + description: 'A real-time, community-curated map layer of [node:title] in the Greenville and Spartanburg, SC area.', + }, + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vRktaLzzMBH-8yxIkOgxPzIsuLiwV2pkUFmQFPdc3F31Oh-NvjRQk8-bhgrOuXLuyWUTGcFknyi1IT2/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'go-karts-mini-golf-arcades', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 114, + }, + ], + uuid: [ + { + value: 'ce6acac7-5e5d-4bbf-be36-b9c2cb660256', + }, + ], + vid: [ + { + value: 117, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2017-12-04T01:48:15+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + title: [ + { + value: 'Dog Waste Bags', + }, + ], + created: [ + { + value: '2017-12-04T01:45:32+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:58:55+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Dog Waste Bags | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Dog Waste Bags.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/dog-waste-bags', + pid: 282, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1INIsH3eFjLF71oB7rO0uocwt2LksmBgXCah5ZyDtQ1E/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/dog-waste-bags/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/LHewlett46', + title: 'LaVell Hewlett', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/dog-waste-bags', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vTdjew6JPiwkEcP1YU7J5Iy1AFOewt37QJlnLtysCEnr3kKchouqjMq1EYvpD6BJVPei8Bj-cKqETkf/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'dog-waste-bags', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 120, + }, + ], + uuid: [ + { + value: 'a73c5019-1188-4c94-a961-edd1bbe26e2a', + }, + ], + vid: [ + { + value: 123, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2018-03-26T04:28:50+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + title: [ + { + value: 'Public Restrooms - Downtown', + }, + ], + created: [ + { + value: '2018-03-26T04:24:32+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2018-11-10T22:34:58+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Public Restrooms - Downtown | Open Data in Greenville SC', + description: 'A community-curated map layer of public bathrooms / restrooms in downtown Greenville, SC.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/public-restrooms-downtown', + pid: 133, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1oC8dSKe8hiySHb7YY-tfaTXi8o-CNdNiACr1ZzLE_DE/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/public-restrooms-downtown/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/gracekmosley/', + title: 'Grace Mosley', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/public-restrooms-downtown/', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: { + description: 'A community-curated map layer of public bathrooms / restrooms in downtown Greenville, SC.', + }, + }, + ], + field_raw_data_link: [], + field_slug: [ + { + value: 'public-restrooms-downtown', + }, + ], + field_zoom_level: [ + { + value: 16, + }, + ], + }, + { + nid: [ + { + value: 121, + }, + ], + uuid: [ + { + value: 'c7c31b71-cc1d-4d70-b3d0-93ba52db7b09', + }, + ], + vid: [ + { + value: 124, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2018-03-26T05:00:31+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + title: [ + { + value: 'Recreation Basketball Courts', + }, + ], + created: [ + { + value: '2018-03-26T04:59:01+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2018-11-10T22:54:42+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Recreation Basketball Courts | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Recreation Basketball Courts.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/recreation-basketball-courts', + pid: 134, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1t-wcRWt43IZBzf72fN7Fjt6oEzFzvhc6E2j-Y3e8uFU/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/recreation-basketball-courts/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/danieltapp/', + title: 'Daniel Tapp', + options: [], + }, + { + uri: 'https://github.com/thgr8rs', + title: 'Robert Sullivan Jr.', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/recreation-basketball-courts/', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vQyjOJE6cTXFRB7kpc-FOcTWjHnBRE26d7QaW4jUDOxHKPx80CvAetEfO8Pln4bQWA01WoBQCvZoY-J/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'recreation-basketball-courts', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 123, + }, + ], + uuid: [ + { + value: '6e7790f8-997d-4d9f-9e00-397ebe0d7a12', + }, + ], + vid: [ + { + value: 126, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2018-04-08T15:13:41+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + title: [ + { + value: 'Swimming Pools', + }, + ], + created: [ + { + value: '2018-04-08T15:10:52+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2018-11-11T02:06:46+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Swimming Pools | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Swimming Pools.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/swimming-pools', + pid: 137, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1ly_gdXfo6QKCgDbMFKH9RpjsAIYI4p9Rt2AL0a8hYWw/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/swimming-pools/geojson.php', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/sagapato/', + title: 'Sandra Fuller', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/swimming-pools/', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vS0D1uuI8TlSZIEOC_7neMD-jr5m4j487fblOyXW9TullNZs5JAWQFfI0Vu7qA18p_tio3_-Evg9FPe/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'swimming-pools', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 124, + }, + ], + uuid: [ + { + value: '51e1cef5-7ca0-4a0e-8317-f2f7c311e3cc', + }, + ], + vid: [ + { + value: 127, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2018-04-09T22:44:35+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + title: [ + { + value: 'Roller Skating and Skateboarding', + }, + ], + created: [ + { + value: '2018-04-09T22:42:50+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2018-11-10T23:02:59+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Roller Skating and Skateboarding | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Roller Skating and Skateboarding.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/roller-skating-and-skateboarding', + pid: 138, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1PD8UTHiHGR9g5aFlVYxh2KjNkfhx_IS9orsjIdhT72g/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/roller-skating-and-skateboarding/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/pa822/', + title: 'Prashant Patel', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/roller-skating-and-skateboarding/', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vSwx4NugkGvPmRhqh8JjYf6KnqLHWvf4n2FcAlpN5yeNM-ZxVK_3hIMwEztQjPDsA1S1QJiBKuaDbZZ/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'roller-skating-and-skateboarding', + }, + ], + field_zoom_level: [ + { + value: 12, + }, + ], + }, + { + nid: [ + { + value: 125, + }, + ], + uuid: [ + { + value: 'dd4accce-2533-4a3b-8a34-524a69188962', + }, + ], + vid: [ + { + value: 128, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2018-04-09T23:12:15+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + title: [ + { + value: 'City Parks - Greer', + }, + ], + created: [ + { + value: '2018-04-09T23:10:29+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:56:35+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'City Parks - Greer | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of City Parks - Greer.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/city-parks-greer', + pid: 280, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.9388, + }, + ], + field_center_point_longitude: [ + { + value: -82.2272, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/12DtmCKVpTkEkEWL_EBPYUYxQnVu-nXxLnr8BgRTLQ8Y/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/city-parks-greer/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/assete/', + title: 'Aissatou Ndiaye', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/city-parks-greer/', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vT3E-BsM0m1UhTx1hVBeWg5uzSPSWmhjp7r3lRkIyATGkcKQMhbVgyGX9mGmrK9WyYIyjPje9L6XXVs/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'city-parks-greer', + }, + ], + field_zoom_level: [ + { + value: 12, + }, + ], + }, + { + nid: [ + { + value: 126, + }, + ], + uuid: [ + { + value: '38c35b77-02cd-44d6-b901-022ccd05072b', + }, + ], + vid: [ + { + value: 129, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2018-05-14T03:52:02+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 1, + target_type: 'user', + target_uuid: 'cccc9686-695d-412c-8b00-c7e3b4f0f828', + url: '/yall/1', + }, + ], + title: [ + { + value: 'Foothills Trail Access', + }, + ], + created: [ + { + value: '2018-05-14T03:50:59+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-01-01T01:59:08+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Foothills Trail Access | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Foothills Trail Access.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/foothills-trail-access', + pid: 288, + langcode: 'en', + }, + ], + body: [], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/1saMpVXFboAkR-oDLAhd7fmzDOK75hsjPQJKmsKrZJsw/edit#gid=0', + title: '', + options: [], + }, + ], + field_geojson_link: [ + { + uri: 'internal:/map/geojson/foothills-trail-access/', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://github.com/michael-rooney/', + title: 'Michael Rooney', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/foothills-trail-access', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [ + { + value: [], + }, + ], + field_raw_data_link: [ + { + uri: 'https://docs.google.com/spreadsheets/d/e/2PACX-1vT4HjlIh3KtRlWEImCUtONHbT97wWBG2uolI8csEqthWJPbN-fkLAEe--sgxHcCTW4sWCaXdLRJdZA8/pub?gid=0&single=true&output=csv', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'foothills-trail-access', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 136, + }, + ], + uuid: [ + { + value: '58cbb23b-912a-43d0-a5a7-ddcf60be0287', + }, + ], + vid: [ + { + value: 139, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T19:34:15+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + title: [ + { + value: 'Adult Day Care', + }, + ], + created: [ + { + value: '2020-09-12T19:34:15+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2023-04-22T19:12:03+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Adult Day Care | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Adult Day Care.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/adult-day-care', + pid: 321, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is now sourced in real-time from the Greenville County GIS API and re-syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is now sourced in real-time from the Greenville County GIS API and re-syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/adult-day-care/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/adult-day-care', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 7, + target_type: 'taxonomy_term', + target_uuid: '8cd1be96-ba07-430d-b3b9-d9b62a66030d', + url: '/map-layers/elderly', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/17', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'adult-day-care', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 137, + }, + ], + uuid: [ + { + value: '8be267a0-22d5-48f6-ae32-0801f2755118', + }, + ], + vid: [ + { + value: 140, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T19:39:57+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + title: [ + { + value: 'Child Care', + }, + ], + created: [ + { + value: '2020-09-12T19:33:43+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T21:35:27+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Child Care | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Child Care.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/child-care', + pid: 213, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is now sourced in real-time from the Greenville County GIS API and re-syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is now sourced in real-time from the Greenville County GIS API and re-syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/child-care/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/child-care', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 4, + target_type: 'taxonomy_term', + target_uuid: '2184801c-60f8-45ca-8c50-610398f1526b', + url: '/map-layers/children-parenting', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/1', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'child-care', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 138, + }, + ], + uuid: [ + { + value: '0ec3ffc2-5677-454d-9042-453526cf6599', + }, + ], + vid: [ + { + value: 141, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T19:40:14+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + title: [ + { + value: 'Assisted Living Facilities', + }, + ], + created: [ + { + value: '2020-09-12T19:40:14+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T21:40:09+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Assisted Living Facilities | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Assisted Living Facilities.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/assisted-living-facilities', + pid: 216, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is now sourced in real-time from the Greenville County GIS API and re-syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is now sourced in real-time from the Greenville County GIS API and re-syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/assisted-living-facilities/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/assisted-living-facilities', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 7, + target_type: 'taxonomy_term', + target_uuid: '8cd1be96-ba07-430d-b3b9-d9b62a66030d', + url: '/map-layers/elderly', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/17', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'assisted-living-facilities', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 139, + }, + ], + uuid: [ + { + value: 'c4ea88f0-66af-4f81-a701-2eeb8ce9cabe', + }, + ], + vid: [ + { + value: 142, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T19:43:24+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + title: [ + { + value: 'After School Program', + }, + ], + created: [ + { + value: '2020-09-12T19:40:36+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T21:38:37+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'After School Program | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of After School Program.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/after-school-program', + pid: 215, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is now sourced in real-time from the Greenville County GIS API and re-syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is now sourced in real-time from the Greenville County GIS API and re-syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/after-school-program/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/after-school-program', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 4, + target_type: 'taxonomy_term', + target_uuid: '2184801c-60f8-45ca-8c50-610398f1526b', + url: '/map-layers/children-parenting', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/2', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'after-school-program', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 140, + }, + ], + uuid: [ + { + value: '1b0eab19-fd8e-4e50-be54-c70e434a092a', + }, + ], + vid: [ + { + value: 143, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T19:44:21+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + title: [ + { + value: 'Community Long Term Care', + }, + ], + created: [ + { + value: '2020-09-12T19:44:21+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T21:52:07+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Community Long Term Care | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Community Long Term Care.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/community-long-term-care', + pid: 217, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is now sourced in real-time from the Greenville County GIS API and re-syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is now sourced in real-time from the Greenville County GIS API and re-syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/community-long-term-care/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/community-long-term-care', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 7, + target_type: 'taxonomy_term', + target_uuid: '8cd1be96-ba07-430d-b3b9-d9b62a66030d', + url: '/map-layers/elderly', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/18', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'community-long-term-care', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 141, + }, + ], + uuid: [ + { + value: 'd1caec30-f7fa-49a4-8dcf-d6b58bba9284', + }, + ], + vid: [ + { + value: 144, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T19:48:34+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + title: [ + { + value: 'Hospice Facilities', + }, + ], + created: [ + { + value: '2020-09-12T19:48:34+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T22:09:56+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Hospice Facilities | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Hospice Facilities.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/hospice-facilities', + pid: 225, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/hospice-facilities/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/hospice-facilities', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 7, + target_type: 'taxonomy_term', + target_uuid: '8cd1be96-ba07-430d-b3b9-d9b62a66030d', + url: '/map-layers/elderly', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/19', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'hospice-facilities', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 142, + }, + ], + uuid: [ + { + value: 'a93cb8d9-6db8-4ce3-a7f6-f490ab28ae62', + }, + ], + vid: [ + { + value: 145, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T19:50:51+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + title: [ + { + value: 'Parenting', + }, + ], + created: [ + { + value: '2020-09-12T19:43:44+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T22:17:11+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Parenting | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Parenting.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/parenting', + pid: 230, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/parenting/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/parenting', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 4, + target_type: 'taxonomy_term', + target_uuid: '2184801c-60f8-45ca-8c50-610398f1526b', + url: '/map-layers/children-parenting', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/3', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'parenting', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 143, + }, + ], + uuid: [ + { + value: '0abfc5ec-0375-4e36-ad8c-ba0b52a1af61', + }, + ], + vid: [ + { + value: 146, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T19:51:13+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + title: [ + { + value: 'Hospice Programs', + }, + ], + created: [ + { + value: '2020-09-12T19:51:13+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T22:11:29+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Hospice Programs | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Hospice Programs.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/hospice-programs', + pid: 226, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/hospice-programs/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/hospice-programs', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 7, + target_type: 'taxonomy_term', + target_uuid: '8cd1be96-ba07-430d-b3b9-d9b62a66030d', + url: '/map-layers/elderly', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/20', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'hospice-programs', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 144, + }, + ], + uuid: [ + { + value: 'b2b49d48-1445-4497-8ed6-d90ec6378ef3', + }, + ], + vid: [ + { + value: 147, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T19:52:30+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + title: [ + { + value: 'Senior Action', + }, + ], + created: [ + { + value: '2020-09-12T19:52:30+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T22:54:52+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Senior Action | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Senior Action.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/senior-action', + pid: 235, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/senior-action/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/senior-action', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 7, + target_type: 'taxonomy_term', + target_uuid: '8cd1be96-ba07-430d-b3b9-d9b62a66030d', + url: '/map-layers/elderly', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/21', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'senior-action', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 145, + }, + ], + uuid: [ + { + value: '01546d3f-2c9f-40e2-b1c0-ff7f3390f4a6', + }, + ], + vid: [ + { + value: 148, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T19:53:00+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + title: [ + { + value: 'Volunteer Income Tax Assistance', + }, + ], + created: [ + { + value: '2020-09-12T19:51:19+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T23:01:03+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Volunteer Income Tax Assistance | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Volunteer Income Tax Assistance.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/volunteer-income-tax-assistance', + pid: 240, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/volunteer-income-tax-assistance/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/volunteer-income-tax-assistance', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 5, + target_type: 'taxonomy_term', + target_uuid: '79ad490b-1058-4268-b7d6-ecbf78a505b8', + url: '/map-layers/daily-assistance', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/5', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'volunteer-income-tax-assistance', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 146, + }, + ], + uuid: [ + { + value: 'e9f804e7-e619-489c-97ce-7b9873b6f438', + }, + ], + vid: [ + { + value: 149, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T19:54:27+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + title: [ + { + value: 'Skilled Nursing Facilities', + }, + ], + created: [ + { + value: '2020-09-12T19:54:27+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T22:57:46+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Skilled Nursing Facilities | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Skilled Nursing Facilities.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/skilled-nursing-facilities', + pid: 237, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/skilled-nursing-facilities/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/skilled-nursing-facilities', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 7, + target_type: 'taxonomy_term', + target_uuid: '8cd1be96-ba07-430d-b3b9-d9b62a66030d', + url: '/map-layers/elderly', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/22', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'skilled-nursing-facilities', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 147, + }, + ], + uuid: [ + { + value: '39a0a419-22e8-4b07-81e2-1f83d8325d7c', + }, + ], + vid: [ + { + value: 150, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T19:58:50+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + title: [ + { + value: 'Domestic Violence', + }, + ], + created: [ + { + value: '2020-09-12T19:53:58+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T21:53:48+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Domestic Violence | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Domestic Violence.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/domestic-violence', + pid: 218, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/domestic-violence/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/domestic-violence', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 5, + target_type: 'taxonomy_term', + target_uuid: '79ad490b-1058-4268-b7d6-ecbf78a505b8', + url: '/map-layers/daily-assistance', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/6', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'domestic-violence', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 148, + }, + ], + uuid: [ + { + value: '9c46e337-55df-44f6-979c-4c5bdd9e40a1', + }, + ], + vid: [ + { + value: 151, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T19:59:27+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + title: [ + { + value: 'In Home Health Care', + }, + ], + created: [ + { + value: '2020-09-12T19:59:27+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T22:16:06+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'In Home Health Care | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of In Home Health Care.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/in-home-health-care', + pid: 229, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/in-home-health-care/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/in-home-health-care', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 7, + target_type: 'taxonomy_term', + target_uuid: '8cd1be96-ba07-430d-b3b9-d9b62a66030d', + url: '/map-layers/elderly', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/23', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'in-home-health-care', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 149, + }, + ], + uuid: [ + { + value: '3a3aba88-4f12-4ce8-b290-c61eeab8a419', + }, + ], + vid: [ + { + value: 152, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T20:00:52+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + title: [ + { + value: 'Employment Assistance', + }, + ], + created: [ + { + value: '2020-09-12T19:59:47+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T21:54:52+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Employment Assistance | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Employment Assistance.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/employment-assistance', + pid: 219, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/employment-assistance/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/employment-assistance', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 5, + target_type: 'taxonomy_term', + target_uuid: '79ad490b-1058-4268-b7d6-ecbf78a505b8', + url: '/map-layers/daily-assistance', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/7', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'employment-assistance', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 150, + }, + ], + uuid: [ + { + value: '68d0e225-a830-40e0-b39e-49eadbb9b9ae', + }, + ], + vid: [ + { + value: 153, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T20:01:15+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + title: [ + { + value: 'In Home Care', + }, + ], + created: [ + { + value: '2020-09-12T20:01:15+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T22:14:43+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'In Home Care | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of In Home Care.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/in-home-care', + pid: 228, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/in-home-care/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/in-home-care', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 7, + target_type: 'taxonomy_term', + target_uuid: '8cd1be96-ba07-430d-b3b9-d9b62a66030d', + url: '/map-layers/elderly', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/24', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'in-home-care', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 151, + }, + ], + uuid: [ + { + value: 'a37e1d45-e457-4df0-813a-acbea8d6facf', + }, + ], + vid: [ + { + value: 154, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T20:04:25+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + title: [ + { + value: 'Grocery Store', + }, + ], + created: [ + { + value: '2020-09-12T20:04:25+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T22:07:39+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Grocery Store | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Grocery Store.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/grocery-store', + pid: 224, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/grocery-store/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/grocery-store', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 8, + target_type: 'taxonomy_term', + target_uuid: 'd4dd1e98-66e9-4882-b5a4-785a1507017e', + url: '/map-layers/food-system', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/28', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'grocery-store', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 152, + }, + ], + uuid: [ + { + value: '1c862f8c-7e02-4b2c-96cb-aaf64cf34dc4', + }, + ], + vid: [ + { + value: 155, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T20:06:47+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + title: [ + { + value: 'ESL Programs', + }, + ], + created: [ + { + value: '2020-09-12T20:01:20+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T21:56:54+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'ESL Programs | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of ESL Programs.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/esl-programs', + pid: 221, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/esl-programs/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/esl-programs', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 5, + target_type: 'taxonomy_term', + target_uuid: '79ad490b-1058-4268-b7d6-ecbf78a505b8', + url: '/map-layers/daily-assistance', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/8', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'esl-programs', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 153, + }, + ], + uuid: [ + { + value: '2be2772f-f61f-4192-911c-d457fa2bfbf5', + }, + ], + vid: [ + { + value: 156, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T20:06:48+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + title: [ + { + value: 'Farmers Roadside Market', + }, + ], + created: [ + { + value: '2020-09-12T20:06:48+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T21:57:53+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Farmers Roadside Market | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Farmers Roadside Market.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/farmers-roadside-market', + pid: 222, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/farmers-roadside-market/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/farmers-roadside-market', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 8, + target_type: 'taxonomy_term', + target_uuid: 'd4dd1e98-66e9-4882-b5a4-785a1507017e', + url: '/map-layers/food-system', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/29', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'farmers-roadside-market', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 154, + }, + ], + uuid: [ + { + value: '1593ff77-3a8e-470a-a85a-bb869f9bfec1', + }, + ], + vid: [ + { + value: 157, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T20:10:01+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + title: [ + { + value: 'Food Pantry', + }, + ], + created: [ + { + value: '2020-09-12T20:10:01+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T22:06:44+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Food Pantry | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Food Pantry.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/food-pantry', + pid: 223, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/food-pantry/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/food-pantry', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 8, + target_type: 'taxonomy_term', + target_uuid: 'd4dd1e98-66e9-4882-b5a4-785a1507017e', + url: '/map-layers/food-system', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/30', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'food-pantry', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 155, + }, + ], + uuid: [ + { + value: 'f9e1387a-e038-4119-8582-52549834cb7b', + }, + ], + vid: [ + { + value: 158, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T20:12:27+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 2092, + target_type: 'user', + target_uuid: 'b99d7790-4c2e-4e65-9320-d3cde0562b00', + url: '/yall/2092', + }, + ], + title: [ + { + value: 'SNAP', + }, + ], + created: [ + { + value: '2020-09-12T20:12:27+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T22:59:05+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'SNAP | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of SNAP.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/snap', + pid: 238, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/snap/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/snap', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 8, + target_type: 'taxonomy_term', + target_uuid: 'd4dd1e98-66e9-4882-b5a4-785a1507017e', + url: '/map-layers/food-system', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/27', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'snap', + }, + ], + field_zoom_level: [ + { + value: 11, + }, + ], + }, + { + nid: [ + { + value: 156, + }, + ], + uuid: [ + { + value: '83e00e9b-dd7c-4cb2-8f56-928a5bf36e32', + }, + ], + vid: [ + { + value: 159, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T20:16:34+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + title: [ + { + value: 'Housing Assistance', + }, + ], + created: [ + { + value: '2020-09-12T20:07:40+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T22:13:02+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Housing Assistance | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Housing Assistance.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/housing-assistance', + pid: 227, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/housing-assistance/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/housing-assistance', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 5, + target_type: 'taxonomy_term', + target_uuid: '79ad490b-1058-4268-b7d6-ecbf78a505b8', + url: '/map-layers/daily-assistance', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/9', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'housing-assistance', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 157, + }, + ], + uuid: [ + { + value: 'fcaa6a1f-fc32-4191-9467-837e49e1feec', + }, + ], + vid: [ + { + value: 160, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T20:18:55+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + title: [ + { + value: 'Pharmacy and Medication Assistance', + }, + ], + created: [ + { + value: '2020-09-12T20:16:56+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T22:19:54+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Pharmacy and Medication Assistance | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Pharmacy and Medication Assistance.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/pharmacy-and-medication-assistance', + pid: 232, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/pharmacy-medication-assistance/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/pharmacy-medication-assistance', + title: '', + options: [], + }, + ], + field_map_tags: [], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/10', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'pharmacy-medication-assistance', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 158, + }, + ], + uuid: [ + { + value: 'b4395ebf-6de4-4f2e-a751-e51a24aeef54', + }, + ], + vid: [ + { + value: 161, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T20:21:15+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + title: [ + { + value: 'Shelter', + }, + ], + created: [ + { + value: '2020-09-12T20:20:11+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T22:56:01+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Shelter | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Shelter.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/shelter', + pid: 236, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/shelter/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/shelter', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 5, + target_type: 'taxonomy_term', + target_uuid: '79ad490b-1058-4268-b7d6-ecbf78a505b8', + url: '/map-layers/daily-assistance', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/11', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'shelter', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + { + nid: [ + { + value: 159, + }, + ], + uuid: [ + { + value: 'c6f4aaf3-37b8-4456-98e3-a2415626677b', + }, + ], + vid: [ + { + value: 162, + }, + ], + langcode: [ + { + value: 'en', + }, + ], + type: [ + { + target_id: 'map', + target_type: 'node_type', + target_uuid: '53978e5d-803a-4277-a1cc-9777b157c2a2', + }, + ], + revision_timestamp: [ + { + value: '2020-09-12T20:23:11+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + revision_uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + revision_log: [], + status: [ + { + value: true, + }, + ], + uid: [ + { + target_id: 15, + target_type: 'user', + target_uuid: '020e6c17-d970-448f-9c0a-facbb25c06ad', + url: '/yall/15', + }, + ], + title: [ + { + value: 'Substance Abuse', + }, + ], + created: [ + { + value: '2020-09-12T20:22:18+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + changed: [ + { + value: '2021-11-04T22:59:40+00:00', + format: 'Y-m-d\\TH:i:sP', + }, + ], + promote: [ + { + value: false, + }, + ], + sticky: [ + { + value: false, + }, + ], + default_langcode: [ + { + value: true, + }, + ], + revision_translation_affected: [ + { + value: true, + }, + ], + metatag: { + value: { + title: 'Substance Abuse | Open Data in Greenville SC', + description: 'A real-time, community-curated map layer of Substance Abuse.', + referrer: 'no-referrer', + }, + }, + path: [ + { + alias: '/map/substance-abuse', + pid: 239, + langcode: 'en', + }, + ], + body: [ + { + value: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

\r\n', + format: 'basic_html', + processed: '

This map layer is sourced in real-time from the Greenville County GIS API and syndicated using the GeoJSON link above.

', + summary: '', + }, + ], + field_center_point_latitude: [ + { + value: 34.8507, + }, + ], + field_center_point_longitude: [ + { + value: -82.3985, + }, + ], + field_contribute_link: [], + field_geojson_link: [ + { + uri: 'internal:/map/cache/gcgis/imap/substance-abuse/points.geojson', + title: '', + options: [], + }, + ], + field_maintainers: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services', + title: 'Greenville County GIS API - iMAP', + options: [], + }, + ], + field_map_preview_link: [ + { + uri: 'internal:/map/preview/substance-abuse', + title: '', + options: [], + }, + ], + field_map_tags: [ + { + target_id: 5, + target_type: 'taxonomy_term', + target_uuid: '79ad490b-1058-4268-b7d6-ecbf78a505b8', + url: '/map-layers/daily-assistance', + }, + ], + field_meta_tags: [], + field_raw_data_link: [ + { + uri: 'https://www.gcgis.org/arcgis/rest/services/imap/imap/MapServer/12', + title: '', + options: [], + }, + ], + field_slug: [ + { + value: 'substance-abuse', + }, + ], + field_zoom_level: [ + { + value: 10, + }, + ], + }, + ], + }, +} \ No newline at end of file diff --git a/src/tests/views/.gitkeep b/src/tests/views/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/tests/vitest.global.ts b/src/tests/vitest.global.ts new file mode 100644 index 0000000..2556cf3 --- /dev/null +++ b/src/tests/vitest.global.ts @@ -0,0 +1,3 @@ +import create_talkback_server from "./support/talkback-server"; + +export const setup = async () => create_talkback_server(); diff --git a/tsconfig.app.json b/tsconfig.app.json index cdbea1d..ef522fe 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -1,7 +1,7 @@ { "extends": "@vue/tsconfig/tsconfig.web.json", "include": ["env.d.ts", "src/**/*", "src/**/*.vue"], - "exclude": ["src/**/__tests__/*"], + "exclude": ["src/tests"], "compilerOptions": { "composite": true, "baseUrl": ".", diff --git a/vite.config.ts b/vite.config.ts index 3cb3c98..c0fbfd0 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -4,12 +4,24 @@ import { defineConfig } from "vite"; import vue from "@vitejs/plugin-vue"; // https://vitejs.dev/config/ -export default defineConfig({ - plugins: [vue()], - resolve: { - alias: { - "@": fileURLToPath(new URL("./src", import.meta.url)), +export default defineConfig(({ mode }) => { + return { + plugins: [vue()], + resolve: { + alias: { + "@": fileURLToPath(new URL("./src", import.meta.url)), + }, }, - }, - base: "/open-map-data-multi-layers-demo/", + base: "/open-map-data-multi-layers-demo/", + define: { + "process.env.DATA_API_BASE_URL": JSON.stringify( + mode === "test" + ? "http://localhost:9090" + : "https://data.openupstate.org" + ), + }, + test: { + globalSetup: ["./src/tests/vitest.global.ts"], + }, + }; });