├── .github └── workflows │ └── jekyll-gh-pages.yml ├── .gitignore ├── LICENSE ├── Python ├── account_data_demo.py ├── bulk_data_api_demo.py ├── emissions_data_demo.py └── facility_data_demo.py ├── R ├── account_data_demo.R ├── bulk_data_api_demo.R ├── emissions_data_demo.R └── facility_data_demo.R ├── README.md ├── contributing.md └── docs ├── README ├── dist └── index.html ├── gulpfile.js ├── package.json ├── src ├── content │ ├── common-config-ex-1.md │ ├── common-config-ex-2.md │ ├── common-config-ex-3.md │ ├── intro.md │ ├── simple-config-ex-1.md │ ├── simple-config-ex-2.md │ ├── simple-config-ex-3.md │ └── simple-config-ex-4.md └── index.js └── webpack.config.js /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /Python/account_data_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/Python/account_data_demo.py -------------------------------------------------------------------------------- /Python/bulk_data_api_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/Python/bulk_data_api_demo.py -------------------------------------------------------------------------------- /Python/emissions_data_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/Python/emissions_data_demo.py -------------------------------------------------------------------------------- /Python/facility_data_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/Python/facility_data_demo.py -------------------------------------------------------------------------------- /R/account_data_demo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/R/account_data_demo.R -------------------------------------------------------------------------------- /R/bulk_data_api_demo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/R/bulk_data_api_demo.R -------------------------------------------------------------------------------- /R/emissions_data_demo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/R/emissions_data_demo.R -------------------------------------------------------------------------------- /R/facility_data_demo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/R/facility_data_demo.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/contributing.md -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/docs/README -------------------------------------------------------------------------------- /docs/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/docs/dist/index.html -------------------------------------------------------------------------------- /docs/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/docs/gulpfile.js -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/src/content/common-config-ex-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/docs/src/content/common-config-ex-1.md -------------------------------------------------------------------------------- /docs/src/content/common-config-ex-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/docs/src/content/common-config-ex-2.md -------------------------------------------------------------------------------- /docs/src/content/common-config-ex-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/docs/src/content/common-config-ex-3.md -------------------------------------------------------------------------------- /docs/src/content/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/docs/src/content/intro.md -------------------------------------------------------------------------------- /docs/src/content/simple-config-ex-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/docs/src/content/simple-config-ex-1.md -------------------------------------------------------------------------------- /docs/src/content/simple-config-ex-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/docs/src/content/simple-config-ex-2.md -------------------------------------------------------------------------------- /docs/src/content/simple-config-ex-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/docs/src/content/simple-config-ex-3.md -------------------------------------------------------------------------------- /docs/src/content/simple-config-ex-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/docs/src/content/simple-config-ex-4.md -------------------------------------------------------------------------------- /docs/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/docs/src/index.js -------------------------------------------------------------------------------- /docs/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/cam-api-examples/HEAD/docs/webpack.config.js --------------------------------------------------------------------------------