├── .circleci └── config.yml ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── backend ├── .coveragerc ├── .flake8 ├── .pep8 ├── CONTRIBUTING.md ├── Dockerfile ├── README.md ├── __init__.py ├── app │ ├── __init__.py │ ├── exceptions │ │ └── format.py │ ├── main.py │ ├── mocks │ │ └── responses.py │ └── requests │ │ ├── __init__.py │ │ ├── adequacy.py │ │ ├── caching.py │ │ ├── census.py │ │ ├── providers.py │ │ ├── representative_points.py │ │ └── service_areas.py ├── config │ ├── __init__.py │ ├── config.py │ ├── entrypoint-local.sh │ ├── entrypoint.sh │ ├── nginx.conf │ └── uwsgi.ini ├── lib │ ├── __init__.py │ ├── calculate │ │ ├── __init__.py │ │ ├── adequacy.py │ │ └── gravity.py │ ├── database │ │ ├── __init__.py │ │ ├── postgres │ │ │ ├── base.py │ │ │ ├── connect.py │ │ │ ├── maintenance.py │ │ │ ├── methods.py │ │ │ ├── postgis.py │ │ │ └── table_handling.py │ │ └── tables │ │ │ ├── address.py │ │ │ ├── provider.py │ │ │ ├── representative_point.py │ │ │ └── service_area.py │ ├── fetch │ │ ├── __init__.py │ │ ├── census.py │ │ ├── providers.py │ │ └── representative_points.py │ ├── geocoder.py │ ├── timer.py │ └── utils │ │ ├── census.py │ │ ├── config_utils.py │ │ ├── datatypes.py │ │ └── iterators.py ├── models │ ├── __init__.py │ ├── base.py │ ├── distance.py │ ├── measurers.py │ └── time.py ├── requirements.txt ├── runners │ ├── check_sample_points_exist.py │ ├── export_representative_points.py │ ├── fetch_tiger_data.py │ ├── generate_representative_points.py │ ├── initialize_postgres.py │ ├── install_postgis.py │ ├── load_addresses.py │ ├── load_age_data.py │ ├── load_census_tract_demographics.py │ ├── load_representative_points.py │ └── normalize_population_totals.py └── tests │ ├── .cache │ └── v │ │ └── cache │ │ └── lastfailed │ ├── config │ └── test_config.py │ ├── lib │ ├── calculate │ │ ├── test_calculate_adequacy.py │ │ └── test_calculate_gravity.py │ ├── database │ │ ├── postgres │ │ │ ├── test_connect.py │ │ │ └── test_inserts.py │ │ └── test_row_to_dict.py │ ├── fetch │ │ ├── test_census_mapping_conversion.py │ │ └── test_fetch_queries.py │ ├── test_config_utils.py │ └── test_utils.py │ ├── models │ ├── test_distance.py │ ├── test_mapbox.py │ ├── test_open_route_service.py │ ├── test_osrm.py │ └── test_time.py │ ├── requests │ ├── test_adequacy.py │ ├── test_census.py │ ├── test_providers.py │ ├── test_representative_points.py │ └── test_service_areas.py │ └── runners │ └── test_load_representative_points.py ├── data ├── California │ ├── all_ca_counties.csv │ └── all_pcps_addresses.csv ├── healthcare_gov │ ├── Machine_Readable_URL_PUF.csv │ └── Plan_Attributes_PUF.csv ├── images │ └── encompass_texas.png ├── sample │ ├── los-angeles-points.geojson │ └── mock-providers.csv └── urban_rural_codes │ └── NCHSURCodes2013.txt ├── docker-compose.local.yml ├── docker-compose.override.db.yml ├── docker-compose.remote.yml ├── docker-compose.yml ├── explorer ├── Dockerfile ├── README.md ├── __init__.py ├── explorer_requirements.txt ├── lib │ ├── __init__.py │ └── etl_helper.py ├── notebooks │ ├── ArcgisConnect.ipynb │ ├── data.pkl │ ├── geocode_providers.ipynb │ ├── gravity.ipynb │ ├── plan_analysis.ipynb │ ├── sample_datasets_exploration.ipynb │ ├── simple_osm_isochrone_exploration.ipynb │ └── simple_osm_isochrone_with_runner.ipynb └── scripts │ ├── README.md │ ├── healthcare_gov_extract.py │ ├── healthcare_gov_url_to_csv.py │ └── merge_issuer_csvs.py ├── frontend ├── .firebaserc ├── .vscode │ └── settings.json ├── ARCHITECTURE.md ├── CONTRIBUTING.md ├── Dockerfile ├── README.md ├── firebase.json ├── package-lock.json ├── package.json ├── remote │ ├── entrypoint.sh │ └── nginx │ │ └── nginx.conf ├── scripts │ ├── buildCache.ts │ └── codegen.ts ├── src │ ├── components │ │ ├── AboutDialog │ │ │ ├── AboutDialog.css │ │ │ └── AboutDialog.tsx │ │ ├── AddDatasetDrawer │ │ │ ├── AddDatasetDrawer.css │ │ │ └── AddDatasetDrawer.tsx │ │ ├── AdequacyDoughnut │ │ │ └── AdequacyDoughnut.tsx │ │ ├── AlertDialog │ │ │ ├── AlertDialog.css │ │ │ └── AlertDialog.tsx │ │ ├── AnalyticsDrawer │ │ │ ├── AnalyticsDrawer.css │ │ │ ├── AnalyticsDrawer.tsx │ │ │ ├── CensusAnalytics.css │ │ │ └── CensusAnalytics.tsx │ │ ├── App │ │ │ ├── App.css │ │ │ └── App.tsx │ │ ├── CSVUploader │ │ │ ├── CSVUploader.css │ │ │ └── CSVUploader.tsx │ │ ├── CensusAdequacyCharts │ │ │ └── CensusAdequacyCharts.tsx │ │ ├── CensusAdequacyTable │ │ │ └── CensusAdequacyTable.tsx │ │ ├── CensusDataChart │ │ │ └── CensusDataChart.tsx │ │ ├── ClearInputsButton │ │ │ └── ClearInputsButton.tsx │ │ ├── CountySelector │ │ │ └── CountySelector.tsx │ │ ├── DatasetsDrawer │ │ │ ├── DatasetsDrawer.css │ │ │ └── DatasetsDrawer.tsx │ │ ├── DownloadAnalysisLink │ │ │ ├── BuildCSV.ts │ │ │ ├── DownloadAnalysisLink.css │ │ │ └── DownloadAnalysisLink.tsx │ │ ├── ErrorBar │ │ │ ├── ErrorBar.css │ │ │ └── ErrorBar.tsx │ │ ├── FilterBar │ │ │ ├── FilterBar.css │ │ │ └── FilterBar.tsx │ │ ├── Header │ │ │ ├── Header.css │ │ │ └── Header.tsx │ │ ├── LeftPane │ │ │ ├── LeftPane.css │ │ │ └── LeftPane.tsx │ │ ├── Link │ │ │ ├── Link.css │ │ │ └── Link.tsx │ │ ├── MapLegend │ │ │ ├── MapLegend.css │ │ │ └── MapLegend.tsx │ │ ├── MapTooltip │ │ │ ├── MapTooltip.css │ │ │ ├── MapTooltip.tsx │ │ │ └── TableRow.tsx │ │ ├── MapView │ │ │ ├── MapView.css │ │ │ └── MapView.tsx │ │ ├── MethodologyDialog │ │ │ ├── MethodologyDialog.css │ │ │ └── MethodologyDialog.tsx │ │ ├── Selectors │ │ │ ├── CensusCategorySelector.tsx │ │ │ ├── CountyTypeSelector.tsx │ │ │ ├── FilterMethodSelector.tsx │ │ │ ├── FormatSelector.tsx │ │ │ ├── SelectorBlock.css │ │ │ ├── SelectorBlock.tsx │ │ │ ├── ServiceAreaSelector.tsx │ │ │ └── StateSelector.tsx │ │ ├── StateCountySelector │ │ │ └── StateCountySelector.tsx │ │ ├── StatsBox │ │ │ ├── StatsBox.css │ │ │ └── StatsBox.tsx │ │ ├── TilePicker │ │ │ ├── TilePicker.css │ │ │ └── TilePicker.tsx │ │ └── Uploader │ │ │ ├── ProvidersUploader.tsx │ │ │ ├── ServiceAreasUploader.tsx │ │ │ └── Uploader.css │ ├── config │ │ └── config.ts │ ├── constants │ │ ├── api │ │ │ ├── adequacies-request.ts │ │ │ ├── adequacies-response.ts │ │ │ ├── available-service-areas-response.ts │ │ │ ├── census-data-response.ts │ │ │ ├── geocode-request.ts │ │ │ ├── geocode-response.ts │ │ │ ├── representative-points-request.ts │ │ │ └── representative-points-response.ts │ │ ├── census.ts │ │ ├── colors.ts │ │ ├── datasets.ts │ │ ├── datasets │ │ │ ├── FL_HCSD_and_Look-Alike_FL.json │ │ │ ├── FL_fl_endocrinologists.json │ │ │ ├── MS_HCSD_and_Look-Alike_MS.json │ │ │ ├── TX_HCSD_and_Look-Alike_TX.json │ │ │ ├── TX_texas_abortion_clinics_address_mar2017.json │ │ │ ├── US_mental_health.json │ │ │ └── US_snap_farmers_markets.json │ │ ├── datatypes.ts │ │ ├── map.ts │ │ ├── states.ts │ │ ├── zipCodes.ts │ │ └── zipCodesByCountyByState.ts │ ├── images │ │ ├── favicon.png │ │ └── logo.png │ ├── index.css │ ├── index.ejs │ ├── index.prod.ejs │ ├── index.tsx │ ├── services │ │ ├── api.ts │ │ ├── effects.ts │ │ └── store.ts │ ├── types.d.ts │ └── utils │ │ ├── adequacy.ts │ │ ├── analytics.test.ts │ │ ├── analytics.ts │ │ ├── csv.test.ts │ │ ├── csv.ts │ │ ├── data.ts │ │ ├── download.ts │ │ ├── env.ts │ │ ├── formatters.test.ts │ │ ├── formatters.ts │ │ ├── geojson.test.ts │ │ ├── geojson.ts │ │ ├── lazy.ts │ │ ├── link.tsx │ │ ├── list.test.ts │ │ ├── list.ts │ │ ├── numbers.ts │ │ ├── serializers.ts │ │ ├── string.test.ts │ │ ├── string.ts │ │ └── webgl.ts ├── test │ ├── mockResponses │ │ └── adequacies.ts │ ├── mocks │ │ ├── point-as.csv │ │ ├── point-as_county_only.csv │ │ ├── point-as_duplicate_county_only.csv │ │ ├── point-as_invalid_input_file.csv │ │ ├── point-as_invalid_input_file_2.csv │ │ ├── point-as_invalid_input_file_3.csv │ │ ├── point-as_invalid_input_file_4.csv │ │ ├── point-as_no_zip_no_county.csv │ │ ├── point-as_zip_and_county.csv │ │ ├── point-as_zip_only.csv │ │ ├── point-bs-100k.csv │ │ ├── point-bs-10k.csv │ │ ├── point-bs-2k.csv │ │ ├── point-bs-300.csv │ │ └── point-bs-30k.csv │ └── setupFiles.js ├── tsconfig.json ├── tslint.json ├── webpack.config.js ├── webpack.config.prod.js └── yarn.lock ├── osrm ├── Dockerfile └── initialize.py ├── shared ├── api-spec │ ├── adequacies-request.json │ ├── adequacies-response.json │ ├── available-service-areas-response.json │ ├── census-data-response.json │ ├── geocode-request.json │ ├── geocode-response.json │ ├── representative-points-request.json │ └── representative-points-response.json ├── census_mapping.json └── config.json ├── terraform ├── README.md ├── environments │ ├── demo │ │ └── main.tf │ ├── prod │ │ └── main.tf │ └── qa │ │ └── main.tf └── template │ ├── main.tf │ └── variables.tf └── test └── performance ├── README.md └── basic.jmx /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/README.md -------------------------------------------------------------------------------- /backend/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/.coveragerc -------------------------------------------------------------------------------- /backend/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/.flake8 -------------------------------------------------------------------------------- /backend/.pep8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 100 3 | exclude = ./data/* 4 | -------------------------------------------------------------------------------- /backend/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/CONTRIBUTING.md -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | """Top level module for network adequacy webapp backend.""" 2 | -------------------------------------------------------------------------------- /backend/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/app/__init__.py -------------------------------------------------------------------------------- /backend/app/exceptions/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/app/exceptions/format.py -------------------------------------------------------------------------------- /backend/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/app/main.py -------------------------------------------------------------------------------- /backend/app/mocks/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/app/mocks/responses.py -------------------------------------------------------------------------------- /backend/app/requests/__init__.py: -------------------------------------------------------------------------------- 1 | """Main requests for the api.""" 2 | -------------------------------------------------------------------------------- /backend/app/requests/adequacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/app/requests/adequacy.py -------------------------------------------------------------------------------- /backend/app/requests/caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/app/requests/caching.py -------------------------------------------------------------------------------- /backend/app/requests/census.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/app/requests/census.py -------------------------------------------------------------------------------- /backend/app/requests/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/app/requests/providers.py -------------------------------------------------------------------------------- /backend/app/requests/representative_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/app/requests/representative_points.py -------------------------------------------------------------------------------- /backend/app/requests/service_areas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/app/requests/service_areas.py -------------------------------------------------------------------------------- /backend/config/__init__.py: -------------------------------------------------------------------------------- 1 | """Config file for the Python backend.""" 2 | -------------------------------------------------------------------------------- /backend/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/config/config.py -------------------------------------------------------------------------------- /backend/config/entrypoint-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/config/entrypoint-local.sh -------------------------------------------------------------------------------- /backend/config/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /backend/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/config/nginx.conf -------------------------------------------------------------------------------- /backend/config/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/config/uwsgi.ini -------------------------------------------------------------------------------- /backend/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/__init__.py -------------------------------------------------------------------------------- /backend/lib/calculate/__init__.py: -------------------------------------------------------------------------------- 1 | """Functions to calculate metrics.""" 2 | -------------------------------------------------------------------------------- /backend/lib/calculate/adequacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/calculate/adequacy.py -------------------------------------------------------------------------------- /backend/lib/calculate/gravity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/calculate/gravity.py -------------------------------------------------------------------------------- /backend/lib/database/__init__.py: -------------------------------------------------------------------------------- 1 | """Functions to interact with the database.""" 2 | -------------------------------------------------------------------------------- /backend/lib/database/postgres/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/database/postgres/base.py -------------------------------------------------------------------------------- /backend/lib/database/postgres/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/database/postgres/connect.py -------------------------------------------------------------------------------- /backend/lib/database/postgres/maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/database/postgres/maintenance.py -------------------------------------------------------------------------------- /backend/lib/database/postgres/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/database/postgres/methods.py -------------------------------------------------------------------------------- /backend/lib/database/postgres/postgis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/database/postgres/postgis.py -------------------------------------------------------------------------------- /backend/lib/database/postgres/table_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/database/postgres/table_handling.py -------------------------------------------------------------------------------- /backend/lib/database/tables/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/database/tables/address.py -------------------------------------------------------------------------------- /backend/lib/database/tables/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/database/tables/provider.py -------------------------------------------------------------------------------- /backend/lib/database/tables/representative_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/database/tables/representative_point.py -------------------------------------------------------------------------------- /backend/lib/database/tables/service_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/database/tables/service_area.py -------------------------------------------------------------------------------- /backend/lib/fetch/__init__.py: -------------------------------------------------------------------------------- 1 | """Functions to prepare replies for the API endpoints.""" 2 | -------------------------------------------------------------------------------- /backend/lib/fetch/census.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/fetch/census.py -------------------------------------------------------------------------------- /backend/lib/fetch/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/fetch/providers.py -------------------------------------------------------------------------------- /backend/lib/fetch/representative_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/fetch/representative_points.py -------------------------------------------------------------------------------- /backend/lib/geocoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/geocoder.py -------------------------------------------------------------------------------- /backend/lib/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/timer.py -------------------------------------------------------------------------------- /backend/lib/utils/census.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/utils/census.py -------------------------------------------------------------------------------- /backend/lib/utils/config_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/utils/config_utils.py -------------------------------------------------------------------------------- /backend/lib/utils/datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/utils/datatypes.py -------------------------------------------------------------------------------- /backend/lib/utils/iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/lib/utils/iterators.py -------------------------------------------------------------------------------- /backend/models/__init__.py: -------------------------------------------------------------------------------- 1 | """Top level for all models.""" 2 | -------------------------------------------------------------------------------- /backend/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/models/base.py -------------------------------------------------------------------------------- /backend/models/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/models/distance.py -------------------------------------------------------------------------------- /backend/models/measurers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/models/measurers.py -------------------------------------------------------------------------------- /backend/models/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/models/time.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/runners/check_sample_points_exist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/runners/check_sample_points_exist.py -------------------------------------------------------------------------------- /backend/runners/export_representative_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/runners/export_representative_points.py -------------------------------------------------------------------------------- /backend/runners/fetch_tiger_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/runners/fetch_tiger_data.py -------------------------------------------------------------------------------- /backend/runners/generate_representative_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/runners/generate_representative_points.py -------------------------------------------------------------------------------- /backend/runners/initialize_postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/runners/initialize_postgres.py -------------------------------------------------------------------------------- /backend/runners/install_postgis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/runners/install_postgis.py -------------------------------------------------------------------------------- /backend/runners/load_addresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/runners/load_addresses.py -------------------------------------------------------------------------------- /backend/runners/load_age_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/runners/load_age_data.py -------------------------------------------------------------------------------- /backend/runners/load_census_tract_demographics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/runners/load_census_tract_demographics.py -------------------------------------------------------------------------------- /backend/runners/load_representative_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/runners/load_representative_points.py -------------------------------------------------------------------------------- /backend/runners/normalize_population_totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/runners/normalize_population_totals.py -------------------------------------------------------------------------------- /backend/tests/.cache/v/cache/lastfailed: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /backend/tests/config/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/config/test_config.py -------------------------------------------------------------------------------- /backend/tests/lib/calculate/test_calculate_adequacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/lib/calculate/test_calculate_adequacy.py -------------------------------------------------------------------------------- /backend/tests/lib/calculate/test_calculate_gravity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/lib/calculate/test_calculate_gravity.py -------------------------------------------------------------------------------- /backend/tests/lib/database/postgres/test_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/lib/database/postgres/test_connect.py -------------------------------------------------------------------------------- /backend/tests/lib/database/postgres/test_inserts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/lib/database/postgres/test_inserts.py -------------------------------------------------------------------------------- /backend/tests/lib/database/test_row_to_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/lib/database/test_row_to_dict.py -------------------------------------------------------------------------------- /backend/tests/lib/fetch/test_census_mapping_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/lib/fetch/test_census_mapping_conversion.py -------------------------------------------------------------------------------- /backend/tests/lib/fetch/test_fetch_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/lib/fetch/test_fetch_queries.py -------------------------------------------------------------------------------- /backend/tests/lib/test_config_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/lib/test_config_utils.py -------------------------------------------------------------------------------- /backend/tests/lib/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/lib/test_utils.py -------------------------------------------------------------------------------- /backend/tests/models/test_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/models/test_distance.py -------------------------------------------------------------------------------- /backend/tests/models/test_mapbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/models/test_mapbox.py -------------------------------------------------------------------------------- /backend/tests/models/test_open_route_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/models/test_open_route_service.py -------------------------------------------------------------------------------- /backend/tests/models/test_osrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/models/test_osrm.py -------------------------------------------------------------------------------- /backend/tests/models/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/models/test_time.py -------------------------------------------------------------------------------- /backend/tests/requests/test_adequacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/requests/test_adequacy.py -------------------------------------------------------------------------------- /backend/tests/requests/test_census.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/requests/test_census.py -------------------------------------------------------------------------------- /backend/tests/requests/test_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/requests/test_providers.py -------------------------------------------------------------------------------- /backend/tests/requests/test_representative_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/requests/test_representative_points.py -------------------------------------------------------------------------------- /backend/tests/requests/test_service_areas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/requests/test_service_areas.py -------------------------------------------------------------------------------- /backend/tests/runners/test_load_representative_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/backend/tests/runners/test_load_representative_points.py -------------------------------------------------------------------------------- /data/California/all_ca_counties.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/data/California/all_ca_counties.csv -------------------------------------------------------------------------------- /data/California/all_pcps_addresses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/data/California/all_pcps_addresses.csv -------------------------------------------------------------------------------- /data/healthcare_gov/Machine_Readable_URL_PUF.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/data/healthcare_gov/Machine_Readable_URL_PUF.csv -------------------------------------------------------------------------------- /data/healthcare_gov/Plan_Attributes_PUF.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/data/healthcare_gov/Plan_Attributes_PUF.csv -------------------------------------------------------------------------------- /data/images/encompass_texas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/data/images/encompass_texas.png -------------------------------------------------------------------------------- /data/sample/los-angeles-points.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/data/sample/los-angeles-points.geojson -------------------------------------------------------------------------------- /data/sample/mock-providers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/data/sample/mock-providers.csv -------------------------------------------------------------------------------- /data/urban_rural_codes/NCHSURCodes2013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/data/urban_rural_codes/NCHSURCodes2013.txt -------------------------------------------------------------------------------- /docker-compose.local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/docker-compose.local.yml -------------------------------------------------------------------------------- /docker-compose.override.db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/docker-compose.override.db.yml -------------------------------------------------------------------------------- /docker-compose.remote.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/docker-compose.remote.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /explorer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/Dockerfile -------------------------------------------------------------------------------- /explorer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/README.md -------------------------------------------------------------------------------- /explorer/__init__.py: -------------------------------------------------------------------------------- 1 | """Files for data exploration.""" 2 | -------------------------------------------------------------------------------- /explorer/explorer_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/explorer_requirements.txt -------------------------------------------------------------------------------- /explorer/lib/__init__.py: -------------------------------------------------------------------------------- 1 | """Library functions for explorer notebooks and scripts.""" 2 | -------------------------------------------------------------------------------- /explorer/lib/etl_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/lib/etl_helper.py -------------------------------------------------------------------------------- /explorer/notebooks/ArcgisConnect.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/notebooks/ArcgisConnect.ipynb -------------------------------------------------------------------------------- /explorer/notebooks/data.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/notebooks/data.pkl -------------------------------------------------------------------------------- /explorer/notebooks/geocode_providers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/notebooks/geocode_providers.ipynb -------------------------------------------------------------------------------- /explorer/notebooks/gravity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/notebooks/gravity.ipynb -------------------------------------------------------------------------------- /explorer/notebooks/plan_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/notebooks/plan_analysis.ipynb -------------------------------------------------------------------------------- /explorer/notebooks/sample_datasets_exploration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/notebooks/sample_datasets_exploration.ipynb -------------------------------------------------------------------------------- /explorer/notebooks/simple_osm_isochrone_exploration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/notebooks/simple_osm_isochrone_exploration.ipynb -------------------------------------------------------------------------------- /explorer/notebooks/simple_osm_isochrone_with_runner.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/notebooks/simple_osm_isochrone_with_runner.ipynb -------------------------------------------------------------------------------- /explorer/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/scripts/README.md -------------------------------------------------------------------------------- /explorer/scripts/healthcare_gov_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/scripts/healthcare_gov_extract.py -------------------------------------------------------------------------------- /explorer/scripts/healthcare_gov_url_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/scripts/healthcare_gov_url_to_csv.py -------------------------------------------------------------------------------- /explorer/scripts/merge_issuer_csvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/explorer/scripts/merge_issuer_csvs.py -------------------------------------------------------------------------------- /frontend/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/.firebaserc -------------------------------------------------------------------------------- /frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/.vscode/settings.json -------------------------------------------------------------------------------- /frontend/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/ARCHITECTURE.md -------------------------------------------------------------------------------- /frontend/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/CONTRIBUTING.md -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/firebase.json -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/remote/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/remote/entrypoint.sh -------------------------------------------------------------------------------- /frontend/remote/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/remote/nginx/nginx.conf -------------------------------------------------------------------------------- /frontend/scripts/buildCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/scripts/buildCache.ts -------------------------------------------------------------------------------- /frontend/scripts/codegen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/scripts/codegen.ts -------------------------------------------------------------------------------- /frontend/src/components/AboutDialog/AboutDialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/AboutDialog/AboutDialog.css -------------------------------------------------------------------------------- /frontend/src/components/AboutDialog/AboutDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/AboutDialog/AboutDialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/AddDatasetDrawer/AddDatasetDrawer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/AddDatasetDrawer/AddDatasetDrawer.css -------------------------------------------------------------------------------- /frontend/src/components/AddDatasetDrawer/AddDatasetDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/AddDatasetDrawer/AddDatasetDrawer.tsx -------------------------------------------------------------------------------- /frontend/src/components/AdequacyDoughnut/AdequacyDoughnut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/AdequacyDoughnut/AdequacyDoughnut.tsx -------------------------------------------------------------------------------- /frontend/src/components/AlertDialog/AlertDialog.css: -------------------------------------------------------------------------------- 1 | .AlertDialog + div { 2 | padding-bottom: 0px !important; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/src/components/AlertDialog/AlertDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/AlertDialog/AlertDialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/AnalyticsDrawer/AnalyticsDrawer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/AnalyticsDrawer/AnalyticsDrawer.css -------------------------------------------------------------------------------- /frontend/src/components/AnalyticsDrawer/AnalyticsDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/AnalyticsDrawer/AnalyticsDrawer.tsx -------------------------------------------------------------------------------- /frontend/src/components/AnalyticsDrawer/CensusAnalytics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/AnalyticsDrawer/CensusAnalytics.css -------------------------------------------------------------------------------- /frontend/src/components/AnalyticsDrawer/CensusAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/AnalyticsDrawer/CensusAnalytics.tsx -------------------------------------------------------------------------------- /frontend/src/components/App/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/App/App.css -------------------------------------------------------------------------------- /frontend/src/components/App/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/App/App.tsx -------------------------------------------------------------------------------- /frontend/src/components/CSVUploader/CSVUploader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/CSVUploader/CSVUploader.css -------------------------------------------------------------------------------- /frontend/src/components/CSVUploader/CSVUploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/CSVUploader/CSVUploader.tsx -------------------------------------------------------------------------------- /frontend/src/components/CensusAdequacyCharts/CensusAdequacyCharts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/CensusAdequacyCharts/CensusAdequacyCharts.tsx -------------------------------------------------------------------------------- /frontend/src/components/CensusAdequacyTable/CensusAdequacyTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/CensusAdequacyTable/CensusAdequacyTable.tsx -------------------------------------------------------------------------------- /frontend/src/components/CensusDataChart/CensusDataChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/CensusDataChart/CensusDataChart.tsx -------------------------------------------------------------------------------- /frontend/src/components/ClearInputsButton/ClearInputsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/ClearInputsButton/ClearInputsButton.tsx -------------------------------------------------------------------------------- /frontend/src/components/CountySelector/CountySelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/CountySelector/CountySelector.tsx -------------------------------------------------------------------------------- /frontend/src/components/DatasetsDrawer/DatasetsDrawer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/DatasetsDrawer/DatasetsDrawer.css -------------------------------------------------------------------------------- /frontend/src/components/DatasetsDrawer/DatasetsDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/DatasetsDrawer/DatasetsDrawer.tsx -------------------------------------------------------------------------------- /frontend/src/components/DownloadAnalysisLink/BuildCSV.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/DownloadAnalysisLink/BuildCSV.ts -------------------------------------------------------------------------------- /frontend/src/components/DownloadAnalysisLink/DownloadAnalysisLink.css: -------------------------------------------------------------------------------- 1 | @import "../../index.css"; 2 | 3 | .DownloadAnalysisLink { 4 | color: var(--primary-dark); 5 | } 6 | -------------------------------------------------------------------------------- /frontend/src/components/DownloadAnalysisLink/DownloadAnalysisLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/DownloadAnalysisLink/DownloadAnalysisLink.tsx -------------------------------------------------------------------------------- /frontend/src/components/ErrorBar/ErrorBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/ErrorBar/ErrorBar.css -------------------------------------------------------------------------------- /frontend/src/components/ErrorBar/ErrorBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/ErrorBar/ErrorBar.tsx -------------------------------------------------------------------------------- /frontend/src/components/FilterBar/FilterBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/FilterBar/FilterBar.css -------------------------------------------------------------------------------- /frontend/src/components/FilterBar/FilterBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/FilterBar/FilterBar.tsx -------------------------------------------------------------------------------- /frontend/src/components/Header/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/Header/Header.css -------------------------------------------------------------------------------- /frontend/src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /frontend/src/components/LeftPane/LeftPane.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/LeftPane/LeftPane.css -------------------------------------------------------------------------------- /frontend/src/components/LeftPane/LeftPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/LeftPane/LeftPane.tsx -------------------------------------------------------------------------------- /frontend/src/components/Link/Link.css: -------------------------------------------------------------------------------- 1 | .Link { 2 | cursor: pointer; 3 | text-decoration: none; 4 | } -------------------------------------------------------------------------------- /frontend/src/components/Link/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/Link/Link.tsx -------------------------------------------------------------------------------- /frontend/src/components/MapLegend/MapLegend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/MapLegend/MapLegend.css -------------------------------------------------------------------------------- /frontend/src/components/MapLegend/MapLegend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/MapLegend/MapLegend.tsx -------------------------------------------------------------------------------- /frontend/src/components/MapTooltip/MapTooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/MapTooltip/MapTooltip.css -------------------------------------------------------------------------------- /frontend/src/components/MapTooltip/MapTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/MapTooltip/MapTooltip.tsx -------------------------------------------------------------------------------- /frontend/src/components/MapTooltip/TableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/MapTooltip/TableRow.tsx -------------------------------------------------------------------------------- /frontend/src/components/MapView/MapView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/MapView/MapView.css -------------------------------------------------------------------------------- /frontend/src/components/MapView/MapView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/MapView/MapView.tsx -------------------------------------------------------------------------------- /frontend/src/components/MethodologyDialog/MethodologyDialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/MethodologyDialog/MethodologyDialog.css -------------------------------------------------------------------------------- /frontend/src/components/MethodologyDialog/MethodologyDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/MethodologyDialog/MethodologyDialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/Selectors/CensusCategorySelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/Selectors/CensusCategorySelector.tsx -------------------------------------------------------------------------------- /frontend/src/components/Selectors/CountyTypeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/Selectors/CountyTypeSelector.tsx -------------------------------------------------------------------------------- /frontend/src/components/Selectors/FilterMethodSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/Selectors/FilterMethodSelector.tsx -------------------------------------------------------------------------------- /frontend/src/components/Selectors/FormatSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/Selectors/FormatSelector.tsx -------------------------------------------------------------------------------- /frontend/src/components/Selectors/SelectorBlock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/Selectors/SelectorBlock.css -------------------------------------------------------------------------------- /frontend/src/components/Selectors/SelectorBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/Selectors/SelectorBlock.tsx -------------------------------------------------------------------------------- /frontend/src/components/Selectors/ServiceAreaSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/Selectors/ServiceAreaSelector.tsx -------------------------------------------------------------------------------- /frontend/src/components/Selectors/StateSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/Selectors/StateSelector.tsx -------------------------------------------------------------------------------- /frontend/src/components/StateCountySelector/StateCountySelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/StateCountySelector/StateCountySelector.tsx -------------------------------------------------------------------------------- /frontend/src/components/StatsBox/StatsBox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/StatsBox/StatsBox.css -------------------------------------------------------------------------------- /frontend/src/components/StatsBox/StatsBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/StatsBox/StatsBox.tsx -------------------------------------------------------------------------------- /frontend/src/components/TilePicker/TilePicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/TilePicker/TilePicker.css -------------------------------------------------------------------------------- /frontend/src/components/TilePicker/TilePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/TilePicker/TilePicker.tsx -------------------------------------------------------------------------------- /frontend/src/components/Uploader/ProvidersUploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/Uploader/ProvidersUploader.tsx -------------------------------------------------------------------------------- /frontend/src/components/Uploader/ServiceAreasUploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/components/Uploader/ServiceAreasUploader.tsx -------------------------------------------------------------------------------- /frontend/src/components/Uploader/Uploader.css: -------------------------------------------------------------------------------- 1 | .Uploader span{ 2 | max-width: 150px; 3 | } -------------------------------------------------------------------------------- /frontend/src/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/config/config.ts -------------------------------------------------------------------------------- /frontend/src/constants/api/adequacies-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/api/adequacies-request.ts -------------------------------------------------------------------------------- /frontend/src/constants/api/adequacies-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/api/adequacies-response.ts -------------------------------------------------------------------------------- /frontend/src/constants/api/available-service-areas-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/api/available-service-areas-response.ts -------------------------------------------------------------------------------- /frontend/src/constants/api/census-data-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/api/census-data-response.ts -------------------------------------------------------------------------------- /frontend/src/constants/api/geocode-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/api/geocode-request.ts -------------------------------------------------------------------------------- /frontend/src/constants/api/geocode-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/api/geocode-response.ts -------------------------------------------------------------------------------- /frontend/src/constants/api/representative-points-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/api/representative-points-request.ts -------------------------------------------------------------------------------- /frontend/src/constants/api/representative-points-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/api/representative-points-response.ts -------------------------------------------------------------------------------- /frontend/src/constants/census.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/census.ts -------------------------------------------------------------------------------- /frontend/src/constants/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/colors.ts -------------------------------------------------------------------------------- /frontend/src/constants/datasets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/datasets.ts -------------------------------------------------------------------------------- /frontend/src/constants/datasets/FL_HCSD_and_Look-Alike_FL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/datasets/FL_HCSD_and_Look-Alike_FL.json -------------------------------------------------------------------------------- /frontend/src/constants/datasets/FL_fl_endocrinologists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/datasets/FL_fl_endocrinologists.json -------------------------------------------------------------------------------- /frontend/src/constants/datasets/MS_HCSD_and_Look-Alike_MS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/datasets/MS_HCSD_and_Look-Alike_MS.json -------------------------------------------------------------------------------- /frontend/src/constants/datasets/TX_HCSD_and_Look-Alike_TX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/datasets/TX_HCSD_and_Look-Alike_TX.json -------------------------------------------------------------------------------- /frontend/src/constants/datasets/TX_texas_abortion_clinics_address_mar2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/datasets/TX_texas_abortion_clinics_address_mar2017.json -------------------------------------------------------------------------------- /frontend/src/constants/datasets/US_mental_health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/datasets/US_mental_health.json -------------------------------------------------------------------------------- /frontend/src/constants/datasets/US_snap_farmers_markets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/datasets/US_snap_farmers_markets.json -------------------------------------------------------------------------------- /frontend/src/constants/datatypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/datatypes.ts -------------------------------------------------------------------------------- /frontend/src/constants/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/map.ts -------------------------------------------------------------------------------- /frontend/src/constants/states.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/states.ts -------------------------------------------------------------------------------- /frontend/src/constants/zipCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/zipCodes.ts -------------------------------------------------------------------------------- /frontend/src/constants/zipCodesByCountyByState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/constants/zipCodesByCountyByState.ts -------------------------------------------------------------------------------- /frontend/src/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/images/favicon.png -------------------------------------------------------------------------------- /frontend/src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/images/logo.png -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/index.ejs -------------------------------------------------------------------------------- /frontend/src/index.prod.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/index.prod.ejs -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/services/api.ts -------------------------------------------------------------------------------- /frontend/src/services/effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/services/effects.ts -------------------------------------------------------------------------------- /frontend/src/services/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/services/store.ts -------------------------------------------------------------------------------- /frontend/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/types.d.ts -------------------------------------------------------------------------------- /frontend/src/utils/adequacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/adequacy.ts -------------------------------------------------------------------------------- /frontend/src/utils/analytics.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/analytics.test.ts -------------------------------------------------------------------------------- /frontend/src/utils/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/analytics.ts -------------------------------------------------------------------------------- /frontend/src/utils/csv.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/csv.test.ts -------------------------------------------------------------------------------- /frontend/src/utils/csv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/csv.ts -------------------------------------------------------------------------------- /frontend/src/utils/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/data.ts -------------------------------------------------------------------------------- /frontend/src/utils/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/download.ts -------------------------------------------------------------------------------- /frontend/src/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/env.ts -------------------------------------------------------------------------------- /frontend/src/utils/formatters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/formatters.test.ts -------------------------------------------------------------------------------- /frontend/src/utils/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/formatters.ts -------------------------------------------------------------------------------- /frontend/src/utils/geojson.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/geojson.test.ts -------------------------------------------------------------------------------- /frontend/src/utils/geojson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/geojson.ts -------------------------------------------------------------------------------- /frontend/src/utils/lazy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/lazy.ts -------------------------------------------------------------------------------- /frontend/src/utils/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/link.tsx -------------------------------------------------------------------------------- /frontend/src/utils/list.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/list.test.ts -------------------------------------------------------------------------------- /frontend/src/utils/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/list.ts -------------------------------------------------------------------------------- /frontend/src/utils/numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/numbers.ts -------------------------------------------------------------------------------- /frontend/src/utils/serializers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/serializers.ts -------------------------------------------------------------------------------- /frontend/src/utils/string.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/string.test.ts -------------------------------------------------------------------------------- /frontend/src/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/string.ts -------------------------------------------------------------------------------- /frontend/src/utils/webgl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/src/utils/webgl.ts -------------------------------------------------------------------------------- /frontend/test/mockResponses/adequacies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/mockResponses/adequacies.ts -------------------------------------------------------------------------------- /frontend/test/mocks/point-as.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/mocks/point-as.csv -------------------------------------------------------------------------------- /frontend/test/mocks/point-as_county_only.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/mocks/point-as_county_only.csv -------------------------------------------------------------------------------- /frontend/test/mocks/point-as_duplicate_county_only.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/mocks/point-as_duplicate_county_only.csv -------------------------------------------------------------------------------- /frontend/test/mocks/point-as_invalid_input_file.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/mocks/point-as_invalid_input_file.csv -------------------------------------------------------------------------------- /frontend/test/mocks/point-as_invalid_input_file_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/mocks/point-as_invalid_input_file_2.csv -------------------------------------------------------------------------------- /frontend/test/mocks/point-as_invalid_input_file_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/mocks/point-as_invalid_input_file_3.csv -------------------------------------------------------------------------------- /frontend/test/mocks/point-as_invalid_input_file_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/mocks/point-as_invalid_input_file_4.csv -------------------------------------------------------------------------------- /frontend/test/mocks/point-as_no_zip_no_county.csv: -------------------------------------------------------------------------------- 1 | City 2 | Vista 3 | san Francisco 4 | -------------------------------------------------------------------------------- /frontend/test/mocks/point-as_zip_and_county.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/mocks/point-as_zip_and_county.csv -------------------------------------------------------------------------------- /frontend/test/mocks/point-as_zip_only.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/mocks/point-as_zip_only.csv -------------------------------------------------------------------------------- /frontend/test/mocks/point-bs-100k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/mocks/point-bs-100k.csv -------------------------------------------------------------------------------- /frontend/test/mocks/point-bs-10k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/mocks/point-bs-10k.csv -------------------------------------------------------------------------------- /frontend/test/mocks/point-bs-2k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/mocks/point-bs-2k.csv -------------------------------------------------------------------------------- /frontend/test/mocks/point-bs-300.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/mocks/point-bs-300.csv -------------------------------------------------------------------------------- /frontend/test/mocks/point-bs-30k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/mocks/point-bs-30k.csv -------------------------------------------------------------------------------- /frontend/test/setupFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/test/setupFiles.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/tslint.json -------------------------------------------------------------------------------- /frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/webpack.config.js -------------------------------------------------------------------------------- /frontend/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/webpack.config.prod.js -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /osrm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/osrm/Dockerfile -------------------------------------------------------------------------------- /osrm/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/osrm/initialize.py -------------------------------------------------------------------------------- /shared/api-spec/adequacies-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/shared/api-spec/adequacies-request.json -------------------------------------------------------------------------------- /shared/api-spec/adequacies-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/shared/api-spec/adequacies-response.json -------------------------------------------------------------------------------- /shared/api-spec/available-service-areas-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/shared/api-spec/available-service-areas-response.json -------------------------------------------------------------------------------- /shared/api-spec/census-data-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/shared/api-spec/census-data-response.json -------------------------------------------------------------------------------- /shared/api-spec/geocode-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/shared/api-spec/geocode-request.json -------------------------------------------------------------------------------- /shared/api-spec/geocode-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/shared/api-spec/geocode-response.json -------------------------------------------------------------------------------- /shared/api-spec/representative-points-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/shared/api-spec/representative-points-request.json -------------------------------------------------------------------------------- /shared/api-spec/representative-points-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/shared/api-spec/representative-points-response.json -------------------------------------------------------------------------------- /shared/census_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/shared/census_mapping.json -------------------------------------------------------------------------------- /shared/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/shared/config.json -------------------------------------------------------------------------------- /terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/terraform/README.md -------------------------------------------------------------------------------- /terraform/environments/demo/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/terraform/environments/demo/main.tf -------------------------------------------------------------------------------- /terraform/environments/prod/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/terraform/environments/prod/main.tf -------------------------------------------------------------------------------- /terraform/environments/qa/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/terraform/environments/qa/main.tf -------------------------------------------------------------------------------- /terraform/template/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/terraform/template/main.tf -------------------------------------------------------------------------------- /terraform/template/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/terraform/template/variables.tf -------------------------------------------------------------------------------- /test/performance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/test/performance/README.md -------------------------------------------------------------------------------- /test/performance/basic.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesimpact/encompass/HEAD/test/performance/basic.jmx --------------------------------------------------------------------------------