├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── THIRD-PARTY-LICENSES.md ├── aws └── cfn │ └── stacks │ └── weatherGen │ ├── config │ ├── create.sh │ ├── delete.sh │ ├── stack.json │ └── update.sh ├── config └── config.js ├── generate.js ├── jsconfig.json ├── lib └── modules │ ├── cbuffer.js │ ├── cloudWatchLogger.js │ ├── gaussian.js │ ├── log.js │ ├── sensors │ ├── rainfall.js │ ├── sensor.js │ ├── temperature.js │ ├── vibration.js │ └── windspeed.js │ ├── station.js │ └── streamBuffer.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | weatherGen 2 | 3 | Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY-LICENSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/THIRD-PARTY-LICENSES.md -------------------------------------------------------------------------------- /aws/cfn/stacks/weatherGen/config: -------------------------------------------------------------------------------- 1 | STACK_NAME=weatherGen 2 | S3_BUCKET=s3://teichtah-lambda-functions 3 | REGION=ap-southeast-2 -------------------------------------------------------------------------------- /aws/cfn/stacks/weatherGen/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/aws/cfn/stacks/weatherGen/create.sh -------------------------------------------------------------------------------- /aws/cfn/stacks/weatherGen/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/aws/cfn/stacks/weatherGen/delete.sh -------------------------------------------------------------------------------- /aws/cfn/stacks/weatherGen/stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/aws/cfn/stacks/weatherGen/stack.json -------------------------------------------------------------------------------- /aws/cfn/stacks/weatherGen/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/aws/cfn/stacks/weatherGen/update.sh -------------------------------------------------------------------------------- /config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/config/config.js -------------------------------------------------------------------------------- /generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/generate.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lib/modules/cbuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/lib/modules/cbuffer.js -------------------------------------------------------------------------------- /lib/modules/cloudWatchLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/lib/modules/cloudWatchLogger.js -------------------------------------------------------------------------------- /lib/modules/gaussian.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/lib/modules/gaussian.js -------------------------------------------------------------------------------- /lib/modules/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/lib/modules/log.js -------------------------------------------------------------------------------- /lib/modules/sensors/rainfall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/lib/modules/sensors/rainfall.js -------------------------------------------------------------------------------- /lib/modules/sensors/sensor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/lib/modules/sensors/sensor.js -------------------------------------------------------------------------------- /lib/modules/sensors/temperature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/lib/modules/sensors/temperature.js -------------------------------------------------------------------------------- /lib/modules/sensors/vibration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/lib/modules/sensors/vibration.js -------------------------------------------------------------------------------- /lib/modules/sensors/windspeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/lib/modules/sensors/windspeed.js -------------------------------------------------------------------------------- /lib/modules/station.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/lib/modules/station.js -------------------------------------------------------------------------------- /lib/modules/streamBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/lib/modules/streamBuffer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-weathergen/HEAD/yarn.lock --------------------------------------------------------------------------------