├── .github └── workflows │ └── main.yml ├── .gitignore ├── .jsdoc.json ├── .npmignore ├── LICENSE ├── README.md ├── data ├── aws-edge-locations.csv ├── aws-edge-locations.json └── aws-edge-locations.parquet ├── package.json ├── process ├── generate.ts └── utils │ ├── airportOverrides.ts │ ├── downloadWithPuppeteer.ts │ ├── pricingRegionMapping.ts │ └── regionalEdgeCaches.ts ├── scripts ├── install-duckdb.sh └── load-airports.sql ├── src ├── data │ └── aws-edge-locations.json ├── index.ts └── tsconfig.json ├── test ├── testImports.ts └── tests.js └── tsconfig.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/.jsdoc.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/README.md -------------------------------------------------------------------------------- /data/aws-edge-locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/data/aws-edge-locations.csv -------------------------------------------------------------------------------- /data/aws-edge-locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/data/aws-edge-locations.json -------------------------------------------------------------------------------- /data/aws-edge-locations.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/data/aws-edge-locations.parquet -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/package.json -------------------------------------------------------------------------------- /process/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/process/generate.ts -------------------------------------------------------------------------------- /process/utils/airportOverrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/process/utils/airportOverrides.ts -------------------------------------------------------------------------------- /process/utils/downloadWithPuppeteer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/process/utils/downloadWithPuppeteer.ts -------------------------------------------------------------------------------- /process/utils/pricingRegionMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/process/utils/pricingRegionMapping.ts -------------------------------------------------------------------------------- /process/utils/regionalEdgeCaches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/process/utils/regionalEdgeCaches.ts -------------------------------------------------------------------------------- /scripts/install-duckdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/scripts/install-duckdb.sh -------------------------------------------------------------------------------- /scripts/load-airports.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/scripts/load-airports.sql -------------------------------------------------------------------------------- /src/data/aws-edge-locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/src/data/aws-edge-locations.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /test/testImports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/test/testImports.ts -------------------------------------------------------------------------------- /test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/test/tests.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/aws-edge-locations/HEAD/tsconfig.json --------------------------------------------------------------------------------