This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| DIR=$(dirname"$0") | |
| STAMP=$(date +%s) | |
| TEMPDIR="/srv/hub/$STAMP" | |
| APPLICATIONDIR="/arcgis/portal/apps/hub" | |
| OLDDIR=$(cat ./.old-directory) | |
| echo "downloading files to $DIR" | |
| /usr/local/bin/aws s3 cp s3://REDACTED/build.tar.gz "$DIR" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "__inputs": [ | |
| { | |
| "name": "DS_NGINX-ACCESS-LOG", | |
| "label": "nginx-access-log", | |
| "description": "", | |
| "type": "datasource", | |
| "pluginId": "elasticsearch", | |
| "pluginName": "Elasticsearch" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fetch = require('node-fetch') | |
| const generateToken = require('./lib/token').generate | |
| module.exports = async function (args) { | |
| const dcatUrl = `${args.site}/data.json` | |
| const catalog = await fetch(dcatUrl).then(r => { return r.json() }) | |
| const formatted = catalog.dataset.map(d => { | |
| return { | |
| title: d.title, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const rectangles = require('./buildings2.json').features | |
| const points = require('./dmv_props.json').features | |
| const bbox = require('@turf/bbox').default | |
| const RBush = require('rbush') | |
| function prepare(features) { | |
| return features.map(f => { | |
| const box = bbox(f) | |
| return { | |
| minX: box[0], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const rectangles = require('./buildings2.json').features | |
| const points = require('./dmv_props.json').features | |
| const bbox = require('@turf/bbox').default | |
| const RBush = require('rbush') | |
| function prepare(features) { | |
| return features.map(f => { | |
| const box = bbox(f) | |
| return { | |
| minX: box[0], |
OlderNewer